Update source headers for 2008. Omit CVS ID keyword subst.
[yaz-moved-to-github.git] / src / statserv.c
1 /* This file is part of the YAZ toolkit.
2  * Copyright (C) 1995-2008 Index Data
3  * See the file LICENSE for details.
4  */
5
6 /**
7  * \file statserv.c
8  * \brief Implements GFS logic
9  */
10
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <string.h>
14 #include <ctype.h>
15 #ifdef WIN32
16 #include <process.h>
17 #include <winsock.h>
18 #include <direct.h>
19 #include "service.h"
20 #endif
21 #if HAVE_SYS_TYPES_H
22 #include <sys/types.h>
23 #endif
24 #if HAVE_SYS_WAIT_H
25 #include <sys/wait.h>
26 #endif
27 #if HAVE_UNISTD_H
28 #include <unistd.h>
29 #endif
30 #if HAVE_PWD_H
31 #include <pwd.h>
32 #endif
33
34 #if YAZ_HAVE_XML2
35 #include <libxml/parser.h>
36 #include <libxml/tree.h>
37 #include <libxml/xinclude.h>
38 #endif
39
40 #if YAZ_POSIX_THREADS
41 #include <pthread.h>
42 #elif YAZ_GNU_THREADS
43 #include <pth.h>
44 #endif
45
46 #include <fcntl.h>
47 #include <signal.h>
48 #include <errno.h>
49
50 #include <yaz/comstack.h>
51 #include <yaz/tcpip.h>
52 #include <yaz/options.h>
53 #ifdef USE_XTIMOSI
54 #include <yaz/xmosi.h>
55 #endif
56 #include <yaz/log.h>
57 #include "eventl.h"
58 #include "session.h"
59 #include <yaz/statserv.h>
60
61 static IOCHAN pListener = NULL;
62
63 static char gfs_root_dir[FILENAME_MAX+1];
64 static struct gfs_server *gfs_server_list = 0;
65 static struct gfs_listen *gfs_listen_list = 0;
66 static NMEM gfs_nmem = 0;
67
68 static char *me = "statserver"; /* log prefix */
69 static char *programname="statserver"; /* full program name */
70 #ifdef WIN32
71 DWORD current_control_tls;
72 static int init_control_tls = 0;
73 #elif YAZ_POSIX_THREADS
74 static pthread_key_t current_control_tls;
75 static int init_control_tls = 0;
76 #else
77 static statserv_options_block *current_control_block = 0;
78 #endif
79
80 /*
81  * default behavior.
82  */
83 #define STAT_DEFAULT_LOG_LEVEL "server,session,request"
84
85 int check_options(int argc, char **argv);
86 statserv_options_block control_block = {
87     1,                          /* dynamic mode */
88     0,                          /* threaded mode */
89     0,                          /* one shot (single session) */
90     "",                         /* no PDUs */
91     "",                         /* diagnostic output to stderr */
92     "tcp:@:9999",               /* default listener port */
93     PROTO_Z3950,                /* default application protocol */
94     15,                         /* idle timeout (minutes) */
95     1024*1024,                  /* maximum PDU size (approx.) to allow */
96     "default-config",           /* configuration name to pass to backend */
97     "",                         /* set user id */
98     0,                          /* bend_start handler */
99     0,                          /* bend_stop handler */
100     check_options,              /* Default routine, for checking the run-time arguments */
101     check_ip_tcpd,
102     "",
103     0,                          /* default value for inet deamon */
104     0,                          /* handle (for service, etc) */
105     0,                          /* bend_init handle */
106     0,                          /* bend_close handle */
107 #ifdef WIN32
108     "Z39.50 Server",            /* NT Service Name */
109     "Server",                   /* NT application Name */
110     "",                         /* NT Service Dependencies */
111     "Z39.50 Server",            /* NT Service Display Name */
112 #endif /* WIN32 */
113     0,                          /* SOAP handlers */
114     "",                         /* PID fname */
115     0,                          /* background daemon */
116     "",                         /* SSL certificate filename */
117     ""                          /* XML config filename */
118 };
119
120 static int max_sessions = 0;
121
122 static int logbits_set = 0;
123 static int log_session = 0; /* one-line logs for session */
124 static int log_sessiondetail = 0; /* more detailed stuff */
125 static int log_server = 0;
126
127 /** get_logbits sets global loglevel bits */
128 static void get_logbits(int force)
129 { /* needs to be called after parsing cmd-line args that can set loglevels!*/
130     if (force || !logbits_set)
131     {
132         logbits_set = 1;
133         log_session = yaz_log_module_level("session");
134         log_sessiondetail = yaz_log_module_level("sessiondetail");
135         log_server = yaz_log_module_level("server");
136     }
137 }
138
139
140 static int add_listener(char *where, int listen_id);
141
142 #if YAZ_HAVE_XML2
143 static xmlDocPtr xml_config_doc = 0;
144 #endif
145
146 #if YAZ_HAVE_XML2
147 static xmlNodePtr xml_config_get_root(void)
148 {
149     xmlNodePtr ptr = 0;
150     if (xml_config_doc)
151     {
152         ptr = xmlDocGetRootElement(xml_config_doc);
153         if (!ptr || ptr->type != XML_ELEMENT_NODE ||
154             strcmp((const char *) ptr->name, "yazgfs"))
155         {
156             yaz_log(YLOG_WARN, "Bad/missing root element for config %s",
157                     control_block.xml_config);
158             return 0;
159         
160         }
161     }
162     return ptr;
163 }
164 #endif
165
166 #if YAZ_HAVE_XML2
167 static char *nmem_dup_xml_content(NMEM n, xmlNodePtr ptr)
168 {
169     unsigned char *cp;
170     xmlNodePtr p;
171     int len = 1;  /* start with 1, because of trailing 0 */
172     unsigned char *str;
173     int first = 1; /* whitespace lead flag .. */
174     /* determine length */
175     for (p = ptr; p; p = p->next)
176     {
177         if (p->type == XML_TEXT_NODE)
178             len += xmlStrlen(p->content);
179     }
180     /* now allocate for the string */
181     str = (unsigned char *) nmem_malloc(n, len);
182     *str = '\0'; /* so we can use strcat */
183     for (p = ptr; p; p = p->next)
184     {
185         if (p->type == XML_TEXT_NODE)
186         {
187             cp = p->content;
188             if (first)
189             {
190                 while(*cp && isspace(*cp))
191                     cp++;
192                 if (*cp)
193                     first = 0;  /* reset if we got non-whitespace out */
194             }
195             strcat((char *)str, (const char *)cp); /* append */
196         }
197     }
198     /* remove trailing whitespace */
199     cp = strlen((const char *)str) + str;
200     while (cp != str && isspace(cp[-1]))
201         cp--;
202     *cp = '\0';
203     /* return resulting string */
204     return (char *) str;
205 }
206 #endif
207
208 static struct gfs_server * gfs_server_new(void)
209 {
210     struct gfs_server *n = (struct gfs_server *)
211         nmem_malloc(gfs_nmem, sizeof(*n));
212     memcpy(&n->cb, &control_block, sizeof(control_block));
213     n->next = 0;
214     n->host = 0;
215     n->listen_ref = 0;
216     n->cql_transform = 0;
217     n->ccl_transform = 0;
218     n->server_node_ptr = 0;
219     n->directory = 0;
220     n->docpath = 0;
221     n->stylesheet = 0;
222 #if YAZ_HAVE_XML2
223     n->retrieval = yaz_retrieval_create();
224 #endif
225     return n;
226 }
227
228 static struct gfs_listen * gfs_listen_new(const char *id, 
229                                           const char *address)
230 {
231     struct gfs_listen *n = (struct gfs_listen *)
232         nmem_malloc(gfs_nmem, sizeof(*n));
233     if (id)
234         n->id = nmem_strdup(gfs_nmem, id);
235     else
236         n->id = 0;
237     n->next = 0;
238     n->address = nmem_strdup(gfs_nmem, address);
239     return n;
240 }
241
242 static void gfs_server_chdir(struct gfs_server *gfs)
243 {
244     if (gfs_root_dir[0])
245     {
246         if (chdir(gfs_root_dir))
247             yaz_log(YLOG_WARN|YLOG_ERRNO, "chdir %s", gfs_root_dir);
248     }
249     if (gfs->directory)
250     {
251         if (chdir(gfs->directory))
252             yaz_log(YLOG_WARN|YLOG_ERRNO, "chdir %s",
253                     gfs->directory);
254     }
255 }
256
257 int control_association(association *assoc, const char *host, int force_open)
258 {
259     char vhost[128], *cp;
260     if (host)
261     {
262         strncpy(vhost, host, 127);
263         vhost[127] = '\0';
264         cp = strchr(vhost, ':');
265         if (cp)
266             *cp = '\0';
267         host = vhost;
268     }
269     assoc->server = 0;
270     if (control_block.xml_config[0])
271     {
272         struct gfs_server *gfs;
273         for (gfs = gfs_server_list; gfs; gfs = gfs->next)
274         {
275             int listen_match = 0;
276             int host_match = 0;
277             if ( !gfs->host || (host && gfs->host && !strcmp(host, gfs->host)))
278                 host_match = 1;
279             if (!gfs->listen_ref ||
280                 gfs->listen_ref == assoc->client_chan->chan_id)
281                 listen_match = 1;
282             if (listen_match && host_match)
283             {
284                 if (force_open ||
285                     (assoc->last_control != &gfs->cb && assoc->backend))
286                 {
287                     statserv_setcontrol(assoc->last_control);
288                     if (assoc->backend && assoc->init)
289                     {
290                         gfs_server_chdir(gfs);
291                         (assoc->last_control->bend_close)(assoc->backend);
292                     }
293                     assoc->backend = 0;
294                     xfree(assoc->init);
295                     assoc->init = 0;
296                 }
297                 assoc->server = gfs;
298                 assoc->last_control = &gfs->cb;
299                 statserv_setcontrol(&gfs->cb);
300                 
301                 gfs_server_chdir(gfs);
302                 break;
303             }
304         }
305         if (!gfs)
306         {
307             statserv_setcontrol(0);
308             assoc->last_control = 0;
309             return 0;
310         }
311     }
312     else
313     {
314         statserv_setcontrol(&control_block);
315         assoc->last_control = &control_block;
316     }
317     yaz_log(YLOG_DEBUG, "server select: config=%s", 
318             assoc->last_control->configname);
319
320     assoc->maximumRecordSize = assoc->last_control->maxrecordsize;
321     assoc->preferredMessageSize = assoc->last_control->maxrecordsize;
322     cs_set_max_recv_bytes(assoc->client_link, assoc->maximumRecordSize);
323     return 1;
324 }
325
326 static void xml_config_read(void)
327 {
328     struct gfs_server **gfsp = &gfs_server_list;
329     struct gfs_listen **gfslp = &gfs_listen_list;
330 #if YAZ_HAVE_XML2
331     xmlNodePtr ptr = xml_config_get_root();
332
333     if (!ptr)
334         return;
335     for (ptr = ptr->children; ptr; ptr = ptr->next)
336     {
337         struct _xmlAttr *attr;
338         if (ptr->type != XML_ELEMENT_NODE)
339             continue;
340         attr = ptr->properties;
341         if (!strcmp((const char *) ptr->name, "listen"))
342         {
343             /*
344               <listen id="listenerid">tcp:@:9999</listen>
345             */
346             const char *id = 0;
347             const char *address =
348                 nmem_dup_xml_content(gfs_nmem, ptr->children);
349             for ( ; attr; attr = attr->next)
350                 if (!xmlStrcmp(attr->name, BAD_CAST "id")
351                     && attr->children && attr->children->type == XML_TEXT_NODE)
352                     id = nmem_dup_xml_content(gfs_nmem, attr->children);
353             if (address)
354             {
355                 *gfslp = gfs_listen_new(id, address);
356                 gfslp = &(*gfslp)->next;
357                 *gfslp = 0; /* make listener list consistent for search */
358             }
359         }
360         else if (!strcmp((const char *) ptr->name, "server"))
361         {
362             xmlNodePtr ptr_server = ptr;
363             xmlNodePtr ptr;
364             const char *listenref = 0;
365             const char *id = 0;
366             struct gfs_server *gfs;
367
368             for ( ; attr; attr = attr->next)
369                 if (!xmlStrcmp(attr->name, BAD_CAST "listenref") 
370                     && attr->children && attr->children->type == XML_TEXT_NODE)
371                     listenref = nmem_dup_xml_content(gfs_nmem, attr->children);
372                 else if (!xmlStrcmp(attr->name, BAD_CAST "id")
373                          && attr->children
374                          && attr->children->type == XML_TEXT_NODE)
375                     id = nmem_dup_xml_content(gfs_nmem, attr->children);
376                 else
377                     yaz_log(YLOG_WARN, "Unknown attribute '%s' for server",
378                             attr->name);
379             gfs = *gfsp = gfs_server_new();
380             gfs->server_node_ptr = ptr_server;
381             if (listenref)
382             {
383                 int id_no;
384                 struct gfs_listen *gl = gfs_listen_list;
385                 for (id_no = 1; gl; gl = gl->next, id_no++)
386                     if (gl->id && !strcmp(gl->id, listenref))
387                     {
388                         gfs->listen_ref = id_no;
389                         break;
390                     }
391                 if (!gl)
392                     yaz_log(YLOG_WARN, "Non-existent listenref '%s' in server "
393                             "config element", listenref);
394             }
395             for (ptr = ptr_server->children; ptr; ptr = ptr->next)
396             {
397                 if (ptr->type != XML_ELEMENT_NODE)
398                     continue;
399                 if (!strcmp((const char *) ptr->name, "host"))
400                 {
401                     gfs->host = nmem_dup_xml_content(gfs_nmem,
402                                                          ptr->children);
403                 }
404                 else if (!strcmp((const char *) ptr->name, "config"))
405                 {
406                     strcpy(gfs->cb.configname,
407                            nmem_dup_xml_content(gfs_nmem, ptr->children));
408                 }
409                 else if (!strcmp((const char *) ptr->name, "cql2rpn"))
410                 {
411                     gfs->cql_transform = cql_transform_open_fname(
412                         nmem_dup_xml_content(gfs_nmem, ptr->children)
413                         );
414                 }
415                 else if (!strcmp((const char *) ptr->name, "ccl2rpn"))
416                 {
417                     char *name;
418                     FILE *f;
419
420                     name = nmem_dup_xml_content(gfs_nmem, ptr->children);
421                     if ((f = fopen(name, "r")) == 0) {
422                         yaz_log(YLOG_FATAL, "can't open CCL file '%s'", name);
423                         exit(1);
424                     }
425                     gfs->ccl_transform = ccl_qual_mk();
426                     ccl_qual_file (gfs->ccl_transform, f);
427                     fclose(f);
428                 }
429                 else if (!strcmp((const char *) ptr->name, "directory"))
430                 {
431                     gfs->directory = 
432                         nmem_dup_xml_content(gfs_nmem, ptr->children);
433                 }
434                 else if (!strcmp((const char *) ptr->name, "docpath"))
435                 {
436                     gfs->docpath = 
437                         nmem_dup_xml_content(gfs_nmem, ptr->children);
438                 }
439                 else if (!strcmp((const char *) ptr->name, "maximumrecordsize"))
440                 {
441                     gfs->cb.maxrecordsize = atoi(
442                         nmem_dup_xml_content(gfs_nmem, ptr->children));
443                 }
444                 else if (!strcmp((const char *) ptr->name, "stylesheet"))
445                 {
446                     char *s = nmem_dup_xml_content(gfs_nmem, ptr->children);
447                     gfs->stylesheet = (char *)
448                         nmem_malloc(gfs_nmem, strlen(s) + 2);
449                     sprintf(gfs->stylesheet, "/%s", s);
450                 }
451                 else if (!strcmp((const char *) ptr->name, "explain"))
452                 {
453                     ; /* being processed separately */
454                 }
455                 else if (!strcmp((const char *) ptr->name, "retrievalinfo"))
456                 {
457                     if (yaz_retrieval_configure(gfs->retrieval, ptr))
458                     {       
459                         yaz_log(YLOG_FATAL, "%s in config %s",
460                                 yaz_retrieval_get_error(gfs->retrieval),
461                                 control_block.xml_config);
462                         exit(1);
463                     }
464                 }
465                 else
466                 {
467                     yaz_log(YLOG_FATAL, "Unknown element '%s' in config %s",
468                             ptr->name, control_block.xml_config);
469                     exit(1);
470                 }
471             }
472             gfsp = &(*gfsp)->next;
473         }
474     }
475 #endif
476     *gfsp = 0;
477 }
478
479 static void xml_config_open(void)
480 {
481     if (!getcwd(gfs_root_dir, FILENAME_MAX))
482     {
483         yaz_log(YLOG_WARN|YLOG_ERRNO, "getcwd failed");
484         gfs_root_dir[0] = '\0';
485     }
486 #ifdef WIN32
487     init_control_tls = 1;
488     current_control_tls = TlsAlloc();
489 #elif YAZ_POSIX_THREADS
490     init_control_tls = 1;
491     pthread_key_create(&current_control_tls, 0);
492 #endif
493     
494     gfs_nmem = nmem_create();
495 #if YAZ_HAVE_XML2
496     if (control_block.xml_config[0] == '\0')
497         return;
498
499     if (!xml_config_doc)
500     {
501         xml_config_doc = xmlParseFile(control_block.xml_config);
502         if (!xml_config_doc)
503         {
504             yaz_log(YLOG_FATAL, "Could not parse %s", control_block.xml_config);
505             exit(1);
506         }
507         else
508         {
509             int noSubstitutions = xmlXIncludeProcess(xml_config_doc);
510             if (noSubstitutions == -1)
511             {
512                 yaz_log(YLOG_WARN, "XInclude processing failed for config %s",
513                         control_block.xml_config);
514                 exit(1);
515             }
516         }
517     }
518     xml_config_read();
519 #endif
520 }
521
522 static void xml_config_close(void)
523 {
524 #if YAZ_HAVE_XML2
525     if (xml_config_doc)
526     {
527         xmlFreeDoc(xml_config_doc);
528         xml_config_doc = 0;
529     }
530 #endif
531     gfs_server_list = 0;
532     nmem_destroy(gfs_nmem);
533 #ifdef WIN32
534     if (init_control_tls)
535         TlsFree(current_control_tls);
536 #elif YAZ_POSIX_THREADS
537     if (init_control_tls)
538         pthread_key_delete(current_control_tls);
539 #endif
540 }
541
542 static void xml_config_add_listeners(void)
543 {
544     struct gfs_listen *gfs = gfs_listen_list;
545     int id_no;
546
547     for (id_no = 1; gfs; gfs = gfs->next, id_no++)
548     {
549         if (gfs->address)
550             add_listener(gfs->address, id_no);
551     }
552 }
553
554 static void xml_config_bend_start(void)
555 {
556     if (control_block.xml_config[0])
557     {
558         struct gfs_server *gfs = gfs_server_list;
559         for (; gfs; gfs = gfs->next)
560         {
561             yaz_log(YLOG_DEBUG, "xml_config_bend_start config=%s",
562                     gfs->cb.configname);
563             statserv_setcontrol(&gfs->cb);
564             if (control_block.bend_start)
565             {
566                 gfs_server_chdir(gfs);
567                 (control_block.bend_start)(&gfs->cb);
568             }
569         }
570     }
571     else
572     {
573         yaz_log(YLOG_DEBUG, "xml_config_bend_start default config");
574         statserv_setcontrol(&control_block);
575         if (control_block.bend_start)
576             (*control_block.bend_start)(&control_block);
577     }
578 }
579
580 static void xml_config_bend_stop(void)
581 {
582     if (control_block.xml_config[0])
583     {
584         struct gfs_server *gfs = gfs_server_list;
585         for (; gfs; gfs = gfs->next)
586         {
587             yaz_log(YLOG_DEBUG, "xml_config_bend_stop config=%s",
588                     gfs->cb.configname);
589             statserv_setcontrol(&gfs->cb);
590             if (control_block.bend_stop)
591                 (control_block.bend_stop)(&gfs->cb);
592         }
593     }
594     else
595     {
596         yaz_log(YLOG_DEBUG, "xml_config_bend_stop default config");
597         statserv_setcontrol(&control_block);
598         if (control_block.bend_stop)
599             (*control_block.bend_stop)(&control_block);
600     }
601 }
602
603 /*
604  * handle incoming connect requests.
605  * The dynamic mode is a bit tricky mostly because we want to avoid
606  * doing all of the listening and accepting in the parent - it's
607  * safer that way.
608  */
609 #ifdef WIN32
610
611 typedef struct _ThreadList ThreadList;
612
613 struct _ThreadList
614 {
615     HANDLE hThread;
616     IOCHAN pIOChannel;
617     ThreadList *pNext;
618 };
619
620 static ThreadList *pFirstThread;
621 static CRITICAL_SECTION Thread_CritSect;
622 static BOOL bInitialized = FALSE;
623
624 static void ThreadList_Initialize()
625 {
626     /* Initialize the critical Sections */
627     InitializeCriticalSection(&Thread_CritSect);
628
629      /* Set the first thraed */
630     pFirstThread = NULL;
631
632     /* we have been initialized */
633     bInitialized = TRUE;
634 }
635
636 static void statserv_add(HANDLE hThread, IOCHAN pIOChannel)
637 {
638     /* Only one thread can go through this section at a time */
639     EnterCriticalSection(&Thread_CritSect);
640
641     {
642         /* Lets create our new object */
643         ThreadList *pNewThread = (ThreadList *)malloc(sizeof(ThreadList));
644         pNewThread->hThread = hThread;
645         pNewThread->pIOChannel = pIOChannel;
646         pNewThread->pNext = pFirstThread;
647         pFirstThread = pNewThread;
648
649         /* Lets let somebody else create a new object now */
650         LeaveCriticalSection(&Thread_CritSect);
651     }
652 }
653
654 void statserv_remove(IOCHAN pIOChannel)
655 {
656     /* Only one thread can go through this section at a time */
657     EnterCriticalSection(&Thread_CritSect);
658
659     {
660         ThreadList *pCurrentThread = pFirstThread;
661         ThreadList *pNextThread;
662         ThreadList *pPrevThread =NULL;
663
664         /* Step through all the threads */
665         for (; pCurrentThread != NULL; pCurrentThread = pNextThread)
666         {
667             /* We only need to compare on the IO Channel */
668             if (pCurrentThread->pIOChannel == pIOChannel)
669             {
670                 /* We have found the thread we want to delete */
671                 /* First of all reset the next pointers */
672                 if (pPrevThread == NULL)
673                     pFirstThread = pCurrentThread->pNext;
674                 else
675                     pPrevThread->pNext = pCurrentThread->pNext;
676
677                 /* All we need todo now is delete the memory */
678                 free(pCurrentThread);
679
680                 /* No need to look at any more threads */
681                 pNextThread = NULL;
682             }
683             else
684             {
685                 /* We need to look at another thread */
686                 pNextThread = pCurrentThread->pNext;
687                 pPrevThread = pCurrentThread;
688             }
689         }
690
691         /* Lets let somebody else remove an object now */
692         LeaveCriticalSection(&Thread_CritSect);
693     }
694 }
695
696 /* WIN32 statserv_closedown */
697 void statserv_closedown()
698 {
699     /* Shouldn't do anything if we are not initialized */
700     if (bInitialized)
701     {
702         int iHandles = 0;
703         HANDLE *pThreadHandles = NULL;
704
705         /* We need to stop threads adding and removing while we */
706         /* start the closedown process */
707         EnterCriticalSection(&Thread_CritSect);
708
709         {
710             /* We have exclusive access to the thread stuff now */
711             /* Y didn't i use a semaphore - Oh well never mind */
712             ThreadList *pCurrentThread = pFirstThread;
713
714             /* Before we do anything else, we need to shutdown the listener */
715             if (pListener != NULL)
716                 iochan_destroy(pListener);
717
718             for (; pCurrentThread != NULL; pCurrentThread = pCurrentThread->pNext)
719             {
720                 /* Just destroy the IOCHAN, that should do the trick */
721                 iochan_destroy(pCurrentThread->pIOChannel);
722                 closesocket(pCurrentThread->pIOChannel->fd);
723
724                 /* Keep a running count of our handles */
725                 iHandles++;
726             }
727
728             if (iHandles > 0)
729             {
730                 HANDLE *pCurrentHandle ;
731
732                 /* Allocate the thread handle array */
733                 pThreadHandles = (HANDLE *)malloc(sizeof(HANDLE) * iHandles);
734                 pCurrentHandle = pThreadHandles; 
735
736                 for (pCurrentThread = pFirstThread;
737                      pCurrentThread != NULL;
738                      pCurrentThread = pCurrentThread->pNext, pCurrentHandle++)
739                 {
740                     /* Just the handle */
741                     *pCurrentHandle = pCurrentThread->hThread;
742                 }
743             }
744
745             /* We can now leave the critical section */
746             LeaveCriticalSection(&Thread_CritSect);
747         }
748
749         /* Now we can really do something */
750         if (iHandles > 0)
751         {
752             yaz_log(log_server, "waiting for %d to die", iHandles);
753             /* This will now wait, until all the threads close */
754             WaitForMultipleObjects(iHandles, pThreadHandles, TRUE, INFINITE);
755
756             /* Free the memory we allocated for the handle array */
757             free(pThreadHandles);
758         }
759
760         xml_config_bend_stop();
761         /* No longer require the critical section, since all threads are dead */
762         DeleteCriticalSection(&Thread_CritSect);
763     }
764     xml_config_close();
765 }
766
767 void __cdecl event_loop_thread (IOCHAN iochan)
768 {
769     iochan_event_loop (&iochan);
770 }
771
772 /* WIN32 listener */
773 static void listener(IOCHAN h, int event)   
774 {
775     COMSTACK line = (COMSTACK) iochan_getdata(h);
776     IOCHAN parent_chan = line->user;
777     association *newas;
778     int res;
779     HANDLE newHandle;
780
781     if (event == EVENT_INPUT)
782     {
783         COMSTACK new_line;
784         IOCHAN new_chan;
785
786         if ((res = cs_listen(line, 0, 0)) < 0)
787         {
788             yaz_log(YLOG_FATAL|YLOG_ERRNO, "cs_listen failed");
789             return;
790         }
791         else if (res == 1)
792             return; /* incomplete */
793         yaz_log(YLOG_DEBUG, "listen ok");
794         new_line = cs_accept(line);
795         if (!new_line)
796         {
797             yaz_log(YLOG_FATAL, "Accept failed.");
798             return;
799         }
800         yaz_log(YLOG_DEBUG, "Accept ok");
801
802         if (!(new_chan = iochan_create(cs_fileno(new_line), ir_session,
803                                        EVENT_INPUT, parent_chan->chan_id)))
804         {
805             yaz_log(YLOG_FATAL, "Failed to create iochan");
806             iochan_destroy(h);
807             return;
808         }
809
810         yaz_log(YLOG_DEBUG, "Creating association");
811         if (!(newas = create_association(new_chan, new_line,
812                                          control_block.apdufile)))
813         {
814             yaz_log(YLOG_FATAL, "Failed to create new assoc.");
815             iochan_destroy(h);
816             return;
817         }
818         newas->cs_get_mask = EVENT_INPUT;
819         newas->cs_put_mask = 0;
820         newas->cs_accept_mask = 0;
821
822         yaz_log(YLOG_DEBUG, "Setting timeout %d", control_block.idle_timeout);
823         iochan_setdata(new_chan, newas);
824         iochan_settimeout(new_chan, 60);
825
826         /* Now what we need todo is create a new thread with this iochan as
827            the parameter */
828         newHandle = (HANDLE) _beginthread(event_loop_thread, 0, new_chan);
829         if (newHandle == (HANDLE) -1)
830         {
831             
832             yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create new thread.");
833             iochan_destroy(h);
834             return;
835         }
836         /* We successfully created the thread, so add it to the list */
837         statserv_add(newHandle, new_chan);
838
839         yaz_log(YLOG_DEBUG, "Created new thread, id = %ld iochan %p",(long) newHandle, new_chan);
840         iochan_setflags(h, EVENT_INPUT | EVENT_EXCEPT); /* reset listener */
841     }
842     else
843     {
844         yaz_log(YLOG_FATAL, "Bad event on listener.");
845         iochan_destroy(h);
846         return;
847     }
848 }
849
850 int statserv_must_terminate(void)
851 {
852     return 0;
853 }
854
855 #else /* ! WIN32 */
856
857 static int term_flag = 0;
858 /* To save having an #ifdef in event_loop we need to
859    define this empty function 
860 */
861 int statserv_must_terminate(void)
862 {
863     return term_flag;
864 }
865
866 void statserv_remove(IOCHAN pIOChannel)
867 {
868 }
869
870 void statserv_closedown()
871 {
872     IOCHAN p;
873
874     xml_config_bend_stop();
875     for (p = pListener; p; p = p->next)
876     {
877         iochan_destroy(p);
878     }
879     xml_config_close();
880 }
881
882 void sigterm(int sig)
883 {
884     term_flag = 1;
885 }
886
887 static void *new_session (void *vp);
888 static int no_sessions = 0;
889
890 /* UNIX listener */
891 static void listener(IOCHAN h, int event)
892 {
893     COMSTACK line = (COMSTACK) iochan_getdata(h);
894     int res;
895
896     if (event == EVENT_INPUT)
897     {
898         COMSTACK new_line;
899         if ((res = cs_listen_check(line, 0, 0, control_block.check_ip,
900                                    control_block.daemon_name)) < 0)
901         {
902             yaz_log(YLOG_WARN|YLOG_ERRNO, "cs_listen failed");
903             return;
904         }
905         else if (res == 1)
906         {
907             yaz_log(YLOG_WARN, "cs_listen incomplete");
908             return;
909         }
910         new_line = cs_accept(line);
911         if (!new_line)
912         {
913             yaz_log(YLOG_FATAL, "Accept failed.");
914             iochan_setflags(h, EVENT_INPUT | EVENT_EXCEPT); /* reset listener */
915             return;
916         }
917
918         yaz_log(log_sessiondetail, "Connect from %s", cs_addrstr(new_line));
919
920         no_sessions++;
921         if (control_block.dynamic)
922         {
923             if ((res = fork()) < 0)
924             {
925                 yaz_log(YLOG_FATAL|YLOG_ERRNO, "fork");
926                 iochan_destroy(h);
927                 return;
928             }
929             else if (res == 0) /* child */
930             {
931                 char nbuf[100];
932                 IOCHAN pp;
933
934                 for (pp = pListener; pp; pp = iochan_getnext(pp))
935                 {
936                     COMSTACK l = (COMSTACK)iochan_getdata(pp);
937                     cs_close(l);
938                     iochan_destroy(pp);
939                 }
940                 sprintf(nbuf, "%s(%d)", me, no_sessions);
941                 yaz_log_init_prefix(nbuf);
942                 /* ensure that bend_stop is not called when each child exits -
943                    only for the main process ..  */
944                 control_block.bend_stop = 0;
945             }
946             else /* parent */
947             {
948                 cs_close(new_line);
949                 return;
950             }
951         }
952
953         if (control_block.threads)
954         {
955 #if YAZ_POSIX_THREADS
956             pthread_t child_thread;
957             pthread_create (&child_thread, 0, new_session, new_line);
958             pthread_detach (child_thread);
959 #elif YAZ_GNU_THREADS
960             pth_attr_t attr;
961             pth_t child_thread;
962
963             attr = pth_attr_new ();
964             pth_attr_set (attr, PTH_ATTR_JOINABLE, FALSE);
965             pth_attr_set (attr, PTH_ATTR_STACK_SIZE, 32*1024);
966             pth_attr_set (attr, PTH_ATTR_NAME, "session");
967             yaz_log (YLOG_DEBUG, "pth_spawn begin");
968             child_thread = pth_spawn (attr, new_session, new_line);
969             yaz_log (YLOG_DEBUG, "pth_spawn finish");
970             pth_attr_destroy (attr);
971 #else
972             new_session(new_line);
973 #endif
974         }
975         else
976             new_session(new_line);
977     }
978     else if (event == EVENT_TIMEOUT)
979     {
980         yaz_log(log_server, "Shutting down listener.");
981         iochan_destroy(h);
982     }
983     else
984     {
985         yaz_log(YLOG_FATAL, "Bad event on listener.");
986         iochan_destroy(h);
987     }
988 }
989
990 static void *new_session (void *vp)
991 {
992     char *a;
993     association *newas;
994     IOCHAN new_chan;
995     COMSTACK new_line = (COMSTACK) vp;
996     IOCHAN parent_chan = (IOCHAN) new_line->user;
997
998     unsigned cs_get_mask, cs_accept_mask, mask =  
999         ((new_line->io_pending & CS_WANT_WRITE) ? EVENT_OUTPUT : 0) |
1000         ((new_line->io_pending & CS_WANT_READ) ? EVENT_INPUT : 0);
1001
1002     if (mask)
1003     {
1004         cs_accept_mask = mask;  /* accept didn't complete */
1005         cs_get_mask = 0;
1006     }
1007     else
1008     {
1009         cs_accept_mask = 0;     /* accept completed.  */
1010         cs_get_mask = mask = EVENT_INPUT;
1011     }
1012
1013     if (!(new_chan = iochan_create(cs_fileno(new_line), ir_session, mask,
1014                                    parent_chan->chan_id)))
1015     {
1016         yaz_log(YLOG_FATAL, "Failed to create iochan");
1017         return 0;
1018     }
1019     if (!(newas = create_association(new_chan, new_line,
1020                                      control_block.apdufile)))
1021     {
1022         yaz_log(YLOG_FATAL, "Failed to create new assoc.");
1023         return 0;
1024     }
1025     newas->cs_accept_mask = cs_accept_mask;
1026     newas->cs_get_mask = cs_get_mask;
1027
1028     iochan_setdata(new_chan, newas);
1029     iochan_settimeout(new_chan, 60);
1030 #if 1
1031     a = cs_addrstr(new_line);
1032 #else
1033     a = 0;
1034 #endif
1035     yaz_log(log_session, "Session - OK %d %s %ld",
1036             no_sessions, a ? a : "[Unknown]", (long) getpid());
1037     if (max_sessions && no_sessions >= max_sessions)
1038         control_block.one_shot = 1;
1039     if (control_block.threads)
1040     {
1041         iochan_event_loop(&new_chan);
1042     }
1043     else
1044     {
1045         new_chan->next = pListener;
1046         pListener = new_chan;
1047     }
1048     return 0;
1049 }
1050
1051 /* UNIX */
1052 #endif
1053
1054 static void inetd_connection(int what)
1055 {
1056     COMSTACK line;
1057     IOCHAN chan;
1058     association *assoc;
1059     char *addr;
1060
1061     if ((line = cs_createbysocket(0, tcpip_type, 0, what)))
1062     {
1063         if ((chan = iochan_create(cs_fileno(line), ir_session, EVENT_INPUT,
1064                                   0)))
1065         {
1066             if ((assoc = create_association(chan, line,
1067                                             control_block.apdufile)))
1068             {
1069                 iochan_setdata(chan, assoc);
1070                 iochan_settimeout(chan, 60);
1071                 addr = cs_addrstr(line);
1072                 yaz_log(log_sessiondetail, "Inetd association from %s",
1073                         addr ? addr : "[UNKNOWN]");
1074                 assoc->cs_get_mask = EVENT_INPUT;
1075             }
1076             else
1077             {
1078                 yaz_log(YLOG_FATAL, "Failed to create association structure");
1079             }
1080             chan->next = pListener;
1081             pListener = chan;
1082         }
1083         else
1084         {
1085             yaz_log(YLOG_FATAL, "Failed to create iochan");
1086         }
1087     }
1088     else
1089     {
1090         yaz_log(YLOG_ERRNO|YLOG_FATAL, "Failed to create comstack on socket 0");
1091     }
1092 }
1093
1094 /*
1095  * Set up a listening endpoint, and give it to the event-handler.
1096  */
1097 static int add_listener(char *where, int listen_id)
1098 {
1099     COMSTACK l;
1100     void *ap;
1101     IOCHAN lst = NULL;
1102     const char *mode;
1103
1104     if (control_block.dynamic)
1105         mode = "dynamic";
1106     else if (control_block.threads)
1107         mode = "threaded";
1108     else
1109         mode = "static";
1110
1111     yaz_log(log_server, "Adding %s listener on %s id=%d", mode, where,
1112             listen_id);
1113
1114     l = cs_create_host(where, 2, &ap);
1115     if (!l)
1116     {
1117         yaz_log(YLOG_FATAL, "Failed to listen on %s", where);
1118         return -1;
1119     }
1120     if (*control_block.cert_fname)
1121         cs_set_ssl_certificate_file(l, control_block.cert_fname);
1122
1123     if (cs_bind(l, ap, CS_SERVER) < 0)
1124     {
1125         if (cs_errno(l) == CSYSERR)
1126             yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to bind to %s", where);
1127         else
1128             yaz_log(YLOG_FATAL, "Failed to bind to %s: %s", where,
1129                     cs_strerror(l));
1130         cs_close (l);
1131         return -1;
1132     }
1133     if (!(lst = iochan_create(cs_fileno(l), listener, EVENT_INPUT |
1134          EVENT_EXCEPT, listen_id)))
1135     {
1136         yaz_log(YLOG_FATAL|YLOG_ERRNO, "Failed to create IOCHAN-type");
1137         cs_close (l);
1138         return -1;
1139     }
1140     iochan_setdata(lst, l); /* user-defined data for listener is COMSTACK */
1141     l->user = lst;  /* user-defined data for COMSTACK is listener chan */
1142
1143     /* Add listener to chain */
1144     lst->next = pListener;
1145     pListener = lst;
1146     return 0; /* OK */
1147 }
1148
1149 #ifndef WIN32
1150 /* UNIX only (for windows we don't need to catch the signals) */
1151 static void catchchld(int num)
1152 {
1153     while (waitpid(-1, 0, WNOHANG) > 0)
1154         ;
1155     signal(SIGCHLD, catchchld);
1156 }
1157 #endif
1158
1159 statserv_options_block *statserv_getcontrol(void)
1160 {
1161 #ifdef WIN32
1162     if (init_control_tls)
1163         return (statserv_options_block *) TlsGetValue(current_control_tls);
1164     else
1165         return &control_block;
1166 #elif YAZ_POSIX_THREADS
1167     if (init_control_tls)
1168         return (statserv_options_block *)
1169             pthread_getspecific(current_control_tls);
1170     else
1171         return &control_block;
1172 #else
1173     if (current_control_block)
1174         return current_control_block;
1175     return &control_block;
1176 #endif
1177 }
1178
1179 void statserv_setcontrol(statserv_options_block *block)
1180 {
1181     chdir(gfs_root_dir);
1182 #ifdef WIN32
1183     if (init_control_tls)
1184         TlsSetValue(current_control_tls, block);
1185 #elif YAZ_POSIX_THREADS
1186     if (init_control_tls)
1187         pthread_setspecific(current_control_tls, block);
1188 #else
1189     current_control_block = block;
1190 #endif
1191 }
1192
1193 static void statserv_reset(void)
1194 {
1195 }
1196
1197 int statserv_start(int argc, char **argv)
1198 {
1199     char sep;
1200 #ifdef WIN32
1201     /* We need to initialize the thread list */
1202     ThreadList_Initialize();
1203 /* WIN32 */
1204 #endif
1205
1206
1207 #ifdef WIN32
1208     sep = '\\';
1209 #else
1210     sep = '/';
1211 #endif
1212     if ((me = strrchr (argv[0], sep)))
1213         me++; /* get the basename */
1214     else
1215         me = argv[0];
1216     programname = argv[0];
1217
1218     if (control_block.options_func(argc, argv))
1219         return 1;
1220
1221     xml_config_open();
1222     
1223     xml_config_bend_start();
1224
1225 #ifdef WIN32
1226     xml_config_add_listeners();
1227
1228     yaz_log (log_server, "Starting server %s", me);
1229     if (!pListener && *control_block.default_listen)
1230         add_listener(control_block.default_listen, 0);
1231 #else
1232 /* UNIX */
1233     if (control_block.inetd)
1234         inetd_connection(control_block.default_proto);
1235     else
1236     {
1237         static int hand[2];
1238         if (control_block.background)
1239         {
1240             /* create pipe so that parent waits until child has created
1241                PID (or failed) */
1242             if (pipe(hand) < 0)
1243             {
1244                 yaz_log(YLOG_FATAL|YLOG_ERRNO, "pipe");
1245                 return 1;
1246             }
1247             switch (fork())
1248             {
1249             case 0: 
1250                 break;
1251             case -1:
1252                 return 1;
1253             default:
1254                 close(hand[1]);
1255                 while(1)
1256                 {
1257                     char dummy[1];
1258                     int res = read(hand[0], dummy, 1);
1259                     if (res < 0 && yaz_errno() != EINTR)
1260                     {
1261                         yaz_log(YLOG_FATAL|YLOG_ERRNO, "read fork handshake");
1262                         break;
1263                     }
1264                     else if (res >= 0)
1265                         break;
1266                 }
1267                 close(hand[0]);
1268                 _exit(0);
1269             }
1270             /* child */
1271             close(hand[0]);
1272             if (setsid() < 0)
1273                 return 1;
1274             
1275             close(0);
1276             close(1);
1277             close(2);
1278             open("/dev/null", O_RDWR);
1279             dup(0); dup(0);
1280         }
1281         xml_config_add_listeners();
1282
1283         if (!pListener && *control_block.default_listen)
1284             add_listener(control_block.default_listen, 0);
1285         
1286         if (!pListener)
1287             return 1;
1288
1289         if (*control_block.pid_fname)
1290         {
1291             FILE *f = fopen(control_block.pid_fname, "w");
1292             if (!f)
1293             {
1294                 yaz_log(YLOG_FATAL|YLOG_ERRNO, "Couldn't create %s", 
1295                         control_block.pid_fname);
1296                 exit(0);
1297             }
1298             fprintf(f, "%ld", (long) getpid());
1299             fclose(f);
1300         }
1301         
1302         if (control_block.background)
1303             close(hand[1]);
1304
1305
1306         yaz_log (log_server, "Starting server %s pid=%ld", programname, 
1307                  (long) getpid());
1308 #if 0
1309         sigset_t sigs_to_block;
1310         
1311         sigemptyset(&sigs_to_block);
1312         sigaddset (&sigs_to_block, SIGTERM);
1313         pthread_sigmask (SIG_BLOCK, &sigs_to_block, 0);
1314         /* missing... */
1315 #endif
1316         if (control_block.dynamic)
1317             signal(SIGCHLD, catchchld);
1318     }
1319     signal (SIGPIPE, SIG_IGN);
1320     signal (SIGTERM, sigterm);
1321     if (*control_block.setuid)
1322     {
1323         struct passwd *pw;
1324         
1325         if (!(pw = getpwnam(control_block.setuid)))
1326         {
1327             yaz_log(YLOG_FATAL, "%s: Unknown user", control_block.setuid);
1328             return(1);
1329         }
1330         if (setuid(pw->pw_uid) < 0)
1331         {
1332             yaz_log(YLOG_FATAL|YLOG_ERRNO, "setuid");
1333             exit(1);
1334         }
1335     }
1336 /* UNIX */
1337 #endif
1338     if (pListener == NULL)
1339         return 1;
1340     yaz_log(YLOG_DEBUG, "Entering event loop.");
1341     return iochan_event_loop(&pListener);
1342 }
1343
1344 static void option_copy(char *dst, const char *src)
1345 {
1346     strncpy(dst, src ? src : "", 127);
1347     dst[127] = '\0';
1348 }
1349
1350 int check_options(int argc, char **argv)
1351 {
1352     int ret = 0, r;
1353     char *arg;
1354
1355     yaz_log_init_level(yaz_log_mask_str(STAT_DEFAULT_LOG_LEVEL)); 
1356
1357     yaz_log_xml_errors(0, YLOG_WARN);
1358     get_logbits(1); 
1359
1360     while ((ret = options("1a:iszSTl:v:u:c:w:t:k:d:A:p:DC:f:m:r:",
1361                           argv, argc, &arg)) != -2)
1362     {
1363         switch (ret)
1364         {
1365         case 0:
1366             if (add_listener(arg, 0))
1367                 return 1;  /* failed to create listener */
1368             break;
1369         case '1':        
1370             control_block.one_shot = 1;
1371             control_block.dynamic = 0;
1372             break;
1373         case 'z':
1374             control_block.default_proto = PROTO_Z3950;
1375             break;
1376         case 's':
1377             fprintf (stderr, "%s: SR protocol no longer supported\n", me);
1378             exit (1);
1379             break;
1380         case 'S':
1381             control_block.dynamic = 0;
1382             break;
1383         case 'T':
1384 #if YAZ_POSIX_THREADS
1385             control_block.dynamic = 0;
1386             control_block.threads = 1;
1387 #elif YAZ_GNU_THREADS
1388             control_block.dynamic = 0;
1389             control_block.threads = 1;
1390 #else
1391             fprintf(stderr, "%s: Threaded mode not available.\n", me);
1392             return 1;
1393 #endif
1394             break;
1395         case 'l':
1396             option_copy(control_block.logfile, arg);
1397             yaz_log_init_file(control_block.logfile);
1398             break;
1399         case 'm':
1400             if (!arg) {
1401                 fprintf(stderr, "%s: Specify time format for log file.\n", me);
1402                 return(1);
1403             }
1404             yaz_log_time_format(arg);
1405             break;
1406         case 'v':
1407             yaz_log_init_level(yaz_log_mask_str(arg));
1408             get_logbits(1); 
1409             break;
1410         case 'a':
1411             option_copy(control_block.apdufile, arg);
1412             break;
1413         case 'u':
1414             option_copy(control_block.setuid, arg);
1415             break;
1416         case 'c':
1417             option_copy(control_block.configname, arg);
1418             break;
1419         case 'C':
1420             option_copy(control_block.cert_fname, arg);
1421             break;
1422         case 'd':
1423             option_copy(control_block.daemon_name, arg);
1424             break;
1425         case 't':
1426             if (!arg || !(r = atoi(arg)))
1427             {
1428                 fprintf(stderr, "%s: Specify positive timeout for -t.\n", me);
1429                 return(1);
1430             }
1431             control_block.idle_timeout = r;
1432             break;
1433         case  'k':
1434             if (!arg || !(r = atoi(arg)))
1435             {
1436                 fprintf(stderr, "%s: Specify positive size for -k.\n", me);
1437                 return(1);
1438             }
1439             control_block.maxrecordsize = r * 1024;
1440             break;
1441         case 'i':
1442             control_block.inetd = 1;
1443             break;
1444         case 'w':
1445             if (chdir(arg))
1446             {
1447                 perror(arg);            
1448                 return 1;
1449             }
1450             break;
1451         case 'A':
1452             max_sessions = atoi(arg);
1453             break;
1454         case 'p':
1455             option_copy(control_block.pid_fname, arg);
1456             break;
1457         case 'f':
1458 #if YAZ_HAVE_XML2
1459             option_copy(control_block.xml_config, arg);
1460 #else
1461             fprintf(stderr, "%s: Option -f unsupported since YAZ is compiled without Libxml2 support\n", me);
1462             exit(1);
1463 #endif
1464             break;
1465         case 'D':
1466             control_block.background = 1;
1467             break;
1468         case 'r':
1469             if (!arg || !(r = atoi(arg)))
1470             {
1471                 fprintf(stderr, "%s: Specify positive size for -r.\n", me);
1472                 return(1);
1473             }
1474             yaz_log_init_max_size(r * 1024);
1475             break;
1476         default:
1477             fprintf(stderr, "Usage: %s [ -a <pdufile> -v <loglevel>"
1478                     " -l <logfile> -u <user> -c <config> -t <minutes>"
1479                     " -k <kilobytes> -d <daemon> -p <pidfile> -C certfile"
1480                         " -ziDST1 -m <time-format> -w <directory> <listener-addr>... ]\n", me);
1481             return 1;
1482         }
1483     }
1484     return 0;
1485 }
1486
1487 #ifdef WIN32
1488 typedef struct _Args
1489 {
1490     char **argv;
1491     int argc;
1492 } Args; 
1493
1494 static Args ArgDetails;
1495
1496 /* name of the executable */
1497 #define SZAPPNAME            "server"
1498
1499 /* list of service dependencies - "dep1\0dep2\0\0" */
1500 #define SZDEPENDENCIES       ""
1501
1502 int statserv_main(int argc, char **argv,
1503                   bend_initresult *(*bend_init)(bend_initrequest *r),
1504                   void (*bend_close)(void *handle))
1505 {
1506     struct statserv_options_block *cb = &control_block;
1507     cb->bend_init = bend_init;
1508     cb->bend_close = bend_close;
1509
1510     /* Lets setup the Arg structure */
1511     ArgDetails.argc = argc;
1512     ArgDetails.argv = argv;
1513     
1514     /* Now setup the service with the service controller */
1515     SetupService(argc, argv, &ArgDetails, SZAPPNAME,
1516                  cb->service_name, /* internal service name */
1517                  cb->service_display_name, /* displayed name */
1518                  SZDEPENDENCIES);
1519     return 0;
1520 }
1521
1522 int StartAppService(void *pHandle, int argc, char **argv)
1523 {
1524     /* Initializes the App */
1525     return 1;
1526 }
1527
1528 void RunAppService(void *pHandle)
1529 {
1530     Args *pArgs = (Args *)pHandle;
1531     
1532     /* Starts the app running */
1533     statserv_start(pArgs->argc, pArgs->argv);
1534 }
1535
1536 void StopAppService(void *pHandle)
1537 {
1538     /* Stops the app */
1539     statserv_closedown();
1540     statserv_reset();
1541 }
1542 /* WIN32 */
1543 #else
1544 /* UNIX */
1545 int statserv_main(int argc, char **argv,
1546                   bend_initresult *(*bend_init)(bend_initrequest *r),
1547                   void (*bend_close)(void *handle))
1548 {
1549     int ret;
1550
1551     control_block.bend_init = bend_init;
1552     control_block.bend_close = bend_close;
1553
1554     ret = statserv_start (argc, argv);
1555     statserv_closedown ();
1556     statserv_reset();
1557     return ret;
1558 }
1559 #endif
1560 /*
1561  * Local variables:
1562  * c-basic-offset: 4
1563  * indent-tabs-mode: nil
1564  * End:
1565  * vim: shiftwidth=4 tabstop=8 expandtab
1566  */
1567