New pazpar2 option -X which puts pazpar2 in debug (insecure) mode.
[pazpar2-moved-to-github.git] / src / http_command.c
1 /* $Id: http_command.c,v 1.44 2007-05-23 21:58:28 adam Exp $
2    Copyright (c) 2006-2007, Index Data.
3
4 This file is part of Pazpar2.
5
6 Pazpar2 is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Pazpar2; see the file LICENSE.  If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA.
20  */
21
22 /*
23  * $Id: http_command.c,v 1.44 2007-05-23 21:58:28 adam Exp $
24  */
25
26 #include <stdio.h>
27 #include <sys/types.h>
28 #include <sys/uio.h>
29 #include <unistd.h>
30 #include <stdlib.h>
31 #include <strings.h>
32 #include <ctype.h>
33 #include <sys/time.h>
34 #include <yaz/snprintf.h>
35 #if HAVE_CONFIG_H
36 #include <cconfig.h>
37 #endif
38
39 #include <yaz/yaz-util.h>
40
41 #include "config.h"
42 #include "util.h"
43 #include "eventl.h"
44 #include "pazpar2.h"
45 #include "http.h"
46 #include "http_command.h"
47 #include "settings.h"
48 #include "client.h"
49
50 // Update this when the protocol changes
51 #define PAZPAR2_PROTOCOL_VERSION "1"
52
53 struct http_session {
54     IOCHAN timeout_iochan;     // NOTE: This is NOT associated with a socket
55     struct session *psession;
56     unsigned int session_id;
57     int timestamp;
58     NMEM nmem;
59     struct http_session *next;
60 };
61
62 static struct http_session *session_list = 0;
63
64 void http_session_destroy(struct http_session *s);
65
66 static void session_timeout(IOCHAN i, int event)
67 {
68     struct http_session *s = iochan_getdata(i);
69     http_session_destroy(s);
70 }
71
72 struct http_session *http_session_create()
73 {
74     NMEM nmem = nmem_create();
75     struct http_session *r = nmem_malloc(nmem, sizeof(*r));
76
77     r->psession = new_session(nmem);
78     r->session_id = 0;
79     r->timestamp = 0;
80     r->nmem = nmem;
81     r->next = session_list;
82     session_list = r;
83     r->timeout_iochan = iochan_create(-1, session_timeout, 0);
84     iochan_setdata(r->timeout_iochan, r);
85     iochan_settimeout(r->timeout_iochan, global_parameters.session_timeout);
86
87     pazpar2_add_channel(r->timeout_iochan);
88     return r;
89 }
90
91 void http_session_destroy(struct http_session *s)
92 {
93     struct http_session **p;
94
95     for (p = &session_list; *p; p = &(*p)->next)
96         if (*p == s)
97         {
98             *p = (*p)->next;
99             break;
100         }
101     iochan_destroy(s->timeout_iochan);
102     destroy_session(s->psession);
103     nmem_destroy(s->nmem);
104 }
105
106 static void error(struct http_response *rs, 
107                   const char *code, const char *msg, const char *extra)
108 {
109     struct http_channel *c = rs->channel;
110     char text[1024];
111     char *sep = extra ? ": " : "";
112
113     rs->msg = nmem_strdup(c->nmem, msg);
114     strcpy(rs->code, code);
115
116     yaz_snprintf(text, sizeof(text),
117                  "<error code=\"general\">%s%s%s</error>", msg, sep,
118                  extra ? extra : "");
119
120     yaz_log(YLOG_WARN, "HTTP %s %s%s%s", code, msg, sep,
121             extra ? extra : "");
122     rs->payload = nmem_strdup(c->nmem, text);
123     http_send_response(c);
124 }
125
126 unsigned int make_sessionid()
127 {
128     static int seq = 0;
129     unsigned int res;
130
131     seq++;
132     if (global_parameters.debug_mode)
133         res = seq;
134     else
135     {
136         struct timeval t;
137
138         if (gettimeofday(&t, 0) < 0)
139         {
140             yaz_log(YLOG_WARN|YLOG_ERRNO, "gettimeofday");
141             exit(1);
142         }
143         /* at most 256 sessions per second .. 
144            (long long would be more appropriate)*/
145         res = t.tv_sec;
146         res = ((res << 8) | (seq & 0xff)) & ((1U << 31) - 1);
147     }
148     return res;
149 }
150
151 static struct http_session *locate_session(struct http_request *rq, struct http_response *rs)
152 {
153     struct http_session *p;
154     char *session = http_argbyname(rq, "session");
155     unsigned int id;
156
157     if (!session)
158     {
159         error(rs, "417", "Must supply session", 0);
160         return 0;
161     }
162     id = atoi(session);
163     for (p = session_list; p; p = p->next)
164         if (id == p->session_id)
165         {
166             iochan_activity(p->timeout_iochan);
167             return p;
168         }
169     error(rs, "417", "Session does not exist, or it has expired", 0);
170     return 0;
171 }
172
173 // Decode settings parameters and apply to session
174 // Syntax: setting[target]=value
175 static int process_settings(struct session *se, struct http_request *rq,
176         struct http_response *rs)
177 {
178     struct http_argument *a;
179
180     for (a = rq->arguments; a; a = a->next)
181         if (strchr(a->name, '['))
182         {
183             char **res;
184             int num;
185             char *dbname;
186             char *setting;
187
188             // Nmem_strsplit *rules*!!!
189             nmem_strsplit(se->session_nmem, "[]", a->name, &res, &num);
190             if (num != 2)
191             {
192                 error(rs, "417", "Malformed setting argument", a->name);
193                 return -1;
194             }
195             setting = res[0];
196             dbname = res[1];
197             session_apply_setting(se, dbname, setting,
198                     nmem_strdup(se->session_nmem, a->value));
199         }
200     return 0;
201 }
202
203 static void cmd_exit(struct http_channel *c)
204 {
205     yaz_log(YLOG_WARN, "exit");
206     exit(0);
207 }
208
209 static void cmd_init(struct http_channel *c)
210 {
211     unsigned int sesid;
212     char buf[1024];
213     struct http_session *s = http_session_create();
214     struct http_response *rs = c->response;
215
216     yaz_log(YLOG_DEBUG, "HTTP Session init");
217     sesid = make_sessionid();
218     s->session_id = sesid;
219     if (process_settings(s->psession, c->request, c->response) < 0)
220         return;
221     sprintf(buf, "<init><status>OK</status><session>%u</session>"
222             "<protocol>" PAZPAR2_PROTOCOL_VERSION "</protocol></init>", sesid);
223     rs->payload = nmem_strdup(c->nmem, buf);
224     http_send_response(c);
225 }
226
227 static void cmd_settings(struct http_channel *c)
228 {
229     struct http_response *rs = c->response;
230     struct http_request *rq = c->request;
231     struct http_session *s = locate_session(rq, rs);
232
233     if (!s)
234         return;
235
236     if (process_settings(s->psession, rq, rs) < 0)
237         return;
238     rs->payload = "<settings><status>OK</status></settings>";
239     http_send_response(c);
240 }
241
242 // Compares two hitsbytarget nodes by hitcount
243 static int cmp_ht(const void *p1, const void *p2)
244 {
245     const struct hitsbytarget *h1 = p1;
246     const struct hitsbytarget *h2 = p2;
247     return h2->hits - h1->hits;
248 }
249
250 // This implements functionality somewhat similar to 'bytarget', but in a termlist form
251 static void targets_termlist(WRBUF wrbuf, struct session *se, int num)
252 {
253     struct hitsbytarget *ht;
254     int count, i;
255
256     if (!(ht = hitsbytarget(se, &count)))
257         return;
258     qsort(ht, count, sizeof(struct hitsbytarget), cmp_ht);
259     for (i = 0; i < count && i < num && ht[i].hits > 0; i++)
260     {
261         wrbuf_puts(wrbuf, "\n<term>\n");
262         wrbuf_printf(wrbuf, "<id>%s</id>\n", ht[i].id);
263         wrbuf_printf(wrbuf, "<name>%s</name>\n", ht[i].name);
264         wrbuf_printf(wrbuf, "<frequency>%d</frequency>\n", ht[i].hits);
265         wrbuf_printf(wrbuf, "<state>%s</state>\n", ht[i].state);
266         wrbuf_printf(wrbuf, "<diagnostic>%d</diagnostic>\n", ht[i].diagnostic);
267         wrbuf_puts(wrbuf, "\n</term>\n");
268     }
269 }
270
271 static void cmd_termlist(struct http_channel *c)
272 {
273     struct http_response *rs = c->response;
274     struct http_request *rq = c->request;
275     struct http_session *s = locate_session(rq, rs);
276     struct termlist_score **p;
277     int len;
278     int i;
279     char *name = http_argbyname(rq, "name");
280     char *nums = http_argbyname(rq, "num");
281     int num = 15;
282     int status;
283
284     if (!s)
285         return;
286
287     status = session_active_clients(s->psession);
288
289     if (!name)
290         name = "subject";
291     if (strlen(name) > 255)
292         return;
293     if (nums)
294         num = atoi(nums);
295
296     wrbuf_rewind(c->wrbuf);
297
298     wrbuf_puts(c->wrbuf, "<termlist>");
299     wrbuf_printf(c->wrbuf, "\n<activeclients>%d</activeclients>", status);
300     while (*name)
301     {
302         char tname[256];
303         char *tp;
304
305         if (!(tp = strchr(name, ',')))
306             tp = name + strlen(name);
307         strncpy(tname, name, tp - name);
308         tname[tp - name] = '\0';
309
310         wrbuf_printf(c->wrbuf, "\n<list name=\"%s\">\n", tname);
311         if (!strcmp(tname, "xtargets"))
312             targets_termlist(c->wrbuf, s->psession, num);
313         else
314         {
315             p = termlist(s->psession, tname, &len);
316             if (p)
317                 for (i = 0; i < len && i < num; i++)
318                 {
319                     wrbuf_puts(c->wrbuf, "\n<term>");
320                     wrbuf_printf(c->wrbuf, "<name>%s</name>", p[i]->term);
321                     wrbuf_printf(c->wrbuf, "<frequency>%d</frequency>", p[i]->frequency);
322                     wrbuf_puts(c->wrbuf, "</term>");
323                 }
324         }
325         wrbuf_puts(c->wrbuf, "\n</list>");
326         name = tp;
327         if (*name == ',')
328             name++;
329     }
330     wrbuf_puts(c->wrbuf, "</termlist>");
331     rs->payload = nmem_strdup(rq->channel->nmem, wrbuf_cstr(c->wrbuf));
332     http_send_response(c);
333 }
334
335
336 static void cmd_bytarget(struct http_channel *c)
337 {
338     struct http_response *rs = c->response;
339     struct http_request *rq = c->request;
340     struct http_session *s = locate_session(rq, rs);
341     struct hitsbytarget *ht;
342     int count, i;
343
344     if (!s)
345         return;
346     if (!(ht = hitsbytarget(s->psession, &count)))
347     {
348         error(rs, "500", "Failed to retrieve hitcounts", 0);
349         return;
350     }
351     wrbuf_rewind(c->wrbuf);
352     wrbuf_puts(c->wrbuf, "<bytarget><status>OK</status>");
353
354     for (i = 0; i < count; i++)
355     {
356         wrbuf_puts(c->wrbuf, "\n<target>");
357         wrbuf_printf(c->wrbuf, "<id>%s</id>\n", ht[i].id);
358         wrbuf_printf(c->wrbuf, "<hits>%d</hits>\n", ht[i].hits);
359         wrbuf_printf(c->wrbuf, "<diagnostic>%d</diagnostic>\n", ht[i].diagnostic);
360         wrbuf_printf(c->wrbuf, "<records>%d</records>\n", ht[i].records);
361         wrbuf_printf(c->wrbuf, "<state>%s</state>\n", ht[i].state);
362         wrbuf_puts(c->wrbuf, "</target>");
363     }
364
365     wrbuf_puts(c->wrbuf, "</bytarget>");
366     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
367     http_send_response(c);
368 }
369
370 static void write_metadata(WRBUF w, struct conf_service *service,
371         struct record_metadata **ml, int full)
372 {
373     int imeta;
374
375     for (imeta = 0; imeta < service->num_metadata; imeta++)
376     {
377         struct conf_metadata *cmd = &service->metadata[imeta];
378         struct record_metadata *md;
379         if (!cmd->brief && !full)
380             continue;
381         for (md = ml[imeta]; md; md = md->next)
382         {
383             wrbuf_printf(w, "\n<md-%s>", cmd->name);
384             switch (cmd->type)
385             {
386                 case Metadata_type_generic:
387                     wrbuf_puts(w, md->data.text);
388                     break;
389                 case Metadata_type_year:
390                     wrbuf_printf(w, "%d", md->data.number.min);
391                     if (md->data.number.min != md->data.number.max)
392                         wrbuf_printf(w, "-%d", md->data.number.max);
393                     break;
394                 default:
395                     wrbuf_puts(w, "[can't represent]");
396             }
397             wrbuf_printf(w, "</md-%s>", cmd->name);
398         }
399     }
400 }
401
402 static void write_subrecord(struct record *r, WRBUF w,
403         struct conf_service *service, int show_details)
404 {
405     char *name = session_setting_oneval(client_get_database(r->client), PZ_NAME);
406
407     wrbuf_printf(w, "<location id=\"%s\" name=\"%s\">",
408             client_get_database(r->client)->database->url,
409             *name ? name : "Unknown");
410     if (show_details)
411         write_metadata(w, service, r->metadata, 1);
412     wrbuf_puts(w, "</location>\n");
413 }
414
415 static void cmd_record(struct http_channel *c)
416 {
417     struct http_response *rs = c->response;
418     struct http_request *rq = c->request;
419     struct http_session *s = locate_session(rq, rs);
420     struct record_cluster *rec;
421     struct record *r;
422     struct conf_service *service = global_parameters.server->service;
423     char *idstr = http_argbyname(rq, "id");
424     int id;
425
426     if (!s)
427         return;
428     if (!idstr)
429     {
430         error(rs, "417", "Must supply id", 0);
431         return;
432     }
433     wrbuf_rewind(c->wrbuf);
434     id = atoi(idstr);
435     if (!(rec = show_single(s->psession, id)))
436     {
437         error(rs, "500", "Record missing", 0);
438         return;
439     }
440     wrbuf_puts(c->wrbuf, "<record>\n");
441     wrbuf_printf(c->wrbuf, "<recid>%d</recid>", rec->recid);
442     write_metadata(c->wrbuf, service, rec->metadata, 1);
443     for (r = rec->records; r; r = r->next)
444         write_subrecord(r, c->wrbuf, service, 1);
445     wrbuf_puts(c->wrbuf, "</record>\n");
446     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
447     http_send_response(c);
448 }
449
450 static void show_records(struct http_channel *c, int active)
451 {
452     struct http_request *rq = c->request;
453     struct http_response *rs = c->response;
454     struct http_session *s = locate_session(rq, rs);
455     struct record_cluster **rl;
456     struct reclist_sortparms *sp;
457     char *start = http_argbyname(rq, "start");
458     char *num = http_argbyname(rq, "num");
459     char *sort = http_argbyname(rq, "sort");
460     int startn = 0;
461     int numn = 20;
462     int total;
463     int total_hits;
464     int i;
465
466     if (!s)
467         return;
468
469     // We haven't counted clients yet if we're called on a block release
470     if (active < 0)
471         active = session_active_clients(s->psession);
472
473     if (start)
474         startn = atoi(start);
475     if (num)
476         numn = atoi(num);
477     if (!sort)
478         sort = "relevance";
479     if (!(sp = reclist_parse_sortparms(c->nmem, sort)))
480     {
481         error(rs, "500", "Bad sort parameters", 0);
482         return;
483     }
484
485     rl = show(s->psession, sp, startn, &numn, &total, &total_hits, c->nmem);
486
487     wrbuf_rewind(c->wrbuf);
488     wrbuf_puts(c->wrbuf, "<show>\n<status>OK</status>\n");
489     wrbuf_printf(c->wrbuf, "<activeclients>%d</activeclients>\n", active);
490     wrbuf_printf(c->wrbuf, "<merged>%d</merged>\n", total);
491     wrbuf_printf(c->wrbuf, "<total>%d</total>\n", total_hits);
492     wrbuf_printf(c->wrbuf, "<start>%d</start>\n", startn);
493     wrbuf_printf(c->wrbuf, "<num>%d</num>\n", numn);
494
495     for (i = 0; i < numn; i++)
496     {
497         int ccount;
498         struct record *p;
499         struct record_cluster *rec = rl[i];
500         struct conf_service *service = global_parameters.server->service;
501
502         wrbuf_puts(c->wrbuf, "<hit>\n");
503         write_metadata(c->wrbuf, service, rec->metadata, 0);
504         for (ccount = 0, p = rl[i]->records; p;  p = p->next, ccount++)
505             write_subrecord(p, c->wrbuf, service, 0); // subrecs w/o details
506         if (ccount > 1)
507             wrbuf_printf(c->wrbuf, "<count>%d</count>\n", ccount);
508         wrbuf_printf(c->wrbuf, "<recid>%d</recid>\n", rec->recid);
509         wrbuf_puts(c->wrbuf, "</hit>\n");
510     }
511
512     wrbuf_puts(c->wrbuf, "</show>\n");
513     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
514     http_send_response(c);
515 }
516
517 static void show_records_ready(void *data)
518 {
519     struct http_channel *c = (struct http_channel *) data;
520
521     show_records(c, -1);
522 }
523
524 static void cmd_show(struct http_channel *c)
525 {
526     struct http_request *rq = c->request;
527     struct http_response *rs = c->response;
528     struct http_session *s = locate_session(rq, rs);
529     char *block = http_argbyname(rq, "block");
530     int status;
531
532     if (!s)
533         return;
534
535     status = session_active_clients(s->psession);
536
537     if (block)
538     {
539         if (status && (!s->psession->reclist || !s->psession->reclist->num_records))
540         {
541             session_set_watch(s->psession, SESSION_WATCH_RECORDS, show_records_ready, c);
542             yaz_log(YLOG_DEBUG, "Blocking on cmd_show");
543             return;
544         }
545     }
546
547     show_records(c, status);
548 }
549
550 static void cmd_ping(struct http_channel *c)
551 {
552     struct http_request *rq = c->request;
553     struct http_response *rs = c->response;
554     struct http_session *s = locate_session(rq, rs);
555     if (!s)
556         return;
557     rs->payload = "<ping><status>OK</status></ping>";
558     http_send_response(c);
559 }
560
561 static int utf_8_valid(const char *str)
562 {
563     yaz_iconv_t cd = yaz_iconv_open("utf-8", "utf-8");
564     if (cd)
565     {
566         /* check that query is UTF-8 encoded */
567         char *inbuf = (char *) str; /* we know iconv does not alter this */
568         size_t inbytesleft = strlen(inbuf);
569
570         size_t outbytesleft = strlen(inbuf) + 10;
571         char *out = xmalloc(outbytesleft);
572         char *outbuf = out;
573         size_t r = yaz_iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft);
574
575         /* if OK, try flushing the rest  */
576         if (r != (size_t) (-1))
577             r = yaz_iconv(cd, 0, 0, &outbuf, &outbytesleft);
578         yaz_iconv_close(cd);
579         xfree(out);
580         if (r == (size_t) (-1))
581             return 0;
582     }
583     return 1;
584 }
585
586 static void cmd_search(struct http_channel *c)
587 {
588     struct http_request *rq = c->request;
589     struct http_response *rs = c->response;
590     struct http_session *s = locate_session(rq, rs);
591     char *query = http_argbyname(rq, "query");
592     char *filter = http_argbyname(rq, "filter");
593     char *res;
594
595     if (!s)
596         return;
597     if (!query)
598     {
599         error(rs, "417", "Must supply query", 0);
600         return;
601     }
602     if (!utf_8_valid(query))
603     {
604         error(rs, "417", "Query not UTF-8 encoded", 0);
605         return;
606     }
607     res = search(s->psession, query, filter);
608     if (res)
609     {
610         error(rs, "417", res, 0);
611         return;
612     }
613     rs->payload = "<search><status>OK</status></search>";
614     http_send_response(c);
615 }
616
617
618 static void cmd_stat(struct http_channel *c)
619 {
620     struct http_request *rq = c->request;
621     struct http_response *rs = c->response;
622     struct http_session *s = locate_session(rq, rs);
623     struct statistics stat;
624     int clients;
625
626     if (!s)
627         return;
628
629     clients = session_active_clients(s->psession);
630     statistics(s->psession, &stat);
631
632     wrbuf_rewind(c->wrbuf);
633     wrbuf_puts(c->wrbuf, "<stat>");
634     wrbuf_printf(c->wrbuf, "<activeclients>%d</activeclients>\n", clients);
635     wrbuf_printf(c->wrbuf, "<hits>%d</hits>\n", stat.num_hits);
636     wrbuf_printf(c->wrbuf, "<records>%d</records>\n", stat.num_records);
637     wrbuf_printf(c->wrbuf, "<clients>%d</clients>\n", stat.num_clients);
638     wrbuf_printf(c->wrbuf, "<unconnected>%d</unconnected>\n", stat.num_no_connection);
639     wrbuf_printf(c->wrbuf, "<connecting>%d</connecting>\n", stat.num_connecting);
640     wrbuf_printf(c->wrbuf, "<initializing>%d</initializing>\n", stat.num_initializing);
641     wrbuf_printf(c->wrbuf, "<searching>%d</searching>\n", stat.num_searching);
642     wrbuf_printf(c->wrbuf, "<presenting>%d</presenting>\n", stat.num_presenting);
643     wrbuf_printf(c->wrbuf, "<idle>%d</idle>\n", stat.num_idle);
644     wrbuf_printf(c->wrbuf, "<failed>%d</failed>\n", stat.num_failed);
645     wrbuf_printf(c->wrbuf, "<error>%d</error>\n", stat.num_error);
646     wrbuf_puts(c->wrbuf, "</stat>");
647     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
648     http_send_response(c);
649 }
650
651 static void cmd_info(struct http_channel *c)
652 {
653     char yaz_version_str[20];
654     struct http_response *rs = c->response;
655
656     wrbuf_rewind(c->wrbuf);
657     wrbuf_puts(c->wrbuf, "<info>\n");
658     wrbuf_printf(c->wrbuf, " <version>\n");
659     wrbuf_printf(c->wrbuf, "  <pazpar2>%s</pazpar2>\n", VERSION);
660
661     yaz_version(yaz_version_str, 0);
662     wrbuf_printf(c->wrbuf, "  <yaz compiled=\"%s\">%s</yaz>\n",
663                  YAZ_VERSION, yaz_version_str);
664     wrbuf_printf(c->wrbuf, " </version>\n");
665     
666     wrbuf_puts(c->wrbuf, "</info>");
667     rs->payload = nmem_strdup(c->nmem, wrbuf_cstr(c->wrbuf));
668     http_send_response(c);
669 }
670
671 struct {
672     char *name;
673     void (*fun)(struct http_channel *c);
674 } commands[] = {
675     { "init", cmd_init },
676     { "settings", cmd_settings },
677     { "stat", cmd_stat },
678     { "bytarget", cmd_bytarget },
679     { "show", cmd_show },
680     { "search", cmd_search },
681     { "termlist", cmd_termlist },
682     { "exit", cmd_exit },
683     { "ping", cmd_ping },
684     { "record", cmd_record },
685     { "info", cmd_info },
686     {0,0}
687 };
688
689 void http_command(struct http_channel *c)
690 {
691     char *command = http_argbyname(c->request, "command");
692     struct http_response *rs = http_create_response(c);
693     int i;
694
695     c->response = rs;
696
697     http_addheader(rs, "Expires", "Thu, 19 Nov 1981 08:52:00 GMT");
698     http_addheader(rs, "Cache-Control", "no-store, no-cache, must-revalidate, post-check=0, pre-check=0");
699
700     if (!command)
701     {
702         error(rs, "417", "Must supply command", 0);
703         return;
704     }
705     for (i = 0; commands[i].name; i++)
706         if (!strcmp(commands[i].name, command))
707         {
708             (*commands[i].fun)(c);
709             break;
710         }
711     if (!commands[i].name)
712         error(rs, "417", "Unknown command", command);
713
714     return;
715 }
716
717 /*
718  * Local variables:
719  * c-basic-offset: 4
720  * indent-tabs-mode: nil
721  * End:
722  * vim: shiftwidth=4 tabstop=8 expandtab
723  */