]> git.ipfire.org Git - thirdparty/git.git/blame - credential-cache--daemon.c
Merge branch 'master' of git://git.bogomips.org/git-svn
[thirdparty/git.git] / credential-cache--daemon.c
CommitLineData
e2770979 1#include "cache.h"
9e903316 2#include "tempfile.h"
e2770979
JK
3#include "credential.h"
4#include "unix-socket.h"
f5e3c0b9 5#include "parse-options.h"
e2770979 6
9e903316 7static struct tempfile socket_file;
e2770979
JK
8
9struct credential_cache_entry {
10 struct credential item;
11 unsigned long expiration;
12};
13static struct credential_cache_entry *entries;
14static int entries_nr;
15static int entries_alloc;
16
17static void cache_credential(struct credential *c, int timeout)
18{
19 struct credential_cache_entry *e;
20
21 ALLOC_GROW(entries, entries_nr + 1, entries_alloc);
22 e = &entries[entries_nr++];
23
24 /* take ownership of pointers */
25 memcpy(&e->item, c, sizeof(*c));
26 memset(c, 0, sizeof(*c));
27 e->expiration = time(NULL) + timeout;
28}
29
30static struct credential_cache_entry *lookup_credential(const struct credential *c)
31{
32 int i;
33 for (i = 0; i < entries_nr; i++) {
34 struct credential *e = &entries[i].item;
35 if (credential_match(c, e))
36 return &entries[i];
37 }
38 return NULL;
39}
40
41static void remove_credential(const struct credential *c)
42{
43 struct credential_cache_entry *e;
44
45 e = lookup_credential(c);
46 if (e)
47 e->expiration = 0;
48}
49
50static int check_expirations(void)
51{
52 static unsigned long wait_for_entry_until;
53 int i = 0;
54 unsigned long now = time(NULL);
55 unsigned long next = (unsigned long)-1;
56
57 /*
58 * Initially give the client 30 seconds to actually contact us
59 * and store a credential before we decide there's no point in
60 * keeping the daemon around.
61 */
62 if (!wait_for_entry_until)
63 wait_for_entry_until = now + 30;
64
65 while (i < entries_nr) {
66 if (entries[i].expiration <= now) {
67 entries_nr--;
68 credential_clear(&entries[i].item);
69 if (i != entries_nr)
70 memcpy(&entries[i], &entries[entries_nr], sizeof(*entries));
71 /*
72 * Stick around 30 seconds in case a new credential
73 * shows up (e.g., because we just removed a failed
74 * one, and we will soon get the correct one).
75 */
76 wait_for_entry_until = now + 30;
77 }
78 else {
79 if (entries[i].expiration < next)
80 next = entries[i].expiration;
81 i++;
82 }
83 }
84
85 if (!entries_nr) {
86 if (wait_for_entry_until <= now)
87 return 0;
88 next = wait_for_entry_until;
89 }
90
91 return next - now;
92}
93
94static int read_request(FILE *fh, struct credential *c,
95 struct strbuf *action, int *timeout) {
96 static struct strbuf item = STRBUF_INIT;
97 const char *p;
98
99 strbuf_getline(&item, fh, '\n');
cf4fff57 100 if (!skip_prefix(item.buf, "action=", &p))
e2770979
JK
101 return error("client sent bogus action line: %s", item.buf);
102 strbuf_addstr(action, p);
103
104 strbuf_getline(&item, fh, '\n');
cf4fff57 105 if (!skip_prefix(item.buf, "timeout=", &p))
e2770979
JK
106 return error("client sent bogus timeout line: %s", item.buf);
107 *timeout = atoi(p);
108
109 if (credential_read(c, fh) < 0)
110 return -1;
111 return 0;
112}
113
114static void serve_one_client(FILE *in, FILE *out)
115{
116 struct credential c = CREDENTIAL_INIT;
117 struct strbuf action = STRBUF_INIT;
118 int timeout = -1;
119
120 if (read_request(in, &c, &action, &timeout) < 0)
121 /* ignore error */ ;
122 else if (!strcmp(action.buf, "get")) {
123 struct credential_cache_entry *e = lookup_credential(&c);
124 if (e) {
125 fprintf(out, "username=%s\n", e->item.username);
126 fprintf(out, "password=%s\n", e->item.password);
127 }
128 }
129 else if (!strcmp(action.buf, "exit"))
130 exit(0);
131 else if (!strcmp(action.buf, "erase"))
132 remove_credential(&c);
133 else if (!strcmp(action.buf, "store")) {
134 if (timeout < 0)
135 warning("cache client didn't specify a timeout");
136 else if (!c.username || !c.password)
137 warning("cache client gave us a partial credential");
138 else {
139 remove_credential(&c);
140 cache_credential(&c, timeout);
141 }
142 }
143 else
144 warning("cache client sent unknown action: %s", action.buf);
145
146 credential_clear(&c);
147 strbuf_release(&action);
148}
149
150static int serve_cache_loop(int fd)
151{
152 struct pollfd pfd;
153 unsigned long wakeup;
154
155 wakeup = check_expirations();
156 if (!wakeup)
157 return 0;
158
159 pfd.fd = fd;
160 pfd.events = POLLIN;
161 if (poll(&pfd, 1, 1000 * wakeup) < 0) {
162 if (errno != EINTR)
163 die_errno("poll failed");
164 return 1;
165 }
166
167 if (pfd.revents & POLLIN) {
168 int client, client2;
169 FILE *in, *out;
170
171 client = accept(fd, NULL, NULL);
172 if (client < 0) {
173 warning("accept failed: %s", strerror(errno));
174 return 1;
175 }
176 client2 = dup(client);
177 if (client2 < 0) {
178 warning("dup failed: %s", strerror(errno));
179 close(client);
180 return 1;
181 }
182
183 in = xfdopen(client, "r");
184 out = xfdopen(client2, "w");
185 serve_one_client(in, out);
186 fclose(in);
187 fclose(out);
188 }
189 return 1;
190}
191
f5e3c0b9 192static void serve_cache(const char *socket_path, int debug)
e2770979
JK
193{
194 int fd;
195
196 fd = unix_stream_listen(socket_path);
197 if (fd < 0)
198 die_errno("unable to bind to '%s'", socket_path);
199
200 printf("ok\n");
201 fclose(stdout);
f5e3c0b9
JK
202 if (!debug) {
203 if (!freopen("/dev/null", "w", stderr))
204 die_errno("unable to point stderr to /dev/null");
205 }
e2770979
JK
206
207 while (serve_cache_loop(fd))
208 ; /* nothing */
209
210 close(fd);
e2770979
JK
211}
212
213static const char permissions_advice[] =
214"The permissions on your socket directory are too loose; other\n"
215"users may be able to read your cached credentials. Consider running:\n"
216"\n"
217" chmod 0700 %s";
218static void check_socket_directory(const char *path)
219{
220 struct stat st;
221 char *path_copy = xstrdup(path);
222 char *dir = dirname(path_copy);
223
224 if (!stat(dir, &st)) {
225 if (st.st_mode & 077)
226 die(permissions_advice, dir);
227 free(path_copy);
228 return;
229 }
230
231 /*
232 * We must be sure to create the directory with the correct mode,
233 * not just chmod it after the fact; otherwise, there is a race
234 * condition in which somebody can chdir to it, sleep, then try to open
235 * our protected socket.
236 */
237 if (safe_create_leading_directories_const(dir) < 0)
238 die_errno("unable to create directories for '%s'", dir);
239 if (mkdir(dir, 0700) < 0)
240 die_errno("unable to mkdir '%s'", dir);
241 free(path_copy);
242}
243
244int main(int argc, const char **argv)
245{
9e903316 246 const char *socket_path;
f5e3c0b9
JK
247 static const char *usage[] = {
248 "git-credential-cache--daemon [opts] <socket_path>",
249 NULL
250 };
251 int debug = 0;
252 const struct option options[] = {
253 OPT_BOOL(0, "debug", &debug,
254 N_("print debugging messages to stderr")),
255 OPT_END()
256 };
257
258 argc = parse_options(argc, argv, NULL, options, usage, 0);
259 socket_path = argv[0];
e2770979
JK
260
261 if (!socket_path)
f5e3c0b9 262 usage_with_options(usage, options);
e2770979 263
9e903316
MH
264 check_socket_directory(socket_path);
265 register_tempfile(&socket_file, socket_path);
f5e3c0b9 266 serve_cache(socket_path, debug);
9e903316 267 delete_tempfile(&socket_file);
18a3de42 268
e2770979
JK
269 return 0;
270}