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