2 * Copyright (c) 1995, the EUROPAGATE consortium (see below).
4 * The EUROPAGATE consortium members are:
6 * University College Dublin
7 * Danmarks Teknologiske Videnscenter
8 * An Chomhairle Leabharlanna
9 * Consejo Superior de Investigaciones Cientificas
11 * Permission to use, copy, modify, distribute, and sell this software and
12 * its documentation, in whole or in part, for any purpose, is hereby granted,
15 * 1. This copyright and permission notice appear in all copies of the
16 * software and its documentation. Notices of copyright or attribution
17 * which appear at the beginning of any file must remain unchanged.
19 * 2. The names of EUROPAGATE or the project partners may not be used to
20 * endorse or promote products derived from this software without specific
21 * prior written permission.
23 * 3. Users of this software (implementors and gateway operators) agree to
24 * inform the EUROPAGATE consortium of their use of the software. This
25 * information will be used to evaluate the EUROPAGATE project and the
26 * software, and to plan further developments. The consortium may use
27 * the information in later publications.
29 * 4. Users of this software agree to make their best efforts, when
30 * documenting their use of the software, to acknowledge the EUROPAGATE
31 * consortium, and the role played by the software in their work.
33 * THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTY OF ANY KIND,
34 * EXPRESS, IMPLIED, OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
35 * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
36 * IN NO EVENT SHALL THE EUROPAGATE CONSORTIUM OR ITS MEMBERS BE LIABLE
37 * FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF
38 * ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA
39 * OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND
40 * ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
41 * USE OR PERFORMANCE OF THIS SOFTWARE.
44 * Revision 1.8 1995/11/08 16:14:35 adam
45 * Many improvements and bug fixes.
46 * First version that ran on dtbsun.
48 * Revision 1.7 1995/11/08 12:42:18 adam
49 * Added descriptive text field in target info.
50 * Added authentication field in target info.
52 * Revision 1.6 1995/11/06 17:44:22 adam
53 * State reestablised when shell restarts. History of previous
56 * Revision 1.5 1995/11/06 10:51:15 adam
57 * End of response marker in response from wsh/wproto to wcgi.
58 * Shells are respawned when necessary.
60 * Revision 1.4 1995/11/02 16:35:37 adam
61 * Bug fixes and select on FIFOs in wcgi - doesn't really work!
63 * Revision 1.3 1995/10/31 16:56:24 adam
64 * Record presentation.
66 * Revision 1.2 1995/10/23 16:55:36 adam
67 * A lot of changes - really.
69 * Revision 1.1 1995/10/20 11:49:25 adam
70 * First version of www gateway.
80 #include <sys/types.h>
82 #include <sys/select.h>
85 #define DEADSTRING "Your database server has terminated. To reactivate \
86 the server, please reload the server's 'front page'."
91 #define CGIDIR "/usr/local/etc/httpd/cgi-bin"
93 static char *prog = "cgi";
95 static char serverp[256] = {'\0'};
96 static GW_DB gw_db = NULL;
98 static void fatal(char *p)
100 printf("Content-type: text/html\n\n<HTML><HEAD><TITLE>Server Failure</TITLE></HEAD>\n");
101 printf("<BODY>%s</BODY>\n", p);
109 static int spawn (char *sprog, int id)
115 sprintf (envstr, "GWID=%d", id);
117 sprintf(path, "%s/%s", CGIDIR, sprog);
121 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, prog, "fork");
127 gw_log (GW_LOG_DEBUG, prog, "execl %s", path);
128 execl (path, sprog, 0);
129 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, prog, "execl %s", path);
137 * NOTE: In the (perhaps odd) terminology used within this software,
138 * the 'server' is the present program, which is executed by the httpd
139 * server. The 'client' is the process running outside.
140 * Protocol is long(len)<serverfifo>\0<extrapath>\0<envvars>\0<INFO>\0
144 char clientp[256], tmp[256], *path_info, *p, *operation, *t;
146 int linein = -1, lineout, data, gw_id;
148 chdir ("/usr/local/etc/httpd/cgi-bin");
150 gw_log_file (GW_LOG_ALL, "/usr/local/etc/httpd/logs/egwcgi_log");
151 gw_log_level (GW_LOG_ALL);
152 gw_log (GW_LOG_STAT, prog, "Europagate www cgi server");
154 sprintf(tmp, "%s/%s", FIFOROOT, FIFODIR);
155 if (access(tmp, R_OK|W_OK) < 0 && mkdir(tmp, 0777) < 0)
157 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, prog, "Failed to create %s", tmp);
158 fatal("Internal error in server.");
160 sprintf(serverp, "%s/srv%d", tmp, getpid());
161 if (access(serverp, R_OK|W_OK) == 0)
163 if (unlink(serverp) < 0)
165 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, prog,
166 "Failed to delete stale fifo.");
167 fatal("Internal error in server.");
170 gw_log (GW_LOG_WARN, prog, "Removed stale server fifo.");
172 if (mkfifo(serverp, 0666 | S_IFIFO) < 0)
174 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, prog, "mkfifo(%s)", serverp);
175 fatal("Internal error in server.");
177 if (!(path_info = getenv("PATH_INFO")))
179 gw_log (GW_LOG_FATAL, prog, "Must set PATH_INFO.");
180 fatal("Internal error in server.");
182 operation = ++path_info;
183 while (*path_info && *path_info != '/')
186 *(path_info++) = '\0';
187 if (!(gw_db = gw_db_open ("user.db", 1)))
189 gw_log (GW_LOG_FATAL, prog, "gw_db_open");
192 if ((gw_id = atoi(operation)) <= 0)
197 gw_id = gw_db_seq_no (gw_db);
198 sprintf (gw_id_str, "%d", gw_id);
200 spawn(operation, gw_id);
201 r = gw_db_insert (gw_db, gw_id_str, strlen(gw_id_str)+1,
202 operation, strlen(operation)+1);
205 gw_log (GW_LOG_FATAL, prog, "gw_db_insert: %d", r);
209 gw_log (GW_LOG_DEBUG, prog, "Synchronizing with client");
210 if ((linein = open(serverp, O_RDONLY)) < 0)
212 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, prog, "open %s", serverp);
213 fatal("Internal error in server.");
215 if (read(linein, combuf, 2) < 2 || strcmp(combuf, "OK"))
217 gw_log (GW_LOG_FATAL, prog, "Failed to synchronize with client");
218 fatal("Internal error in server");
220 gw_log (GW_LOG_DEBUG, prog, "Synchronized");
222 sprintf(clientp, "%s/clt%d", tmp, gw_id);
223 gw_log (GW_LOG_DEBUG, prog, "Opening %s", clientp);
224 if ((lineout = open(clientp, O_WRONLY)) < 0)
231 sprintf (gw_id_str, "%d", gw_id);
232 r = gw_db_lookup (gw_db, gw_id_str, strlen(gw_id_str)+1,
233 &sprog, &sprog_size);
236 gw_log (GW_LOG_FATAL, prog, "gw_db_lookup %s", gw_id_str);
237 fatal("Internal error in server");
239 gw_log (GW_LOG_DEBUG|GW_LOG_ERRNO, prog, "open %s restart", clientp);
240 spawn (sprog, gw_id);
241 gw_log (GW_LOG_DEBUG, prog, "Synchronizing with client");
242 if ((linein = open(serverp, O_RDONLY)) < 0)
244 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, prog, "open %s", serverp);
245 fatal("Internal error in server");
247 if (read(linein, combuf, 2) < 2 || strcmp(combuf, "OK"))
249 gw_log (GW_LOG_FATAL, prog, "Failed to synchronize with client.");
250 fatal("Internal error in server");
252 gw_log (GW_LOG_DEBUG, prog, "Synchronized.");
253 if ((lineout = open(clientp, O_WRONLY)) < 0)
255 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, prog, "%s", clientp);
256 fatal("Internal error in server");
260 gw_log (GW_LOG_DEBUG, prog, "Decoding user data");
261 p = combuf + sizeof(data);
264 strcpy(p, path_info);
266 *(p++) = '\0'; /* no envvars tranferred at present */
267 if ((t = getenv("CONTENT_LENGTH")) && (data = atoi(t)) > 0)
272 j = read(0, p + i, data - i);
275 gw_log (GW_LOG_ERRNO|GW_LOG_FATAL, prog,
276 "Failed to read input");
277 fatal("Internal error in server");
281 gw_log (GW_LOG_ERRNO, prog, "Failed to read input");
282 fatal("Internal error in server");
290 memcpy(combuf, &data, sizeof(data));
291 gw_log (GW_LOG_DEBUG, prog, "Writing data");
292 if (write(lineout, combuf, data) < data)
294 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, prog, "write");
295 fatal("Internal server error");
297 if (linein < 0 && (linein = open(serverp, O_RDONLY)) < 0)
299 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, prog, "open %s", serverp);
300 fatal("Internal error in server");
302 gw_log (GW_LOG_DEBUG, prog, "Reading response");
305 while ((data = read(linein, combuf, COMBUF)) > 0)
307 gw_log (GW_LOG_DEBUG, prog, "Got %d bytes", data);
308 if (write(1, combuf, data) < data)
310 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, prog, "write");
316 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, prog, "read");
321 fcntl (linein, F_SETFL, O_NONBLOCK);
332 FD_SET(linein, &s_input);
336 gw_log (GW_LOG_DEBUG, prog, "select");
337 r = select (linein + 1, &s_input, NULL, NULL, &t);
340 gw_log (GW_LOG_ERRNO|GW_LOG_FATAL, prog, "select");
343 if (r == 0 || FD_ISSET (linein, &s_input))
346 gw_log (GW_LOG_DEBUG, prog, "poll");
347 if ((data = read (linein, combuf, COMBUF)) > 0)
349 if (combuf[data-1] == '\0')
354 gw_log (GW_LOG_DEBUG, prog, "Got %d bytes", data);
355 if (data > 0 && write(1, combuf, data) < data)
357 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, prog, "write");
365 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, prog, "read");
368 gw_log (GW_LOG_DEBUG, prog, "poll read");
375 if (r > 0 && FD_ISSET (1, &s_input))
377 data = read (1, combuf, COMBUF);
380 gw_log (GW_LOG_DEBUG|GW_LOG_ERRNO, prog, "stdout closed");
385 gw_log (GW_LOG_DEBUG, prog, "stdout closed");
388 gw_log (GW_LOG_DEBUG, prog, "stdout got %d bytes", data);
392 gw_log (GW_LOG_DEBUG, prog, "Cleaning up.");