1 #include "git-compat-util.h"
4 #include "credential.h"
6 #include "string-list.h"
7 #include "run-command.h"
13 #include "git-compat-util.h"
15 void credential_init(struct credential
*c
)
17 struct credential blank
= CREDENTIAL_INIT
;
18 memcpy(c
, &blank
, sizeof(*c
));
21 void credential_clear(struct credential
*c
)
28 free(c
->oauth_refresh_token
);
29 string_list_clear(&c
->helpers
, 0);
30 strvec_clear(&c
->wwwauth_headers
);
35 int credential_match(const struct credential
*want
,
36 const struct credential
*have
)
38 #define CHECK(x) (!want->x || (have->x && !strcmp(want->x, have->x)))
39 return CHECK(protocol
) &&
47 static int credential_from_potentially_partial_url(struct credential
*c
,
50 static int credential_config_callback(const char *var
, const char *value
,
53 struct credential
*c
= data
;
56 if (!skip_prefix(var
, "credential.", &key
))
60 return config_error_nonbool(var
);
62 if (!strcmp(key
, "helper")) {
64 string_list_append(&c
->helpers
, value
);
66 string_list_clear(&c
->helpers
, 0);
67 } else if (!strcmp(key
, "username")) {
68 if (!c
->username_from_proto
) {
70 c
->username
= xstrdup(value
);
73 else if (!strcmp(key
, "usehttppath"))
74 c
->use_http_path
= git_config_bool(var
, value
);
79 static int proto_is_http(const char *s
)
83 return !strcmp(s
, "https") || !strcmp(s
, "http");
86 static void credential_describe(struct credential
*c
, struct strbuf
*out
);
87 static void credential_format(struct credential
*c
, struct strbuf
*out
);
89 static int select_all(const struct urlmatch_item
*a
,
90 const struct urlmatch_item
*b
)
95 static int match_partial_url(const char *url
, void *cb
)
97 struct credential
*c
= cb
;
98 struct credential want
= CREDENTIAL_INIT
;
101 if (credential_from_potentially_partial_url(&want
, url
) < 0)
102 warning(_("skipping credential lookup for key: credential.%s"),
105 matches
= credential_match(&want
, c
);
106 credential_clear(&want
);
111 static void credential_apply_config(struct credential
*c
)
113 char *normalized_url
;
114 struct urlmatch_config config
= URLMATCH_CONFIG_INIT
;
115 struct strbuf url
= STRBUF_INIT
;
118 die(_("refusing to work with credential missing host field"));
120 die(_("refusing to work with credential missing protocol field"));
125 config
.section
= "credential";
127 config
.collect_fn
= credential_config_callback
;
128 config
.cascade_fn
= NULL
;
129 config
.select_fn
= select_all
;
130 config
.fallback_match_fn
= match_partial_url
;
133 credential_format(c
, &url
);
134 normalized_url
= url_normalize(url
.buf
, &config
.url
);
136 git_config(urlmatch_config_entry
, &config
);
137 string_list_clear(&config
.vars
, 1);
138 free(normalized_url
);
139 urlmatch_config_release(&config
);
140 strbuf_release(&url
);
144 if (!c
->use_http_path
&& proto_is_http(c
->protocol
)) {
145 FREE_AND_NULL(c
->path
);
149 static void credential_describe(struct credential
*c
, struct strbuf
*out
)
153 strbuf_addf(out
, "%s://", c
->protocol
);
154 if (c
->username
&& *c
->username
)
155 strbuf_addf(out
, "%s@", c
->username
);
157 strbuf_addstr(out
, c
->host
);
159 strbuf_addf(out
, "/%s", c
->path
);
162 static void credential_format(struct credential
*c
, struct strbuf
*out
)
166 strbuf_addf(out
, "%s://", c
->protocol
);
167 if (c
->username
&& *c
->username
) {
168 strbuf_add_percentencode(out
, c
->username
, STRBUF_ENCODE_SLASH
);
169 strbuf_addch(out
, '@');
172 strbuf_addstr(out
, c
->host
);
174 strbuf_addch(out
, '/');
175 strbuf_add_percentencode(out
, c
->path
, 0);
179 static char *credential_ask_one(const char *what
, struct credential
*c
,
182 struct strbuf desc
= STRBUF_INIT
;
183 struct strbuf prompt
= STRBUF_INIT
;
186 credential_describe(c
, &desc
);
188 strbuf_addf(&prompt
, "%s for '%s': ", what
, desc
.buf
);
190 strbuf_addf(&prompt
, "%s: ", what
);
192 r
= git_prompt(prompt
.buf
, flags
);
194 strbuf_release(&desc
);
195 strbuf_release(&prompt
);
199 static void credential_getpass(struct credential
*c
)
202 c
->username
= credential_ask_one("Username", c
,
203 PROMPT_ASKPASS
|PROMPT_ECHO
);
205 c
->password
= credential_ask_one("Password", c
,
209 int credential_read(struct credential
*c
, FILE *fp
)
211 struct strbuf line
= STRBUF_INIT
;
213 while (strbuf_getline(&line
, fp
) != EOF
) {
214 char *key
= line
.buf
;
215 char *value
= strchr(key
, '=');
221 warning("invalid credential line: %s", key
);
222 strbuf_release(&line
);
227 if (!strcmp(key
, "username")) {
229 c
->username
= xstrdup(value
);
230 c
->username_from_proto
= 1;
231 } else if (!strcmp(key
, "password")) {
233 c
->password
= xstrdup(value
);
234 } else if (!strcmp(key
, "protocol")) {
236 c
->protocol
= xstrdup(value
);
237 } else if (!strcmp(key
, "host")) {
239 c
->host
= xstrdup(value
);
240 } else if (!strcmp(key
, "path")) {
242 c
->path
= xstrdup(value
);
243 } else if (!strcmp(key
, "wwwauth[]")) {
244 strvec_push(&c
->wwwauth_headers
, value
);
245 } else if (!strcmp(key
, "password_expiry_utc")) {
247 c
->password_expiry_utc
= parse_timestamp(value
, NULL
, 10);
248 if (c
->password_expiry_utc
== 0 || errno
== ERANGE
)
249 c
->password_expiry_utc
= TIME_MAX
;
250 } else if (!strcmp(key
, "oauth_refresh_token")) {
251 free(c
->oauth_refresh_token
);
252 c
->oauth_refresh_token
= xstrdup(value
);
253 } else if (!strcmp(key
, "url")) {
254 credential_from_url(c
, value
);
255 } else if (!strcmp(key
, "quit")) {
256 c
->quit
= !!git_config_bool("quit", value
);
259 * Ignore other lines; we don't know what they mean, but
260 * this future-proofs us when later versions of git do
261 * learn new lines, and the helpers are updated to match.
265 strbuf_release(&line
);
269 static void credential_write_item(FILE *fp
, const char *key
, const char *value
,
272 if (!value
&& required
)
273 BUG("credential value for %s is missing", key
);
276 if (strchr(value
, '\n'))
277 die("credential value for %s contains newline", key
);
278 fprintf(fp
, "%s=%s\n", key
, value
);
281 void credential_write(const struct credential
*c
, FILE *fp
)
283 credential_write_item(fp
, "protocol", c
->protocol
, 1);
284 credential_write_item(fp
, "host", c
->host
, 1);
285 credential_write_item(fp
, "path", c
->path
, 0);
286 credential_write_item(fp
, "username", c
->username
, 0);
287 credential_write_item(fp
, "password", c
->password
, 0);
288 credential_write_item(fp
, "oauth_refresh_token", c
->oauth_refresh_token
, 0);
289 if (c
->password_expiry_utc
!= TIME_MAX
) {
290 char *s
= xstrfmt("%"PRItime
, c
->password_expiry_utc
);
291 credential_write_item(fp
, "password_expiry_utc", s
, 0);
294 for (size_t i
= 0; i
< c
->wwwauth_headers
.nr
; i
++)
295 credential_write_item(fp
, "wwwauth[]", c
->wwwauth_headers
.v
[i
], 0);
298 static int run_credential_helper(struct credential
*c
,
302 struct child_process helper
= CHILD_PROCESS_INIT
;
305 strvec_push(&helper
.args
, cmd
);
306 helper
.use_shell
= 1;
311 helper
.no_stdout
= 1;
313 if (start_command(&helper
) < 0)
316 fp
= xfdopen(helper
.in
, "w");
317 sigchain_push(SIGPIPE
, SIG_IGN
);
318 credential_write(c
, fp
);
320 sigchain_pop(SIGPIPE
);
324 fp
= xfdopen(helper
.out
, "r");
325 r
= credential_read(c
, fp
);
328 finish_command(&helper
);
333 if (finish_command(&helper
))
338 static int credential_do(struct credential
*c
, const char *helper
,
339 const char *operation
)
341 struct strbuf cmd
= STRBUF_INIT
;
344 if (helper
[0] == '!')
345 strbuf_addstr(&cmd
, helper
+ 1);
346 else if (is_absolute_path(helper
))
347 strbuf_addstr(&cmd
, helper
);
349 strbuf_addf(&cmd
, "git credential-%s", helper
);
351 strbuf_addf(&cmd
, " %s", operation
);
352 r
= run_credential_helper(c
, cmd
.buf
, !strcmp(operation
, "get"));
354 strbuf_release(&cmd
);
358 void credential_fill(struct credential
*c
)
362 if (c
->username
&& c
->password
)
365 credential_apply_config(c
);
367 for (i
= 0; i
< c
->helpers
.nr
; i
++) {
368 credential_do(c
, c
->helpers
.items
[i
].string
, "get");
369 if (c
->password_expiry_utc
< time(NULL
)) {
370 /* Discard expired password */
371 FREE_AND_NULL(c
->password
);
372 /* Reset expiry to maintain consistency */
373 c
->password_expiry_utc
= TIME_MAX
;
375 if (c
->username
&& c
->password
)
378 die("credential helper '%s' told us to quit",
379 c
->helpers
.items
[i
].string
);
382 credential_getpass(c
);
383 if (!c
->username
&& !c
->password
)
384 die("unable to get password from user");
387 void credential_approve(struct credential
*c
)
393 if (!c
->username
|| !c
->password
|| c
->password_expiry_utc
< time(NULL
))
396 credential_apply_config(c
);
398 for (i
= 0; i
< c
->helpers
.nr
; i
++)
399 credential_do(c
, c
->helpers
.items
[i
].string
, "store");
403 void credential_reject(struct credential
*c
)
407 credential_apply_config(c
);
409 for (i
= 0; i
< c
->helpers
.nr
; i
++)
410 credential_do(c
, c
->helpers
.items
[i
].string
, "erase");
412 FREE_AND_NULL(c
->username
);
413 FREE_AND_NULL(c
->password
);
414 FREE_AND_NULL(c
->oauth_refresh_token
);
415 c
->password_expiry_utc
= TIME_MAX
;
419 static int check_url_component(const char *url
, int quiet
,
420 const char *name
, const char *value
)
424 if (!strchr(value
, '\n'))
428 warning(_("url contains a newline in its %s component: %s"),
434 * Potentially-partial URLs can, but do not have to, contain
436 * - a protocol (or scheme) of the form "<protocol>://"
438 * - a host name (the part after the protocol and before the first slash after
441 * - a user name and potentially a password (as "<user>[:<password>]@" part of
444 * - a path (the part after the host name, if any, starting with the slash)
446 * Missing parts will be left unset in `struct credential`. Thus, `https://`
447 * will have only the `protocol` set, `example.com` only the host name, and
448 * `/git` only the path.
450 * Note that an empty host name in an otherwise fully-qualified URL (e.g.
451 * `cert:///path/to/cert.pem`) will be treated as unset if we expect the URL to
452 * be potentially partial, and only then (otherwise, the empty string is used).
454 * The credential_from_url() function does not allow partial URLs.
456 static int credential_from_url_1(struct credential
*c
, const char *url
,
457 int allow_partial_url
, int quiet
)
459 const char *at
, *colon
, *cp
, *slash
, *host
, *proto_end
;
465 * (1) proto://<host>/...
466 * (2) proto://<user>@<host>/...
467 * (3) proto://<user>:<pass>@<host>/...
469 proto_end
= strstr(url
, "://");
470 if (!allow_partial_url
&& (!proto_end
|| proto_end
== url
)) {
472 warning(_("url has no scheme: %s"), url
);
475 cp
= proto_end
? proto_end
+ 3 : url
;
476 at
= strchr(cp
, '@');
477 colon
= strchr(cp
, ':');
480 * A query or fragment marker before the slash ends the host portion.
481 * We'll just continue to call this "slash" for simplicity. Notably our
482 * "trim leading slashes" part won't skip over this part of the path,
483 * but that's what we'd want.
485 slash
= cp
+ strcspn(cp
, "/?#");
487 if (!at
|| slash
<= at
) {
491 else if (!colon
|| at
<= colon
) {
493 c
->username
= url_decode_mem(cp
, at
- cp
);
494 if (c
->username
&& *c
->username
)
495 c
->username_from_proto
= 1;
499 c
->username
= url_decode_mem(cp
, colon
- cp
);
500 if (c
->username
&& *c
->username
)
501 c
->username_from_proto
= 1;
502 c
->password
= url_decode_mem(colon
+ 1, at
- (colon
+ 1));
506 if (proto_end
&& proto_end
- url
> 0)
507 c
->protocol
= xmemdupz(url
, proto_end
- url
);
508 if (!allow_partial_url
|| slash
- host
> 0)
509 c
->host
= url_decode_mem(host
, slash
- host
);
510 /* Trim leading and trailing slashes from path */
511 while (*slash
== '/')
515 c
->path
= url_decode(slash
);
516 p
= c
->path
+ strlen(c
->path
) - 1;
517 while (p
> c
->path
&& *p
== '/')
521 if (check_url_component(url
, quiet
, "username", c
->username
) < 0 ||
522 check_url_component(url
, quiet
, "password", c
->password
) < 0 ||
523 check_url_component(url
, quiet
, "protocol", c
->protocol
) < 0 ||
524 check_url_component(url
, quiet
, "host", c
->host
) < 0 ||
525 check_url_component(url
, quiet
, "path", c
->path
) < 0)
531 static int credential_from_potentially_partial_url(struct credential
*c
,
534 return credential_from_url_1(c
, url
, 1, 0);
537 int credential_from_url_gently(struct credential
*c
, const char *url
, int quiet
)
539 return credential_from_url_1(c
, url
, 0, quiet
);
542 void credential_from_url(struct credential
*c
, const char *url
)
544 if (credential_from_url_gently(c
, url
, 0) < 0)
545 die(_("credential url cannot be parsed: %s"), url
);