##// END OF EJS Templates
chg: fix test-check-clang-format.t failure...
Pulkit Goyal -
r46513:bb9085ba default
parent child Browse files
Show More
@@ -1,543 +1,547 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 <dirent.h>
12 12 #include <errno.h>
13 13 #include <fcntl.h>
14 14 #include <signal.h>
15 15 #include <stdio.h>
16 16 #include <stdlib.h>
17 17 #include <string.h>
18 18 #include <sys/file.h>
19 19 #include <sys/stat.h>
20 20 #include <sys/types.h>
21 21 #include <sys/un.h>
22 22 #include <sys/wait.h>
23 23 #include <time.h>
24 24 #include <unistd.h>
25 25
26 26 #include "hgclient.h"
27 27 #include "procutil.h"
28 28 #include "util.h"
29 29
30 30 #ifndef PATH_MAX
31 31 #define PATH_MAX 4096
32 32 #endif
33 33
34 34 struct cmdserveropts {
35 35 char sockname[PATH_MAX];
36 36 char initsockname[PATH_MAX];
37 37 char redirectsockname[PATH_MAX];
38 38 size_t argsize;
39 39 const char **args;
40 40 };
41 41
42 42 static void initcmdserveropts(struct cmdserveropts *opts)
43 43 {
44 44 memset(opts, 0, sizeof(struct cmdserveropts));
45 45 }
46 46
47 47 static void freecmdserveropts(struct cmdserveropts *opts)
48 48 {
49 49 free(opts->args);
50 50 opts->args = NULL;
51 51 opts->argsize = 0;
52 52 }
53 53
54 54 /*
55 55 * Test if an argument is a sensitive flag that should be passed to the server.
56 56 * Return 0 if not, otherwise the number of arguments starting from the current
57 57 * one that should be passed to the server.
58 58 */
59 59 static size_t testsensitiveflag(const char *arg)
60 60 {
61 61 static const struct {
62 62 const char *name;
63 63 size_t narg;
64 64 } flags[] = {
65 65 {"--config", 1}, {"--cwd", 1}, {"--repo", 1},
66 66 {"--repository", 1}, {"--traceback", 0}, {"-R", 1},
67 67 };
68 68 size_t i;
69 69 for (i = 0; i < sizeof(flags) / sizeof(flags[0]); ++i) {
70 70 size_t len = strlen(flags[i].name);
71 71 size_t narg = flags[i].narg;
72 72 if (memcmp(arg, flags[i].name, len) == 0) {
73 73 if (arg[len] == '\0') {
74 74 /* --flag (value) */
75 75 return narg + 1;
76 76 } else if (arg[len] == '=' && narg > 0) {
77 77 /* --flag=value */
78 78 return 1;
79 79 } else if (flags[i].name[1] != '-') {
80 80 /* short flag */
81 81 return 1;
82 82 }
83 83 }
84 84 }
85 85 return 0;
86 86 }
87 87
88 88 /*
89 89 * Parse argv[] and put sensitive flags to opts->args
90 90 */
91 91 static void setcmdserverargs(struct cmdserveropts *opts, int argc,
92 92 const char *argv[])
93 93 {
94 94 size_t i, step;
95 95 opts->argsize = 0;
96 96 for (i = 0, step = 1; i < (size_t)argc; i += step, step = 1) {
97 97 if (!argv[i])
98 98 continue; /* pass clang-analyse */
99 99 if (strcmp(argv[i], "--") == 0)
100 100 break;
101 101 size_t n = testsensitiveflag(argv[i]);
102 102 if (n == 0 || i + n > (size_t)argc)
103 103 continue;
104 104 opts->args =
105 105 reallocx(opts->args, (n + opts->argsize) * sizeof(char *));
106 106 memcpy(opts->args + opts->argsize, argv + i,
107 107 sizeof(char *) * n);
108 108 opts->argsize += n;
109 109 step = n;
110 110 }
111 111 }
112 112
113 113 static void preparesockdir(const char *sockdir)
114 114 {
115 115 int r;
116 116 r = mkdir(sockdir, 0700);
117 117 if (r < 0 && errno != EEXIST)
118 118 abortmsgerrno("cannot create sockdir %s", sockdir);
119 119
120 120 struct stat st;
121 121 r = lstat(sockdir, &st);
122 122 if (r < 0)
123 123 abortmsgerrno("cannot stat %s", sockdir);
124 124 if (!S_ISDIR(st.st_mode))
125 125 abortmsg("cannot create sockdir %s (file exists)", sockdir);
126 126 if (st.st_uid != geteuid() || st.st_mode & 0077)
127 127 abortmsg("insecure sockdir %s", sockdir);
128 128 }
129 129
130 130 /*
131 131 * Check if a socket directory exists and is only owned by the current user.
132 132 * Return 1 if so, 0 if not. This is used to check if XDG_RUNTIME_DIR can be
133 133 * used or not. According to the specification [1], XDG_RUNTIME_DIR should be
134 134 * ignored if the directory is not owned by the user with mode 0700.
135 135 * [1]: https://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
136 136 */
137 137 static int checkruntimedir(const char *sockdir)
138 138 {
139 139 struct stat st;
140 140 int r = lstat(sockdir, &st);
141 141 if (r < 0) /* ex. does not exist */
142 142 return 0;
143 143 if (!S_ISDIR(st.st_mode)) /* ex. is a file, not a directory */
144 144 return 0;
145 145 return st.st_uid == geteuid() && (st.st_mode & 0777) == 0700;
146 146 }
147 147
148 148 static void getdefaultsockdir(char sockdir[], size_t size)
149 149 {
150 150 /* by default, put socket file in secure directory
151 151 * (${XDG_RUNTIME_DIR}/chg, or /${TMPDIR:-tmp}/chg$UID)
152 152 * (permission of socket file may be ignored on some Unices) */
153 153 const char *runtimedir = getenv("XDG_RUNTIME_DIR");
154 154 int r;
155 155 if (runtimedir && checkruntimedir(runtimedir)) {
156 156 r = snprintf(sockdir, size, "%s/chg", runtimedir);
157 157 } else {
158 158 const char *tmpdir = getenv("TMPDIR");
159 159 if (!tmpdir)
160 160 tmpdir = "/tmp";
161 161 r = snprintf(sockdir, size, "%s/chg%d", tmpdir, geteuid());
162 162 }
163 163 if (r < 0 || (size_t)r >= size)
164 164 abortmsg("too long TMPDIR (r = %d)", r);
165 165 }
166 166
167 167 static void setcmdserveropts(struct cmdserveropts *opts)
168 168 {
169 169 int r;
170 170 char sockdir[PATH_MAX];
171 171 const char *envsockname = getenv("CHGSOCKNAME");
172 172 if (!envsockname) {
173 173 getdefaultsockdir(sockdir, sizeof(sockdir));
174 174 preparesockdir(sockdir);
175 175 }
176 176
177 177 const char *basename = (envsockname) ? envsockname : sockdir;
178 178 const char *sockfmt = (envsockname) ? "%s" : "%s/server";
179 179 r = snprintf(opts->sockname, sizeof(opts->sockname), sockfmt, basename);
180 180 if (r < 0 || (size_t)r >= sizeof(opts->sockname))
181 181 abortmsg("too long TMPDIR or CHGSOCKNAME (r = %d)", r);
182 182 r = snprintf(opts->initsockname, sizeof(opts->initsockname), "%s.%u",
183 183 opts->sockname, (unsigned)getpid());
184 184 if (r < 0 || (size_t)r >= sizeof(opts->initsockname))
185 185 abortmsg("too long TMPDIR or CHGSOCKNAME (r = %d)", r);
186 186 }
187 187
188 188 /* If the current program is, say, /a/b/c/chg, returns /a/b/c/hg. */
189 189 static char *getrelhgcmd(void)
190 190 {
191 191 ssize_t n;
192 192 char *res, *slash;
193 193 int maxsize = 4096;
194 194 res = malloc(maxsize);
195 195 if (res == NULL)
196 196 goto cleanup;
197 197 n = readlink("/proc/self/exe", res, maxsize);
198 198 if (n < 0 || n >= maxsize)
199 199 goto cleanup;
200 200 res[n] = '\0';
201 201 slash = strrchr(res, '/');
202 202 if (slash == NULL)
203 203 goto cleanup;
204 204 /* 4 is strlen("/hg") + nul byte */
205 205 if (slash + 4 >= res + maxsize)
206 206 goto cleanup;
207 207 memcpy(slash, "/hg", 4);
208 208 return res;
209 209 cleanup:
210 210 free(res);
211 211 return NULL;
212 212 }
213 213
214 214 static const char *gethgcmd(void)
215 215 {
216 216 static const char *hgcmd = NULL;
217 217 #ifdef HGPATHREL
218 218 int tryrelhgcmd = 1;
219 219 #else
220 220 int tryrelhgcmd = 0;
221 221 #endif
222 222 if (!hgcmd) {
223 223 hgcmd = getenv("CHGHG");
224 224 if (!hgcmd || hgcmd[0] == '\0')
225 225 hgcmd = getenv("HG");
226 226 if (tryrelhgcmd && (!hgcmd || hgcmd[0] == '\0'))
227 227 hgcmd = getrelhgcmd();
228 228 if (!hgcmd || hgcmd[0] == '\0')
229 229 #ifdef HGPATH
230 230 hgcmd = (HGPATH);
231 231 #else
232 232 hgcmd = "hg";
233 233 #endif
234 234 }
235 235 return hgcmd;
236 236 }
237 237
238 238 static void execcmdserver(const struct cmdserveropts *opts)
239 239 {
240 240 const char *hgcmd = gethgcmd();
241 241
242 242 const char *baseargv[] = {
243 243 hgcmd,
244 244 "serve",
245 245 "--cmdserver",
246 246 "chgunix",
247 247 "--address",
248 248 opts->initsockname,
249 249 "--daemon-postexec",
250 250 "chdir:/",
251 251 };
252 252 size_t baseargvsize = sizeof(baseargv) / sizeof(baseargv[0]);
253 253 size_t argsize = baseargvsize + opts->argsize + 1;
254 254
255 255 const char **argv = mallocx(sizeof(char *) * argsize);
256 256 memcpy(argv, baseargv, sizeof(baseargv));
257 257 if (opts->args) {
258 258 size_t size = sizeof(char *) * opts->argsize;
259 259 memcpy(argv + baseargvsize, opts->args, size);
260 260 }
261 261 argv[argsize - 1] = NULL;
262 262
263 263 const char *lc_ctype_env = getenv("LC_CTYPE");
264 264 if (lc_ctype_env == NULL) {
265 265 if (putenv("CHG_CLEAR_LC_CTYPE=") != 0)
266 266 abortmsgerrno("failed to putenv CHG_CLEAR_LC_CTYPE");
267 267 } else {
268 268 if (setenv("CHGORIG_LC_CTYPE", lc_ctype_env, 1) != 0) {
269 269 abortmsgerrno("failed to setenv CHGORIG_LC_CTYPE");
270 270 }
271 271 }
272 272
273 273 /* close any open files to avoid hanging locks */
274 274 DIR *dp = opendir("/proc/self/fd");
275 275 if (dp != NULL) {
276 276 debugmsg("closing files based on /proc contents");
277 277 struct dirent *de;
278 278 while ((de = readdir(dp))) {
279 279 char *end;
280 280 long fd_value = strtol(de->d_name, &end, 10);
281 281 if (end == de->d_name) {
282 282 /* unable to convert to int (. or ..) */
283 283 continue;
284 284 }
285 285 if (errno == ERANGE) {
286 debugmsg("tried to parse %s, but range error occurred", de->d_name);
286 debugmsg("tried to parse %s, but range error "
287 "occurred",
288 de->d_name);
287 289 continue;
288 290 }
289 291 if (fd_value > STDERR_FILENO) {
290 292 int res = close(fd_value);
291 293 if (res) {
292 debugmsg("tried to close fd %ld: %d (errno: %d)", fd_value, res, errno);
294 debugmsg("tried to close fd %ld: %d "
295 "(errno: %d)",
296 fd_value, res, errno);
293 297 }
294 298 }
295 299 }
296 300 }
297 301
298 302 if (putenv("CHGINTERNALMARK=") != 0)
299 303 abortmsgerrno("failed to putenv");
300 304 if (execvp(hgcmd, (char **)argv) < 0)
301 305 abortmsgerrno("failed to exec cmdserver");
302 306 free(argv);
303 307 }
304 308
305 309 /* Retry until we can connect to the server. Give up after some time. */
306 310 static hgclient_t *retryconnectcmdserver(struct cmdserveropts *opts, pid_t pid)
307 311 {
308 312 static const struct timespec sleepreq = {0, 10 * 1000000};
309 313 int pst = 0;
310 314
311 315 debugmsg("try connect to %s repeatedly", opts->initsockname);
312 316
313 317 unsigned int timeoutsec = 60; /* default: 60 seconds */
314 318 const char *timeoutenv = getenv("CHGTIMEOUT");
315 319 if (timeoutenv)
316 320 sscanf(timeoutenv, "%u", &timeoutsec);
317 321
318 322 for (unsigned int i = 0; !timeoutsec || i < timeoutsec * 100; i++) {
319 323 hgclient_t *hgc = hgc_open(opts->initsockname);
320 324 if (hgc) {
321 325 debugmsg("rename %s to %s", opts->initsockname,
322 326 opts->sockname);
323 327 int r = rename(opts->initsockname, opts->sockname);
324 328 if (r != 0)
325 329 abortmsgerrno("cannot rename");
326 330 return hgc;
327 331 }
328 332
329 333 if (pid > 0) {
330 334 /* collect zombie if child process fails to start */
331 335 int r = waitpid(pid, &pst, WNOHANG);
332 336 if (r != 0)
333 337 goto cleanup;
334 338 }
335 339
336 340 nanosleep(&sleepreq, NULL);
337 341 }
338 342
339 343 abortmsg("timed out waiting for cmdserver %s", opts->initsockname);
340 344 return NULL;
341 345
342 346 cleanup:
343 347 if (WIFEXITED(pst)) {
344 348 if (WEXITSTATUS(pst) == 0)
345 349 abortmsg("could not connect to cmdserver "
346 350 "(exited with status 0)");
347 351 debugmsg("cmdserver exited with status %d", WEXITSTATUS(pst));
348 352 exit(WEXITSTATUS(pst));
349 353 } else if (WIFSIGNALED(pst)) {
350 354 abortmsg("cmdserver killed by signal %d", WTERMSIG(pst));
351 355 } else {
352 356 abortmsg("error while waiting for cmdserver");
353 357 }
354 358 return NULL;
355 359 }
356 360
357 361 /* Connect to a cmdserver. Will start a new server on demand. */
358 362 static hgclient_t *connectcmdserver(struct cmdserveropts *opts)
359 363 {
360 364 const char *sockname =
361 365 opts->redirectsockname[0] ? opts->redirectsockname : opts->sockname;
362 366 debugmsg("try connect to %s", sockname);
363 367 hgclient_t *hgc = hgc_open(sockname);
364 368 if (hgc)
365 369 return hgc;
366 370
367 371 /* prevent us from being connected to an outdated server: we were
368 372 * told by a server to redirect to opts->redirectsockname and that
369 373 * address does not work. we do not want to connect to the server
370 374 * again because it will probably tell us the same thing. */
371 375 if (sockname == opts->redirectsockname)
372 376 unlink(opts->sockname);
373 377
374 378 debugmsg("start cmdserver at %s", opts->initsockname);
375 379
376 380 pid_t pid = fork();
377 381 if (pid < 0)
378 382 abortmsg("failed to fork cmdserver process");
379 383 if (pid == 0) {
380 384 execcmdserver(opts);
381 385 } else {
382 386 hgc = retryconnectcmdserver(opts, pid);
383 387 }
384 388
385 389 return hgc;
386 390 }
387 391
388 392 static void killcmdserver(const struct cmdserveropts *opts)
389 393 {
390 394 /* resolve config hash */
391 395 char *resolvedpath = realpath(opts->sockname, NULL);
392 396 if (resolvedpath) {
393 397 unlink(resolvedpath);
394 398 free(resolvedpath);
395 399 }
396 400 }
397 401
398 402 /* Run instructions sent from the server like unlink and set redirect path
399 403 * Return 1 if reconnect is needed, otherwise 0 */
400 404 static int runinstructions(struct cmdserveropts *opts, const char **insts)
401 405 {
402 406 int needreconnect = 0;
403 407 if (!insts)
404 408 return needreconnect;
405 409
406 410 assert(insts);
407 411 opts->redirectsockname[0] = '\0';
408 412 const char **pinst;
409 413 for (pinst = insts; *pinst; pinst++) {
410 414 debugmsg("instruction: %s", *pinst);
411 415 if (strncmp(*pinst, "unlink ", 7) == 0) {
412 416 unlink(*pinst + 7);
413 417 } else if (strncmp(*pinst, "redirect ", 9) == 0) {
414 418 int r = snprintf(opts->redirectsockname,
415 419 sizeof(opts->redirectsockname), "%s",
416 420 *pinst + 9);
417 421 if (r < 0 || r >= (int)sizeof(opts->redirectsockname))
418 422 abortmsg("redirect path is too long (%d)", r);
419 423 needreconnect = 1;
420 424 } else if (strncmp(*pinst, "exit ", 5) == 0) {
421 425 int n = 0;
422 426 if (sscanf(*pinst + 5, "%d", &n) != 1)
423 427 abortmsg("cannot read the exit code");
424 428 exit(n);
425 429 } else if (strcmp(*pinst, "reconnect") == 0) {
426 430 needreconnect = 1;
427 431 } else {
428 432 abortmsg("unknown instruction: %s", *pinst);
429 433 }
430 434 }
431 435 return needreconnect;
432 436 }
433 437
434 438 /*
435 439 * Test whether the command and the environment is unsupported or not.
436 440 *
437 441 * If any of the stdio file descriptors are not present (rare, but some tools
438 442 * might spawn new processes without stdio instead of redirecting them to the
439 443 * null device), then mark it as not supported because attachio won't work
440 444 * correctly.
441 445 *
442 446 * The command list is not designed to cover all cases. But it's fast, and does
443 447 * not depend on the server.
444 448 */
445 449 static int isunsupported(int argc, const char *argv[])
446 450 {
447 451 enum { SERVE = 1,
448 452 DAEMON = 2,
449 453 SERVEDAEMON = SERVE | DAEMON,
450 454 };
451 455 unsigned int state = 0;
452 456 int i;
453 457 /* use fcntl to test missing stdio fds */
454 458 if (fcntl(STDIN_FILENO, F_GETFD) == -1 ||
455 459 fcntl(STDOUT_FILENO, F_GETFD) == -1 ||
456 460 fcntl(STDERR_FILENO, F_GETFD) == -1) {
457 461 debugmsg("stdio fds are missing");
458 462 return 1;
459 463 }
460 464 for (i = 0; i < argc; ++i) {
461 465 if (strcmp(argv[i], "--") == 0)
462 466 break;
463 467 /*
464 468 * there can be false positives but no false negative
465 469 * we cannot assume `serve` will always be first argument
466 470 * because global options can be passed before the command name
467 471 */
468 472 if (strcmp("serve", argv[i]) == 0)
469 473 state |= SERVE;
470 474 else if (strcmp("-d", argv[i]) == 0 ||
471 475 strcmp("--daemon", argv[i]) == 0)
472 476 state |= DAEMON;
473 477 }
474 478 return (state & SERVEDAEMON) == SERVEDAEMON;
475 479 }
476 480
477 481 static void execoriginalhg(const char *argv[])
478 482 {
479 483 debugmsg("execute original hg");
480 484 if (execvp(gethgcmd(), (char **)argv) < 0)
481 485 abortmsgerrno("failed to exec original hg");
482 486 }
483 487
484 488 int main(int argc, const char *argv[], const char *envp[])
485 489 {
486 490 if (getenv("CHGDEBUG"))
487 491 enabledebugmsg();
488 492
489 493 if (!getenv("HGPLAIN") && isatty(fileno(stderr)))
490 494 enablecolor();
491 495
492 496 if (getenv("CHGINTERNALMARK"))
493 497 abortmsg("chg started by chg detected.\n"
494 498 "Please make sure ${HG:-hg} is not a symlink or "
495 499 "wrapper to chg. Alternatively, set $CHGHG to the "
496 500 "path of real hg.");
497 501
498 502 if (isunsupported(argc - 1, argv + 1))
499 503 execoriginalhg(argv);
500 504
501 505 struct cmdserveropts opts;
502 506 initcmdserveropts(&opts);
503 507 setcmdserveropts(&opts);
504 508 setcmdserverargs(&opts, argc, argv);
505 509
506 510 if (argc == 2) {
507 511 if (strcmp(argv[1], "--kill-chg-daemon") == 0) {
508 512 killcmdserver(&opts);
509 513 return 0;
510 514 }
511 515 }
512 516
513 517 hgclient_t *hgc;
514 518 size_t retry = 0;
515 519 while (1) {
516 520 hgc = connectcmdserver(&opts);
517 521 if (!hgc)
518 522 abortmsg("cannot open hg client");
519 523 hgc_setenv(hgc, envp);
520 524 const char **insts = hgc_validate(hgc, argv + 1, argc - 1);
521 525 int needreconnect = runinstructions(&opts, insts);
522 526 free(insts);
523 527 if (!needreconnect)
524 528 break;
525 529 hgc_close(hgc);
526 530 if (++retry > 10)
527 531 abortmsg("too many redirections.\n"
528 532 "Please make sure %s is not a wrapper which "
529 533 "changes sensitive environment variables "
530 534 "before executing hg. If you have to use a "
531 535 "wrapper, wrap chg instead of hg.",
532 536 gethgcmd());
533 537 }
534 538
535 539 setupsignalhandler(hgc_peerpid(hgc), hgc_peerpgid(hgc));
536 540 atexit(waitpager);
537 541 int exitcode = hgc_runcommand(hgc, argv + 1, argc - 1);
538 542 restoresignalhandler();
539 543 hgc_close(hgc);
540 544 freecmdserveropts(&opts);
541 545
542 546 return exitcode;
543 547 }
General Comments 0
You need to be logged in to leave comments. Login now