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.21 1996/05/23 15:53:11 adam
45 * Bug fix: egw_enc failed on 8-bit chars.
46 * New command: egw_parms.
48 * Revision 1.20 1996/05/21 14:53:04 adam
49 * Tcl command wform extented; options -raw and -exists added.
51 * Revision 1.19 1996/03/14 11:48:39 adam
52 * New function egw_prog that returns name of shell.
54 * Revision 1.18 1996/02/12 10:09:23 adam
55 * New parameter to wproto_init: directory root for the FIFOs (instead
56 * of using preprocessor defines FIFODIR/FIFOROOT).
58 * Revision 1.17 1996/01/26 09:02:22 adam
59 * Open of client FIFO called with O_NDELAY when reconnecting to shell
60 * in order to prevent serious lock if previous shell died without
61 * unlinking client FIFO.
63 * Revision 1.16 1996/01/24 10:13:56 adam
64 * Bug fix: in function wo_write realloc is used only when memory is already
65 * allocated with malloc.
67 * Revision 1.15 1996/01/24 08:25:32 adam
68 * Buf fix: Uninitialized outbuffer_offset member.
70 * Revision 1.14 1996/01/12 13:08:07 adam
71 * CGI script passes name of lock file to the shell. The server will not close
72 * the response FIFO until this file becomes unlocked. This method handles
73 * cancel operations much better.
75 * Revision 1.13 1996/01/12 10:05:20 adam
76 * If script name ends with ';' HTTP/GET/Expires will be defined.
77 * The cgi interface only reads final handshake if response from
78 * server (shell) was zero-terminated [If it isn't it probably died].
80 * Revision 1.12 1996/01/05 16:35:02 adam
83 * Revision 1.11 1996/01/05 16:21:21 adam
84 * Bug fix: shell (wproto) sometimes closed server FIFO before cgi
85 * program opened it - solution: cgi sends OK when response has been read.
87 * Revision 1.10 1995/12/22 14:21:16 adam
88 * More work on scan. The search.egw script takes care of cached
89 * query page (doesn't always increment nextSetNo). To make new search set
90 * either 'New query' must be selected or the query page must be reloaded.
91 * The msearch script doesn't do this yet, however.
93 * Revision 1.9 1995/11/14 16:31:36 adam
94 * Temporary remove of ccl entry.
96 * Revision 1.8 1995/11/13 15:41:45 adam
98 * Gateway uses record element set names B(rief) and F(ull).
99 * Bug fix. Didn't save idAuthentication correctly.
101 * Revision 1.7 1995/11/10 14:47:32 adam
102 * Plus (+) characters automatically converted to space in forms.
103 * Work on search in multiple targets. Doesn't work well - yet.
104 * Presentation formats enhanced.
106 * Revision 1.6 1995/11/06 10:51:17 adam
107 * End of response marker in response from wsh/wproto to wcgi.
108 * Shells are respawned when necessary.
110 * Revision 1.5 1995/11/02 16:35:37 adam
111 * Bug fixes and select on FIFOs in wcgi - doesn't really work!
113 * Revision 1.4 1995/10/31 16:56:25 adam
114 * Record presentation.
116 * Revision 1.3 1995/10/27 15:12:10 adam
117 * IrTcl incorporated in the gateway.
118 * Better separation of script types.
119 * Z39.50 gateway scripts entered.
121 * Revision 1.2 1995/10/23 16:55:39 adam
122 * A lot of changes - really.
124 * Revision 1.1 1995/10/20 11:49:26 adam
125 * First version of www gateway.
132 #include <sys/time.h>
133 #include <sys/types.h>
134 #include <sys/stat.h>
143 static int wproto_dumpcache(WCLIENT wc, int level);
144 static int wproto_findcache(WCLIENT wc, char *name);
145 static void wproto_uncache(WCLIENT wc, int level);
147 static char *mod = "wproto";
149 void wo_write (WCLIENT wc, const char *s, size_t len)
151 if (wc->outbuffer_offset + len >= wc->outbuffer_size)
154 wc->outbuffer = malloc (wc->outbuffer_size +=
155 ((len >= OUTBUFFER_CHUNK) ? len*2 : OUTBUFFER_CHUNK));
157 wc->outbuffer = realloc(wc->outbuffer, wc->outbuffer_size +=
158 ((len >= OUTBUFFER_CHUNK) ? len*2 : OUTBUFFER_CHUNK));
160 memcpy(wc->outbuffer + wc->outbuffer_offset, s, len);
161 wc->outbuffer_offset += len;
164 void wo_puts (WCLIENT wc, const char *s)
166 wo_write (wc, s, strlen(s));
169 void wo_printf (WCLIENT wc, const char *fmt, ...)
175 vsprintf(tmpbuf, fmt, ap);
180 void wo_clear (WCLIENT wc, const char *type)
182 wc->outbuffer_offset = 0;
184 wo_printf(wc, "Content-type: %s\n\n", type);
187 int wo_puthtml (WCLIENT wc, char *name)
192 wo_clear(wc, "text/html");
193 if (!(f = fopen(name, "r")))
195 wo_printf(wc, "<BR>Failed to open file: %s<BR>", name);
198 while (ch = getc(f), !feof(f))
200 if (wo_putc(wc, ch) < 0)
210 int wo_flush(WCLIENT wc)
214 if (!(wc->outbuffer_offset))
216 towrite = wc->outbuffer_offset;
217 wc->outbuffer_offset = 0;
223 wrote = write(wc->lineout, wc->outbuffer + wc->outbuffer_offset,
227 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "write response");
230 gw_log (GW_LOG_DEBUG, mod, "wrote %d bytes", wrote);
231 if (wc->cache_fd >= 0)
232 if (write(wc->cache_fd, wc->outbuffer + wc->outbuffer_offset,
235 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "write cache");
241 wc->outbuffer_offset += wrote;
243 wc->outbuffer_offset = 0;
247 int wo_overflow(WCLIENT wc, char ch)
249 gw_log (GW_LOG_DEBUG, mod, "wo_overflow");
250 if (wo_flush(wc) < 0)
252 return wo_putc(wc, ch);
255 int wo_finish(WCLIENT wc)
258 gw_log (GW_LOG_DEBUG, mod, "wo_finish");
261 if (wo_flush(wc) < 0)
264 fd = open (wc->wf_serverf, O_RDONLY);
268 area.l_type = F_RDLCK;
269 area.l_whence = SEEK_SET;
272 fcntl (fd, F_SETLKW, &area);
277 if (wc->cache_fd >= 0)
285 static void descramble(char *t, const char *o)
291 if (*o == '%' && isxdigit(*(o + 1)) && isxdigit(*(o + 2)))
293 sscanf(o + 1, "%2x", &v);
314 static void decode_form(wform_data *form, char *buf)
322 for (p = form[i].name; *buf && *buf != '='; buf++)
327 for (p = tmp; *buf && *buf != '&'; buf++)
330 descramble(form[i].value, tmp);
335 *form[i].name = '\0';
338 char *wgetval(WCLIENT wc, char *name)
342 for (i = 0; *wc->wf_data[i].name; i++)
343 if (!strcmp(name, wc->wf_data[i].name))
344 return wc->wf_data[i].value;
348 int wproto_process(WCLIENT wc, int timeout)
350 int toread, rs, level;
351 char combuf[COMBUF], *p,*t;
353 struct timeval to, *top;
357 gw_log (GW_LOG_DEBUG, mod, "process waiting for input.");
367 FD_SET(wc->linein, &input);
368 /* go through select handle list */
369 while ((rs = select(wc->linein + 1, &input, 0, 0, top)) < 0 &&
374 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "select");
379 gw_log (GW_LOG_STAT, mod,
380 "select %d second timeout.",
382 unlink (wc->wf_serverp);
385 if (read(wc->linein, &toread, sizeof(toread)) < sizeof(toread))
387 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "wp_proc:len read failed");
390 toread -= sizeof(toread);
391 if (read(wc->linein, combuf, toread) < toread)
393 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "wp_proc: data read failed");
397 for (t = wc->wf_serverp; (*t = *p); t++, p++);
399 for (t = wc->wf_serverf; (*t = *p); t++, p++);
401 for (t = wc->wf_script; *p && *p != '/'; t++, p++)
406 decode_form (wc->wf_parms_var, p);
407 for (t = wc->wf_parms; (*t = *p); t++, p++);
409 p++; /* we don't deal with envvars yet */
411 decode_form(wc->wf_data, p);
414 gw_log (GW_LOG_DEBUG, mod, "open %s", wc->wf_serverp);
415 if ((wc->lineout = open(wc->wf_serverp, O_WRONLY)) < 0)
417 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "open %s",
422 /* look in cache only if request carries no forms data. */
423 if (!*wc->wf_data[0].name && (level = wproto_findcache(wc,
426 gw_log (GW_LOG_DEBUG, mod, "wproto_dumpcache");
427 wproto_dumpcache(wc, level);
438 WCLIENT wproto_init (const char *fifoDir, const char *prog)
440 char *val, path2[256];
443 gw_log (GW_LOG_DEBUG, mod, "wproto_init");
444 close(1); /* release us from the wserver */
445 if (!(new = malloc(sizeof(*new))))
447 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "malloc");
450 if (!(val = getenv ("GWID")))
452 gw_log (GW_LOG_FATAL, mod, "GWID not set");
455 if (!(new->prog = malloc (strlen(prog)+1)))
457 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "malloc");
460 strcpy (new->prog, prog);
461 new->fifoDir = fifoDir;
462 new->id = atoi (val);
463 sprintf(new->path, "%s/clt%d", new->fifoDir, new->id);
464 if (mkfifo(new->path, 0666 | S_IFIFO) < 0)
465 gw_log (GW_LOG_WARN|GW_LOG_ERRNO, mod, "mkfifo(%s)", new->path);
466 gw_log (GW_LOG_DEBUG, mod, "Synchronizing with server.");
467 sprintf(path2, "%s/srv%d", new->fifoDir, getppid());
468 if ((new->lineout = open(path2, O_WRONLY)) < 0)
470 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "open out %s", path2);
473 if (write(new->lineout, "OK", 2) < 2)
475 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "write");
478 gw_log (GW_LOG_DEBUG, mod, "Synchronized.");
479 if ((new->linein = open(new->path, O_RDONLY)) < 0)
481 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "open input %s", new->path);
484 gw_log (GW_LOG_DEBUG, mod, "init. linein=%d lineout=%d",
485 new->linein, new->lineout);
486 /* we put a handle on this so we get a blocking read when no peer */
487 if (open(new->path, O_WRONLY | O_NDELAY) < 0)
489 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "open dummy %s", new->path);
493 new->outbuffer_size = 0;
494 new->outbuffer_offset = 0;
495 new->cache_level = -1;
500 static void wproto_uncache(WCLIENT wc, int level)
502 for (;wc->cache_level >= level; wc->cache_level--)
503 unlink(wc->cache[wc->cache_level].path);
506 void wproto_terminate(WCLIENT wc)
511 wproto_uncache(wc, 0);
515 int wproto_cache(WCLIENT wc, int level)
519 if (level > wc->cache_level + 1)
521 gw_log (GW_LOG_FATAL, mod, "Illegal cache level increment.");
524 wproto_uncache(wc, level);
525 p = &wc->cache[++wc->cache_level];
526 sprintf(p->path, "%s/csh%d.%d", wc->fifoDir, wc->id, level);
527 if ((wc->cache_fd = open(p->path, O_WRONLY|O_CREAT|O_TRUNC, 0600)) < 0)
529 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "open %s", p->path);
532 strcpy(p->name, wc->wf_parms);
536 static int wproto_findcache(WCLIENT wc, char *name)
540 for (i = 0; i <= wc->cache_level; i++)
541 if (!strcmp(wc->cache[i].name, name))
546 static int wproto_dumpcache(WCLIENT wc, int level)
550 gw_log (GW_LOG_STAT, mod, "Using Cache: %s", wc->cache[level].name);
551 if ((fd = open(wc->cache[level].path, O_RDONLY)) < 0)
553 gw_log (GW_LOG_FATAL, mod, "open (R) %s", wc->cache[level].path);
556 while ((rd = read(fd, wc->outbuffer, OUTBUFFER_CHUNK)) > 0)
557 if (write(wc->lineout, wc->outbuffer, rd) < rd)
559 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "write toline");
564 gw_log (GW_LOG_FATAL|GW_LOG_ERRNO, mod, "read");
567 wproto_uncache(wc, level + 1);