- fix
[oweals/gnunet.git] / src / util / program.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPROSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file util/program.c
23  * @brief standard code for GNUnet startup and shutdown
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_common.h"
29 #include "gnunet_configuration_lib.h"
30 #include "gnunet_crypto_lib.h"
31 #include "gnunet_directories.h"
32 #include "gnunet_getopt_lib.h"
33 #include "gnunet_os_lib.h"
34 #include "gnunet_program_lib.h"
35 #include "gnunet_resolver_service.h"
36 #include "gnunet_scheduler_lib.h"
37 #include <gcrypt.h>
38
39 #define LOG(kind,...) GNUNET_log_from (kind, "util", __VA_ARGS__)
40
41 #define LOG_STRERROR_FILE(kind,syscall,filename) GNUNET_log_from_strerror_file (kind, "util", syscall, filename)
42
43 /**
44  * Context for the command.
45  */
46 struct CommandContext
47 {
48   /**
49    * Argv argument.
50    */
51   char *const *args;
52
53   /**
54    * Name of the configuration file used, can be NULL!
55    */
56   char *cfgfile;
57
58   /**
59    * Main function to run.
60    */
61   GNUNET_PROGRAM_Main task;
62
63   /**
64    * Closure for task.
65    */
66   void *task_cls;
67
68   /**
69    * Configuration to use.
70    */
71   const struct GNUNET_CONFIGURATION_Handle *cfg;
72
73 };
74
75 int
76 GNUNET_SPEEDUP_start_ (const struct GNUNET_CONFIGURATION_Handle *cfg);
77
78 int
79 GNUNET_SPEEDUP_stop_ (void);
80
81
82 /**
83  * Initial task called by the scheduler for each
84  * program.  Runs the program-specific main task.
85  */
86 static void
87 program_main (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
88 {
89   struct CommandContext *cc = cls;
90
91   if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
92     return;
93   GNUNET_SPEEDUP_start_(cc->cfg);
94   GNUNET_RESOLVER_connect (cc->cfg);
95   cc->task (cc->task_cls, cc->args, cc->cfgfile, cc->cfg);
96 }
97
98
99 /**
100  * Compare function for 'qsort' to sort command-line arguments by the
101  * short option.
102  *
103  * @param a1 first command line option
104  * @param a2 second command line option
105  */
106 static int
107 cmd_sorter (const void *a1, const void *a2)
108 {
109   const struct GNUNET_GETOPT_CommandLineOption *c1 = a1;
110   const struct GNUNET_GETOPT_CommandLineOption *c2 = a2;
111
112   if (toupper ((unsigned char) c1->shortName) >
113       toupper ((unsigned char) c2->shortName))
114     return 1;
115   if (toupper ((unsigned char) c1->shortName) <
116       toupper ((unsigned char) c2->shortName))
117     return -1;
118   if (c1->shortName > c2->shortName)
119     return 1;
120   if (c1->shortName < c2->shortName)
121     return -1;
122   return 0;
123 }
124
125
126 /**
127  * Run a standard GNUnet command startup sequence (initialize loggers
128  * and configuration, parse options).
129  *
130  * @param argc number of command line arguments
131  * @param argv command line arguments
132  * @param binaryName our expected name
133  * @param binaryHelp help text for the program
134  * @param options command line options
135  * @param task main function to run
136  * @param task_cls closure for task
137  * @param run_without_scheduler GNUNET_NO start the scheduler, GNUNET_YES do not
138  *        start the scheduler just run the main task
139  * @return GNUNET_SYSERR on error, GNUNET_OK on success
140  */
141 int
142 GNUNET_PROGRAM_run2 (int argc, char *const *argv, const char *binaryName,
143                     const char *binaryHelp,
144                     const struct GNUNET_GETOPT_CommandLineOption *options,
145                     GNUNET_PROGRAM_Main task, void *task_cls,
146                     int run_without_scheduler)
147 {
148   struct CommandContext cc;
149   char *path;
150   char *loglev;
151   char *logfile;
152   int ret;
153   unsigned int cnt;
154   unsigned long long skew_offset;
155   unsigned long long skew_variance;
156   long long clock_offset;
157   struct GNUNET_CONFIGURATION_Handle *cfg;
158
159   struct GNUNET_GETOPT_CommandLineOption defoptions[] = {
160     GNUNET_GETOPT_OPTION_CFG_FILE (&cc.cfgfile),
161     GNUNET_GETOPT_OPTION_HELP (binaryHelp),
162     GNUNET_GETOPT_OPTION_LOGLEVEL (&loglev),
163     GNUNET_GETOPT_OPTION_LOGFILE (&logfile),
164     GNUNET_GETOPT_OPTION_VERSION (PACKAGE_VERSION " " VCS_VERSION)
165   };
166   struct GNUNET_GETOPT_CommandLineOption *allopts;
167   const char *gargs;
168   char *lpfx;
169   char *spc;
170
171   logfile = NULL;
172   gargs = getenv ("GNUNET_ARGS");
173   if (gargs != NULL)
174   {
175     char **gargv;
176     unsigned int gargc;
177     int i;
178     char *tok;
179     char *cargs;
180
181     gargv = NULL;
182     gargc = 0;
183     for (i = 0; i < argc; i++)
184       GNUNET_array_append (gargv, gargc, GNUNET_strdup (argv[i]));
185     cargs = GNUNET_strdup (gargs);
186     tok = strtok (cargs, " ");
187     while (NULL != tok)
188     {
189       GNUNET_array_append (gargv, gargc, GNUNET_strdup (tok));
190       tok = strtok (NULL, " ");
191     }
192     GNUNET_free (cargs);
193     GNUNET_array_append (gargv, gargc, NULL);
194     argv = (char *const *) gargv;
195     argc = gargc - 1;
196   }
197   memset (&cc, 0, sizeof (cc));
198   loglev = NULL;
199   cc.task = task;
200   cc.task_cls = task_cls;
201   cc.cfg = cfg = GNUNET_CONFIGURATION_create ();
202
203   /* prepare */
204 #if ENABLE_NLS
205   setlocale (LC_ALL, "");
206   path = GNUNET_OS_installation_get_path (GNUNET_OS_IPK_LOCALEDIR);
207   if (path != NULL)
208   {
209     BINDTEXTDOMAIN ("GNUnet", path);
210     GNUNET_free (path);
211   }
212   textdomain ("GNUnet");
213 #endif
214   cnt = 0;
215   while (options[cnt].name != NULL)
216     cnt++;
217   allopts =
218       GNUNET_malloc ((cnt +
219                       1) * sizeof (struct GNUNET_GETOPT_CommandLineOption) +
220                      sizeof (defoptions));
221   memcpy (allopts, defoptions, sizeof (defoptions));
222   memcpy (&allopts
223           [sizeof (defoptions) /
224            sizeof (struct GNUNET_GETOPT_CommandLineOption)], options,
225           (cnt + 1) * sizeof (struct GNUNET_GETOPT_CommandLineOption));
226   cnt += sizeof (defoptions) / sizeof (struct GNUNET_GETOPT_CommandLineOption);
227   qsort (allopts, cnt, sizeof (struct GNUNET_GETOPT_CommandLineOption),
228          &cmd_sorter);
229   loglev = NULL;
230   cc.cfgfile = GNUNET_strdup (GNUNET_DEFAULT_USER_CONFIG_FILE);
231   lpfx = GNUNET_strdup (binaryName);
232   if (NULL != (spc = strstr (lpfx, " ")))
233     *spc = '\0';
234   ret = GNUNET_GETOPT_run (binaryName, allopts, (unsigned int) argc, argv);
235   if ((GNUNET_OK > ret) ||
236       (GNUNET_OK != GNUNET_log_setup (lpfx, loglev, logfile)))
237   {
238     GNUNET_CONFIGURATION_destroy (cfg);
239     GNUNET_free_non_null (cc.cfgfile);
240     GNUNET_free_non_null (loglev);
241     GNUNET_free_non_null (logfile);
242     GNUNET_free (allopts);
243     GNUNET_free (lpfx);
244     return (ret == GNUNET_SYSERR) ? GNUNET_SYSERR : GNUNET_OK;
245   }
246   if (GNUNET_YES ==
247       GNUNET_DISK_file_test (cc.cfgfile))
248     (void) GNUNET_CONFIGURATION_load (cfg, cc.cfgfile);
249   else
250   {
251     (void) GNUNET_CONFIGURATION_load (cfg, NULL);
252     if (0 != strcmp (cc.cfgfile, GNUNET_DEFAULT_USER_CONFIG_FILE))
253       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
254                   _("Could not access configuration file `%s'\n"),
255                   cc.cfgfile);
256   }
257   GNUNET_free (allopts);
258   GNUNET_free (lpfx);
259   if (GNUNET_OK ==
260       GNUNET_CONFIGURATION_get_value_number (cc.cfg, "testing", "skew_offset",
261                                              &skew_offset) &&
262       (GNUNET_OK ==
263        GNUNET_CONFIGURATION_get_value_number (cc.cfg, "testing",
264                                               "skew_variance", &skew_variance)))
265   {
266     clock_offset = skew_offset - skew_variance;
267     GNUNET_TIME_set_offset (clock_offset);
268   }
269   /* run */
270   cc.args = &argv[ret];
271   if (GNUNET_NO == run_without_scheduler)
272   {
273           GNUNET_SCHEDULER_run (&program_main, &cc);
274   }
275   else
276   {
277           GNUNET_RESOLVER_connect (cc.cfg);
278           cc.task (cc.task_cls, cc.args, cc.cfgfile, cc.cfg);
279   }
280   /* clean up */
281   GNUNET_SPEEDUP_stop_ ();
282   GNUNET_CONFIGURATION_destroy (cfg);
283   GNUNET_free_non_null (cc.cfgfile);
284   GNUNET_free_non_null (loglev);
285   GNUNET_free_non_null (logfile);
286   return GNUNET_OK;
287 }
288
289 /**
290  * Run a standard GNUnet command startup sequence (initialize loggers
291  * and configuration, parse options).
292  *
293  * @param argc number of command line arguments
294  * @param argv command line arguments
295  * @param binaryName our expected name
296  * @param binaryHelp help text for the program
297  * @param options command line options
298  * @param task main function to run
299  * @param task_cls closure for task
300  * @return GNUNET_SYSERR on error, GNUNET_OK on success
301  */
302 int
303 GNUNET_PROGRAM_run (int argc, char *const *argv, const char *binaryName,
304                     const char *binaryHelp,
305                     const struct GNUNET_GETOPT_CommandLineOption *options,
306                     GNUNET_PROGRAM_Main task, void *task_cls)
307 {
308         return GNUNET_PROGRAM_run2 (argc, argv, binaryName, binaryHelp, options, task, task_cls, GNUNET_NO);
309 }
310
311
312
313 /* end of program.c */