fixfix
[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 PURPOSE.  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 /**
40  * Context for the command.
41  */
42 struct CommandContext
43 {
44   /**
45    * Argv argument.
46    */
47   char *const *args;
48
49   /**
50    * Name of the configuration file used, can be NULL!
51    */
52   char *cfgfile;
53
54   /**
55    * Main function to run.
56    */
57   GNUNET_PROGRAM_Main task;
58
59   /**
60    * Closure for task.
61    */
62   void *task_cls;
63
64   /**
65    * Configuration to use.
66    */
67   const struct GNUNET_CONFIGURATION_Handle *cfg;
68
69 };
70
71
72 /**
73  * Initial task called by the scheduler for each
74  * program.  Runs the program-specific main task.
75  */
76 static void
77 program_main (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
78 {
79   struct CommandContext *cc = cls;
80
81   GNUNET_RESOLVER_connect (cc->cfg);
82   cc->task (cc->task_cls, cc->args, cc->cfgfile, cc->cfg);
83 }
84
85
86 /**
87  * Compare function for 'qsort' to sort command-line arguments by the
88  * short option.
89  *
90  * @param a1 first command line option
91  * @param a2 second command line option
92  */
93 static int
94 cmd_sorter (__const void *a1, __const void *a2)
95 {
96   __const struct GNUNET_GETOPT_CommandLineOption *c1 = a1;
97   __const struct GNUNET_GETOPT_CommandLineOption *c2 = a2;
98
99   if (toupper ((unsigned char) c1->shortName) >
100       toupper ((unsigned char) c2->shortName))
101     return 1;
102   if (toupper ((unsigned char) c1->shortName) <
103       toupper ((unsigned char) c2->shortName))
104     return -1;
105   if (c1->shortName > c2->shortName)
106     return 1;
107   if (c1->shortName < c2->shortName)
108     return -1;
109   return 0;
110 }
111
112
113 /**
114  * Run a standard GNUnet command startup sequence (initialize loggers
115  * and configuration, parse options).
116  *
117  * @param argc number of command line arguments
118  * @param argv command line arguments
119  * @param binaryName our expected name
120  * @param binaryHelp help text for the program
121  * @param options command line options
122  * @param task main function to run
123  * @param task_cls closure for task
124  * @return GNUNET_SYSERR on error, GNUNET_OK on success
125  */
126 int
127 GNUNET_PROGRAM_run (int argc, char *const *argv, const char *binaryName,
128                     const char *binaryHelp,
129                     const struct GNUNET_GETOPT_CommandLineOption *options,
130                     GNUNET_PROGRAM_Main task, void *task_cls)
131 {
132   struct CommandContext cc;
133   char *path;
134   char *loglev;
135   char *logfile;
136   int ret;
137   unsigned int cnt;
138   unsigned long long skew_offset;
139   unsigned long long skew_variance;
140   long long clock_offset;
141   struct GNUNET_CONFIGURATION_Handle *cfg;
142
143   struct GNUNET_GETOPT_CommandLineOption defoptions[] = {
144     GNUNET_GETOPT_OPTION_CFG_FILE (&cc.cfgfile),
145     GNUNET_GETOPT_OPTION_HELP (binaryHelp),
146     GNUNET_GETOPT_OPTION_LOGLEVEL (&loglev),
147     GNUNET_GETOPT_OPTION_LOGFILE (&logfile),
148     GNUNET_GETOPT_OPTION_VERSION (PACKAGE_VERSION)
149   };
150   struct GNUNET_GETOPT_CommandLineOption *allopts;
151   const char *gargs;
152   char *lpfx;
153   char *spc;
154
155   logfile = NULL;
156   gargs = getenv ("GNUNET_ARGS");
157   if (gargs != NULL)
158   {
159     char **gargv;
160     unsigned int gargc;
161     int i;
162     char *tok;
163     char *cargs;
164
165     gargv = NULL;
166     gargc = 0;
167     for (i = 0; i < argc; i++)
168       GNUNET_array_append (gargv, gargc, GNUNET_strdup (argv[i]));
169     cargs = GNUNET_strdup (gargs);
170     tok = strtok (cargs, " ");
171     while (NULL != tok)
172     {
173       GNUNET_array_append (gargv, gargc, GNUNET_strdup (tok));
174       tok = strtok (NULL, " ");
175     }
176     GNUNET_free (cargs);
177     GNUNET_array_append (gargv, gargc, NULL);
178     argv = (char *const *) gargv;
179     argc = gargc - 1;
180   }
181   memset (&cc, 0, sizeof (cc));
182   loglev = NULL;
183   cc.task = task;
184   cc.task_cls = task_cls;
185   cc.cfg = cfg = GNUNET_CONFIGURATION_create ();
186
187   /* prepare */
188 #if ENABLE_NLS
189   setlocale (LC_ALL, "");
190   path = GNUNET_OS_installation_get_path (GNUNET_OS_IPK_LOCALEDIR);
191   if (path != NULL)
192   {
193     BINDTEXTDOMAIN ("GNUnet", path);
194     GNUNET_free (path);
195   }
196   textdomain ("GNUnet");
197 #endif
198   cnt = 0;
199   while (options[cnt].name != NULL)
200     cnt++;
201   allopts =
202       GNUNET_malloc ((cnt +
203                       1) * sizeof (struct GNUNET_GETOPT_CommandLineOption) +
204                      sizeof (defoptions));
205   memcpy (allopts, defoptions, sizeof (defoptions));
206   memcpy (&allopts
207           [sizeof (defoptions) /
208            sizeof (struct GNUNET_GETOPT_CommandLineOption)], options,
209           (cnt + 1) * sizeof (struct GNUNET_GETOPT_CommandLineOption));
210   cnt += sizeof (defoptions) / sizeof (struct GNUNET_GETOPT_CommandLineOption);
211   qsort (allopts, cnt, sizeof (struct GNUNET_GETOPT_CommandLineOption),
212          &cmd_sorter);
213   loglev = GNUNET_strdup ("WARNING");
214   cc.cfgfile = GNUNET_strdup (GNUNET_DEFAULT_USER_CONFIG_FILE);
215   lpfx = GNUNET_strdup (binaryName);
216   if (NULL != (spc = strstr (lpfx, " ")))
217     *spc = '\0';
218   if ((-1 ==
219        (ret =
220         GNUNET_GETOPT_run (binaryName, allopts, (unsigned int) argc, argv))) ||
221       ((GNUNET_OK != GNUNET_log_setup (lpfx, loglev, logfile)) ||
222        (GNUNET_OK != GNUNET_CONFIGURATION_load (cfg, cc.cfgfile))))
223   {
224     GNUNET_CONFIGURATION_destroy (cfg);
225     GNUNET_free_non_null (cc.cfgfile);
226     GNUNET_free (loglev);
227     GNUNET_free (logfile);
228     GNUNET_free (allopts);
229     GNUNET_free (lpfx);
230     return GNUNET_SYSERR;
231   }
232   GNUNET_free (allopts);
233   GNUNET_free (lpfx);
234   if (GNUNET_OK ==
235       GNUNET_CONFIGURATION_get_value_number (cc.cfg, "testing", "skew_offset",
236                                              &skew_offset) &&
237       (GNUNET_OK ==
238        GNUNET_CONFIGURATION_get_value_number (cc.cfg, "testing",
239                                               "skew_variance", &skew_variance)))
240   {
241     clock_offset = skew_offset - skew_variance;
242     GNUNET_TIME_set_offset (clock_offset);
243   }
244   /* run */
245   cc.args = &argv[ret];
246   GNUNET_SCHEDULER_run (&program_main, &cc);
247
248   /* clean up */
249   GNUNET_CONFIGURATION_destroy (cfg);
250   GNUNET_free_non_null (cc.cfgfile);
251   GNUNET_free (loglev);
252   GNUNET_free_non_null (logfile);
253   return GNUNET_OK;
254 }
255
256
257 /* end of program.c */