3 #include "credential.h"
4 #include "string-list.h"
5 #include "run-command.h"
11 void credential_init(struct credential *c)
13 memset(c, 0, sizeof(*c));
14 c->helpers.strdup_strings = 1;
17 void credential_clear(struct credential *c)
24 string_list_clear(&c->helpers, 0);
29 int credential_match(const struct credential *want,
30 const struct credential *have)
32 #define CHECK(x) (!want->x || (have->x && !strcmp(want->x, have->x)))
33 return CHECK(protocol) &&
41 static int credential_from_potentially_partial_url(struct credential *c,
44 static int credential_config_callback(const char *var, const char *value,
47 struct credential *c = data;
50 if (!skip_prefix(var, "credential.", &key))
54 return config_error_nonbool(var);
56 if (!strcmp(key, "helper")) {
58 string_list_append(&c->helpers, value);
60 string_list_clear(&c->helpers, 0);
61 } else if (!strcmp(key, "username")) {
62 if (!c->username_from_proto) {
64 c->username = xstrdup(value);
67 else if (!strcmp(key, "usehttppath"))
68 c->use_http_path = git_config_bool(var, value);
73 static int proto_is_http(const char *s)
77 return !strcmp(s, "https") || !strcmp(s, "http");
80 static void credential_describe(struct credential *c, struct strbuf *out);
81 static void credential_format(struct credential *c, struct strbuf *out);
83 static int select_all(const struct urlmatch_item *a,
84 const struct urlmatch_item *b)
89 static int match_partial_url(const char *url, void *cb)
91 struct credential *c = cb;
92 struct credential want = CREDENTIAL_INIT;
95 if (credential_from_potentially_partial_url(&want, url) < 0)
96 warning(_("skipping credential lookup for key: credential.%s"),
99 matches = credential_match(&want, c);
100 credential_clear(&want);
105 static void credential_apply_config(struct credential *c)
107 char *normalized_url;
108 struct urlmatch_config config = { STRING_LIST_INIT_DUP };
109 struct strbuf url = STRBUF_INIT;
112 die(_("refusing to work with credential missing host field"));
114 die(_("refusing to work with credential missing protocol field"));
119 config.section = "credential";
121 config.collect_fn = credential_config_callback;
122 config.cascade_fn = NULL;
123 config.select_fn = select_all;
124 config.fallback_match_fn = match_partial_url;
127 credential_format(c, &url);
128 normalized_url = url_normalize(url.buf, &config.url);
130 git_config(urlmatch_config_entry, &config);
131 free(normalized_url);
132 strbuf_release(&url);
136 if (!c->use_http_path && proto_is_http(c->protocol)) {
137 FREE_AND_NULL(c->path);
141 static void credential_describe(struct credential *c, struct strbuf *out)
145 strbuf_addf(out, "%s://", c->protocol);
146 if (c->username && *c->username)
147 strbuf_addf(out, "%s@", c->username);
149 strbuf_addstr(out, c->host);
151 strbuf_addf(out, "/%s", c->path);
154 static void credential_format(struct credential *c, struct strbuf *out)
158 strbuf_addf(out, "%s://", c->protocol);
159 if (c->username && *c->username) {
160 strbuf_add_percentencode(out, c->username, STRBUF_ENCODE_SLASH);
161 strbuf_addch(out, '@');
164 strbuf_addstr(out, c->host);
166 strbuf_addch(out, '/');
167 strbuf_add_percentencode(out, c->path, 0);
171 static char *credential_ask_one(const char *what, struct credential *c,
174 struct strbuf desc = STRBUF_INIT;
175 struct strbuf prompt = STRBUF_INIT;
178 credential_describe(c, &desc);
180 strbuf_addf(&prompt, "%s for '%s': ", what, desc.buf);
182 strbuf_addf(&prompt, "%s: ", what);
184 r = git_prompt(prompt.buf, flags);
186 strbuf_release(&desc);
187 strbuf_release(&prompt);
191 static void credential_getpass(struct credential *c)
194 c->username = credential_ask_one("Username", c,
195 PROMPT_ASKPASS|PROMPT_ECHO);
197 c->password = credential_ask_one("Password", c,
201 int credential_read(struct credential *c, FILE *fp)
203 struct strbuf line = STRBUF_INIT;
205 while (strbuf_getline(&line, fp) != EOF) {
206 char *key = line.buf;
207 char *value = strchr(key, '=');
213 warning("invalid credential line: %s", key);
214 strbuf_release(&line);
219 if (!strcmp(key, "username")) {
221 c->username = xstrdup(value);
222 c->username_from_proto = 1;
223 } else if (!strcmp(key, "password")) {
225 c->password = xstrdup(value);
226 } else if (!strcmp(key, "protocol")) {
228 c->protocol = xstrdup(value);
229 } else if (!strcmp(key, "host")) {
231 c->host = xstrdup(value);
232 } else if (!strcmp(key, "path")) {
234 c->path = xstrdup(value);
235 } else if (!strcmp(key, "url")) {
236 credential_from_url(c, value);
237 } else if (!strcmp(key, "quit")) {
238 c->quit = !!git_config_bool("quit", value);
241 * Ignore other lines; we don't know what they mean, but
242 * this future-proofs us when later versions of git do
243 * learn new lines, and the helpers are updated to match.
247 strbuf_release(&line);
251 static void credential_write_item(FILE *fp, const char *key, const char *value,
254 if (!value && required)
255 BUG("credential value for %s is missing", key);
258 if (strchr(value, '\n'))
259 die("credential value for %s contains newline", key);
260 fprintf(fp, "%s=%s\n", key, value);
263 void credential_write(const struct credential *c, FILE *fp)
265 credential_write_item(fp, "protocol", c->protocol, 1);
266 credential_write_item(fp, "host", c->host, 1);
267 credential_write_item(fp, "path", c->path, 0);
268 credential_write_item(fp, "username", c->username, 0);
269 credential_write_item(fp, "password", c->password, 0);
272 static int run_credential_helper(struct credential *c,
276 struct child_process helper = CHILD_PROCESS_INIT;
279 strvec_push(&helper.args, cmd);
280 helper.use_shell = 1;
285 helper.no_stdout = 1;
287 if (start_command(&helper) < 0)
290 fp = xfdopen(helper.in, "w");
291 sigchain_push(SIGPIPE, SIG_IGN);
292 credential_write(c, fp);
294 sigchain_pop(SIGPIPE);
298 fp = xfdopen(helper.out, "r");
299 r = credential_read(c, fp);
302 finish_command(&helper);
307 if (finish_command(&helper))
312 static int credential_do(struct credential *c, const char *helper,
313 const char *operation)
315 struct strbuf cmd = STRBUF_INIT;
318 if (helper[0] == '!')
319 strbuf_addstr(&cmd, helper + 1);
320 else if (is_absolute_path(helper))
321 strbuf_addstr(&cmd, helper);
323 strbuf_addf(&cmd, "git credential-%s", helper);
325 strbuf_addf(&cmd, " %s", operation);
326 r = run_credential_helper(c, cmd.buf, !strcmp(operation, "get"));
328 strbuf_release(&cmd);
332 void credential_fill(struct credential *c)
336 if (c->username && c->password)
339 credential_apply_config(c);
341 for (i = 0; i < c->helpers.nr; i++) {
342 credential_do(c, c->helpers.items[i].string, "get");
343 if (c->username && c->password)
346 die("credential helper '%s' told us to quit",
347 c->helpers.items[i].string);
350 credential_getpass(c);
351 if (!c->username && !c->password)
352 die("unable to get password from user");
355 void credential_approve(struct credential *c)
361 if (!c->username || !c->password)
364 credential_apply_config(c);
366 for (i = 0; i < c->helpers.nr; i++)
367 credential_do(c, c->helpers.items[i].string, "store");
371 void credential_reject(struct credential *c)
375 credential_apply_config(c);
377 for (i = 0; i < c->helpers.nr; i++)
378 credential_do(c, c->helpers.items[i].string, "erase");
380 FREE_AND_NULL(c->username);
381 FREE_AND_NULL(c->password);
385 static int check_url_component(const char *url, int quiet,
386 const char *name, const char *value)
390 if (!strchr(value, '\n'))
394 warning(_("url contains a newline in its %s component: %s"),
400 * Potentially-partial URLs can, but do not have to, contain
402 * - a protocol (or scheme) of the form "<protocol>://"
404 * - a host name (the part after the protocol and before the first slash after
407 * - a user name and potentially a password (as "<user>[:<password>]@" part of
410 * - a path (the part after the host name, if any, starting with the slash)
412 * Missing parts will be left unset in `struct credential`. Thus, `https://`
413 * will have only the `protocol` set, `example.com` only the host name, and
414 * `/git` only the path.
416 * Note that an empty host name in an otherwise fully-qualified URL (e.g.
417 * `cert:///path/to/cert.pem`) will be treated as unset if we expect the URL to
418 * be potentially partial, and only then (otherwise, the empty string is used).
420 * The credential_from_url() function does not allow partial URLs.
422 static int credential_from_url_1(struct credential *c, const char *url,
423 int allow_partial_url, int quiet)
425 const char *at, *colon, *cp, *slash, *host, *proto_end;
431 * (1) proto://<host>/...
432 * (2) proto://<user>@<host>/...
433 * (3) proto://<user>:<pass>@<host>/...
435 proto_end = strstr(url, "://");
436 if (!allow_partial_url && (!proto_end || proto_end == url)) {
438 warning(_("url has no scheme: %s"), url);
441 cp = proto_end ? proto_end + 3 : url;
442 at = strchr(cp, '@');
443 colon = strchr(cp, ':');
446 * A query or fragment marker before the slash ends the host portion.
447 * We'll just continue to call this "slash" for simplicity. Notably our
448 * "trim leading slashes" part won't skip over this part of the path,
449 * but that's what we'd want.
451 slash = cp + strcspn(cp, "/?#");
453 if (!at || slash <= at) {
457 else if (!colon || at <= colon) {
459 c->username = url_decode_mem(cp, at - cp);
460 if (c->username && *c->username)
461 c->username_from_proto = 1;
465 c->username = url_decode_mem(cp, colon - cp);
466 if (c->username && *c->username)
467 c->username_from_proto = 1;
468 c->password = url_decode_mem(colon + 1, at - (colon + 1));
472 if (proto_end && proto_end - url > 0)
473 c->protocol = xmemdupz(url, proto_end - url);
474 if (!allow_partial_url || slash - host > 0)
475 c->host = url_decode_mem(host, slash - host);
476 /* Trim leading and trailing slashes from path */
477 while (*slash == '/')
481 c->path = url_decode(slash);
482 p = c->path + strlen(c->path) - 1;
483 while (p > c->path && *p == '/')
487 if (check_url_component(url, quiet, "username", c->username) < 0 ||
488 check_url_component(url, quiet, "password", c->password) < 0 ||
489 check_url_component(url, quiet, "protocol", c->protocol) < 0 ||
490 check_url_component(url, quiet, "host", c->host) < 0 ||
491 check_url_component(url, quiet, "path", c->path) < 0)
497 static int credential_from_potentially_partial_url(struct credential *c,
500 return credential_from_url_1(c, url, 1, 0);
503 int credential_from_url_gently(struct credential *c, const char *url, int quiet)
505 return credential_from_url_1(c, url, 0, quiet);
508 void credential_from_url(struct credential *c, const char *url)
510 if (credential_from_url_gently(c, url, 0) < 0)
511 die(_("credential url cannot be parsed: %s"), url);