##// END OF EJS Templates
chg: downgrade "failed to read channel" from abortmsg to debugmsg...
Jun Wu -
r28551:8e5312f8 default
parent child Browse files
Show More
@@ -1,578 +1,581 b''
1 /*
1 /*
2 * A command server client that uses Unix domain socket
2 * A command server client that uses Unix domain socket
3 *
3 *
4 * Copyright (c) 2011 Yuya Nishihara <yuya@tcha.org>
4 * Copyright (c) 2011 Yuya Nishihara <yuya@tcha.org>
5 *
5 *
6 * This software may be used and distributed according to the terms of the
6 * This software may be used and distributed according to the terms of the
7 * GNU General Public License version 2 or any later version.
7 * GNU General Public License version 2 or any later version.
8 */
8 */
9
9
10 #include <arpa/inet.h> /* for ntohl(), htonl() */
10 #include <arpa/inet.h> /* for ntohl(), htonl() */
11 #include <assert.h>
11 #include <assert.h>
12 #include <ctype.h>
12 #include <ctype.h>
13 #include <errno.h>
13 #include <errno.h>
14 #include <fcntl.h>
14 #include <fcntl.h>
15 #include <signal.h>
15 #include <signal.h>
16 #include <stdint.h>
16 #include <stdint.h>
17 #include <stdio.h>
17 #include <stdio.h>
18 #include <stdlib.h>
18 #include <stdlib.h>
19 #include <string.h>
19 #include <string.h>
20 #include <sys/socket.h>
20 #include <sys/socket.h>
21 #include <sys/stat.h>
21 #include <sys/stat.h>
22 #include <sys/un.h>
22 #include <sys/un.h>
23 #include <unistd.h>
23 #include <unistd.h>
24
24
25 #include "hgclient.h"
25 #include "hgclient.h"
26 #include "util.h"
26 #include "util.h"
27
27
28 enum {
28 enum {
29 CAP_GETENCODING = 0x0001,
29 CAP_GETENCODING = 0x0001,
30 CAP_RUNCOMMAND = 0x0002,
30 CAP_RUNCOMMAND = 0x0002,
31 /* cHg extension: */
31 /* cHg extension: */
32 CAP_ATTACHIO = 0x0100,
32 CAP_ATTACHIO = 0x0100,
33 CAP_CHDIR = 0x0200,
33 CAP_CHDIR = 0x0200,
34 CAP_GETPAGER = 0x0400,
34 CAP_GETPAGER = 0x0400,
35 CAP_SETENV = 0x0800,
35 CAP_SETENV = 0x0800,
36 CAP_SETUMASK = 0x1000,
36 CAP_SETUMASK = 0x1000,
37 CAP_VALIDATE = 0x2000,
37 CAP_VALIDATE = 0x2000,
38 };
38 };
39
39
40 typedef struct {
40 typedef struct {
41 const char *name;
41 const char *name;
42 unsigned int flag;
42 unsigned int flag;
43 } cappair_t;
43 } cappair_t;
44
44
45 static const cappair_t captable[] = {
45 static const cappair_t captable[] = {
46 {"getencoding", CAP_GETENCODING},
46 {"getencoding", CAP_GETENCODING},
47 {"runcommand", CAP_RUNCOMMAND},
47 {"runcommand", CAP_RUNCOMMAND},
48 {"attachio", CAP_ATTACHIO},
48 {"attachio", CAP_ATTACHIO},
49 {"chdir", CAP_CHDIR},
49 {"chdir", CAP_CHDIR},
50 {"getpager", CAP_GETPAGER},
50 {"getpager", CAP_GETPAGER},
51 {"setenv", CAP_SETENV},
51 {"setenv", CAP_SETENV},
52 {"setumask", CAP_SETUMASK},
52 {"setumask", CAP_SETUMASK},
53 {"validate", CAP_VALIDATE},
53 {"validate", CAP_VALIDATE},
54 {NULL, 0}, /* terminator */
54 {NULL, 0}, /* terminator */
55 };
55 };
56
56
57 typedef struct {
57 typedef struct {
58 char ch;
58 char ch;
59 char *data;
59 char *data;
60 size_t maxdatasize;
60 size_t maxdatasize;
61 size_t datasize;
61 size_t datasize;
62 } context_t;
62 } context_t;
63
63
64 struct hgclient_tag_ {
64 struct hgclient_tag_ {
65 int sockfd;
65 int sockfd;
66 pid_t pid;
66 pid_t pid;
67 context_t ctx;
67 context_t ctx;
68 unsigned int capflags;
68 unsigned int capflags;
69 };
69 };
70
70
71 static const size_t defaultdatasize = 4096;
71 static const size_t defaultdatasize = 4096;
72
72
73 static void initcontext(context_t *ctx)
73 static void initcontext(context_t *ctx)
74 {
74 {
75 ctx->ch = '\0';
75 ctx->ch = '\0';
76 ctx->data = malloc(defaultdatasize);
76 ctx->data = malloc(defaultdatasize);
77 ctx->maxdatasize = (ctx->data) ? defaultdatasize : 0;
77 ctx->maxdatasize = (ctx->data) ? defaultdatasize : 0;
78 ctx->datasize = 0;
78 ctx->datasize = 0;
79 debugmsg("initialize context buffer with size %zu", ctx->maxdatasize);
79 debugmsg("initialize context buffer with size %zu", ctx->maxdatasize);
80 }
80 }
81
81
82 static void enlargecontext(context_t *ctx, size_t newsize)
82 static void enlargecontext(context_t *ctx, size_t newsize)
83 {
83 {
84 if (newsize <= ctx->maxdatasize)
84 if (newsize <= ctx->maxdatasize)
85 return;
85 return;
86
86
87 newsize = defaultdatasize
87 newsize = defaultdatasize
88 * ((newsize + defaultdatasize - 1) / defaultdatasize);
88 * ((newsize + defaultdatasize - 1) / defaultdatasize);
89 ctx->data = reallocx(ctx->data, newsize);
89 ctx->data = reallocx(ctx->data, newsize);
90 ctx->maxdatasize = newsize;
90 ctx->maxdatasize = newsize;
91 debugmsg("enlarge context buffer to %zu", ctx->maxdatasize);
91 debugmsg("enlarge context buffer to %zu", ctx->maxdatasize);
92 }
92 }
93
93
94 static void freecontext(context_t *ctx)
94 static void freecontext(context_t *ctx)
95 {
95 {
96 debugmsg("free context buffer");
96 debugmsg("free context buffer");
97 free(ctx->data);
97 free(ctx->data);
98 ctx->data = NULL;
98 ctx->data = NULL;
99 ctx->maxdatasize = 0;
99 ctx->maxdatasize = 0;
100 ctx->datasize = 0;
100 ctx->datasize = 0;
101 }
101 }
102
102
103 /* Read channeled response from cmdserver */
103 /* Read channeled response from cmdserver */
104 static void readchannel(hgclient_t *hgc)
104 static void readchannel(hgclient_t *hgc)
105 {
105 {
106 assert(hgc);
106 assert(hgc);
107
107
108 ssize_t rsize = recv(hgc->sockfd, &hgc->ctx.ch, sizeof(hgc->ctx.ch), 0);
108 ssize_t rsize = recv(hgc->sockfd, &hgc->ctx.ch, sizeof(hgc->ctx.ch), 0);
109 if (rsize != sizeof(hgc->ctx.ch))
109 if (rsize != sizeof(hgc->ctx.ch)) {
110 abortmsg("failed to read channel");
110 /* server would have exception and traceback would be printed */
111 debugmsg("failed to read channel");
112 exit(255);
113 }
111
114
112 uint32_t datasize_n;
115 uint32_t datasize_n;
113 rsize = recv(hgc->sockfd, &datasize_n, sizeof(datasize_n), 0);
116 rsize = recv(hgc->sockfd, &datasize_n, sizeof(datasize_n), 0);
114 if (rsize != sizeof(datasize_n))
117 if (rsize != sizeof(datasize_n))
115 abortmsg("failed to read data size");
118 abortmsg("failed to read data size");
116
119
117 /* datasize denotes the maximum size to write if input request */
120 /* datasize denotes the maximum size to write if input request */
118 hgc->ctx.datasize = ntohl(datasize_n);
121 hgc->ctx.datasize = ntohl(datasize_n);
119 enlargecontext(&hgc->ctx, hgc->ctx.datasize);
122 enlargecontext(&hgc->ctx, hgc->ctx.datasize);
120
123
121 if (isupper(hgc->ctx.ch) && hgc->ctx.ch != 'S')
124 if (isupper(hgc->ctx.ch) && hgc->ctx.ch != 'S')
122 return; /* assumes input request */
125 return; /* assumes input request */
123
126
124 size_t cursize = 0;
127 size_t cursize = 0;
125 while (cursize < hgc->ctx.datasize) {
128 while (cursize < hgc->ctx.datasize) {
126 rsize = recv(hgc->sockfd, hgc->ctx.data + cursize,
129 rsize = recv(hgc->sockfd, hgc->ctx.data + cursize,
127 hgc->ctx.datasize - cursize, 0);
130 hgc->ctx.datasize - cursize, 0);
128 if (rsize < 0)
131 if (rsize < 0)
129 abortmsg("failed to read data block");
132 abortmsg("failed to read data block");
130 cursize += rsize;
133 cursize += rsize;
131 }
134 }
132 }
135 }
133
136
134 static void sendall(int sockfd, const void *data, size_t datasize)
137 static void sendall(int sockfd, const void *data, size_t datasize)
135 {
138 {
136 const char *p = data;
139 const char *p = data;
137 const char *const endp = p + datasize;
140 const char *const endp = p + datasize;
138 while (p < endp) {
141 while (p < endp) {
139 ssize_t r = send(sockfd, p, endp - p, 0);
142 ssize_t r = send(sockfd, p, endp - p, 0);
140 if (r < 0)
143 if (r < 0)
141 abortmsg("cannot communicate (errno = %d)", errno);
144 abortmsg("cannot communicate (errno = %d)", errno);
142 p += r;
145 p += r;
143 }
146 }
144 }
147 }
145
148
146 /* Write lengh-data block to cmdserver */
149 /* Write lengh-data block to cmdserver */
147 static void writeblock(const hgclient_t *hgc)
150 static void writeblock(const hgclient_t *hgc)
148 {
151 {
149 assert(hgc);
152 assert(hgc);
150
153
151 const uint32_t datasize_n = htonl(hgc->ctx.datasize);
154 const uint32_t datasize_n = htonl(hgc->ctx.datasize);
152 sendall(hgc->sockfd, &datasize_n, sizeof(datasize_n));
155 sendall(hgc->sockfd, &datasize_n, sizeof(datasize_n));
153
156
154 sendall(hgc->sockfd, hgc->ctx.data, hgc->ctx.datasize);
157 sendall(hgc->sockfd, hgc->ctx.data, hgc->ctx.datasize);
155 }
158 }
156
159
157 static void writeblockrequest(const hgclient_t *hgc, const char *chcmd)
160 static void writeblockrequest(const hgclient_t *hgc, const char *chcmd)
158 {
161 {
159 debugmsg("request %s, block size %zu", chcmd, hgc->ctx.datasize);
162 debugmsg("request %s, block size %zu", chcmd, hgc->ctx.datasize);
160
163
161 char buf[strlen(chcmd) + 1];
164 char buf[strlen(chcmd) + 1];
162 memcpy(buf, chcmd, sizeof(buf) - 1);
165 memcpy(buf, chcmd, sizeof(buf) - 1);
163 buf[sizeof(buf) - 1] = '\n';
166 buf[sizeof(buf) - 1] = '\n';
164 sendall(hgc->sockfd, buf, sizeof(buf));
167 sendall(hgc->sockfd, buf, sizeof(buf));
165
168
166 writeblock(hgc);
169 writeblock(hgc);
167 }
170 }
168
171
169 /* Build '\0'-separated list of args. argsize < 0 denotes that args are
172 /* Build '\0'-separated list of args. argsize < 0 denotes that args are
170 * terminated by NULL. */
173 * terminated by NULL. */
171 static void packcmdargs(context_t *ctx, const char *const args[],
174 static void packcmdargs(context_t *ctx, const char *const args[],
172 ssize_t argsize)
175 ssize_t argsize)
173 {
176 {
174 ctx->datasize = 0;
177 ctx->datasize = 0;
175 const char *const *const end = (argsize >= 0) ? args + argsize : NULL;
178 const char *const *const end = (argsize >= 0) ? args + argsize : NULL;
176 for (const char *const *it = args; it != end && *it; ++it) {
179 for (const char *const *it = args; it != end && *it; ++it) {
177 const size_t n = strlen(*it) + 1; /* include '\0' */
180 const size_t n = strlen(*it) + 1; /* include '\0' */
178 enlargecontext(ctx, ctx->datasize + n);
181 enlargecontext(ctx, ctx->datasize + n);
179 memcpy(ctx->data + ctx->datasize, *it, n);
182 memcpy(ctx->data + ctx->datasize, *it, n);
180 ctx->datasize += n;
183 ctx->datasize += n;
181 }
184 }
182
185
183 if (ctx->datasize > 0)
186 if (ctx->datasize > 0)
184 --ctx->datasize; /* strip last '\0' */
187 --ctx->datasize; /* strip last '\0' */
185 }
188 }
186
189
187 /* Extract '\0'-separated list of args to new buffer, terminated by NULL */
190 /* Extract '\0'-separated list of args to new buffer, terminated by NULL */
188 static const char **unpackcmdargsnul(const context_t *ctx)
191 static const char **unpackcmdargsnul(const context_t *ctx)
189 {
192 {
190 const char **args = NULL;
193 const char **args = NULL;
191 size_t nargs = 0, maxnargs = 0;
194 size_t nargs = 0, maxnargs = 0;
192 const char *s = ctx->data;
195 const char *s = ctx->data;
193 const char *e = ctx->data + ctx->datasize;
196 const char *e = ctx->data + ctx->datasize;
194 for (;;) {
197 for (;;) {
195 if (nargs + 1 >= maxnargs) { /* including last NULL */
198 if (nargs + 1 >= maxnargs) { /* including last NULL */
196 maxnargs += 256;
199 maxnargs += 256;
197 args = reallocx(args, maxnargs * sizeof(args[0]));
200 args = reallocx(args, maxnargs * sizeof(args[0]));
198 }
201 }
199 args[nargs] = s;
202 args[nargs] = s;
200 nargs++;
203 nargs++;
201 s = memchr(s, '\0', e - s);
204 s = memchr(s, '\0', e - s);
202 if (!s)
205 if (!s)
203 break;
206 break;
204 s++;
207 s++;
205 }
208 }
206 args[nargs] = NULL;
209 args[nargs] = NULL;
207 return args;
210 return args;
208 }
211 }
209
212
210 static void handlereadrequest(hgclient_t *hgc)
213 static void handlereadrequest(hgclient_t *hgc)
211 {
214 {
212 context_t *ctx = &hgc->ctx;
215 context_t *ctx = &hgc->ctx;
213 size_t r = fread(ctx->data, sizeof(ctx->data[0]), ctx->datasize, stdin);
216 size_t r = fread(ctx->data, sizeof(ctx->data[0]), ctx->datasize, stdin);
214 ctx->datasize = r;
217 ctx->datasize = r;
215 writeblock(hgc);
218 writeblock(hgc);
216 }
219 }
217
220
218 /* Read single-line */
221 /* Read single-line */
219 static void handlereadlinerequest(hgclient_t *hgc)
222 static void handlereadlinerequest(hgclient_t *hgc)
220 {
223 {
221 context_t *ctx = &hgc->ctx;
224 context_t *ctx = &hgc->ctx;
222 if (!fgets(ctx->data, ctx->datasize, stdin))
225 if (!fgets(ctx->data, ctx->datasize, stdin))
223 ctx->data[0] = '\0';
226 ctx->data[0] = '\0';
224 ctx->datasize = strlen(ctx->data);
227 ctx->datasize = strlen(ctx->data);
225 writeblock(hgc);
228 writeblock(hgc);
226 }
229 }
227
230
228 /* Execute the requested command and write exit code */
231 /* Execute the requested command and write exit code */
229 static void handlesystemrequest(hgclient_t *hgc)
232 static void handlesystemrequest(hgclient_t *hgc)
230 {
233 {
231 context_t *ctx = &hgc->ctx;
234 context_t *ctx = &hgc->ctx;
232 enlargecontext(ctx, ctx->datasize + 1);
235 enlargecontext(ctx, ctx->datasize + 1);
233 ctx->data[ctx->datasize] = '\0'; /* terminate last string */
236 ctx->data[ctx->datasize] = '\0'; /* terminate last string */
234
237
235 const char **args = unpackcmdargsnul(ctx);
238 const char **args = unpackcmdargsnul(ctx);
236 if (!args[0] || !args[1])
239 if (!args[0] || !args[1])
237 abortmsg("missing command or cwd in system request");
240 abortmsg("missing command or cwd in system request");
238 debugmsg("run '%s' at '%s'", args[0], args[1]);
241 debugmsg("run '%s' at '%s'", args[0], args[1]);
239 int32_t r = runshellcmd(args[0], args + 2, args[1]);
242 int32_t r = runshellcmd(args[0], args + 2, args[1]);
240 free(args);
243 free(args);
241
244
242 uint32_t r_n = htonl(r);
245 uint32_t r_n = htonl(r);
243 memcpy(ctx->data, &r_n, sizeof(r_n));
246 memcpy(ctx->data, &r_n, sizeof(r_n));
244 ctx->datasize = sizeof(r_n);
247 ctx->datasize = sizeof(r_n);
245 writeblock(hgc);
248 writeblock(hgc);
246 }
249 }
247
250
248 /* Read response of command execution until receiving 'r'-esult */
251 /* Read response of command execution until receiving 'r'-esult */
249 static void handleresponse(hgclient_t *hgc)
252 static void handleresponse(hgclient_t *hgc)
250 {
253 {
251 for (;;) {
254 for (;;) {
252 readchannel(hgc);
255 readchannel(hgc);
253 context_t *ctx = &hgc->ctx;
256 context_t *ctx = &hgc->ctx;
254 debugmsg("response read from channel %c, size %zu",
257 debugmsg("response read from channel %c, size %zu",
255 ctx->ch, ctx->datasize);
258 ctx->ch, ctx->datasize);
256 switch (ctx->ch) {
259 switch (ctx->ch) {
257 case 'o':
260 case 'o':
258 fwrite(ctx->data, sizeof(ctx->data[0]), ctx->datasize,
261 fwrite(ctx->data, sizeof(ctx->data[0]), ctx->datasize,
259 stdout);
262 stdout);
260 break;
263 break;
261 case 'e':
264 case 'e':
262 fwrite(ctx->data, sizeof(ctx->data[0]), ctx->datasize,
265 fwrite(ctx->data, sizeof(ctx->data[0]), ctx->datasize,
263 stderr);
266 stderr);
264 break;
267 break;
265 case 'd':
268 case 'd':
266 /* assumes last char is '\n' */
269 /* assumes last char is '\n' */
267 ctx->data[ctx->datasize - 1] = '\0';
270 ctx->data[ctx->datasize - 1] = '\0';
268 debugmsg("server: %s", ctx->data);
271 debugmsg("server: %s", ctx->data);
269 break;
272 break;
270 case 'r':
273 case 'r':
271 return;
274 return;
272 case 'I':
275 case 'I':
273 handlereadrequest(hgc);
276 handlereadrequest(hgc);
274 break;
277 break;
275 case 'L':
278 case 'L':
276 handlereadlinerequest(hgc);
279 handlereadlinerequest(hgc);
277 break;
280 break;
278 case 'S':
281 case 'S':
279 handlesystemrequest(hgc);
282 handlesystemrequest(hgc);
280 break;
283 break;
281 default:
284 default:
282 if (isupper(ctx->ch))
285 if (isupper(ctx->ch))
283 abortmsg("cannot handle response (ch = %c)",
286 abortmsg("cannot handle response (ch = %c)",
284 ctx->ch);
287 ctx->ch);
285 }
288 }
286 }
289 }
287 }
290 }
288
291
289 static unsigned int parsecapabilities(const char *s, const char *e)
292 static unsigned int parsecapabilities(const char *s, const char *e)
290 {
293 {
291 unsigned int flags = 0;
294 unsigned int flags = 0;
292 while (s < e) {
295 while (s < e) {
293 const char *t = strchr(s, ' ');
296 const char *t = strchr(s, ' ');
294 if (!t || t > e)
297 if (!t || t > e)
295 t = e;
298 t = e;
296 const cappair_t *cap;
299 const cappair_t *cap;
297 for (cap = captable; cap->flag; ++cap) {
300 for (cap = captable; cap->flag; ++cap) {
298 size_t n = t - s;
301 size_t n = t - s;
299 if (strncmp(s, cap->name, n) == 0 &&
302 if (strncmp(s, cap->name, n) == 0 &&
300 strlen(cap->name) == n) {
303 strlen(cap->name) == n) {
301 flags |= cap->flag;
304 flags |= cap->flag;
302 break;
305 break;
303 }
306 }
304 }
307 }
305 s = t + 1;
308 s = t + 1;
306 }
309 }
307 return flags;
310 return flags;
308 }
311 }
309
312
310 static void readhello(hgclient_t *hgc)
313 static void readhello(hgclient_t *hgc)
311 {
314 {
312 readchannel(hgc);
315 readchannel(hgc);
313 context_t *ctx = &hgc->ctx;
316 context_t *ctx = &hgc->ctx;
314 if (ctx->ch != 'o') {
317 if (ctx->ch != 'o') {
315 char ch = ctx->ch;
318 char ch = ctx->ch;
316 if (ch == 'e') {
319 if (ch == 'e') {
317 /* write early error and will exit */
320 /* write early error and will exit */
318 fwrite(ctx->data, sizeof(ctx->data[0]), ctx->datasize,
321 fwrite(ctx->data, sizeof(ctx->data[0]), ctx->datasize,
319 stderr);
322 stderr);
320 handleresponse(hgc);
323 handleresponse(hgc);
321 }
324 }
322 abortmsg("unexpected channel of hello message (ch = %c)", ch);
325 abortmsg("unexpected channel of hello message (ch = %c)", ch);
323 }
326 }
324 enlargecontext(ctx, ctx->datasize + 1);
327 enlargecontext(ctx, ctx->datasize + 1);
325 ctx->data[ctx->datasize] = '\0';
328 ctx->data[ctx->datasize] = '\0';
326 debugmsg("hello received: %s (size = %zu)", ctx->data, ctx->datasize);
329 debugmsg("hello received: %s (size = %zu)", ctx->data, ctx->datasize);
327
330
328 const char *s = ctx->data;
331 const char *s = ctx->data;
329 const char *const dataend = ctx->data + ctx->datasize;
332 const char *const dataend = ctx->data + ctx->datasize;
330 while (s < dataend) {
333 while (s < dataend) {
331 const char *t = strchr(s, ':');
334 const char *t = strchr(s, ':');
332 if (!t || t[1] != ' ')
335 if (!t || t[1] != ' ')
333 break;
336 break;
334 const char *u = strchr(t + 2, '\n');
337 const char *u = strchr(t + 2, '\n');
335 if (!u)
338 if (!u)
336 u = dataend;
339 u = dataend;
337 if (strncmp(s, "capabilities:", t - s + 1) == 0) {
340 if (strncmp(s, "capabilities:", t - s + 1) == 0) {
338 hgc->capflags = parsecapabilities(t + 2, u);
341 hgc->capflags = parsecapabilities(t + 2, u);
339 } else if (strncmp(s, "pid:", t - s + 1) == 0) {
342 } else if (strncmp(s, "pid:", t - s + 1) == 0) {
340 hgc->pid = strtol(t + 2, NULL, 10);
343 hgc->pid = strtol(t + 2, NULL, 10);
341 }
344 }
342 s = u + 1;
345 s = u + 1;
343 }
346 }
344 debugmsg("capflags=0x%04x, pid=%d", hgc->capflags, hgc->pid);
347 debugmsg("capflags=0x%04x, pid=%d", hgc->capflags, hgc->pid);
345 }
348 }
346
349
347 static void attachio(hgclient_t *hgc)
350 static void attachio(hgclient_t *hgc)
348 {
351 {
349 debugmsg("request attachio");
352 debugmsg("request attachio");
350 static const char chcmd[] = "attachio\n";
353 static const char chcmd[] = "attachio\n";
351 sendall(hgc->sockfd, chcmd, sizeof(chcmd) - 1);
354 sendall(hgc->sockfd, chcmd, sizeof(chcmd) - 1);
352 readchannel(hgc);
355 readchannel(hgc);
353 context_t *ctx = &hgc->ctx;
356 context_t *ctx = &hgc->ctx;
354 if (ctx->ch != 'I')
357 if (ctx->ch != 'I')
355 abortmsg("unexpected response for attachio (ch = %c)", ctx->ch);
358 abortmsg("unexpected response for attachio (ch = %c)", ctx->ch);
356
359
357 static const int fds[3] = {STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO};
360 static const int fds[3] = {STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO};
358 struct msghdr msgh;
361 struct msghdr msgh;
359 memset(&msgh, 0, sizeof(msgh));
362 memset(&msgh, 0, sizeof(msgh));
360 struct iovec iov = {ctx->data, ctx->datasize}; /* dummy payload */
363 struct iovec iov = {ctx->data, ctx->datasize}; /* dummy payload */
361 msgh.msg_iov = &iov;
364 msgh.msg_iov = &iov;
362 msgh.msg_iovlen = 1;
365 msgh.msg_iovlen = 1;
363 char fdbuf[CMSG_SPACE(sizeof(fds))];
366 char fdbuf[CMSG_SPACE(sizeof(fds))];
364 msgh.msg_control = fdbuf;
367 msgh.msg_control = fdbuf;
365 msgh.msg_controllen = sizeof(fdbuf);
368 msgh.msg_controllen = sizeof(fdbuf);
366 struct cmsghdr *cmsg = CMSG_FIRSTHDR(&msgh);
369 struct cmsghdr *cmsg = CMSG_FIRSTHDR(&msgh);
367 cmsg->cmsg_level = SOL_SOCKET;
370 cmsg->cmsg_level = SOL_SOCKET;
368 cmsg->cmsg_type = SCM_RIGHTS;
371 cmsg->cmsg_type = SCM_RIGHTS;
369 cmsg->cmsg_len = CMSG_LEN(sizeof(fds));
372 cmsg->cmsg_len = CMSG_LEN(sizeof(fds));
370 memcpy(CMSG_DATA(cmsg), fds, sizeof(fds));
373 memcpy(CMSG_DATA(cmsg), fds, sizeof(fds));
371 msgh.msg_controllen = cmsg->cmsg_len;
374 msgh.msg_controllen = cmsg->cmsg_len;
372 ssize_t r = sendmsg(hgc->sockfd, &msgh, 0);
375 ssize_t r = sendmsg(hgc->sockfd, &msgh, 0);
373 if (r < 0)
376 if (r < 0)
374 abortmsg("sendmsg failed (errno = %d)", errno);
377 abortmsg("sendmsg failed (errno = %d)", errno);
375
378
376 handleresponse(hgc);
379 handleresponse(hgc);
377 int32_t n;
380 int32_t n;
378 if (ctx->datasize != sizeof(n))
381 if (ctx->datasize != sizeof(n))
379 abortmsg("unexpected size of attachio result");
382 abortmsg("unexpected size of attachio result");
380 memcpy(&n, ctx->data, sizeof(n));
383 memcpy(&n, ctx->data, sizeof(n));
381 n = ntohl(n);
384 n = ntohl(n);
382 if (n != sizeof(fds) / sizeof(fds[0]))
385 if (n != sizeof(fds) / sizeof(fds[0]))
383 abortmsg("failed to send fds (n = %d)", n);
386 abortmsg("failed to send fds (n = %d)", n);
384 }
387 }
385
388
386 static void chdirtocwd(hgclient_t *hgc)
389 static void chdirtocwd(hgclient_t *hgc)
387 {
390 {
388 if (!getcwd(hgc->ctx.data, hgc->ctx.maxdatasize))
391 if (!getcwd(hgc->ctx.data, hgc->ctx.maxdatasize))
389 abortmsg("failed to getcwd (errno = %d)", errno);
392 abortmsg("failed to getcwd (errno = %d)", errno);
390 hgc->ctx.datasize = strlen(hgc->ctx.data);
393 hgc->ctx.datasize = strlen(hgc->ctx.data);
391 writeblockrequest(hgc, "chdir");
394 writeblockrequest(hgc, "chdir");
392 }
395 }
393
396
394 static void forwardumask(hgclient_t *hgc)
397 static void forwardumask(hgclient_t *hgc)
395 {
398 {
396 mode_t mask = umask(0);
399 mode_t mask = umask(0);
397 umask(mask);
400 umask(mask);
398
401
399 static const char command[] = "setumask\n";
402 static const char command[] = "setumask\n";
400 sendall(hgc->sockfd, command, sizeof(command) - 1);
403 sendall(hgc->sockfd, command, sizeof(command) - 1);
401 uint32_t data = htonl(mask);
404 uint32_t data = htonl(mask);
402 sendall(hgc->sockfd, &data, sizeof(data));
405 sendall(hgc->sockfd, &data, sizeof(data));
403 }
406 }
404
407
405 /*!
408 /*!
406 * Open connection to per-user cmdserver
409 * Open connection to per-user cmdserver
407 *
410 *
408 * If no background server running, returns NULL.
411 * If no background server running, returns NULL.
409 */
412 */
410 hgclient_t *hgc_open(const char *sockname)
413 hgclient_t *hgc_open(const char *sockname)
411 {
414 {
412 int fd = socket(AF_UNIX, SOCK_STREAM, 0);
415 int fd = socket(AF_UNIX, SOCK_STREAM, 0);
413 if (fd < 0)
416 if (fd < 0)
414 abortmsg("cannot create socket (errno = %d)", errno);
417 abortmsg("cannot create socket (errno = %d)", errno);
415
418
416 /* don't keep fd on fork(), so that it can be closed when the parent
419 /* don't keep fd on fork(), so that it can be closed when the parent
417 * process get terminated. */
420 * process get terminated. */
418 int flags = fcntl(fd, F_GETFD);
421 int flags = fcntl(fd, F_GETFD);
419 if (flags < 0)
422 if (flags < 0)
420 abortmsg("cannot get flags of socket (errno = %d)", errno);
423 abortmsg("cannot get flags of socket (errno = %d)", errno);
421 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) < 0)
424 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) < 0)
422 abortmsg("cannot set flags of socket (errno = %d)", errno);
425 abortmsg("cannot set flags of socket (errno = %d)", errno);
423
426
424 struct sockaddr_un addr;
427 struct sockaddr_un addr;
425 addr.sun_family = AF_UNIX;
428 addr.sun_family = AF_UNIX;
426 strncpy(addr.sun_path, sockname, sizeof(addr.sun_path));
429 strncpy(addr.sun_path, sockname, sizeof(addr.sun_path));
427 addr.sun_path[sizeof(addr.sun_path) - 1] = '\0';
430 addr.sun_path[sizeof(addr.sun_path) - 1] = '\0';
428
431
429 debugmsg("connect to %s", addr.sun_path);
432 debugmsg("connect to %s", addr.sun_path);
430 int r = connect(fd, (struct sockaddr *)&addr, sizeof(addr));
433 int r = connect(fd, (struct sockaddr *)&addr, sizeof(addr));
431 if (r < 0) {
434 if (r < 0) {
432 close(fd);
435 close(fd);
433 if (errno == ENOENT || errno == ECONNREFUSED)
436 if (errno == ENOENT || errno == ECONNREFUSED)
434 return NULL;
437 return NULL;
435 abortmsg("cannot connect to %s (errno = %d)",
438 abortmsg("cannot connect to %s (errno = %d)",
436 addr.sun_path, errno);
439 addr.sun_path, errno);
437 }
440 }
438
441
439 hgclient_t *hgc = mallocx(sizeof(hgclient_t));
442 hgclient_t *hgc = mallocx(sizeof(hgclient_t));
440 memset(hgc, 0, sizeof(*hgc));
443 memset(hgc, 0, sizeof(*hgc));
441 hgc->sockfd = fd;
444 hgc->sockfd = fd;
442 initcontext(&hgc->ctx);
445 initcontext(&hgc->ctx);
443
446
444 readhello(hgc);
447 readhello(hgc);
445 if (!(hgc->capflags & CAP_RUNCOMMAND))
448 if (!(hgc->capflags & CAP_RUNCOMMAND))
446 abortmsg("insufficient capability: runcommand");
449 abortmsg("insufficient capability: runcommand");
447 if (hgc->capflags & CAP_ATTACHIO)
450 if (hgc->capflags & CAP_ATTACHIO)
448 attachio(hgc);
451 attachio(hgc);
449 if (hgc->capflags & CAP_CHDIR)
452 if (hgc->capflags & CAP_CHDIR)
450 chdirtocwd(hgc);
453 chdirtocwd(hgc);
451 if (hgc->capflags & CAP_SETUMASK)
454 if (hgc->capflags & CAP_SETUMASK)
452 forwardumask(hgc);
455 forwardumask(hgc);
453
456
454 return hgc;
457 return hgc;
455 }
458 }
456
459
457 /*!
460 /*!
458 * Close connection and free allocated memory
461 * Close connection and free allocated memory
459 */
462 */
460 void hgc_close(hgclient_t *hgc)
463 void hgc_close(hgclient_t *hgc)
461 {
464 {
462 assert(hgc);
465 assert(hgc);
463 freecontext(&hgc->ctx);
466 freecontext(&hgc->ctx);
464 close(hgc->sockfd);
467 close(hgc->sockfd);
465 free(hgc);
468 free(hgc);
466 }
469 }
467
470
468 pid_t hgc_peerpid(const hgclient_t *hgc)
471 pid_t hgc_peerpid(const hgclient_t *hgc)
469 {
472 {
470 assert(hgc);
473 assert(hgc);
471 return hgc->pid;
474 return hgc->pid;
472 }
475 }
473
476
474 /*!
477 /*!
475 * Send command line arguments to let the server load the repo config and check
478 * Send command line arguments to let the server load the repo config and check
476 * whether it can process our request directly or not.
479 * whether it can process our request directly or not.
477 * Make sure hgc_setenv is called before calling this.
480 * Make sure hgc_setenv is called before calling this.
478 *
481 *
479 * @return - NULL, the server believes it can handle our request, or does not
482 * @return - NULL, the server believes it can handle our request, or does not
480 * support "validate" command.
483 * support "validate" command.
481 * - a list of strings, the server probably cannot handle our request
484 * - a list of strings, the server probably cannot handle our request
482 * and it sent instructions telling us what to do next. See
485 * and it sent instructions telling us what to do next. See
483 * chgserver.py for possible instruction formats.
486 * chgserver.py for possible instruction formats.
484 * the list should be freed by the caller.
487 * the list should be freed by the caller.
485 * the last string is guaranteed to be NULL.
488 * the last string is guaranteed to be NULL.
486 */
489 */
487 const char **hgc_validate(hgclient_t *hgc, const char *const args[],
490 const char **hgc_validate(hgclient_t *hgc, const char *const args[],
488 size_t argsize)
491 size_t argsize)
489 {
492 {
490 assert(hgc);
493 assert(hgc);
491 if (!(hgc->capflags & CAP_VALIDATE))
494 if (!(hgc->capflags & CAP_VALIDATE))
492 return NULL;
495 return NULL;
493
496
494 packcmdargs(&hgc->ctx, args, argsize);
497 packcmdargs(&hgc->ctx, args, argsize);
495 writeblockrequest(hgc, "validate");
498 writeblockrequest(hgc, "validate");
496 handleresponse(hgc);
499 handleresponse(hgc);
497
500
498 /* the server returns '\0' if it can handle our request */
501 /* the server returns '\0' if it can handle our request */
499 if (hgc->ctx.datasize <= 1)
502 if (hgc->ctx.datasize <= 1)
500 return NULL;
503 return NULL;
501
504
502 /* make sure the buffer is '\0' terminated */
505 /* make sure the buffer is '\0' terminated */
503 enlargecontext(&hgc->ctx, hgc->ctx.datasize + 1);
506 enlargecontext(&hgc->ctx, hgc->ctx.datasize + 1);
504 hgc->ctx.data[hgc->ctx.datasize] = '\0';
507 hgc->ctx.data[hgc->ctx.datasize] = '\0';
505 return unpackcmdargsnul(&hgc->ctx);
508 return unpackcmdargsnul(&hgc->ctx);
506 }
509 }
507
510
508 /*!
511 /*!
509 * Execute the specified Mercurial command
512 * Execute the specified Mercurial command
510 *
513 *
511 * @return result code
514 * @return result code
512 */
515 */
513 int hgc_runcommand(hgclient_t *hgc, const char *const args[], size_t argsize)
516 int hgc_runcommand(hgclient_t *hgc, const char *const args[], size_t argsize)
514 {
517 {
515 assert(hgc);
518 assert(hgc);
516
519
517 packcmdargs(&hgc->ctx, args, argsize);
520 packcmdargs(&hgc->ctx, args, argsize);
518 writeblockrequest(hgc, "runcommand");
521 writeblockrequest(hgc, "runcommand");
519 handleresponse(hgc);
522 handleresponse(hgc);
520
523
521 int32_t exitcode_n;
524 int32_t exitcode_n;
522 if (hgc->ctx.datasize != sizeof(exitcode_n)) {
525 if (hgc->ctx.datasize != sizeof(exitcode_n)) {
523 abortmsg("unexpected size of exitcode");
526 abortmsg("unexpected size of exitcode");
524 }
527 }
525 memcpy(&exitcode_n, hgc->ctx.data, sizeof(exitcode_n));
528 memcpy(&exitcode_n, hgc->ctx.data, sizeof(exitcode_n));
526 return ntohl(exitcode_n);
529 return ntohl(exitcode_n);
527 }
530 }
528
531
529 /*!
532 /*!
530 * (Re-)send client's stdio channels so that the server can access to tty
533 * (Re-)send client's stdio channels so that the server can access to tty
531 */
534 */
532 void hgc_attachio(hgclient_t *hgc)
535 void hgc_attachio(hgclient_t *hgc)
533 {
536 {
534 assert(hgc);
537 assert(hgc);
535 if (!(hgc->capflags & CAP_ATTACHIO))
538 if (!(hgc->capflags & CAP_ATTACHIO))
536 return;
539 return;
537 attachio(hgc);
540 attachio(hgc);
538 }
541 }
539
542
540 /*!
543 /*!
541 * Get pager command for the given Mercurial command args
544 * Get pager command for the given Mercurial command args
542 *
545 *
543 * If no pager enabled, returns NULL. The return value becomes invalid
546 * If no pager enabled, returns NULL. The return value becomes invalid
544 * once you run another request to hgc.
547 * once you run another request to hgc.
545 */
548 */
546 const char *hgc_getpager(hgclient_t *hgc, const char *const args[],
549 const char *hgc_getpager(hgclient_t *hgc, const char *const args[],
547 size_t argsize)
550 size_t argsize)
548 {
551 {
549 assert(hgc);
552 assert(hgc);
550
553
551 if (!(hgc->capflags & CAP_GETPAGER))
554 if (!(hgc->capflags & CAP_GETPAGER))
552 return NULL;
555 return NULL;
553
556
554 packcmdargs(&hgc->ctx, args, argsize);
557 packcmdargs(&hgc->ctx, args, argsize);
555 writeblockrequest(hgc, "getpager");
558 writeblockrequest(hgc, "getpager");
556 handleresponse(hgc);
559 handleresponse(hgc);
557
560
558 if (hgc->ctx.datasize < 1 || hgc->ctx.data[0] == '\0')
561 if (hgc->ctx.datasize < 1 || hgc->ctx.data[0] == '\0')
559 return NULL;
562 return NULL;
560 enlargecontext(&hgc->ctx, hgc->ctx.datasize + 1);
563 enlargecontext(&hgc->ctx, hgc->ctx.datasize + 1);
561 hgc->ctx.data[hgc->ctx.datasize] = '\0';
564 hgc->ctx.data[hgc->ctx.datasize] = '\0';
562 return hgc->ctx.data;
565 return hgc->ctx.data;
563 }
566 }
564
567
565 /*!
568 /*!
566 * Update server's environment variables
569 * Update server's environment variables
567 *
570 *
568 * @param envp list of environment variables in "NAME=VALUE" format,
571 * @param envp list of environment variables in "NAME=VALUE" format,
569 * terminated by NULL.
572 * terminated by NULL.
570 */
573 */
571 void hgc_setenv(hgclient_t *hgc, const char *const envp[])
574 void hgc_setenv(hgclient_t *hgc, const char *const envp[])
572 {
575 {
573 assert(hgc && envp);
576 assert(hgc && envp);
574 if (!(hgc->capflags & CAP_SETENV))
577 if (!(hgc->capflags & CAP_SETENV))
575 return;
578 return;
576 packcmdargs(&hgc->ctx, envp, /*argsize*/ -1);
579 packcmdargs(&hgc->ctx, envp, /*argsize*/ -1);
577 writeblockrequest(hgc, "setenv");
580 writeblockrequest(hgc, "setenv");
578 }
581 }
General Comments 0
You need to be logged in to leave comments. Login now