X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=servexec.c;h=c1614f0d9952aeacf71f763b6094658cbfb5b579;hb=78032a78185e751a0bf0b77863f23d005359205f;hp=abd36089ad5296b8c1692a2a413418d6f5c88618;hpb=464d71c37246e556de9ec05f7b97af834a5224ee;p=userv.git diff --git a/servexec.c b/servexec.c index abd3608..c1614f0 100644 --- a/servexec.c +++ b/servexec.c @@ -2,7 +2,7 @@ * userv - execserv.c * daemon code which executes actual service (ie child process) * - * Copyright (C)1996-1997 Ian Jackson + * Copyright (C)1996-1997,1999 Ian Jackson * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by @@ -23,6 +23,7 @@ #include #include #include +#include #include #include #include @@ -61,48 +62,53 @@ void bisexec_version(const char *const *argv) { const unsigned char *p; int i; - printf("uservd version " VERSION "; copyright (C)1996-1997 Ian Jackson.\n" + printf("uservd version " VERSION VEREXT "; copyright (C)1996-1997 Ian Jackson.\n" #ifdef DEBUG "DEBUGGING VERSION" #else "production version" #endif " - protocol magic number %08lx\n" - "protocol checksum:", - BASE_MAGIC); + "maximums: fd %-10d general string %d\n" + " gids %-10d override length %d\n" + " args or variables %-10d error message %d\n" + " nested inclusion %-10d errno string reserve %d\n" + "protocol checksum: ", + BASE_MAGIC, + MAX_ALLOW_FD, MAX_GENERAL_STRING, + MAX_GIDS, MAX_OVERRIDE_LEN, + MAX_ARGSDEFVAR, MAX_ERRMSG_LEN, + MAX_INCLUDE_NEST, ERRMSG_RESERVE_ERRNO); for (i=0, p=protocolchecksumversion; i0) { putchar(' '); nspaces--; } putchar(c); + lnl= 0; + break; } } - assert(*--string == '\n'); + assert(lnl); serv_checkstdoutexit(); } @@ -132,13 +138,13 @@ static void serv_resetsignal(int signo) { if (sigaction(signo,&sig,0)) serv_syscallfail("reset signal handler"); } -static const char *see_logname(void) { return serviceuser; } +static const char *see_loginname(void) { return serviceuser; } static const char *see_home(void) { return serviceuser_dir; } static const char *see_shell(void) { return serviceuser_shell; } static const char *see_service(void) { return service; } static const char *see_c_cwd(void) { return cwd; } -static const char *see_c_logname(void) { return logname; } +static const char *see_c_loginname(void) { return loginname; } static const char *see_c_uid(void) { static char buf[CHAR_BIT*sizeof(uid_t)/3+4]; snyprintf(buf,sizeof(buf),"%lu",(unsigned long)request_mbuf.callinguid); @@ -178,18 +184,18 @@ static const struct serv_envinfo { const char *name; const char *(*fn)(void); } serv_envinfos[]= { - { "USER", see_logname }, - { "LOGNAME", see_logname }, - { "HOME", see_home }, - { "SHELL", see_shell }, - { "PATH", defaultpath }, - { "USERV_SERVICE", see_service }, - { "USERV_CWD", see_c_cwd }, - { "USERV_USER", see_c_logname }, - { "USERV_UID", see_c_uid }, - { "USERV_GROUP", see_c_group }, - { "USERV_GID", see_c_gid }, - { 0 } + { "USER", see_loginname }, + { "LOGNAME", see_loginname }, + { "HOME", see_home }, + { "SHELL", see_shell }, + { "PATH", defaultpath }, + { "USERV_SERVICE", see_service }, + { "USERV_CWD", see_c_cwd }, + { "USERV_USER", see_c_loginname }, + { "USERV_UID", see_c_uid }, + { "USERV_GROUP", see_c_group }, + { "USERV_GID", see_c_gid }, + { 0 } }; void execservice(const int synchsocket[], int clientfd) {