2 #include "credential.h"
3 #include "unix-socket.h"
6 static const char *socket_path;
8 static void cleanup_socket(void)
14 static void cleanup_socket_on_signal(int sig)
21 struct credential_cache_entry {
22 struct credential item;
23 unsigned long expiration;
25 static struct credential_cache_entry *entries;
26 static int entries_nr;
27 static int entries_alloc;
29 static void cache_credential(struct credential *c, int timeout)
31 struct credential_cache_entry *e;
33 ALLOC_GROW(entries, entries_nr + 1, entries_alloc);
34 e = &entries[entries_nr++];
36 /* take ownership of pointers */
37 memcpy(&e->item, c, sizeof(*c));
38 memset(c, 0, sizeof(*c));
39 e->expiration = time(NULL) + timeout;
42 static struct credential_cache_entry *lookup_credential(const struct credential *c)
45 for (i = 0; i < entries_nr; i++) {
46 struct credential *e = &entries[i].item;
47 if (credential_match(c, e))
53 static void remove_credential(const struct credential *c)
55 struct credential_cache_entry *e;
57 e = lookup_credential(c);
62 static int check_expirations(void)
64 static unsigned long wait_for_entry_until;
66 unsigned long now = time(NULL);
67 unsigned long next = (unsigned long)-1;
70 * Initially give the client 30 seconds to actually contact us
71 * and store a credential before we decide there's no point in
72 * keeping the daemon around.
74 if (!wait_for_entry_until)
75 wait_for_entry_until = now + 30;
77 while (i < entries_nr) {
78 if (entries[i].expiration <= now) {
80 credential_clear(&entries[i].item);
82 memcpy(&entries[i], &entries[entries_nr], sizeof(*entries));
84 * Stick around 30 seconds in case a new credential
85 * shows up (e.g., because we just removed a failed
86 * one, and we will soon get the correct one).
88 wait_for_entry_until = now + 30;
91 if (entries[i].expiration < next)
92 next = entries[i].expiration;
98 if (wait_for_entry_until <= now)
100 next = wait_for_entry_until;
106 static int read_request(FILE *fh, struct credential *c,
107 struct strbuf *action, int *timeout) {
108 static struct strbuf item = STRBUF_INIT;
111 strbuf_getline(&item, fh, '\n');
112 if (!skip_prefix(item.buf, "action=", &p))
113 return error("client sent bogus action line: %s", item.buf);
114 strbuf_addstr(action, p);
116 strbuf_getline(&item, fh, '\n');
117 if (!skip_prefix(item.buf, "timeout=", &p))
118 return error("client sent bogus timeout line: %s", item.buf);
121 if (credential_read(c, fh) < 0)
126 static void serve_one_client(FILE *in, FILE *out)
128 struct credential c = CREDENTIAL_INIT;
129 struct strbuf action = STRBUF_INIT;
132 if (read_request(in, &c, &action, &timeout) < 0)
134 else if (!strcmp(action.buf, "get")) {
135 struct credential_cache_entry *e = lookup_credential(&c);
137 fprintf(out, "username=%s\n", e->item.username);
138 fprintf(out, "password=%s\n", e->item.password);
141 else if (!strcmp(action.buf, "exit"))
143 else if (!strcmp(action.buf, "erase"))
144 remove_credential(&c);
145 else if (!strcmp(action.buf, "store")) {
147 warning("cache client didn't specify a timeout");
148 else if (!c.username || !c.password)
149 warning("cache client gave us a partial credential");
151 remove_credential(&c);
152 cache_credential(&c, timeout);
156 warning("cache client sent unknown action: %s", action.buf);
158 credential_clear(&c);
159 strbuf_release(&action);
162 static int serve_cache_loop(int fd)
165 unsigned long wakeup;
167 wakeup = check_expirations();
173 if (poll(&pfd, 1, 1000 * wakeup) < 0) {
175 die_errno("poll failed");
179 if (pfd.revents & POLLIN) {
183 client = accept(fd, NULL, NULL);
185 warning("accept failed: %s", strerror(errno));
188 client2 = dup(client);
190 warning("dup failed: %s", strerror(errno));
195 in = xfdopen(client, "r");
196 out = xfdopen(client2, "w");
197 serve_one_client(in, out);
204 static void serve_cache(const char *socket_path)
208 fd = unix_stream_listen(socket_path);
210 die_errno("unable to bind to '%s'", socket_path);
215 while (serve_cache_loop(fd))
222 static const char permissions_advice[] =
223 "The permissions on your socket directory are too loose; other\n"
224 "users may be able to read your cached credentials. Consider running:\n"
227 static void check_socket_directory(const char *path)
230 char *path_copy = xstrdup(path);
231 char *dir = dirname(path_copy);
233 if (!stat(dir, &st)) {
234 if (st.st_mode & 077)
235 die(permissions_advice, dir);
241 * We must be sure to create the directory with the correct mode,
242 * not just chmod it after the fact; otherwise, there is a race
243 * condition in which somebody can chdir to it, sleep, then try to open
244 * our protected socket.
246 if (safe_create_leading_directories_const(dir) < 0)
247 die_errno("unable to create directories for '%s'", dir);
248 if (mkdir(dir, 0700) < 0)
249 die_errno("unable to mkdir '%s'", dir);
253 int main(int argc, const char **argv)
255 socket_path = argv[1];
258 die("usage: git-credential-cache--daemon <socket_path>");
259 check_socket_directory(socket_path);
261 atexit(cleanup_socket);
262 sigchain_push_common(cleanup_socket_on_signal);
264 serve_cache(socket_path);