-fix
[oweals/gnunet.git] / src / fs / gnunet-publish.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2004, 2005, 2006, 2007, 2009, 2010, 2011 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-publish.c
22  * @brief publishing files on GNUnet
23  * @author Christian Grothoff
24  * @author Krista Bennett
25  * @author James Blackwell
26  * @author Igor Wronsky
27  */
28 #include "platform.h"
29 #include "gnunet_fs_service.h"
30
31 static int ret;
32
33 static int verbose;
34
35 static const struct GNUNET_CONFIGURATION_Handle *cfg;
36
37 static struct GNUNET_FS_Handle *ctx;
38
39 static struct GNUNET_FS_PublishContext *pc;
40
41 static struct GNUNET_CONTAINER_MetaData *meta;
42
43 static struct GNUNET_FS_Uri *topKeywords;
44
45 static struct GNUNET_FS_Uri *uri;
46
47 static struct GNUNET_FS_BlockOptions bo = { {0LL}, 1, 365, 1 };
48
49 static char *uri_string;
50
51 static char *next_id;
52
53 static char *this_id;
54
55 static char *pseudonym;
56
57 static int do_insert;
58
59 static int disable_extractor;
60
61 static int do_simulate;
62
63 static int extract_only;
64
65 static int do_disable_creation_time;
66
67 static GNUNET_SCHEDULER_TaskIdentifier kill_task;
68
69 static struct GNUNET_FS_DirScanner *ds;
70
71 static struct GNUNET_FS_ShareTreeItem * directory_scan_result;
72
73 static struct GNUNET_FS_Namespace *namespace;
74
75 /**
76  * FIXME: docu
77  */
78 static void
79 do_stop_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
80 {
81   struct GNUNET_FS_PublishContext *p;
82
83   kill_task = GNUNET_SCHEDULER_NO_TASK;
84   if (pc != NULL)
85   {
86     p = pc;
87     pc = NULL;
88     GNUNET_FS_publish_stop (p);
89   }
90   if (NULL != meta)
91   {
92     GNUNET_CONTAINER_meta_data_destroy (meta);
93     meta = NULL;
94   }  
95 }
96
97
98 /**
99  * Stop the directory scanner (we had an error).
100  *
101  * @param cls closure
102  * @param tc scheduler context
103  */
104 static void
105 stop_scanner_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
106 {
107   kill_task = GNUNET_SCHEDULER_NO_TASK;
108   GNUNET_FS_directory_scan_abort (ds);
109   ds = NULL;
110   if (namespace != NULL)
111   {
112     GNUNET_FS_namespace_delete (namespace, GNUNET_NO);
113     namespace = NULL;
114   }
115   GNUNET_FS_stop (ctx);
116   ctx = NULL;
117   ret = 1;
118 }
119
120
121 /**
122  * Called by FS client to give information about the progress of an
123  * operation.
124  *
125  * @param cls closure
126  * @param info details about the event, specifying the event type
127  *        and various bits about the event
128  * @return client-context (for the next progress call
129  *         for this operation; should be set to NULL for
130  *         SUSPEND and STOPPED events).  The value returned
131  *         will be passed to future callbacks in the respective
132  *         field in the GNUNET_FS_ProgressInfo struct.
133  */
134 static void *
135 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *info)
136 {
137   char *s;
138
139   switch (info->status)
140   {
141   case GNUNET_FS_STATUS_PUBLISH_START:
142     break;
143   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
144     if (verbose)
145     {
146       s = GNUNET_STRINGS_relative_time_to_string (info->value.publish.eta);
147       FPRINTF (stdout, _("Publishing `%s' at %llu/%llu (%s remaining)\n"),
148                info->value.publish.filename,
149                (unsigned long long) info->value.publish.completed,
150                (unsigned long long) info->value.publish.size, s);
151       GNUNET_free (s);
152     }
153     break;
154   case GNUNET_FS_STATUS_PUBLISH_ERROR:
155     FPRINTF (stderr, _("Error publishing: %s.\n"),
156              info->value.publish.specifics.error.message);
157     if (kill_task != GNUNET_SCHEDULER_NO_TASK)
158     {
159       GNUNET_SCHEDULER_cancel (kill_task);
160       kill_task = GNUNET_SCHEDULER_NO_TASK;
161     }
162     kill_task = GNUNET_SCHEDULER_add_now (&do_stop_task, NULL);
163     break;
164   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
165     FPRINTF (stdout, _("Publishing `%s' done.\n"),
166              info->value.publish.filename);
167     s = GNUNET_FS_uri_to_string (info->value.publish.specifics.
168                                  completed.chk_uri);
169     FPRINTF (stdout, _("URI is `%s'.\n"), s);
170     GNUNET_free (s);
171     if (info->value.publish.pctx == NULL)
172     {
173       if (kill_task != GNUNET_SCHEDULER_NO_TASK)
174       {
175         GNUNET_SCHEDULER_cancel (kill_task);
176         kill_task = GNUNET_SCHEDULER_NO_TASK;
177       }
178       kill_task = GNUNET_SCHEDULER_add_now (&do_stop_task, NULL);
179     }
180     break;
181   case GNUNET_FS_STATUS_PUBLISH_STOPPED:
182     GNUNET_break (NULL == pc);
183     return NULL;
184   case GNUNET_FS_STATUS_UNINDEX_PROGRESS:
185     return NULL;
186   case GNUNET_FS_STATUS_UNINDEX_COMPLETED:
187     FPRINTF (stderr, "%s",  _("Cleanup after abort complete.\n"));
188     return NULL;
189   default:
190     FPRINTF (stderr, _("Unexpected status: %d\n"), info->status);
191     return NULL;
192   }
193   return "";                    /* non-null */
194 }
195
196
197 /**
198  * Print metadata entries (except binary
199  * metadata and the filename).
200  *
201  * @param cls closure
202  * @param plugin_name name of the plugin that generated the meta data
203  * @param type type of the meta data
204  * @param format format of data
205  * @param data_mime_type mime type of data
206  * @param data value of the meta data
207  * @param data_size number of bytes in data
208  * @return always 0
209  */
210 static int
211 meta_printer (void *cls, const char *plugin_name, enum EXTRACTOR_MetaType type,
212               enum EXTRACTOR_MetaFormat format, const char *data_mime_type,
213               const char *data, size_t data_size)
214 {
215   if ((format != EXTRACTOR_METAFORMAT_UTF8) &&
216       (format != EXTRACTOR_METAFORMAT_C_STRING))
217     return 0;
218   if (type == EXTRACTOR_METATYPE_GNUNET_ORIGINAL_FILENAME)
219     return 0;
220   FPRINTF (stdout, "\t%s - %s\n", EXTRACTOR_metatype_to_string (type), data);
221   return 0;
222 }
223
224
225 /**
226  * Iterator printing keywords
227  *
228  * @param cls closure
229  * @param keyword the keyword
230  * @param is_mandatory is the keyword mandatory (in a search)
231  * @return GNUNET_OK to continue to iterate, GNUNET_SYSERR to abort
232  */
233 static int
234 keyword_printer (void *cls, const char *keyword, int is_mandatory)
235 {
236   FPRINTF (stdout, "\t%s\n", keyword);
237   return GNUNET_OK;
238 }
239
240
241 /**
242  * Function called on all entries before the publication.  This is
243  * where we perform modifications to the default based on command-line
244  * options.
245  *
246  * @param cls closure
247  * @param fi the entry in the publish-structure
248  * @param length length of the file or directory
249  * @param m metadata for the file or directory (can be modified)
250  * @param uri pointer to the keywords that will be used for this entry (can be modified)
251  * @param bo block options
252  * @param do_index should we index?
253  * @param client_info pointer to client context set upon creation (can be modified)
254  * @return GNUNET_OK to continue, GNUNET_NO to remove
255  *         this entry from the directory, GNUNET_SYSERR
256  *         to abort the iteration
257  */
258 static int
259 publish_inspector (void *cls, struct GNUNET_FS_FileInformation *fi,
260                    uint64_t length, struct GNUNET_CONTAINER_MetaData *m,
261                    struct GNUNET_FS_Uri **uri,
262                    struct GNUNET_FS_BlockOptions *bo, int *do_index,
263                    void **client_info)
264 {
265   char *fn;
266   char *fs;
267   struct GNUNET_FS_Uri *new_uri;
268
269   if (cls == fi)
270     return GNUNET_OK;
271   if (NULL != topKeywords)
272   {
273     if (*uri != NULL)
274     {
275       new_uri = GNUNET_FS_uri_ksk_merge (topKeywords, *uri);
276       GNUNET_FS_uri_destroy (*uri);
277       *uri = new_uri;
278       GNUNET_FS_uri_destroy (topKeywords);
279     }
280     else
281     {
282       *uri = topKeywords;
283     }
284     topKeywords = NULL;
285   }
286   if (NULL != meta)
287   {
288     GNUNET_CONTAINER_meta_data_merge (m, meta);
289     GNUNET_CONTAINER_meta_data_destroy (meta);
290     meta = NULL;
291   }
292   if (!do_disable_creation_time)
293     GNUNET_CONTAINER_meta_data_add_publication_date (m);
294   if ( (disable_extractor) &&
295        (NULL != *uri) )
296   {
297     GNUNET_FS_uri_destroy (*uri);
298     *uri = NULL;
299   }
300   if (extract_only)
301   {
302     fn = GNUNET_CONTAINER_meta_data_get_by_type (m,
303                                                  EXTRACTOR_METATYPE_GNUNET_ORIGINAL_FILENAME);
304     fs = GNUNET_STRINGS_byte_size_fancy (length);
305     FPRINTF (stdout, _("Meta data for file `%s' (%s)\n"), fn, fs);
306     GNUNET_CONTAINER_meta_data_iterate (m, &meta_printer, NULL);
307     FPRINTF (stdout, _("Keywords for file `%s' (%s)\n"), fn, fs);
308     GNUNET_free (fn);
309     GNUNET_free (fs);
310     if (NULL != *uri)
311       GNUNET_FS_uri_ksk_get_keywords (*uri, &keyword_printer, NULL);
312     FPRINTF (stdout, "%s",  "\n");
313   }
314   if (GNUNET_YES == GNUNET_FS_meta_data_test_for_directory (m))
315     GNUNET_FS_file_information_inspect (fi, &publish_inspector, fi);
316   return GNUNET_OK;
317 }
318
319
320 /**
321  * FIXME: docu
322  */
323 static void
324 uri_sks_continuation (void *cls, const struct GNUNET_FS_Uri *ksk_uri,
325                       const char *emsg)
326 {
327   if (emsg != NULL)
328   {
329     FPRINTF (stderr, "%s\n", emsg);
330     ret = 1;
331   }
332   GNUNET_FS_uri_destroy (uri);
333   uri = NULL;
334   GNUNET_FS_stop (ctx);
335   ctx = NULL;
336 }
337
338
339 /**
340  * FIXME: docu
341  */
342 static void
343 uri_ksk_continuation (void *cls, const struct GNUNET_FS_Uri *ksk_uri,
344                       const char *emsg)
345 {
346   struct GNUNET_FS_Namespace *ns;
347
348   if (emsg != NULL)
349   {
350     FPRINTF (stderr, "%s\n", emsg);
351     ret = 1;
352   }
353   if (pseudonym != NULL)
354   {
355     ns = GNUNET_FS_namespace_create (ctx, pseudonym);
356     if (ns == NULL)
357     {
358       FPRINTF (stderr, _("Failed to create namespace `%s'\n"), pseudonym);
359       ret = 1;
360     }
361     else
362     {
363       GNUNET_FS_publish_sks (ctx, ns, this_id, next_id, meta, uri, &bo,
364                              GNUNET_FS_PUBLISH_OPTION_NONE,
365                              &uri_sks_continuation, NULL);
366       GNUNET_assert (GNUNET_OK == GNUNET_FS_namespace_delete (ns, GNUNET_NO));
367       return;
368     }
369   }
370   GNUNET_FS_uri_destroy (uri);
371   uri = NULL;
372   GNUNET_FS_stop (ctx);
373   ctx = NULL;
374 }
375
376
377 /**
378  * FIXME: docu
379  */
380 static struct GNUNET_FS_FileInformation *
381 get_file_information (struct GNUNET_FS_ShareTreeItem *item)
382 {
383   struct GNUNET_FS_FileInformation *fi;
384   struct GNUNET_FS_FileInformation *fic;
385   struct GNUNET_FS_ShareTreeItem *child;
386
387   if (item->is_directory == GNUNET_YES)
388   {
389     GNUNET_CONTAINER_meta_data_delete (item->meta,
390         EXTRACTOR_METATYPE_MIMETYPE, NULL, 0);
391     GNUNET_FS_meta_data_make_directory (item->meta);
392     if (NULL == item->ksk_uri)
393     {
394       const char *mime = GNUNET_FS_DIRECTORY_MIME;
395       item->ksk_uri = GNUNET_FS_uri_ksk_create_from_args (1, &mime);
396     }
397     else
398       GNUNET_FS_uri_ksk_add_keyword (item->ksk_uri, GNUNET_FS_DIRECTORY_MIME,
399         GNUNET_NO);
400     fi = GNUNET_FS_file_information_create_empty_directory (
401         ctx, NULL, item->ksk_uri,
402         item->meta, &bo, item->filename);
403     for (child = item->children_head; child; child = child->next)
404     {
405       fic = get_file_information (child);
406       GNUNET_break (GNUNET_OK == GNUNET_FS_file_information_add (fi, fic));
407     }
408   }
409   else
410   {
411     fi = GNUNET_FS_file_information_create_from_file (
412         ctx, NULL, item->filename,
413         item->ksk_uri, item->meta, !do_insert,
414         &bo);
415   }
416   return fi;
417 }
418
419
420 /**
421  * FIXME: docu
422  */
423 static void
424 directory_trim_complete ()
425 {
426   struct GNUNET_FS_FileInformation *fi;
427
428   fi = get_file_information (directory_scan_result);
429   GNUNET_FS_share_tree_free (directory_scan_result);
430   directory_scan_result = NULL;
431   if (fi == NULL)
432   {
433     FPRINTF (stderr, "%s", _("Could not publish\n"));
434     if (namespace != NULL)
435       GNUNET_FS_namespace_delete (namespace, GNUNET_NO);
436     GNUNET_FS_stop (ctx);
437     ret = 1;
438     return;
439   }
440   GNUNET_FS_file_information_inspect (fi, &publish_inspector, NULL);
441   if (extract_only)
442   {
443     if (namespace != NULL)
444       GNUNET_FS_namespace_delete (namespace, GNUNET_NO);
445     GNUNET_FS_file_information_destroy (fi, NULL, NULL);
446     GNUNET_FS_stop (ctx);
447     if (kill_task != GNUNET_SCHEDULER_NO_TASK)
448     {
449       GNUNET_SCHEDULER_cancel (kill_task);
450       kill_task = GNUNET_SCHEDULER_NO_TASK;
451     }
452     return;
453   }
454   pc = GNUNET_FS_publish_start (ctx, fi, namespace, this_id, next_id,
455                                 (do_simulate) ?
456                                 GNUNET_FS_PUBLISH_OPTION_SIMULATE_ONLY :
457                                 GNUNET_FS_PUBLISH_OPTION_NONE);
458   if (NULL == pc)
459   {
460     FPRINTF (stderr, "%s",  _("Could not start publishing.\n"));
461     GNUNET_FS_stop (ctx);
462     ret = 1;
463     return;
464   }
465 }
466
467
468 /**
469  * Function called by the directory scanner as we build the tree
470  * that we will need to publish later.
471  *
472  * @param cls closure
473  * @param filename which file we are making progress on
474  * @param is_directory GNUNET_YES if this is a directory,
475  *                     GNUNET_NO if this is a file
476  *                     GNUNET_SYSERR if it is neither (or unknown)
477  * @param reason kind of progress we are making
478  */
479 static void
480 directory_scan_cb (void *cls, 
481                    const char *filename, 
482                    int is_directory,
483                    enum GNUNET_FS_DirScannerProgressUpdateReason reason)
484 {
485   switch (reason)
486   {
487   case GNUNET_FS_DIRSCANNER_FILE_START:
488     if (verbose > 1)
489     {
490       if (is_directory == GNUNET_YES)
491         FPRINTF (stdout, _("Scanning directory `%s'.\n"), filename);
492       else
493         FPRINTF (stdout, _("Scanning file `%s'.\n"), filename);      
494     }
495     break;
496   case GNUNET_FS_DIRSCANNER_FILE_IGNORED:
497     FPRINTF (stderr, 
498              _("There was trouble processing file `%s', skipping it.\n"),
499              filename);
500     break;
501   case GNUNET_FS_DIRSCANNER_ALL_COUNTED:
502     if (verbose)
503       FPRINTF (stdout, "%s", _("Preprocessing complete.\n"));      
504     break;
505   case GNUNET_FS_DIRSCANNER_EXTRACT_FINISHED:
506     if (verbose > 2)
507       FPRINTF (stdout, _("Extracting meta data from file `%s' complete.\n"), filename);      
508     break;
509   case GNUNET_FS_DIRSCANNER_FINISHED:
510     if (verbose > 1)
511       FPRINTF (stdout, "%s", _("Meta data extraction has finished.\n"));
512     directory_scan_result = GNUNET_FS_directory_scan_get_result (ds);
513     ds = NULL;
514     GNUNET_FS_share_tree_trim (directory_scan_result);
515     directory_trim_complete ();
516     break;
517   case GNUNET_FS_DIRSCANNER_INTERNAL_ERROR:
518     FPRINTF (stdout, "%s", _("Internal error scanning directory.\n"));
519     if (kill_task != GNUNET_SCHEDULER_NO_TASK)
520     {
521       GNUNET_SCHEDULER_cancel (kill_task);
522       kill_task = GNUNET_SCHEDULER_NO_TASK;
523     }
524     kill_task = GNUNET_SCHEDULER_add_now (&stop_scanner_task, NULL);
525     break;
526   default:
527     GNUNET_assert (0);
528     break;
529   }
530   fflush (stdout);
531 }
532
533
534 /**
535  * Main function that will be run by the scheduler.
536  *
537  * @param cls closure
538  * @param args remaining command-line arguments
539  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
540  * @param c configuration
541  */
542 static void
543 run (void *cls, char *const *args, const char *cfgfile,
544      const struct GNUNET_CONFIGURATION_Handle *c)
545 {
546   char *ex;
547   char *emsg;
548
549   /* check arguments */
550   if ((uri_string != NULL) && (extract_only))
551   {
552     printf (_("Cannot extract metadata from a URI!\n"));
553     ret = -1;
554     return;
555   }
556   if (((uri_string == NULL) || (extract_only)) &&
557       ((args[0] == NULL) || (args[1] != NULL)))
558   {
559     printf (_("You must specify one and only one filename for insertion.\n"));
560     ret = -1;
561     return;
562   }
563   if ((uri_string != NULL) && (args[0] != NULL))
564   {
565     printf (_("You must NOT specify an URI and a filename.\n"));
566     ret = -1;
567     return;
568   }
569   if (pseudonym != NULL)
570   {
571     if (NULL == this_id)
572     {
573       FPRINTF (stderr, _("Option `%s' is required when using option `%s'.\n"),
574                "-t", "-P");
575       ret = -1;
576       return;
577     }
578   }
579   else
580   {                             /* ordinary insertion checks */
581     if (NULL != next_id)
582     {
583       FPRINTF (stderr, _("Option `%s' makes no sense without option `%s'.\n"),
584                "-N", "-P");
585       ret = -1;
586       return;
587     }
588     if (NULL != this_id)
589     {
590       FPRINTF (stderr, _("Option `%s' makes no sense without option `%s'.\n"),
591                "-t", "-P");
592       ret = -1;
593       return;
594     }
595   }
596   cfg = c;
597   ctx =
598       GNUNET_FS_start (cfg, "gnunet-publish", &progress_cb, NULL,
599                        GNUNET_FS_FLAGS_NONE, GNUNET_FS_OPTIONS_END);
600   if (NULL == ctx)
601   {
602     FPRINTF (stderr, _("Could not initialize `%s' subsystem.\n"), "FS");
603     ret = 1;
604     return;
605   }
606   namespace = NULL;
607   if (NULL != pseudonym)
608   {
609     namespace = GNUNET_FS_namespace_create (ctx, pseudonym);
610     if (NULL == namespace)
611     {
612       FPRINTF (stderr, _("Could not create namespace `%s'\n"), pseudonym);
613       GNUNET_FS_stop (ctx);
614       ret = 1;
615       return;
616     }
617   }
618   if (NULL != uri_string)
619   {
620     emsg = NULL;
621     uri = GNUNET_FS_uri_parse (uri_string, &emsg);
622     if (uri == NULL)
623     {
624       FPRINTF (stderr, _("Failed to parse URI: %s\n"), emsg);
625       GNUNET_free (emsg);
626       if (namespace != NULL)
627         GNUNET_FS_namespace_delete (namespace, GNUNET_NO);
628       GNUNET_FS_stop (ctx);
629       ret = 1;
630       return;
631     }
632     GNUNET_FS_publish_ksk (ctx, topKeywords, meta, uri, &bo,
633                            GNUNET_FS_PUBLISH_OPTION_NONE, &uri_ksk_continuation,
634                            NULL);
635     if (namespace != NULL)
636       GNUNET_FS_namespace_delete (namespace, GNUNET_NO);
637     return;
638   }
639   if (GNUNET_OK !=
640       GNUNET_CONFIGURATION_get_value_string (cfg, "FS", "EXTRACTORS", &ex))
641     ex = NULL;
642   if (0 != ACCESS (args[0], R_OK))
643   {
644     FPRINTF (stderr,
645              _("Failed to access `%s': %s\n"),
646              args[0],
647              STRERROR (errno));
648     return;
649   }
650   ds = GNUNET_FS_directory_scan_start (args[0],
651                                        disable_extractor, 
652                                        ex, 
653                                        &directory_scan_cb, NULL);
654   if (NULL == ds)
655   {
656     FPRINTF (stderr,
657              "%s", _("Failed to start meta directory scanner.  Is gnunet-helper-publish-fs installed?\n"));
658     return;
659   }
660   kill_task =
661       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &do_stop_task,
662                                     NULL);
663 }
664
665
666 /**
667  * The main function to publish content to GNUnet.
668  *
669  * @param argc number of arguments from the command line
670  * @param argv command line arguments
671  * @return 0 ok, 1 on error
672  */
673 int
674 main (int argc, char *const *argv)
675 {
676   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
677     {'a', "anonymity", "LEVEL",
678      gettext_noop ("set the desired LEVEL of sender-anonymity"),
679      1, &GNUNET_GETOPT_set_uint, &bo.anonymity_level},
680     {'d', "disable-creation-time", NULL,
681      gettext_noop
682      ("disable adding the creation time to the metadata of the uploaded file"),
683      0, &GNUNET_GETOPT_set_one, &do_disable_creation_time},
684     {'D', "disable-extractor", NULL,
685      gettext_noop ("do not use libextractor to add keywords or metadata"),
686      0, &GNUNET_GETOPT_set_one, &disable_extractor},
687     {'e', "extract", NULL,
688      gettext_noop
689      ("print list of extracted keywords that would be used, but do not perform upload"),
690      0, &GNUNET_GETOPT_set_one, &extract_only},
691     {'k', "key", "KEYWORD",
692      gettext_noop
693      ("add an additional keyword for the top-level file or directory"
694       " (this option can be specified multiple times)"),
695      1, &GNUNET_FS_getopt_set_keywords, &topKeywords},
696     {'m', "meta", "TYPE:VALUE",
697      gettext_noop ("set the meta-data for the given TYPE to the given VALUE"),
698      1, &GNUNET_FS_getopt_set_metadata, &meta},
699     {'n', "noindex", NULL,
700      gettext_noop ("do not index, perform full insertion (stores entire "
701                    "file in encrypted form in GNUnet database)"),
702      0, &GNUNET_GETOPT_set_one, &do_insert},
703     {'N', "next", "ID",
704      gettext_noop
705      ("specify ID of an updated version to be published in the future"
706       " (for namespace insertions only)"),
707      1, &GNUNET_GETOPT_set_string, &next_id},
708     {'p', "priority", "PRIORITY",
709      gettext_noop ("specify the priority of the content"),
710      1, &GNUNET_GETOPT_set_uint, &bo.content_priority},
711     {'P', "pseudonym", "NAME",
712      gettext_noop
713      ("publish the files under the pseudonym NAME (place file into namespace)"),
714      1, &GNUNET_GETOPT_set_string, &pseudonym},
715     {'r', "replication", "LEVEL",
716      gettext_noop ("set the desired replication LEVEL"),
717      1, &GNUNET_GETOPT_set_uint, &bo.replication_level},
718     {'s', "simulate-only", NULL,
719      gettext_noop ("only simulate the process but do not do any "
720                    "actual publishing (useful to compute URIs)"),
721      0, &GNUNET_GETOPT_set_one, &do_simulate},
722     {'t', "this", "ID",
723      gettext_noop ("set the ID of this version of the publication"
724                    " (for namespace insertions only)"),
725      1, &GNUNET_GETOPT_set_string, &this_id},
726     {'u', "uri", "URI",
727      gettext_noop ("URI to be published (can be used instead of passing a "
728                    "file to add keywords to the file with the respective URI)"),
729      1, &GNUNET_GETOPT_set_string, &uri_string},
730     {'V', "verbose", NULL,
731      gettext_noop ("be verbose (print progress information)"),
732      0, &GNUNET_GETOPT_set_one, &verbose},
733     GNUNET_GETOPT_OPTION_END
734   };
735   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
736               "GNUnet publish starts\n");
737   bo.expiration_time =
738       GNUNET_FS_year_to_time (GNUNET_FS_get_current_year () + 2);
739   return (GNUNET_OK ==
740           GNUNET_PROGRAM_run (argc, argv, "gnunet-publish [OPTIONS] FILENAME",
741                               gettext_noop
742                               ("Publish a file or directory on GNUnet"),
743                               options, &run, NULL)) ? ret : 1;
744 }
745
746 /* end of gnunet-publish.c */