The fifth batch
[git.git] / credential.c
blob064e25e5d5754b68e54664fbb13b79b289d4e006
1 #include "cache.h"
2 #include "config.h"
3 #include "credential.h"
4 #include "string-list.h"
5 #include "run-command.h"
6 #include "url.h"
7 #include "prompt.h"
8 #include "sigchain.h"
9 #include "urlmatch.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)
19 free(c->protocol);
20 free(c->host);
21 free(c->path);
22 free(c->username);
23 free(c->password);
24 string_list_clear(&c->helpers, 0);
26 credential_init(c);
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) &&
34 CHECK(host) &&
35 CHECK(path) &&
36 CHECK(username);
37 #undef CHECK
40 static int credential_config_callback(const char *var, const char *value,
41 void *data)
43 struct credential *c = data;
44 const char *key;
46 if (!skip_prefix(var, "credential.", &key))
47 return 0;
49 if (!value)
50 return config_error_nonbool(var);
52 if (!strcmp(key, "helper")) {
53 if (*value)
54 string_list_append(&c->helpers, value);
55 else
56 string_list_clear(&c->helpers, 0);
57 } else if (!strcmp(key, "username")) {
58 if (!c->username_from_proto) {
59 free(c->username);
60 c->username = xstrdup(value);
63 else if (!strcmp(key, "usehttppath"))
64 c->use_http_path = git_config_bool(var, value);
66 return 0;
69 static int proto_is_http(const char *s)
71 if (!s)
72 return 0;
73 return !strcmp(s, "https") || !strcmp(s, "http");
76 static void credential_describe(struct credential *c, struct strbuf *out);
77 static void credential_format(struct credential *c, struct strbuf *out);
79 static int select_all(const struct urlmatch_item *a,
80 const struct urlmatch_item *b)
82 return 0;
85 static void credential_apply_config(struct credential *c)
87 char *normalized_url;
88 struct urlmatch_config config = { STRING_LIST_INIT_DUP };
89 struct strbuf url = STRBUF_INIT;
91 if (!c->host)
92 die(_("refusing to work with credential missing host field"));
93 if (!c->protocol)
94 die(_("refusing to work with credential missing protocol field"));
96 if (c->configured)
97 return;
99 config.section = "credential";
100 config.key = NULL;
101 config.collect_fn = credential_config_callback;
102 config.cascade_fn = NULL;
103 config.select_fn = select_all;
104 config.cb = c;
106 credential_format(c, &url);
107 normalized_url = url_normalize(url.buf, &config.url);
109 git_config(urlmatch_config_entry, &config);
110 free(normalized_url);
111 strbuf_release(&url);
113 c->configured = 1;
115 if (!c->use_http_path && proto_is_http(c->protocol)) {
116 FREE_AND_NULL(c->path);
120 static void credential_describe(struct credential *c, struct strbuf *out)
122 if (!c->protocol)
123 return;
124 strbuf_addf(out, "%s://", c->protocol);
125 if (c->username && *c->username)
126 strbuf_addf(out, "%s@", c->username);
127 if (c->host)
128 strbuf_addstr(out, c->host);
129 if (c->path)
130 strbuf_addf(out, "/%s", c->path);
133 static void credential_format(struct credential *c, struct strbuf *out)
135 if (!c->protocol)
136 return;
137 strbuf_addf(out, "%s://", c->protocol);
138 if (c->username && *c->username) {
139 strbuf_add_percentencode(out, c->username);
140 strbuf_addch(out, '@');
142 if (c->host)
143 strbuf_addstr(out, c->host);
144 if (c->path) {
145 strbuf_addch(out, '/');
146 strbuf_add_percentencode(out, c->path);
150 static char *credential_ask_one(const char *what, struct credential *c,
151 int flags)
153 struct strbuf desc = STRBUF_INIT;
154 struct strbuf prompt = STRBUF_INIT;
155 char *r;
157 credential_describe(c, &desc);
158 if (desc.len)
159 strbuf_addf(&prompt, "%s for '%s': ", what, desc.buf);
160 else
161 strbuf_addf(&prompt, "%s: ", what);
163 r = git_prompt(prompt.buf, flags);
165 strbuf_release(&desc);
166 strbuf_release(&prompt);
167 return xstrdup(r);
170 static void credential_getpass(struct credential *c)
172 if (!c->username)
173 c->username = credential_ask_one("Username", c,
174 PROMPT_ASKPASS|PROMPT_ECHO);
175 if (!c->password)
176 c->password = credential_ask_one("Password", c,
177 PROMPT_ASKPASS);
180 int credential_read(struct credential *c, FILE *fp)
182 struct strbuf line = STRBUF_INIT;
184 while (strbuf_getline_lf(&line, fp) != EOF) {
185 char *key = line.buf;
186 char *value = strchr(key, '=');
188 if (!line.len)
189 break;
191 if (!value) {
192 warning("invalid credential line: %s", key);
193 strbuf_release(&line);
194 return -1;
196 *value++ = '\0';
198 if (!strcmp(key, "username")) {
199 free(c->username);
200 c->username = xstrdup(value);
201 c->username_from_proto = 1;
202 } else if (!strcmp(key, "password")) {
203 free(c->password);
204 c->password = xstrdup(value);
205 } else if (!strcmp(key, "protocol")) {
206 free(c->protocol);
207 c->protocol = xstrdup(value);
208 } else if (!strcmp(key, "host")) {
209 free(c->host);
210 c->host = xstrdup(value);
211 } else if (!strcmp(key, "path")) {
212 free(c->path);
213 c->path = xstrdup(value);
214 } else if (!strcmp(key, "url")) {
215 credential_from_url(c, value);
216 } else if (!strcmp(key, "quit")) {
217 c->quit = !!git_config_bool("quit", value);
220 * Ignore other lines; we don't know what they mean, but
221 * this future-proofs us when later versions of git do
222 * learn new lines, and the helpers are updated to match.
226 strbuf_release(&line);
227 return 0;
230 static void credential_write_item(FILE *fp, const char *key, const char *value,
231 int required)
233 if (!value && required)
234 BUG("credential value for %s is missing", key);
235 if (!value)
236 return;
237 if (strchr(value, '\n'))
238 die("credential value for %s contains newline", key);
239 fprintf(fp, "%s=%s\n", key, value);
242 void credential_write(const struct credential *c, FILE *fp)
244 credential_write_item(fp, "protocol", c->protocol, 1);
245 credential_write_item(fp, "host", c->host, 1);
246 credential_write_item(fp, "path", c->path, 0);
247 credential_write_item(fp, "username", c->username, 0);
248 credential_write_item(fp, "password", c->password, 0);
251 static int run_credential_helper(struct credential *c,
252 const char *cmd,
253 int want_output)
255 struct child_process helper = CHILD_PROCESS_INIT;
256 const char *argv[] = { NULL, NULL };
257 FILE *fp;
259 argv[0] = cmd;
260 helper.argv = argv;
261 helper.use_shell = 1;
262 helper.in = -1;
263 if (want_output)
264 helper.out = -1;
265 else
266 helper.no_stdout = 1;
268 if (start_command(&helper) < 0)
269 return -1;
271 fp = xfdopen(helper.in, "w");
272 sigchain_push(SIGPIPE, SIG_IGN);
273 credential_write(c, fp);
274 fclose(fp);
275 sigchain_pop(SIGPIPE);
277 if (want_output) {
278 int r;
279 fp = xfdopen(helper.out, "r");
280 r = credential_read(c, fp);
281 fclose(fp);
282 if (r < 0) {
283 finish_command(&helper);
284 return -1;
288 if (finish_command(&helper))
289 return -1;
290 return 0;
293 static int credential_do(struct credential *c, const char *helper,
294 const char *operation)
296 struct strbuf cmd = STRBUF_INIT;
297 int r;
299 if (helper[0] == '!')
300 strbuf_addstr(&cmd, helper + 1);
301 else if (is_absolute_path(helper))
302 strbuf_addstr(&cmd, helper);
303 else
304 strbuf_addf(&cmd, "git credential-%s", helper);
306 strbuf_addf(&cmd, " %s", operation);
307 r = run_credential_helper(c, cmd.buf, !strcmp(operation, "get"));
309 strbuf_release(&cmd);
310 return r;
313 void credential_fill(struct credential *c)
315 int i;
317 if (c->username && c->password)
318 return;
320 credential_apply_config(c);
322 for (i = 0; i < c->helpers.nr; i++) {
323 credential_do(c, c->helpers.items[i].string, "get");
324 if (c->username && c->password)
325 return;
326 if (c->quit)
327 die("credential helper '%s' told us to quit",
328 c->helpers.items[i].string);
331 credential_getpass(c);
332 if (!c->username && !c->password)
333 die("unable to get password from user");
336 void credential_approve(struct credential *c)
338 int i;
340 if (c->approved)
341 return;
342 if (!c->username || !c->password)
343 return;
345 credential_apply_config(c);
347 for (i = 0; i < c->helpers.nr; i++)
348 credential_do(c, c->helpers.items[i].string, "store");
349 c->approved = 1;
352 void credential_reject(struct credential *c)
354 int i;
356 credential_apply_config(c);
358 for (i = 0; i < c->helpers.nr; i++)
359 credential_do(c, c->helpers.items[i].string, "erase");
361 FREE_AND_NULL(c->username);
362 FREE_AND_NULL(c->password);
363 c->approved = 0;
366 static int check_url_component(const char *url, int quiet,
367 const char *name, const char *value)
369 if (!value)
370 return 0;
371 if (!strchr(value, '\n'))
372 return 0;
374 if (!quiet)
375 warning(_("url contains a newline in its %s component: %s"),
376 name, url);
377 return -1;
380 int credential_from_url_gently(struct credential *c, const char *url,
381 int quiet)
383 const char *at, *colon, *cp, *slash, *host, *proto_end;
385 credential_clear(c);
388 * Match one of:
389 * (1) proto://<host>/...
390 * (2) proto://<user>@<host>/...
391 * (3) proto://<user>:<pass>@<host>/...
393 proto_end = strstr(url, "://");
394 if (!proto_end || proto_end == url) {
395 if (!quiet)
396 warning(_("url has no scheme: %s"), url);
397 return -1;
399 cp = proto_end + 3;
400 at = strchr(cp, '@');
401 colon = strchr(cp, ':');
404 * A query or fragment marker before the slash ends the host portion.
405 * We'll just continue to call this "slash" for simplicity. Notably our
406 * "trim leading slashes" part won't skip over this part of the path,
407 * but that's what we'd want.
409 slash = cp + strcspn(cp, "/?#");
411 if (!at || slash <= at) {
412 /* Case (1) */
413 host = cp;
415 else if (!colon || at <= colon) {
416 /* Case (2) */
417 c->username = url_decode_mem(cp, at - cp);
418 if (c->username && *c->username)
419 c->username_from_proto = 1;
420 host = at + 1;
421 } else {
422 /* Case (3) */
423 c->username = url_decode_mem(cp, colon - cp);
424 if (c->username && *c->username)
425 c->username_from_proto = 1;
426 c->password = url_decode_mem(colon + 1, at - (colon + 1));
427 host = at + 1;
430 c->protocol = xmemdupz(url, proto_end - url);
431 c->host = url_decode_mem(host, slash - host);
432 /* Trim leading and trailing slashes from path */
433 while (*slash == '/')
434 slash++;
435 if (*slash) {
436 char *p;
437 c->path = url_decode(slash);
438 p = c->path + strlen(c->path) - 1;
439 while (p > c->path && *p == '/')
440 *p-- = '\0';
443 if (check_url_component(url, quiet, "username", c->username) < 0 ||
444 check_url_component(url, quiet, "password", c->password) < 0 ||
445 check_url_component(url, quiet, "protocol", c->protocol) < 0 ||
446 check_url_component(url, quiet, "host", c->host) < 0 ||
447 check_url_component(url, quiet, "path", c->path) < 0)
448 return -1;
450 return 0;
453 void credential_from_url(struct credential *c, const char *url)
455 if (credential_from_url_gently(c, url, 0) < 0)
456 die(_("credential url cannot be parsed: %s"), url);