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.18 1996/02/12 10:09:23 adam
45 * New parameter to wproto_init: directory root for the FIFOs (instead
46 * of using preprocessor defines FIFODIR/FIFOROOT).
48 * Revision 1.17 1996/01/26 09:02:22 adam
49 * Open of client FIFO called with O_NDELAY when reconnecting to shell
50 * in order to prevent serious lock if previous shell died without
51 * unlinking client FIFO.
53 * Revision 1.16 1996/01/24 10:13:56 adam
54 * Bug fix: in function wo_write realloc is used only when memory is already
55 * allocated with malloc.
57 * Revision 1.15 1996/01/24 08:25:32 adam
58 * Buf fix: Uninitialized outbuffer_offset member.
60 * Revision 1.14 1996/01/12 13:08:07 adam
61 * CGI script passes name of lock file to the shell. The server will not close
62 * the response FIFO until this file becomes unlocked. This method handles
63 * cancel operations much better.
65 * Revision 1.13 1996/01/12 10:05:20 adam
66 * If script name ends with ';' HTTP/GET/Expires will be defined.
67 * The cgi interface only reads final handshake if response from
68 * server (shell) was zero-terminated [If it isn't it probably died].
70 * Revision 1.12 1996/01/05 16:35:02 adam
73 * Revision 1.11 1996/01/05 16:21:21 adam
74 * Bug fix: shell (wproto) sometimes closed server FIFO before cgi
75 * program opened it - solution: cgi sends OK when response has been read.
77 * Revision 1.10 1995/12/22 14:21:16 adam
78 * More work on scan. The search.egw script takes care of cached
79 * query page (doesn't always increment nextSetNo). To make new search set
80 * either 'New query' must be selected or the query page must be reloaded.
81 * The msearch script doesn't do this yet, however.
83 * Revision 1.9 1995/11/14 16:31:36 adam
84 * Temporary remove of ccl entry.
86 * Revision 1.8 1995/11/13 15:41:45 adam
88 * Gateway uses record element set names B(rief) and F(ull).
89 * Bug fix. Didn't save idAuthentication correctly.
91 * Revision 1.7 1995/11/10 14:47:32 adam
92 * Plus (+) characters automatically converted to space in forms.
93 * Work on search in multiple targets. Doesn't work well - yet.
94 * Presentation formats enhanced.
96 * Revision 1.6 1995/11/06 10:51:17 adam
97 * End of response marker in response from wsh/wproto to wcgi.
98 * Shells are respawned when necessary.
100 * Revision 1.5 1995/11/02 16:35:37 adam
101 * Bug fixes and select on FIFOs in wcgi - doesn't really work!
103 * Revision 1.4 1995/10/31 16:56:25 adam
104 * Record presentation.
106 * Revision 1.3 1995/10/27 15:12:10 adam
107 * IrTcl incorporated in the gateway.
108 * Better separation of script types.
109 * Z39.50 gateway scripts entered.
111 * Revision 1.2 1995/10/23 16:55:39 adam
112 * A lot of changes - really.
114 * Revision 1.1 1995/10/20 11:49:26 adam
115 * First version of www gateway.
122 #include <sys/time.h>
123 #include <sys/types.h>
124 #include <sys/stat.h>
133 static int wproto_dumpcache(WCLIENT wc, int level);
134 static int wproto_findcache(WCLIENT wc, char *name);
135 static void wproto_uncache(WCLIENT wc, int level);
137 static char *mod = "wproto";
139 void wo_write (WCLIENT wc, const char *s, size_t len)
141 if (wc->outbuffer_offset + len >= wc->outbuffer_size)
144 wc->outbuffer = malloc (wc->outbuffer_size +=
145 ((len >= OUTBUFFER_CHUNK) ? len*2 : OUTBUFFER_CHUNK));
147 wc->outbuffer = realloc(wc->outbuffer, wc->outbuffer_size +=
148 ((len >= OUTBUFFER_CHUNK) ? len*2 : OUTBUFFER_CHUNK));
150 memcpy(wc->outbuffer + wc->outbuffer_offset, s, len);
151 wc->outbuffer_offset += len;
154 void wo_puts (WCLIENT wc, const char *s)
156 wo_write (wc, s, strlen(s));
159 void wo_printf (WCLIENT wc, const char *fmt, ...)
165 vsprintf(tmpbuf, fmt, ap);
170 void wo_clear (WCLIENT wc, const char *type)
172 wc->outbuffer_offset = 0;
174 wo_printf(wc, "Content-type: %s\n\n", type);
177 int wo_puthtml (WCLIENT wc, char *name)
182 wo_clear(wc, "text/html");
183 if (!(f = fopen(name, "r")))
185 wo_printf(wc, "<BR>Failed to open file: %s<BR>", name);
188 while (ch = getc(f), !feof(f))
190 if (wo_putc(wc, ch) < 0)
200 int wo_flush(WCLIENT wc)
204 if (!(wc->outbuffer_offset))
206 towrite = wc->outbuffer_offset;
207 wc->outbuffer_offset = 0;
213 wrote = write(wc->lineout, wc->outbuffer + wc->outbuffer_offset,
217 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "write response");
220 gw_log (GW_LOG_DEBUG, mod, "wrote %d bytes", wrote);
221 if (wc->cache_fd >= 0)
222 if (write(wc->cache_fd, wc->outbuffer + wc->outbuffer_offset,
225 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "write cache");
231 wc->outbuffer_offset += wrote;
233 wc->outbuffer_offset = 0;
237 int wo_overflow(WCLIENT wc, char ch)
239 gw_log (GW_LOG_DEBUG, mod, "wo_overflow");
240 if (wo_flush(wc) < 0)
242 return wo_putc(wc, ch);
245 int wo_finish(WCLIENT wc)
248 gw_log (GW_LOG_DEBUG, mod, "wo_finish");
251 if (wo_flush(wc) < 0)
254 fd = open (wc->wf_serverf, O_RDONLY);
258 area.l_type = F_RDLCK;
259 area.l_whence = SEEK_SET;
262 fcntl (fd, F_SETLKW, &area);
267 if (wc->cache_fd >= 0)
275 static void descramble(char *t, const char *o)
281 if (*o == '%' && isxdigit(*(o + 1)) && isxdigit(*(o + 2)))
283 sscanf(o + 1, "%2x", &v);
304 static void decode_form(wform_data *form, char *buf)
312 for (p = form[i].name; *buf && *buf != '='; buf++)
317 for (p = tmp; *buf && *buf != '&'; buf++)
320 descramble(form[i].value, tmp);
325 *form[i].name = '\0';
328 char *wgetval(WCLIENT wc, char *name)
332 for (i = 0; *wc->wf_data[i].name; i++)
333 if (!strcmp(name, wc->wf_data[i].name))
334 return wc->wf_data[i].value;
338 int wproto_process(WCLIENT wc, int timeout)
340 int toread, rs, level;
341 char combuf[COMBUF], *p,*t;
343 struct timeval to, *top;
347 gw_log (GW_LOG_DEBUG, mod, "process waiting for input.");
357 FD_SET(wc->linein, &input);
358 /* go through select handle list */
359 while ((rs = select(wc->linein + 1, &input, 0, 0, top)) < 0 &&
364 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "select");
369 gw_log (GW_LOG_STAT, mod,
370 "select %d second timeout.",
372 unlink (wc->wf_serverp);
375 if (read(wc->linein, &toread, sizeof(toread)) < sizeof(toread))
377 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "wp_proc:len read failed");
380 toread -= sizeof(toread);
381 if (read(wc->linein, combuf, toread) < toread)
383 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "wp_proc: data read failed");
387 for (t = wc->wf_serverp; (*t = *p); t++, p++);
389 for (t = wc->wf_serverf; (*t = *p); t++, p++);
391 for (t = wc->wf_parms; (*t = *p); t++, p++);
393 p++; /* we don't deal with envvars yet */
394 decode_form(wc->wf_data, p);
397 gw_log (GW_LOG_DEBUG, mod, "open %s", wc->wf_serverp);
398 if ((wc->lineout = open(wc->wf_serverp, O_WRONLY)) < 0)
400 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "open %s",
405 /* look in cache only if request carries no forms data. */
406 if (!*wc->wf_data[0].name && (level = wproto_findcache(wc,
409 gw_log (GW_LOG_DEBUG, mod, "wproto_dumpcache");
410 wproto_dumpcache(wc, level);
421 WCLIENT wproto_init (const char *fifoDir)
423 char *val, path2[256];
426 gw_log (GW_LOG_DEBUG, mod, "wproto_init");
427 close(1); /* release us from the wserver */
428 if (!(new = malloc(sizeof(*new))))
430 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "malloc");
433 if (!(val = getenv ("GWID")))
435 gw_log (GW_LOG_FATAL, mod, "GWID not set");
438 new->fifoDir = fifoDir;
439 new->id = atoi (val);
440 sprintf(new->path, "%s/clt%d", new->fifoDir, new->id);
441 if (mkfifo(new->path, 0666 | S_IFIFO) < 0)
442 gw_log (GW_LOG_WARN|GW_LOG_ERRNO, mod, "mkfifo(%s)", new->path);
443 gw_log (GW_LOG_DEBUG, mod, "Synchronizing with server.");
444 sprintf(path2, "%s/srv%d", new->fifoDir, getppid());
445 if ((new->lineout = open(path2, O_WRONLY)) < 0)
447 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "open out %s", path2);
450 if (write(new->lineout, "OK", 2) < 2)
452 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "write");
455 gw_log (GW_LOG_DEBUG, mod, "Synchronized.");
456 if ((new->linein = open(new->path, O_RDONLY)) < 0)
458 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "open input %s", new->path);
461 gw_log (GW_LOG_DEBUG, mod, "init. linein=%d lineout=%d",
462 new->linein, new->lineout);
463 /* we put a handle on this so we get a blocking read when no peer */
464 if (open(new->path, O_WRONLY | O_NDELAY) < 0)
466 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "open dummy %s", new->path);
470 new->outbuffer_size = 0;
471 new->outbuffer_offset = 0;
472 new->cache_level = -1;
477 static void wproto_uncache(WCLIENT wc, int level)
479 for (;wc->cache_level >= level; wc->cache_level--)
480 unlink(wc->cache[wc->cache_level].path);
483 void wproto_terminate(WCLIENT wc)
487 wproto_uncache(wc, 0);
491 int wproto_cache(WCLIENT wc, int level)
495 if (level > wc->cache_level + 1)
497 gw_log (GW_LOG_FATAL, mod, "Illegal cache level increment.");
500 wproto_uncache(wc, level);
501 p = &wc->cache[++wc->cache_level];
502 sprintf(p->path, "%s/csh%d.%d", wc->fifoDir, wc->id, level);
503 if ((wc->cache_fd = open(p->path, O_WRONLY|O_CREAT|O_TRUNC, 0600)) < 0)
505 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "open %s", p->path);
508 strcpy(p->name, wc->wf_parms);
512 static int wproto_findcache(WCLIENT wc, char *name)
516 for (i = 0; i <= wc->cache_level; i++)
517 if (!strcmp(wc->cache[i].name, name))
522 static int wproto_dumpcache(WCLIENT wc, int level)
526 gw_log (GW_LOG_STAT, mod, "Using Cache: %s", wc->cache[level].name);
527 if ((fd = open(wc->cache[level].path, O_RDONLY)) < 0)
529 gw_log (GW_LOG_FATAL, mod, "open (R) %s", wc->cache[level].path);
532 while ((rd = read(fd, wc->outbuffer, OUTBUFFER_CHUNK)) > 0)
533 if (write(wc->lineout, wc->outbuffer, rd) < rd)
535 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "write toline");
540 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "read");
543 wproto_uncache(wc, level + 1);