2020-08-13 14:58:55 +00:00
|
|
|
#include "builtin.h"
|
|
|
|
#include "parse-options.h"
|
|
|
|
|
|
|
|
#ifndef NO_UNIX_SOCKETS
|
|
|
|
|
2011-12-10 10:34:14 +00:00
|
|
|
#include "credential.h"
|
|
|
|
#include "string-list.h"
|
|
|
|
#include "unix-socket.h"
|
|
|
|
#include "run-command.h"
|
|
|
|
|
|
|
|
#define FLAG_SPAWN 0x1
|
|
|
|
#define FLAG_RELAY 0x2
|
|
|
|
|
2021-09-14 07:25:59 +00:00
|
|
|
#ifdef GIT_WINDOWS_NATIVE
|
|
|
|
|
|
|
|
static int connection_closed(int error)
|
|
|
|
{
|
|
|
|
return (error == EINVAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int connection_fatally_broken(int error)
|
|
|
|
{
|
|
|
|
return (error != ENOENT) && (error != ENETDOWN);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
static int connection_closed(int error)
|
|
|
|
{
|
|
|
|
return (error == ECONNRESET);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int connection_fatally_broken(int error)
|
|
|
|
{
|
|
|
|
return (error != ENOENT) && (error != ECONNREFUSED);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2011-12-10 10:34:14 +00:00
|
|
|
static int send_request(const char *socket, const struct strbuf *out)
|
|
|
|
{
|
|
|
|
int got_data = 0;
|
2021-03-15 21:08:26 +00:00
|
|
|
int fd = unix_stream_connect(socket, 0);
|
2011-12-10 10:34:14 +00:00
|
|
|
|
|
|
|
if (fd < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (write_in_full(fd, out->buf, out->len) < 0)
|
|
|
|
die_errno("unable to write to cache daemon");
|
|
|
|
shutdown(fd, SHUT_WR);
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
char in[1024];
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = read_in_full(fd, in, sizeof(in));
|
2021-09-14 07:25:59 +00:00
|
|
|
if (r == 0 || (r < 0 && connection_closed(errno)))
|
2011-12-10 10:34:14 +00:00
|
|
|
break;
|
|
|
|
if (r < 0)
|
|
|
|
die_errno("read error from cache daemon");
|
|
|
|
write_or_die(1, in, r);
|
|
|
|
got_data = 1;
|
|
|
|
}
|
2016-04-01 00:35:46 +00:00
|
|
|
close(fd);
|
2011-12-10 10:34:14 +00:00
|
|
|
return got_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void spawn_daemon(const char *socket)
|
|
|
|
{
|
2014-08-19 19:09:35 +00:00
|
|
|
struct child_process daemon = CHILD_PROCESS_INIT;
|
2011-12-10 10:34:14 +00:00
|
|
|
char buf[128];
|
|
|
|
int r;
|
|
|
|
|
2020-08-26 21:37:39 +00:00
|
|
|
strvec_pushl(&daemon.args,
|
|
|
|
"credential-cache--daemon", socket,
|
|
|
|
NULL);
|
|
|
|
daemon.git_cmd = 1;
|
2011-12-10 10:34:14 +00:00
|
|
|
daemon.no_stdin = 1;
|
|
|
|
daemon.out = -1;
|
|
|
|
|
|
|
|
if (start_command(&daemon))
|
|
|
|
die_errno("unable to start cache daemon");
|
|
|
|
r = read_in_full(daemon.out, buf, sizeof(buf));
|
|
|
|
if (r < 0)
|
|
|
|
die_errno("unable to read result code from cache daemon");
|
|
|
|
if (r != 3 || memcmp(buf, "ok\n", 3))
|
|
|
|
die("cache daemon did not start: %.*s", r, buf);
|
|
|
|
close(daemon.out);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void do_cache(const char *socket, const char *action, int timeout,
|
|
|
|
int flags)
|
|
|
|
{
|
|
|
|
struct strbuf buf = STRBUF_INIT;
|
|
|
|
|
|
|
|
strbuf_addf(&buf, "action=%s\n", action);
|
|
|
|
strbuf_addf(&buf, "timeout=%d\n", timeout);
|
|
|
|
if (flags & FLAG_RELAY) {
|
|
|
|
if (strbuf_read(&buf, 0, 0) < 0)
|
|
|
|
die_errno("unable to relay credential");
|
|
|
|
}
|
|
|
|
|
2012-01-10 04:57:33 +00:00
|
|
|
if (send_request(socket, &buf) < 0) {
|
2021-09-14 07:25:59 +00:00
|
|
|
if (connection_fatally_broken(errno))
|
2012-01-07 11:54:36 +00:00
|
|
|
die_errno("unable to connect to cache daemon");
|
2012-01-10 04:57:33 +00:00
|
|
|
if (flags & FLAG_SPAWN) {
|
|
|
|
spawn_daemon(socket);
|
|
|
|
if (send_request(socket, &buf) < 0)
|
|
|
|
die_errno("unable to connect to cache daemon");
|
|
|
|
}
|
2011-12-10 10:34:14 +00:00
|
|
|
}
|
|
|
|
strbuf_release(&buf);
|
|
|
|
}
|
|
|
|
|
2017-03-17 12:36:33 +00:00
|
|
|
static char *get_socket_path(void)
|
|
|
|
{
|
|
|
|
struct stat sb;
|
|
|
|
char *old_dir, *socket;
|
2021-07-24 22:06:52 +00:00
|
|
|
old_dir = interpolate_path("~/.git-credential-cache", 0);
|
2017-03-17 12:36:33 +00:00
|
|
|
if (old_dir && !stat(old_dir, &sb) && S_ISDIR(sb.st_mode))
|
|
|
|
socket = xstrfmt("%s/socket", old_dir);
|
|
|
|
else
|
|
|
|
socket = xdg_cache_home("credential/socket");
|
|
|
|
free(old_dir);
|
|
|
|
return socket;
|
|
|
|
}
|
|
|
|
|
2020-08-13 14:58:55 +00:00
|
|
|
int cmd_credential_cache(int argc, const char **argv, const char *prefix)
|
2011-12-10 10:34:14 +00:00
|
|
|
{
|
|
|
|
char *socket_path = NULL;
|
|
|
|
int timeout = 900;
|
|
|
|
const char *op;
|
|
|
|
const char * const usage[] = {
|
2015-10-16 17:09:57 +00:00
|
|
|
"git credential-cache [<options>] <action>",
|
2011-12-10 10:34:14 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
struct option options[] = {
|
|
|
|
OPT_INTEGER(0, "timeout", &timeout,
|
|
|
|
"number of seconds to cache credentials"),
|
|
|
|
OPT_STRING(0, "socket", &socket_path, "path",
|
|
|
|
"path of cache-daemon socket"),
|
|
|
|
OPT_END()
|
|
|
|
};
|
|
|
|
|
2020-08-13 14:58:55 +00:00
|
|
|
argc = parse_options(argc, argv, prefix, options, usage, 0);
|
2011-12-10 10:34:14 +00:00
|
|
|
if (!argc)
|
|
|
|
usage_with_options(usage, options);
|
|
|
|
op = argv[0];
|
|
|
|
|
|
|
|
if (!socket_path)
|
2017-03-17 12:36:33 +00:00
|
|
|
socket_path = get_socket_path();
|
2011-12-10 10:34:14 +00:00
|
|
|
if (!socket_path)
|
|
|
|
die("unable to find a suitable socket path; use --socket");
|
|
|
|
|
|
|
|
if (!strcmp(op, "exit"))
|
|
|
|
do_cache(socket_path, op, timeout, 0);
|
|
|
|
else if (!strcmp(op, "get") || !strcmp(op, "erase"))
|
|
|
|
do_cache(socket_path, op, timeout, FLAG_RELAY);
|
|
|
|
else if (!strcmp(op, "store"))
|
|
|
|
do_cache(socket_path, op, timeout, FLAG_RELAY|FLAG_SPAWN);
|
|
|
|
else
|
|
|
|
; /* ignore unknown operation */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2020-08-13 14:58:55 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
int cmd_credential_cache(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
|
|
|
const char * const usage[] = {
|
|
|
|
"git credential-cache [options] <action>",
|
|
|
|
"",
|
|
|
|
"credential-cache is disabled in this build of Git",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
struct option options[] = { OPT_END() };
|
|
|
|
|
|
|
|
argc = parse_options(argc, argv, prefix, options, usage, 0);
|
|
|
|
die(_("credential-cache unavailable; no unix socket support"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* NO_UNIX_SOCKETS */
|