arg
[oweals/gnunet.git] / src / fs / fs_namespace.c
1 /*
2      This file is part of GNUnet
3      (C) 2003, 2004, 2005, 2006, 2007, 2008, 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_namespace.c
23  * @brief create and destroy namespaces
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_constants.h"
28 #include "gnunet_signatures.h"
29 #include "gnunet_util_lib.h"
30 #include "gnunet_fs_service.h"
31 #include "fs.h"
32
33 #define DEBUG_NAMESPACE GNUNET_NO
34
35 /**
36  * Return the name of the directory in which we store
37  * our local namespaces (or rather, their public keys).
38  *
39  * @param h global fs handle 
40  * @return NULL on error, otherwise the name of the directory
41  */
42 static char *
43 get_namespace_directory (struct GNUNET_FS_Handle *h)
44 {
45   char *dn;
46
47   if (GNUNET_OK !=
48       GNUNET_CONFIGURATION_get_value_filename (h->cfg,
49                                                "FS",
50                                                "IDENTITY_DIR",
51                                                &dn))
52     {
53       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
54                   _("Configuration fails to specify `%s' in section `%s'\n"),
55                   "IDENTITY_DIR",
56                   "fs");
57       return NULL;
58     }
59   return dn;
60 }
61
62
63 /**
64  * Return the name of the directory in which we store
65  * the update information graph for the given local namespace.
66  *
67  * @param ns namespace handle 
68  * @return NULL on error, otherwise the name of the directory
69  */
70 static char *
71 get_update_information_directory (struct GNUNET_FS_Namespace *ns)
72 {
73   char *dn;
74   char *ret;
75
76   if (GNUNET_OK !=
77       GNUNET_CONFIGURATION_get_value_filename (ns->h->cfg,
78                                                "FS",
79                                                "UPDATE_DIR",
80                                                &dn))
81     {
82       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
83                   _("Configuration fails to specify `%s' in section `%s'\n"),
84                   "UPDATE_DIR",
85                   "fs");
86       return NULL;
87     }
88   GNUNET_asprintf (&ret,
89                    "%s%s%s",
90                    dn,
91                    DIR_SEPARATOR_STR,
92                    ns->name);
93   GNUNET_free (dn);
94   return ret;
95 }
96
97
98 /**
99  * Write the namespace update node graph to a file.
100  * 
101  * @param ns namespace to dump
102  */
103 static void
104 write_update_information_graph (struct GNUNET_FS_Namespace *ns)
105 {
106   char * fn;
107   struct GNUNET_BIO_WriteHandle *wh;
108   unsigned int i;
109   struct NamespaceUpdateNode *n;
110   char *uris;
111
112   fn = get_update_information_directory (ns);
113   wh = GNUNET_BIO_write_open (fn);
114   if (wh == NULL)
115     {
116       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
117                   _("Failed to open `%s' for writing: %s\n"),
118                   STRERROR (errno));
119       GNUNET_free (fn);
120       return;
121     }
122   if (GNUNET_OK != 
123       GNUNET_BIO_write_int32 (wh, ns->update_node_count))
124     goto END;
125   for (i=0;i<ns->update_node_count;i++)
126     {
127       n = ns->update_nodes[i];
128       uris = GNUNET_FS_uri_to_string (n->uri);
129       if ( (GNUNET_OK !=
130             GNUNET_BIO_write_string (wh, n->id)) ||
131            (GNUNET_OK != 
132             GNUNET_BIO_write_meta_data (wh, n->md)) ||
133            (GNUNET_OK !=
134             GNUNET_BIO_write_string (wh, n->update)) ||
135            (GNUNET_OK !=
136             GNUNET_BIO_write_string (wh, uris)) )
137         {
138           GNUNET_free (uris);
139           break;
140         }
141       GNUNET_free (uris);
142     }
143  END:
144   if (GNUNET_OK != GNUNET_BIO_write_close (wh))
145     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
146                 _("Failed to write `%s': %s\n"),
147                 STRERROR (errno));
148   GNUNET_free (fn);
149 }
150
151
152 /**
153  * Read the namespace update node graph from a file.
154  * 
155  * @param ns namespace to read
156  */
157 static void
158 read_update_information_graph (struct GNUNET_FS_Namespace *ns)
159 {
160   char * fn;
161   struct GNUNET_BIO_ReadHandle *rh;
162   unsigned int i;
163   struct NamespaceUpdateNode *n;
164   char *uris;
165   uint32_t count;
166   char *emsg;
167   
168   fn = get_update_information_directory (ns);
169   if (GNUNET_YES !=
170       GNUNET_DISK_file_test (fn))
171     {
172       GNUNET_free (fn);
173       return;
174     }
175   rh = GNUNET_BIO_read_open (fn);
176   if (rh == NULL)
177     {
178       GNUNET_free (fn);
179       return;
180     }
181   if (GNUNET_OK != 
182       GNUNET_BIO_read_int32 (rh, &count))
183     {
184       GNUNET_break (0);
185       goto END;
186     }
187   if (count > 1024 * 1024)
188     {
189       GNUNET_break (0);
190       goto END;
191     }
192   if (count == 0)
193     {
194       GNUNET_break (GNUNET_OK == GNUNET_BIO_read_close (rh, NULL));
195       GNUNET_free (fn);
196       return;
197     }
198   ns->update_nodes = GNUNET_malloc (count * sizeof (struct NamespaceUpdateNode*));
199   
200   for (i=0;i<count;i++)
201     {
202       n = GNUNET_malloc (sizeof (struct NamespaceUpdateNode));
203       if ( (GNUNET_OK !=
204             GNUNET_BIO_read_string (rh,  "identifier", &n->id, 1024)) ||
205            (GNUNET_OK != 
206             GNUNET_BIO_read_meta_data (rh, "meta", &n->md)) ||
207            (GNUNET_OK !=
208             GNUNET_BIO_read_string (rh, "update-id", &n->update, 1024)) ||
209            (GNUNET_OK !=
210             GNUNET_BIO_read_string (rh, "uri", &uris, 1024 * 2)) )
211         {
212           GNUNET_break (0);
213           GNUNET_free_non_null (n->id);
214           GNUNET_free_non_null (n->update);
215           if (n->md != NULL)
216             GNUNET_CONTAINER_meta_data_destroy (n->md);
217           GNUNET_free (n);
218           break;
219         }
220       n->uri = GNUNET_FS_uri_parse (uris, &emsg);
221       GNUNET_free (uris);
222       if (n->uri == NULL)
223         {
224           GNUNET_break (0);
225           GNUNET_free (emsg);
226           GNUNET_free (n->id);
227           GNUNET_free_non_null (n->update);
228           GNUNET_CONTAINER_meta_data_destroy (n->md);
229           GNUNET_free (n);
230           break;
231         }
232       ns->update_nodes[i] = n;
233     }
234   ns->update_node_count = i;
235  END:
236   if (GNUNET_OK != GNUNET_BIO_read_close (rh, &emsg))
237     {
238       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
239                   _("Failed to write `%s': %s\n"),
240                   emsg);
241       GNUNET_free (emsg);
242     }
243   GNUNET_free (fn);
244 }
245
246
247 /**
248  * Context for advertising a namespace.
249  */
250 struct AdvertisementContext
251 {
252   /**
253    * Function to call with the result.
254    */
255   GNUNET_FS_PublishContinuation cont;
256
257   /**
258    * Closure for cont.
259    */
260   void *cont_cls;
261
262   /**
263    * Datastore handle.
264    */
265   struct GNUNET_DATASTORE_Handle *dsh;
266
267   /**
268    * Our KSK URI.
269    */ 
270   struct GNUNET_FS_Uri *ksk_uri;
271
272   /**
273    * Plaintext.
274    */
275   char *pt;
276
277   /**
278    * NBlock to sign and store.
279    */
280   struct NBlock *nb;
281
282   /**
283    * The namespace.
284    */
285   struct GNUNET_FS_Namespace *ns;
286
287   /**
288    * Block options.
289    */
290   struct GNUNET_FS_BlockOptions bo;
291
292   /**
293    * Number of bytes of plaintext.
294    */ 
295   size_t pt_size;
296
297   /**
298    * Current keyword offset.
299    */
300   unsigned int pos;
301 };
302
303
304 /**
305  * Disconnect from the datastore.
306  * 
307  * @param cls datastore handle
308  * @param tc scheduler context
309  */
310 static void
311 do_disconnect (void *cls,
312                const struct GNUNET_SCHEDULER_TaskContext *tc)
313 {
314   struct GNUNET_DATASTORE_Handle *dsh = cls;
315
316   GNUNET_DATASTORE_disconnect (dsh, 
317                                GNUNET_NO);
318 }
319
320
321 /**
322  * Continuation called to notify client about result of the
323  * operation.
324  *
325  * @param cls closure (our struct AdvertismentContext)
326  * @param success GNUNET_SYSERR on failure
327  * @param msg NULL on success, otherwise an error message
328  */
329 static void
330 advertisement_cont (void *cls,
331                     int success,
332                     const char *msg)
333 {
334   struct AdvertisementContext *ac = cls;
335   const char *keyword;
336   GNUNET_HashCode key;
337   GNUNET_HashCode query;
338   struct GNUNET_CRYPTO_AesSessionKey skey;
339   struct GNUNET_CRYPTO_AesInitializationVector iv;
340   struct GNUNET_CRYPTO_RsaPrivateKey *pk;
341   
342   if (GNUNET_OK != success)
343     {
344       /* error! */
345       GNUNET_SCHEDULER_add_continuation (&do_disconnect,
346                                          ac->dsh,
347                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
348       if (ac->cont != NULL)
349         ac->cont (ac->cont_cls, NULL, msg);
350       GNUNET_FS_uri_destroy (ac->ksk_uri);
351       GNUNET_free (ac->pt);
352       GNUNET_free (ac->nb);
353       GNUNET_FS_namespace_delete (ac->ns, GNUNET_NO);
354       GNUNET_free (ac);
355       return;
356     }
357   if (ac->pos == ac->ksk_uri->data.ksk.keywordCount)
358     {
359       /* done! */
360       GNUNET_SCHEDULER_add_continuation (&do_disconnect,
361                                          ac->dsh,
362                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
363       if (ac->cont != NULL)
364         ac->cont (ac->cont_cls, ac->ksk_uri, NULL);
365       GNUNET_FS_uri_destroy (ac->ksk_uri);
366       GNUNET_free (ac->pt);
367       GNUNET_free (ac->nb);
368       GNUNET_FS_namespace_delete (ac->ns, GNUNET_NO);
369       GNUNET_free (ac);
370       return;
371     }
372   keyword = ac->ksk_uri->data.ksk.keywords[ac->pos++];
373   /* first character of keyword indicates if it is
374      mandatory or not -- ignore for hashing */
375   GNUNET_CRYPTO_hash (&keyword[1], strlen (&keyword[1]), &key);
376   GNUNET_CRYPTO_hash_to_aes_key (&key, &skey, &iv);
377   GNUNET_CRYPTO_aes_encrypt (ac->pt,
378                              ac->pt_size,
379                              &skey,
380                              &iv,
381                              &ac->nb[1]);
382   GNUNET_break (GNUNET_OK == 
383                 GNUNET_CRYPTO_rsa_sign (ac->ns->key,
384                                         &ac->nb->ns_purpose,
385                                         &ac->nb->ns_signature));
386   pk = GNUNET_CRYPTO_rsa_key_create_from_hash (&key);
387   GNUNET_assert (pk != NULL);
388   GNUNET_CRYPTO_rsa_key_get_public (pk, &ac->nb->keyspace);
389   GNUNET_CRYPTO_hash (&ac->nb->keyspace,
390                       sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
391                       &query);
392   GNUNET_break (GNUNET_OK == 
393                 GNUNET_CRYPTO_rsa_sign (pk,
394                                         &ac->nb->ksk_purpose,
395                                         &ac->nb->ksk_signature));
396   GNUNET_CRYPTO_rsa_key_free (pk);
397   GNUNET_DATASTORE_put (ac->dsh,
398                         0 /* no reservation */, 
399                         &query,
400                         ac->pt_size + sizeof (struct NBlock),
401                         ac->nb,
402                         GNUNET_BLOCK_TYPE_FS_NBLOCK,
403                         ac->bo.content_priority,
404                         ac->bo.anonymity_level,
405                         ac->bo.replication_level,
406                         ac->bo.expiration_time,
407                         -2, 1,
408                         GNUNET_CONSTANTS_SERVICE_TIMEOUT, 
409                         &advertisement_cont,
410                         ac);
411 }
412
413
414 /**
415  * Publish an advertismement for a namespace.  
416  *
417  * @param h handle to the file sharing subsystem
418  * @param ksk_uri keywords to use for advertisment
419  * @param namespace handle for the namespace that should be advertised
420  * @param meta meta-data for the namespace advertisement
421  * @param bo block options
422  * @param rootEntry name of the root of the namespace
423  * @param cont continuation
424  * @param cont_cls closure for cont
425  */
426 void
427 GNUNET_FS_namespace_advertise (struct GNUNET_FS_Handle *h,
428                                struct GNUNET_FS_Uri *ksk_uri,
429                                struct GNUNET_FS_Namespace *namespace,
430                                const struct GNUNET_CONTAINER_MetaData *meta,
431                                const struct GNUNET_FS_BlockOptions *bo,
432                                const char *rootEntry,
433                                GNUNET_FS_PublishContinuation cont,
434                                void *cont_cls)
435 {
436   size_t reslen;
437   size_t size;
438   ssize_t mdsize;
439   struct NBlock *nb;
440   char *mdst;
441   struct GNUNET_DATASTORE_Handle *dsh;
442   struct AdvertisementContext *ctx;
443   char *pt;
444
445   /* create advertisements */
446   mdsize = GNUNET_CONTAINER_meta_data_get_serialized_size (meta);
447   if (-1 == mdsize)
448     {
449       cont (cont_cls, NULL, _("Failed to serialize meta data"));
450       return;
451     }
452   reslen = strlen (rootEntry) + 1;
453   size = mdsize + sizeof (struct NBlock) + reslen;
454   if (size > MAX_NBLOCK_SIZE)
455     {
456       size = MAX_NBLOCK_SIZE;
457       mdsize = size - sizeof (struct NBlock) - reslen;
458     }
459
460   pt = GNUNET_malloc (mdsize + reslen);
461   memcpy (pt, rootEntry, reslen);
462   mdst = &pt[reslen];
463   mdsize = GNUNET_CONTAINER_meta_data_serialize (meta,
464                                                  &mdst,
465                                                  mdsize,
466                                                  GNUNET_CONTAINER_META_DATA_SERIALIZE_PART);
467   if (mdsize == -1)
468     {
469       GNUNET_break (0);
470       GNUNET_free (pt);
471       cont (cont_cls, NULL, _("Failed to serialize meta data"));
472       return;
473     }
474   size = mdsize + sizeof (struct NBlock) + reslen;  
475   nb = GNUNET_malloc (size);
476   GNUNET_CRYPTO_rsa_key_get_public (namespace->key, 
477                                     &nb->subspace);
478   nb->ns_purpose.size = htonl (mdsize + reslen + 
479                             sizeof (struct GNUNET_CRYPTO_RsaSignaturePurpose) +
480                             sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded));
481   nb->ns_purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_FS_NBLOCK);
482   nb->ksk_purpose.size = htonl (size - sizeof (struct GNUNET_CRYPTO_RsaSignature));
483   nb->ksk_purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_FS_NBLOCK_KSIG);
484   dsh = GNUNET_DATASTORE_connect (h->cfg);
485   if (NULL == dsh)
486     {
487       GNUNET_free (nb);
488       GNUNET_free (pt);
489       cont (cont_cls, NULL, _("Failed to connect to datastore service"));
490       return;
491     }  
492   ctx = GNUNET_malloc (sizeof (struct AdvertisementContext));
493   ctx->cont = cont;
494   ctx->cont_cls = cont_cls;
495   ctx->dsh = dsh;
496   ctx->ksk_uri = GNUNET_FS_uri_dup (ksk_uri);
497   ctx->nb = nb;
498   ctx->pt = pt;
499   ctx->pt_size = mdsize + reslen;
500   ctx->ns = namespace;
501   ctx->ns->rc++;
502   ctx->bo = *bo;
503   advertisement_cont (ctx, GNUNET_OK, NULL);
504 }
505
506
507 /**
508  * Create a namespace with the given name; if one already
509  * exists, return a handle to the existing namespace.
510  *
511  * @param h handle to the file sharing subsystem
512  * @param name name to use for the namespace
513  * @return handle to the namespace, NULL on error
514  */
515 struct GNUNET_FS_Namespace *
516 GNUNET_FS_namespace_create (struct GNUNET_FS_Handle *h,
517                             const char *name)
518 {
519   char *dn;
520   char *fn;
521   struct GNUNET_FS_Namespace *ret;
522
523   dn = get_namespace_directory (h);
524   GNUNET_asprintf (&fn,
525                    "%s%s%s",
526                    dn,
527                    DIR_SEPARATOR_STR,
528                    name);
529   GNUNET_free (dn);
530   ret = GNUNET_malloc (sizeof (struct GNUNET_FS_Namespace));
531   ret->h = h;
532   ret->rc = 1;
533   ret->key = GNUNET_CRYPTO_rsa_key_create_from_file (fn);
534   if (ret->key == NULL)
535     {
536       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
537                   _("Failed to create or read private key for namespace `%s'\n"),
538                   name);
539       GNUNET_free (ret);
540       GNUNET_free (fn);
541       return NULL;
542     }
543   ret->name = GNUNET_strdup (name);
544   ret->filename = fn;
545   return ret;
546 }
547
548
549 /**
550  * Delete a namespace handle.  Can be used for a clean shutdown (free
551  * memory) or also to freeze the namespace to prevent further
552  * insertions by anyone.
553  *
554  * @param namespace handle to the namespace that should be deleted / freed
555  * @param freeze prevents future insertions; creating a namespace
556  *        with the same name again will create a fresh namespace instead
557  *
558  * @return GNUNET_OK on success, GNUNET_SYSERR on error
559  */
560 int 
561 GNUNET_FS_namespace_delete (struct GNUNET_FS_Namespace *namespace,
562                             int freeze)
563 {
564   unsigned int i;
565   struct NamespaceUpdateNode *nsn;
566
567   namespace->rc--;
568   if (freeze)
569     {
570       if (0 != UNLINK (namespace->filename))
571         GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
572                                   "unlink",
573                                   namespace->filename);      
574     }
575   if (0 == namespace->rc)
576     {
577       GNUNET_CRYPTO_rsa_key_free (namespace->key);
578       GNUNET_free (namespace->filename);
579       GNUNET_free (namespace->name);
580       for (i=0;i<namespace->update_node_count;i++)
581         {
582           nsn = namespace->update_nodes[i];
583           GNUNET_CONTAINER_meta_data_destroy (nsn->md);
584           GNUNET_FS_uri_destroy (nsn->uri);
585           GNUNET_free (nsn->id);
586           GNUNET_free (nsn->update);
587           GNUNET_free (nsn);
588         }
589       GNUNET_array_grow (namespace->update_nodes,
590                          namespace->update_node_count,
591                          0);
592       if (namespace->update_map != NULL)
593         GNUNET_CONTAINER_multihashmap_destroy (namespace->update_map);
594       GNUNET_free (namespace);
595     }
596   return GNUNET_OK;
597 }
598
599
600 /**
601  * Context for the 'process_namespace' callback.
602  * Specifies a function to call on each namespace.
603  */
604 struct ProcessNamespaceContext
605 {
606   /**
607    * Function to call.
608    */
609   GNUNET_FS_NamespaceInfoProcessor cb;
610
611   /**
612    * Closure for 'cb'.
613    */
614   void *cb_cls;
615 };
616
617
618 /**
619  * Function called with a filename of a namespace. Reads the key and
620  * calls the callback.
621  *
622  * @param cls closure (struct ProcessNamespaceContext)
623  * @param filename complete filename (absolute path)
624  * @return GNUNET_OK to continue to iterate,
625  *  GNUNET_SYSERR to abort iteration with error!
626  */
627 static int
628 process_namespace (void *cls, 
629                    const char *filename)
630 {
631   struct ProcessNamespaceContext *pnc = cls;
632   struct GNUNET_CRYPTO_RsaPrivateKey *key;
633   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pk;
634   GNUNET_HashCode id;
635   const char *name;
636   const char *t;
637
638   key = GNUNET_CRYPTO_rsa_key_create_from_file (filename);
639   if (key == NULL)
640     {
641       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
642                   _("Failed to read namespace private key file `%s', deleting it!\n"),
643                   filename);
644       if (0 != UNLINK (filename))
645         GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING,
646                                   "unlink",
647                                   filename);
648       return GNUNET_OK;
649     }
650   GNUNET_CRYPTO_rsa_key_get_public (key, &pk);
651   GNUNET_CRYPTO_rsa_key_free (key);
652   GNUNET_CRYPTO_hash (&pk, sizeof(pk), &id); 
653   name = filename;
654   while (NULL != (t = strstr (name, DIR_SEPARATOR_STR)))
655     name = t + 1;
656   pnc->cb (pnc->cb_cls,
657            name,
658            &id);
659   return GNUNET_OK;
660 }
661
662
663 /**
664  * Build a list of all available local (!) namespaces The returned
665  * names are only the nicknames since we only iterate over the local
666  * namespaces.
667  *
668  * @param h handle to the file sharing subsystem
669  * @param cb function to call on each known namespace
670  * @param cb_cls closure for cb
671  */
672 void 
673 GNUNET_FS_namespace_list (struct GNUNET_FS_Handle *h,
674                           GNUNET_FS_NamespaceInfoProcessor cb,
675                           void *cb_cls)
676 {
677   char *dn;
678   struct ProcessNamespaceContext ctx;
679   
680   dn = get_namespace_directory (h);
681   if (dn == NULL)
682     return;
683   ctx.cb = cb;
684   ctx.cb_cls = cb_cls;
685   GNUNET_DISK_directory_scan (dn,
686                               &process_namespace,
687                               &ctx);
688   GNUNET_free (dn);
689 }
690
691
692
693
694 /**
695  * Context for the SKS publication.
696  */
697 struct PublishSksContext
698 {
699
700   /**
701    * URI of the new entry in the namespace.
702    */
703   struct GNUNET_FS_Uri *uri;
704
705   /**
706    * Namespace update node to add to namespace on success (or to be
707    * deleted if publishing failed).
708    */
709   struct NamespaceUpdateNode *nsn;
710
711   /**
712    * Namespace we're publishing to.
713    */
714   struct GNUNET_FS_Namespace *namespace;
715
716   /**
717    * Handle to the datastore.
718    */
719   struct GNUNET_DATASTORE_Handle *dsh;
720
721   /**
722    * Function to call once we're done.
723    */
724   GNUNET_FS_PublishContinuation cont;
725
726   /**
727    * Closure for cont.
728    */ 
729   void *cont_cls;
730
731 };
732
733
734 /**
735  * Function called by the datastore API with
736  * the result from the PUT (SBlock) request.
737  *
738  * @param cls closure of type "struct PublishSksContext*"
739  * @param success GNUNET_OK on success
740  * @param msg error message (or NULL)
741  */
742 static void
743 sb_put_cont (void *cls,
744              int success,
745              const char *msg)
746 {
747   struct PublishSksContext *psc = cls;
748   GNUNET_HashCode hc;
749
750   if (NULL != psc->dsh)
751     {
752       GNUNET_DATASTORE_disconnect (psc->dsh, GNUNET_NO);
753       psc->dsh = NULL;
754     }
755   if (GNUNET_OK != success)
756     {
757       if (psc->cont != NULL)
758         psc->cont (psc->cont_cls,
759                    NULL,
760                    msg);
761     }
762   else
763     {
764       if (psc->nsn != NULL)
765         {
766           /* FIXME: this can be done much more
767              efficiently by simply appending to the
768              file and overwriting the 4-byte header */
769           if (psc->namespace->update_nodes == NULL)
770             read_update_information_graph (psc->namespace);
771           GNUNET_array_append (psc->namespace->update_nodes,
772                                psc->namespace->update_node_count,
773                                psc->nsn);
774           if (psc->namespace->update_map != NULL)
775             {
776               GNUNET_CRYPTO_hash (psc->nsn->id,
777                                   strlen (psc->nsn->id),
778                                   &hc);
779               GNUNET_CONTAINER_multihashmap_put (psc->namespace->update_map,
780                                                  &hc,
781                                                  psc->nsn,
782                                                  GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
783             }
784           psc->nsn = NULL;
785           write_update_information_graph (psc->namespace);
786         }
787       if (psc->cont != NULL)
788         psc->cont (psc->cont_cls,
789                    psc->uri,
790                    NULL);
791     }
792   GNUNET_FS_namespace_delete (psc->namespace,
793                               GNUNET_NO);
794   GNUNET_FS_uri_destroy (psc->uri);
795   if (psc->nsn != NULL)
796     {
797       GNUNET_CONTAINER_meta_data_destroy (psc->nsn->md);
798       GNUNET_FS_uri_destroy (psc->nsn->uri);
799       GNUNET_free (psc->nsn->id);
800       GNUNET_free (psc->nsn->update);
801       GNUNET_free (psc->nsn);
802     }
803   GNUNET_free (psc);
804 }
805
806
807 /**
808  * Publish an SBlock on GNUnet.
809  *
810  * @param h handle to the file sharing subsystem
811  * @param namespace namespace to publish in
812  * @param identifier identifier to use
813  * @param update update identifier to use
814  * @param meta metadata to use
815  * @param uri URI to refer to in the SBlock
816  * @param bo block options
817  * @param options publication options
818  * @param cont continuation
819  * @param cont_cls closure for cont
820  */
821 void
822 GNUNET_FS_publish_sks (struct GNUNET_FS_Handle *h,
823                        struct GNUNET_FS_Namespace *namespace,
824                        const char *identifier,
825                        const char *update,
826                        const struct GNUNET_CONTAINER_MetaData *meta,
827                        const struct GNUNET_FS_Uri *uri,
828                        const struct GNUNET_FS_BlockOptions *bo,
829                        enum GNUNET_FS_PublishOptions options,
830                        GNUNET_FS_PublishContinuation cont,
831                        void *cont_cls)
832 {
833   struct PublishSksContext *psc;
834   struct GNUNET_CRYPTO_AesSessionKey sk;
835   struct GNUNET_CRYPTO_AesInitializationVector iv;
836   struct GNUNET_FS_Uri *sks_uri;
837   char *uris;
838   size_t size;
839   size_t slen;
840   size_t nidlen;
841   size_t idlen;
842   ssize_t mdsize;
843   struct SBlock *sb;
844   struct SBlock *sb_enc;
845   char *dest;
846   struct GNUNET_CONTAINER_MetaData *mmeta;
847   GNUNET_HashCode key;         /* hash of thisId = key */
848   GNUNET_HashCode id;          /* hash of hc = identifier */
849   GNUNET_HashCode query;       /* id ^ nsid = DB query */
850
851   if (NULL == meta)
852     mmeta = GNUNET_CONTAINER_meta_data_create ();
853   else
854     mmeta = GNUNET_CONTAINER_meta_data_duplicate (meta);
855   uris = GNUNET_FS_uri_to_string (uri);
856   slen = strlen (uris) + 1;
857   idlen = strlen (identifier);
858   if (update == NULL)
859     update = "";
860   nidlen = strlen (update) + 1;
861   mdsize = GNUNET_CONTAINER_meta_data_get_serialized_size (mmeta);
862   size = sizeof (struct SBlock) + slen + nidlen + mdsize;
863   if (size > MAX_SBLOCK_SIZE)
864     {
865       size = MAX_SBLOCK_SIZE;
866       mdsize = size - (sizeof (struct SBlock) + slen + nidlen);
867     }
868   sb = GNUNET_malloc (sizeof (struct SBlock) + size);
869   dest = (char *) &sb[1];
870   memcpy (dest, update, nidlen);
871   dest += nidlen;
872   memcpy (dest, uris, slen);
873   GNUNET_free (uris);
874   dest += slen;
875   mdsize = GNUNET_CONTAINER_meta_data_serialize (mmeta,
876                                                  &dest,
877                                                  mdsize, 
878                                                  GNUNET_CONTAINER_META_DATA_SERIALIZE_PART);
879   GNUNET_CONTAINER_meta_data_destroy (mmeta);
880   if (mdsize == -1)
881     {
882       GNUNET_break (0);
883       GNUNET_free (sb);
884       cont (cont_cls,
885             NULL,
886             _("Internal error."));
887       return;
888     }
889   size = sizeof (struct SBlock) + mdsize + slen + nidlen;
890   sb_enc = GNUNET_malloc (size);
891   GNUNET_CRYPTO_hash (identifier, idlen, &key);
892   GNUNET_CRYPTO_hash (&key, sizeof (GNUNET_HashCode), &id);
893   sks_uri = GNUNET_malloc (sizeof (struct GNUNET_FS_Uri));
894   sks_uri->type = sks;
895   GNUNET_CRYPTO_rsa_key_get_public (namespace->key, &sb_enc->subspace);
896   GNUNET_CRYPTO_hash (&sb_enc->subspace,
897                       sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
898                       &sks_uri->data.sks.namespace);
899   sks_uri->data.sks.identifier = GNUNET_strdup (identifier);
900   GNUNET_CRYPTO_hash_xor (&id, 
901                           &sks_uri->data.sks.namespace, 
902                           &sb_enc->identifier);
903   GNUNET_CRYPTO_hash_to_aes_key (&key, &sk, &iv);
904   GNUNET_CRYPTO_aes_encrypt (&sb[1],
905                              size - sizeof (struct SBlock),
906                              &sk,
907                              &iv,
908                              &sb_enc[1]);
909   sb_enc->purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_FS_SBLOCK);
910   sb_enc->purpose.size = htonl(slen + mdsize + nidlen
911                                + sizeof(struct SBlock)
912                                - sizeof(struct GNUNET_CRYPTO_RsaSignature));
913   GNUNET_assert (GNUNET_OK == 
914                  GNUNET_CRYPTO_rsa_sign (namespace->key,
915                                          &sb_enc->purpose,
916                                          &sb_enc->signature));
917   psc = GNUNET_malloc (sizeof(struct PublishSksContext));
918   psc->uri = sks_uri;
919   psc->cont = cont;
920   psc->namespace = namespace;
921   namespace->rc++;
922   psc->cont_cls = cont_cls;
923   if (0 != (options & GNUNET_FS_PUBLISH_OPTION_SIMULATE_ONLY))
924     {
925       GNUNET_free (sb_enc);
926       GNUNET_free (sb);
927       sb_put_cont (psc,
928                    GNUNET_OK,
929                    NULL);
930       return;
931     }
932   psc->dsh = GNUNET_DATASTORE_connect (h->cfg);
933   if (NULL == psc->dsh)
934     {
935       GNUNET_free (sb_enc);
936       GNUNET_free (sb);
937       sb_put_cont (psc,
938                    GNUNET_NO,
939                    _("Failed to connect to datastore."));
940       return;
941     }
942   GNUNET_CRYPTO_hash_xor (&sks_uri->data.sks.namespace,
943                           &id,
944                           &query);  
945   if (NULL != update)
946     {
947       psc->nsn = GNUNET_malloc (sizeof (struct NamespaceUpdateNode));
948       psc->nsn->id = GNUNET_strdup (identifier);
949       psc->nsn->update = GNUNET_strdup (update);
950       psc->nsn->md = GNUNET_CONTAINER_meta_data_duplicate (meta);
951       psc->nsn->uri = GNUNET_FS_uri_dup (uri);
952     }
953   GNUNET_DATASTORE_put (psc->dsh,
954                         0,
955                         &sb_enc->identifier,
956                         size,
957                         sb_enc,
958                         GNUNET_BLOCK_TYPE_FS_SBLOCK, 
959                         bo->content_priority,
960                         bo->anonymity_level,
961                         bo->replication_level,
962                         bo->expiration_time,
963                         -2, 1,
964                         GNUNET_CONSTANTS_SERVICE_TIMEOUT,
965                         &sb_put_cont,
966                         psc);
967   GNUNET_free (sb);
968   GNUNET_free (sb_enc);
969 }
970
971
972 /**
973  * Closure for 'process_update_node'.
974  */
975 struct ProcessUpdateClosure 
976 {
977   /**
978    * Function to call for each node.
979    */
980   GNUNET_FS_IdentifierProcessor ip;
981
982   /**
983    * Closure for 'ip'.
984    */
985   void *ip_cls;
986 };
987
988
989 /**
990  * Call the iterator in the closure for each node.
991  *
992  * @param cls closure (of type 'struct ProcessUpdateClosure *')
993  * @param key current key code
994  * @param value value in the hash map (of type 'struct NamespaceUpdateNode *')
995  * @return GNUNET_YES if we should continue to
996  *         iterate,
997  *         GNUNET_NO if not.
998  */
999 static int
1000 process_update_node (void *cls,
1001                      const GNUNET_HashCode * key,
1002                      void *value)
1003 {
1004   struct ProcessUpdateClosure *pc = cls;
1005   struct NamespaceUpdateNode *nsn = value;
1006
1007   pc->ip (pc->ip_cls,
1008           nsn->id,
1009           nsn->uri,
1010           nsn->md,
1011           nsn->update);
1012   return GNUNET_YES;
1013 }
1014
1015
1016 /**
1017  * Closure for 'find_trees'.
1018  */
1019 struct FindTreeClosure 
1020 {
1021   /**
1022    * Namespace we are operating on.
1023    */
1024   struct GNUNET_FS_Namespace *namespace;
1025
1026   /**
1027    * Array with 'head's of TREEs.
1028    */
1029   struct NamespaceUpdateNode **tree_array;
1030
1031   /**
1032    * Size of 'tree_array'
1033    */
1034   unsigned int tree_array_size;
1035
1036   /**
1037    * Current generational ID used.
1038    */
1039   unsigned int nug;
1040
1041   /**
1042    * Identifier for the current TREE, or UINT_MAX for none yet.
1043    */
1044   unsigned int id;
1045 };
1046
1047
1048 /**
1049  * Find all nodes reachable from the current node (including the
1050  * current node itself).  If they are in no tree, add them to the
1051  * current one.   If they are the head of another tree, merge the
1052  * trees.  If they are in the middle of another tree, let them be.
1053  * We can tell that a node is already in an tree by checking if
1054  * its 'nug' field is set to the current 'nug' value.  It is the
1055  * head of an tree if it is in the 'tree_array' under its respective
1056  * 'tree_id'.
1057  *
1058  * In short, we're trying to find the smallest number of tree to 
1059  * cover a directed graph.
1060  *
1061  * @param cls closure (of type 'struct FindTreeClosure')
1062  * @param key current key code
1063  * @param value value in the hash map
1064  * @return GNUNET_YES if we should continue to
1065  *         iterate,
1066  *         GNUNET_NO if not.
1067  */
1068 static int
1069 find_trees (void *cls,
1070            const GNUNET_HashCode * key,
1071            void *value)
1072 {
1073   struct FindTreeClosure *fc = cls;
1074   struct NamespaceUpdateNode *nsn = value;
1075   GNUNET_HashCode hc;
1076
1077   if (nsn->nug == fc->nug)
1078     {
1079       if (nsn->tree_id == UINT_MAX) 
1080         return GNUNET_YES; /* circular */       
1081       GNUNET_assert (nsn->tree_id < fc->tree_array_size);
1082       if (fc->tree_array[nsn->tree_id] != nsn)
1083         return GNUNET_YES; /* part of "another" (directed) TREE, 
1084                               and not root of it, end trace */  
1085       if (nsn->tree_id == fc->id)
1086         return GNUNET_YES; /* that's our own root (can this be?) */
1087       /* merge existing TREE, we have a root for both */
1088       fc->tree_array[nsn->tree_id] = NULL;
1089       if (fc->id == UINT_MAX)
1090         fc->id = nsn->tree_id; /* take over ID */
1091     }
1092   else
1093     {
1094       nsn->nug = fc->nug;
1095       nsn->tree_id = UINT_MAX; /* mark as undef */
1096       /* trace */
1097       GNUNET_CRYPTO_hash (nsn->update,
1098                           strlen (nsn->update),
1099                           &hc);
1100       GNUNET_CONTAINER_multihashmap_get_multiple (fc->namespace->update_map,
1101                                                   &hc,
1102                                                   &find_trees,
1103                                                   fc);
1104     }
1105   return GNUNET_YES;
1106 }
1107
1108
1109 /**
1110  * List all of the identifiers in the namespace for which we could
1111  * produce an update.  Namespace updates form a graph where each node
1112  * has a name.  Each node can have any number of URI/meta-data entries
1113  * which can each be linked to other nodes.  Cycles are possible.
1114  * 
1115  * Calling this function with "next_id" NULL will cause the library to
1116  * call "ip" with a root for each strongly connected component of the
1117  * graph (a root being a node from which all other nodes in the Tree
1118  * are reachable).
1119  * 
1120  * Calling this function with "next_id" being the name of a node will
1121  * cause the library to call "ip" with all children of the node.  Note
1122  * that cycles within the final tree are possible (including self-loops).
1123  * I know, odd definition of a tree, but the GUI will display an actual
1124  * tree (GtkTreeView), so that's what counts for the term here.
1125  *
1126  * @param namespace namespace to inspect for updateable content
1127  * @param next_id ID to look for; use NULL to look for tree roots
1128  * @param ip function to call on each updateable identifier
1129  * @param ip_cls closure for ip
1130  */
1131 void
1132 GNUNET_FS_namespace_list_updateable (struct GNUNET_FS_Namespace *namespace,
1133                                      const char *next_id,
1134                                      GNUNET_FS_IdentifierProcessor ip, 
1135                                      void *ip_cls)
1136 {
1137   unsigned int i;
1138   unsigned int nug;
1139   GNUNET_HashCode hc;
1140   struct NamespaceUpdateNode *nsn;
1141   struct ProcessUpdateClosure pc;
1142   struct FindTreeClosure fc;
1143
1144   if (namespace->update_nodes == NULL)
1145     read_update_information_graph (namespace);
1146   if (namespace->update_nodes == NULL)
1147     {
1148 #if DEBUG_NAMESPACE
1149       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1150                   "No updateable nodes found for ID `%s'\n",
1151                   next_id);
1152 #endif
1153       return; /* no nodes */
1154     }
1155   if (namespace->update_map == NULL)
1156     {
1157       /* need to construct */
1158       namespace->update_map = GNUNET_CONTAINER_multihashmap_create (2 + 3 * namespace->update_node_count / 4);
1159       for (i=0;i<namespace->update_node_count;i++)
1160         {
1161           nsn = namespace->update_nodes[i];
1162           GNUNET_CRYPTO_hash (nsn->id,
1163                               strlen (nsn->id),
1164                               &hc);
1165           GNUNET_CONTAINER_multihashmap_put (namespace->update_map,
1166                                              &hc,
1167                                              nsn,
1168                                              GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);                         
1169         }
1170     }
1171   if (next_id != NULL)
1172     {
1173       GNUNET_CRYPTO_hash (next_id,
1174                           strlen (next_id),
1175                           &hc);
1176       pc.ip = ip;
1177       pc.ip_cls = ip_cls;
1178       GNUNET_CONTAINER_multihashmap_get_multiple (namespace->update_map,
1179                                                   &hc,
1180                                                   &process_update_node,
1181                                                   &pc);
1182       return;
1183     }
1184 #if DEBUG_NAMESPACE
1185   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1186               "Calculating TREEs to find roots of update trees\n");
1187 #endif
1188   /* Find heads of TREEs in update graph */
1189   nug = ++namespace->nug_gen;
1190   fc.tree_array = NULL;
1191   fc.tree_array_size = 0;
1192
1193   for (i=0;i<namespace->update_node_count;i++)
1194     {
1195       nsn = namespace->update_nodes[i];
1196       if (nsn->nug == nug)
1197         {
1198 #if DEBUG_NAMESPACE
1199           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1200                       "TREE of node `%s' is %u\n",
1201                       nsn->id,
1202                       nsn->nug);
1203 #endif
1204           continue; /* already placed in TREE */
1205         }
1206       GNUNET_CRYPTO_hash (nsn->update,
1207                           strlen (nsn->update),
1208                           &hc);
1209       nsn->nug = nug;
1210       fc.id = UINT_MAX;
1211       fc.nug = nug;
1212       fc.namespace = namespace;
1213       GNUNET_CONTAINER_multihashmap_get_multiple (namespace->update_map,
1214                                                   &hc,
1215                                                   &find_trees,
1216                                                   &fc);
1217       if (fc.id == UINT_MAX)
1218         {
1219           /* start new TREE */
1220           for (fc.id=0;fc.id<fc.tree_array_size;fc.id++)
1221             {
1222               if (fc.tree_array[fc.id] == NULL)
1223                 {
1224                   fc.tree_array[fc.id] = nsn;
1225                   nsn->tree_id = fc.id;
1226                   break;
1227                 }
1228             }
1229           if (fc.id == fc.tree_array_size)
1230             {
1231               GNUNET_array_append (fc.tree_array,
1232                                    fc.tree_array_size,
1233                                    nsn);
1234               nsn->tree_id = fc.id;
1235             }
1236 #if DEBUG_NAMESPACE
1237           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1238                       "Starting new TREE %u with node `%s'\n",
1239                       nsn->tree_id,
1240                       nsn->id);
1241 #endif
1242           /* put all nodes with same identifier into this TREE */
1243           GNUNET_CRYPTO_hash (nsn->id,
1244                               strlen (nsn->id),
1245                               &hc);
1246           fc.id = nsn->tree_id;
1247           fc.nug = nug;
1248           fc.namespace = namespace;
1249           GNUNET_CONTAINER_multihashmap_get_multiple (namespace->update_map,
1250                                                       &hc,
1251                                                       &find_trees,
1252                                                       &fc);
1253         }
1254       else
1255         {
1256           /* make head of TREE "id" */
1257           fc.tree_array[fc.id] = nsn;
1258           nsn->tree_id = fc.id;
1259         }
1260 #if DEBUG_NAMESPACE
1261       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1262                   "TREE of node `%s' is %u\n",
1263                   nsn->id,
1264                   fc.id);
1265 #endif
1266     }
1267   for (i=0;i<fc.tree_array_size;i++)
1268     {
1269       nsn = fc.tree_array[i];
1270       if (NULL != nsn)
1271         {
1272 #if DEBUG_NAMESPACE
1273           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1274                       "Root of TREE %u is node `%s'\n",
1275                       i,
1276                       nsn->id);
1277 #endif
1278
1279           ip (ip_cls,
1280               nsn->id,
1281               nsn->uri,
1282               nsn->md,
1283               nsn->update);
1284         }
1285     }
1286   GNUNET_array_grow (fc.tree_array,
1287                      fc.tree_array_size,
1288                      0);
1289 #if DEBUG_NAMESPACE
1290   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1291               "Done processing TREEs\n");
1292 #endif
1293 }
1294
1295
1296 /* end of fs_namespace.c */
1297