SIGTERM: kill all child processes immediately MP-525
[metaproxy-moved-to-github.git] / src / metaproxy_prog.cpp
1 /* This file is part of Metaproxy.
2    Copyright (C) Index Data
3
4 Metaproxy is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
7 version.
8
9 Metaproxy is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18
19 #include "config.hpp"
20
21 #include <yaz/log.h>
22 #include <yaz/options.h>
23 #include <yaz/daemon.h>
24
25 #include <yaz/sc.h>
26 #include <iostream>
27 #include <stdexcept>
28 #include <libxml/xinclude.h>
29
30 #include <metaproxy/filter.hpp>
31 #include <metaproxy/package.hpp>
32 #include <metaproxy/util.hpp>
33 #include <metaproxy/router_xml.hpp>
34
35 #if HAVE_UNISTD_H
36 #include <unistd.h>
37 #endif
38 #include <signal.h>
39 #ifdef WIN32
40 #include <direct.h>
41 #include <io.h>
42 #include <process.h>
43 #endif
44
45 namespace mp = metaproxy_1;
46
47 mp::RouterXML *routerp = 0;
48
49 static void set_log_prefix(void)
50 {
51 #if HAVE_UNISTD_H
52     char str[80];
53
54     sprintf(str, "%lld", (long long) getpid());
55     yaz_log_init_prefix(str);
56 #endif
57 }
58
59 #if HAVE_UNISTD_H
60 static pid_t process_group = 0;
61 static int sig_received = 0;
62
63 static void sig_x_handler(int signo)
64 {
65     if (sig_received)
66         return;
67     sig_received = signo;
68     if (routerp)
69         routerp->stop(signo);
70     if (signo == SIGTERM)
71         kill(-process_group, SIGTERM); /* kill all children processes as well */
72 }
73 #endif
74
75 static void work_common(void *data)
76 {
77     set_log_prefix();
78 #if HAVE_UNISTD_H
79     process_group = getpgid(0); // save process group ID
80
81     signal(SIGTERM, sig_x_handler);
82     signal(SIGUSR1, sig_x_handler);
83 #endif
84     routerp = (mp::RouterXML*) data;
85     routerp->start();
86
87     mp::Package pack;
88     pack.router(*routerp).move();
89     yaz_log(YLOG_LOG, "metaproxy stop");
90     delete routerp;
91     routerp = 0;
92     _exit(0);
93 }
94
95 static void work_debug(void *data)
96 {
97     work_common(data);
98 }
99
100 static void work_normal(void *data)
101 {
102 #if HAVE_UNISTD_H
103     /* make the current working process group leader */
104     setpgid(0, 0);
105 #endif
106     work_common(data);
107 }
108
109 static int sc_main(
110     yaz_sc_t s,
111     int argc, char **argv)
112 {
113     bool test_config = false;
114     const char *fname = 0;
115     int ret;
116     char *arg;
117     unsigned mode = 0;
118     const char *pidfile = 0;
119     const char *uid = 0;
120
121     set_log_prefix();
122
123     while ((ret = options("c{config}:Dh{help}l:m:p:tu:v:V{version}w:X",
124                           argv, argc, &arg)) != -2)
125     {
126         switch (ret)
127         {
128         case 'c':
129             fname = arg;
130             break;
131         case 'D':
132             mode = YAZ_DAEMON_FORK|YAZ_DAEMON_KEEPALIVE;
133             break;
134         case 'h':
135             std::cerr << "metaproxy\n"
136                 " -h|--help     help\n"
137                 " -V|--version  version\n"
138                 " -v level\n"
139                 " -c|--config f config filename\n"
140                 " -D            daemon and keepalive operation\n"
141                 " -l f          log file f\n"
142                 " -m logformat  log time format (strftime)\n"
143                 " -p f          pid file f\n"
144                 " -t            test configuration\n"
145                 " -u id         change uid to id\n"
146                 " -w dir        changes working directory to dir\n"
147                 " -X            debug mode (no fork/daemon mode)\n"
148 #ifdef WIN32
149                 " -install      install windows service\n"
150                 " -remove       remove windows service\n"
151 #endif
152
153                       << std::endl;
154             break;
155         case 'l':
156             yaz_log_init_file(arg);
157             break;
158         case 'm':
159             yaz_log_time_format(arg);
160             break;
161         case 'p':
162             pidfile = arg;
163             break;
164         case 't':
165             test_config = true;
166             break;
167         case 'u':
168             uid = arg;
169             break;
170         case 'v':
171             yaz_log_init_level(yaz_log_mask_str(arg));
172             break;
173         case 'V':
174             std::cout << VERSION;
175 #ifdef VERSION_SHA1
176             std::cout << " " VERSION_SHA1;
177 #endif
178             std::cout << "\n";
179             return 0;
180             break;
181         case 'w':
182             if (
183 #ifdef WIN32
184                 _chdir(arg)
185 #else
186                 chdir(arg)
187 #endif
188                 )
189             {
190                 std::cerr << "chdir " << arg << " failed" << std::endl;
191                 return 1;
192             }
193         case 'X':
194             mode = YAZ_DAEMON_DEBUG;
195             break;
196         case -1:
197             std::cerr << "bad option: " << arg << std::endl;
198             return 1;
199         }
200     }
201     if (!fname)
202     {
203         std::cerr << "No configuration given; use -h for help\n";
204         return 1;
205     }
206
207     yaz_log(YLOG_LOG, "metaproxy %s " VERSION
208 #ifdef VERSION_SHA1
209                 " " VERSION_SHA1
210 #endif
211         , test_config ? "test" : "start"
212             );
213
214     yaz_log_xml_errors(0, YLOG_LOG);
215     xmlDocPtr doc = xmlReadFile(fname,
216                                 NULL,
217                                 XML_PARSE_XINCLUDE + XML_PARSE_NOBLANKS
218                                 + XML_PARSE_NSCLEAN + XML_PARSE_NONET );
219
220     if (!doc)
221     {
222         yaz_log(YLOG_FATAL,"XML parsing failed");
223         return 1;
224     }
225     // and perform Xinclude then
226     int r = xmlXIncludeProcess(doc);
227     if (r == -1)
228     {
229         yaz_log(YLOG_FATAL, "XInclude processing failed");
230         return 1;
231     }
232     mp::wrbuf base_path;
233     const char *last_p = strrchr(fname,
234 #ifdef WIN32
235                                  '\\'
236 #else
237                                  '/'
238 #endif
239         );
240     if (last_p)
241         wrbuf_write(base_path, fname, last_p - fname);
242     else
243         wrbuf_puts(base_path, ".");
244     ret = 0;
245     try {
246         mp::RouterXML *router =
247             new mp::RouterXML(doc, test_config, wrbuf_cstr(base_path));
248         if (!test_config)
249         {
250
251             yaz_sc_running(s);
252
253             yaz_daemon("metaproxy", mode, mode == YAZ_DAEMON_DEBUG ?
254                        work_debug : work_normal, router, pidfile, uid);
255         }
256     }
257     catch (std::logic_error &e) {
258         yaz_log(YLOG_FATAL,"std::logic error: %s" , e.what() );
259         ret = 1;
260     }
261     catch (std::runtime_error &e) {
262         yaz_log(YLOG_FATAL, "std::runtime error: %s" , e.what() );
263         ret = 1;
264     }
265     catch ( ... ) {
266         yaz_log(YLOG_FATAL, "Unknown Exception");
267         ret = 1;
268     }
269     xmlFreeDoc(doc);
270     if (test_config)
271         yaz_log(YLOG_LOG, "metaproxy test exit code %d", ret);
272     return ret;
273 }
274
275 static void sc_stop(yaz_sc_t s)
276 {
277     return;
278 }
279
280 int main(int argc, char **argv)
281 {
282     int ret;
283     yaz_sc_t s = yaz_sc_create("metaproxy", "metaproxy");
284
285     ret = yaz_sc_program(s, argc, argv, sc_main, sc_stop);
286
287     yaz_sc_destroy(&s);
288     exit(ret);
289 }
290
291 /*
292  * Local variables:
293  * c-basic-offset: 4
294  * c-file-style: "Stroustrup"
295  * indent-tabs-mode: nil
296  * End:
297  * vim: shiftwidth=4 tabstop=8 expandtab
298  */
299