-only trigger check config if we actually need it
[oweals/gnunet.git] / src / fs / fs_publish_ublock.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009, 2010, 2012, 2013 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file fs/fs_publish_ublock.c
23  * @brief publish a UBLOCK in GNUnet
24  * @see https://gnunet.org/encoding and #2564
25  * @author Krista Bennett
26  * @author Christian Grothoff
27  */
28 #include "platform.h"
29 #include "gnunet_constants.h"
30 #include "gnunet_signatures.h"
31 #include "fs_publish_ublock.h"
32 #include "fs_api.h"
33 #include "fs_tree.h"
34
35
36 /**
37  * Derive the key for symmetric encryption/decryption from
38  * the public key and the label.
39  *
40  * @param skey where to store symmetric key
41  * @param iv where to store the IV
42  * @param label label to use for key derivation
43  * @param pub public key to use for key derivation
44  */
45 static void
46 derive_ublock_encryption_key (struct GNUNET_CRYPTO_SymmetricSessionKey *skey,
47                               struct GNUNET_CRYPTO_SymmetricInitializationVector *iv,
48                               const char *label,
49                               const struct GNUNET_CRYPTO_EcdsaPublicKey *pub)
50 {
51   struct GNUNET_HashCode key;
52
53   /* derive key from 'label' and public key of the namespace */
54   GNUNET_assert (GNUNET_YES ==
55                  GNUNET_CRYPTO_kdf (&key, sizeof (key),
56                                     "UBLOCK-ENC", strlen ("UBLOCK-ENC"),
57                                     label, strlen (label),
58                                     pub, sizeof (*pub),
59                                     NULL, 0));
60   GNUNET_CRYPTO_hash_to_aes_key (&key, skey, iv);
61 }
62
63
64 /**
65  * Decrypt the given UBlock, storing the result in output.
66  *
67  * @param input input data
68  * @param input_len number of bytes in @a input
69  * @param ns public key under which the UBlock was stored
70  * @param label label under which the UBlock was stored
71  * @param output where to write the result, has input_len bytes
72  */
73 void
74 GNUNET_FS_ublock_decrypt_ (const void *input,
75                            size_t input_len,
76                            const struct GNUNET_CRYPTO_EcdsaPublicKey *ns,
77                            const char *label,
78                            void *output)
79 {
80   struct GNUNET_CRYPTO_SymmetricInitializationVector iv;
81   struct GNUNET_CRYPTO_SymmetricSessionKey skey;
82
83   derive_ublock_encryption_key (&skey, &iv,
84                                 label, ns);
85   GNUNET_CRYPTO_symmetric_decrypt (input, input_len,
86                              &skey, &iv,
87                              output);
88 }
89
90
91 /**
92  * Context for 'ublock_put_cont'.
93  */
94 struct GNUNET_FS_PublishUblockContext
95 {
96
97   /**
98    * Function to call when done.
99    */
100   GNUNET_FS_UBlockContinuation cont;
101
102   /**
103    * Closure of 'cont'.
104    */
105   void *cont_cls;
106
107   /**
108    * Handle for active datastore operation.
109    */
110   struct GNUNET_DATASTORE_QueueEntry *qre;
111
112   /**
113    * Task to run continuation asynchronously.
114    */
115   struct GNUNET_SCHEDULER_Task * task;
116
117 };
118
119
120 /**
121  * Continuation of #GNUNET_FS_publish_ublock_().
122  *
123  * @param cls closure of type "struct GNUNET_FS_PublishUblockContext*"
124  * @param success #GNUNET_SYSERR on failure (including timeout/queue drop)
125  *                #GNUNET_NO if content was already there
126  *                #GNUNET_YES (or other positive value) on success
127  * @param min_expiration minimum expiration time required for 0-priority content to be stored
128  *                by the datacache at this time, zero for unknown, forever if we have no
129  *                space for 0-priority content
130  * @param msg NULL on success, otherwise an error message
131  */
132 static void
133 ublock_put_cont (void *cls,
134                  int32_t success,
135                  struct GNUNET_TIME_Absolute min_expiration,
136                  const char *msg)
137 {
138   struct GNUNET_FS_PublishUblockContext *uc = cls;
139
140   uc->qre = NULL;
141   uc->cont (uc->cont_cls, msg);
142   GNUNET_free (uc);
143 }
144
145
146 /**
147  * Run the continuation.
148  *
149  * @param cls the `struct GNUNET_FS_PublishUblockContext *`
150  */
151 static void
152 run_cont (void *cls)
153 {
154   struct GNUNET_FS_PublishUblockContext *uc = cls;
155
156   uc->task = NULL;
157   uc->cont (uc->cont_cls, NULL);
158   GNUNET_free (uc);
159 }
160
161
162 /**
163  * Publish a UBlock.
164  *
165  * @param h handle to the file sharing subsystem
166  * @param dsh datastore handle to use for storage operation
167  * @param label identifier to use
168  * @param ulabel update label to use, may be an empty string for none
169  * @param ns namespace to publish in
170  * @param meta metadata to use
171  * @param uri URI to refer to in the UBlock
172  * @param bo per-block options
173  * @param options publication options
174  * @param cont continuation
175  * @param cont_cls closure for @a cont
176  * @return NULL on error (@a cont will still be called)
177  */
178 struct GNUNET_FS_PublishUblockContext *
179 GNUNET_FS_publish_ublock_ (struct GNUNET_FS_Handle *h,
180                            struct GNUNET_DATASTORE_Handle *dsh,
181                            const char *label,
182                            const char *ulabel,
183                            const struct GNUNET_CRYPTO_EcdsaPrivateKey *ns,
184                            const struct GNUNET_CONTAINER_MetaData *meta,
185                            const struct GNUNET_FS_Uri *uri,
186                            const struct GNUNET_FS_BlockOptions *bo,
187                            enum GNUNET_FS_PublishOptions options,
188                            GNUNET_FS_UBlockContinuation cont, void *cont_cls)
189 {
190   struct GNUNET_FS_PublishUblockContext *uc;
191   struct GNUNET_HashCode query;
192   struct GNUNET_CRYPTO_SymmetricInitializationVector iv;
193   struct GNUNET_CRYPTO_SymmetricSessionKey skey;
194   struct GNUNET_CRYPTO_EcdsaPrivateKey *nsd;
195   struct GNUNET_CRYPTO_EcdsaPublicKey pub;
196   char *uris;
197   size_t size;
198   char *kbe;
199   char *sptr;
200   ssize_t mdsize;
201   size_t slen;
202   size_t ulen;
203   struct UBlock *ub_plain;
204   struct UBlock *ub_enc;
205
206   /* compute ublock to publish */
207   if (NULL == meta)
208     mdsize = 0;
209   else
210     mdsize = GNUNET_CONTAINER_meta_data_get_serialized_size (meta);
211   GNUNET_assert (mdsize >= 0);
212   uris = GNUNET_FS_uri_to_string (uri);
213   slen = strlen (uris) + 1;
214   if (NULL == ulabel)
215     ulen = 1;
216   else
217     ulen = strlen (ulabel) + 1;
218   size = mdsize + sizeof (struct UBlock) + slen + ulen;
219   if (size > MAX_UBLOCK_SIZE)
220   {
221     size = MAX_UBLOCK_SIZE;
222     mdsize = size - sizeof (struct UBlock) - (slen + ulen);
223   }
224   ub_plain = GNUNET_malloc (size);
225   kbe = (char *) &ub_plain[1];
226   if (NULL != ulabel)
227     memcpy (kbe, ulabel, ulen);
228   kbe += ulen;
229   memcpy (kbe, uris, slen);
230   kbe += slen;
231   GNUNET_free (uris);
232   sptr = kbe;
233   if (NULL != meta)
234     mdsize =
235       GNUNET_CONTAINER_meta_data_serialize (meta, &sptr, mdsize,
236                                             GNUNET_CONTAINER_META_DATA_SERIALIZE_PART);
237   if (-1 == mdsize)
238   {
239     GNUNET_break (0);
240     GNUNET_free (ub_plain);
241     cont (cont_cls, _("Internal error."));
242     return NULL;
243   }
244   size = sizeof (struct UBlock) + slen + mdsize + ulen;
245
246   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
247               "Publishing under identifier `%s'\n",
248               label);
249   /* get public key of the namespace */
250   GNUNET_CRYPTO_ecdsa_key_get_public (ns,
251                                     &pub);
252   derive_ublock_encryption_key (&skey, &iv,
253                                 label, &pub);
254
255   /* encrypt ublock */
256   ub_enc = GNUNET_malloc (size);
257   GNUNET_CRYPTO_symmetric_encrypt (&ub_plain[1],
258                              ulen + slen + mdsize,
259                              &skey, &iv,
260                              &ub_enc[1]);
261   GNUNET_free (ub_plain);
262   ub_enc->purpose.size = htonl (ulen + slen + mdsize +
263                                 sizeof (struct UBlock)
264                                 - sizeof (struct GNUNET_CRYPTO_EcdsaSignature));
265   ub_enc->purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_FS_UBLOCK);
266
267   /* derive signing-key from 'label' and public key of the namespace */
268   nsd = GNUNET_CRYPTO_ecdsa_private_key_derive (ns, label, "fs-ublock");
269   GNUNET_CRYPTO_ecdsa_key_get_public (nsd,
270                                     &ub_enc->verification_key);
271   GNUNET_assert (GNUNET_OK ==
272                  GNUNET_CRYPTO_ecdsa_sign (nsd,
273                                          &ub_enc->purpose,
274                                          &ub_enc->signature));
275   GNUNET_CRYPTO_hash (&ub_enc->verification_key,
276                       sizeof (ub_enc->verification_key),
277                       &query);
278   GNUNET_free (nsd);
279
280   uc = GNUNET_new (struct GNUNET_FS_PublishUblockContext);
281   uc->cont = cont;
282   uc->cont_cls = cont_cls;
283   if (NULL != dsh)
284   {
285     uc->qre =
286       GNUNET_DATASTORE_put (dsh,
287                             0,
288                             &query,
289                             ulen + slen + mdsize + sizeof (struct UBlock),
290                             ub_enc,
291                             GNUNET_BLOCK_TYPE_FS_UBLOCK,
292                             bo->content_priority,
293                             bo->anonymity_level,
294                             bo->replication_level,
295                             bo->expiration_time,
296                             -2, 1,
297                             &ublock_put_cont, uc);
298   }
299   else
300   {
301     uc->task = GNUNET_SCHEDULER_add_now (&run_cont,
302                                          uc);
303   }
304   return uc;
305 }
306
307
308 /**
309  * Abort UBlock publishing operation.
310  *
311  * @param uc operation to abort.
312  */
313 void
314 GNUNET_FS_publish_ublock_cancel_ (struct GNUNET_FS_PublishUblockContext *uc)
315 {
316   if (NULL != uc->qre)
317     GNUNET_DATASTORE_cancel (uc->qre);
318   if (NULL != uc->task)
319     GNUNET_SCHEDULER_cancel (uc->task);
320   GNUNET_free (uc);
321 }
322
323 /* end of fs_publish_ublock.c */