social needs to start as user service, not system
[oweals/gnunet.git] / src / revocation / gnunet-revocation.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2013 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file revocation/gnunet-revocation.c
23  * @brief tool for revoking public keys
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_revocation_service.h"
29 #include "gnunet_identity_service.h"
30
31
32 /**
33  * Final status code.
34  */
35 static int ret;
36
37 /**
38  * Was "-p" specified?
39  */
40 static int perform;
41
42 /**
43  * -f option.
44  */
45 static char *filename;
46
47 /**
48  * -R option
49  */
50 static char *revoke_ego;
51
52 /**
53  * -t option.
54  */
55 static char *test_ego;
56
57 /**
58  * Handle for revocation query.
59  */
60 static struct GNUNET_REVOCATION_Query *q;
61
62 /**
63  * Handle for revocation.
64  */
65 static struct GNUNET_REVOCATION_Handle *h;
66
67 /**
68  * Handle for our ego lookup.
69  */
70 static struct GNUNET_IDENTITY_EgoLookup *el;
71
72 /**
73  * Our configuration.
74  */
75 static const struct GNUNET_CONFIGURATION_Handle *cfg;
76
77 /**
78  * Number of matching bits required for revocation.
79  */
80 static unsigned long long matching_bits;
81
82 /**
83  * Task used for proof-of-work calculation.
84  */
85 static struct GNUNET_SCHEDULER_Task *pow_task;
86
87
88 /**
89  * Function run if the user aborts with CTRL-C.
90  *
91  * @param cls closure
92  */
93 static void
94 do_shutdown (void *cls)
95 {
96   if (NULL != el)
97   {
98     GNUNET_IDENTITY_ego_lookup_cancel (el);
99     el = NULL;
100   }
101   if (NULL != q)
102   {
103     GNUNET_REVOCATION_query_cancel (q);
104     q = NULL;
105   }
106   if (NULL != h)
107   {
108     GNUNET_REVOCATION_revoke_cancel (h);
109     h = NULL;
110   }
111 }
112
113
114 /**
115  * Print the result from a revocation query.
116  *
117  * @param cls NULL
118  * @param is_valid #GNUNET_YES if the key is still valid, #GNUNET_NO if not, #GNUNET_SYSERR on error
119  */
120 static void
121 print_query_result (void *cls,
122                     int is_valid)
123 {
124   q = NULL;
125   switch (is_valid)
126   {
127   case GNUNET_YES:
128     FPRINTF (stdout,
129              _("Key `%s' is valid\n"),
130              test_ego);
131     break;
132   case GNUNET_NO:
133     FPRINTF (stdout,
134              _("Key `%s' has been revoked\n"),
135              test_ego);
136     break;
137   case GNUNET_SYSERR:
138     FPRINTF (stdout,
139              "%s",
140              _("Internal error\n"));
141     break;
142   default:
143     GNUNET_break (0);
144     break;
145   }
146   GNUNET_SCHEDULER_shutdown ();
147 }
148
149
150 /**
151  * Print the result from a revocation request.
152  *
153  * @param cls NULL
154  * @param is_valid #GNUNET_YES if the key is still valid, #GNUNET_NO if not, #GNUNET_SYSERR on error
155  */
156 static void
157 print_revocation_result (void *cls,
158                          int is_valid)
159 {
160   h = NULL;
161   switch (is_valid)
162   {
163   case GNUNET_YES:
164     if (NULL != revoke_ego)
165       FPRINTF (stdout,
166                _("Key for ego `%s' is still valid, revocation failed (!)\n"),
167                revoke_ego);
168     else
169       FPRINTF (stdout,
170                "%s",
171                _("Revocation failed (!)\n"));
172     break;
173   case GNUNET_NO:
174     if (NULL != revoke_ego)
175       FPRINTF (stdout,
176                _("Key for ego `%s' has been successfully revoked\n"),
177                revoke_ego);
178     else
179       FPRINTF (stdout,
180                "%s",
181                _("Revocation successful.\n"));
182     break;
183   case GNUNET_SYSERR:
184     FPRINTF (stdout,
185              "%s",
186              _("Internal error, key revocation might have failed\n"));
187     break;
188   default:
189     GNUNET_break (0);
190     break;
191   }
192   GNUNET_SCHEDULER_shutdown ();
193 }
194
195
196 /**
197  * Data needed to perform a revocation.
198  */
199 struct RevocationData
200 {
201   /**
202    * Public key.
203    */
204   struct GNUNET_CRYPTO_EcdsaPublicKey key;
205
206   /**
207    * Revocation signature data.
208    */
209   struct GNUNET_CRYPTO_EcdsaSignature sig;
210
211   /**
212    * Proof of work (in NBO).
213    */
214   uint64_t pow GNUNET_PACKED;
215 };
216
217
218 /**
219  * Perform the revocation.
220  */
221 static void
222 perform_revocation (const struct RevocationData *rd)
223 {
224   h = GNUNET_REVOCATION_revoke (cfg,
225                                 &rd->key,
226                                 &rd->sig,
227                                 rd->pow,
228                                 &print_revocation_result,
229                                 NULL);
230 }
231
232
233 /**
234  * Write the current state of the revocation data
235  * to disk.
236  *
237  * @param rd data to sync
238  */
239 static void
240 sync_rd (const struct RevocationData *rd)
241
242   if ( (NULL != filename) &&
243        (sizeof (struct RevocationData) ==
244         GNUNET_DISK_fn_write (filename,
245                               &rd,
246                               sizeof (rd),
247                               GNUNET_DISK_PERM_USER_READ |
248                               GNUNET_DISK_PERM_USER_WRITE)) )
249     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
250                               "write",
251                               filename);
252 }
253
254
255 /**
256  * Perform the proof-of-work calculation.
257  *
258  * @param cls the `struct RevocationData`
259  */
260 static void
261 calculate_pow_shutdown (void *cls)
262 {
263   struct RevocationData *rd = cls;
264
265   if (NULL != pow_task)
266   {
267     GNUNET_SCHEDULER_cancel (pow_task);
268     pow_task = NULL;
269   }
270   sync_rd (rd);
271   GNUNET_free (rd);
272 }
273
274
275 /**
276  * Perform the proof-of-work calculation.
277  *
278  * @param cls the `struct RevocationData`
279  */
280 static void
281 calculate_pow (void *cls)
282 {
283   struct RevocationData *rd = cls;
284
285   /* store temporary results */
286   if (0 == (rd->pow % 128))
287     sync_rd (rd);
288   /* display progress estimate */
289   if ( (0 == ((1 << matching_bits) / 100 / 50)) ||
290        (0 == (rd->pow % ((1 << matching_bits) / 100 / 50))) )
291     FPRINTF (stderr, "%s", ".");
292   if ( (0 != rd->pow) &&
293        ( (0 == ((1 << matching_bits) / 100)) ||
294          (0 == (rd->pow % ((1 << matching_bits) / 100))) ) )
295     FPRINTF (stderr, " - @ %3u%% (estimate)\n",
296              (unsigned int) (rd->pow * 100) / (1 << matching_bits));
297   /* actually do POW calculation */
298   rd->pow++;
299   if (GNUNET_OK ==
300       GNUNET_REVOCATION_check_pow (&rd->key,
301                                    rd->pow,
302                                    (unsigned int) matching_bits))
303   {
304     if ( (NULL != filename) &&
305          (sizeof (struct RevocationData) !=
306           GNUNET_DISK_fn_write (filename,
307                                 rd,
308                                 sizeof (struct RevocationData),
309                                 GNUNET_DISK_PERM_USER_READ |
310                                 GNUNET_DISK_PERM_USER_WRITE)) )
311       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
312                                 "write",
313                                 filename);
314     if (perform)
315       perform_revocation (rd);
316     else
317     {
318       FPRINTF (stderr, "%s", "\n");
319       FPRINTF (stderr,
320                _("Revocation certificate for `%s' stored in `%s'\n"),
321                revoke_ego,
322                filename);
323       GNUNET_SCHEDULER_shutdown ();
324     }
325     GNUNET_free (rd);
326     return;
327   }
328   pow_task = GNUNET_SCHEDULER_add_now (&calculate_pow,
329                                        rd);
330 }
331
332
333 /**
334  * Function called with the result from the ego lookup.
335  *
336  * @param cls closure
337  * @param ego the ego, NULL if not found
338  */
339 static void
340 ego_callback (void *cls,
341               const struct GNUNET_IDENTITY_Ego *ego)
342 {
343   struct RevocationData *rd;
344   struct GNUNET_CRYPTO_EcdsaPublicKey key;
345
346   el = NULL;
347   if (NULL == ego)
348   {
349     FPRINTF (stdout,
350              _("Ego `%s' not found.\n"),
351              revoke_ego);
352     GNUNET_SCHEDULER_shutdown ();
353     return;
354   }
355   GNUNET_IDENTITY_ego_get_public_key (ego,
356                                       &key);
357   rd = GNUNET_new (struct RevocationData);
358   if ( (NULL != filename) &&
359        (GNUNET_YES ==
360         GNUNET_DISK_file_test (filename)) &&
361        (sizeof (struct RevocationData) ==
362         GNUNET_DISK_fn_read (filename,
363                              rd,
364                              sizeof (struct RevocationData))) )
365   {
366     if (0 != memcmp (&rd->key,
367                      &key,
368                      sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey)))
369     {
370       fprintf (stderr,
371                _("Error: revocation certificate in `%s' is not for `%s'\n"),
372                filename,
373                revoke_ego);
374       GNUNET_free (rd);
375       return;
376     }
377   }
378   else
379   {
380     GNUNET_REVOCATION_sign_revocation (GNUNET_IDENTITY_ego_get_private_key (ego),
381                                        &rd->sig);
382     rd->key = key;
383   }
384   if (GNUNET_YES ==
385       GNUNET_REVOCATION_check_pow (&key,
386                                    rd->pow,
387                                    (unsigned int) matching_bits))
388   {
389     FPRINTF (stderr,
390              "%s",
391              _("Revocation certificate ready\n"));
392     if (perform)
393       perform_revocation (rd);
394     else
395       GNUNET_SCHEDULER_shutdown ();
396     GNUNET_free (rd);
397     return;
398   }
399   FPRINTF (stderr,
400            "%s",
401            _("Revocation certificate not ready, calculating proof of work\n"));
402   pow_task = GNUNET_SCHEDULER_add_now (&calculate_pow,
403                                        rd);
404   GNUNET_SCHEDULER_add_shutdown (&calculate_pow_shutdown,
405                                  rd);
406 }
407
408
409 /**
410  * Main function that will be run by the scheduler.
411  *
412  * @param cls closure
413  * @param args remaining command-line arguments
414  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
415  * @param c configuration
416  */
417 static void
418 run (void *cls,
419      char *const *args,
420      const char *cfgfile,
421      const struct GNUNET_CONFIGURATION_Handle *c)
422 {
423   struct GNUNET_CRYPTO_EcdsaPublicKey pk;
424   struct RevocationData rd;
425
426   cfg = c;
427   if (NULL != test_ego)
428   {
429     if (GNUNET_OK !=
430         GNUNET_CRYPTO_ecdsa_public_key_from_string (test_ego,
431                                                        strlen (test_ego),
432                                                        &pk))
433     {
434       FPRINTF (stderr,
435                _("Public key `%s' malformed\n"),
436                test_ego);
437       return;
438     }
439     GNUNET_SCHEDULER_add_shutdown (&do_shutdown,
440                                    NULL);
441     q = GNUNET_REVOCATION_query (cfg,
442                                  &pk,
443                                  &print_query_result,
444                                  NULL);
445     if (NULL != revoke_ego)
446       FPRINTF (stderr,
447                "%s",
448                _("Testing and revoking at the same time is not allowed, only executing test.\n"));
449     return;
450   }
451   if (GNUNET_OK !=
452       GNUNET_CONFIGURATION_get_value_number (cfg,
453                                              "REVOCATION",
454                                              "WORKBITS",
455                                              &matching_bits))
456   {
457     GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
458                                "REVOCATION",
459                                "WORKBITS");
460     return;
461   }
462   if (NULL != revoke_ego)
463   {
464     if ( !perform && (NULL == filename) )
465     {
466         FPRINTF (stderr,
467                  "%s",
468                  _("No filename to store revocation certificate given.\n"));
469         return;
470     }
471     /* main code here */
472     el = GNUNET_IDENTITY_ego_lookup (cfg,
473                                      revoke_ego,
474                                      &ego_callback,
475                                      NULL);
476     GNUNET_SCHEDULER_add_shutdown (&do_shutdown,
477                                    NULL);
478     return;
479   }
480   if ( (NULL != filename) &&
481        (perform) )
482   {
483     if (sizeof (rd) !=
484         GNUNET_DISK_fn_read (filename,
485                              &rd,
486                              sizeof (rd)))
487     {
488       fprintf (stderr,
489                _("Failed to read revocation certificate from `%s'\n"),
490                filename);
491       return;
492     }
493     GNUNET_SCHEDULER_add_shutdown (&do_shutdown,
494                                    NULL);
495     if (GNUNET_YES !=
496         GNUNET_REVOCATION_check_pow (&rd.key,
497                                      rd.pow,
498                                      (unsigned int) matching_bits))
499     {
500       struct RevocationData *cp = GNUNET_new (struct RevocationData);
501
502       *cp = rd;
503       pow_task = GNUNET_SCHEDULER_add_now (&calculate_pow,
504                                            cp);
505       GNUNET_SCHEDULER_add_shutdown (&calculate_pow_shutdown,
506                                      cp);
507       return;
508     }
509     perform_revocation (&rd);
510     return;
511   }
512   FPRINTF (stderr,
513            "%s",
514            _("No action specified. Nothing to do.\n"));
515 }
516
517
518 /**
519  * The main function of gnunet-revocation.
520  *
521  * @param argc number of arguments from the command line
522  * @param argv command line arguments
523  * @return 0 ok, 1 on error
524  */
525 int
526 main (int argc, char *const *argv)
527 {
528   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
529     {'f', "filename", "NAME",
530      gettext_noop ("use NAME for the name of the revocation file"),
531      1, &GNUNET_GETOPT_set_string, &filename},
532     {'R', "revoke", "NAME",
533      gettext_noop ("revoke the private key associated for the the private key associated with the ego NAME "),
534      1, &GNUNET_GETOPT_set_string, &revoke_ego},
535     {'p', "perform", NULL,
536      gettext_noop ("actually perform revocation, otherwise we just do the precomputation"),
537      0, &GNUNET_GETOPT_set_one, &perform},
538     {'t', "test", "KEY",
539      gettext_noop ("test if the public key KEY has been revoked"),
540      1, &GNUNET_GETOPT_set_string, &test_ego},
541     GNUNET_GETOPT_OPTION_END
542   };
543   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
544     return 2;
545
546   ret = (GNUNET_OK ==
547          GNUNET_PROGRAM_run (argc, argv, "gnunet-revocation",
548                              gettext_noop ("help text"), options, &run,
549                              NULL)) ? ret : 1;
550   GNUNET_free ((void*) argv);
551   return ret;
552 }
553
554 /* end of gnunet-revocation.c */