2b6a22293916d624c2ee9c8a819cd1f61390991a
[userv-utils] / 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 }
139
140 filter_environment(0, "USERV_U_E_", envok, default_envok, setenvar, 0);
141
142 scriptpath= 0;
143 pathi= getenv("PATH_INFO");
144 if (!pathi) error("PATH_INFO not found");
145 lastslash= pathi;
146 D( if (debugmode) {
147 printf(";; find script name...\n"
148 ";; PATH_INFO = `%s'\n",
149 pathi);
150 } )
151 for (;;) {
152 if (*lastslash != '/') error("PATH_INFO expected slash not found");
153 if (lastslash[1]=='.' || lastslash[1]=='#' || !lastslash[1]) error("bad char begin");
154 nextslash= strchr(lastslash+1,'/');
155 if (!nextslash) nextslash= lastslash+1+strlen(lastslash+1);
156 if (!nextslash) error("insufficient elements in PATH_INFO");
157 if (nextslash==lastslash+1) error("empty component in PATH_INFO");
158 if (nextslash-pathi > MAX_SCRIPTPATH_LEN) error("PATH_INFO script path too long");
159 scriptpathlen= scriptdirlen+(nextslash-pathi);
160 scriptpath= xrealloc(scriptpath,scriptpathlen+1);
161 strcpy(scriptpath,scriptdir);
162 memcpy(scriptpath+scriptdirlen,pathi,nextslash-pathi);
163 scriptpath[scriptpathlen]= 0;
164 if (scriptpath[scriptpathlen-1]=='~') error("bad char end");
165 D( if (debugmode) printf(";; try `%s'\n", scriptpath); )
166 r= stat(scriptpath,&stab); if (r) syserror("stat script");
167 if (S_ISREG(stab.st_mode)) break;
168 if (!S_ISDIR(stab.st_mode)) error("script not directory or file");
169 lastslash= nextslash;
170 }
171 D( if (debugmode) printf(";; found script: tail = `%s'\n", nextslash); )
172 if (*nextslash) xsetenv("PATH_INFO",nextslash,1);
173 else unsetenv("PATH_INFO");
174
175 newvar= xmalloc(scriptpathlen+strlen(nextslash)+3);
176 sprintf(newvar,"%s%s",scriptpath,nextslash);
177 xsetenv("PATH_TRANSLATED",newvar,1);
178
179 xsetenv("SCRIPT_FILENAME",scriptpath,1);
180
181 ev= getenv("SCRIPT_NAME");
182 if (ev) {
183 ev2= getenv("USER"); if (!ev2) error("no USER variable");
184 newvar= xmalloc(strlen(ev)+2+strlen(ev2)+scriptpathlen-scriptdirlen+2);
185 sprintf(newvar,"%s/~%s%s",ev,ev2,scriptpath+scriptdirlen);
186 xsetenv("SCRIPT_NAME",newvar,1);
187 }
188
189 arguments= xmalloc(sizeof(const char*)*(argc+5));
190 nargs= 0;
191
192 arguments[nargs++]= scriptpath;
193 while ((av= (*++argv))) arguments[nargs++]= av;
194 arguments[nargs++]= 0;
195
196 D( if (debugmode) {
197 int i;
198
199 printf(";; final environment...\n");
200 for (i = 0; environ[i]; i++)
201 printf(";; %s\n", environ[i]);
202
203 printf(";; final command line...\n");
204 for (i = 0; arguments[i]; i++)
205 printf(";; %s\n", arguments[i]);
206 fflush(stdout);
207 } )
208
209 execvp(scriptpath,(char*const*)arguments);
210 syserror("exec script");
211 return -1;
212 }