chiark / gitweb /
www-cgi/ucgicommon.c: Split matching out from `filter_environment'.
[userv-utils.git] / www-cgi / ucgitarget.c
1 /*
2  * Usage: as CGI script, but called by userv
3  * environment variables are USERV_U_E_...
4  */
5 /*
6  * Copyright (C) 1998-1999,2003 Ian Jackson
7  *
8  * This is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with userv-utils; if not, write to the Free Software
20  * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21  *
22  * $Id$
23  */
24
25 #include <stdio.h>
26 #include <string.h>
27 #include <ctype.h>
28 #include <getopt.h>
29 #include <unistd.h>
30 #include <sys/types.h>
31 #include <sys/wait.h>
32 #include <sys/stat.h>
33
34 #include "ucgi.h"
35
36 static const char *const default_envok[]= {
37   "AUTH_TYPE",
38   "CONTENT_LENGTH",
39   "CONTENT_TYPE",
40   "DOCUMENT_ROOT",
41   "GATEWAY_INTERFACE",
42   "HTTP_ACCEPT",
43   "HTTP_ACCEPT_CHARSET",
44   "HTTP_ACCEPT_ENCODING",
45   "HTTP_ACCEPT_LANGUAGE",
46   "HTTP_CACHE_CONTROL",
47   "HTTP_CONNECTION",
48   "HTTP_CONTENT_ENCODING",
49   "HTTP_COOKIE",
50   "HTTP_DNT",
51   "HTTP_HOST",
52   "HTTP_KEEP_ALIVE",
53   "HTTP_NEGOTIATE",
54   "HTTP_PRAGMA",
55   "HTTP_REFERER",
56   "HTTP_USER_AGENT",
57   "HTTP_VIA",
58   "HTTP_X_FORWARDED_FOR",
59   "HTTPS",
60   "PATH_INFO",
61   "PATH_TRANSLATED",
62   "QUERY_STRING",
63   "REDIRECT_HANDLER",
64   "REDIRECT_SCRIPT_URI",
65   "REDIRECT_SCRIPT_URL",
66   "REDIRECT_STATUS",
67   "REDIRECT_URL",
68   "REMOTE_ADDR",
69   "REMOTE_HOST",
70   "REMOTE_USER",
71   "REMOTE_IDENT",
72   "REQUEST_METHOD",
73   "REQUEST_URI",
74   "SCRIPT_FILENAME",
75   "SCRIPT_NAME",
76   "SCRIPT_URI",
77   "SCRIPT_URL",
78   "SERVER_ADDR",
79   "SERVER_ADMIN",
80   "SERVER_NAME",
81   "SERVER_PORT",
82   "SERVER_PROTOCOL",
83   "SERVER_SIGNATURE",
84   "SERVER_SOFTWARE",
85   "SSL_CIPHER",
86   "SSL_CLIENT_S_DN",
87   "SSL_CLIENT_VERIFY",
88   "SSL_PROTOCOL",
89   0
90 };
91
92 static void setenvar(const char *fulln,
93                      const char *en, const char *ep, void *p) {
94   xsetenv(en, ep, 1);
95   unsetenv(fulln);
96 }
97
98 int main(int argc, char **argv) {
99   char *scriptpath, *newvar;
100   const char *nextslash, *lastslash, *pathi, *ev, *ev2, *scriptdir, *av;
101   const char *const *envok;
102   const char **arguments;
103   size_t scriptdirlen, scriptpathlen, l;
104   struct stat stab;
105   int i, r, nargs;
106   const char *filters= 0;
107
108   ev= getenv("USERV_U_DEBUG");
109   if (ev && *ev) debugmode= 1;
110   
111   D( if (debugmode) printf(";;; UCGITARGET\n"); )
112   if (argc > MAX_ARGS) error("too many arguments");
113
114   for (;;) {
115     i= getopt(argc, argv, "+e:"); if (i < 0) break;
116     switch (i) {
117     case 'e': filters= optarg; break;
118     default: error("bad command line"); break;
119     }
120   }
121   argc -= optind; argv += optind;
122
123   if (!*argv) error("no script directory argument");
124   ev= getenv("HOME"); if (!ev) error("no HOME env. var");
125   l= strlen(*argv)+strlen(ev);
126   newvar= xmalloc(l+2);
127   sprintf(newvar,"%s/%s",ev,*argv);
128   scriptdir= newvar;
129   scriptdirlen= strlen(scriptdir);
130
131   if (filters)
132     envok= load_filters(LOADF_MUST, filters, LF_END);
133   else {
134     envok= load_filters(0,
135                         ".userv/ucgitarget.env-filter",
136                         "/etc/userv/ucgitarget.env-filter",
137                         LF_END);
138     if (!envok) envok= default_envok;
139   }
140
141   filter_environment(0, "USERV_U_E_", envok, setenvar, 0);
142
143   scriptpath= 0;
144   pathi= getenv("PATH_INFO");
145   if (!pathi) error("PATH_INFO not found");
146   lastslash= pathi;
147   D( if (debugmode) {
148        printf(";; find script name...\n"
149               ";;   PATH_INFO = `%s'\n",
150               pathi);
151   } )
152   for (;;) {
153     if (*lastslash != '/') error("PATH_INFO expected slash not found");
154     if (lastslash[1]=='.' || lastslash[1]=='#' || !lastslash[1]) error("bad char begin");
155     nextslash= strchr(lastslash+1,'/');
156     if (!nextslash) nextslash= lastslash+1+strlen(lastslash+1);
157     if (!nextslash) error("insufficient elements in PATH_INFO");
158     if (nextslash==lastslash+1) error("empty component in PATH_INFO");
159     if (nextslash-pathi > MAX_SCRIPTPATH_LEN) error("PATH_INFO script path too long");
160     scriptpathlen= scriptdirlen+(nextslash-pathi);
161     scriptpath= xrealloc(scriptpath,scriptpathlen+1);
162     strcpy(scriptpath,scriptdir);
163     memcpy(scriptpath+scriptdirlen,pathi,nextslash-pathi);
164     scriptpath[scriptpathlen]= 0;
165     if (scriptpath[scriptpathlen-1]=='~') error("bad char end");
166     D( if (debugmode) printf(";;   try `%s'\n", scriptpath); )
167     r= stat(scriptpath,&stab); if (r) syserror("stat script");
168     if (S_ISREG(stab.st_mode)) break;
169     if (!S_ISDIR(stab.st_mode)) error("script not directory or file");
170     lastslash= nextslash;
171   }
172   D( if (debugmode) printf(";;   found script: tail = `%s'\n", nextslash); )
173   if (*nextslash) xsetenv("PATH_INFO",nextslash,1);
174   else unsetenv("PATH_INFO");
175
176   newvar= xmalloc(scriptpathlen+strlen(nextslash)+3);
177   sprintf(newvar,"%s%s",scriptpath,nextslash);
178   xsetenv("PATH_TRANSLATED",newvar,1);
179
180   xsetenv("SCRIPT_FILENAME",scriptpath,1);
181
182   ev= getenv("SCRIPT_NAME");
183   if (ev) {
184     ev2= getenv("USER"); if (!ev2) error("no USER variable");
185     newvar= xmalloc(strlen(ev)+2+strlen(ev2)+scriptpathlen-scriptdirlen+2);
186     sprintf(newvar,"%s/~%s%s",ev,ev2,scriptpath+scriptdirlen);
187     xsetenv("SCRIPT_NAME",newvar,1);
188   }
189
190   arguments= xmalloc(sizeof(const char*)*(argc+5));
191   nargs= 0;
192   
193   arguments[nargs++]= scriptpath;
194   while ((av= (*++argv))) arguments[nargs++]= av;
195   arguments[nargs++]= 0;
196
197   D( if (debugmode) {
198        int i;
199
200        printf(";; final environment...\n");
201        for (i = 0; environ[i]; i++)
202          printf(";;   %s\n", environ[i]);
203
204        printf(";; final command line...\n");
205        for (i = 0; arguments[i]; i++)
206          printf(";;   %s\n", arguments[i]);
207        fflush(stdout);
208   } )
209
210   execvp(scriptpath,(char*const*)arguments);
211   syserror("exec script");
212   return -1;
213 }