-working on identity service create/rename/delete
[oweals/gnunet.git] / src / identity / gnunet-identity.c
1 /*
2      This file is part of GNUnet.
3      (C) 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 identity/gnunet-identity.c
22  * @brief IDENTITY management command line tool
23  * @author Christian Grothoff
24  *
25  * Todo:
26  * - add options to get/set default egos
27  * - print short hashes of egos when printing
28  */
29 #include "platform.h"
30 #include "gnunet_util_lib.h"
31 #include "gnunet_identity_service.h"
32
33 /**
34  * Handle to IDENTITY service.
35  */
36 static struct GNUNET_IDENTITY_Handle *sh;
37
38 /**
39  * Was "list" specified?
40  */
41 static int list;
42
43 /**
44  * Was "monitor" specified?
45  */
46 static int monitor;
47
48 /**
49  * -C option
50  */
51 static char *create_ego;
52
53 /**
54  * -D option
55  */
56 static char *delete_ego;
57
58 /**
59  * Handle for create operation.
60  */
61 static struct GNUNET_IDENTITY_Operation *create_op;
62
63 /**
64  * Handle for delete operation.
65  */
66 static struct GNUNET_IDENTITY_Operation *delete_op;
67
68
69 /**
70  * Task run on shutdown.
71  *
72  * @param cls NULL
73  * @param tc unused
74  */
75 static void
76 shutdown_task (void *cls,
77                const struct GNUNET_SCHEDULER_TaskContext *tc)
78 {
79   GNUNET_IDENTITY_disconnect (sh);
80   sh = NULL;
81 }
82
83
84
85 /**
86  * Test if we are finished yet.
87  */
88 static void
89 test_finished ()
90 {
91   if ( (NULL == create_op) &&
92        (NULL == delete_op) &&
93        (! list) &&
94        (! monitor) )  
95     GNUNET_SCHEDULER_shutdown ();
96 }
97
98
99 /**
100  * Deletion operation finished.
101  *
102  * @param cls pointer to operation handle
103  * @param emsg NULL on success, otherwise an error message
104  */
105 static void
106 delete_finished (void *cls,
107                  const char *emsg)
108 {
109   struct GNUNET_IDENTITY_Operation **op = cls;
110
111   *op = NULL;
112   if (NULL != emsg)
113     fprintf (stderr,
114              "%s\n",
115              gettext (emsg));
116   test_finished ();
117 }
118
119
120 /**
121  * Creation operation finished.
122  *
123  * @param cls pointer to operation handle
124  * @param emsg error message, NULL on success
125  */
126 static void
127 create_finished (void *cls,
128                  const char *emsg)
129 {
130   struct GNUNET_IDENTITY_Operation **op = cls;
131
132   *op = NULL;
133   if (NULL != emsg)
134     fprintf (stderr,
135              _("Failed to create ego: %s\n"),
136              emsg);
137   test_finished ();
138 }
139
140
141 /**
142  * If listing is enabled, prints information about the egos.
143  *
144  * This function is initially called for all egos and then again
145  * whenever a ego's identifier changes or if it is deleted.  At the
146  * end of the initial pass over all egos, the function is once called
147  * with 'NULL' for 'ego'. That does NOT mean that the callback won't
148  * be invoked in the future or that there was an error.
149  *
150  * When used with 'GNUNET_IDENTITY_create' or 'GNUNET_IDENTITY_get',
151  * this function is only called ONCE, and 'NULL' being passed in
152  * 'ego' does indicate an error (i.e. name is taken or no default
153  * value is known).  If 'ego' is non-NULL and if '*ctx'
154  * is set in those callbacks, the value WILL be passed to a subsequent
155  * call to the identity callback of 'GNUNET_IDENTITY_connect' (if 
156  * that one was not NULL).
157  *
158  * When an identity is renamed, this function is called with the
159  * (known) ego but the NEW identifier.  
160  *
161  * When an identity is deleted, this function is called with the
162  * (known) ego and "NULL" for the 'identifier'.  In this case,
163  * the 'ego' is henceforth invalid (and the 'ctx' should also be
164  * cleaned up).
165  *
166  * @param cls closure
167  * @param ego ego handle
168  * @param ctx context for application to store data for this ego
169  *                 (during the lifetime of this process, initially NULL)
170  * @param identifier identifier assigned by the user for this ego,
171  *                   NULL if the user just deleted the ego and it
172  *                   must thus no longer be used
173 */
174 static void
175 print_ego (void *cls,
176            struct GNUNET_IDENTITY_Ego *ego,
177            void **ctx,
178            const char *identifier)
179 {
180   if (! (list | monitor))
181     return;
182   if ( (NULL == ego) && (! monitor) )
183   {
184     GNUNET_SCHEDULER_shutdown ();
185     return;
186   }
187   if (monitor)
188     fprintf (stderr, "%s - %p\n", identifier, ego);
189   else if (NULL != identifier)
190     fprintf (stderr, "%s\n", identifier);
191 }
192
193
194 /**
195  * Main function that will be run by the scheduler.
196  *
197  * @param cls closure
198  * @param args remaining command-line arguments
199  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
200  * @param cfg configuration
201  */
202 static void
203 run (void *cls, char *const *args, const char *cfgfile,
204      const struct GNUNET_CONFIGURATION_Handle *cfg)
205 {
206   sh = GNUNET_IDENTITY_connect (cfg, &print_ego, NULL);
207   if (NULL != delete_ego)
208     delete_op = GNUNET_IDENTITY_delete (sh,
209                                         delete_ego,
210                                         &delete_finished,
211                                         &delete_op);
212   if (NULL != create_ego)
213     create_op = GNUNET_IDENTITY_create (sh,
214                                         create_ego,
215                                         &create_finished,
216                                         &create_op);
217   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
218                                 &shutdown_task, NULL);
219   test_finished ();
220 }
221
222
223 /**
224  * The main function.
225  *
226  * @param argc number of arguments from the command line
227  * @param argv command line arguments
228  * @return 0 ok, 1 on error
229  */
230 int
231 main (int argc, char *const *argv)
232 {
233   int res;
234
235   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
236     {'C', "create", "NAME",
237      gettext_noop ("create ego NAME"),
238      1, &GNUNET_GETOPT_set_string, &create_ego},
239     {'D', "delete", "NAME",
240      gettext_noop ("delete ego NAME "),
241      1, &GNUNET_GETOPT_set_string, &delete_ego},
242     {'d', "display", NULL,
243      gettext_noop ("display all egos"),
244      0, &GNUNET_GETOPT_set_one, &list},
245     {'m', "monitor", NULL,
246      gettext_noop ("run in monitor mode egos"),
247      0, &GNUNET_GETOPT_set_one, &monitor},
248     GNUNET_GETOPT_OPTION_END
249   };
250
251   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
252     return 2;
253
254   res = GNUNET_PROGRAM_run (argc, argv, "gnunet-identity",
255                             gettext_noop ("Maintain egos"), 
256                             options, &run,
257                             NULL);
258   GNUNET_free ((void *) argv);
259
260   if (GNUNET_OK != res)
261     return 1;
262   return 0;
263 }
264
265 /* end of gnunet-identity.c */