Allow redirection of STDERR when starting processes.
[oweals/gnunet.git] / src / gns / gnunet-gns-import.c
1 /*
2      This file is part of GNUnet.
3      (C) 2012-2013 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 3, 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  * @file gnunet-gns.c
22  * @brief binary version of gnunet-gns-import.sh
23  *        (for OSes that have no POSIX shell).
24  * @author LRN
25  */
26 #include "platform.h"
27 #include <gnunet_util_lib.h>
28 #include <gnunet_gnsrecord_lib.h>
29 #include <gnunet_identity_service.h>
30 #include <gnunet_namestore_service.h>
31
32 /**
33  * Configuration we are using.
34  */
35 static const struct GNUNET_CONFIGURATION_Handle *cfg;
36
37 /**
38  * Handle to IDENTITY service.
39  */
40 static struct GNUNET_IDENTITY_Handle *sh;
41
42 /**
43  * Zone iterator for master zone
44  */
45 struct GNUNET_NAMESTORE_ZoneIterator *list_it;
46
47 /**
48  * Handle to the namestore.
49  */
50 static struct GNUNET_NAMESTORE_Handle *ns;
51
52 /**
53  * String version of PKEY for master-zone.
54  */
55 static char *master_zone_pkey;
56
57 /**
58  * Binary version of PKEY for master-zone.
59  */
60 static struct GNUNET_CRYPTO_EcdsaPrivateKey master_pk;
61
62 /**
63  * String version of PKEY for short-zone.
64  */
65 static char *short_zone_pkey;
66
67 /**
68  * String version of PKEY for private-zone.
69  */
70 static char *private_zone_pkey;
71
72 /**
73  * String version of PKEY for pin-zone.
74  */
75 static char *pin_zone_pkey = "72QC35CO20UJN1E91KPJFNT9TG4CLKAPB4VK9S3Q758S9MLBRKOG";
76
77 /**
78  * Set to GNUNET_YES if private record was found;
79  */
80 static int found_private_rec = GNUNET_NO;
81
82 /**
83  * Set to GNUNET_YES if short record was found;
84  */
85 static int found_short_rec = GNUNET_NO;
86
87 /**
88  * Set to GNUNET_YES if pin record was found;
89  */
90 static int found_pin_rec = GNUNET_NO;
91
92 /**
93  * Exit code.
94  */
95 static int ret;
96
97
98 static int
99 run_process_and_wait (int pipe_control,
100                       enum GNUNET_OS_InheritStdioFlags std_inheritance,
101                       struct GNUNET_DISK_PipeHandle *pipe_stdin,
102                       struct GNUNET_DISK_PipeHandle *pipe_stdout,
103                       enum GNUNET_OS_ProcessStatusType *st,
104                       unsigned long *code,
105                       const char *filename, ...)
106 {
107   static struct GNUNET_OS_Process *p;
108   int arglen;
109   char *arg;
110   char *args;
111   char *argp;
112   va_list ap, apc1, apc2;
113
114   va_start (ap, filename);
115   va_copy (apc1, ap);
116   va_copy (apc2, ap);
117   arglen = 0;
118   while (NULL != (arg = va_arg (apc1, char *)))
119     arglen += strlen (arg) + 1;
120   va_end (apc1);
121   args = argp = GNUNET_malloc (arglen);
122   while (NULL != (arg = va_arg (apc2, char *)))
123   {
124     strcpy (argp, arg);
125     argp += strlen (arg);
126     *argp = ' ';
127     argp += 1;
128   }
129   va_end (apc2);
130   if (arglen > 0)
131     argp[-1] = '\0';
132   p = GNUNET_OS_start_process_va (pipe_control, std_inheritance,
133                                   pipe_stdin,
134                                   pipe_stdout,
135                                   NULL,
136                                   filename, ap);
137   va_end (ap);
138   if (NULL == p)
139   {
140     ret = 3;
141     fprintf (stderr, "Failed to run `%s'\n", args);
142     GNUNET_free (args);
143     return 1;
144   }
145
146   if (GNUNET_OK != GNUNET_OS_process_wait (p))
147   {
148     ret = 4;
149     fprintf (stderr, "Failed to wait for `%s'\n", args);
150     GNUNET_free (args);
151     return 1;
152   }
153
154   switch (GNUNET_OS_process_status (p, st, code))
155   {
156     case GNUNET_OK:
157       break;
158     case GNUNET_NO:
159       ret = 5;
160       fprintf (stderr, "`%s' is still running\n", args);
161       GNUNET_free (args);
162       return 1;
163     default:
164     case GNUNET_SYSERR:
165       ret = 6;
166       fprintf (stderr, "Failed to check the status of `%s'\n", args);
167       GNUNET_free (args);
168       return 1;
169   }
170 #ifdef WINDOWS
171   if (GNUNET_OS_PROCESS_EXITED != *st || 0 != *code)
172   {
173     ret = 7;
174     fprintf (stderr, "`%s' did not end correctly (%d, %d)\n", args, *st, *code);
175     return 1;
176   }
177 #endif
178   return 0;
179 }
180
181 static void
182 check_pkey (unsigned int rd_len, const struct GNUNET_GNSRECORD_Data *rd,
183     char *pk, int *found_rec)
184 {
185   int i;
186   for (i = 0; i < rd_len; i++)
187   {
188     char *s;
189     if (GNUNET_GNSRECORD_TYPE_PKEY != rd[i].record_type ||
190         rd[i].data_size != sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey))
191       continue;
192     s = GNUNET_GNSRECORD_value_to_string (rd[i].record_type,
193                                           rd[i].data,
194                                           rd[i].data_size);
195     if (NULL == s)
196       continue;
197     if (0 == strcmp (s, pk))
198       *found_rec = GNUNET_YES;
199     GNUNET_free (s);
200   }
201 }
202
203 /**
204  * Process a record that was stored in the namestore.
205  *
206  * @param cls closure
207  * @param zone_key private key of the zone
208  * @param rname name that is being mapped (at most 255 characters long)
209  * @param rd_len number of entries in @a rd array
210  * @param rd array of records with data to store
211  */
212 static void
213 zone_iterator (void *cls,
214     const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone_key,
215     const char *rname, unsigned int rd_len,
216     const struct GNUNET_GNSRECORD_Data *rd)
217 {
218   if (NULL != rname)
219   {
220     if (0 == strcmp (rname, "private"))
221       check_pkey (rd_len, rd, private_zone_pkey, &found_private_rec);
222     else if (0 == strcmp (rname, "short"))
223       check_pkey (rd_len, rd, short_zone_pkey, &found_short_rec);
224     else if (0 == strcmp (rname, "pin"))
225       check_pkey (rd_len, rd, pin_zone_pkey, &found_pin_rec);
226   }
227   if (NULL == rname && 0 == rd_len && NULL == rd)
228   {
229     enum GNUNET_OS_ProcessStatusType st;
230     unsigned long code;
231     if (!found_private_rec)
232     {
233       if (0 != run_process_and_wait (GNUNET_NO, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, &st, &code,
234           "gnunet-namestore",
235           "gnunet-namestore", "-z", "master-zone", "-a", "-e", "never", "-n", "private", "-p", "-t", "PKEY", "-V", private_zone_pkey, NULL))
236       {
237         ret = 8;
238         return;
239       }
240     }
241     if (!found_short_rec)
242     {
243       if (0 != run_process_and_wait (GNUNET_NO, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, &st, &code,
244           "gnunet-namestore",
245           "gnunet-namestore", "-z", "master-zone", "-a", "-e", "never", "-n", "short", "-p", "-t", "PKEY", "-V", short_zone_pkey, NULL))
246       {
247         ret = 9;
248         return;
249       }
250     }
251     if (!found_pin_rec)
252     {
253       if (0 != run_process_and_wait (GNUNET_NO, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, &st, &code,
254           "gnunet-namestore",
255           "gnunet-namestore", "-z", "master-zone", "-a", "-e", "never", "-n", "pin", "-p", "-t", "PKEY", "-V", pin_zone_pkey, NULL))
256       {
257         ret = 10;
258         return;
259       }
260     }
261     list_it = NULL;
262     GNUNET_SCHEDULER_shutdown ();
263     return;
264   }
265   GNUNET_NAMESTORE_zone_iterator_next (list_it);
266 }
267
268 /**
269  * Get master-zone, short-zone and private-zone keys.
270  *
271  * This function is initially called for all egos and then again
272  * whenever a ego's identifier changes or if it is deleted.  At the
273  * end of the initial pass over all egos, the function is once called
274  * with 'NULL' for 'ego'. That does NOT mean that the callback won't
275  * be invoked in the future or that there was an error.
276  *
277  * When used with 'GNUNET_IDENTITY_create' or 'GNUNET_IDENTITY_get',
278  * this function is only called ONCE, and 'NULL' being passed in
279  * 'ego' does indicate an error (i.e. name is taken or no default
280  * value is known).  If 'ego' is non-NULL and if '*ctx'
281  * is set in those callbacks, the value WILL be passed to a subsequent
282  * call to the identity callback of 'GNUNET_IDENTITY_connect' (if
283  * that one was not NULL).
284  *
285  * When an identity is renamed, this function is called with the
286  * (known) ego but the NEW identifier.
287  *
288  * When an identity is deleted, this function is called with the
289  * (known) ego and "NULL" for the 'identifier'.  In this case,
290  * the 'ego' is henceforth invalid (and the 'ctx' should also be
291  * cleaned up).
292  *
293  * @param cls closure
294  * @param ego ego handle
295  * @param ctx context for application to store data for this ego
296  *                 (during the lifetime of this process, initially NULL)
297  * @param identifier identifier assigned by the user for this ego,
298  *                   NULL if the user just deleted the ego and it
299  *                   must thus no longer be used
300 */
301 static void
302 get_ego (void *cls,
303          struct GNUNET_IDENTITY_Ego *ego,
304          void **ctx,
305          const char *identifier)
306 {
307   static struct GNUNET_CRYPTO_EcdsaPublicKey pk;
308   if (NULL == ego)
309   {
310     if (NULL == master_zone_pkey ||
311         NULL == short_zone_pkey ||
312         NULL == private_zone_pkey)
313     {
314       ret = 11;
315       GNUNET_SCHEDULER_shutdown ();
316       return;
317     }
318     list_it = GNUNET_NAMESTORE_zone_iteration_start (ns,
319         &master_pk, &zone_iterator, NULL);
320     if (NULL == list_it)
321     {
322       ret = 12;
323       GNUNET_SCHEDULER_shutdown ();
324     }
325     return;
326   }
327   GNUNET_IDENTITY_ego_get_public_key (ego, &pk);
328   if (NULL != identifier)
329   {
330     if (NULL == master_zone_pkey && 0 == strcmp ("master-zone", identifier))
331     {
332       master_zone_pkey = GNUNET_CRYPTO_ecdsa_public_key_to_string (&pk);
333       master_pk = *GNUNET_IDENTITY_ego_get_private_key (ego);
334     }
335     else if (NULL == short_zone_pkey && 0 == strcmp ("short-zone", identifier))
336       short_zone_pkey = GNUNET_CRYPTO_ecdsa_public_key_to_string (&pk);
337     else if (NULL == private_zone_pkey && 0 == strcmp ("private-zone", identifier))
338       private_zone_pkey = GNUNET_CRYPTO_ecdsa_public_key_to_string (&pk);
339   }
340 }
341
342 /**
343  * Task run on shutdown.
344  *
345  * @param cls NULL
346  * @param tc unused
347  */
348 static void
349 shutdown_task (void *cls,
350                const struct GNUNET_SCHEDULER_TaskContext *tc)
351 {
352   GNUNET_free_non_null (master_zone_pkey);
353   master_zone_pkey = NULL;
354   GNUNET_free_non_null (short_zone_pkey);
355   short_zone_pkey = NULL;
356   GNUNET_free_non_null (private_zone_pkey);
357   private_zone_pkey = NULL;
358   if (NULL != list_it)
359   {
360     GNUNET_NAMESTORE_zone_iteration_stop (list_it);
361     list_it = NULL;
362   }
363   if (NULL != ns)
364   {
365     GNUNET_NAMESTORE_disconnect (ns);
366     ns = NULL;
367   }
368   if (NULL != sh)
369   {
370     GNUNET_IDENTITY_disconnect (sh);
371     sh = NULL;
372   }
373 }
374
375 /**
376  * Main function that will be run.
377  *
378  * @param cls closure
379  * @param args remaining command-line arguments
380  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
381  * @param c configuration
382  */
383 static void
384 run (void *cls, char *const *args, const char *cfgfile,
385      const struct GNUNET_CONFIGURATION_Handle *c)
386 {
387   enum GNUNET_OS_ProcessStatusType st;
388   unsigned long code;
389
390   cfg = c;
391
392   if (0 != run_process_and_wait (GNUNET_NO, 0, NULL, NULL, &st, &code,
393       "gnunet-arm",
394       "gnunet-arm", "-I", NULL))
395   {
396     if (7 == ret)
397       fprintf (stderr, "GNUnet is not running, please start GNUnet before running import\n");
398     return;
399   }
400
401   if (0 != run_process_and_wait (GNUNET_NO, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, &st, &code,
402       "gnunet-identity",
403       "gnunet-identity", "-C", "master-zone", NULL))
404     return;
405
406   if (0 != run_process_and_wait (GNUNET_NO, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, &st, &code,
407       "gnunet-identity",
408       "gnunet-identity", "-C", "short-zone", NULL))
409     return;
410
411   if (0 != run_process_and_wait (GNUNET_NO, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, &st, &code,
412       "gnunet-identity",
413       "gnunet-identity", "-C", "private-zone", NULL))
414     return;
415
416   if (0 != run_process_and_wait (GNUNET_NO, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, &st, &code,
417       "gnunet-identity",
418       "gnunet-identity", "-C", "sks-zone", NULL))
419     return;
420
421   if (0 != run_process_and_wait (GNUNET_NO, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, &st, &code,
422       "gnunet-identity",
423       "gnunet-identity", "-e", "short-zone", "-s", "gns-short", NULL))
424     return;
425
426   if (0 != run_process_and_wait (GNUNET_NO, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, &st, &code,
427       "gnunet-identity",
428       "gnunet-identity", "-e", "master-zone", "-s", "gns-master", NULL))
429     return;
430
431   if (0 != run_process_and_wait (GNUNET_NO, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, &st, &code,
432       "gnunet-identity",
433       "gnunet-identity", "-e", "master-zone", "-s", "namestore", NULL))
434     return;
435
436   if (0 != run_process_and_wait (GNUNET_NO, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, &st, &code,
437       "gnunet-identity",
438       "gnunet-identity", "-e", "short-zone", "-s", "gns-proxy", NULL))
439     return;
440
441   if (0 != run_process_and_wait (GNUNET_NO, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, &st, &code,
442       "gnunet-identity",
443       "gnunet-identity", "-e", "private-zone", "-s", "gns-private", NULL))
444     return;
445
446   if (0 != run_process_and_wait (GNUNET_NO, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL, &st, &code,
447       "gnunet-identity",
448       "gnunet-identity", "-e", "sks-zone", "-s", "fs-sks", NULL))
449     return;
450
451   ns = GNUNET_NAMESTORE_connect (cfg);
452   sh = GNUNET_IDENTITY_connect (cfg, &get_ego, NULL);
453   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
454                                 &shutdown_task, NULL);
455 }
456
457
458 /**
459  * The main function for gnunet-gns.
460  *
461  * @param argc number of arguments from the command line
462  * @param argv command line arguments
463  * @return 0 ok, 1 on error
464  */
465 int
466 main (int argc, char *const *argv)
467 {
468   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
469     GNUNET_GETOPT_OPTION_END
470   };
471   int r;
472
473   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
474     return 2;
475
476   GNUNET_log_setup ("gnunet-gns-import", "WARNING", NULL);
477   ret = 0;
478   r = GNUNET_PROGRAM_run (argc, argv, "gnunet-gns-import",
479                           _("This program will import some GNS authorities into your GNS namestore."),
480                           options,
481                           &run, NULL);
482   GNUNET_free ((void*) argv);
483   return GNUNET_OK == r ? ret : 1;
484 }
485
486 /* end of gnunet-gns-import.c */