3 #include "credential.h"
4 #include "string-list.h"
5 #include "run-command.h"
10 void credential_init(struct credential
*c
)
12 memset(c
, 0, sizeof(*c
));
13 c
->helpers
.strdup_strings
= 1;
16 void credential_clear(struct credential
*c
)
23 string_list_clear(&c
->helpers
, 0);
28 int credential_match(const struct credential
*want
,
29 const struct credential
*have
)
31 #define CHECK(x) (!want->x || (have->x && !strcmp(want->x, have->x)))
32 return CHECK(protocol
) &&
39 static int credential_config_callback(const char *var
, const char *value
,
42 struct credential
*c
= data
;
43 const char *key
, *dot
;
45 if (!skip_prefix(var
, "credential.", &key
))
49 return config_error_nonbool(var
);
51 dot
= strrchr(key
, '.');
53 struct credential want
= CREDENTIAL_INIT
;
54 char *url
= xmemdupz(key
, dot
- key
);
57 credential_from_url(&want
, url
);
58 matched
= credential_match(&want
, c
);
60 credential_clear(&want
);
68 if (!strcmp(key
, "helper")) {
70 string_list_append(&c
->helpers
, value
);
72 string_list_clear(&c
->helpers
, 0);
73 } else if (!strcmp(key
, "username")) {
75 c
->username
= xstrdup(value
);
77 else if (!strcmp(key
, "usehttppath"))
78 c
->use_http_path
= git_config_bool(var
, value
);
83 static int proto_is_http(const char *s
)
87 return !strcmp(s
, "https") || !strcmp(s
, "http");
90 static void credential_apply_config(struct credential
*c
)
94 git_config(credential_config_callback
, c
);
97 if (!c
->use_http_path
&& proto_is_http(c
->protocol
)) {
98 FREE_AND_NULL(c
->path
);
102 static void credential_describe(struct credential
*c
, struct strbuf
*out
)
106 strbuf_addf(out
, "%s://", c
->protocol
);
107 if (c
->username
&& *c
->username
)
108 strbuf_addf(out
, "%s@", c
->username
);
110 strbuf_addstr(out
, c
->host
);
112 strbuf_addf(out
, "/%s", c
->path
);
115 static char *credential_ask_one(const char *what
, struct credential
*c
,
118 struct strbuf desc
= STRBUF_INIT
;
119 struct strbuf prompt
= STRBUF_INIT
;
122 credential_describe(c
, &desc
);
124 strbuf_addf(&prompt
, "%s for '%s': ", what
, desc
.buf
);
126 strbuf_addf(&prompt
, "%s: ", what
);
128 r
= git_prompt(prompt
.buf
, flags
);
130 strbuf_release(&desc
);
131 strbuf_release(&prompt
);
135 static void credential_getpass(struct credential
*c
)
138 c
->username
= credential_ask_one("Username", c
,
139 PROMPT_ASKPASS
|PROMPT_ECHO
);
141 c
->password
= credential_ask_one("Password", c
,
145 int credential_read(struct credential
*c
, FILE *fp
)
147 struct strbuf line
= STRBUF_INIT
;
149 while (strbuf_getline_lf(&line
, fp
) != EOF
) {
150 char *key
= line
.buf
;
151 char *value
= strchr(key
, '=');
157 warning("invalid credential line: %s", key
);
158 strbuf_release(&line
);
163 if (!strcmp(key
, "username")) {
165 c
->username
= xstrdup(value
);
166 } else if (!strcmp(key
, "password")) {
168 c
->password
= xstrdup(value
);
169 } else if (!strcmp(key
, "protocol")) {
171 c
->protocol
= xstrdup(value
);
172 } else if (!strcmp(key
, "host")) {
174 c
->host
= xstrdup(value
);
175 } else if (!strcmp(key
, "path")) {
177 c
->path
= xstrdup(value
);
178 } else if (!strcmp(key
, "url")) {
179 credential_from_url(c
, value
);
180 } else if (!strcmp(key
, "quit")) {
181 c
->quit
= !!git_config_bool("quit", value
);
184 * Ignore other lines; we don't know what they mean, but
185 * this future-proofs us when later versions of git do
186 * learn new lines, and the helpers are updated to match.
190 strbuf_release(&line
);
194 static void credential_write_item(FILE *fp
, const char *key
, const char *value
)
198 fprintf(fp
, "%s=%s\n", key
, value
);
201 void credential_write(const struct credential
*c
, FILE *fp
)
203 credential_write_item(fp
, "protocol", c
->protocol
);
204 credential_write_item(fp
, "host", c
->host
);
205 credential_write_item(fp
, "path", c
->path
);
206 credential_write_item(fp
, "username", c
->username
);
207 credential_write_item(fp
, "password", c
->password
);
210 static int run_credential_helper(struct credential
*c
,
214 struct child_process helper
= CHILD_PROCESS_INIT
;
215 const char *argv
[] = { NULL
, NULL
};
220 helper
.use_shell
= 1;
225 helper
.no_stdout
= 1;
227 if (start_command(&helper
) < 0)
230 fp
= xfdopen(helper
.in
, "w");
231 sigchain_push(SIGPIPE
, SIG_IGN
);
232 credential_write(c
, fp
);
234 sigchain_pop(SIGPIPE
);
238 fp
= xfdopen(helper
.out
, "r");
239 r
= credential_read(c
, fp
);
242 finish_command(&helper
);
247 if (finish_command(&helper
))
252 static int credential_do(struct credential
*c
, const char *helper
,
253 const char *operation
)
255 struct strbuf cmd
= STRBUF_INIT
;
258 if (helper
[0] == '!')
259 strbuf_addstr(&cmd
, helper
+ 1);
260 else if (is_absolute_path(helper
))
261 strbuf_addstr(&cmd
, helper
);
263 strbuf_addf(&cmd
, "git credential-%s", helper
);
265 strbuf_addf(&cmd
, " %s", operation
);
266 r
= run_credential_helper(c
, cmd
.buf
, !strcmp(operation
, "get"));
268 strbuf_release(&cmd
);
272 void credential_fill(struct credential
*c
)
276 if (c
->username
&& c
->password
)
279 credential_apply_config(c
);
281 for (i
= 0; i
< c
->helpers
.nr
; i
++) {
282 credential_do(c
, c
->helpers
.items
[i
].string
, "get");
283 if (c
->username
&& c
->password
)
286 die("credential helper '%s' told us to quit",
287 c
->helpers
.items
[i
].string
);
290 credential_getpass(c
);
291 if (!c
->username
&& !c
->password
)
292 die("unable to get password from user");
295 void credential_approve(struct credential
*c
)
301 if (!c
->username
|| !c
->password
)
304 credential_apply_config(c
);
306 for (i
= 0; i
< c
->helpers
.nr
; i
++)
307 credential_do(c
, c
->helpers
.items
[i
].string
, "store");
311 void credential_reject(struct credential
*c
)
315 credential_apply_config(c
);
317 for (i
= 0; i
< c
->helpers
.nr
; i
++)
318 credential_do(c
, c
->helpers
.items
[i
].string
, "erase");
320 FREE_AND_NULL(c
->username
);
321 FREE_AND_NULL(c
->password
);
325 void credential_from_url(struct credential
*c
, const char *url
)
327 const char *at
, *colon
, *cp
, *slash
, *host
, *proto_end
;
333 * (1) proto://<host>/...
334 * (2) proto://<user>@<host>/...
335 * (3) proto://<user>:<pass>@<host>/...
337 proto_end
= strstr(url
, "://");
341 at
= strchr(cp
, '@');
342 colon
= strchr(cp
, ':');
343 slash
= strchrnul(cp
, '/');
345 if (!at
|| slash
<= at
) {
349 else if (!colon
|| at
<= colon
) {
351 c
->username
= url_decode_mem(cp
, at
- cp
);
355 c
->username
= url_decode_mem(cp
, colon
- cp
);
356 c
->password
= url_decode_mem(colon
+ 1, at
- (colon
+ 1));
360 if (proto_end
- url
> 0)
361 c
->protocol
= xmemdupz(url
, proto_end
- url
);
362 if (slash
- host
> 0)
363 c
->host
= url_decode_mem(host
, slash
- host
);
364 /* Trim leading and trailing slashes from path */
365 while (*slash
== '/')
369 c
->path
= url_decode(slash
);
370 p
= c
->path
+ strlen(c
->path
) - 1;
371 while (p
> c
->path
&& *p
== '/')