chiark / gitweb /
Final NMU patch.
[userv.git] / client.c
1 /*
2  * userv - client.c
3  * client code
4  *
5  * Copyright (C)1996-1997,1999 Ian Jackson
6  *
7  * This is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with userv; if not, write to the Free Software
19  * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20  */
21
22 /*
23  * Here too, we do some horrible asynchronous stuff with signals.
24  *
25  * The following objects &c. are used in signal handlers and so
26  * must be protected by calls to blocksignals if they are used in
27  * the main program:
28  *  stderr
29  *  swfile
30  *
31  * The following objects are used in the main program unprotected
32  * and so must not be used in signal handlers:
33  *  srfile
34  *  fdsetup[].copyfd
35  *  fdsetup[].pipefd
36  *
37  * The following objects/functions are not modified/called after the
38  * asynchronicity starts:
39  *  malloc
40  *  fdsetupsize
41  *  fdsetup[].mods
42  *  fdsetup[].filename
43  *  fdsetup[].oflags
44  *  results of argument parsing
45  *
46  * systemerror, swfile, fdsetup[].catpid and fdsetup[].killed are used
47  * for communication between the main thread and the signal handlers.
48  *
49  * All the signal handlers save errno so that is OK too.
50  */
51
52 #include <fcntl.h>
53 #include <stdarg.h>
54 #include <errno.h>
55 #include <stdio.h>
56 #include <stdlib.h>
57 #include <string.h>
58 #include <assert.h>
59 #include <unistd.h>
60 #include <ctype.h>
61 #include <pwd.h>
62 #include <grp.h>
63 #include <signal.h>
64 #include <limits.h>
65 #include <sys/time.h>
66 #include <sys/types.h>
67 #include <sys/stat.h>
68 #include <sys/socket.h>
69 #include <sys/un.h>
70 #include <sys/resource.h>
71 #include <sys/wait.h>
72
73 #include "config.h"
74 #include "common.h"
75 #include "both.h"
76 #include "version.h"
77
78 enum fdmodifiervalues {
79   fdm_read=       00001,
80   fdm_write=      00002,
81   fdm_create=     00004,
82   fdm_exclusive=  00010,
83   fdm_truncate=   00020,
84   fdm_append=     00040,
85   fdm_sync=       00100,
86   fdm_fd=         00200,
87   fdm_wait=       01000,
88   fdm_nowait=     02000,
89   fdm_close=      04000,
90 };
91
92 struct fdmodifierinfo {
93   const char *string;
94   int implies;
95   int conflicts;
96   int oflags;
97 };
98
99 struct fdsetupstate {
100   const char *filename; /* non-null iff this fd has been specified */
101   int copyfd; /* fd to copy, -1 unless mods & fdm_fd */
102   int mods, oflags, pipefd, killed; /* 0,0,-1,0 unless otherwise set */
103   pid_t catpid; /* -1 indicates no cat process */
104 };
105
106 enum signalsexitspecials { se_number=-100, se_numbernocore, se_highbit, se_stdout };
107 enum overridetypes { ot_none, ot_string, ot_file, ot_builtin };
108
109 struct constkeyvaluepair { const char *key, *value; };
110
111 /* Variables from command-line arguments */
112 static const char *serviceuser;
113 static uid_t serviceuid;
114 static struct fdsetupstate *fdsetup;
115 static int fdsetupsize;
116 static struct constkeyvaluepair *defvararray;
117 static int defvaravail, defvarused;
118 static unsigned long timeout;
119 static int signalsexit=254;
120 static int sigpipeok, hidecwd;
121 static int overridetype= ot_none;
122 static const char *overridevalue, *spoofuser=0;
123
124 /* Other state variables */
125 static FILE *srfile, *swfile;
126 static pid_t mypid;
127 static uid_t myuid, spoofuid;
128 static gid_t mygid, spoofgid, *gidarray;
129 static int ngids;
130 static struct opening_msg opening_mbuf;
131 static const char *loginname;
132 static char *cwdbuf;
133 static size_t cwdbufsize;
134 static char *ovbuf;
135 static int ovused, systemerror;
136
137 static void blocksignals(int how) {
138   sigset_t set;
139   static const char blockerrmsg[]= "userv: failed to [un]block signals: ";
140   const char *str;
141
142   sigemptyset(&set);
143   sigaddset(&set,SIGCHLD);
144   sigaddset(&set,SIGALRM);
145   if (sigprocmask(how,&set,0)) {
146     str= strerror(errno);
147     write(2,blockerrmsg,sizeof(blockerrmsg)-1);
148     write(2,str,strlen(str));
149     write(2,"\n",1);
150     exit(-1);
151   }
152 }
153
154 /* Functions which may be called either from signal handlers or from
155  * the main thread.  They block signals in case they are on the main
156  * thread, and may only use signal handler objects.  None of them
157  * return.  If they did they'd have to restore the signal mask.
158  */
159
160 static void NONRETURNPRINTFFORMAT(1,2) miscerror(const char *fmt, ...) {
161   va_list al;
162
163   blocksignals(SIG_BLOCK);
164   va_start(al,fmt);
165   fprintf(stderr,"userv: failure: ");
166   vfprintf(stderr,fmt,al);
167   fprintf(stderr,"\n");
168   exit(-1);
169 }
170
171 static void NONRETURNPRINTFFORMAT(1,2) fsyscallerror(const char *fmt, ...) {
172   va_list al;
173   int e;
174
175   e= errno;
176   blocksignals(SIG_BLOCK);
177   va_start(al,fmt);
178   fprintf(stderr,"userv: system call failure: ");
179   vfprintf(stderr,fmt,al);
180   fprintf(stderr,": %s\n",strerror(e));
181   exit(-1);
182 }
183
184 void syscallerror(const char *what) {
185   fsyscallerror("%s",what);
186 }
187
188 static void NONRETURNING protoreaderror(FILE *file, const char *where) {
189   int e;
190
191   e= errno;
192   blocksignals(SIG_BLOCK);
193   if (ferror(file)) {
194     fprintf(stderr,"userv: failure: read error %s: %s\n",where,strerror(e));
195   } else {
196     assert(feof(file));
197     fprintf(stderr,"userv: internal failure: EOF from server %s\n",where);
198   }
199   exit(-1);
200 }
201
202 static void NONRETURNPRINTFFORMAT(1,2) protoerror(const char *fmt, ...) {
203   va_list al;
204
205   blocksignals(SIG_BLOCK);
206   va_start(al,fmt);
207   fprintf(stderr,"userv: internal failure: protocol error: ");
208   vfprintf(stderr,fmt,al);
209   fprintf(stderr,"\n");
210   exit(-1);
211 }
212
213 /*
214  * General-purpose functions; these do nothing special about signals,
215  * except that they can call error-handlers which may block them
216  * to print error messages.
217  */
218
219 static void xfread(void *p, size_t sz, FILE *file) {
220   size_t nr;
221   nr= working_fread(p,sz,file);
222   if (nr != sz) protoreaderror(file,"in data");
223 }
224
225 static void xfwrite(const void *p, size_t sz, FILE *file) {
226   size_t nr;
227   nr= fwrite(p,1,sz,file); if (nr == sz) return;
228   syscallerror("writing to server");
229 }
230
231 static void xfflush(FILE *file) {
232   if (fflush(file)) syscallerror("flush server socket");
233 }
234
235 /* Functions which may be called only from the main thread.  These may
236  * use main-thread objects and must block signals before using signal
237  * handler objects.
238  */
239
240 #ifdef DEBUG
241 static void priv_suspend(void) { }
242 static void priv_resume(void) { }
243 static void priv_permanentlyrevokesuspended(void) { }
244 #else
245 static void priv_suspend(void) {
246   if (setreuid(0,myuid) != 0) syscallerror("suspend root setreuid(0,myuid)");
247 }
248 static void priv_resume(void) {
249   if (setreuid(myuid,0) != 0) syscallerror("resume root setreuid(myuid,0)");
250 }
251 static void priv_permanentlyrevokesuspended(void) {
252   if (setreuid(myuid,myuid) != 0) syscallerror("revoke root setreuid(myuid,myuid)");
253   if (setreuid(myuid,myuid) != 0) syscallerror("rerevoke root setreuid(myuid,myuid)");
254   if (myuid) {
255     if (!setreuid(myuid,0)) miscerror("revoked root but setreuid(0,0) succeeded !");
256     if (errno != EPERM) syscallerror("revoked and setreuid(myuid,0) unexpected error");
257   }
258 }
259 #endif
260
261 static void checkmagic(unsigned long was, unsigned long should, const char *when) {
262   if (was != should)
263     protoerror("magic number %s was %08lx, expected %08lx",when,was,should);
264 }
265
266 static void getprogress(struct progress_msg *progress_r, FILE *file) {
267   int i, c;
268   unsigned long ul;
269
270   for (;;) {
271     xfread(progress_r,sizeof(struct progress_msg),file);
272     checkmagic(progress_r->magic,PROGRESS_MAGIC,"in progress message");
273     switch (progress_r->type) {
274     case pt_failed:
275       blocksignals(SIG_BLOCK);
276       fputs("userv: uservd reports that service failed\n",stderr);
277       exit(-1);
278     case pt_errmsg:
279       blocksignals(SIG_BLOCK);
280       fputs("uservd: ",stderr);
281       if (progress_r->data.errmsg.messagelen>MAX_ERRMSG_STRING)
282         protoerror("stderr message length %d is far too long",
283                    progress_r->data.errmsg.messagelen);
284       for (i=0; i<progress_r->data.errmsg.messagelen; i++) {
285         c= working_getc(file);
286         if (c==EOF) protoreaderror(file,"in error message");
287         if (ISCHAR(isprint,c)) putc(c,stderr);
288         else fprintf(stderr,"\\x%02x",(unsigned char)c);
289       }
290       putc('\n',stderr);
291       if (ferror(stderr)) syscallerror("printing error message");
292       xfread(&ul,sizeof(ul),file);
293       checkmagic(ul,PROGRESS_ERRMSG_END_MAGIC,"after error message");
294       blocksignals(SIG_UNBLOCK);
295       break;
296     default:
297       return;
298     }
299   }
300 }
301
302 /*
303  * Functions which are called only during setup, before
304  * the signal asynchronicity starts.  They can do anything they like.
305  */
306
307 /* This includes xmalloc and xrealloc from both.c */
308
309 static void xfwritestring(const char *s, FILE *file) {
310   int l;
311   l= strlen(s);
312   assert(l<=MAX_GENERAL_STRING);
313   xfwrite(&l,sizeof(l),file);
314   xfwrite(s,sizeof(*s)*l,file);
315 }
316
317 static void xfwritefds(int modifier, int expected, FILE *file) {
318   int i, fdcount;
319
320   for (i=0, fdcount=0; i<fdsetupsize; i++) {
321     if (!(fdsetup[i].filename && (fdsetup[i].mods & modifier)))
322       continue;
323     xfwrite(&i,sizeof(int),file); fdcount++;
324   }
325   assert(fdcount == expected);
326 }
327
328 /* Functions which may be called from signal handlers.  These
329  * may use signal-handler objects.  The main program may only
330  * call them with signals blocked, and they may not use any
331  * main-thread objects.
332  */
333
334 static void disconnect(void) /* DOES return, unlike in daemon */ {
335   struct event_msg event_mbuf;
336   int r;
337
338   if (swfile) {
339     memset(&event_mbuf,0,sizeof(event_mbuf));
340     event_mbuf.magic= EVENT_MAGIC;
341     event_mbuf.type= et_disconnect;
342     r= fwrite(&event_mbuf,1,sizeof(event_mbuf),swfile);
343     if ((r != sizeof(event_mbuf) || fflush(swfile)) && errno != EPIPE)
344       syscallerror("write to server when disconnecting");
345   }
346   systemerror= 1;
347 }
348
349 static void sighandler_alrm(int ignored) /* DOES return, unlike in daemon */ {
350   int es;
351   es= errno;
352   fputs("userv: timeout\n",stderr);
353   disconnect();
354   errno= es;
355 }
356
357 static void sighandler_chld(int ignored) /* DOES return, unlike in daemon */ {
358   struct event_msg event_mbuf;
359   pid_t child;
360   int status, fd, r, es;
361
362   es= errno;
363   for (;;) {
364     child= wait3(&status,WNOHANG,0);
365     if (child == 0 || (child == -1 && errno == ECHILD)) break;
366     if (child == -1) syscallerror("wait for child process (in sigchld handler)");
367     for (fd=0; fd<fdsetupsize && fdsetup[fd].catpid != child; fd++);
368     if (fd>=fdsetupsize) continue; /* perhaps the caller gave us children */
369     if ((WIFEXITED(status) && WEXITSTATUS(status)==0) ||
370         (WIFSIGNALED(status) && WTERMSIG(status)==SIGPIPE) ||
371         (fdsetup[fd].killed && WIFSIGNALED(status) && WTERMSIG(status)==SIGKILL)) {
372       if (swfile && fdsetup[fd].mods & fdm_read) {
373         memset(&event_mbuf,0,sizeof(event_mbuf));
374         event_mbuf.magic= EVENT_MAGIC;
375         event_mbuf.type= et_closereadfd;
376         event_mbuf.data.closereadfd.fd= fd;
377         r= fwrite(&event_mbuf,1,sizeof(event_mbuf),swfile);
378         if (r != sizeof(event_mbuf) || fflush(swfile))
379           if (errno != EPIPE) syscallerror("inform service of closed read fd");
380       }
381     } else {
382       if (WIFEXITED(status))
383         fprintf(stderr,"userv: cat for fd %d exited with error exit status %d\n",
384                 fd,WEXITSTATUS(status));
385       else if (WIFSIGNALED(status))
386         if (WCOREDUMP(status))
387           fprintf(stderr,"userv: cat for fd %d dumped core due to signal %s (%d)\n",
388                   fd,strsignal(WTERMSIG(status)),WTERMSIG(status));
389         else
390           fprintf(stderr,"userv: cat for fd %d terminated by signal %s (%d)\n",
391                   fd,strsignal(WTERMSIG(status)),WTERMSIG(status));
392       else
393         fprintf(stderr,"userv: cat for fd %d gave unknown wait status %d\n",
394                 fd,status);
395       disconnect();
396     }
397     fdsetup[fd].catpid= -1;
398   }
399   errno= es;
400 }
401
402 /*
403  * Argument parsing.  These functions which are called only during
404  * setup, before the signal asynchronicity starts.
405  */
406
407 struct optioninfo;
408
409 typedef void optionfunction(const struct optioninfo*, const char *value, char *key);
410
411 struct optioninfo {
412   int abbrev;
413   const char *full;
414   int values; /* 0: no value; 1: single value; 2: key and value */
415   optionfunction *fn;
416 };
417
418 static void usage(FILE *stream) {
419   if (fputs(
420     "usage: userv <options> [--] <service-user> <service-name> [<argument> ...]\n"
421     "usage: userv <options> -B|--builtin [--] <builtin-service> [<info-argument> ...]\n"
422     "options: -f|--file <fd>[<fdmodifiers>]=<filename>\n"
423     "         -D|--defvar <name>=<value>\n"
424     "         -t|--timeout <seconds>\n"
425     "         -S|--signals <status>|number|number-nocore|highbit|stdout\n"
426     "         -w|--fdwait <fd>=wait|nowait|close\n"
427     "         -P|--sigpipe  -H|--hidecwd  -h|--help|--version  --copyright\n"
428     "         --override <configuration-data> } available only\n"
429     "         --override-file <filename>      }  to root\n"
430     "         --spoof-user <username>         }  or same user\n"
431     "fdmodifiers:            read    write  overwrite    trunc[ate]\n"
432     "(separate with commas)  append  sync   excl[usive]  creat[e]  fd\n"
433     "userv -B 'X' ... is same as userv --override 'execute-builtin X' - 'X' ...\n"
434     "         for help, type `userv -B help'; remember to quote multi-word X\n"
435     "userv and uservd version " VERSION VEREXT "; copyright (C)1996-1999 Ian Jackson.\n"
436     "there is NO WARRANTY; type `userv --copyright' for details.\n",
437             stream) < 0)
438     syscallerror("write usage message");
439 }
440
441 static void NONRETURNPRINTFFORMAT(1,2) usageerror(const char *fmt, ...) {
442   va_list al;
443   va_start(al,fmt);
444   fputs("userv: ",stderr);
445   vfprintf(stderr,fmt,al);
446   fputs("\n\n",stderr);
447   usage(stderr);
448   exit(-1);
449 }
450
451 static const struct fdmodifierinfo fdmodifierinfos[]= {
452   { "read",      fdm_read,
453                  fdm_write,
454                  O_RDONLY                                                         },
455   { "write",     fdm_write,
456                  fdm_read,
457                  O_WRONLY                                                         },
458   { "overwrite", fdm_write|fdm_create|fdm_truncate,
459                  fdm_read|fdm_fd|fdm_exclusive,
460                  O_WRONLY|O_CREAT|O_TRUNC                                         },
461   { "create",    fdm_write|fdm_create,
462                  fdm_read|fdm_fd,
463                  O_WRONLY|O_CREAT                                                 },
464   { "creat",     fdm_write|fdm_create,
465                  fdm_read|fdm_fd,
466                  O_WRONLY|O_CREAT                                                 },
467   { "exclusive", fdm_write|fdm_create|fdm_exclusive,
468                  fdm_read|fdm_fd|fdm_truncate,
469                  O_WRONLY|O_CREAT|O_EXCL                                          },
470   { "excl",      fdm_write|fdm_create|fdm_exclusive,
471                  fdm_read|fdm_fd|fdm_truncate,
472                  O_WRONLY|O_CREAT|O_EXCL                                          },
473   { "truncate",  fdm_write|fdm_truncate,
474                  fdm_read|fdm_fd|fdm_exclusive,
475                  O_WRONLY|O_CREAT|O_EXCL                                          },
476   { "trunc",     fdm_write|fdm_truncate,
477                  fdm_read|fdm_fd|fdm_exclusive,
478                  O_WRONLY|O_CREAT|O_EXCL                                          },
479   { "append",    fdm_write|fdm_append,
480                  fdm_read|fdm_fd,
481                  O_WRONLY|O_CREAT|O_APPEND                                        },
482   { "sync",      fdm_write|fdm_sync,
483                  fdm_read|fdm_fd,
484                  O_WRONLY|O_CREAT|O_SYNC                                          },
485   { "wait",      fdm_wait,
486                  fdm_nowait|fdm_close,
487                  0                                                                },
488   { "nowait",    fdm_nowait,
489                  fdm_wait|fdm_close,
490                  0                                                                },
491   { "close",     fdm_close,
492                  fdm_wait|fdm_nowait,
493                  0                                                                },
494   { "fd",        fdm_fd,
495                  fdm_create|fdm_exclusive|fdm_truncate|fdm_append|fdm_sync,
496                  0                                                                },
497   {  0                                                                            }
498 };
499
500 static void addfdmodifier(int fd, const char *key) {
501   const struct fdmodifierinfo *fdmip;
502   
503   if (!*key) return;
504   for (fdmip= fdmodifierinfos; fdmip->string && strcmp(fdmip->string,key); fdmip++);
505   if (!fdmip->string) usageerror("unknown fdmodifer `%s' for fd %d",key,fd);
506   if (fdmip->conflicts & fdsetup[fd].mods)
507     usageerror("fdmodifier `%s' conflicts with another for fd %d",key,fd);
508   fdsetup[fd].mods |= fdmip->implies;
509   fdsetup[fd].oflags |= fdmip->oflags;
510 }
511
512 static int fdstdnumber(const char *string) {
513   if (!strcmp(string,"stdin")) return 0;
514   else if (!strcmp(string,"stdout")) return 1;
515   else if (!strcmp(string,"stderr")) return 2;
516   else return -1;
517 }
518
519 static void of_file(const struct optioninfo *oip, const char *value, char *key) {
520   unsigned long fd, copyfd;
521   struct stat stab;
522   int oldarraysize, r;
523   char *delim;
524
525   fd= strtoul(key,&delim,10);
526   if (delim == key) {
527     delim= strchr(key,',');
528     if (delim) *delim++= 0;
529     fd= fdstdnumber(key);
530     if (fd<0) usageerror("first part of argument to -f or --file must be numeric "
531                          "file descriptor or `stdin', `stdout' or `stderr' - `%s' "
532                          "is not recognized",key);
533   }
534   if (fd > MAX_ALLOW_FD)
535     usageerror("file descriptor specified (%lu) is larger than maximum allowed (%d)",
536                fd,MAX_ALLOW_FD);
537   if (fd >= fdsetupsize) {
538     oldarraysize= fdsetupsize;
539     fdsetupsize+=2; fdsetupsize<<=1;
540     fdsetup= xrealloc(fdsetup,sizeof(struct fdsetupstate)*fdsetupsize);
541     while (oldarraysize < fdsetupsize) {
542       fdsetup[oldarraysize].filename= 0;
543       fdsetup[oldarraysize].pipefd= -1;
544       fdsetup[oldarraysize].copyfd= -1;
545       fdsetup[oldarraysize].mods= 0;
546       fdsetup[oldarraysize].oflags= 0;
547       fdsetup[oldarraysize].catpid= -1;
548       fdsetup[oldarraysize].killed= 0;
549       fdsetup[oldarraysize].filename= 0;
550       oldarraysize++;
551     }
552   }
553   fdsetup[fd].filename= value;
554   fdsetup[fd].oflags= 0;
555   fdsetup[fd].mods= 0;
556   fdsetup[fd].copyfd= -1;
557   while (delim && *delim) {
558     key= delim;
559     delim= strchr(key,',');
560     if (delim) *delim++= 0;
561     addfdmodifier(fd,key);
562   }
563   if (!(fdsetup[fd].mods & (fdm_read|fdm_write))) {
564     if (fd == 0) {
565       addfdmodifier(fd,"read");
566     } else if (fdsetup[fd].mods & fdm_fd) {
567       addfdmodifier(fd,"write");
568     } else {
569       addfdmodifier(fd,"overwrite");
570     }
571   }
572   if (fdsetup[fd].mods & fdm_fd) {
573     copyfd= fdstdnumber(value);
574     if (copyfd<0) {
575       copyfd= strtoul(value,&delim,0);
576       if (*delim)
577         usageerror("value part of argument to --file with fd modifier must be "
578                    "numeric or fd name - `%s' is not recognised",value);
579       else if (copyfd > MAX_ALLOW_FD)
580         usageerror("file descriptor %lu named as target of file descriptor redirection"
581                    " (for file descriptor %lu) is larger than maximum allowed (%d)",
582                    copyfd,fd,MAX_ALLOW_FD);
583     }
584     r= fstat(copyfd,&stab);
585     if (r) {
586       if (oip) fsyscallerror("check filedescriptor %lu (named as target of file "
587                              "descriptor redirection for %lu)",copyfd,fd);
588       else fsyscallerror("check basic filedescriptor %lu at program start",copyfd);
589     }
590     fdsetup[fd].copyfd= copyfd;
591   }
592 }
593
594 static void of_fdwait(const struct optioninfo *oip, const char *value, char *key) {
595   const struct fdmodifierinfo *fdmip;
596   unsigned long ul;
597   int fd;
598   char *delim;
599   
600   fd= fdstdnumber(key);
601   if (fd<0) {
602     ul= strtoul(key,&delim,0);
603     if (*delim) usageerror("first part of argument to --fdwait must be "
604                            "numeric or fd name - `%s' is not recognised",key);
605     if (ul>MAX_ALLOW_FD) usageerror("first part of argument to --fdwait is too large");
606     fd= ul;
607   }
608   if (fd >= fdsetupsize || !fdsetup[fd].filename)
609     usageerror("file descriptor %d specified in --fdwait option is not open",fd);
610   for (fdmip= fdmodifierinfos; fdmip->string && strcmp(fdmip->string,value); fdmip++);
611   if (!fdmip->string || !(fdmip->implies & (fdm_wait|fdm_nowait|fdm_close)))
612     usageerror("value for --fdwait must be `wait', `nowait' or `close', not `%s'",value);
613   fdsetup[fd].mods &= ~(fdm_wait|fdm_nowait|fdm_close);
614   fdsetup[fd].mods |= fdmip->implies;
615 }
616
617 static void of_defvar(const struct optioninfo *oip, const char *value, char *key) {
618   int i;
619
620   if (!key[0])
621     usageerror("empty string not allowed as variable name");
622   if (strlen(key)>MAX_GENERAL_STRING)
623     usageerror("variable name `%s' is far too long",key);
624   if (strlen(value)>MAX_GENERAL_STRING)
625     usageerror("variable `%s' has value `%s' which is far too long",key,value);
626   for (i=0; i<defvarused && strcmp(defvararray[i].key,key); i++);
627   if (defvarused >= MAX_ARGSDEFVAR) usageerror("far too many --defvar or -D options");
628   if (i>=defvaravail) {
629     defvaravail+=10; defvaravail<<=1;
630     defvararray= xrealloc(defvararray,sizeof(struct constkeyvaluepair)*defvaravail);
631   }
632   if (i==defvarused) defvarused++;
633   defvararray[i].key= key;
634   defvararray[i].value= value;
635 }
636
637 static void of_timeout(const struct optioninfo *oip, const char *value, char *key) {
638   char *endp;
639   unsigned long ul;
640   
641   ul= strtoul(value,&endp,0);
642   if (*endp) usageerror("timeout value `%s' must be a plain decimal string",value);
643   if (ul>INT_MAX) usageerror("timeout value %lu too large",ul);
644   timeout= ul;
645 }
646
647 static void of_signals(const struct optioninfo *oip, const char *value, char *key) {
648   unsigned long numvalue;
649   char *endp;
650   
651   numvalue= strtoul(value,&endp,0);
652   if (*endp) {
653     if (!strcmp(value,"number")) signalsexit= se_number;
654     else if (!strcmp(value,"number-nocore")) signalsexit= se_numbernocore;
655     else if (!strcmp(value,"highbit")) signalsexit= se_highbit;
656     else if (!strcmp(value,"stdout")) signalsexit= se_stdout;
657     else usageerror("value `%s' for --signals not understood",value);
658   } else {
659     if (numvalue<0 || numvalue>255)
660       usageerror("value %lu for --signals not 0...255",numvalue);
661     signalsexit= numvalue;
662   }
663 }
664
665 static void of_sigpipe(const struct optioninfo *oip, const char *value, char *key) {
666   sigpipeok=1;
667 }
668
669 static void of_hidecwd(const struct optioninfo *oip, const char *value, char *key) {
670   hidecwd=1;
671 }
672
673 static void of_help(const struct optioninfo *oip, const char *value, char *key) {
674   usage(stdout);
675   if (fclose(stdout)) syscallerror("fclose stdout after writing usage message");
676   exit(0);
677 }
678
679 static void of_version(const struct optioninfo *oip, const char *value, char *key) {
680   if (puts(VERSION VEREXT) == EOF || fclose(stdout))
681     syscallerror("write version number");
682   exit(0);
683 }
684
685 static void of_copyright(const struct optioninfo *oip, const char *value, char *key) {
686   if (fputs(
687 " userv - user service daemon and client; copyright (C)1996-1999 Ian Jackson\n\n"
688 " This is free software; you can redistribute it and/or modify it under the\n"
689 " terms of the GNU General Public License as published by the Free Software\n"
690 " Foundation; either version 2 of the License, or (at your option) any\n"
691 " later version.\n\n"
692 " This program is distributed in the hope that it will be useful, but\n"
693 " WITHOUT ANY WARRANTY; without even the implied warranty of\n"
694 " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General\n"
695 " Public License for more details.\n\n"
696 " You should have received a copy of the GNU General Public License along\n"
697 " with userv; if not, write to Ian Jackson <ian@davenant.greenend.org.uk> or\n"
698 " to the Free Software Foundation, 59 Temple Place - Suite 330, Boston,\n"
699 " MA 02111-1307, USA.\n",
700             stdout) < 0) syscallerror("write usage to stderr");
701   exit(0);
702 }
703
704 static void of_builtin(const struct optioninfo *oip, const char *value, char *key) {
705   overridetype= ot_builtin;
706 }
707
708 static void of_override(const struct optioninfo *oip, const char *value, char *key) {
709   overridetype= ot_string;
710   overridevalue= value;
711 }
712
713 static void of_overridefile(const struct optioninfo *oip,
714                             const char *value, char *key) {
715   overridetype= ot_file;
716   overridevalue= value;
717 }
718
719 static void of_spoofuser(const struct optioninfo *oip,
720                          const char *value, char *key) {
721   spoofuser= value;
722 }
723
724 const struct optioninfo optioninfos[]= {
725   { 'f', "file",          2, of_file         },
726   { 'w', "fdwait",        2, of_fdwait       },
727   { 'D', "defvar",        2, of_defvar       },
728   { 't', "timeout",       1, of_timeout      },
729   { 'S', "signals",       1, of_signals      },
730   { 'P', "sigpipe",       0, of_sigpipe      },
731   { 'H', "hidecwd",       0, of_hidecwd      },
732   { 'B', "builtin",       0, of_builtin      },
733   { 'h', "help",          0, of_help         },
734   {  0,  "version",       0, of_version      },
735   {  0,  "copyright",     0, of_copyright    },
736   {  0,  "override",      1, of_override     },
737   {  0,  "override-file", 1, of_overridefile },
738   {  0,  "spoof-user",    1, of_spoofuser    },
739   {  0,   0                                  }
740 };
741
742 static void callvalueoption(const struct optioninfo *oip, char *arg) {
743   char *equals;
744   if (oip->values == 2) {
745     equals= strchr(arg,'=');
746     if (!equals) {
747       if (oip->abbrev)
748         usageerror("option --%s (-%c) passed argument `%s' with no `='",
749                    oip->full,oip->abbrev,arg);
750       else
751         usageerror("option --%s passed argument `%s' with no `='",
752                    oip->full,arg);
753     }
754     *equals++= 0;
755     (oip->fn)(oip,equals,arg);
756   } else {
757     (oip->fn)(oip,arg,0);
758   }
759 }
760
761 /*
762  * Main thread main processing functions - in order of execution.
763  */
764
765 static void security_init(void) {
766   /* May not open any file descriptors. */
767   
768   mypid= getpid(); if (mypid == (pid_t)-1) syscallerror("getpid");
769   myuid= getuid(); if (myuid == (uid_t)-1) syscallerror("getuid");
770   mygid= getgid(); if (mygid == (gid_t)-1) syscallerror("getgid");
771   ngids= getgroups(0,0); if (ngids == (gid_t)-1) syscallerror("getgroups(0,0)");
772   gidarray= xmalloc(sizeof(gid_t)*ngids);
773   if (getgroups(ngids,gidarray) != ngids) syscallerror("getgroups(ngids,)");
774   
775   priv_suspend();
776
777   if (ngids > MAX_GIDS) miscerror("caller is in far too many gids");
778 }
779
780 static void parse_arguments(int *argcp, char *const **argvp) {
781   static char fd0key[]= "stdin,fd,read";
782   static char fd1key[]= "stdout,fd,write";
783   static char fd2key[]= "stderr,fd,write";
784
785   char *const *argpp;
786   char *argp;
787   const struct optioninfo *oip;
788   int fd;
789
790   assert((*argvp)[0]);
791   of_file(0,"stdin",fd0key);
792   of_file(0,"stdout",fd1key);
793   of_file(0,"stderr",fd2key);
794
795   for (argpp= *argvp+1;
796        (argp= *argpp) && *argp == '-' && argp[1];
797        argpp++) {
798     if (!*++argp) usageerror("unknown option/argument `%s'",*argpp);
799     if (*argp == '-') { /* Two hyphens */
800       if (!*++argp) { argpp++; break; /* End of options. */ }
801       for (oip= optioninfos; oip->full && strcmp(oip->full,argp); oip++);
802       if (!oip->full) usageerror("unknown long option `%s'",*argpp);
803       if (oip->values) {
804         if (!argpp[1]) usageerror("long option `%s' needs a value",*argpp);
805         callvalueoption(oip,*++argpp);
806       } else {
807         (oip->fn)(oip,0,0);
808       }
809     } else {
810       for (; *argp; argp++) {
811         for (oip= optioninfos; oip->full && oip->abbrev != *argp; oip++);
812         if (!oip->full) usageerror("unknown short option `-%c' in argument `%s'",
813                                     *argp, *argpp);
814         if (oip->values) {
815           if (argp[1]) {
816             argp++;
817           } else {
818             if (!argpp[1]) usageerror("short option `-%c' in argument `%s' needs"
819                                       " a value",*argp,*argpp);
820             argp= *++argpp;
821           }
822           callvalueoption(oip,argp);
823           break; /* No more options in this argument, go on to the next one. */
824         } else {
825           (oip->fn)(oip,0,0);
826         }
827       }
828     }
829   }
830   if (overridetype == ot_builtin) {
831     serviceuser= "-";
832   } else {
833     if (!*argpp) usageerror("no service user given after options");
834     serviceuser= *argpp++;
835   }
836   if (!*argpp) usageerror(overridetype == ot_builtin ?
837                           "no service name given after options and service user" :
838                           "no builtin service given after options");
839
840   *argcp-= (argpp-*argvp);
841   *argvp= argpp;
842
843   if (*argcp > MAX_ARGSDEFVAR) usageerror("far too many arguments");
844   
845   for (fd=0; fd<fdsetupsize; fd++) {
846     if (!fdsetup[fd].filename) continue;
847     if (fdsetup[fd].mods & (fdm_wait|fdm_nowait|fdm_close)) continue;
848     assert(fdsetup[fd].mods & (fdm_read|fdm_write));
849     fdsetup[fd].mods |= (fdsetup[fd].mods & fdm_read) ? fdm_close : fdm_wait;
850   }
851 }
852
853 static void determine_users(void) {
854   int ngidssize;
855   char **mem;
856   struct passwd *pw;
857   struct group *gr;
858   
859   spoofuid= myuid;
860   spoofgid= mygid;
861   loginname= getenv("LOGNAME");
862   if (!loginname) loginname= getenv("USER");
863   if (loginname) {
864     pw= getpwnam(loginname);
865     if (!pw || pw->pw_uid != myuid) loginname= 0;
866   }
867   if (!loginname) {
868     pw= getpwuid(myuid); if (!pw) miscerror("cannot determine your login name");
869     loginname= xstrsave(pw->pw_name);
870   }
871
872   if (!strcmp(serviceuser,"-")) serviceuser= loginname;
873   pw= getpwnam(serviceuser);
874   if (!pw) miscerror("requested service user `%s' is not a user",serviceuser);
875   serviceuid= pw->pw_uid;
876
877   if ((overridetype != ot_none || spoofuser) && myuid != 0 && myuid != serviceuid)
878     miscerror("--override and --spoof options only available to root or to"
879               " the user who will be providing the service");
880
881   if (spoofuser) {
882     loginname= spoofuser;
883     pw= getpwnam(loginname);
884     if (!pw) miscerror("spoofed login name `%s' is not valid",loginname);
885     spoofuid= pw->pw_uid;
886     spoofgid= pw->pw_gid;
887     ngidssize= ngids; ngids= 0;
888     if (ngidssize<5) {
889       ngidssize= 5;
890       gidarray= xrealloc(gidarray,sizeof(gid_t)*ngidssize);
891     }
892     gidarray[ngids++]= spoofgid;
893     while ((gr= getgrent())) { /* ouch! getgrent has no error behaviour! */
894       for (mem= gr->gr_mem; *mem && strcmp(*mem,loginname); mem++);
895       if (!*mem) continue;
896       if (ngids>=ngidssize) {
897       if (ngids>=MAX_GIDS) miscerror("spoofed user is member of too many groups");
898         ngidssize= (ngids+5)<<1;
899         gidarray= xrealloc(gidarray,sizeof(gid_t)*ngidssize);
900       }
901       gidarray[ngids++]= gr->gr_gid;
902     }
903   }
904 }
905
906 static void determine_cwd(void) {
907   cwdbufsize= 0; cwdbuf= 0;
908
909   if (hidecwd) return;
910   
911   for (;;) {
912     if (cwdbufsize > MAX_GENERAL_STRING) { cwdbufsize= 0; free(cwdbuf); break; }
913     cwdbufsize <<= 1; cwdbufsize+= 100;
914     cwdbuf= xrealloc(cwdbuf,cwdbufsize);
915     cwdbuf[cwdbufsize-1]= 0;
916     if (getcwd(cwdbuf,cwdbufsize-1)) { cwdbufsize= strlen(cwdbuf); break; }
917     if (errno != ERANGE) { cwdbufsize= 0; free(cwdbuf); break; }
918   }
919 }
920
921 static void process_override(const char *servicename) {
922   FILE *ovfile;
923   int ovavail, l, c;
924
925   switch (overridetype) {
926   case ot_none:
927     ovused= -1;
928     ovbuf= 0;
929     break;
930   case ot_builtin:
931     l= strlen(servicename);
932     if (l >= MAX_OVERRIDE_LEN-20)
933       miscerror("builtin service string is too long (%d, max is %d)",
934                 l,MAX_OVERRIDE_LEN-21);
935     l+= 20;
936     ovbuf= xmalloc(l);
937     snprintf(ovbuf,l,"execute-builtin %s\n",servicename);
938     ovused= strlen(ovbuf);
939     break;
940   case ot_string:
941     l= strlen(overridevalue);
942     if (l >= MAX_OVERRIDE_LEN)
943       miscerror("override string is too long (%d, max is %d)",l,MAX_OVERRIDE_LEN-1);
944     ovbuf= xmalloc(l+2);
945     snprintf(ovbuf,l+2,"%s\n",overridevalue);
946     ovused= l+1;
947     break;
948   case ot_file:
949     ovfile= fopen(overridevalue,"r");
950     if (!ovfile) fsyscallerror("open overriding configuration file `%s'",overridevalue);
951     ovbuf= 0; ovavail= ovused= 0;
952     while ((c= getc(ovfile)) != EOF) {
953       if (!c) miscerror("overriding config file `%s' contains null(s)",overridevalue);
954       if (ovused >= MAX_OVERRIDE_LEN)
955         miscerror("override file is too long (max is %d)",MAX_OVERRIDE_LEN);
956       if (ovused >= ovavail) {
957         ovavail+=80; ovavail<<=2; ovbuf= xrealloc(ovbuf,ovavail);
958       }
959       ovbuf[ovused++]= c;
960     }
961     if (ferror(ovfile) || fclose(ovfile))
962       fsyscallerror("read overriding configuration file `%s'",overridevalue);
963     ovbuf= xrealloc(ovbuf,ovused+1);
964     ovbuf[ovused]= 0;
965     break;
966   default:
967     abort();
968   }
969 }
970
971 static int server_connect(void) {
972   struct sockaddr_un ssockname;
973   int sfd;
974   struct sigaction sig;
975   sigset_t sset;
976
977   sigemptyset(&sset);
978   sigaddset(&sset,SIGCHLD);
979   sigaddset(&sset,SIGALRM);
980   sigaddset(&sset,SIGPIPE);
981   if (sigprocmask(SIG_UNBLOCK,&sset,0)) syscallerror("preliminarily unblock signals");
982
983   sig.sa_handler= SIG_IGN;
984   sigemptyset(&sig.sa_mask);
985   sig.sa_flags= 0;
986   if (sigaction(SIGPIPE,&sig,0)) syscallerror("ignore sigpipe");
987
988   sfd= socket(AF_UNIX,SOCK_STREAM,0);
989   if (!sfd) syscallerror("create client socket");
990
991   assert(sizeof(ssockname.sun_path) > sizeof(RENDEZVOUSPATH));
992   ssockname.sun_family= AF_UNIX;
993   strcpy(ssockname.sun_path,RENDEZVOUSPATH);
994   priv_resume();
995   while (connect(sfd,(struct sockaddr*)&ssockname,sizeof(ssockname))) {
996     if (errno == ECONNREFUSED || errno == ENOENT)
997       syscallerror("uservd daemon is not running - service not available");
998     if (errno != EINTR)
999       fsyscallerror("unable to connect to uservd daemon: %m");
1000   }
1001
1002   return sfd;
1003 }
1004
1005 static void server_handshake(int sfd) {
1006   srfile= fdopen(sfd,"r");
1007   if (!srfile) syscallerror("turn socket fd into FILE* for read");
1008   if (setvbuf(srfile,0,_IOFBF,BUFSIZ)) syscallerror("set buffering on socket reads");
1009
1010   swfile= fdopen(sfd,"w");
1011   if (!swfile) syscallerror("turn socket fd into FILE* for write");
1012   if (setvbuf(swfile,0,_IOFBF,BUFSIZ)) syscallerror("set buffering on socket writes");
1013
1014   xfread(&opening_mbuf,sizeof(opening_mbuf),srfile);
1015   checkmagic(opening_mbuf.magic,OPENING_MAGIC,"in opening message");
1016   if (memcmp(protocolchecksumversion,opening_mbuf.protocolchecksumversion,PCSUMSIZE))
1017     protoerror("protocol version checksum mismatch - server not same as client");
1018 }
1019
1020 static void server_preparepipes(void) {
1021   char pipepathbuf[PIPEPATHMAXLEN+2];
1022   int fd, tempfd;
1023   
1024   for (fd=0; fd<fdsetupsize; fd++) {
1025     if (!fdsetup[fd].filename) continue;
1026     pipepathbuf[PIPEPATHMAXLEN]= 0;
1027     sprintf(pipepathbuf, PIPEPATHFORMAT,
1028             (unsigned long)mypid, (unsigned long)opening_mbuf.serverpid, fd);
1029     assert(!pipepathbuf[PIPEPATHMAXLEN]);
1030     priv_resume();
1031     if (unlink(pipepathbuf) && errno != ENOENT)
1032       fsyscallerror("remove any old pipe `%s'",pipepathbuf);
1033     if (mkfifo(pipepathbuf,0600)) /* permissions are irrelevant */
1034       fsyscallerror("create pipe `%s'",pipepathbuf);
1035     tempfd= open(pipepathbuf,O_RDWR);
1036     if (tempfd<0) fsyscallerror("prelim open pipe `%s' for read+write",pipepathbuf);
1037     assert(fdsetup[fd].mods & (fdm_read|fdm_write));
1038     fdsetup[fd].pipefd=
1039       open(pipepathbuf, (fdsetup[fd].mods & fdm_read) ? O_WRONLY : O_RDONLY);
1040     if (fdsetup[fd].pipefd<0) fsyscallerror("real open pipe `%s'",pipepathbuf);
1041     if (close(tempfd)) fsyscallerror("close prelim fd onto pipe `%s'",pipepathbuf);
1042     priv_suspend();
1043   }
1044 }
1045
1046 static void server_sendrequest(int argc, char *const *argv) {
1047   struct request_msg request_mbuf;
1048   unsigned long ul;
1049   int fd, i;
1050   
1051   memset(&request_mbuf,0,sizeof(request_mbuf));
1052   request_mbuf.magic= REQUEST_MAGIC;
1053   request_mbuf.clientpid= getpid();
1054   request_mbuf.serviceuserlen= strlen(serviceuser);
1055   request_mbuf.servicelen= strlen(argv[0]);
1056   request_mbuf.loginnamelen= strlen(loginname);
1057   request_mbuf.spoofed= spoofuser ? 1 : 0;
1058   request_mbuf.cwdlen= cwdbufsize;
1059   request_mbuf.callinguid= spoofuid;
1060   request_mbuf.ngids= ngids+1;
1061   request_mbuf.nreadfds= 0;
1062   request_mbuf.nwritefds= 0;
1063   for (fd=0; fd<fdsetupsize; fd++) {
1064     if (!fdsetup[fd].filename) continue;
1065     assert(fdsetup[fd].mods & (fdm_write|fdm_read));
1066     if (fdsetup[fd].mods & fdm_write) request_mbuf.nwritefds++;
1067     else request_mbuf.nreadfds++;
1068   }
1069   request_mbuf.nargs= argc-1;
1070   request_mbuf.nvars= defvarused;
1071   request_mbuf.overridelen= ovused;
1072   xfwrite(&request_mbuf,sizeof(request_mbuf),swfile);
1073   xfwrite(serviceuser,sizeof(*serviceuser)*request_mbuf.serviceuserlen,swfile);
1074   xfwrite(argv[0],sizeof(*argv[0])*request_mbuf.servicelen,swfile);
1075   xfwrite(loginname,sizeof(*loginname)*request_mbuf.loginnamelen,swfile);
1076   xfwrite(cwdbuf,sizeof(*cwdbuf)*request_mbuf.cwdlen,swfile);
1077   if (ovused>=0) xfwrite(ovbuf,sizeof(*ovbuf)*ovused,swfile);
1078   xfwrite(&spoofgid,sizeof(gid_t),swfile);
1079   xfwrite(gidarray,sizeof(gid_t)*ngids,swfile);
1080   xfwritefds(fdm_read,request_mbuf.nreadfds,swfile);
1081   xfwritefds(fdm_write,request_mbuf.nwritefds,swfile);
1082   for (i=1; i<argc; i++)
1083     xfwritestring(argv[i],swfile);
1084   for (i=0; i<defvarused; i++) {
1085     xfwritestring(defvararray[i].key,swfile);
1086     xfwritestring(defvararray[i].value,swfile);
1087   }
1088   ul= REQUEST_END_MAGIC; xfwrite(&ul,sizeof(ul),swfile);
1089   xfflush(swfile);
1090 }
1091
1092 static void server_awaitconfirm(void) {
1093   struct progress_msg progress_mbuf;
1094   
1095   getprogress(&progress_mbuf,srfile);
1096   if (progress_mbuf.type != pt_ok)
1097     protoerror("progress message during configuration phase"
1098                " unexpected type %d",progress_mbuf.type);
1099 }
1100
1101 static void prepare_asynchsignals(void) {
1102   static char stderrbuf[BUFSIZ], stdoutbuf[BUFSIZ];
1103   
1104   struct sigaction sig;
1105
1106   if (setvbuf(stderr,stderrbuf,_IOLBF,sizeof(stderrbuf)))
1107     syscallerror("set buffering on stderr");
1108   if (setvbuf(stdout,stdoutbuf,_IOFBF,sizeof(stdoutbuf)))
1109     syscallerror("set buffering on stdout");
1110   
1111   sig.sa_handler= sighandler_chld;
1112   sigemptyset(&sig.sa_mask);
1113   sigaddset(&sig.sa_mask,SIGCHLD);
1114   sigaddset(&sig.sa_mask,SIGALRM);
1115   sig.sa_flags= 0;
1116   if (sigaction(SIGCHLD,&sig,0)) syscallerror("set up sigchld handler");
1117
1118   sig.sa_handler= sighandler_alrm;
1119   if (sigaction(SIGALRM,&sig,0)) syscallerror("set up sigalrm handler");
1120
1121   if (!timeout) return;
1122   if (alarm(timeout)<0) syscallerror("set up timeout alarm");
1123 }
1124
1125 static void catdup(const char *which, int from, int to) {
1126   if (dup2(from,to)<0) {
1127     blocksignals(SIG_BLOCK);
1128     fprintf(stderr,"userv: %s: cannot dup for %s: %s\n",which,
1129             to?"stdout":"stdin", strerror(errno));
1130     exit(-1);
1131   }
1132 }
1133
1134 static void connect_pipes(void) {
1135   struct sigaction sig;
1136   char catnamebuf[sizeof(int)*3+30];
1137   int fd, reading;
1138   pid_t child;
1139   
1140   for (fd=0; fd<fdsetupsize; fd++) {
1141     if (!fdsetup[fd].filename) continue;
1142     if (!(fdsetup[fd].mods & fdm_fd)) {
1143       fdsetup[fd].copyfd=
1144         open(fdsetup[fd].filename,fdsetup[fd].oflags|O_NOCTTY,0777);
1145       if (fdsetup[fd].copyfd<0)
1146         fsyscallerror("open file `%s' for fd %d",fdsetup[fd].filename,fd);
1147     }
1148     blocksignals(SIG_BLOCK);
1149     child= fork();
1150     fdsetup[fd].catpid= child;
1151     blocksignals(SIG_UNBLOCK);
1152     if (child==-1) fsyscallerror("fork for cat for fd %d",fd);
1153     if (!child) {
1154       snprintf(catnamebuf,sizeof(catnamebuf),"cat fd%d",fd);
1155       catnamebuf[sizeof(catnamebuf)-1]= 0;
1156       sig.sa_handler= SIG_DFL;
1157       sigemptyset(&sig.sa_mask);
1158       sig.sa_flags= 0;
1159       if (sigaction(SIGPIPE,&sig,0)) {
1160         fprintf(stderr,"userv: %s: reset sigpipe handler for cat: %s",
1161                 catnamebuf,strerror(errno));
1162         exit(-1);
1163       }
1164       reading= fdsetup[fd].mods & fdm_read;
1165       catdup(catnamebuf, fdsetup[fd].copyfd, reading ? 0 : 1);
1166       catdup(catnamebuf, fdsetup[fd].pipefd, reading ? 1 : 0);
1167       execl("/bin/cat",catnamebuf,(char*)0);
1168       fprintf(stderr,"userv: %s: cannot exec `cat': %s\n",catnamebuf,strerror(errno));
1169       exit(-1);
1170     }
1171     if (fdsetup[fd].copyfd>2)
1172       if (close(fdsetup[fd].copyfd)) fsyscallerror("close real fd for %d",fd);
1173     if (close(fdsetup[fd].pipefd)) fsyscallerror("close pipe fd for %d",fd);
1174   }
1175 }
1176
1177 static void server_sendconfirm(void) {
1178   struct event_msg event_mbuf;
1179
1180   blocksignals(SIG_BLOCK);
1181   memset(&event_mbuf,0,sizeof(event_mbuf));
1182   event_mbuf.magic= EVENT_MAGIC;
1183   event_mbuf.type= et_confirm;
1184   xfwrite(&event_mbuf,sizeof(event_mbuf),swfile);
1185   xfflush(swfile);
1186   blocksignals(SIG_UNBLOCK);
1187 }
1188
1189 static int server_awaitcompletion(void) {
1190   struct progress_msg progress_mbuf;
1191   
1192   getprogress(&progress_mbuf,srfile);
1193   if (progress_mbuf.type != pt_terminated)
1194     protoerror("progress message during execution phase"
1195                " unexpected type %d",progress_mbuf.type);
1196
1197   swfile= 0;
1198   return progress_mbuf.data.terminated.status;
1199 }
1200
1201 static void dispose_remaining_pipes(void) {
1202   sigset_t sset;
1203   int fd, r;
1204
1205   blocksignals(SIG_BLOCK);
1206   for (fd=0; fd<fdsetupsize; fd++) {
1207     if (!(fdsetup[fd].catpid!=-1 && (fdsetup[fd].mods & fdm_close))) continue;
1208     if (kill(fdsetup[fd].catpid,SIGKILL)) fsyscallerror("kill cat for %d",fd);
1209     fdsetup[fd].killed= 1;
1210   }
1211   blocksignals(SIG_UNBLOCK);
1212
1213   for (;;) {
1214     blocksignals(SIG_BLOCK);
1215     for (fd=0;
1216          fd<fdsetupsize && !(fdsetup[fd].catpid!=-1 && (fdsetup[fd].mods & fdm_wait));
1217          fd++);
1218     if (fd>=fdsetupsize) break;
1219     sigemptyset(&sset);
1220     r= sigsuspend(&sset);
1221     if (r && errno != EINTR) syscallerror("sigsuspend failed in unexpected way");
1222     blocksignals(SIG_UNBLOCK);
1223   }
1224 }
1225
1226 static void NONRETURNING process_exitstatus(int status) {
1227   blocksignals(SIG_BLOCK);
1228
1229   if (systemerror) _exit(255);
1230
1231   if (sigpipeok && signalsexit != se_stdout && WIFSIGNALED(status) &&
1232       WTERMSIG(status)==SIGPIPE && !WCOREDUMP(status)) status= 0;
1233   
1234   switch (signalsexit) {
1235   case se_number:
1236   case se_numbernocore:
1237     if (WIFEXITED(status))
1238       _exit(WEXITSTATUS(status));
1239     else if (WIFSIGNALED(status))
1240       _exit(WTERMSIG(status) + (signalsexit==se_number && WCOREDUMP(status) ? 128 : 0));
1241     break;
1242   case se_highbit:
1243     if (WIFEXITED(status))
1244       _exit(WEXITSTATUS(status)<=127 ? WEXITSTATUS(status) : 127);
1245     else if (WIFSIGNALED(status) && WTERMSIG(status)<=126)
1246       _exit(WTERMSIG(status)+128);
1247     break;
1248   case se_stdout:
1249     printf("\n%d %d ",(status>>8)&0x0ff,status&0x0ff);
1250     if (WIFEXITED(status))
1251       printf("exited with code %d",WEXITSTATUS(status));
1252     else if (WIFSIGNALED(status))
1253       printf("killed by %s (signal %d)%s",
1254              strsignal(WTERMSIG(status)),WTERMSIG(status),
1255              WCOREDUMP(status) ? ", core dumped " : "");
1256     else
1257       printf("unknown wait status");
1258     putchar('\n');
1259     if (ferror(stdout) || fflush(stdout)) syscallerror("write exit status to stdout");
1260     _exit(0);
1261   default:
1262     if (WIFEXITED(status))
1263       _exit(WEXITSTATUS(status));
1264     else if (WIFSIGNALED(status))
1265       _exit(signalsexit);
1266     break;
1267   }
1268       
1269   fprintf(stderr,"userv: unknown wait status %d\n",status);
1270   _exit(-1);
1271 }
1272
1273 int main(int argc, char *const *argv) {
1274   int status, socketfd;
1275
1276 #ifdef NDEBUG
1277 # error Do not disable assertions in this security-critical code !
1278 #endif
1279
1280   security_init();
1281   parse_arguments(&argc,&argv);
1282   determine_users();
1283   determine_cwd();
1284   process_override(argv[0]);
1285
1286   socketfd= server_connect();
1287   priv_suspend();
1288   server_handshake(socketfd);
1289   server_preparepipes();
1290   server_sendrequest(argc,argv);
1291
1292   priv_permanentlyrevokesuspended();
1293   
1294   server_awaitconfirm();
1295   prepare_asynchsignals();
1296   connect_pipes();
1297   server_sendconfirm();
1298   status= server_awaitcompletion();
1299   
1300   dispose_remaining_pipes();
1301   process_exitstatus(status);
1302 }