-fixing build issues in fs/set related to #3047
[oweals/gnunet.git] / src / fs / fs_uri.c
1 /*
2      This file is part of GNUnet.
3      (C) 2003--2013 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_uri.c
23  * @brief Parses and produces uri strings.
24  * @author Igor Wronsky, Christian Grothoff
25  *
26  * GNUnet URIs are of the general form "gnunet://MODULE/IDENTIFIER".
27  * The specific structure of "IDENTIFIER" depends on the module and
28  * maybe differenciated into additional subcategories if applicable.
29  * This module only deals with fs identifiers (MODULE = "fs").
30  * <p>
31  *
32  * This module only parses URIs for the AFS module.  The FS URIs fall
33  * into four categories, "chk", "sks", "ksk" and "loc".  The first three
34  * categories were named in analogy (!) to Freenet, but they do NOT
35  * work in exactly the same way.  They are very similar from the user's
36  * point of view (unique file identifier, subspace, keyword), but the
37  * implementation is rather different in pretty much every detail.
38  * The concrete URI formats are:
39  *
40  * <ul><li>
41  *
42  * First, there are URIs that identify a file.  They have the format
43  * "gnunet://fs/chk/HEX1.HEX2.SIZE".  These URIs can be used to
44  * download the file.  The description, filename, mime-type and other
45  * meta-data is NOT part of the file-URI since a URI uniquely
46  * identifies a resource (and the contents of the file would be the
47  * same even if it had a different description).
48  *
49  * </li><li>
50  *
51  * The second category identifies entries in a namespace.  The format
52  * is "gnunet://fs/sks/NAMESPACE/IDENTIFIER" where the namespace
53  * should be given in HEX.  Applications may allow using a nickname
54  * for the namespace if the nickname is not ambiguous.  The identifier
55  * can be either an ASCII sequence or a HEX-encoding.  If the
56  * identifier is in ASCII but the format is ambiguous and could denote
57  * a HEX-string a "/" is appended to indicate ASCII encoding.
58  *
59  * </li> <li>
60  *
61  * The third category identifies ordinary searches.  The format is
62  * "gnunet://fs/ksk/KEYWORD[+KEYWORD]*".  Using the "+" syntax
63  * it is possible to encode searches with the boolean "AND" operator.
64  * "+" is used since it indicates a commutative 'and' operation and
65  * is unlikely to be used in a keyword by itself.
66  *
67  * </li><li>
68  *
69  * The last category identifies a datum on a specific machine.  The
70  * format is "gnunet://fs/loc/HEX1.HEX2.SIZE.PEER.SIG.EXPTIME".  PEER is
71  * the BinName of the public key of the peer storing the datum.  The
72  * signature (SIG) certifies that this peer has this content.
73  * HEX1, HEX2 and SIZE correspond to a 'chk' URI.
74  *
75  * </li></ul>
76  *
77  * The encoding for hexadecimal values is defined in the hashing.c
78  * module in the gnunetutil library and discussed there.
79  * <p>
80  */
81 #include "platform.h"
82 #include "gnunet_fs_service.h"
83 #include "gnunet_signatures.h"
84 #include "fs_api.h"
85 #include <unitypes.h>
86 #include <unicase.h>
87 #include <uniconv.h>
88 #include <unistr.h>
89 #include <unistdio.h>
90
91
92
93 /**
94  * Get a unique key from a URI.  This is for putting URIs
95  * into HashMaps.  The key may change between FS implementations.
96  *
97  * @param uri uri to convert to a unique key
98  * @param key where to store the unique key
99  */
100 void
101 GNUNET_FS_uri_to_key (const struct GNUNET_FS_Uri *uri, 
102                       struct GNUNET_HashCode *key)
103 {
104   switch (uri->type)
105   {
106   case GNUNET_FS_URI_CHK:
107     *key = uri->data.chk.chk.query;
108     return;
109   case GNUNET_FS_URI_SKS:
110     GNUNET_CRYPTO_hash (uri->data.sks.identifier,
111                         strlen (uri->data.sks.identifier), key);
112     break;
113   case GNUNET_FS_URI_KSK:
114     if (uri->data.ksk.keywordCount > 0)
115       GNUNET_CRYPTO_hash (uri->data.ksk.keywords[0],
116                           strlen (uri->data.ksk.keywords[0]), key);
117     break;
118   case GNUNET_FS_URI_LOC:
119     GNUNET_CRYPTO_hash (&uri->data.loc.fi,
120                         sizeof (struct FileIdentifier) +
121                         sizeof (struct GNUNET_CRYPTO_EccPublicSignKey),
122                         key);
123     break;
124   default:
125     memset (key, 0, sizeof (struct GNUNET_HashCode));
126     break;
127   }
128 }
129
130
131 /**
132  * Convert keyword URI to a human readable format
133  * (i.e. the search query that was used in the first place)
134  *
135  * @param uri ksk uri to convert to a string
136  * @return string with the keywords
137  */
138 char *
139 GNUNET_FS_uri_ksk_to_string_fancy (const struct GNUNET_FS_Uri *uri)
140 {
141   size_t n;
142   char *ret;
143   unsigned int i;
144   const char *keyword;
145   char **keywords;
146   unsigned int keywordCount;
147
148   if ((NULL == uri) || (GNUNET_FS_URI_KSK != uri->type))
149   {
150     GNUNET_break (0);
151     return NULL;
152   }
153   keywords = uri->data.ksk.keywords;
154   keywordCount = uri->data.ksk.keywordCount;
155   n = keywordCount + 1;
156   for (i = 0; i < keywordCount; i++)
157   {
158     keyword = keywords[i];
159     n += strlen (keyword) - 1;
160     if (NULL != strstr (&keyword[1], " "))
161       n += 2;
162     if (keyword[0] == '+')
163       n++;
164   }
165   ret = GNUNET_malloc (n);
166   strcpy (ret, "");
167   for (i = 0; i < keywordCount; i++)
168   {
169     keyword = keywords[i];
170     if (NULL != strstr (&keyword[1], " "))
171     {
172       strcat (ret, "\"");
173       if (keyword[0] == '+')
174         strcat (ret, keyword);
175       else
176         strcat (ret, &keyword[1]);
177       strcat (ret, "\"");
178     }
179     else
180     {
181       if (keyword[0] == '+')
182         strcat (ret, keyword);
183       else
184         strcat (ret, &keyword[1]);
185     }
186     strcat (ret, " ");
187   }
188   return ret;
189 }
190
191
192 /**
193  * Given a keyword with %-encoding (and possibly quotes to protect
194  * spaces), return a copy of the keyword without %-encoding and
195  * without double-quotes (%22).  Also, add a space at the beginning
196  * if there is not a '+'.
197  *
198  * @param in string with %-encoding
199  * @param emsg where to store the parser error message (if any)
200  * @return decodded string with leading space (or preserved plus)
201  */
202 static char *
203 percent_decode_keyword (const char *in, char **emsg)
204 {
205   char *out;
206   char *ret;
207   unsigned int rpos;
208   unsigned int wpos;
209   unsigned int hx;
210
211   out = GNUNET_strdup (in);
212   rpos = 0;
213   wpos = 0;
214   while (out[rpos] != '\0')
215   {
216     if (out[rpos] == '%')
217     {
218       if (1 != SSCANF (&out[rpos + 1], "%2X", &hx))
219       {
220         GNUNET_free (out);
221         *emsg = GNUNET_strdup (_(/* xgettext:no-c-format */
222                                  "`%' must be followed by HEX number"));
223         return NULL;
224       }
225       rpos += 3;
226       if (hx == '"')
227         continue;               /* skip double quote */
228       out[wpos++] = (char) hx;
229     }
230     else
231     {
232       out[wpos++] = out[rpos++];
233     }
234   }
235   out[wpos] = '\0';
236   if (out[0] == '+')
237   {
238     ret = GNUNET_strdup (out);
239   }
240   else
241   {
242     /* need to prefix with space */
243     ret = GNUNET_malloc (strlen (out) + 2);
244     strcpy (ret, " ");
245     strcat (ret, out);
246   }
247   GNUNET_free (out);
248   return ret;
249 }
250
251 #define GNUNET_FS_URI_KSK_PREFIX GNUNET_FS_URI_PREFIX GNUNET_FS_URI_KSK_INFIX
252
253 /**
254  * Parse a KSK URI.
255  *
256  * @param s an uri string
257  * @param emsg where to store the parser error message (if any)
258  * @return NULL on error, otherwise the KSK URI
259  */
260 static struct GNUNET_FS_Uri *
261 uri_ksk_parse (const char *s, char **emsg)
262 {
263   struct GNUNET_FS_Uri *ret;
264   char **keywords;
265   unsigned int pos;
266   int max;
267   int iret;
268   int i;
269   size_t slen;
270   char *dup;
271   int saw_quote;
272
273   GNUNET_assert (NULL != s);
274   slen = strlen (s);
275   pos = strlen (GNUNET_FS_URI_KSK_PREFIX);
276   if ((slen <= pos) || (0 != strncmp (s, GNUNET_FS_URI_KSK_PREFIX, pos)))
277     return NULL;                /* not KSK URI */
278   if ((s[slen - 1] == '+') || (s[pos] == '+'))
279   {
280     *emsg =
281         GNUNET_strdup (_("Malformed KSK URI (must not begin or end with `+')"));
282     return NULL;
283   }
284   max = 1;
285   saw_quote = 0;
286   for (i = pos; i < slen; i++)
287   {
288     if ((s[i] == '%') && (&s[i] == strstr (&s[i], "%22")))
289     {
290       saw_quote = (saw_quote + 1) % 2;
291       i += 3;
292       continue;
293     }
294     if ((s[i] == '+') && (saw_quote == 0))
295     {
296       max++;
297       if (s[i - 1] == '+')
298       {
299         *emsg = GNUNET_strdup (_("`++' not allowed in KSK URI"));
300         return NULL;
301       }
302     }
303   }
304   if (saw_quote == 1)
305   {
306     *emsg = GNUNET_strdup (_("Quotes not balanced in KSK URI"));
307     return NULL;
308   }
309   iret = max;
310   dup = GNUNET_strdup (s);
311   keywords = GNUNET_malloc (max * sizeof (char *));
312   for (i = slen - 1; i >= pos; i--)
313   {
314     if ((s[i] == '%') && (&s[i] == strstr (&s[i], "%22")))
315     {
316       saw_quote = (saw_quote + 1) % 2;
317       i += 3;
318       continue;
319     }
320     if ((dup[i] == '+') && (saw_quote == 0))
321     {
322       keywords[--max] = percent_decode_keyword (&dup[i + 1], emsg);
323       if (NULL == keywords[max])
324         goto CLEANUP;
325       dup[i] = '\0';
326     }
327   }
328   keywords[--max] = percent_decode_keyword (&dup[pos], emsg);
329   if (NULL == keywords[max])
330     goto CLEANUP;
331   GNUNET_assert (max == 0);
332   GNUNET_free (dup);
333   ret = GNUNET_new (struct GNUNET_FS_Uri);
334   ret->type = GNUNET_FS_URI_KSK;
335   ret->data.ksk.keywordCount = iret;
336   ret->data.ksk.keywords = keywords;
337   return ret;
338 CLEANUP:
339   for (i = 0; i < max; i++)
340     GNUNET_free_non_null (keywords[i]);
341   GNUNET_free (keywords);
342   GNUNET_free (dup);
343   return NULL;
344 }
345
346
347 #define GNUNET_FS_URI_SKS_PREFIX GNUNET_FS_URI_PREFIX GNUNET_FS_URI_SKS_INFIX
348
349 /**
350  * Parse an SKS URI.
351  *
352  * @param s an uri string
353  * @param emsg where to store the parser error message (if any)
354  * @return NULL on error, SKS URI otherwise
355  */
356 static struct GNUNET_FS_Uri *
357 uri_sks_parse (const char *s, char **emsg)
358 {
359   struct GNUNET_FS_Uri *ret;
360   struct GNUNET_CRYPTO_EccPublicSignKey ns;
361   size_t pos;
362   char *end;
363
364   GNUNET_assert (s != NULL);
365   pos = strlen (GNUNET_FS_URI_SKS_PREFIX);
366   if ((strlen (s) <= pos) || (0 != strncmp (s, GNUNET_FS_URI_SKS_PREFIX, pos)))
367     return NULL;                /* not an SKS URI */
368   end = strchr (&s[pos], '/');
369   if ( (NULL == end) ||
370        (GNUNET_OK !=
371         GNUNET_STRINGS_string_to_data (&s[pos], 
372                                        end - &s[pos],
373                                        &ns,
374                                        sizeof (ns))) )
375   {
376     *emsg = GNUNET_strdup (_("Malformed SKS URI"));
377     return NULL; /* malformed */
378   }
379   end++; /* skip over '/' */
380   ret = GNUNET_new (struct GNUNET_FS_Uri);
381   ret->type = GNUNET_FS_URI_SKS;
382   ret->data.sks.ns = ns;
383   ret->data.sks.identifier = GNUNET_strdup (end);
384   return ret;
385 }
386
387 #define GNUNET_FS_URI_CHK_PREFIX GNUNET_FS_URI_PREFIX GNUNET_FS_URI_CHK_INFIX
388
389
390 /**
391  * Parse a CHK URI.
392  *
393  * @param s an uri string
394  * @param emsg where to store the parser error message (if any)
395  * @return NULL on error, CHK URI otherwise
396  */
397 static struct GNUNET_FS_Uri *
398 uri_chk_parse (const char *s, char **emsg)
399 {
400   struct GNUNET_FS_Uri *ret;
401   struct FileIdentifier fi;
402   unsigned int pos;
403   unsigned long long flen;
404   size_t slen;
405   char h1[sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded)];
406   char h2[sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded)];
407
408   if (NULL == s)
409     return NULL;
410   GNUNET_assert (s != NULL);
411   slen = strlen (s);
412   pos = strlen (GNUNET_FS_URI_CHK_PREFIX);
413   if ((slen < pos + 2 * sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) + 1) ||
414       (0 != strncmp (s, GNUNET_FS_URI_CHK_PREFIX, pos)))
415     return NULL;                /* not a CHK URI */
416   if ((s[pos + sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) - 1] != '.') ||
417       (s[pos + sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) * 2 - 1] != '.'))
418   {
419     *emsg = GNUNET_strdup (_("Malformed CHK URI"));
420     return NULL;
421   }
422   memcpy (h1, &s[pos], sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded));
423   h1[sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) - 1] = '\0';
424   memcpy (h2, &s[pos + sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded)],
425           sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded));
426   h2[sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) - 1] = '\0';
427
428   if ((GNUNET_OK != GNUNET_CRYPTO_hash_from_string (h1, &fi.chk.key)) ||
429       (GNUNET_OK != GNUNET_CRYPTO_hash_from_string (h2, &fi.chk.query)) ||
430       (1 !=
431        SSCANF (&s[pos + sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) * 2],
432                "%llu", &flen)))
433   {
434     *emsg = GNUNET_strdup (_("Malformed CHK URI"));
435     return NULL;
436   }
437   fi.file_length = GNUNET_htonll (flen);
438   ret = GNUNET_new (struct GNUNET_FS_Uri);
439   ret->type = GNUNET_FS_URI_CHK;
440   ret->data.chk = fi;
441   return ret;
442 }
443
444
445 /**
446  * Convert a character back to the binary value
447  * that it represents (given base64-encoding).
448  *
449  * @param a character to convert
450  * @return offset in the "tbl" array
451  */
452 static unsigned int
453 c2v (unsigned char a)
454 {
455   if ((a >= '0') && (a <= '9'))
456     return a - '0';
457   if ((a >= 'A') && (a <= 'Z'))
458     return (a - 'A' + 10);
459   if ((a >= 'a') && (a <= 'z'))
460     return (a - 'a' + 36);
461   if (a == '_')
462     return 62;
463   if (a == '=')
464     return 63;
465   return -1;
466 }
467
468
469 /**
470  * Convert string back to binary data.
471  *
472  * @param input '\\0'-terminated string
473  * @param data where to write binary data
474  * @param size how much data should be converted
475  * @return number of characters processed from input,
476  *        -1 on error
477  */
478 static int
479 enc2bin (const char *input, void *data, size_t size)
480 {
481   size_t len;
482   size_t pos;
483   unsigned int bits;
484   unsigned int hbits;
485
486   len = size * 8 / 6;
487   if (((size * 8) % 6) != 0)
488     len++;
489   if (strlen (input) < len)
490     return -1;                  /* error! */
491   bits = 0;
492   hbits = 0;
493   len = 0;
494   for (pos = 0; pos < size; pos++)
495   {
496     while (hbits < 8)
497     {
498       bits |= (c2v (input[len++]) << hbits);
499       hbits += 6;
500     }
501     (((unsigned char *) data)[pos]) = (unsigned char) bits;
502     bits >>= 8;
503     hbits -= 8;
504   }
505   return len;
506 }
507
508
509 GNUNET_NETWORK_STRUCT_BEGIN
510 /**
511  * Structure that defines how the contents of a location URI must be
512  * assembled in memory to create or verify the signature of a location
513  * URI.
514  */
515 struct LocUriAssembly
516 {
517   /**
518    * What is being signed (rest of this struct).
519    */
520   struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
521
522   /**
523    * Expiration time of the offer.
524    */
525   struct GNUNET_TIME_AbsoluteNBO exptime;
526
527   /**
528    * File being offered.
529    */ 
530   struct FileIdentifier fi;
531
532   /**
533    * Peer offering the file.
534    */ 
535   struct GNUNET_PeerIdentity peer;
536
537 };
538 GNUNET_NETWORK_STRUCT_END
539
540
541 #define GNUNET_FS_URI_LOC_PREFIX GNUNET_FS_URI_PREFIX GNUNET_FS_URI_LOC_INFIX
542
543 /**
544  * Parse a LOC URI.
545  * Also verifies validity of the location URI.
546  *
547  * @param s an uri string
548  * @param emsg where to store the parser error message (if any)
549  * @return NULL on error, valid LOC URI otherwise
550  */
551 static struct GNUNET_FS_Uri *
552 uri_loc_parse (const char *s, char **emsg)
553 {
554   struct GNUNET_FS_Uri *uri;
555   char h1[sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded)];
556   char h2[sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded)];
557   unsigned int pos;
558   unsigned int npos;
559   unsigned long long exptime;
560   unsigned long long flen;
561   struct GNUNET_TIME_Absolute et;
562   struct GNUNET_CRYPTO_EccSignature sig;
563   struct LocUriAssembly ass;
564   int ret;
565   size_t slen;
566
567   GNUNET_assert (s != NULL);
568   slen = strlen (s);
569   pos = strlen (GNUNET_FS_URI_LOC_PREFIX);
570   if ((slen < pos + 2 * sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) + 1) ||
571       (0 != strncmp (s, GNUNET_FS_URI_LOC_PREFIX, pos)))
572     return NULL;                /* not an SKS URI */
573   if ((s[pos + sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) - 1] != '.') ||
574       (s[pos + sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) * 2 - 1] != '.'))
575   {
576     *emsg = GNUNET_strdup (_("SKS URI malformed"));
577     return NULL;
578   }
579   memcpy (h1, &s[pos], sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded));
580   h1[sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) - 1] = '\0';
581   memcpy (h2, &s[pos + sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded)],
582           sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded));
583   h2[sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) - 1] = '\0';
584
585   if ((GNUNET_OK != GNUNET_CRYPTO_hash_from_string (h1, &ass.fi.chk.key)) ||
586       (GNUNET_OK != GNUNET_CRYPTO_hash_from_string (h2, &ass.fi.chk.query)) ||
587       (1 !=
588        SSCANF (&s[pos + sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) * 2],
589                "%llu", &flen)))
590   {
591     *emsg = GNUNET_strdup (_("LOC URI malformed"));
592     return NULL;
593   }
594   ass.fi.file_length = GNUNET_htonll (flen);
595
596   npos = pos + sizeof (struct GNUNET_CRYPTO_HashAsciiEncoded) * 2;
597   while ((s[npos] != '\0') && (s[npos] != '.'))
598     npos++;
599   if (s[npos] == '\0')
600   {
601     *emsg = GNUNET_strdup (_("LOC URI malformed"));
602     goto ERR;
603   }
604   npos++;
605   ret =
606       enc2bin (&s[npos], &ass.peer,
607                sizeof (struct GNUNET_CRYPTO_EccPublicSignKey));
608   if (ret == -1)
609   {
610     *emsg =
611         GNUNET_strdup (_("LOC URI malformed (could not decode public key)"));
612     goto ERR;
613   }
614   npos += ret;
615   if (s[npos++] != '.')
616   {
617     *emsg = GNUNET_strdup (_("SKS URI malformed (could not find signature)"));
618     goto ERR;
619   }
620   ret = enc2bin (&s[npos], &sig, sizeof (struct GNUNET_CRYPTO_EccSignature));
621   if (ret == -1)
622   {
623     *emsg = GNUNET_strdup (_("SKS URI malformed (could not decode signature)"));
624     goto ERR;
625   }
626   npos += ret;
627   if (s[npos++] != '.')
628   {
629     *emsg = GNUNET_strdup (_("SKS URI malformed"));
630     goto ERR;
631   }
632   if (1 != SSCANF (&s[npos], "%llu", &exptime))
633   {
634     *emsg =
635         GNUNET_strdup (_
636                        ("SKS URI malformed (could not parse expiration time)"));
637     goto ERR;
638   }
639   ass.purpose.size = htonl (sizeof (struct LocUriAssembly));
640   ass.purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_PEER_PLACEMENT);
641   et.abs_value_us = exptime * 1000LL * 1000LL;
642   ass.exptime = GNUNET_TIME_absolute_hton (et);
643   if (GNUNET_OK !=
644       GNUNET_CRYPTO_ecc_verify (GNUNET_SIGNATURE_PURPOSE_PEER_PLACEMENT,
645                                 &ass.purpose, &sig, &ass.peer.public_key))
646   {
647     *emsg =
648         GNUNET_strdup (_("SKS URI malformed (signature failed validation)"));
649     goto ERR;
650   }
651   uri = GNUNET_new (struct GNUNET_FS_Uri);
652   uri->type = GNUNET_FS_URI_LOC;
653   uri->data.loc.fi = ass.fi;
654   uri->data.loc.peer = ass.peer;
655   uri->data.loc.expirationTime = et;
656   uri->data.loc.contentSignature = sig;
657
658   return uri;
659 ERR:
660   return NULL;
661 }
662
663
664 /**
665  * Convert a UTF-8 String to a URI.
666  *
667  * @param uri string to parse
668  * @param emsg where to store the parser error message (if any)
669  * @return NULL on error
670  */
671 struct GNUNET_FS_Uri *
672 GNUNET_FS_uri_parse (const char *uri, char **emsg)
673 {
674   struct GNUNET_FS_Uri *ret;
675   char *msg;
676
677   if (NULL == emsg)
678     emsg = &msg;
679   *emsg = NULL;
680   if ((NULL != (ret = uri_chk_parse (uri, emsg))) ||
681       (NULL != (ret = uri_ksk_parse (uri, emsg))) ||
682       (NULL != (ret = uri_sks_parse (uri, emsg))) ||
683       (NULL != (ret = uri_loc_parse (uri, emsg))))
684     return ret;
685   if (NULL == *emsg)
686     *emsg = GNUNET_strdup (_("Unrecognized URI type"));
687   if (emsg == &msg)
688     GNUNET_free (msg);
689   return NULL;
690 }
691
692
693 /**
694  * Free URI.
695  *
696  * @param uri uri to free
697  */
698 void
699 GNUNET_FS_uri_destroy (struct GNUNET_FS_Uri *uri)
700 {
701   unsigned int i;
702
703   GNUNET_assert (uri != NULL);
704   switch (uri->type)
705   {
706   case GNUNET_FS_URI_KSK:
707     for (i = 0; i < uri->data.ksk.keywordCount; i++)
708       GNUNET_free (uri->data.ksk.keywords[i]);
709     GNUNET_array_grow (uri->data.ksk.keywords, uri->data.ksk.keywordCount, 0);
710     break;
711   case GNUNET_FS_URI_SKS:
712     GNUNET_free (uri->data.sks.identifier);
713     break;
714   case GNUNET_FS_URI_LOC:
715     break;
716   default:
717     /* do nothing */
718     break;
719   }
720   GNUNET_free (uri);
721 }
722
723 /**
724  * How many keywords are ANDed in this keyword URI?
725  *
726  * @param uri ksk uri to get the number of keywords from
727  * @return 0 if this is not a keyword URI
728  */
729 unsigned int
730 GNUNET_FS_uri_ksk_get_keyword_count (const struct GNUNET_FS_Uri *uri)
731 {
732   if (uri->type != GNUNET_FS_URI_KSK)
733     return 0;
734   return uri->data.ksk.keywordCount;
735 }
736
737
738 /**
739  * Iterate over all keywords in this keyword URI.
740  *
741  * @param uri ksk uri to get the keywords from
742  * @param iterator function to call on each keyword
743  * @param iterator_cls closure for iterator
744  * @return -1 if this is not a keyword URI, otherwise number of
745  *   keywords iterated over until iterator aborted
746  */
747 int
748 GNUNET_FS_uri_ksk_get_keywords (const struct GNUNET_FS_Uri *uri,
749                                 GNUNET_FS_KeywordIterator iterator,
750                                 void *iterator_cls)
751 {
752   unsigned int i;
753   char *keyword;
754
755   if (uri->type != GNUNET_FS_URI_KSK)
756     return -1;
757   if (iterator == NULL)
758     return uri->data.ksk.keywordCount;
759   for (i = 0; i < uri->data.ksk.keywordCount; i++)
760   {
761     keyword = uri->data.ksk.keywords[i];
762     /* first character of keyword indicates
763      * if it is mandatory or not */
764     if (GNUNET_OK != iterator (iterator_cls, &keyword[1], keyword[0] == '+'))
765       return i;
766   }
767   return i;
768 }
769
770
771 /**
772  * Add the given keyword to the set of keywords represented by the URI.
773  * Does nothing if the keyword is already present.
774  *
775  * @param uri ksk uri to modify
776  * @param keyword keyword to add
777  * @param is_mandatory is this keyword mandatory?
778  */
779 void
780 GNUNET_FS_uri_ksk_add_keyword (struct GNUNET_FS_Uri *uri, const char *keyword,
781                                int is_mandatory)
782 {
783   unsigned int i;
784   const char *old;
785   char *n;
786
787   GNUNET_assert (uri->type == GNUNET_FS_URI_KSK);
788   for (i = 0; i < uri->data.ksk.keywordCount; i++)
789   {
790     old = uri->data.ksk.keywords[i];
791     if (0 == strcmp (&old[1], keyword))
792       return;
793   }
794   GNUNET_asprintf (&n, is_mandatory ? "+%s" : " %s", keyword);
795   GNUNET_array_append (uri->data.ksk.keywords, uri->data.ksk.keywordCount, n);
796 }
797
798
799 /**
800  * Remove the given keyword from the set of keywords represented by the URI.
801  * Does nothing if the keyword is not present.
802  *
803  * @param uri ksk uri to modify
804  * @param keyword keyword to add
805  */
806 void
807 GNUNET_FS_uri_ksk_remove_keyword (struct GNUNET_FS_Uri *uri,
808                                   const char *keyword)
809 {
810   unsigned int i;
811   char *old;
812
813   GNUNET_assert (uri->type == GNUNET_FS_URI_KSK);
814   for (i = 0; i < uri->data.ksk.keywordCount; i++)
815   {
816     old = uri->data.ksk.keywords[i];
817     if (0 == strcmp (&old[1], keyword))
818     {
819       uri->data.ksk.keywords[i] =
820           uri->data.ksk.keywords[uri->data.ksk.keywordCount - 1];
821       GNUNET_array_grow (uri->data.ksk.keywords, uri->data.ksk.keywordCount,
822                          uri->data.ksk.keywordCount - 1);
823       GNUNET_free (old);
824       return;
825     }
826   }
827 }
828
829
830 /**
831  * Obtain the identity of the peer offering the data
832  *
833  * @param uri the location URI to inspect
834  * @param peer where to store the identify of the peer (presumably) offering the content
835  * @return #GNUNET_SYSERR if this is not a location URI, otherwise #GNUNET_OK
836  */
837 int
838 GNUNET_FS_uri_loc_get_peer_identity (const struct GNUNET_FS_Uri *uri,
839                                      struct GNUNET_PeerIdentity *peer)
840 {
841   if (uri->type != GNUNET_FS_URI_LOC)
842     return GNUNET_SYSERR;
843   *peer = uri->data.loc.peer;
844   return GNUNET_OK;
845 }
846
847
848 /**
849  * Obtain the expiration of the LOC URI.
850  *
851  * @param uri location URI to get the expiration from
852  * @return expiration time of the URI
853  */
854 struct GNUNET_TIME_Absolute
855 GNUNET_FS_uri_loc_get_expiration (const struct GNUNET_FS_Uri *uri)
856 {
857   GNUNET_assert (uri->type == GNUNET_FS_URI_LOC);
858   return uri->data.loc.expirationTime;
859 }
860
861
862
863 /**
864  * Obtain the URI of the content itself.
865  *
866  * @param uri location URI to get the content URI from
867  * @return NULL if argument is not a location URI
868  */
869 struct GNUNET_FS_Uri *
870 GNUNET_FS_uri_loc_get_uri (const struct GNUNET_FS_Uri *uri)
871 {
872   struct GNUNET_FS_Uri *ret;
873
874   if (uri->type != GNUNET_FS_URI_LOC)
875     return NULL;
876   ret = GNUNET_new (struct GNUNET_FS_Uri);
877   ret->type = GNUNET_FS_URI_CHK;
878   ret->data.chk = uri->data.loc.fi;
879   return ret;
880 }
881
882
883 /**
884  * Construct a location URI (this peer will be used for the location).
885  *
886  * @param baseUri content offered by the sender
887  * @param cfg configuration information (used to find our hostkey)
888  * @param expiration_time how long will the content be offered?
889  * @return the location URI, NULL on error
890  */
891 struct GNUNET_FS_Uri *
892 GNUNET_FS_uri_loc_create (const struct GNUNET_FS_Uri *baseUri,
893                           const struct GNUNET_CONFIGURATION_Handle *cfg,
894                           struct GNUNET_TIME_Absolute expiration_time)
895 {
896   struct GNUNET_FS_Uri *uri;
897   struct GNUNET_CRYPTO_EccPrivateKey *my_private_key;
898   struct GNUNET_CRYPTO_EccPublicSignKey my_public_key;
899   char *keyfile;
900   struct LocUriAssembly ass;
901   struct GNUNET_TIME_Absolute et;
902
903   if (baseUri->type != GNUNET_FS_URI_CHK)
904     return NULL;
905   if (GNUNET_OK !=
906       GNUNET_CONFIGURATION_get_value_filename (cfg, "PEER", "PRIVATE_KEY",
907                                                &keyfile))
908   {
909     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
910                 _("Lacking key configuration settings.\n"));
911     return NULL;
912   }
913   if (NULL == (my_private_key = GNUNET_CRYPTO_ecc_key_create_from_file (keyfile)))
914   {
915     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
916                 _("Could not access hostkey file `%s'.\n"), keyfile);
917     GNUNET_free (keyfile);
918     return NULL;
919   }
920   GNUNET_free (keyfile);
921   /* we round expiration time to full seconds for SKS URIs */
922   et.abs_value_us = (expiration_time.abs_value_us / 1000000LL) * 1000000LL;
923   GNUNET_CRYPTO_ecc_key_get_public_for_signature (my_private_key, &my_public_key);
924   ass.purpose.size = htonl (sizeof (struct LocUriAssembly));
925   ass.purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_PEER_PLACEMENT);
926   ass.exptime = GNUNET_TIME_absolute_hton (et);
927   ass.fi = baseUri->data.chk;
928   ass.peer.public_key = my_public_key;
929   uri = GNUNET_new (struct GNUNET_FS_Uri);
930   uri->type = GNUNET_FS_URI_LOC;
931   uri->data.loc.fi = baseUri->data.chk;
932   uri->data.loc.expirationTime = et;
933   uri->data.loc.peer.public_key = my_public_key;
934   GNUNET_assert (GNUNET_OK ==
935                  GNUNET_CRYPTO_ecc_sign (my_private_key, &ass.purpose,
936                                          &uri->data.loc.contentSignature));
937   GNUNET_free (my_private_key);
938   return uri;
939 }
940
941
942 /**
943  * Create an SKS URI from a namespace ID and an identifier.
944  *
945  * @param ns namespace ID
946  * @param id identifier
947  * @return an FS URI for the given namespace and identifier
948  */
949 struct GNUNET_FS_Uri *
950 GNUNET_FS_uri_sks_create (const struct GNUNET_CRYPTO_EccPublicSignKey *ns, 
951                           const char *id)
952 {
953   struct GNUNET_FS_Uri *ns_uri;
954
955   ns_uri = GNUNET_new (struct GNUNET_FS_Uri);
956   ns_uri->type = GNUNET_FS_URI_SKS;
957   ns_uri->data.sks.ns = *ns;
958   ns_uri->data.sks.identifier = GNUNET_strdup (id);
959   return ns_uri;
960 }
961
962
963 /**
964  * Merge the sets of keywords from two KSK URIs.
965  * (useful for merging the canonicalized keywords with
966  * the original keywords for sharing).
967  *
968  * @param u1 first uri
969  * @param u2 second uri
970  * @return merged URI, NULL on error
971  */
972 struct GNUNET_FS_Uri *
973 GNUNET_FS_uri_ksk_merge (const struct GNUNET_FS_Uri *u1,
974                          const struct GNUNET_FS_Uri *u2)
975 {
976   struct GNUNET_FS_Uri *ret;
977   unsigned int kc;
978   unsigned int i;
979   unsigned int j;
980   int found;
981   const char *kp;
982   char **kl;
983
984   if ((u1 == NULL) && (u2 == NULL))
985     return NULL;
986   if (u1 == NULL)
987     return GNUNET_FS_uri_dup (u2);
988   if (u2 == NULL)
989     return GNUNET_FS_uri_dup (u1);
990   if ((u1->type != GNUNET_FS_URI_KSK) || (u2->type != GNUNET_FS_URI_KSK))
991   {
992     GNUNET_break (0);
993     return NULL;
994   }
995   kc = u1->data.ksk.keywordCount;
996   kl = GNUNET_malloc ((kc + u2->data.ksk.keywordCount) * sizeof (char *));
997   for (i = 0; i < u1->data.ksk.keywordCount; i++)
998     kl[i] = GNUNET_strdup (u1->data.ksk.keywords[i]);
999   for (i = 0; i < u2->data.ksk.keywordCount; i++)
1000   {
1001     kp = u2->data.ksk.keywords[i];
1002     found = 0;
1003     for (j = 0; j < u1->data.ksk.keywordCount; j++)
1004       if (0 == strcmp (kp + 1, kl[j] + 1))
1005       {
1006         found = 1;
1007         if (kp[0] == '+')
1008           kl[j][0] = '+';
1009         break;
1010       }
1011     if (0 == found)
1012       kl[kc++] = GNUNET_strdup (kp);
1013   }
1014   ret = GNUNET_new (struct GNUNET_FS_Uri);
1015   ret->type = GNUNET_FS_URI_KSK;
1016   ret->data.ksk.keywordCount = kc;
1017   ret->data.ksk.keywords = kl;
1018   return ret;
1019 }
1020
1021
1022 /**
1023  * Duplicate URI.
1024  *
1025  * @param uri the URI to duplicate
1026  * @return copy of the URI
1027  */
1028 struct GNUNET_FS_Uri *
1029 GNUNET_FS_uri_dup (const struct GNUNET_FS_Uri *uri)
1030 {
1031   struct GNUNET_FS_Uri *ret;
1032   unsigned int i;
1033
1034   if (uri == NULL)
1035     return NULL;
1036   ret = GNUNET_new (struct GNUNET_FS_Uri);
1037   memcpy (ret, uri, sizeof (struct GNUNET_FS_Uri));
1038   switch (ret->type)
1039   {
1040   case GNUNET_FS_URI_KSK:
1041     if (ret->data.ksk.keywordCount >=
1042         GNUNET_MAX_MALLOC_CHECKED / sizeof (char *))
1043     {
1044       GNUNET_break (0);
1045       GNUNET_free (ret);
1046       return NULL;
1047     }
1048     if (ret->data.ksk.keywordCount > 0)
1049     {
1050       ret->data.ksk.keywords =
1051           GNUNET_malloc (ret->data.ksk.keywordCount * sizeof (char *));
1052       for (i = 0; i < ret->data.ksk.keywordCount; i++)
1053         ret->data.ksk.keywords[i] = GNUNET_strdup (uri->data.ksk.keywords[i]);
1054     }
1055     else
1056       ret->data.ksk.keywords = NULL;    /* just to be sure */
1057     break;
1058   case GNUNET_FS_URI_SKS:
1059     ret->data.sks.identifier = GNUNET_strdup (uri->data.sks.identifier);
1060     break;
1061   case GNUNET_FS_URI_LOC:
1062     break;
1063   default:
1064     break;
1065   }
1066   return ret;
1067 }
1068
1069
1070 /**
1071  * Create an FS URI from a single user-supplied string of keywords.
1072  * The string is broken up at spaces into individual keywords.
1073  * Keywords that start with "+" are mandatory.  Double-quotes can
1074  * be used to prevent breaking up strings at spaces (and also
1075  * to specify non-mandatory keywords starting with "+").
1076  *
1077  * Keywords must contain a balanced number of double quotes and
1078  * double quotes can not be used in the actual keywords (for
1079  * example, the string '""foo bar""' will be turned into two
1080  * "OR"ed keywords 'foo' and 'bar', not into '"foo bar"'.
1081  *
1082  * @param keywords the keyword string
1083  * @param emsg where to store an error message
1084  * @return an FS URI for the given keywords, NULL
1085  *  if keywords is not legal (i.e. empty).
1086  */
1087 struct GNUNET_FS_Uri *
1088 GNUNET_FS_uri_ksk_create (const char *keywords, char **emsg)
1089 {
1090   char **keywordarr;
1091   unsigned int num_Words;
1092   int inWord;
1093   char *pos;
1094   struct GNUNET_FS_Uri *uri;
1095   char *searchString;
1096   int saw_quote;
1097
1098   if (keywords == NULL)
1099   {
1100     *emsg = GNUNET_strdup (_("No keywords specified!\n"));
1101     GNUNET_break (0);
1102     return NULL;
1103   }
1104   searchString = GNUNET_strdup (keywords);
1105   num_Words = 0;
1106   inWord = 0;
1107   saw_quote = 0;
1108   pos = searchString;
1109   while ('\0' != *pos)
1110   {
1111     if ((saw_quote == 0) && (isspace ((unsigned char) *pos)))
1112     {
1113       inWord = 0;
1114     }
1115     else if (0 == inWord)
1116     {
1117       inWord = 1;
1118       ++num_Words;
1119     }
1120     if ('"' == *pos)
1121       saw_quote = (saw_quote + 1) % 2;
1122     pos++;
1123   }
1124   if (num_Words == 0)
1125   {
1126     GNUNET_free (searchString);
1127     *emsg = GNUNET_strdup (_("No keywords specified!\n"));
1128     return NULL;
1129   }
1130   if (saw_quote != 0)
1131   {
1132     GNUNET_free (searchString);
1133     *emsg = GNUNET_strdup (_("Number of double-quotes not balanced!\n"));
1134     return NULL;
1135   }
1136   keywordarr = GNUNET_malloc (num_Words * sizeof (char *));
1137   num_Words = 0;
1138   inWord = 0;
1139   pos = searchString;
1140   while ('\0' != *pos)
1141   {
1142     if ((saw_quote == 0) && (isspace ((unsigned char) *pos)))
1143     {
1144       inWord = 0;
1145       *pos = '\0';
1146     }
1147     else if (0 == inWord)
1148     {
1149       keywordarr[num_Words] = pos;
1150       inWord = 1;
1151       ++num_Words;
1152     }
1153     if ('"' == *pos)
1154       saw_quote = (saw_quote + 1) % 2;
1155     pos++;
1156   }
1157   uri =
1158       GNUNET_FS_uri_ksk_create_from_args (num_Words,
1159                                           (const char **) keywordarr);
1160   GNUNET_free (keywordarr);
1161   GNUNET_free (searchString);
1162   return uri;
1163 }
1164
1165
1166 /**
1167  * Create an FS URI from a user-supplied command line of keywords.
1168  * Arguments should start with "+" to indicate mandatory
1169  * keywords.
1170  *
1171  * @param argc number of keywords
1172  * @param argv keywords (double quotes are not required for
1173  *             keywords containing spaces; however, double
1174  *             quotes are required for keywords starting with
1175  *             "+"); there is no mechanism for having double
1176  *             quotes in the actual keywords (if the user
1177  *             did specifically specify double quotes, the
1178  *             caller should convert each double quote
1179  *             into two single quotes).
1180  * @return an FS URI for the given keywords, NULL
1181  *  if keywords is not legal (i.e. empty).
1182  */
1183 struct GNUNET_FS_Uri *
1184 GNUNET_FS_uri_ksk_create_from_args (unsigned int argc, const char **argv)
1185 {
1186   unsigned int i;
1187   struct GNUNET_FS_Uri *uri;
1188   const char *keyword;
1189   char *val;
1190   const char *r;
1191   char *w;
1192   char *emsg;
1193
1194   if (argc == 0)
1195     return NULL;
1196   /* allow URI to be given as one and only keyword and
1197    * handle accordingly */
1198   emsg = NULL;
1199   if ((argc == 1) && (strlen (argv[0]) > strlen (GNUNET_FS_URI_PREFIX)) &&
1200       (0 ==
1201        strncmp (argv[0], GNUNET_FS_URI_PREFIX, strlen (GNUNET_FS_URI_PREFIX)))
1202       && (NULL != (uri = GNUNET_FS_uri_parse (argv[0], &emsg))))
1203     return uri;
1204   GNUNET_free_non_null (emsg);
1205   uri = GNUNET_new (struct GNUNET_FS_Uri);
1206   uri->type = GNUNET_FS_URI_KSK;
1207   uri->data.ksk.keywordCount = argc;
1208   uri->data.ksk.keywords = GNUNET_malloc (argc * sizeof (char *));
1209   for (i = 0; i < argc; i++)
1210   {
1211     keyword = argv[i];
1212     if (keyword[0] == '+')
1213       val = GNUNET_strdup (keyword);
1214     else
1215       GNUNET_asprintf (&val, " %s", keyword);
1216     r = val;
1217     w = val;
1218     while ('\0' != *r)
1219     {
1220       if ('"' == *r)
1221         r++;
1222       else
1223         *(w++) = *(r++);
1224     }
1225     *w = '\0';
1226     uri->data.ksk.keywords[i] = val;
1227   }
1228   return uri;
1229 }
1230
1231
1232 /**
1233  * Test if two URIs are equal.
1234  *
1235  * @param u1 one of the URIs
1236  * @param u2 the other URI
1237  * @return GNUNET_YES if the URIs are equal
1238  */
1239 int
1240 GNUNET_FS_uri_test_equal (const struct GNUNET_FS_Uri *u1,
1241                           const struct GNUNET_FS_Uri *u2)
1242 {
1243   int ret;
1244   unsigned int i;
1245   unsigned int j;
1246
1247   GNUNET_assert (u1 != NULL);
1248   GNUNET_assert (u2 != NULL);
1249   if (u1->type != u2->type)
1250     return GNUNET_NO;
1251   switch (u1->type)
1252   {
1253   case GNUNET_FS_URI_CHK:
1254     if (0 ==
1255         memcmp (&u1->data.chk, &u2->data.chk, sizeof (struct FileIdentifier)))
1256       return GNUNET_YES;
1257     return GNUNET_NO;
1258   case GNUNET_FS_URI_SKS:
1259     if ((0 ==
1260          memcmp (&u1->data.sks.ns, &u2->data.sks.ns,
1261                  sizeof (struct GNUNET_CRYPTO_EccPublicSignKey))) &&
1262         (0 == strcmp (u1->data.sks.identifier, u2->data.sks.identifier)))
1263
1264       return GNUNET_YES;
1265     return GNUNET_NO;
1266   case GNUNET_FS_URI_KSK:
1267     if (u1->data.ksk.keywordCount != u2->data.ksk.keywordCount)
1268       return GNUNET_NO;
1269     for (i = 0; i < u1->data.ksk.keywordCount; i++)
1270     {
1271       ret = GNUNET_NO;
1272       for (j = 0; j < u2->data.ksk.keywordCount; j++)
1273       {
1274         if (0 == strcmp (u1->data.ksk.keywords[i], u2->data.ksk.keywords[j]))
1275         {
1276           ret = GNUNET_YES;
1277           break;
1278         }
1279       }
1280       if (ret == GNUNET_NO)
1281         return GNUNET_NO;
1282     }
1283     return GNUNET_YES;
1284   case GNUNET_FS_URI_LOC:
1285     if (memcmp
1286         (&u1->data.loc, &u2->data.loc,
1287          sizeof (struct FileIdentifier) +
1288          sizeof (struct GNUNET_CRYPTO_EccPublicSignKey) +
1289          sizeof (struct GNUNET_TIME_Absolute) + sizeof (unsigned short) +
1290          sizeof (unsigned short)) != 0)
1291       return GNUNET_NO;
1292     return GNUNET_YES;
1293   default:
1294     return GNUNET_NO;
1295   }
1296 }
1297
1298
1299 /**
1300  * Is this a namespace URI?
1301  *
1302  * @param uri the uri to check
1303  * @return GNUNET_YES if this is an SKS uri
1304  */
1305 int
1306 GNUNET_FS_uri_test_sks (const struct GNUNET_FS_Uri *uri)
1307 {
1308   return uri->type == GNUNET_FS_URI_SKS;
1309 }
1310
1311
1312 /**
1313  * Get the ID of a namespace from the given
1314  * namespace URI.
1315  *
1316  * @param uri the uri to get the namespace ID from
1317  * @param pseudonym where to store the ID of the namespace
1318  * @return GNUNET_OK on success
1319  */
1320 int
1321 GNUNET_FS_uri_sks_get_namespace (const struct GNUNET_FS_Uri *uri,
1322                                  struct GNUNET_CRYPTO_EccPublicSignKey *pseudonym)
1323 {
1324   if (!GNUNET_FS_uri_test_sks (uri))
1325   {
1326     GNUNET_break (0);
1327     return GNUNET_SYSERR;
1328   }
1329   *pseudonym = uri->data.sks.ns;
1330   return GNUNET_OK;
1331 }
1332
1333
1334 /**
1335  * Get the content identifier of an SKS URI.
1336  *
1337  * @param uri the sks uri
1338  * @return NULL on error (not a valid SKS URI)
1339  */
1340 char *
1341 GNUNET_FS_uri_sks_get_content_id (const struct GNUNET_FS_Uri *uri)
1342 {
1343   if (!GNUNET_FS_uri_test_sks (uri))
1344   {
1345     GNUNET_break (0);
1346     return NULL;
1347   }
1348   return GNUNET_strdup (uri->data.sks.identifier);
1349 }
1350
1351
1352 /**
1353  * Is this a keyword URI?
1354  *
1355  * @param uri the uri
1356  * @return #GNUNET_YES if this is a KSK uri
1357  */
1358 int
1359 GNUNET_FS_uri_test_ksk (const struct GNUNET_FS_Uri *uri)
1360 {
1361 #if EXTRA_CHECKS
1362   unsigned int i;
1363
1364   if (uri->type == GNUNET_FS_URI_KSK)
1365   {
1366     for (i=0;i < uri->data.ksk.keywordCount; i++)
1367       GNUNET_assert (uri->data.ksk.keywords[i] != NULL);
1368   }
1369 #endif
1370   return uri->type == GNUNET_FS_URI_KSK;
1371 }
1372
1373
1374 /**
1375  * Is this a file (or directory) URI?
1376  *
1377  * @param uri the uri to check
1378  * @return GNUNET_YES if this is a CHK uri
1379  */
1380 int
1381 GNUNET_FS_uri_test_chk (const struct GNUNET_FS_Uri *uri)
1382 {
1383   return uri->type == GNUNET_FS_URI_CHK;
1384 }
1385
1386
1387 /**
1388  * What is the size of the file that this URI
1389  * refers to?
1390  *
1391  * @param uri the CHK URI to inspect
1392  * @return size of the file as specified in the CHK URI
1393  */
1394 uint64_t
1395 GNUNET_FS_uri_chk_get_file_size (const struct GNUNET_FS_Uri * uri)
1396 {
1397   switch (uri->type)
1398   {
1399   case GNUNET_FS_URI_CHK:
1400     return GNUNET_ntohll (uri->data.chk.file_length);
1401   case GNUNET_FS_URI_LOC:
1402     return GNUNET_ntohll (uri->data.loc.fi.file_length);
1403   default:
1404     GNUNET_assert (0);
1405   }
1406   return 0;                     /* unreachable */
1407 }
1408
1409
1410 /**
1411  * Is this a location URI?
1412  *
1413  * @param uri the uri to check
1414  * @return GNUNET_YES if this is a LOC uri
1415  */
1416 int
1417 GNUNET_FS_uri_test_loc (const struct GNUNET_FS_Uri *uri)
1418 {
1419   return uri->type == GNUNET_FS_URI_LOC;
1420 }
1421
1422
1423 /**
1424  * Add a keyword as non-mandatory (with ' '-prefix) to the
1425  * given keyword list at offset 'index'.  The array is
1426  * guaranteed to be long enough.
1427  * 
1428  * @param s keyword to add
1429  * @param array array to add the keyword to
1430  * @param index offset where to add the keyword
1431  */
1432 static void
1433 insert_non_mandatory_keyword (const char *s, char **array, int index)
1434 {
1435   char *nkword;
1436   GNUNET_asprintf (&nkword, " %s", /* space to mark as 'non mandatory' */ s);
1437   array[index] = nkword;
1438 }
1439
1440
1441 /**
1442  * Test if the given keyword 's' is already present in the 
1443  * given array, ignoring the '+'-mandatory prefix in the array.
1444  *
1445  * @param s keyword to test
1446  * @param array keywords to test against, with ' ' or '+' prefix to ignore
1447  * @param array_length length of the array
1448  * @return GNUNET_YES if the keyword exists, GNUNET_NO if not
1449  */ 
1450 static int
1451 find_duplicate (const char *s, const char **array, int array_length)
1452 {
1453   int j;
1454
1455   for (j = array_length - 1; j >= 0; j--)
1456     if (0 == strcmp (&array[j][1], s))
1457       return GNUNET_YES;
1458   return GNUNET_NO;
1459 }
1460
1461
1462 /**
1463  * FIXME: comment
1464  */
1465 static char *
1466 normalize_metadata (enum EXTRACTOR_MetaFormat format, const char *data,
1467     size_t data_len)
1468 {
1469   uint8_t *free_str = NULL;
1470   uint8_t *str_to_normalize = (uint8_t *) data;
1471   uint8_t *normalized;
1472   size_t r_len;
1473   if (str_to_normalize == NULL)
1474     return NULL;
1475   /* Don't trust libextractor */
1476   if (format == EXTRACTOR_METAFORMAT_UTF8)
1477   {
1478     free_str = (uint8_t *) u8_check ((const uint8_t *) data, data_len);
1479     if (free_str == NULL)
1480       free_str = NULL;
1481     else
1482       format = EXTRACTOR_METAFORMAT_C_STRING;
1483   }
1484   if (format == EXTRACTOR_METAFORMAT_C_STRING)
1485   {
1486     free_str = u8_strconv_from_encoding (data, locale_charset (), iconveh_escape_sequence);
1487     if (free_str == NULL)
1488       return NULL;
1489   }
1490
1491   normalized = u8_tolower (str_to_normalize, strlen ((char *) str_to_normalize), NULL, UNINORM_NFD, NULL, &r_len);
1492   /* free_str is allocated by libunistring internally, use free() */
1493   if (free_str != NULL)
1494     free (free_str);
1495   if (normalized != NULL)
1496   {
1497     /* u8_tolower allocates a non-NULL-terminated string! */
1498     free_str = GNUNET_malloc (r_len + 1);
1499     memcpy (free_str, normalized, r_len);
1500     free_str[r_len] = '\0';
1501     free (normalized);
1502     normalized = free_str;
1503   }
1504   return (char *) normalized;
1505 }
1506
1507 /**
1508  * Counts the number of UTF-8 characters (not bytes) in the string,
1509  * returns that count.
1510  */
1511 static size_t
1512 u8_strcount (const uint8_t *s)
1513 {
1514   size_t count;
1515   ucs4_t c;
1516   GNUNET_assert (s != NULL);
1517   if (s[0] == 0)
1518     return 0;
1519   for (count = 0; s != NULL; count++)
1520     s = u8_next (&c, s);
1521   return count - 1;
1522 }
1523
1524
1525 /**
1526  * Break the filename up by matching [], () and {} pairs to make
1527  * keywords. In case of nesting parentheses only the inner pair counts.
1528  * You can't escape parentheses to scan something like "[blah\{foo]" to
1529  * make a "blah{foo" keyword, this function is only a heuristic!
1530  *
1531  * @param s string to break down.
1532  * @param array array to fill with enclosed tokens. If NULL, then tokens
1533  *        are only counted.
1534  * @param index index at which to start filling the array (entries prior
1535  *        to it are used to check for duplicates). ignored if array == NULL.
1536  * @return number of tokens counted (including duplicates), or number of
1537  *         tokens extracted (excluding duplicates). 0 if there are no
1538  *         matching parens in the string (when counting), or when all tokens 
1539  *         were duplicates (when extracting).
1540  */
1541 static int
1542 get_keywords_from_parens (const char *s, char **array, int index)
1543 {
1544   int count = 0;
1545   char *open_paren;
1546   char *close_paren;
1547   char *ss;
1548   char tmp;
1549
1550   if (NULL == s)
1551     return 0;
1552   ss = GNUNET_strdup (s);
1553   open_paren = ss - 1;
1554   while (NULL != (open_paren = strpbrk (open_paren + 1, "[{(")))
1555   {
1556     int match = 0;
1557
1558     close_paren = strpbrk (open_paren + 1, "]})");
1559     if (NULL == close_paren)
1560       continue;
1561     switch (open_paren[0])
1562     {
1563     case '[':
1564       if (']' == close_paren[0])
1565         match = 1;
1566       break;
1567     case '{':
1568       if ('}' == close_paren[0])
1569         match = 1;
1570       break;
1571     case '(':
1572       if (')' == close_paren[0])
1573         match = 1;
1574       break;
1575     default:
1576       break;
1577     }
1578     if (match && (close_paren - open_paren > 1))
1579     {
1580       tmp = close_paren[0];
1581       close_paren[0] = '\0';
1582       /* Keywords must be at least 3 characters long */
1583       if (u8_strcount ((const uint8_t *) &open_paren[1]) <= 2)
1584       {
1585         close_paren[0] = tmp;
1586         continue;
1587       }
1588       if (NULL != array)
1589       {
1590         char *normalized;
1591         if (GNUNET_NO == find_duplicate ((const char *) &open_paren[1],
1592             (const char **) array, index + count))
1593         {
1594           insert_non_mandatory_keyword ((const char *) &open_paren[1], array,
1595                                         index + count);
1596           count++;
1597         }
1598         normalized = normalize_metadata (EXTRACTOR_METAFORMAT_UTF8,
1599             &open_paren[1], close_paren - &open_paren[1]);
1600         if (normalized != NULL)
1601         {
1602           if (GNUNET_NO == find_duplicate ((const char *) normalized,
1603               (const char **) array, index + count))
1604           {
1605             insert_non_mandatory_keyword ((const char *) normalized, array,
1606                                           index + count);
1607             count++;
1608           }
1609           GNUNET_free (normalized);
1610         }
1611       }
1612       else
1613         count++;
1614       close_paren[0] = tmp;
1615     }   
1616   }
1617   GNUNET_free (ss);
1618   return count;
1619 }
1620
1621
1622 /**
1623  * Where to break up keywords
1624  */
1625 #define TOKENS "_. /-!?#&+@\"\'\\;:,()[]{}$<>|"
1626
1627 /**
1628  * Break the filename up by TOKENS to make
1629  * keywords.
1630  *
1631  * @param s string to break down.
1632  * @param array array to fill with tokens. If NULL, then tokens are only
1633  *        counted.
1634  * @param index index at which to start filling the array (entries prior
1635  *        to it are used to check for duplicates). ignored if array == NULL.
1636  * @return number of tokens (>1) counted (including duplicates), or number of
1637  *         tokens extracted (excluding duplicates). 0 if there are no
1638  *         separators in the string (when counting), or when all tokens were
1639  *         duplicates (when extracting).
1640  */
1641 static int
1642 get_keywords_from_tokens (const char *s, char **array, int index)
1643 {
1644   char *p;
1645   char *ss;
1646   int seps = 0;
1647
1648   ss = GNUNET_strdup (s);
1649   for (p = strtok (ss, TOKENS); p != NULL; p = strtok (NULL, TOKENS))
1650   {
1651     /* Keywords must be at least 3 characters long */
1652     if (u8_strcount ((const uint8_t *) p) <= 2)
1653       continue;
1654     if (NULL != array)
1655     {
1656       char *normalized;
1657       if (GNUNET_NO == find_duplicate (p, (const char **) array, index + seps))
1658       {
1659         insert_non_mandatory_keyword (p, array,
1660                                       index + seps);
1661         seps++;
1662       }
1663       normalized = normalize_metadata (EXTRACTOR_METAFORMAT_UTF8,
1664           p, strlen (p));
1665       if (normalized != NULL)
1666       {
1667         if (GNUNET_NO == find_duplicate ((const char *) normalized,
1668             (const char **) array, index + seps))
1669         {
1670           insert_non_mandatory_keyword ((const char *) normalized, array,
1671                                   index + seps);
1672           seps++;
1673         }
1674         GNUNET_free (normalized);
1675       }
1676     }
1677     else
1678       seps++;
1679   }
1680   GNUNET_free (ss);
1681   return seps;
1682 }
1683 #undef TOKENS
1684
1685 /**
1686  * Function called on each value in the meta data.
1687  * Adds it to the URI.
1688  *
1689  * @param cls URI to update
1690  * @param plugin_name name of the plugin that produced this value;
1691  *        special values can be used (i.e. '&lt;zlib&gt;' for zlib being
1692  *        used in the main libextractor library and yielding
1693  *        meta data).
1694  * @param type libextractor-type describing the meta data
1695  * @param format basic format information about data
1696  * @param data_mime_type mime-type of data (not of the original file);
1697  *        can be NULL (if mime-type is not known)
1698  * @param data actual meta-data found
1699  * @param data_len number of bytes in data
1700  * @return 0 (always)
1701  */
1702 static int
1703 gather_uri_data (void *cls, const char *plugin_name,
1704                  enum EXTRACTOR_MetaType type, enum EXTRACTOR_MetaFormat format,
1705                  const char *data_mime_type, const char *data, size_t data_len)
1706 {
1707   struct GNUNET_FS_Uri *uri = cls;
1708   char *normalized_data;
1709
1710   if ((format != EXTRACTOR_METAFORMAT_UTF8) &&
1711       (format != EXTRACTOR_METAFORMAT_C_STRING))
1712     return 0;
1713   /* Keywords must be at least 3 characters long
1714    * If given non-utf8 string it will, most likely, find it to be invalid,
1715    * and will return the length of its valid part, skipping the keyword.
1716    * If it does - fix the extractor, not this check!
1717    */
1718   if (u8_strcount ((const uint8_t *) data) <= 2)
1719   {
1720     return 0;
1721   }
1722   normalized_data = normalize_metadata (format, data, data_len);
1723   if (!find_duplicate (data, (const char **) uri->data.ksk.keywords, uri->data.ksk.keywordCount))
1724   {
1725     insert_non_mandatory_keyword (data,
1726                                   uri->data.ksk.keywords, uri->data.ksk.keywordCount);
1727     uri->data.ksk.keywordCount++;
1728   }
1729   if (normalized_data != NULL)
1730   {
1731     if (!find_duplicate (normalized_data, (const char **) uri->data.ksk.keywords, uri->data.ksk.keywordCount))
1732     {
1733       insert_non_mandatory_keyword (normalized_data,
1734                                     uri->data.ksk.keywords, uri->data.ksk.keywordCount);
1735       uri->data.ksk.keywordCount++;
1736     }
1737     GNUNET_free (normalized_data);
1738   }
1739   return 0;
1740 }
1741
1742
1743 /**
1744  * Construct a keyword-URI from meta-data (take all entries
1745  * in the meta-data and construct one large keyword URI
1746  * that lists all keywords that can be found in the meta-data).
1747  *
1748  * @param md metadata to use
1749  * @return NULL on error, otherwise a KSK URI
1750  */
1751 struct GNUNET_FS_Uri *
1752 GNUNET_FS_uri_ksk_create_from_meta_data (const struct GNUNET_CONTAINER_MetaData
1753                                          *md)
1754 {
1755   struct GNUNET_FS_Uri *ret;
1756   char *filename;
1757   char *full_name = NULL;
1758   char *ss;
1759   int ent;
1760   int tok_keywords = 0;
1761   int paren_keywords = 0;
1762
1763   if (md == NULL)
1764     return NULL;
1765   ret = GNUNET_new (struct GNUNET_FS_Uri);
1766   ret->type = GNUNET_FS_URI_KSK;
1767   ent = GNUNET_CONTAINER_meta_data_iterate (md, NULL, NULL);
1768   if (ent > 0)
1769   {
1770     full_name = GNUNET_CONTAINER_meta_data_get_first_by_types (md,
1771         EXTRACTOR_METATYPE_GNUNET_ORIGINAL_FILENAME, -1);
1772     if (NULL != full_name)
1773     {
1774       filename = full_name;
1775       while (NULL != (ss = strstr (filename, DIR_SEPARATOR_STR)))
1776         filename = ss + 1;
1777       tok_keywords = get_keywords_from_tokens (filename, NULL, 0);
1778       paren_keywords = get_keywords_from_parens (filename, NULL, 0);
1779     }
1780     /* x2 because there might be a normalized variant of every keyword */
1781     ret->data.ksk.keywords = GNUNET_malloc (sizeof (char *) * (ent
1782         + tok_keywords + paren_keywords) * 2);
1783     GNUNET_CONTAINER_meta_data_iterate (md, &gather_uri_data, ret);
1784   }
1785   if (tok_keywords > 0)
1786     ret->data.ksk.keywordCount += get_keywords_from_tokens (filename,
1787         ret->data.ksk.keywords,
1788         ret->data.ksk.keywordCount);
1789   if (paren_keywords > 0)
1790     ret->data.ksk.keywordCount += get_keywords_from_parens (filename,
1791         ret->data.ksk.keywords,
1792         ret->data.ksk.keywordCount);
1793   if (ent > 0)
1794     GNUNET_free_non_null (full_name);
1795   return ret;
1796 }
1797
1798
1799 /**
1800  * In URI-encoding, does the given character
1801  * need to be encoded using %-encoding?
1802  */
1803 static int
1804 needs_percent (char c)
1805 {
1806   return (!
1807           ((isalnum ((unsigned char) c)) || (c == '-') || (c == '_') ||
1808            (c == '.') || (c == '~')));
1809 }
1810
1811
1812 /**
1813  * Convert a KSK URI to a string.
1814  *
1815  * @param uri the URI to convert
1816  * @return NULL on error (i.e. keywordCount == 0)
1817  */
1818 static char *
1819 uri_ksk_to_string (const struct GNUNET_FS_Uri *uri)
1820 {
1821   char **keywords;
1822   unsigned int keywordCount;
1823   size_t n;
1824   char *ret;
1825   unsigned int i;
1826   unsigned int j;
1827   unsigned int wpos;
1828   size_t slen;
1829   const char *keyword;
1830
1831   if (uri->type != GNUNET_FS_URI_KSK)
1832     return NULL;
1833   keywords = uri->data.ksk.keywords;
1834   keywordCount = uri->data.ksk.keywordCount;
1835   n = keywordCount + strlen (GNUNET_FS_URI_PREFIX) +
1836       strlen (GNUNET_FS_URI_KSK_INFIX) + 1;
1837   for (i = 0; i < keywordCount; i++)
1838   {
1839     keyword = keywords[i];
1840     slen = strlen (keyword);
1841     n += slen;
1842     for (j = 0; j < slen; j++)
1843     {
1844       if ((j == 0) && (keyword[j] == ' '))
1845       {
1846         n--;
1847         continue;               /* skip leading space */
1848       }
1849       if (needs_percent (keyword[j]))
1850         n += 2;                 /* will use %-encoding */
1851     }
1852   }
1853   ret = GNUNET_malloc (n);
1854   strcpy (ret, GNUNET_FS_URI_PREFIX);
1855   strcat (ret, GNUNET_FS_URI_KSK_INFIX);
1856   wpos = strlen (ret);
1857   for (i = 0; i < keywordCount; i++)
1858   {
1859     keyword = keywords[i];
1860     slen = strlen (keyword);
1861     for (j = 0; j < slen; j++)
1862     {
1863       if ((j == 0) && (keyword[j] == ' '))
1864         continue;               /* skip leading space */
1865       if (needs_percent (keyword[j]))
1866       {
1867         sprintf (&ret[wpos], "%%%02X", (unsigned char) keyword[j]);
1868         wpos += 3;
1869       }
1870       else
1871       {
1872         ret[wpos++] = keyword[j];
1873       }
1874     }
1875     if (i != keywordCount - 1)
1876       ret[wpos++] = '+';
1877   }
1878   return ret;
1879 }
1880
1881
1882 /**
1883  * Convert SKS URI to a string.
1884  *
1885  * @param uri sks uri to convert
1886  * @return NULL on error
1887  */
1888 static char *
1889 uri_sks_to_string (const struct GNUNET_FS_Uri *uri)
1890 {
1891   char *ret;
1892   char buf[1024];
1893
1894   if (GNUNET_FS_URI_SKS != uri->type)
1895     return NULL;
1896   ret = GNUNET_STRINGS_data_to_string (&uri->data.sks.ns,
1897                                        sizeof (struct GNUNET_CRYPTO_EccPublicSignKey),
1898                                        buf,
1899                                        sizeof (buf));
1900   GNUNET_assert (NULL != ret);
1901   ret[0] = '\0';
1902   GNUNET_asprintf (&ret, "%s%s%s/%s", GNUNET_FS_URI_PREFIX,
1903                    GNUNET_FS_URI_SKS_INFIX, buf, 
1904                    uri->data.sks.identifier);
1905   return ret;
1906 }
1907
1908
1909 /**
1910  * Convert a CHK URI to a string.
1911  *
1912  * @param uri chk uri to convert
1913  * @return NULL on error
1914  */
1915 static char *
1916 uri_chk_to_string (const struct GNUNET_FS_Uri *uri)
1917 {
1918   const struct FileIdentifier *fi;
1919   char *ret;
1920   struct GNUNET_CRYPTO_HashAsciiEncoded keyhash;
1921   struct GNUNET_CRYPTO_HashAsciiEncoded queryhash;
1922
1923   if (uri->type != GNUNET_FS_URI_CHK)
1924     return NULL;
1925   fi = &uri->data.chk;
1926   GNUNET_CRYPTO_hash_to_enc (&fi->chk.key, &keyhash);
1927   GNUNET_CRYPTO_hash_to_enc (&fi->chk.query, &queryhash);
1928
1929   GNUNET_asprintf (&ret, "%s%s%s.%s.%llu", GNUNET_FS_URI_PREFIX,
1930                    GNUNET_FS_URI_CHK_INFIX, (const char *) &keyhash,
1931                    (const char *) &queryhash, GNUNET_ntohll (fi->file_length));
1932   return ret;
1933 }
1934
1935 /**
1936  * Convert binary data to a string.
1937  *
1938  * @param data binary data to convert
1939  * @param size number of bytes in data
1940  * @return converted data
1941  */
1942 static char *
1943 bin2enc (const void *data, size_t size)
1944 {
1945   /**
1946    * 64 characters for encoding, 6 bits per character
1947    */
1948   static char *tbl =
1949       "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_=";
1950
1951   size_t len;
1952   size_t pos;
1953   unsigned int bits;
1954   unsigned int hbits;
1955   char *ret;
1956
1957   GNUNET_assert (strlen (tbl) == 64);
1958   len = size * 8 / 6;
1959   if (((size * 8) % 6) != 0)
1960     len++;
1961   ret = GNUNET_malloc (len + 1);
1962   ret[len] = '\0';
1963   len = 0;
1964   bits = 0;
1965   hbits = 0;
1966   for (pos = 0; pos < size; pos++)
1967   {
1968     bits |= ((((const unsigned char *) data)[pos]) << hbits);
1969     hbits += 8;
1970     while (hbits >= 6)
1971     {
1972       ret[len++] = tbl[bits & 63];
1973       bits >>= 6;
1974       hbits -= 6;
1975     }
1976   }
1977   if (hbits > 0)
1978     ret[len] = tbl[bits & 63];
1979   return ret;
1980 }
1981
1982
1983 /**
1984  * Convert a LOC URI to a string.
1985  *
1986  * @param uri loc uri to convert
1987  * @return NULL on error
1988  */
1989 static char *
1990 uri_loc_to_string (const struct GNUNET_FS_Uri *uri)
1991 {
1992   char *ret;
1993   struct GNUNET_CRYPTO_HashAsciiEncoded keyhash;
1994   struct GNUNET_CRYPTO_HashAsciiEncoded queryhash;
1995   char *peerId;
1996   char *peerSig;
1997
1998   GNUNET_CRYPTO_hash_to_enc (&uri->data.loc.fi.chk.key, &keyhash);
1999   GNUNET_CRYPTO_hash_to_enc (&uri->data.loc.fi.chk.query, &queryhash);
2000   peerId =
2001       bin2enc (&uri->data.loc.peer,
2002                sizeof (struct GNUNET_CRYPTO_EccPublicSignKey));
2003   peerSig =
2004       bin2enc (&uri->data.loc.contentSignature,
2005                sizeof (struct GNUNET_CRYPTO_EccSignature));
2006   GNUNET_asprintf (&ret, 
2007                    "%s%s%s.%s.%llu.%s.%s.%llu", GNUNET_FS_URI_PREFIX,
2008                    GNUNET_FS_URI_LOC_INFIX, (const char *) &keyhash,
2009                    (const char *) &queryhash,
2010                    (unsigned long long) GNUNET_ntohll (uri->data.loc.
2011                                                        fi.file_length), peerId,
2012                    peerSig,
2013                    (unsigned long long) uri->data.loc.expirationTime.abs_value_us / 1000000LL);
2014   GNUNET_free (peerSig);
2015   GNUNET_free (peerId);
2016   return ret;
2017 }
2018
2019
2020 /**
2021  * Convert a URI to a UTF-8 String.
2022  *
2023  * @param uri uri to convert to a string
2024  * @return the UTF-8 string
2025  */
2026 char *
2027 GNUNET_FS_uri_to_string (const struct GNUNET_FS_Uri *uri)
2028 {
2029   if (uri == NULL)
2030   {
2031     GNUNET_break (0);
2032     return NULL;
2033   }
2034   switch (uri->type)
2035   {
2036   case GNUNET_FS_URI_KSK:
2037     return uri_ksk_to_string (uri);
2038   case GNUNET_FS_URI_SKS:
2039     return uri_sks_to_string (uri);
2040   case GNUNET_FS_URI_CHK:
2041     return uri_chk_to_string (uri);
2042   case GNUNET_FS_URI_LOC:
2043     return uri_loc_to_string (uri);
2044   default:
2045     GNUNET_break (0);
2046     return NULL;
2047   }
2048 }
2049
2050 /* end of fs_uri.c */