-fixes
[oweals/gnunet.git] / src / fs / fs_publish.c
1 /*
2      This file is part of GNUnet.
3      (C) 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 /**
22  * @file fs/fs_publish.c
23  * @brief publish a file or directory in GNUnet
24  * @see https://gnunet.org/encoding
25  * @author Krista Bennett
26  * @author Christian Grothoff
27  */
28
29 #include "platform.h"
30 #include "gnunet_constants.h"
31 #include "gnunet_signatures.h"
32 #include "gnunet_util_lib.h"
33 #include "gnunet_fs_service.h"
34 #include "fs_api.h"
35 #include "fs_tree.h"
36
37
38 /**
39  * Fill in all of the generic fields for
40  * a publish event and call the callback.
41  *
42  * @param pi structure to fill in
43  * @param pc overall publishing context
44  * @param p file information for the file being published
45  * @param offset where in the file are we so far
46  * @return value returned from callback
47  */
48 void *
49 GNUNET_FS_publish_make_status_ (struct GNUNET_FS_ProgressInfo *pi,
50                                 struct GNUNET_FS_PublishContext *pc,
51                                 const struct GNUNET_FS_FileInformation *p,
52                                 uint64_t offset)
53 {
54   pi->value.publish.pc = pc;
55   pi->value.publish.fi = p;
56   pi->value.publish.cctx = p->client_info;
57   pi->value.publish.pctx = (NULL == p->dir) ? NULL : p->dir->client_info;
58   pi->value.publish.filename = p->filename;
59   pi->value.publish.size =
60       (p->is_directory == GNUNET_YES) ? p->data.dir.dir_size : p->data.file.file_size;
61   pi->value.publish.eta =
62       GNUNET_TIME_calculate_eta (p->start_time, offset, pi->value.publish.size);
63   pi->value.publish.completed = offset;
64   pi->value.publish.duration =
65       GNUNET_TIME_absolute_get_duration (p->start_time);
66   pi->value.publish.anonymity = p->bo.anonymity_level;
67   return pc->h->upcb (pc->h->upcb_cls, pi);
68 }
69
70
71 /**
72  * Cleanup the publish context, we're done with it.
73  *
74  * @param pc struct to clean up
75  */
76 static void
77 publish_cleanup (struct GNUNET_FS_PublishContext *pc)
78 {
79   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Cleaning up publish context (done!)\n");
80   if (pc->fhc != NULL)
81   {
82     GNUNET_CRYPTO_hash_file_cancel (pc->fhc);
83     pc->fhc = NULL;
84   }
85   GNUNET_FS_file_information_destroy (pc->fi, NULL, NULL);
86   if (pc->namespace != NULL)
87   {
88     GNUNET_FS_namespace_delete (pc->namespace, GNUNET_NO);
89     pc->namespace = NULL;
90   }
91   GNUNET_free_non_null (pc->nid);
92   GNUNET_free_non_null (pc->nuid);
93   GNUNET_free_non_null (pc->serialization);
94   if (pc->dsh != NULL)
95   {
96     GNUNET_DATASTORE_disconnect (pc->dsh, GNUNET_NO);
97     pc->dsh = NULL;
98   }
99   if (pc->client != NULL)
100   {
101     GNUNET_CLIENT_disconnect (pc->client, GNUNET_NO);
102     pc->client = NULL;
103   }
104   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == pc->upload_task);
105   GNUNET_free (pc);
106 }
107
108
109 /**
110  * Function called by the datastore API with
111  * the result from the PUT request.
112  *
113  * @param cls the 'struct GNUNET_FS_PublishContext'
114  * @param success GNUNET_OK on success
115  * @param min_expiration minimum expiration time required for content to be stored
116  * @param msg error message (or NULL)
117  */
118 static void
119 ds_put_cont (void *cls, int success, 
120              struct GNUNET_TIME_Absolute min_expiration,
121              const char *msg)
122 {
123   struct GNUNET_FS_PublishContext *pc = cls;
124   struct GNUNET_FS_ProgressInfo pi;
125
126   pc->qre = NULL;
127   if (GNUNET_SYSERR == success)
128   {
129     GNUNET_asprintf (&pc->fi_pos->emsg, _("Publishing failed: %s"), msg);
130     pi.status = GNUNET_FS_STATUS_PUBLISH_ERROR;
131     pi.value.publish.eta = GNUNET_TIME_UNIT_FOREVER_REL;
132     pi.value.publish.specifics.error.message = pc->fi_pos->emsg;
133     pc->fi_pos->client_info =
134         GNUNET_FS_publish_make_status_ (&pi, pc, pc->fi_pos, 0);
135     if ((pc->fi_pos->is_directory != GNUNET_YES) &&
136         (pc->fi_pos->filename != NULL) &&
137         (pc->fi_pos->data.file.do_index == GNUNET_YES))
138     {
139       /* run unindex to clean up */
140       GNUNET_FS_unindex_start (pc->h, pc->fi_pos->filename, NULL);
141     }
142   }
143   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == pc->upload_task);
144   pc->upload_task =
145       GNUNET_SCHEDULER_add_with_priority (GNUNET_SCHEDULER_PRIORITY_BACKGROUND,
146                                           &GNUNET_FS_publish_main_, pc);
147 }
148
149
150 /**
151  * Generate the callback that signals clients
152  * that a file (or directory) has been completely
153  * published.
154  *
155  * @param p the completed upload
156  * @param pc context of the publication
157  */
158 static void
159 signal_publish_completion (struct GNUNET_FS_FileInformation *p,
160                            struct GNUNET_FS_PublishContext *pc)
161 {
162   struct GNUNET_FS_ProgressInfo pi;
163
164   pi.status = GNUNET_FS_STATUS_PUBLISH_COMPLETED;
165   pi.value.publish.eta = GNUNET_TIME_UNIT_ZERO;
166   pi.value.publish.specifics.completed.chk_uri = p->chk_uri;
167   p->client_info =
168       GNUNET_FS_publish_make_status_ (&pi, pc, p,
169                                       GNUNET_ntohll (p->chk_uri->data.
170                                                      chk.file_length));
171 }
172
173
174 /**
175  * Generate the callback that signals clients
176  * that a file (or directory) has encountered
177  * a problem during publication.
178  *
179  * @param p the upload that had trouble
180  * @param pc context of the publication
181  * @param emsg error message
182  */
183 static void
184 signal_publish_error (struct GNUNET_FS_FileInformation *p,
185                       struct GNUNET_FS_PublishContext *pc, const char *emsg)
186 {
187   struct GNUNET_FS_ProgressInfo pi;
188
189   p->emsg = GNUNET_strdup (emsg);
190   pi.status = GNUNET_FS_STATUS_PUBLISH_ERROR;
191   pi.value.publish.eta = GNUNET_TIME_UNIT_FOREVER_REL;
192   pi.value.publish.specifics.error.message = emsg;
193   p->client_info = GNUNET_FS_publish_make_status_ (&pi, pc, p, 0);
194   if ((p->is_directory != GNUNET_YES) && (p->filename != NULL) &&
195       (p->data.file.do_index == GNUNET_YES))
196   {
197     /* run unindex to clean up */
198     GNUNET_FS_unindex_start (pc->h, p->filename, NULL);
199   }
200
201 }
202
203
204 /**
205  * Datastore returns from reservation cancel request.
206  *
207  * @param cls the 'struct GNUNET_FS_PublishContext'
208  * @param success success code (not used)
209  * @param min_expiration minimum expiration time required for content to be stored
210  * @param msg error message (typically NULL, not used)
211  */
212 static void
213 finish_release_reserve (void *cls, int success, 
214                         struct GNUNET_TIME_Absolute min_expiration,
215                         const char *msg)
216 {
217   struct GNUNET_FS_PublishContext *pc = cls;
218
219   pc->qre = NULL;
220   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Releasing reserve done!\n");
221   signal_publish_completion (pc->fi, pc);
222   pc->all_done = GNUNET_YES;
223   GNUNET_FS_publish_sync_ (pc);
224 }
225
226
227 /**
228  * We've finished publishing the SBlock as part of a larger upload.
229  * Check the result and complete the larger upload.
230  *
231  * @param cls the "struct GNUNET_FS_PublishContext*" of the larger upload
232  * @param uri URI of the published SBlock
233  * @param emsg NULL on success, otherwise error message
234  */
235 static void
236 publish_sblocks_cont (void *cls, const struct GNUNET_FS_Uri *uri,
237                       const char *emsg)
238 {
239   struct GNUNET_FS_PublishContext *pc = cls;
240
241   pc->sks_pc = NULL;
242   if (NULL != emsg)
243   {
244     signal_publish_error (pc->fi, pc, emsg);
245     GNUNET_FS_publish_sync_ (pc);
246     return;
247   }
248   GNUNET_assert (pc->qre == NULL);
249   if ((pc->dsh != NULL) && (pc->rid != 0))
250   {
251     pc->qre =
252         GNUNET_DATASTORE_release_reserve (pc->dsh, pc->rid, UINT_MAX, UINT_MAX,
253                                           GNUNET_TIME_UNIT_FOREVER_REL,
254                                           &finish_release_reserve, pc);
255   }
256   else
257   {
258     finish_release_reserve (pc, GNUNET_OK, GNUNET_TIME_UNIT_ZERO_ABS, NULL);
259   }
260 }
261
262
263 /**
264  * We are almost done publishing the structure,
265  * add SBlocks (if needed).
266  *
267  * @param pc overall upload data
268  */
269 static void
270 publish_sblock (struct GNUNET_FS_PublishContext *pc)
271 {
272   if (NULL != pc->namespace)
273     pc->sks_pc = GNUNET_FS_publish_sks (pc->h, pc->namespace, pc->nid, pc->nuid,
274                                         pc->fi->meta, pc->fi->chk_uri, &pc->fi->bo,
275                                         pc->options, &publish_sblocks_cont, pc);
276   else
277     publish_sblocks_cont (pc, NULL, NULL);
278 }
279
280
281 /**
282  * We've finished publishing a KBlock as part of a larger upload.
283  * Check the result and continue the larger upload.
284  *
285  * @param cls the "struct GNUNET_FS_PublishContext*"
286  *        of the larger upload
287  * @param uri URI of the published blocks
288  * @param emsg NULL on success, otherwise error message
289  */
290 static void
291 publish_kblocks_cont (void *cls, const struct GNUNET_FS_Uri *uri,
292                       const char *emsg)
293 {
294   struct GNUNET_FS_PublishContext *pc = cls;
295   struct GNUNET_FS_FileInformation *p = pc->fi_pos;
296
297   pc->ksk_pc = NULL;
298   if (NULL != emsg)
299   {
300     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Error uploading KSK blocks: %s\n",
301                 emsg);
302     signal_publish_error (p, pc, emsg);
303     GNUNET_FS_file_information_sync_ (p);
304     GNUNET_FS_publish_sync_ (pc);
305     GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == pc->upload_task);
306     pc->upload_task =
307       GNUNET_SCHEDULER_add_with_priority
308       (GNUNET_SCHEDULER_PRIORITY_BACKGROUND, &GNUNET_FS_publish_main_, pc);
309     return;
310   }
311   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
312               "KSK blocks published, moving on to next file\n");
313   if (NULL != p->dir)
314     signal_publish_completion (p, pc);
315   /* move on to next file */
316   if (NULL != p->next)
317     pc->fi_pos = p->next;
318   else
319     pc->fi_pos = p->dir;
320   GNUNET_FS_publish_sync_ (pc);
321   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == pc->upload_task);
322   pc->upload_task =
323       GNUNET_SCHEDULER_add_with_priority (GNUNET_SCHEDULER_PRIORITY_BACKGROUND,
324                                           &GNUNET_FS_publish_main_, pc);
325 }
326
327
328 /**
329  * Function called by the tree encoder to obtain
330  * a block of plaintext data (for the lowest level
331  * of the tree).
332  *
333  * @param cls our publishing context
334  * @param offset identifies which block to get
335  * @param max (maximum) number of bytes to get; returning
336  *        fewer will also cause errors
337  * @param buf where to copy the plaintext buffer
338  * @param emsg location to store an error message (on error)
339  * @return number of bytes copied to buf, 0 on error
340  */
341 static size_t
342 block_reader (void *cls, uint64_t offset, size_t max, void *buf, char **emsg)
343 {
344   struct GNUNET_FS_PublishContext *pc = cls;
345   struct GNUNET_FS_FileInformation *p;
346   size_t pt_size;
347   const char *dd;
348
349   p = pc->fi_pos;
350   if (p->is_directory == GNUNET_YES)
351   {
352     pt_size = GNUNET_MIN (max, p->data.dir.dir_size - offset);
353     dd = p->data.dir.dir_data;
354     memcpy (buf, &dd[offset], pt_size);
355   }
356   else
357   {
358     pt_size = GNUNET_MIN (max, p->data.file.file_size - offset);
359     if (pt_size == 0)
360       return 0;                 /* calling reader with pt_size==0
361                                  * might free buf, so don't! */
362     if (pt_size !=
363         p->data.file.reader (p->data.file.reader_cls, offset, pt_size, buf,
364                              emsg))
365       return 0;
366   }
367   return pt_size;
368 }
369
370
371 /**
372  * The tree encoder has finished processing a
373  * file.   Call it's finish method and deal with
374  * the final result.
375  *
376  * @param cls our publishing context
377  * @param tc scheduler's task context (not used)
378  */
379 static void
380 encode_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
381 {
382   struct GNUNET_FS_PublishContext *pc = cls;
383   struct GNUNET_FS_FileInformation *p;
384   struct GNUNET_FS_ProgressInfo pi;
385   char *emsg;
386   uint64_t flen;
387
388   p = pc->fi_pos;
389   GNUNET_FS_tree_encoder_finish (p->te, &p->chk_uri, &emsg);
390   p->te = NULL;
391   GNUNET_FS_file_information_sync_ (p);
392   if (NULL != emsg)
393   {
394     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Error during tree walk: %s\n", emsg);
395     GNUNET_asprintf (&p->emsg, _("Publishing failed: %s"), emsg);
396     GNUNET_free (emsg);
397     pi.status = GNUNET_FS_STATUS_PUBLISH_ERROR;
398     pi.value.publish.eta = GNUNET_TIME_UNIT_FOREVER_REL;
399     pi.value.publish.specifics.error.message = p->emsg;
400     p->client_info = GNUNET_FS_publish_make_status_ (&pi, pc, p, 0);
401   }
402   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Finished with tree encoder\n");
403   /* final progress event */
404   flen = GNUNET_FS_uri_chk_get_file_size (p->chk_uri);
405   pi.status = GNUNET_FS_STATUS_PUBLISH_PROGRESS;
406   pi.value.publish.specifics.progress.data = NULL;
407   pi.value.publish.specifics.progress.offset = flen;
408   pi.value.publish.specifics.progress.data_len = 0;
409   pi.value.publish.specifics.progress.depth = GNUNET_FS_compute_depth (flen);
410   p->client_info = GNUNET_FS_publish_make_status_ (&pi, pc, p, flen);
411
412   /* continue with main */
413   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == pc->upload_task);
414   pc->upload_task =
415       GNUNET_SCHEDULER_add_with_priority (GNUNET_SCHEDULER_PRIORITY_BACKGROUND,
416                                           &GNUNET_FS_publish_main_, pc);
417 }
418
419
420 /**
421  * Function called asking for the current (encoded)
422  * block to be processed.  After processing the
423  * client should either call "GNUNET_FS_tree_encode_next"
424  * or (on error) "GNUNET_FS_tree_encode_finish".
425  *
426  * @param cls closure
427  * @param chk content hash key for the block
428  * @param offset offset of the block in the file
429  * @param depth depth of the block in the file, 0 for DBLOCK
430  * @param type type of the block (IBLOCK or DBLOCK)
431  * @param block the (encrypted) block
432  * @param block_size size of block (in bytes)
433  */
434 static void
435 block_proc (void *cls, const struct ContentHashKey *chk, uint64_t offset,
436             unsigned int depth, enum GNUNET_BLOCK_Type type, const void *block,
437             uint16_t block_size)
438 {
439   struct GNUNET_FS_PublishContext *pc = cls;
440   struct GNUNET_FS_FileInformation *p;
441   struct OnDemandBlock odb;
442
443   p = pc->fi_pos;
444   if (NULL == pc->dsh)
445   {
446     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Waiting for datastore connection\n");
447     GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == pc->upload_task);
448     pc->upload_task =
449         GNUNET_SCHEDULER_add_with_priority
450         (GNUNET_SCHEDULER_PRIORITY_BACKGROUND, &GNUNET_FS_publish_main_, pc);
451     return;
452   }
453
454   if ((p->is_directory != GNUNET_YES) && (GNUNET_YES == p->data.file.do_index) &&
455       (type == GNUNET_BLOCK_TYPE_FS_DBLOCK))
456   {
457     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
458                 "Indexing block `%s' for offset %llu with index size %u\n",
459                 GNUNET_h2s (&chk->query), (unsigned long long) offset,
460                 sizeof (struct OnDemandBlock));
461     odb.offset = GNUNET_htonll (offset);
462     odb.file_id = p->data.file.file_id;
463     GNUNET_assert (pc->qre == NULL);
464     pc->qre =
465         GNUNET_DATASTORE_put (pc->dsh, (p->is_directory == GNUNET_YES) ? 0 : pc->rid,
466                               &chk->query, sizeof (struct OnDemandBlock), &odb,
467                               GNUNET_BLOCK_TYPE_FS_ONDEMAND,
468                               p->bo.content_priority, p->bo.anonymity_level,
469                               p->bo.replication_level, p->bo.expiration_time,
470                               -2, 1, GNUNET_CONSTANTS_SERVICE_TIMEOUT,
471                               &ds_put_cont, pc);
472     return;
473   }
474   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
475               "Publishing block `%s' for offset %llu with size %u\n",
476               GNUNET_h2s (&chk->query), (unsigned long long) offset,
477               (unsigned int) block_size);
478   GNUNET_assert (pc->qre == NULL);
479   pc->qre =
480       GNUNET_DATASTORE_put (pc->dsh, (p->is_directory == GNUNET_YES) ? 0 : pc->rid,
481                             &chk->query, block_size, block, type,
482                             p->bo.content_priority, p->bo.anonymity_level,
483                             p->bo.replication_level, p->bo.expiration_time, -2,
484                             1, GNUNET_CONSTANTS_SERVICE_TIMEOUT, &ds_put_cont,
485                             pc);
486 }
487
488
489 /**
490  * Function called with information about our
491  * progress in computing the tree encoding.
492  *
493  * @param cls closure
494  * @param offset where are we in the file
495  * @param pt_block plaintext of the currently processed block
496  * @param pt_size size of pt_block
497  * @param depth depth of the block in the tree, 0 for DBLOCK
498  */
499 static void
500 progress_proc (void *cls, uint64_t offset, const void *pt_block, size_t pt_size,
501                unsigned int depth)
502 {
503   struct GNUNET_FS_PublishContext *pc = cls;
504   struct GNUNET_FS_FileInformation *p;
505   struct GNUNET_FS_ProgressInfo pi;
506
507   p = pc->fi_pos;
508   pi.status = GNUNET_FS_STATUS_PUBLISH_PROGRESS;
509   pi.value.publish.specifics.progress.data = pt_block;
510   pi.value.publish.specifics.progress.offset = offset;
511   pi.value.publish.specifics.progress.data_len = pt_size;
512   pi.value.publish.specifics.progress.depth = depth;
513   p->client_info = GNUNET_FS_publish_make_status_ (&pi, pc, p, offset);
514 }
515
516
517 /**
518  * We are uploading a file or directory; load (if necessary) the next
519  * block into memory, encrypt it and send it to the FS service.  Then
520  * continue with the main task.
521  *
522  * @param pc overall upload data
523  */
524 static void
525 publish_content (struct GNUNET_FS_PublishContext *pc)
526 {
527   struct GNUNET_FS_FileInformation *p;
528   char *emsg;
529   struct GNUNET_FS_DirectoryBuilder *db;
530   struct GNUNET_FS_FileInformation *dirpos;
531   void *raw_data;
532   uint64_t size;
533
534   p = pc->fi_pos;
535   GNUNET_assert (p != NULL);
536   if (NULL == p->te)
537   {
538     if (p->is_directory == GNUNET_YES)
539     {
540       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Creating directory\n");
541       db = GNUNET_FS_directory_builder_create (p->meta);
542       dirpos = p->data.dir.entries;
543       while (NULL != dirpos)
544       {
545         if (dirpos->is_directory == GNUNET_YES)
546         {
547           raw_data = dirpos->data.dir.dir_data;
548           dirpos->data.dir.dir_data = NULL;
549         }
550         else
551         {
552           raw_data = NULL;
553           if ((dirpos->data.file.file_size < MAX_INLINE_SIZE) &&
554               (dirpos->data.file.file_size > 0))
555           {
556             raw_data = GNUNET_malloc (dirpos->data.file.file_size);
557             emsg = NULL;
558             if (dirpos->data.file.file_size !=
559                 dirpos->data.file.reader (dirpos->data.file.reader_cls, 0,
560                                           dirpos->data.file.file_size, raw_data,
561                                           &emsg))
562             {
563               GNUNET_free_non_null (emsg);
564               GNUNET_free (raw_data);
565               raw_data = NULL;
566             }
567           }
568         }
569         GNUNET_FS_directory_builder_add (db, dirpos->chk_uri, dirpos->meta,
570                                          raw_data);
571         GNUNET_free_non_null (raw_data);
572         dirpos = dirpos->next;
573       }
574       GNUNET_free_non_null (p->data.dir.dir_data);
575       p->data.dir.dir_data = NULL;
576       p->data.dir.dir_size = 0;
577       GNUNET_FS_directory_builder_finish (db, &p->data.dir.dir_size,
578                                           &p->data.dir.dir_data);
579       GNUNET_FS_file_information_sync_ (p);
580     }
581     size = (p->is_directory == GNUNET_YES) ? p->data.dir.dir_size : p->data.file.file_size;
582     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Creating tree encoder\n");
583     p->te =
584         GNUNET_FS_tree_encoder_create (pc->h, size, pc, &block_reader,
585                                        &block_proc, &progress_proc,
586                                        &encode_cont);
587
588   }
589   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Processing next block from tree\n");
590   GNUNET_FS_tree_encoder_next (p->te);
591 }
592
593
594 /**
595  * Process the response (or lack thereof) from
596  * the "fs" service to our 'start index' request.
597  *
598  * @param cls closure (of type "struct GNUNET_FS_PublishContext*"_)
599  * @param msg the response we got
600  */
601 static void
602 process_index_start_response (void *cls, const struct GNUNET_MessageHeader *msg)
603 {
604   struct GNUNET_FS_PublishContext *pc = cls;
605   struct GNUNET_FS_FileInformation *p;
606   const char *emsg;
607   uint16_t msize;
608
609   GNUNET_CLIENT_disconnect (pc->client, GNUNET_NO);
610   pc->client = NULL;
611   p = pc->fi_pos;
612   if (msg == NULL)
613   {
614     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
615                 _
616                 ("Can not index file `%s': %s.  Will try to insert instead.\n"),
617                 p->filename,
618                 _("timeout on index-start request to `fs' service"));
619     p->data.file.do_index = GNUNET_NO;
620     GNUNET_FS_file_information_sync_ (p);
621     publish_content (pc);
622     return;
623   }
624   if (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_FS_INDEX_START_OK)
625   {
626     msize = ntohs (msg->size);
627     emsg = (const char *) &msg[1];
628     if ((msize <= sizeof (struct GNUNET_MessageHeader)) ||
629         (emsg[msize - sizeof (struct GNUNET_MessageHeader) - 1] != '\0'))
630       emsg = gettext_noop ("unknown error");
631     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
632                 _
633                 ("Can not index file `%s': %s.  Will try to insert instead.\n"),
634                 p->filename, gettext (emsg));
635     p->data.file.do_index = GNUNET_NO;
636     GNUNET_FS_file_information_sync_ (p);
637     publish_content (pc);
638     return;
639   }
640   p->data.file.index_start_confirmed = GNUNET_YES;
641   /* success! continue with indexing */
642   GNUNET_FS_file_information_sync_ (p);
643   publish_content (pc);
644 }
645
646
647 /**
648  * Function called once the hash computation over an
649  * indexed file has completed.
650  *
651  * @param cls closure, our publishing context
652  * @param res resulting hash, NULL on error
653  */
654 static void
655 hash_for_index_cb (void *cls, const GNUNET_HashCode * res)
656 {
657   struct GNUNET_FS_PublishContext *pc = cls;
658   struct GNUNET_FS_FileInformation *p;
659   struct IndexStartMessage *ism;
660   size_t slen;
661   struct GNUNET_CLIENT_Connection *client;
662   uint64_t dev;
663   uint64_t ino;
664   char *fn;
665
666   pc->fhc = NULL;
667   p = pc->fi_pos;
668   if (NULL == res)
669   {
670     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
671                 _
672                 ("Can not index file `%s': %s.  Will try to insert instead.\n"),
673                 p->filename, _("failed to compute hash"));
674     p->data.file.do_index = GNUNET_NO;
675     GNUNET_FS_file_information_sync_ (p);
676     publish_content (pc);
677     return;
678   }
679   if (GNUNET_YES == p->data.file.index_start_confirmed)
680   {
681     publish_content (pc);
682     return;
683   }
684   fn = GNUNET_STRINGS_filename_expand (p->filename);
685   GNUNET_assert (fn != NULL);
686   slen = strlen (fn) + 1;
687   if (slen >=
688       GNUNET_SERVER_MAX_MESSAGE_SIZE - sizeof (struct IndexStartMessage))
689   {
690     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
691                 _
692                 ("Can not index file `%s': %s.  Will try to insert instead.\n"),
693                 fn, _("filename too long"));
694     GNUNET_free (fn);
695     p->data.file.do_index = GNUNET_NO;
696     GNUNET_FS_file_information_sync_ (p);
697     publish_content (pc);
698     return;
699   }
700   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Hash of indexed file `%s' is `%s'\n",
701               p->filename, GNUNET_h2s (res));
702   if (0 != (pc->options & GNUNET_FS_PUBLISH_OPTION_SIMULATE_ONLY))
703   {
704     p->data.file.file_id = *res;
705     p->data.file.have_hash = GNUNET_YES;
706     p->data.file.index_start_confirmed = GNUNET_YES;
707     GNUNET_FS_file_information_sync_ (p);
708     publish_content (pc);
709     GNUNET_free (fn);
710     return;
711   }
712   client = GNUNET_CLIENT_connect ("fs", pc->h->cfg);
713   if (NULL == client)
714   {
715     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
716                 _
717                 ("Can not index file `%s': %s.  Will try to insert instead.\n"),
718                 p->filename, _("could not connect to `fs' service"));
719     p->data.file.do_index = GNUNET_NO;
720     publish_content (pc);
721     GNUNET_free (fn);
722     return;
723   }
724   if (p->data.file.have_hash != GNUNET_YES)
725   {
726     p->data.file.file_id = *res;
727     p->data.file.have_hash = GNUNET_YES;
728     GNUNET_FS_file_information_sync_ (p);
729   }
730   ism = GNUNET_malloc (sizeof (struct IndexStartMessage) + slen);
731   ism->header.size = htons (sizeof (struct IndexStartMessage) + slen);
732   ism->header.type = htons (GNUNET_MESSAGE_TYPE_FS_INDEX_START);
733   if (GNUNET_OK == GNUNET_DISK_file_get_identifiers (p->filename, &dev, &ino))
734   {
735     ism->device = GNUNET_htonll (dev);
736     ism->inode = GNUNET_htonll (ino);
737   }
738   else
739   {
740     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
741                 _("Failed to get file identifiers for `%s'\n"), p->filename);
742   }
743   ism->file_id = *res;
744   memcpy (&ism[1], fn, slen);
745   GNUNET_free (fn);
746   pc->client = client;
747   GNUNET_break (GNUNET_YES ==
748                 GNUNET_CLIENT_transmit_and_get_response (client, &ism->header,
749                                                          GNUNET_TIME_UNIT_FOREVER_REL,
750                                                          GNUNET_YES,
751                                                          &process_index_start_response,
752                                                          pc));
753   GNUNET_free (ism);
754 }
755
756
757 /**
758  * Main function that performs the upload.
759  *
760  * @param cls "struct GNUNET_FS_PublishContext" identifies the upload
761  * @param tc task context
762  */
763 void
764 GNUNET_FS_publish_main_ (void *cls,
765                          const struct GNUNET_SCHEDULER_TaskContext *tc)
766 {
767   struct GNUNET_FS_PublishContext *pc = cls;
768   struct GNUNET_FS_ProgressInfo pi;
769   struct GNUNET_FS_FileInformation *p;
770   struct GNUNET_FS_Uri *loc;
771   char *fn;
772
773   pc->upload_task = GNUNET_SCHEDULER_NO_TASK;
774   p = pc->fi_pos;
775   if (NULL == p)
776   {
777     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
778                 "Publishing complete, now publishing SKS and KSK blocks.\n");
779     /* upload of entire hierarchy complete,
780      * publish namespace entries */
781     GNUNET_FS_publish_sync_ (pc);
782     publish_sblock (pc);
783     return;
784   }
785   /* find starting position */
786   while ((p->is_directory == GNUNET_YES) && (NULL != p->data.dir.entries) && (NULL == p->emsg)
787          && (NULL == p->data.dir.entries->chk_uri))
788   {
789     p = p->data.dir.entries;
790     pc->fi_pos = p;
791     GNUNET_FS_publish_sync_ (pc);
792   }
793   /* abort on error */
794   if (NULL != p->emsg)
795   {
796     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Error uploading: %s\n", p->emsg);
797     /* error with current file, abort all
798      * related files as well! */
799     while (NULL != p->dir)
800     {
801       fn = GNUNET_CONTAINER_meta_data_get_by_type (p->meta,
802                                                    EXTRACTOR_METATYPE_GNUNET_ORIGINAL_FILENAME);
803       p = p->dir;
804       if (fn != NULL)
805       {
806         GNUNET_asprintf (&p->emsg, _("Recursive upload failed at `%s': %s"), fn,
807                          p->emsg);
808         GNUNET_free (fn);
809       }
810       else
811       {
812         GNUNET_asprintf (&p->emsg, _("Recursive upload failed: %s"), p->emsg);
813       }
814       pi.status = GNUNET_FS_STATUS_PUBLISH_ERROR;
815       pi.value.publish.eta = GNUNET_TIME_UNIT_FOREVER_REL;
816       pi.value.publish.specifics.error.message = p->emsg;
817       p->client_info = GNUNET_FS_publish_make_status_ (&pi, pc, p, 0);
818     }
819     pc->all_done = GNUNET_YES;
820     GNUNET_FS_publish_sync_ (pc);
821     return;
822   }
823   /* handle completion */
824   if (NULL != p->chk_uri)
825   {
826     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
827                 "File upload complete, now publishing KSK blocks.\n");
828     if (0 == p->bo.anonymity_level)
829     {
830       /* zero anonymity, box CHK URI in LOC URI */
831       loc =
832           GNUNET_FS_uri_loc_create (p->chk_uri, pc->h->cfg,
833                                     p->bo.expiration_time);
834       GNUNET_FS_uri_destroy (p->chk_uri);
835       p->chk_uri = loc;
836     }
837     GNUNET_FS_publish_sync_ (pc);
838     /* upload of "p" complete, publish KBlocks! */
839     if (p->keywords != NULL)
840     {
841       pc->ksk_pc = GNUNET_FS_publish_ksk (pc->h, p->keywords, p->meta, p->chk_uri, &p->bo,
842                                           pc->options, &publish_kblocks_cont, pc);
843     }
844     else
845     {
846       publish_kblocks_cont (pc, p->chk_uri, NULL);
847     }
848     return;
849   }
850   if ((p->is_directory != GNUNET_YES) && (p->data.file.do_index))
851   {
852     if (NULL == p->filename)
853     {
854       p->data.file.do_index = GNUNET_NO;
855       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
856                   _
857                   ("Can not index file `%s': %s.  Will try to insert instead.\n"),
858                   "<no-name>", _("needs to be an actual file"));
859       GNUNET_FS_file_information_sync_ (p);
860       publish_content (pc);
861       return;
862     }
863     if (p->data.file.have_hash)
864     {
865       hash_for_index_cb (pc, &p->data.file.file_id);
866     }
867     else
868     {
869       p->start_time = GNUNET_TIME_absolute_get ();
870       pc->fhc =
871           GNUNET_CRYPTO_hash_file (GNUNET_SCHEDULER_PRIORITY_IDLE, p->filename,
872                                    HASHING_BLOCKSIZE, &hash_for_index_cb, pc);
873     }
874     return;
875   }
876   publish_content (pc);
877 }
878
879
880 /**
881  * Signal the FS's progress function that we are starting
882  * an upload.
883  *
884  * @param cls closure (of type "struct GNUNET_FS_PublishContext*")
885  * @param fi the entry in the publish-structure
886  * @param length length of the file or directory
887  * @param meta metadata for the file or directory (can be modified)
888  * @param uri pointer to the keywords that will be used for this entry (can be modified)
889  * @param bo block options
890  * @param do_index should we index?
891  * @param client_info pointer to client context set upon creation (can be modified)
892  * @return GNUNET_OK to continue (always)
893  */
894 static int
895 fip_signal_start (void *cls, struct GNUNET_FS_FileInformation *fi,
896                   uint64_t length, struct GNUNET_CONTAINER_MetaData *meta,
897                   struct GNUNET_FS_Uri **uri, struct GNUNET_FS_BlockOptions *bo,
898                   int *do_index, void **client_info)
899 {
900   struct GNUNET_FS_PublishContext *pc = cls;
901   struct GNUNET_FS_ProgressInfo pi;
902   unsigned int kc;
903   uint64_t left;
904
905   if (GNUNET_YES == pc->skip_next_fi_callback)
906   {
907     pc->skip_next_fi_callback = GNUNET_NO;
908     return GNUNET_OK;
909   }
910   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting publish operation\n");
911   if (*do_index)
912   {
913     /* space for on-demand blocks */
914     pc->reserve_space +=
915         ((length + DBLOCK_SIZE -
916           1) / DBLOCK_SIZE) * sizeof (struct OnDemandBlock);
917   }
918   else
919   {
920     /* space for DBlocks */
921     pc->reserve_space += length;
922   }
923   /* entries for IBlocks and DBlocks, space for IBlocks */
924   left = length;
925   while (1)
926   {
927     left = (left + DBLOCK_SIZE - 1) / DBLOCK_SIZE;
928     pc->reserve_entries += left;
929     if (left <= 1)
930       break;
931     left = left * sizeof (struct ContentHashKey);
932     pc->reserve_space += left;
933   }
934   pc->reserve_entries++;
935   /* entries and space for keywords */
936   if (NULL != *uri)
937   {
938     kc = GNUNET_FS_uri_ksk_get_keyword_count (*uri);
939     pc->reserve_entries += kc;
940     pc->reserve_space += GNUNET_SERVER_MAX_MESSAGE_SIZE * kc;
941   }
942   pi.status = GNUNET_FS_STATUS_PUBLISH_START;
943   *client_info = GNUNET_FS_publish_make_status_ (&pi, pc, fi, 0);
944   GNUNET_FS_file_information_sync_ (fi);
945   if (GNUNET_YES == GNUNET_FS_meta_data_test_for_directory (meta)
946       && (fi->dir != NULL))
947   {
948     /* process entries in directory */
949     pc->skip_next_fi_callback = GNUNET_YES;
950     GNUNET_FS_file_information_inspect (fi, &fip_signal_start, pc);
951   }
952   return GNUNET_OK;
953 }
954
955
956 /**
957  * Signal the FS's progress function that we are suspending
958  * an upload.
959  *
960  * @param cls closure (of type "struct GNUNET_FS_PublishContext*")
961  * @param fi the entry in the publish-structure
962  * @param length length of the file or directory
963  * @param meta metadata for the file or directory (can be modified)
964  * @param uri pointer to the keywords that will be used for this entry (can be modified)
965  * @param bo block options
966  * @param do_index should we index?
967  * @param client_info pointer to client context set upon creation (can be modified)
968  * @return GNUNET_OK to continue (always)
969  */
970 static int
971 fip_signal_suspend (void *cls, struct GNUNET_FS_FileInformation *fi,
972                     uint64_t length, struct GNUNET_CONTAINER_MetaData *meta,
973                     struct GNUNET_FS_Uri **uri,
974                     struct GNUNET_FS_BlockOptions *bo, int *do_index,
975                     void **client_info)
976 {
977   struct GNUNET_FS_PublishContext *pc = cls;
978   struct GNUNET_FS_ProgressInfo pi;
979   uint64_t off;
980
981   if (GNUNET_YES == pc->skip_next_fi_callback)
982   {
983     pc->skip_next_fi_callback = GNUNET_NO;
984     return GNUNET_OK;
985   }
986   if (GNUNET_YES == GNUNET_FS_meta_data_test_for_directory (meta))
987   {
988     /* process entries in directory */
989     pc->skip_next_fi_callback = GNUNET_YES;
990     GNUNET_FS_file_information_inspect (fi, &fip_signal_suspend, pc);
991   }
992   if (NULL != pc->ksk_pc)
993   {
994     GNUNET_FS_publish_ksk_cancel (pc->ksk_pc);
995     pc->ksk_pc = NULL;
996   }
997   if (NULL != pc->sks_pc)
998   {
999     GNUNET_FS_publish_sks_cancel (pc->sks_pc);
1000     pc->sks_pc = NULL;
1001   }
1002   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Suspending publish operation\n");
1003   GNUNET_free_non_null (fi->serialization);
1004   fi->serialization = NULL;
1005   off = (fi->chk_uri == NULL) ? 0 : length;
1006   pi.status = GNUNET_FS_STATUS_PUBLISH_SUSPEND;
1007   GNUNET_break (NULL == GNUNET_FS_publish_make_status_ (&pi, pc, fi, off));
1008   *client_info = NULL;
1009   if (NULL != pc->qre)
1010   {
1011     GNUNET_DATASTORE_cancel (pc->qre);
1012     pc->qre = NULL;
1013   }
1014   if (NULL != pc->dsh)
1015   {
1016     GNUNET_DATASTORE_disconnect (pc->dsh, GNUNET_NO);
1017     pc->dsh = NULL;
1018   }
1019   pc->rid = 0;
1020   return GNUNET_OK;
1021 }
1022
1023
1024 /**
1025  * Create SUSPEND event for the given publish operation
1026  * and then clean up our state (without stop signal).
1027  *
1028  * @param cls the 'struct GNUNET_FS_PublishContext' to signal for
1029  */
1030 void
1031 GNUNET_FS_publish_signal_suspend_ (void *cls)
1032 {
1033   struct GNUNET_FS_PublishContext *pc = cls;
1034
1035   if (GNUNET_SCHEDULER_NO_TASK != pc->upload_task)
1036   {
1037     GNUNET_SCHEDULER_cancel (pc->upload_task);
1038     pc->upload_task = GNUNET_SCHEDULER_NO_TASK;
1039   }
1040   GNUNET_FS_file_information_inspect (pc->fi, &fip_signal_suspend, pc);
1041   GNUNET_FS_end_top (pc->h, pc->top);
1042   pc->top = NULL;
1043   publish_cleanup (pc);
1044 }
1045
1046
1047 /**
1048  * We have gotten a reply for our space reservation request.
1049  * Either fail (insufficient space) or start publishing for good.
1050  *
1051  * @param cls the 'struct GNUNET_FS_PublishContext*'
1052  * @param success positive reservation ID on success
1053  * @param min_expiration minimum expiration time required for content to be stored
1054  * @param msg error message on error, otherwise NULL
1055  */
1056 static void
1057 finish_reserve (void *cls, int success, 
1058                 struct GNUNET_TIME_Absolute min_expiration,
1059                 const char *msg)
1060 {
1061   struct GNUNET_FS_PublishContext *pc = cls;
1062
1063   pc->qre = NULL;
1064   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Reservation complete (%d)!\n", success);
1065   if ((msg != NULL) || (success <= 0))
1066   {
1067     GNUNET_asprintf (&pc->fi->emsg, _("Insufficient space for publishing: %s"),
1068                      msg);
1069     signal_publish_error (pc->fi, pc, pc->fi->emsg);
1070     return;
1071   }
1072   pc->rid = success;
1073   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == pc->upload_task);
1074   pc->upload_task =
1075       GNUNET_SCHEDULER_add_with_priority (GNUNET_SCHEDULER_PRIORITY_BACKGROUND,
1076                                           &GNUNET_FS_publish_main_, pc);
1077 }
1078
1079
1080 /**
1081  * Publish a file or directory.
1082  *
1083  * @param h handle to the file sharing subsystem
1084  * @param fi information about the file or directory structure to publish
1085  * @param namespace namespace to publish the file in, NULL for no namespace
1086  * @param nid identifier to use for the publishd content in the namespace
1087  *        (can be NULL, must be NULL if namespace is NULL)
1088  * @param nuid update-identifier that will be used for future updates
1089  *        (can be NULL, must be NULL if namespace or nid is NULL)
1090  * @param options options for the publication
1091  * @return context that can be used to control the publish operation
1092  */
1093 struct GNUNET_FS_PublishContext *
1094 GNUNET_FS_publish_start (struct GNUNET_FS_Handle *h,
1095                          struct GNUNET_FS_FileInformation *fi,
1096                          struct GNUNET_FS_Namespace *namespace, const char *nid,
1097                          const char *nuid,
1098                          enum GNUNET_FS_PublishOptions options)
1099 {
1100   struct GNUNET_FS_PublishContext *ret;
1101   struct GNUNET_DATASTORE_Handle *dsh;
1102
1103   GNUNET_assert (NULL != h);
1104   if (0 == (options & GNUNET_FS_PUBLISH_OPTION_SIMULATE_ONLY))
1105   {
1106     dsh = GNUNET_DATASTORE_connect (h->cfg);
1107     if (NULL == dsh)
1108       return NULL;
1109   }
1110   else
1111   {
1112     dsh = NULL;
1113   }
1114   ret = GNUNET_malloc (sizeof (struct GNUNET_FS_PublishContext));
1115   ret->dsh = dsh;
1116   ret->h = h;
1117   ret->fi = fi;
1118   ret->namespace = namespace;
1119   ret->options = options;
1120   if (namespace != NULL)
1121   {
1122     namespace->rc++;
1123     GNUNET_assert (NULL != nid);
1124     ret->nid = GNUNET_strdup (nid);
1125     if (NULL != nuid)
1126       ret->nuid = GNUNET_strdup (nuid);
1127   }
1128   /* signal start */
1129   GNUNET_FS_file_information_inspect (ret->fi, &fip_signal_start, ret);
1130   ret->fi_pos = ret->fi;
1131   ret->top = GNUNET_FS_make_top (h, &GNUNET_FS_publish_signal_suspend_, ret);
1132   GNUNET_FS_publish_sync_ (ret);
1133   if (NULL != ret->dsh)
1134   {
1135     GNUNET_assert (NULL == ret->qre);
1136     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1137                 _
1138                 ("Reserving space for %u entries and %llu bytes for publication\n"),
1139                 (unsigned int) ret->reserve_entries,
1140                 (unsigned long long) ret->reserve_space);
1141     ret->qre =
1142         GNUNET_DATASTORE_reserve (ret->dsh, ret->reserve_space,
1143                                   ret->reserve_entries, UINT_MAX, UINT_MAX,
1144                                   GNUNET_TIME_UNIT_FOREVER_REL, &finish_reserve,
1145                                   ret);
1146   }
1147   else
1148   {
1149     GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == ret->upload_task);
1150     ret->upload_task =
1151         GNUNET_SCHEDULER_add_with_priority
1152         (GNUNET_SCHEDULER_PRIORITY_BACKGROUND, &GNUNET_FS_publish_main_, ret);
1153   }
1154   return ret;
1155 }
1156
1157
1158 /**
1159  * Signal the FS's progress function that we are stopping
1160  * an upload.
1161  *
1162  * @param cls closure (of type "struct GNUNET_FS_PublishContext*")
1163  * @param fi the entry in the publish-structure
1164  * @param length length of the file or directory
1165  * @param meta metadata for the file or directory (can be modified)
1166  * @param uri pointer to the keywords that will be used for this entry (can be modified)
1167  * @param bo block options (can be modified)
1168  * @param do_index should we index?
1169  * @param client_info pointer to client context set upon creation (can be modified)
1170  * @return GNUNET_OK to continue (always)
1171  */
1172 static int
1173 fip_signal_stop (void *cls, struct GNUNET_FS_FileInformation *fi,
1174                  uint64_t length, struct GNUNET_CONTAINER_MetaData *meta,
1175                  struct GNUNET_FS_Uri **uri, struct GNUNET_FS_BlockOptions *bo,
1176                  int *do_index, void **client_info)
1177 {
1178   struct GNUNET_FS_PublishContext *pc = cls;
1179   struct GNUNET_FS_ProgressInfo pi;
1180   uint64_t off;
1181
1182   if (GNUNET_YES == pc->skip_next_fi_callback)
1183   {
1184     pc->skip_next_fi_callback = GNUNET_NO;
1185     return GNUNET_OK;
1186   }
1187   if (GNUNET_YES == GNUNET_FS_meta_data_test_for_directory (meta))
1188   {
1189     /* process entries in directory first */
1190     pc->skip_next_fi_callback = GNUNET_YES;
1191     GNUNET_FS_file_information_inspect (fi, &fip_signal_stop, pc);
1192   }
1193   if (fi->serialization != NULL)
1194   {
1195     GNUNET_FS_remove_sync_file_ (pc->h, GNUNET_FS_SYNC_PATH_FILE_INFO,
1196                                  fi->serialization);
1197     GNUNET_free (fi->serialization);
1198     fi->serialization = NULL;
1199   }
1200   off = (fi->chk_uri == NULL) ? 0 : length;
1201   pi.status = GNUNET_FS_STATUS_PUBLISH_STOPPED;
1202   GNUNET_break (NULL == GNUNET_FS_publish_make_status_ (&pi, pc, fi, off));
1203   *client_info = NULL;
1204   return GNUNET_OK;
1205 }
1206
1207
1208 /**
1209  * Stop an upload.  Will abort incomplete uploads (but
1210  * not remove blocks that have already been publishd) or
1211  * simply clean up the state for completed uploads.
1212  * Must NOT be called from within the event callback!
1213  *
1214  * @param pc context for the upload to stop
1215  */
1216 void
1217 GNUNET_FS_publish_stop (struct GNUNET_FS_PublishContext *pc)
1218 {
1219   struct GNUNET_FS_ProgressInfo pi;
1220   uint64_t off;
1221
1222   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Publish stop called\n");
1223   GNUNET_FS_end_top (pc->h, pc->top);
1224   if (NULL != pc->ksk_pc)
1225   {
1226     GNUNET_FS_publish_ksk_cancel (pc->ksk_pc);
1227     pc->ksk_pc = NULL;
1228   }
1229   if (NULL != pc->sks_pc)
1230   {
1231     GNUNET_FS_publish_sks_cancel (pc->sks_pc);
1232     pc->sks_pc = NULL;
1233   }
1234   if (GNUNET_SCHEDULER_NO_TASK != pc->upload_task)
1235   {
1236     GNUNET_SCHEDULER_cancel (pc->upload_task);
1237     pc->upload_task = GNUNET_SCHEDULER_NO_TASK;
1238   }
1239   pc->skip_next_fi_callback = GNUNET_YES;
1240   GNUNET_FS_file_information_inspect (pc->fi, &fip_signal_stop, pc);
1241
1242   if (pc->fi->serialization != NULL)
1243   {
1244     GNUNET_FS_remove_sync_file_ (pc->h, GNUNET_FS_SYNC_PATH_FILE_INFO,
1245                                  pc->fi->serialization);
1246     GNUNET_free (pc->fi->serialization);
1247     pc->fi->serialization = NULL;
1248   }
1249   off = (pc->fi->chk_uri == NULL) ? 0 : GNUNET_ntohll (pc->fi->chk_uri->data.chk.file_length);
1250
1251   if (pc->serialization != NULL)
1252   {
1253     GNUNET_FS_remove_sync_file_ (pc->h, GNUNET_FS_SYNC_PATH_MASTER_PUBLISH,
1254                                  pc->serialization);
1255     GNUNET_free (pc->serialization);
1256     pc->serialization = NULL;
1257   }
1258   if (NULL != pc->qre)
1259   {
1260     GNUNET_DATASTORE_cancel (pc->qre);
1261     pc->qre = NULL;
1262   }
1263   pi.status = GNUNET_FS_STATUS_PUBLISH_STOPPED;
1264   GNUNET_break (NULL == GNUNET_FS_publish_make_status_ (&pi, pc, pc->fi, off));
1265   publish_cleanup (pc);
1266 }
1267
1268
1269
1270 /* end of fs_publish.c */