##// END OF EJS Templates
chg: server exited with code 0 without being connectable is an error...
Jun Wu -
r28863:6e06fbee default
parent child Browse files
Show More
@@ -1,586 +1,589 b''
1 1 /*
2 2 * A fast client for Mercurial command server
3 3 *
4 4 * Copyright (c) 2011 Yuya Nishihara <yuya@tcha.org>
5 5 *
6 6 * This software may be used and distributed according to the terms of the
7 7 * GNU General Public License version 2 or any later version.
8 8 */
9 9
10 10 #include <assert.h>
11 11 #include <errno.h>
12 12 #include <fcntl.h>
13 13 #include <signal.h>
14 14 #include <stdio.h>
15 15 #include <stdlib.h>
16 16 #include <string.h>
17 17 #include <sys/file.h>
18 18 #include <sys/stat.h>
19 19 #include <sys/types.h>
20 20 #include <sys/un.h>
21 21 #include <sys/wait.h>
22 22 #include <time.h>
23 23 #include <unistd.h>
24 24
25 25 #include "hgclient.h"
26 26 #include "util.h"
27 27
28 28 #ifndef UNIX_PATH_MAX
29 29 #define UNIX_PATH_MAX (sizeof(((struct sockaddr_un *)NULL)->sun_path))
30 30 #endif
31 31
32 32 struct cmdserveropts {
33 33 char sockname[UNIX_PATH_MAX];
34 34 char redirectsockname[UNIX_PATH_MAX];
35 35 char lockfile[UNIX_PATH_MAX];
36 36 size_t argsize;
37 37 const char **args;
38 38 int lockfd;
39 39 int sockdirfd;
40 40 };
41 41
42 42 static void initcmdserveropts(struct cmdserveropts *opts) {
43 43 memset(opts, 0, sizeof(struct cmdserveropts));
44 44 opts->lockfd = -1;
45 45 opts->sockdirfd = AT_FDCWD;
46 46 }
47 47
48 48 static void freecmdserveropts(struct cmdserveropts *opts) {
49 49 free(opts->args);
50 50 opts->args = NULL;
51 51 opts->argsize = 0;
52 52 assert(opts->lockfd == -1 && "should be closed by unlockcmdserver()");
53 53 if (opts->sockdirfd != AT_FDCWD) {
54 54 close(opts->sockdirfd);
55 55 opts->sockdirfd = AT_FDCWD;
56 56 }
57 57 }
58 58
59 59 /*
60 60 * Test if an argument is a sensitive flag that should be passed to the server.
61 61 * Return 0 if not, otherwise the number of arguments starting from the current
62 62 * one that should be passed to the server.
63 63 */
64 64 static size_t testsensitiveflag(const char *arg)
65 65 {
66 66 static const struct {
67 67 const char *name;
68 68 size_t narg;
69 69 } flags[] = {
70 70 {"--config", 1},
71 71 {"--cwd", 1},
72 72 {"--repo", 1},
73 73 {"--repository", 1},
74 74 {"--traceback", 0},
75 75 {"-R", 1},
76 76 };
77 77 size_t i;
78 78 for (i = 0; i < sizeof(flags) / sizeof(flags[0]); ++i) {
79 79 size_t len = strlen(flags[i].name);
80 80 size_t narg = flags[i].narg;
81 81 if (memcmp(arg, flags[i].name, len) == 0) {
82 82 if (arg[len] == '\0') {
83 83 /* --flag (value) */
84 84 return narg + 1;
85 85 } else if (arg[len] == '=' && narg > 0) {
86 86 /* --flag=value */
87 87 return 1;
88 88 } else if (flags[i].name[1] != '-') {
89 89 /* short flag */
90 90 return 1;
91 91 }
92 92 }
93 93 }
94 94 return 0;
95 95 }
96 96
97 97 /*
98 98 * Parse argv[] and put sensitive flags to opts->args
99 99 */
100 100 static void setcmdserverargs(struct cmdserveropts *opts,
101 101 int argc, const char *argv[])
102 102 {
103 103 size_t i, step;
104 104 opts->argsize = 0;
105 105 for (i = 0, step = 1; i < (size_t)argc; i += step, step = 1) {
106 106 if (!argv[i])
107 107 continue; /* pass clang-analyse */
108 108 if (strcmp(argv[i], "--") == 0)
109 109 break;
110 110 size_t n = testsensitiveflag(argv[i]);
111 111 if (n == 0 || i + n > (size_t)argc)
112 112 continue;
113 113 opts->args = reallocx(opts->args,
114 114 (n + opts->argsize) * sizeof(char *));
115 115 memcpy(opts->args + opts->argsize, argv + i,
116 116 sizeof(char *) * n);
117 117 opts->argsize += n;
118 118 step = n;
119 119 }
120 120 }
121 121
122 122 static void preparesockdir(const char *sockdir)
123 123 {
124 124 int r;
125 125 r = mkdir(sockdir, 0700);
126 126 if (r < 0 && errno != EEXIST)
127 127 abortmsgerrno("cannot create sockdir %s", sockdir);
128 128
129 129 struct stat st;
130 130 r = lstat(sockdir, &st);
131 131 if (r < 0)
132 132 abortmsgerrno("cannot stat %s", sockdir);
133 133 if (!S_ISDIR(st.st_mode))
134 134 abortmsg("cannot create sockdir %s (file exists)", sockdir);
135 135 if (st.st_uid != geteuid() || st.st_mode & 0077)
136 136 abortmsg("insecure sockdir %s", sockdir);
137 137 }
138 138
139 139 static void setcmdserveropts(struct cmdserveropts *opts)
140 140 {
141 141 int r;
142 142 char sockdir[UNIX_PATH_MAX];
143 143 const char *envsockname = getenv("CHGSOCKNAME");
144 144 if (!envsockname) {
145 145 /* by default, put socket file in secure directory
146 146 * (permission of socket file may be ignored on some Unices) */
147 147 const char *tmpdir = getenv("TMPDIR");
148 148 if (!tmpdir)
149 149 tmpdir = "/tmp";
150 150 r = snprintf(sockdir, sizeof(sockdir), "%s/chg%d",
151 151 tmpdir, geteuid());
152 152 if (r < 0 || (size_t)r >= sizeof(sockdir))
153 153 abortmsg("too long TMPDIR (r = %d)", r);
154 154 preparesockdir(sockdir);
155 155 }
156 156
157 157 const char *basename = (envsockname) ? envsockname : sockdir;
158 158 const char *sockfmt = (envsockname) ? "%s" : "%s/server";
159 159 const char *lockfmt = (envsockname) ? "%s.lock" : "%s/lock";
160 160 r = snprintf(opts->sockname, sizeof(opts->sockname), sockfmt, basename);
161 161 if (r < 0 || (size_t)r >= sizeof(opts->sockname))
162 162 abortmsg("too long TMPDIR or CHGSOCKNAME (r = %d)", r);
163 163 r = snprintf(opts->lockfile, sizeof(opts->lockfile), lockfmt, basename);
164 164 if (r < 0 || (size_t)r >= sizeof(opts->lockfile))
165 165 abortmsg("too long TMPDIR or CHGSOCKNAME (r = %d)", r);
166 166 }
167 167
168 168 /*
169 169 * Acquire a file lock that indicates a client is trying to start and connect
170 170 * to a server, before executing a command. The lock is released upon exit or
171 171 * explicit unlock. Will block if the lock is held by another process.
172 172 */
173 173 static void lockcmdserver(struct cmdserveropts *opts)
174 174 {
175 175 if (opts->lockfd == -1) {
176 176 opts->lockfd = open(opts->lockfile,
177 177 O_RDWR | O_CREAT | O_NOFOLLOW, 0600);
178 178 if (opts->lockfd == -1)
179 179 abortmsgerrno("cannot create lock file %s",
180 180 opts->lockfile);
181 181 fsetcloexec(opts->lockfd);
182 182 }
183 183 int r = flock(opts->lockfd, LOCK_EX);
184 184 if (r == -1)
185 185 abortmsgerrno("cannot acquire lock");
186 186 }
187 187
188 188 /*
189 189 * Release the file lock held by calling lockcmdserver. Will do nothing if
190 190 * lockcmdserver is not called.
191 191 */
192 192 static void unlockcmdserver(struct cmdserveropts *opts)
193 193 {
194 194 if (opts->lockfd == -1)
195 195 return;
196 196 flock(opts->lockfd, LOCK_UN);
197 197 close(opts->lockfd);
198 198 opts->lockfd = -1;
199 199 }
200 200
201 201 static const char *gethgcmd(void)
202 202 {
203 203 static const char *hgcmd = NULL;
204 204 if (!hgcmd) {
205 205 hgcmd = getenv("CHGHG");
206 206 if (!hgcmd || hgcmd[0] == '\0')
207 207 hgcmd = getenv("HG");
208 208 if (!hgcmd || hgcmd[0] == '\0')
209 209 #ifdef HGPATH
210 210 hgcmd = (HGPATH);
211 211 #else
212 212 hgcmd = "hg";
213 213 #endif
214 214 }
215 215 return hgcmd;
216 216 }
217 217
218 218 static void execcmdserver(const struct cmdserveropts *opts)
219 219 {
220 220 const char *hgcmd = gethgcmd();
221 221
222 222 const char *baseargv[] = {
223 223 hgcmd,
224 224 "serve",
225 225 "--cmdserver", "chgunix",
226 226 "--address", opts->sockname,
227 227 "--daemon-postexec", "chdir:/",
228 228 "--config", "extensions.chgserver=",
229 229 };
230 230 size_t baseargvsize = sizeof(baseargv) / sizeof(baseargv[0]);
231 231 size_t argsize = baseargvsize + opts->argsize + 1;
232 232
233 233 const char **argv = mallocx(sizeof(char *) * argsize);
234 234 memcpy(argv, baseargv, sizeof(baseargv));
235 235 memcpy(argv + baseargvsize, opts->args, sizeof(char *) * opts->argsize);
236 236 argv[argsize - 1] = NULL;
237 237
238 238 if (putenv("CHGINTERNALMARK=") != 0)
239 239 abortmsgerrno("failed to putenv");
240 240 if (execvp(hgcmd, (char **)argv) < 0)
241 241 abortmsgerrno("failed to exec cmdserver");
242 242 free(argv);
243 243 }
244 244
245 245 /* Retry until we can connect to the server. Give up after some time. */
246 246 static hgclient_t *retryconnectcmdserver(struct cmdserveropts *opts, pid_t pid)
247 247 {
248 248 static const struct timespec sleepreq = {0, 10 * 1000000};
249 249 int pst = 0;
250 250
251 251 debugmsg("try connect to %s repeatedly", opts->sockname);
252 252 for (unsigned int i = 0; i < 10 * 100; i++) {
253 253 hgclient_t *hgc = hgc_open(opts->sockname);
254 254 if (hgc)
255 255 return hgc;
256 256
257 257 if (pid > 0) {
258 258 /* collect zombie if child process fails to start */
259 259 int r = waitpid(pid, &pst, WNOHANG);
260 260 if (r != 0)
261 261 goto cleanup;
262 262 }
263 263
264 264 nanosleep(&sleepreq, NULL);
265 265 }
266 266
267 267 abortmsg("timed out waiting for cmdserver %s", opts->sockname);
268 268 return NULL;
269 269
270 270 cleanup:
271 271 if (WIFEXITED(pst)) {
272 if (WEXITSTATUS(pst) == 0)
273 abortmsg("could not connect to cmdserver "
274 "(exited with status 0)");
272 275 debugmsg("cmdserver exited with status %d", WEXITSTATUS(pst));
273 276 exit(WEXITSTATUS(pst));
274 277 } else if (WIFSIGNALED(pst)) {
275 278 abortmsg("cmdserver killed by signal %d", WTERMSIG(pst));
276 279 } else {
277 280 abortmsg("error while waiting for cmdserver");
278 281 }
279 282 return NULL;
280 283 }
281 284
282 285 /* Connect to a cmdserver. Will start a new server on demand. */
283 286 static hgclient_t *connectcmdserver(struct cmdserveropts *opts)
284 287 {
285 288 const char *sockname = opts->redirectsockname[0] ?
286 289 opts->redirectsockname : opts->sockname;
287 290 debugmsg("try connect to %s", sockname);
288 291 hgclient_t *hgc = hgc_open(sockname);
289 292 if (hgc)
290 293 return hgc;
291 294
292 295 lockcmdserver(opts);
293 296 hgc = hgc_open(sockname);
294 297 if (hgc) {
295 298 unlockcmdserver(opts);
296 299 debugmsg("cmdserver is started by another process");
297 300 return hgc;
298 301 }
299 302
300 303 /* prevent us from being connected to an outdated server: we were
301 304 * told by a server to redirect to opts->redirectsockname and that
302 305 * address does not work. we do not want to connect to the server
303 306 * again because it will probably tell us the same thing. */
304 307 if (sockname == opts->redirectsockname)
305 308 unlink(opts->sockname);
306 309
307 310 debugmsg("start cmdserver at %s", opts->sockname);
308 311
309 312 pid_t pid = fork();
310 313 if (pid < 0)
311 314 abortmsg("failed to fork cmdserver process");
312 315 if (pid == 0) {
313 316 execcmdserver(opts);
314 317 } else {
315 318 hgc = retryconnectcmdserver(opts, pid);
316 319 }
317 320
318 321 unlockcmdserver(opts);
319 322 return hgc;
320 323 }
321 324
322 325 static void killcmdserver(const struct cmdserveropts *opts)
323 326 {
324 327 /* resolve config hash */
325 328 char *resolvedpath = realpath(opts->sockname, NULL);
326 329 if (resolvedpath) {
327 330 unlink(resolvedpath);
328 331 free(resolvedpath);
329 332 }
330 333 }
331 334
332 335 static pid_t peerpid = 0;
333 336
334 337 static void forwardsignal(int sig)
335 338 {
336 339 assert(peerpid > 0);
337 340 if (kill(peerpid, sig) < 0)
338 341 abortmsgerrno("cannot kill %d", peerpid);
339 342 debugmsg("forward signal %d", sig);
340 343 }
341 344
342 345 static void handlestopsignal(int sig)
343 346 {
344 347 sigset_t unblockset, oldset;
345 348 struct sigaction sa, oldsa;
346 349 if (sigemptyset(&unblockset) < 0)
347 350 goto error;
348 351 if (sigaddset(&unblockset, sig) < 0)
349 352 goto error;
350 353 memset(&sa, 0, sizeof(sa));
351 354 sa.sa_handler = SIG_DFL;
352 355 sa.sa_flags = SA_RESTART;
353 356 if (sigemptyset(&sa.sa_mask) < 0)
354 357 goto error;
355 358
356 359 forwardsignal(sig);
357 360 if (raise(sig) < 0) /* resend to self */
358 361 goto error;
359 362 if (sigaction(sig, &sa, &oldsa) < 0)
360 363 goto error;
361 364 if (sigprocmask(SIG_UNBLOCK, &unblockset, &oldset) < 0)
362 365 goto error;
363 366 /* resent signal will be handled before sigprocmask() returns */
364 367 if (sigprocmask(SIG_SETMASK, &oldset, NULL) < 0)
365 368 goto error;
366 369 if (sigaction(sig, &oldsa, NULL) < 0)
367 370 goto error;
368 371 return;
369 372
370 373 error:
371 374 abortmsgerrno("failed to handle stop signal");
372 375 }
373 376
374 377 static void setupsignalhandler(pid_t pid)
375 378 {
376 379 if (pid <= 0)
377 380 return;
378 381 peerpid = pid;
379 382
380 383 struct sigaction sa;
381 384 memset(&sa, 0, sizeof(sa));
382 385 sa.sa_handler = forwardsignal;
383 386 sa.sa_flags = SA_RESTART;
384 387 if (sigemptyset(&sa.sa_mask) < 0)
385 388 goto error;
386 389
387 390 if (sigaction(SIGHUP, &sa, NULL) < 0)
388 391 goto error;
389 392 if (sigaction(SIGINT, &sa, NULL) < 0)
390 393 goto error;
391 394
392 395 /* terminate frontend by double SIGTERM in case of server freeze */
393 396 sa.sa_flags |= SA_RESETHAND;
394 397 if (sigaction(SIGTERM, &sa, NULL) < 0)
395 398 goto error;
396 399
397 400 /* propagate job control requests to worker */
398 401 sa.sa_handler = forwardsignal;
399 402 sa.sa_flags = SA_RESTART;
400 403 if (sigaction(SIGCONT, &sa, NULL) < 0)
401 404 goto error;
402 405 sa.sa_handler = handlestopsignal;
403 406 sa.sa_flags = SA_RESTART;
404 407 if (sigaction(SIGTSTP, &sa, NULL) < 0)
405 408 goto error;
406 409
407 410 return;
408 411
409 412 error:
410 413 abortmsgerrno("failed to set up signal handlers");
411 414 }
412 415
413 416 /* This implementation is based on hgext/pager.py (pre 369741ef7253) */
414 417 static void setuppager(hgclient_t *hgc, const char *const args[],
415 418 size_t argsize)
416 419 {
417 420 const char *pagercmd = hgc_getpager(hgc, args, argsize);
418 421 if (!pagercmd)
419 422 return;
420 423
421 424 int pipefds[2];
422 425 if (pipe(pipefds) < 0)
423 426 return;
424 427 pid_t pid = fork();
425 428 if (pid < 0)
426 429 goto error;
427 430 if (pid == 0) {
428 431 close(pipefds[0]);
429 432 if (dup2(pipefds[1], fileno(stdout)) < 0)
430 433 goto error;
431 434 if (isatty(fileno(stderr))) {
432 435 if (dup2(pipefds[1], fileno(stderr)) < 0)
433 436 goto error;
434 437 }
435 438 close(pipefds[1]);
436 439 hgc_attachio(hgc); /* reattach to pager */
437 440 return;
438 441 } else {
439 442 dup2(pipefds[0], fileno(stdin));
440 443 close(pipefds[0]);
441 444 close(pipefds[1]);
442 445
443 446 int r = execlp("/bin/sh", "/bin/sh", "-c", pagercmd, NULL);
444 447 if (r < 0) {
445 448 abortmsgerrno("cannot start pager '%s'", pagercmd);
446 449 }
447 450 return;
448 451 }
449 452
450 453 error:
451 454 close(pipefds[0]);
452 455 close(pipefds[1]);
453 456 abortmsgerrno("failed to prepare pager");
454 457 }
455 458
456 459 /* Run instructions sent from the server like unlink and set redirect path
457 460 * Return 1 if reconnect is needed, otherwise 0 */
458 461 static int runinstructions(struct cmdserveropts *opts, const char **insts)
459 462 {
460 463 int needreconnect = 0;
461 464 if (!insts)
462 465 return needreconnect;
463 466
464 467 assert(insts);
465 468 opts->redirectsockname[0] = '\0';
466 469 const char **pinst;
467 470 for (pinst = insts; *pinst; pinst++) {
468 471 debugmsg("instruction: %s", *pinst);
469 472 if (strncmp(*pinst, "unlink ", 7) == 0) {
470 473 unlink(*pinst + 7);
471 474 } else if (strncmp(*pinst, "redirect ", 9) == 0) {
472 475 int r = snprintf(opts->redirectsockname,
473 476 sizeof(opts->redirectsockname),
474 477 "%s", *pinst + 9);
475 478 if (r < 0 || r >= (int)sizeof(opts->redirectsockname))
476 479 abortmsg("redirect path is too long (%d)", r);
477 480 needreconnect = 1;
478 481 } else if (strncmp(*pinst, "exit ", 5) == 0) {
479 482 int n = 0;
480 483 if (sscanf(*pinst + 5, "%d", &n) != 1)
481 484 abortmsg("cannot read the exit code");
482 485 exit(n);
483 486 } else if (strcmp(*pinst, "reconnect") == 0) {
484 487 needreconnect = 1;
485 488 } else {
486 489 abortmsg("unknown instruction: %s", *pinst);
487 490 }
488 491 }
489 492 return needreconnect;
490 493 }
491 494
492 495 /*
493 496 * Test whether the command is unsupported or not. This is not designed to
494 497 * cover all cases. But it's fast, does not depend on the server and does
495 498 * not return false positives.
496 499 */
497 500 static int isunsupported(int argc, const char *argv[])
498 501 {
499 502 enum {
500 503 SERVE = 1,
501 504 DAEMON = 2,
502 505 SERVEDAEMON = SERVE | DAEMON,
503 506 TIME = 4,
504 507 };
505 508 unsigned int state = 0;
506 509 int i;
507 510 for (i = 0; i < argc; ++i) {
508 511 if (strcmp(argv[i], "--") == 0)
509 512 break;
510 513 if (i == 0 && strcmp("serve", argv[i]) == 0)
511 514 state |= SERVE;
512 515 else if (strcmp("-d", argv[i]) == 0 ||
513 516 strcmp("--daemon", argv[i]) == 0)
514 517 state |= DAEMON;
515 518 else if (strcmp("--time", argv[i]) == 0)
516 519 state |= TIME;
517 520 }
518 521 return (state & TIME) == TIME ||
519 522 (state & SERVEDAEMON) == SERVEDAEMON;
520 523 }
521 524
522 525 static void execoriginalhg(const char *argv[])
523 526 {
524 527 debugmsg("execute original hg");
525 528 if (execvp(gethgcmd(), (char **)argv) < 0)
526 529 abortmsgerrno("failed to exec original hg");
527 530 }
528 531
529 532 int main(int argc, const char *argv[], const char *envp[])
530 533 {
531 534 if (getenv("CHGDEBUG"))
532 535 enabledebugmsg();
533 536
534 537 if (!getenv("HGPLAIN") && isatty(fileno(stderr)))
535 538 enablecolor();
536 539
537 540 if (getenv("CHGINTERNALMARK"))
538 541 abortmsg("chg started by chg detected.\n"
539 542 "Please make sure ${HG:-hg} is not a symlink or "
540 543 "wrapper to chg. Alternatively, set $CHGHG to the "
541 544 "path of real hg.");
542 545
543 546 if (isunsupported(argc - 1, argv + 1))
544 547 execoriginalhg(argv);
545 548
546 549 struct cmdserveropts opts;
547 550 initcmdserveropts(&opts);
548 551 setcmdserveropts(&opts);
549 552 setcmdserverargs(&opts, argc, argv);
550 553
551 554 if (argc == 2) {
552 555 if (strcmp(argv[1], "--kill-chg-daemon") == 0) {
553 556 killcmdserver(&opts);
554 557 return 0;
555 558 }
556 559 }
557 560
558 561 hgclient_t *hgc;
559 562 size_t retry = 0;
560 563 while (1) {
561 564 hgc = connectcmdserver(&opts);
562 565 if (!hgc)
563 566 abortmsg("cannot open hg client");
564 567 hgc_setenv(hgc, envp);
565 568 const char **insts = hgc_validate(hgc, argv + 1, argc - 1);
566 569 int needreconnect = runinstructions(&opts, insts);
567 570 free(insts);
568 571 if (!needreconnect)
569 572 break;
570 573 hgc_close(hgc);
571 574 if (++retry > 10)
572 575 abortmsg("too many redirections.\n"
573 576 "Please make sure %s is not a wrapper which "
574 577 "changes sensitive environment variables "
575 578 "before executing hg. If you have to use a "
576 579 "wrapper, wrap chg instead of hg.",
577 580 gethgcmd());
578 581 }
579 582
580 583 setupsignalhandler(hgc_peerpid(hgc));
581 584 setuppager(hgc, argv + 1, argc - 1);
582 585 int exitcode = hgc_runcommand(hgc, argv + 1, argc - 1);
583 586 hgc_close(hgc);
584 587 freecmdserveropts(&opts);
585 588 return exitcode;
586 589 }
General Comments 0
You need to be logged in to leave comments. Login now