-help seaspider some more
[oweals/gnunet.git] / src / fs / gnunet-pseudonym.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2004, 2005, 2006, 2007, 2009, 2010 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 fs/gnunet-pseudonym.c
22  * @brief manage GNUnet namespaces / pseudonyms
23  * @author Christian Grothoff
24  */
25 #include "platform.h"
26 #include "gnunet_fs_service.h"
27
28 /**
29  * -C option
30  */
31 static char *create_ns;
32
33 /**
34  * -D option
35  */
36 static char *delete_ns;
37
38 /**
39  * -k option
40  */
41 static struct GNUNET_FS_Uri *ksk_uri;
42
43 /**
44  * -l option.
45  */
46 static int print_local_only;
47
48 /**
49  * -m option.
50  */
51 static struct GNUNET_CONTAINER_MetaData *adv_metadata;
52
53 /**
54  * Our block options (-p, -r, -a).
55  */
56 static struct GNUNET_FS_BlockOptions bo = { {0LL}, 1, 365, 1 };
57
58 /**
59  * -q option given.
60  */
61 static int no_remote_printing;
62
63 /**
64  * -r option.
65  */
66 static char *root_identifier;
67
68 /**
69  * -s option.
70  */
71 static char *rating_change;
72
73 /**
74  * Handle to fs service.
75  */
76 static struct GNUNET_FS_Handle *h;
77
78 /**
79  * Namespace we are looking at.
80  */
81 static struct GNUNET_FS_Namespace *ns;
82
83 /**
84  * Our configuration.
85  */
86 static const struct GNUNET_CONFIGURATION_Handle *cfg;
87
88 static int ret;
89
90 static void *
91 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *info)
92 {
93   return NULL;
94 }
95
96
97 static void
98 ns_printer (void *cls, const char *name, const GNUNET_HashCode * id)
99 {
100   struct GNUNET_CRYPTO_HashAsciiEncoded enc;
101
102   GNUNET_CRYPTO_hash_to_enc (id, &enc);
103   FPRINTF (stdout, "%s (%s)\n", name, (const char *) &enc);
104 }
105
106
107 static int
108 pseudo_printer (void *cls, const GNUNET_HashCode * pseudonym,
109                 const char *name, const char *unique_name,
110                 const struct GNUNET_CONTAINER_MetaData *md, int rating)
111 {
112   char *id;
113   char *unique_id;
114   int getinfo_result;
115
116   /* While we get a name from the caller, it might be NULL.
117    * GNUNET_PSEUDONYM_get_info () never returns NULL.
118    */
119   getinfo_result = GNUNET_PSEUDONYM_get_info (cfg, pseudonym,
120       NULL, NULL, &id, NULL);
121   if (getinfo_result != GNUNET_OK)
122   {
123     GNUNET_break (0);
124     return GNUNET_OK;
125   }
126   unique_id = GNUNET_PSEUDONYM_name_uniquify (cfg, pseudonym, id, NULL);
127   GNUNET_free (id);
128   FPRINTF (stdout, "%s (%d):\n", unique_id, rating);
129   GNUNET_CONTAINER_meta_data_iterate (md, &EXTRACTOR_meta_data_print, stdout);
130   FPRINTF (stdout, "%s",  "\n");
131   GNUNET_free (unique_id);
132   return GNUNET_OK;
133 }
134
135
136 static void
137 post_advertising (void *cls, const struct GNUNET_FS_Uri *uri, const char *emsg)
138 {
139   GNUNET_HashCode nsid;
140   char *set;
141   int delta;
142
143   if (emsg != NULL)
144   {
145     FPRINTF (stderr, "%s", emsg);
146     ret = 1;
147   }
148   if (ns != NULL)
149   {
150     if (GNUNET_OK != GNUNET_FS_namespace_delete (ns, GNUNET_NO))
151       ret = 1;
152   }
153   if (NULL != rating_change)
154   {
155     set = rating_change;
156     while ((*set != '\0') && (*set != ':'))
157       set++;
158     if (*set != ':')
159     {
160       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Invalid argument `%s'\n"),
161                   rating_change);
162     }
163     else
164     {
165       *set = '\0';
166       delta = strtol (&set[1], NULL,    /* no error handling yet */
167                       10);
168       if (GNUNET_OK == GNUNET_PSEUDONYM_name_to_id (cfg, rating_change, &nsid))
169       {
170         (void) GNUNET_PSEUDONYM_rank (cfg, &nsid, delta);
171       }
172       else
173       {
174         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 
175                     ("Namespace `%s' unknown. Make sure you specify its numeric suffix, if any.\n"),
176                     rating_change);
177       }
178     }
179     GNUNET_free (rating_change);
180     rating_change = NULL;
181   }
182   if (0 != print_local_only)
183   {
184     GNUNET_FS_namespace_list (h, &ns_printer, NULL);
185   }
186   else if (0 == no_remote_printing)
187   {
188     GNUNET_PSEUDONYM_list_all (cfg, &pseudo_printer, NULL);
189   }
190   GNUNET_FS_stop (h);
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 c configuration
201  */
202 static void
203 run (void *cls, char *const *args, const char *cfgfile,
204      const struct GNUNET_CONFIGURATION_Handle *c)
205 {
206   char *emsg;
207
208   cfg = c;
209   h = GNUNET_FS_start (cfg, "gnunet-pseudonym", &progress_cb, NULL,
210                        GNUNET_FS_FLAGS_NONE, GNUNET_FS_OPTIONS_END);
211   if (NULL != delete_ns)
212   {
213     ns = GNUNET_FS_namespace_create (h, delete_ns);
214     if (ns == NULL)
215     {
216       ret = 1;
217     }
218     else
219     {
220       if (GNUNET_OK != GNUNET_FS_namespace_delete (ns, GNUNET_YES))
221         ret = 1;
222       ns = NULL;
223     }
224   }
225   if (NULL != create_ns)
226   {
227     ns = GNUNET_FS_namespace_create (h, create_ns);
228     if (ns == NULL)
229     {
230       ret = 1;
231     }
232     else
233     {
234       if (NULL != root_identifier)
235       {
236         if (ksk_uri == NULL)
237         {
238           emsg = NULL;
239           ksk_uri = GNUNET_FS_uri_parse ("gnunet://fs/ksk/namespace", &emsg);
240           GNUNET_assert (NULL == emsg);
241         }
242         GNUNET_FS_namespace_advertise (h, ksk_uri, ns, adv_metadata, &bo,
243                                        root_identifier, &post_advertising,
244                                        NULL);
245         return;
246       }
247       else
248       {
249         if (ksk_uri != NULL)
250           FPRINTF (stderr, _("Option `%s' ignored\n"), "-k");
251       }
252     }
253   }
254   else
255   {
256     if (root_identifier != NULL)
257       FPRINTF (stderr, _("Option `%s' ignored\n"), "-r");
258     if (ksk_uri != NULL)
259       FPRINTF (stderr, _("Option `%s' ignored\n"), "-k");
260   }
261
262   post_advertising (NULL, NULL, NULL);
263 }
264
265
266 /**
267  * The main function to manipulate GNUnet pseudonyms (and publish
268  * to namespaces).
269  *
270  * @param argc number of arguments from the command line
271  * @param argv command line arguments
272  * @return 0 ok, 1 on error
273  */
274 int
275 main (int argc, char *const *argv)
276 {
277   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
278     {'a', "anonymity", "LEVEL",
279      gettext_noop ("set the desired LEVEL of sender-anonymity"),
280      1, &GNUNET_GETOPT_set_uint, &bo.anonymity_level},
281     {'C', "create", "NAME",
282      gettext_noop ("create or advertise namespace NAME"),
283      1, &GNUNET_GETOPT_set_string, &create_ns},
284     {'D', "delete", "NAME",
285      gettext_noop ("delete namespace NAME "),
286      1, &GNUNET_GETOPT_set_string, &delete_ns},
287     {'k', "keyword", "VALUE",
288      gettext_noop ("add an additional keyword for the advertisment"
289                    " (this option can be specified multiple times)"),
290      1, &GNUNET_FS_getopt_set_keywords, &ksk_uri},
291     {'m', "meta", "TYPE:VALUE",
292      gettext_noop ("set the meta-data for the given TYPE to the given VALUE"),
293      1, &GNUNET_FS_getopt_set_metadata, &adv_metadata},
294     {'o', "only-local", NULL,
295      gettext_noop ("print names of local namespaces"),
296      0, &GNUNET_GETOPT_set_one, &print_local_only},
297     {'p', "priority", "PRIORITY",
298      gettext_noop ("use the given PRIORITY for the advertisments"),
299      1, &GNUNET_GETOPT_set_uint, &bo.content_priority},
300     {'q', "quiet", NULL,
301      gettext_noop ("do not print names of remote namespaces"),
302      0, &GNUNET_GETOPT_set_one, &no_remote_printing},
303     {'r', "replication", "LEVEL",
304      gettext_noop ("set the desired replication LEVEL"),
305      1, &GNUNET_GETOPT_set_uint, &bo.replication_level},
306     {'R', "root", "ID",
307      gettext_noop ("specify ID of the root of the namespace"),
308      1, &GNUNET_GETOPT_set_string, &root_identifier},
309     {'s', "set-rating", "ID:VALUE",
310      gettext_noop ("change rating of namespace ID by VALUE"),
311      1, &GNUNET_GETOPT_set_string, &rating_change},
312     GNUNET_GETOPT_OPTION_END
313   };
314   bo.expiration_time =
315       GNUNET_FS_year_to_time (GNUNET_FS_get_current_year () + 2);
316   return (GNUNET_OK ==
317           GNUNET_PROGRAM_run (argc, argv, "gnunet-pseudonym [OPTIONS]",
318                               gettext_noop ("Manage GNUnet pseudonyms."),
319                               options, &run, NULL)) ? ret : 1;
320 }
321
322 /* end of gnunet-pseudonym.c */