742111c4e6384ccd7bacec0dc3fe99002e7361b8
[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,
109                 const GNUNET_HashCode *
110                 pseudonym,
111                 const struct GNUNET_CONTAINER_MetaData *md, int rating)
112 {
113   char *id;
114
115   id = GNUNET_PSEUDONYM_id_to_name (cfg, pseudonym);
116   if (id == NULL)
117   {
118     GNUNET_break (0);
119     return GNUNET_OK;
120   }
121   fprintf (stdout, "%s (%d):\n", id, rating);
122   GNUNET_CONTAINER_meta_data_iterate (md, &EXTRACTOR_meta_data_print, stdout);
123   fprintf (stdout, "\n");
124   GNUNET_free (id);
125   return GNUNET_OK;
126 }
127
128
129 static void
130 post_advertising (void *cls, const struct GNUNET_FS_Uri *uri, const char *emsg)
131 {
132   GNUNET_HashCode nsid;
133   char *set;
134   int delta;
135
136   if (emsg != NULL)
137   {
138     fprintf (stderr, "%s", emsg);
139     ret = 1;
140   }
141   if (ns != NULL)
142   {
143     if (GNUNET_OK != GNUNET_FS_namespace_delete (ns, GNUNET_NO))
144       ret = 1;
145   }
146   if (NULL != rating_change)
147   {
148     set = rating_change;
149     while ((*set != '\0') && (*set != ':'))
150       set++;
151     if (*set != ':')
152     {
153       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
154                   _("Invalid argument `%s'\n"), rating_change);
155     }
156     else
157     {
158       *set = '\0';
159       delta = strtol (&set[1], NULL,    /* no error handling yet */
160                       10);
161       if (GNUNET_OK == GNUNET_PSEUDONYM_name_to_id (cfg, rating_change, &nsid))
162       {
163         (void) GNUNET_PSEUDONYM_rank (cfg, &nsid, delta);
164       }
165       else
166       {
167         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
168                     _("Namespace `%s' unknown.\n"), rating_change);
169       }
170     }
171     GNUNET_free (rating_change);
172     rating_change = NULL;
173   }
174   if (0 != print_local_only)
175   {
176     GNUNET_FS_namespace_list (h, &ns_printer, NULL);
177   }
178   else if (0 == no_remote_printing)
179   {
180     GNUNET_PSEUDONYM_list_all (cfg, &pseudo_printer, NULL);
181   }
182   GNUNET_FS_stop (h);
183 }
184
185
186 /**
187  * Main function that will be run by the scheduler.
188  *
189  * @param cls closure
190  * @param args remaining command-line arguments
191  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
192  * @param c configuration
193  */
194 static void
195 run (void *cls,
196      char *const *args,
197      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *c)
198 {
199   char *emsg;
200
201   cfg = c;
202   h = GNUNET_FS_start (cfg,
203                        "gnunet-pseudonym",
204                        &progress_cb,
205                        NULL, GNUNET_FS_FLAGS_NONE, GNUNET_FS_OPTIONS_END);
206   if (NULL != delete_ns)
207   {
208     ns = GNUNET_FS_namespace_create (h, delete_ns);
209     if (ns == NULL)
210     {
211       ret = 1;
212     }
213     else
214     {
215       if (GNUNET_OK != GNUNET_FS_namespace_delete (ns, GNUNET_YES))
216         ret = 1;
217       ns = NULL;
218     }
219   }
220   if (NULL != create_ns)
221   {
222     ns = GNUNET_FS_namespace_create (h, create_ns);
223     if (ns == NULL)
224     {
225       ret = 1;
226     }
227     else
228     {
229       if (NULL != root_identifier)
230       {
231         if (ksk_uri == NULL)
232         {
233           emsg = NULL;
234           ksk_uri = GNUNET_FS_uri_parse ("gnunet://fs/ksk/namespace", &emsg);
235           GNUNET_assert (NULL == emsg);
236         }
237         GNUNET_FS_namespace_advertise (h,
238                                        ksk_uri,
239                                        ns,
240                                        adv_metadata,
241                                        &bo,
242                                        root_identifier,
243                                        &post_advertising, NULL);
244         return;
245       }
246       else
247       {
248         if (ksk_uri != NULL)
249           fprintf (stderr, _("Option `%s' ignored\n"), "-k");
250       }
251     }
252   }
253   else
254   {
255     if (root_identifier != NULL)
256       fprintf (stderr, _("Option `%s' ignored\n"), "-r");
257     if (ksk_uri != NULL)
258       fprintf (stderr, _("Option `%s' ignored\n"), "-k");
259   }
260
261   post_advertising (NULL, NULL, NULL);
262 }
263
264
265 /**
266  * The main function to manipulate GNUnet pseudonyms (and publish
267  * to namespaces).
268  *
269  * @param argc number of arguments from the command line
270  * @param argv command line arguments
271  * @return 0 ok, 1 on error
272  */
273 int
274 main (int argc, char *const *argv)
275 {
276   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
277     {'a', "anonymity", "LEVEL",
278      gettext_noop ("set the desired LEVEL of sender-anonymity"),
279      1, &GNUNET_GETOPT_set_uint, &bo.anonymity_level},
280     {'C', "create", "NAME",
281      gettext_noop ("create or advertise namespace NAME"),
282      1, &GNUNET_GETOPT_set_string, &create_ns},
283     {'D', "delete", "NAME",
284      gettext_noop ("delete namespace NAME "),
285      1, &GNUNET_GETOPT_set_string, &delete_ns},
286     {'k', "keyword", "VALUE",
287      gettext_noop
288      ("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 */