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