3 #include "credential.h"
4 #include "string-list.h"
5 #include "run-command.h"
10 #include "git-compat-util.h"
12 void credential_init(struct credential
*c
)
14 struct credential blank
= CREDENTIAL_INIT
;
15 memcpy(c
, &blank
, sizeof(*c
));
18 void credential_clear(struct credential
*c
)
25 string_list_clear(&c
->helpers
, 0);
30 int credential_match(const struct credential
*want
,
31 const struct credential
*have
)
33 #define CHECK(x) (!want->x || (have->x && !strcmp(want->x, have->x)))
34 return CHECK(protocol
) &&
42 static int credential_from_potentially_partial_url(struct credential
*c
,
45 static int credential_config_callback(const char *var
, const char *value
,
48 struct credential
*c
= data
;
51 if (!skip_prefix(var
, "credential.", &key
))
55 return config_error_nonbool(var
);
57 if (!strcmp(key
, "helper")) {
59 string_list_append(&c
->helpers
, value
);
61 string_list_clear(&c
->helpers
, 0);
62 } else if (!strcmp(key
, "username")) {
63 if (!c
->username_from_proto
) {
65 c
->username
= xstrdup(value
);
68 else if (!strcmp(key
, "usehttppath"))
69 c
->use_http_path
= git_config_bool(var
, value
);
74 static int proto_is_http(const char *s
)
78 return !strcmp(s
, "https") || !strcmp(s
, "http");
81 static void credential_describe(struct credential
*c
, struct strbuf
*out
);
82 static void credential_format(struct credential
*c
, struct strbuf
*out
);
84 static int select_all(const struct urlmatch_item
*a
,
85 const struct urlmatch_item
*b
)
90 static int match_partial_url(const char *url
, void *cb
)
92 struct credential
*c
= cb
;
93 struct credential want
= CREDENTIAL_INIT
;
96 if (credential_from_potentially_partial_url(&want
, url
) < 0)
97 warning(_("skipping credential lookup for key: credential.%s"),
100 matches
= credential_match(&want
, c
);
101 credential_clear(&want
);
106 static void credential_apply_config(struct credential
*c
)
108 char *normalized_url
;
109 struct urlmatch_config config
= URLMATCH_CONFIG_INIT
;
110 struct strbuf url
= STRBUF_INIT
;
113 die(_("refusing to work with credential missing host field"));
115 die(_("refusing to work with credential missing protocol field"));
120 config
.section
= "credential";
122 config
.collect_fn
= credential_config_callback
;
123 config
.cascade_fn
= NULL
;
124 config
.select_fn
= select_all
;
125 config
.fallback_match_fn
= match_partial_url
;
128 credential_format(c
, &url
);
129 normalized_url
= url_normalize(url
.buf
, &config
.url
);
131 git_config(urlmatch_config_entry
, &config
);
132 string_list_clear(&config
.vars
, 1);
133 free(normalized_url
);
134 urlmatch_config_release(&config
);
135 strbuf_release(&url
);
139 if (!c
->use_http_path
&& proto_is_http(c
->protocol
)) {
140 FREE_AND_NULL(c
->path
);
144 static void credential_describe(struct credential
*c
, struct strbuf
*out
)
148 strbuf_addf(out
, "%s://", c
->protocol
);
149 if (c
->username
&& *c
->username
)
150 strbuf_addf(out
, "%s@", c
->username
);
152 strbuf_addstr(out
, c
->host
);
154 strbuf_addf(out
, "/%s", c
->path
);
157 static void credential_format(struct credential
*c
, struct strbuf
*out
)
161 strbuf_addf(out
, "%s://", c
->protocol
);
162 if (c
->username
&& *c
->username
) {
163 strbuf_add_percentencode(out
, c
->username
, STRBUF_ENCODE_SLASH
);
164 strbuf_addch(out
, '@');
167 strbuf_addstr(out
, c
->host
);
169 strbuf_addch(out
, '/');
170 strbuf_add_percentencode(out
, c
->path
, 0);
174 static char *credential_ask_one(const char *what
, struct credential
*c
,
177 struct strbuf desc
= STRBUF_INIT
;
178 struct strbuf prompt
= STRBUF_INIT
;
181 credential_describe(c
, &desc
);
183 strbuf_addf(&prompt
, "%s for '%s': ", what
, desc
.buf
);
185 strbuf_addf(&prompt
, "%s: ", what
);
187 r
= git_prompt(prompt
.buf
, flags
);
189 strbuf_release(&desc
);
190 strbuf_release(&prompt
);
194 static void credential_getpass(struct credential
*c
)
197 c
->username
= credential_ask_one("Username", c
,
198 PROMPT_ASKPASS
|PROMPT_ECHO
);
200 c
->password
= credential_ask_one("Password", c
,
204 int credential_read(struct credential
*c
, FILE *fp
)
206 struct strbuf line
= STRBUF_INIT
;
208 while (strbuf_getline(&line
, fp
) != EOF
) {
209 char *key
= line
.buf
;
210 char *value
= strchr(key
, '=');
216 warning("invalid credential line: %s", key
);
217 strbuf_release(&line
);
222 if (!strcmp(key
, "username")) {
224 c
->username
= xstrdup(value
);
225 c
->username_from_proto
= 1;
226 } else if (!strcmp(key
, "password")) {
228 c
->password
= xstrdup(value
);
229 } else if (!strcmp(key
, "protocol")) {
231 c
->protocol
= xstrdup(value
);
232 } else if (!strcmp(key
, "host")) {
234 c
->host
= xstrdup(value
);
235 } else if (!strcmp(key
, "path")) {
237 c
->path
= xstrdup(value
);
238 } else if (!strcmp(key
, "password_expiry_utc")) {
240 c
->password_expiry_utc
= parse_timestamp(value
, NULL
, 10);
241 if (c
->password_expiry_utc
== 0 || errno
== ERANGE
)
242 c
->password_expiry_utc
= TIME_MAX
;
243 } else if (!strcmp(key
, "url")) {
244 credential_from_url(c
, value
);
245 } else if (!strcmp(key
, "quit")) {
246 c
->quit
= !!git_config_bool("quit", value
);
249 * Ignore other lines; we don't know what they mean, but
250 * this future-proofs us when later versions of git do
251 * learn new lines, and the helpers are updated to match.
255 strbuf_release(&line
);
259 static void credential_write_item(FILE *fp
, const char *key
, const char *value
,
262 if (!value
&& required
)
263 BUG("credential value for %s is missing", key
);
266 if (strchr(value
, '\n'))
267 die("credential value for %s contains newline", key
);
268 fprintf(fp
, "%s=%s\n", key
, value
);
271 void credential_write(const struct credential
*c
, FILE *fp
)
273 credential_write_item(fp
, "protocol", c
->protocol
, 1);
274 credential_write_item(fp
, "host", c
->host
, 1);
275 credential_write_item(fp
, "path", c
->path
, 0);
276 credential_write_item(fp
, "username", c
->username
, 0);
277 credential_write_item(fp
, "password", c
->password
, 0);
278 if (c
->password_expiry_utc
!= TIME_MAX
) {
279 char *s
= xstrfmt("%"PRItime
, c
->password_expiry_utc
);
280 credential_write_item(fp
, "password_expiry_utc", s
, 0);
285 static int run_credential_helper(struct credential
*c
,
289 struct child_process helper
= CHILD_PROCESS_INIT
;
292 strvec_push(&helper
.args
, cmd
);
293 helper
.use_shell
= 1;
298 helper
.no_stdout
= 1;
300 if (start_command(&helper
) < 0)
303 fp
= xfdopen(helper
.in
, "w");
304 sigchain_push(SIGPIPE
, SIG_IGN
);
305 credential_write(c
, fp
);
307 sigchain_pop(SIGPIPE
);
311 fp
= xfdopen(helper
.out
, "r");
312 r
= credential_read(c
, fp
);
315 finish_command(&helper
);
320 if (finish_command(&helper
))
325 static int credential_do(struct credential
*c
, const char *helper
,
326 const char *operation
)
328 struct strbuf cmd
= STRBUF_INIT
;
331 if (helper
[0] == '!')
332 strbuf_addstr(&cmd
, helper
+ 1);
333 else if (is_absolute_path(helper
))
334 strbuf_addstr(&cmd
, helper
);
336 strbuf_addf(&cmd
, "git credential-%s", helper
);
338 strbuf_addf(&cmd
, " %s", operation
);
339 r
= run_credential_helper(c
, cmd
.buf
, !strcmp(operation
, "get"));
341 strbuf_release(&cmd
);
345 void credential_fill(struct credential
*c
)
349 if (c
->username
&& c
->password
)
352 credential_apply_config(c
);
354 for (i
= 0; i
< c
->helpers
.nr
; i
++) {
355 credential_do(c
, c
->helpers
.items
[i
].string
, "get");
356 if (c
->password_expiry_utc
< time(NULL
)) {
357 /* Discard expired password */
358 FREE_AND_NULL(c
->password
);
359 /* Reset expiry to maintain consistency */
360 c
->password_expiry_utc
= TIME_MAX
;
362 if (c
->username
&& c
->password
)
365 die("credential helper '%s' told us to quit",
366 c
->helpers
.items
[i
].string
);
369 credential_getpass(c
);
370 if (!c
->username
&& !c
->password
)
371 die("unable to get password from user");
374 void credential_approve(struct credential
*c
)
380 if (!c
->username
|| !c
->password
|| c
->password_expiry_utc
< time(NULL
))
383 credential_apply_config(c
);
385 for (i
= 0; i
< c
->helpers
.nr
; i
++)
386 credential_do(c
, c
->helpers
.items
[i
].string
, "store");
390 void credential_reject(struct credential
*c
)
394 credential_apply_config(c
);
396 for (i
= 0; i
< c
->helpers
.nr
; i
++)
397 credential_do(c
, c
->helpers
.items
[i
].string
, "erase");
399 FREE_AND_NULL(c
->username
);
400 FREE_AND_NULL(c
->password
);
401 c
->password_expiry_utc
= TIME_MAX
;
405 static int check_url_component(const char *url
, int quiet
,
406 const char *name
, const char *value
)
410 if (!strchr(value
, '\n'))
414 warning(_("url contains a newline in its %s component: %s"),
420 * Potentially-partial URLs can, but do not have to, contain
422 * - a protocol (or scheme) of the form "<protocol>://"
424 * - a host name (the part after the protocol and before the first slash after
427 * - a user name and potentially a password (as "<user>[:<password>]@" part of
430 * - a path (the part after the host name, if any, starting with the slash)
432 * Missing parts will be left unset in `struct credential`. Thus, `https://`
433 * will have only the `protocol` set, `example.com` only the host name, and
434 * `/git` only the path.
436 * Note that an empty host name in an otherwise fully-qualified URL (e.g.
437 * `cert:///path/to/cert.pem`) will be treated as unset if we expect the URL to
438 * be potentially partial, and only then (otherwise, the empty string is used).
440 * The credential_from_url() function does not allow partial URLs.
442 static int credential_from_url_1(struct credential
*c
, const char *url
,
443 int allow_partial_url
, int quiet
)
445 const char *at
, *colon
, *cp
, *slash
, *host
, *proto_end
;
451 * (1) proto://<host>/...
452 * (2) proto://<user>@<host>/...
453 * (3) proto://<user>:<pass>@<host>/...
455 proto_end
= strstr(url
, "://");
456 if (!allow_partial_url
&& (!proto_end
|| proto_end
== url
)) {
458 warning(_("url has no scheme: %s"), url
);
461 cp
= proto_end
? proto_end
+ 3 : url
;
462 at
= strchr(cp
, '@');
463 colon
= strchr(cp
, ':');
466 * A query or fragment marker before the slash ends the host portion.
467 * We'll just continue to call this "slash" for simplicity. Notably our
468 * "trim leading slashes" part won't skip over this part of the path,
469 * but that's what we'd want.
471 slash
= cp
+ strcspn(cp
, "/?#");
473 if (!at
|| slash
<= at
) {
477 else if (!colon
|| at
<= colon
) {
479 c
->username
= url_decode_mem(cp
, at
- cp
);
480 if (c
->username
&& *c
->username
)
481 c
->username_from_proto
= 1;
485 c
->username
= url_decode_mem(cp
, colon
- cp
);
486 if (c
->username
&& *c
->username
)
487 c
->username_from_proto
= 1;
488 c
->password
= url_decode_mem(colon
+ 1, at
- (colon
+ 1));
492 if (proto_end
&& proto_end
- url
> 0)
493 c
->protocol
= xmemdupz(url
, proto_end
- url
);
494 if (!allow_partial_url
|| slash
- host
> 0)
495 c
->host
= url_decode_mem(host
, slash
- host
);
496 /* Trim leading and trailing slashes from path */
497 while (*slash
== '/')
501 c
->path
= url_decode(slash
);
502 p
= c
->path
+ strlen(c
->path
) - 1;
503 while (p
> c
->path
&& *p
== '/')
507 if (check_url_component(url
, quiet
, "username", c
->username
) < 0 ||
508 check_url_component(url
, quiet
, "password", c
->password
) < 0 ||
509 check_url_component(url
, quiet
, "protocol", c
->protocol
) < 0 ||
510 check_url_component(url
, quiet
, "host", c
->host
) < 0 ||
511 check_url_component(url
, quiet
, "path", c
->path
) < 0)
517 static int credential_from_potentially_partial_url(struct credential
*c
,
520 return credential_from_url_1(c
, url
, 1, 0);
523 int credential_from_url_gently(struct credential
*c
, const char *url
, int quiet
)
525 return credential_from_url_1(c
, url
, 0, quiet
);
528 void credential_from_url(struct credential
*c
, const char *url
)
530 if (credential_from_url_gently(c
, url
, 0) < 0)
531 die(_("credential url cannot be parsed: %s"), url
);