https://issues.shibboleth.net/jira/browse/SSPCPP-206
[shibboleth/cpp-sp.git] / shibd / shibd.cpp
1 /*\r
2  *  Copyright 2001-2009 Internet2\r
3  *\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  *     http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 \r
17 /*\r
18  * shar.cpp -- the shibd "main" code.  All the functionality is elsewhere\r
19  *\r
20  * Created By:  Derek Atkins <derek@ihtfp.com>\r
21  *\r
22  * $Id: shar.cpp 2164 2007-02-11 05:26:18 +0000 (Sun, 11 Feb 2007) cantor $\r
23  */\r
24 \r
25 \r
26 // eventually we might be able to support autoconf via cygwin...\r
27 #if defined (_MSC_VER) || defined(__BORLANDC__)\r
28 # include "config_win32.h"\r
29 #else\r
30 # include "config.h"\r
31 #endif\r
32 \r
33 #ifdef WIN32\r
34 # define _CRT_NONSTDC_NO_DEPRECATE 1\r
35 # define _CRT_SECURE_NO_DEPRECATE 1\r
36 #endif\r
37 \r
38 #include <shibsp/SPConfig.h>\r
39 \r
40 #ifdef HAVE_UNISTD_H\r
41 #include <unistd.h>\r
42 #include <sys/select.h>\r
43 #endif\r
44 \r
45 #include <stdio.h>\r
46 #include <signal.h>\r
47 #include <shibsp/ServiceProvider.h>\r
48 #include <shibsp/remoting/ListenerService.h>\r
49 #include <xercesc/util/XMLUniDefs.hpp>\r
50 #include <xmltooling/XMLToolingConfig.h>\r
51 #include <xmltooling/util/XMLConstants.h>\r
52 #include <xmltooling/util/XMLHelper.h>\r
53 \r
54 using namespace shibsp;\r
55 using namespace xmltooling;\r
56 using namespace std;\r
57 \r
58 bool shibd_shutdown = false;\r
59 const char* shar_config = NULL;\r
60 const char* shar_schemadir = NULL;\r
61 const char* shar_prefix = NULL;\r
62 bool shar_checkonly = false;\r
63 bool shar_version = false;\r
64 static bool unlink_socket = false;\r
65 const char* pidfile = NULL;\r
66 \r
67 #ifdef WIN32\r
68 \r
69 //#include <CRTDBG.H>\r
70 \r
71 #define nNoMansLandSize 4\r
72 typedef struct _CrtMemBlockHeader\r
73 {\r
74         struct _CrtMemBlockHeader * pBlockHeaderNext;\r
75         struct _CrtMemBlockHeader * pBlockHeaderPrev;\r
76         char *                      szFileName;\r
77         int                         nLine;\r
78         size_t                      nDataSize;\r
79         int                         nBlockUse;\r
80         long                        lRequest;\r
81         unsigned char               gap[nNoMansLandSize];\r
82         /* followed by:\r
83          *  unsigned char           data[nDataSize];\r
84          *  unsigned char           anotherGap[nNoMansLandSize];\r
85          */\r
86 } _CrtMemBlockHeader;\r
87 \r
88 /*\r
89 int MyAllocHook(int nAllocType, void *pvData,\r
90       size_t nSize, int nBlockUse, long lRequest,\r
91       const unsigned char * szFileName, int nLine)\r
92 {\r
93     if ( nBlockUse == _CRT_BLOCK )\r
94       return( TRUE );\r
95     if (nAllocType == _HOOK_FREE) {\r
96         _CrtMemBlockHeader* ptr = (_CrtMemBlockHeader*)(((_CrtMemBlockHeader *)pvData)-1);\r
97         if (ptr->nDataSize == 8192)\r
98             fprintf(stderr,"free  request %u size %u\n", ptr->lRequest, ptr->nDataSize);\r
99     }\r
100     else if (nAllocType == _HOOK_ALLOC && nSize == 8192)\r
101         fprintf(stderr,"%s request %u size %u\n", ((nAllocType == _HOOK_ALLOC) ? "alloc" : "realloc"), lRequest, nSize);\r
102     return (TRUE);\r
103 }\r
104 */\r
105 \r
106 int real_main(int preinit)\r
107 {\r
108     SPConfig& conf=SPConfig::getConfig();\r
109     if (preinit) {\r
110 \r
111         // Initialize the SP library.\r
112         conf.setFeatures(\r
113             SPConfig::Listener |\r
114             SPConfig::Caching |\r
115             SPConfig::Metadata |\r
116             SPConfig::Trust |\r
117             SPConfig::Credentials |\r
118             SPConfig::AttributeResolution |\r
119             SPConfig::Handlers |\r
120             SPConfig::OutOfProcess |\r
121             (shar_checkonly ? SPConfig::RequestMapping : SPConfig::Logging)\r
122             );\r
123         if (!conf.init(shar_schemadir, shar_prefix)) {\r
124             fprintf(stderr, "configuration is invalid, see console for specific problems\n");\r
125             return -1;\r
126         }\r
127 \r
128         if (!conf.instantiate(shar_config)) {\r
129             fprintf(stderr, "configuration is invalid, check console for specific problems\n");\r
130             conf.term();\r
131             return -2;\r
132         }\r
133 \r
134         // If just a test run, bail.\r
135         if (shar_checkonly) {\r
136             fprintf(stdout, "overall configuration is loadable, check console for non-fatal problems\n");\r
137             return 0;\r
138         }\r
139     }\r
140     else {\r
141 \r
142         //_CrtSetAllocHook(MyAllocHook);\r
143 \r
144         if (!shar_checkonly) {\r
145             // Run the listener.\r
146             if (!conf.getServiceProvider()->getListenerService()->run(unlink_socket, &shibd_shutdown)) {\r
147                 fprintf(stderr, "listener failed to enter listen loop\n");\r
148                 return -3;\r
149             }\r
150         }\r
151 \r
152         conf.term();\r
153     }\r
154     return 0;\r
155 }\r
156 \r
157 #else\r
158 \r
159 static void term_handler(int arg)\r
160 {\r
161     shibd_shutdown = true;\r
162 }\r
163 \r
164 static int setup_signals(void)\r
165 {\r
166     struct sigaction sa;\r
167     memset(&sa, 0, sizeof (sa));\r
168     sa.sa_handler = SIG_IGN;\r
169     sa.sa_flags = SA_RESTART;\r
170 \r
171     if (sigaction(SIGPIPE, &sa, NULL) < 0) {\r
172         return -1;\r
173     }\r
174 \r
175     memset(&sa, 0, sizeof (sa));\r
176     sa.sa_handler = term_handler;\r
177     sa.sa_flags = SA_RESTART;\r
178 \r
179     if (sigaction(SIGHUP, &sa, NULL) < 0) {\r
180         return -1;\r
181     }\r
182     if (sigaction(SIGINT, &sa, NULL) < 0) {\r
183         return -1;\r
184     }\r
185     if (sigaction(SIGQUIT, &sa, NULL) < 0) {\r
186         return -1;\r
187     }\r
188     if (sigaction(SIGTERM, &sa, NULL) < 0) {\r
189         return -1;\r
190     }\r
191     return 0;\r
192 }\r
193 \r
194 static void usage(char* whoami)\r
195 {\r
196     fprintf(stderr, "usage: %s [-dcxtfpvh]\n", whoami);\r
197     fprintf(stderr, "  -d\tinstallation prefix to use.\n");\r
198     fprintf(stderr, "  -c\tconfig file to use.\n");\r
199     fprintf(stderr, "  -x\tXML schema catalogs to use.\n");\r
200     fprintf(stderr, "  -t\tcheck configuration file for problems.\n");\r
201     fprintf(stderr, "  -f\tforce removal of listener socket.\n");\r
202     fprintf(stderr, "  -p\tpid file to use.\n");\r
203     fprintf(stderr, "  -v\tprint software version.\n");\r
204     fprintf(stderr, "  -h\tprint this help message.\n");\r
205     exit(1);\r
206 }\r
207 \r
208 static int parse_args(int argc, char* argv[])\r
209 {\r
210     int opt;\r
211 \r
212     while ((opt = getopt(argc, argv, "d:c:x:p:ftvh")) > 0) {\r
213         switch (opt) {\r
214             case 'd':\r
215                 shar_prefix=optarg;\r
216                 break;\r
217             case 'c':\r
218                 shar_config=optarg;\r
219                 break;\r
220             case 'x':\r
221                 shar_schemadir=optarg;\r
222                 break;\r
223             case 'f':\r
224                 unlink_socket = true;\r
225                 break;\r
226             case 't':\r
227                 shar_checkonly=true;\r
228                 break;\r
229             case 'v':\r
230                 shar_version=true;\r
231                 break;\r
232             case 'p':\r
233                 pidfile=optarg;\r
234                 break;\r
235             default:\r
236                 return -1;\r
237         }\r
238     }\r
239     return 0;\r
240 }\r
241 \r
242 int main(int argc, char *argv[])\r
243 {\r
244     if (parse_args(argc, argv) != 0)\r
245         usage(argv[0]);\r
246     else if (shar_version) {\r
247         fprintf(stdout, PACKAGE_STRING"\n");\r
248         return 0;\r
249     }\r
250 \r
251     if (setup_signals() != 0)\r
252         return -1;\r
253 \r
254     // initialize the shib-target library\r
255     SPConfig& conf=SPConfig::getConfig();\r
256     conf.setFeatures(\r
257         SPConfig::Listener |\r
258         SPConfig::Caching |\r
259         SPConfig::Metadata |\r
260         SPConfig::Trust |\r
261         SPConfig::Credentials |\r
262         SPConfig::AttributeResolution |\r
263         SPConfig::Handlers |\r
264         SPConfig::OutOfProcess |\r
265         (shar_checkonly ? SPConfig::RequestMapping : SPConfig::Logging)\r
266         );\r
267     if (!conf.init(shar_schemadir, shar_prefix)) {\r
268         fprintf(stderr, "configuration is invalid, check console for specific problems\n");\r
269         return -1;\r
270     }\r
271 \r
272     if (!conf.instantiate(shar_config)) {\r
273         fprintf(stderr, "configuration is invalid, check console for specific problems\n");\r
274         conf.term();\r
275         return -2;\r
276     }\r
277 \r
278     if (shar_checkonly)\r
279         fprintf(stderr, "overall configuration is loadable, check console for non-fatal problems\n");\r
280     else {\r
281         // Write the pid file\r
282         if (pidfile) {\r
283             FILE* pidf = fopen(pidfile, "w");\r
284             if (pidf) {\r
285                 fprintf(pidf, "%d\n", getpid());\r
286                 fclose(pidf);\r
287             } else {\r
288                 perror(pidfile);  // keep running though\r
289             }\r
290         }\r
291 \r
292         // Run the listener\r
293         if (!conf.getServiceProvider()->getListenerService()->run(unlink_socket, &shibd_shutdown)) {\r
294             fprintf(stderr, "listener failed to enter listen loop\n");\r
295             return -3;\r
296         }\r
297     }\r
298 \r
299     conf.term();\r
300     if (pidfile)\r
301         unlink(pidfile);\r
302     return 0;\r
303 }\r
304 \r
305 #endif\r