On Thu, May 31, 2012 at 05:24:55PM -0500, Kevin Stange wrote: > Request credentials from the user if none are already defined when a > HTTP 401 is received on a restricted repository. Then, resubmit the > request and return the final result. > > This allows all webdav transactions to obtain credentials without having > to individually handle the case in each request. Having push working > with HTTP auth is needed for a use case I have where storing the > credentials in .netrc or using SSH keys is inappropriate. We already do this at a higher level in http_request, which in turns calls into finish_active_slot. So if we were going to go this route, wouldn't we also want to remove the 401 handling in http_request? The dumb-http push code is the only thing that does not go through http_request these days. So another option would be to refactor it to go through that central point. I took a brief look at this when I was updating the credential code a few months ago, but didn't consider it a priority, as most people should be using smart http these days. Is there a reason you can't use smart-http? It's significantly more efficient. You also don't necessarily need to handle 401 in every code path of http-push; once we see the credential once, we will use it everywhere, so you really only need to handle it on the initial request (assuming that all requests will have the same authorization requirements). > Apologies for anything wrong I might have done here. I'm not used to > procedures for this sort of patch submission, or terribly familiar with > the code base. I'm seeking advice on whether this approach is sane or > completely crazy, and I'm willing to adjust it to make it suitable for > inclusion. > > Signed-off-by: Kevin <kevin@xxxxxxxxxxxxx> > --- Cover letter material (i.e., anything that would not go into the commit message of the final commit) should go below the "---". > diff --git a/http.c b/http.c > index 5cb87f1..e1c9e65 100644 > --- a/http.c > +++ b/http.c > @@ -668,6 +668,21 @@ void finish_active_slot(struct active_request_slot > *slot) > closedown_active_slot(slot); > curl_easy_getinfo(slot->curl, CURLINFO_HTTP_CODE, &slot->http_code); > > + if (slot->http_code == 401) { > + if(!http_auth.username && !http_auth.password) { > + active_requests++; > + credential_fill(&http_auth); > + init_curl_http_auth(slot->curl); > + (*slot->finished) = 1; > + if (start_active_slot(slot)) { > + run_active_slot(slot); > + return; > + } > + } else { > + fprintf(stderr,"Authentication Failed!\n"); > + } > + } Is it safe to just run start_active_slot again without reinitializing the request? The 401-handling code in http_request actually restarts a new request. I don't immediately see any state that would need to be reset; we might have written some data to the output file if curl gave us any body data, but presumably it would not have done so for a 401. In the "else" clause you add, I don't think there's any point in printing an error. The 401 should get propagated back to the caller, who will produce an error. However, you _should_ call credential_reject, since you know that the credential you have doesn't work. Similarly, you would want to call credential_accept after a successful request, so that helpers can store it. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html