-fix paths
[oweals/gnunet.git] / src / util / strings.c
1 /*
2      This file is part of GNUnet.
3      (C) 2005-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 util/strings.c
23  * @brief string functions
24  * @author Nils Durner
25  * @author Christian Grothoff
26  */
27
28 #include "platform.h"
29 #if HAVE_ICONV
30 #include <iconv.h>
31 #endif
32 #include "gnunet_util_lib.h"
33 #include <unicase.h>
34 #include <unistr.h>
35 #include <uniconv.h>
36
37 #define LOG(kind,...) GNUNET_log_from (kind, "util", __VA_ARGS__)
38
39 #define LOG_STRERROR(kind,syscall) GNUNET_log_from_strerror (kind, "util", syscall)
40
41
42 /**
43  * Fill a buffer of the given size with
44  * count 0-terminated strings (given as varargs).
45  * If "buffer" is NULL, only compute the amount of
46  * space required (sum of "strlen(arg)+1").
47  *
48  * Unlike using "snprintf" with "%s", this function
49  * will add 0-terminators after each string.  The
50  * "GNUNET_string_buffer_tokenize" function can be
51  * used to parse the buffer back into individual
52  * strings.
53  *
54  * @param buffer the buffer to fill with strings, can
55  *               be NULL in which case only the necessary
56  *               amount of space will be calculated
57  * @param size number of bytes available in buffer
58  * @param count number of strings that follow
59  * @param ... count 0-terminated strings to copy to buffer
60  * @return number of bytes written to the buffer
61  *         (or number of bytes that would have been written)
62  */
63 size_t
64 GNUNET_STRINGS_buffer_fill (char *buffer, size_t size, unsigned int count, ...)
65 {
66   size_t needed;
67   size_t slen;
68   const char *s;
69   va_list ap;
70
71   needed = 0;
72   va_start (ap, count);
73   while (count > 0)
74   {
75     s = va_arg (ap, const char *);
76
77     slen = strlen (s) + 1;
78     if (buffer != NULL)
79     {
80       GNUNET_assert (needed + slen <= size);
81       memcpy (&buffer[needed], s, slen);
82     }
83     needed += slen;
84     count--;
85   }
86   va_end (ap);
87   return needed;
88 }
89
90
91 /**
92  * Given a buffer of a given size, find "count"
93  * 0-terminated strings in the buffer and assign
94  * the count (varargs) of type "const char**" to the
95  * locations of the respective strings in the
96  * buffer.
97  *
98  * @param buffer the buffer to parse
99  * @param size size of the buffer
100  * @param count number of strings to locate
101  * @return offset of the character after the last 0-termination
102  *         in the buffer, or 0 on error.
103  */
104 unsigned int
105 GNUNET_STRINGS_buffer_tokenize (const char *buffer, size_t size,
106                                 unsigned int count, ...)
107 {
108   unsigned int start;
109   unsigned int needed;
110   const char **r;
111   va_list ap;
112
113   needed = 0;
114   va_start (ap, count);
115   while (count > 0)
116   {
117     r = va_arg (ap, const char **);
118
119     start = needed;
120     while ((needed < size) && (buffer[needed] != '\0'))
121       needed++;
122     if (needed == size)
123     {
124       va_end (ap);
125       return 0;                 /* error */
126     }
127     *r = &buffer[start];
128     needed++;                   /* skip 0-termination */
129     count--;
130   }
131   va_end (ap);
132   return needed;
133 }
134
135
136 /**
137  * Convert a given filesize into a fancy human-readable format.
138  *
139  * @param size number of bytes
140  * @return fancy representation of the size (possibly rounded) for humans
141  */
142 char *
143 GNUNET_STRINGS_byte_size_fancy (unsigned long long size)
144 {
145   const char *unit = _( /* size unit */ "b");
146   char *ret;
147
148   if (size > 5 * 1024)
149   {
150     size = size / 1024;
151     unit = "KiB";
152     if (size > 5 * 1024)
153     {
154       size = size / 1024;
155       unit = "MiB";
156       if (size > 5 * 1024)
157       {
158         size = size / 1024;
159         unit = "GiB";
160         if (size > 5 * 1024)
161         {
162           size = size / 1024;
163           unit = "TiB";
164         }
165       }
166     }
167   }
168   ret = GNUNET_malloc (32);
169   GNUNET_snprintf (ret, 32, "%llu %s", size, unit);
170   return ret;
171 }
172
173
174 /**
175  * Unit conversion table entry for 'convert_with_table'.
176  */
177 struct ConversionTable
178 {
179   /**
180    * Name of the unit (or NULL for end of table).
181    */
182   const char *name;
183
184   /**
185    * Factor to apply for this unit.
186    */
187   unsigned long long value;
188 };
189
190
191 /**
192  * Convert a string of the form "4 X 5 Y" into a numeric value
193  * by interpreting "X" and "Y" as units and then multiplying
194  * the numbers with the values associated with the respective
195  * unit from the conversion table.
196  *
197  * @param input input string to parse
198  * @param table table with the conversion of unit names to numbers
199  * @param output where to store the result
200  * @return GNUNET_OK on success, GNUNET_SYSERR on error
201  */
202 static int
203 convert_with_table (const char *input,
204                     const struct ConversionTable *table,
205                     unsigned long long *output)
206 {
207   unsigned long long ret;
208   char *in;
209   const char *tok;
210   unsigned long long last;
211   unsigned int i;
212
213   ret = 0;
214   last = 0;
215   in = GNUNET_strdup (input);
216   for (tok = strtok (in, " "); tok != NULL; tok = strtok (NULL, " "))
217   {
218     do
219     {
220       i = 0;
221       while ((table[i].name != NULL) && (0 != strcasecmp (table[i].name, tok)))
222         i++;
223       if (table[i].name != NULL)
224       {
225         last *= table[i].value;
226         break; /* next tok */
227       }
228       else
229       {
230         char *endptr;
231         ret += last;
232         errno = 0;
233         last = strtoull (tok, &endptr, 10);
234         if ((0 != errno) || (endptr == tok))
235         {
236           GNUNET_free (in);
237           return GNUNET_SYSERR;   /* expected number */
238         }
239         if ('\0' == endptr[0])
240           break; /* next tok */
241         else
242           tok = endptr; /* and re-check (handles times like "10s") */
243       }
244     } while (GNUNET_YES);
245   }
246   ret += last;
247   *output = ret;
248   GNUNET_free (in);
249   return GNUNET_OK;
250 }
251
252
253 /**
254  * Convert a given fancy human-readable size to bytes.
255  *
256  * @param fancy_size human readable string (i.e. 1 MB)
257  * @param size set to the size in bytes
258  * @return GNUNET_OK on success, GNUNET_SYSERR on error
259  */
260 int
261 GNUNET_STRINGS_fancy_size_to_bytes (const char *fancy_size,
262                                     unsigned long long *size)
263 {
264   static const struct ConversionTable table[] =
265   {
266     { "B", 1},
267     { "KiB", 1024},
268     { "kB", 1000},
269     { "MiB", 1024 * 1024},
270     { "MB", 1000 * 1000},
271     { "GiB", 1024 * 1024 * 1024},
272     { "GB", 1000 * 1000 * 1000},
273     { "TiB", 1024LL * 1024LL * 1024LL * 1024LL},
274     { "TB", 1000LL * 1000LL * 1000LL * 1024LL},
275     { "PiB", 1024LL * 1024LL * 1024LL * 1024LL * 1024LL},
276     { "PB", 1000LL * 1000LL * 1000LL * 1024LL * 1000LL},
277     { "EiB", 1024LL * 1024LL * 1024LL * 1024LL * 1024LL * 1024LL},
278     { "EB", 1000LL * 1000LL * 1000LL * 1024LL * 1000LL * 1000LL},
279     { NULL, 0}
280   };
281
282   return convert_with_table (fancy_size,
283                              table,
284                              size);
285 }
286
287
288 /**
289  * Convert a given fancy human-readable time to our internal
290  * representation.
291  *
292  * @param fancy_time human readable string (i.e. 1 minute)
293  * @param rtime set to the relative time
294  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
295  */
296 int
297 GNUNET_STRINGS_fancy_time_to_relative (const char *fancy_time,
298                                        struct GNUNET_TIME_Relative *rtime)
299 {
300   static const struct ConversionTable table[] =
301   {
302     { "us", 1},
303     { "ms", 1000 },
304     { "s", 1000 * 1000LL },
305     { "\"", 1000  * 1000LL },
306     { "m", 60 * 1000  * 1000LL},
307     { "min", 60 * 1000  * 1000LL},
308     { "minutes", 60 * 1000  * 1000LL},
309     { "'", 60 * 1000  * 1000LL},
310     { "h", 60 * 60 * 1000  * 1000LL},
311     { "d", 24 * 60 * 60 * 1000LL * 1000LL},
312     { "day", 24 * 60 * 60 * 1000LL * 1000LL},
313     { "days", 24 * 60 * 60 * 1000LL * 1000LL},
314     { "a", 31536000000000LL /* year */ },
315     { NULL, 0}
316   };
317   int ret;
318   unsigned long long val;
319
320   if (0 == strcasecmp ("forever", fancy_time))
321   {
322     *rtime = GNUNET_TIME_UNIT_FOREVER_REL;
323     return GNUNET_OK;
324   }
325   ret = convert_with_table (fancy_time,
326                             table,
327                             &val);
328   rtime->rel_value_us = (uint64_t) val;
329   return ret;
330 }
331
332
333 /**
334  * Convert a given fancy human-readable time to our internal
335  * representation. The human-readable time is expected to be
336  * in local time, whereas the returned value will be in UTC.
337  *
338  * @param fancy_time human readable string (i.e. %Y-%m-%d %H:%M:%S)
339  * @param atime set to the absolute time
340  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
341  */
342 int
343 GNUNET_STRINGS_fancy_time_to_absolute (const char *fancy_time,
344                                        struct GNUNET_TIME_Absolute *atime)
345 {
346   struct tm tv;
347   time_t t;
348
349   if (0 == strcasecmp ("end of time", fancy_time))
350   {
351     *atime = GNUNET_TIME_UNIT_FOREVER_ABS;
352     return GNUNET_OK;
353   }
354   memset (&tv, 0, sizeof (tv));
355   if ( (NULL == strptime (fancy_time, "%a %b %d %H:%M:%S %Y", &tv)) &&
356        (NULL == strptime (fancy_time, "%c", &tv)) &&
357        (NULL == strptime (fancy_time, "%Ec", &tv)) &&
358        (NULL == strptime (fancy_time, "%Y-%m-%d %H:%M:%S", &tv)) &&
359        (NULL == strptime (fancy_time, "%Y-%m-%d %H:%M", &tv)) &&
360        (NULL == strptime (fancy_time, "%x", &tv)) &&
361        (NULL == strptime (fancy_time, "%Ex", &tv)) &&
362        (NULL == strptime (fancy_time, "%Y-%m-%d", &tv)) &&
363        (NULL == strptime (fancy_time, "%Y-%m", &tv)) &&
364        (NULL == strptime (fancy_time, "%Y", &tv)) )
365     return GNUNET_SYSERR;
366   t = mktime (&tv);
367   atime->abs_value_us = (uint64_t) ((uint64_t) t * 1000LL * 1000LL);
368 #if LINUX
369   atime->abs_value_us -= 1000LL * 1000LL * timezone;
370 #elif defined WINDOWS
371   {
372     DWORD tzv;
373     TIME_ZONE_INFORMATION tzi;
374     tzv = GetTimeZoneInformation (&tzi);
375     if (TIME_ZONE_ID_INVALID != tzv)
376     {
377       atime->abs_value_us -= 1000LL * 1000LL * tzi.Bias * 60LL;
378     }
379   }
380 #endif
381   return GNUNET_OK;
382 }
383
384
385 /**
386  * Convert the len characters long character sequence
387  * given in input that is in the given input charset
388  * to a string in given output charset.
389  *
390  * @param input input string
391  * @param len number of bytes in @a input
392  * @param input_charset character set used for @a input
393  * @param output_charset desired character set for the return value
394  * @return the converted string (0-terminated),
395  *  if conversion fails, a copy of the orignal
396  *  string is returned.
397  */
398 char *
399 GNUNET_STRINGS_conv (const char *input,
400                      size_t len,
401                      const char *input_charset,
402                      const char *output_charset)
403 {
404   char *ret;
405   uint8_t *u8_string;
406   char *encoded_string;
407   size_t u8_string_length;
408   size_t encoded_string_length;
409
410   u8_string = u8_conv_from_encoding (input_charset,
411                                      iconveh_error,
412                                      input, len,
413                                      NULL, NULL,
414                                      &u8_string_length);
415   if (NULL == u8_string)
416   {
417     LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING, "u8_conv_from_encoding");
418     goto fail;
419   }
420   if (0 == strcmp (output_charset, "UTF-8"))
421   {
422     ret = GNUNET_malloc (u8_string_length + 1);
423     memcpy (ret, u8_string, u8_string_length);
424     ret[u8_string_length] = '\0';
425     free (u8_string);
426     return ret;
427   }
428   encoded_string = u8_conv_to_encoding (output_charset, iconveh_error,
429                                         u8_string, u8_string_length,
430                                         NULL, NULL,
431                                         &encoded_string_length);
432   free (u8_string);
433   if (NULL == encoded_string)
434   {
435     LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING, "u8_conv_to_encoding");
436     goto fail;
437   }
438   ret = GNUNET_malloc (encoded_string_length + 1);
439   memcpy (ret, encoded_string, encoded_string_length);
440   ret[encoded_string_length] = '\0';
441   free (encoded_string);
442   return ret;
443  fail:
444   LOG (GNUNET_ERROR_TYPE_WARNING, _("Character sets requested were `%s'->`%s'\n"),
445        "UTF-8", output_charset);
446   ret = GNUNET_malloc (len + 1);
447   memcpy (ret, input, len);
448   ret[len] = '\0';
449   return ret;
450 }
451
452
453 /**
454  * Convert the len characters long character sequence
455  * given in input that is in the given charset
456  * to UTF-8.
457  *
458  * @param input the input string (not necessarily 0-terminated)
459  * @param len the number of bytes in the @a input
460  * @param charset character set to convert from
461  * @return the converted string (0-terminated),
462  *  if conversion fails, a copy of the orignal
463  *  string is returned.
464  */
465 char *
466 GNUNET_STRINGS_to_utf8 (const char *input,
467                         size_t len,
468                         const char *charset)
469 {
470   return GNUNET_STRINGS_conv (input, len, charset, "UTF-8");
471 }
472
473
474 /**
475  * Convert the len bytes-long UTF-8 string
476  * given in input to the given charset.
477  *
478  * @param input the input string (not necessarily 0-terminated)
479  * @param len the number of bytes in the @a input
480  * @param charset character set to convert to
481  * @return the converted string (0-terminated),
482  *  if conversion fails, a copy of the orignal
483  *  string is returned.
484  */
485 char *
486 GNUNET_STRINGS_from_utf8 (const char *input,
487                           size_t len,
488                           const char *charset)
489 {
490   return GNUNET_STRINGS_conv (input, len, "UTF-8", charset);
491 }
492
493
494 /**
495  * Convert the utf-8 input string to lowercase.
496  * Output needs to be allocated appropriately.
497  *
498  * @param input input string
499  * @param output output buffer
500  */
501 void
502 GNUNET_STRINGS_utf8_tolower (const char *input,
503                              char *output)
504 {
505   uint8_t *tmp_in;
506   size_t len;
507
508   tmp_in = u8_tolower ((uint8_t*)input, strlen ((char *) input),
509                        NULL, UNINORM_NFD, NULL, &len);
510   memcpy(output, tmp_in, len);
511   output[len] = '\0';
512   free(tmp_in);
513 }
514
515
516 /**
517  * Convert the utf-8 input string to uppercase.
518  * Output needs to be allocated appropriately.
519  *
520  * @param input input string
521  * @param output output buffer
522  */
523 void
524 GNUNET_STRINGS_utf8_toupper(const char *input,
525                             char *output)
526 {
527   uint8_t *tmp_in;
528   size_t len;
529
530   tmp_in = u8_toupper ((uint8_t*)input, strlen ((char *) input),
531                        NULL, UNINORM_NFD, NULL, &len);
532   memcpy (output, tmp_in, len);
533   output[len] = '\0';
534   free (tmp_in);
535 }
536
537
538 /**
539  * Complete filename (a la shell) from abbrevition.
540  * @param fil the name of the file, may contain ~/ or
541  *        be relative to the current directory
542  * @returns the full file name,
543  *          NULL is returned on error
544  */
545 char *
546 GNUNET_STRINGS_filename_expand (const char *fil)
547 {
548   char *buffer;
549 #ifndef MINGW
550   size_t len;
551   size_t n;
552   char *fm;
553   const char *fil_ptr;
554 #else
555   char *fn;
556   long lRet;
557 #endif
558
559   if (fil == NULL)
560     return NULL;
561
562 #ifndef MINGW
563   if (fil[0] == DIR_SEPARATOR)
564     /* absolute path, just copy */
565     return GNUNET_strdup (fil);
566   if (fil[0] == '~')
567   {
568     fm = getenv ("HOME");
569     if (fm == NULL)
570     {
571       LOG (GNUNET_ERROR_TYPE_WARNING,
572            _("Failed to expand `$HOME': environment variable `HOME' not set"));
573       return NULL;
574     }
575     fm = GNUNET_strdup (fm);
576     /* do not copy '~' */
577     fil_ptr = fil + 1;
578
579     /* skip over dir seperator to be consistent */
580     if (fil_ptr[0] == DIR_SEPARATOR)
581       fil_ptr++;
582   }
583   else
584   {
585     /* relative path */
586     fil_ptr = fil;
587     len = 512;
588     fm = NULL;
589     while (1)
590     {
591       buffer = GNUNET_malloc (len);
592       if (getcwd (buffer, len) != NULL)
593       {
594         fm = buffer;
595         break;
596       }
597       if ((errno == ERANGE) && (len < 1024 * 1024 * 4))
598       {
599         len *= 2;
600         GNUNET_free (buffer);
601         continue;
602       }
603       GNUNET_free (buffer);
604       break;
605     }
606     if (fm == NULL)
607     {
608       LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING, "getcwd");
609       buffer = getenv ("PWD");  /* alternative */
610       if (buffer != NULL)
611         fm = GNUNET_strdup (buffer);
612     }
613     if (fm == NULL)
614       fm = GNUNET_strdup ("./");        /* give up */
615   }
616   n = strlen (fm) + 1 + strlen (fil_ptr) + 1;
617   buffer = GNUNET_malloc (n);
618   GNUNET_snprintf (buffer, n, "%s%s%s", fm,
619                    (fm[strlen (fm) - 1] ==
620                     DIR_SEPARATOR) ? "" : DIR_SEPARATOR_STR, fil_ptr);
621   GNUNET_free (fm);
622   return buffer;
623 #else
624   fn = GNUNET_malloc (MAX_PATH + 1);
625
626   if ((lRet = plibc_conv_to_win_path (fil, fn)) != ERROR_SUCCESS)
627   {
628     SetErrnoFromWinError (lRet);
629     LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING, "plibc_conv_to_win_path");
630     return NULL;
631   }
632   /* is the path relative? */
633   if ((strncmp (fn + 1, ":\\", 2) != 0) && (strncmp (fn, "\\\\", 2) != 0))
634   {
635     char szCurDir[MAX_PATH + 1];
636
637     lRet = GetCurrentDirectory (MAX_PATH + 1, szCurDir);
638     if (lRet + strlen (fn) + 1 > (MAX_PATH + 1))
639     {
640       SetErrnoFromWinError (ERROR_BUFFER_OVERFLOW);
641       LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING, "GetCurrentDirectory");
642       return NULL;
643     }
644     buffer = GNUNET_malloc (MAX_PATH + 1);
645     GNUNET_snprintf (buffer, MAX_PATH + 1, "%s\\%s", szCurDir, fn);
646     GNUNET_free (fn);
647     fn = buffer;
648   }
649
650   return fn;
651 #endif
652 }
653
654
655 /**
656  * Give relative time in human-readable fancy format.
657  * This is one of the very few calls in the entire API that is
658  * NOT reentrant!
659  *
660  * @param delta time in milli seconds
661  * @param do_round are we allowed to round a bit?
662  * @return time as human-readable string
663  */
664 const char *
665 GNUNET_STRINGS_relative_time_to_string (struct GNUNET_TIME_Relative delta,
666                                         int do_round)
667 {
668   static char buf[128];
669   const char *unit = _( /* time unit */ "µs");
670   uint64_t dval = delta.rel_value_us;
671
672   if (GNUNET_TIME_UNIT_FOREVER_REL.rel_value_us == delta.rel_value_us)
673     return _("forever");
674   if (0 == delta.rel_value_us)
675     return _("0 ms");
676   if ( ( (GNUNET_YES == do_round) &&
677          (dval > 5 * 1000) ) ||
678        (0 == (dval % 1000) ))
679   {
680     dval = dval / 1000;
681     unit = _( /* time unit */ "ms");
682     if ( ( (GNUNET_YES == do_round) &&
683            (dval > 5 * 1000) ) ||
684          (0 == (dval % 1000) ))
685     {
686       dval = dval / 1000;
687       unit = _( /* time unit */ "s");
688       if ( ( (GNUNET_YES == do_round) &&
689              (dval > 5 * 60) ) ||
690            (0 == (dval % 60) ) )
691       {
692         dval = dval / 60;
693         unit = _( /* time unit */ "m");
694         if ( ( (GNUNET_YES == do_round) &&
695                (dval > 5 * 60) ) ||
696              (0 == (dval % 60) ))
697         {
698           dval = dval / 60;
699           unit = _( /* time unit */ "h");
700           if ( ( (GNUNET_YES == do_round) &&
701                  (dval > 5 * 24) ) ||
702                (0 == (dval % 24)) )
703           {
704             dval = dval / 24;
705             if (1 == dval)
706               unit = _( /* time unit */ "day");
707             else
708               unit = _( /* time unit */ "days");
709           }
710         }
711       }
712     }
713   }
714   GNUNET_snprintf (buf, sizeof (buf),
715                    "%llu %s", dval, unit);
716   return buf;
717 }
718
719
720 /**
721  * "asctime", except for GNUnet time.  Converts a GNUnet internal
722  * absolute time (which is in UTC) to a string in local time.
723  * Note that the returned value will be overwritten if this function
724  * is called again.
725  *
726  * @param t the absolute time to convert
727  * @return timestamp in human-readable form in local time
728  */
729 const char *
730 GNUNET_STRINGS_absolute_time_to_string (struct GNUNET_TIME_Absolute t)
731 {
732   static char buf[255];
733   time_t tt;
734   struct tm *tp;
735
736   if (t.abs_value_us == GNUNET_TIME_UNIT_FOREVER_ABS.abs_value_us)
737     return _("end of time");
738   tt = t.abs_value_us / 1000LL / 1000LL;
739   tp = gmtime (&tt);
740   strftime (buf, sizeof (buf), "%a %b %d %H:%M:%S %Y", tp);
741   return buf;
742 }
743
744
745 /**
746  * "man basename"
747  * Returns a pointer to a part of filename (allocates nothing)!
748  *
749  * @param filename filename to extract basename from
750  * @return short (base) name of the file (that is, everything following the
751  *         last directory separator in filename. If filename ends with a
752  *         directory separator, the result will be a zero-length string.
753  *         If filename has no directory separators, the result is filename
754  *         itself.
755  */
756 const char *
757 GNUNET_STRINGS_get_short_name (const char *filename)
758 {
759   const char *short_fn = filename;
760   const char *ss;
761   while (NULL != (ss = strstr (short_fn, DIR_SEPARATOR_STR))
762       && (ss[1] != '\0'))
763     short_fn = 1 + ss;
764   return short_fn;
765 }
766
767
768 /**
769  * Get the numeric value corresponding to a character.
770  *
771  * @param a a character
772  * @return corresponding numeric value
773  */
774 static unsigned int
775 getValue__ (unsigned char a)
776 {
777   if ((a >= '0') && (a <= '9'))
778     return a - '0';
779   if ((a >= 'A') && (a <= 'V'))
780     return (a - 'A' + 10);
781   if ((a >= 'a') && (a <= 'v'))
782     return (a - 'a' + 10);
783   return -1;
784 }
785
786
787 /**
788  * Convert binary data to ASCII encoding.  The ASCII encoding is rather
789  * GNUnet specific.  It was chosen such that it only uses characters
790  * in [0-9A-V], can be produced without complex arithmetics and uses a
791  * small number of characters.
792  * Does not append 0-terminator, but returns a pointer to the place where
793  * it should be placed, if needed.
794  *
795  * @param data data to encode
796  * @param size size of data (in bytes)
797  * @param out buffer to fill
798  * @param out_size size of the buffer. Must be large enough to hold
799  * ((size*8) + (((size*8) % 5) > 0 ? 5 - ((size*8) % 5) : 0)) / 5 bytes
800  * @return pointer to the next byte in 'out' or NULL on error.
801  */
802 char *
803 GNUNET_STRINGS_data_to_string (const void *data, size_t size, char *out, size_t out_size)
804 {
805   /**
806    * 32 characters for encoding
807    */
808   static char *encTable__ = "0123456789ABCDEFGHIJKLMNOPQRSTUV";
809   unsigned int wpos;
810   unsigned int rpos;
811   unsigned int bits;
812   unsigned int vbit;
813   const unsigned char *udata;
814
815   GNUNET_assert (data != NULL);
816   GNUNET_assert (out != NULL);
817   udata = data;
818   if (out_size < (((size*8) + ((size*8) % 5)) % 5))
819   {
820     GNUNET_break (0);
821     return NULL;
822   }
823   vbit = 0;
824   wpos = 0;
825   rpos = 0;
826   bits = 0;
827   while ((rpos < size) || (vbit > 0))
828   {
829     if ((rpos < size) && (vbit < 5))
830     {
831       bits = (bits << 8) | udata[rpos++];   /* eat 8 more bits */
832       vbit += 8;
833     }
834     if (vbit < 5)
835     {
836       bits <<= (5 - vbit);      /* zero-padding */
837       GNUNET_assert (vbit == ((size * 8) % 5));
838       vbit = 5;
839     }
840     if (wpos >= out_size)
841     {
842       GNUNET_break (0);
843       return NULL;
844     }
845     out[wpos++] = encTable__[(bits >> (vbit - 5)) & 31];
846     vbit -= 5;
847   }
848   GNUNET_assert (vbit == 0);
849   if (wpos < out_size)
850     out[wpos] = '\0';
851   return &out[wpos];
852 }
853
854
855 /**
856  * Convert ASCII encoding back to data
857  * out_size must match exactly the size of the data before it was encoded.
858  *
859  * @param enc the encoding
860  * @param enclen number of characters in @a enc (without 0-terminator, which can be missing)
861  * @param out location where to store the decoded data
862  * @param out_size size of the output buffer @a out
863  * @return #GNUNET_OK on success, #GNUNET_SYSERR if result has the wrong encoding
864  */
865 int
866 GNUNET_STRINGS_string_to_data (const char *enc, size_t enclen,
867                                void *out, size_t out_size)
868 {
869   unsigned int rpos;
870   unsigned int wpos;
871   unsigned int bits;
872   unsigned int vbit;
873   int ret;
874   int shift;
875   unsigned char *uout;
876   unsigned int encoded_len = out_size * 8;
877
878   if (0 == enclen)
879   {
880     if (0 == out_size)
881       return GNUNET_OK;
882     return GNUNET_SYSERR;
883   }
884   uout = out;
885   wpos = out_size;
886   rpos = enclen;
887   if ((encoded_len % 5) > 0)
888   {
889     vbit = encoded_len % 5; /* padding! */
890     shift = 5 - vbit;
891     bits = (ret = getValue__ (enc[--rpos])) >> (5 - (encoded_len % 5));
892   }
893   else
894   {
895     vbit = 5;
896     shift = 0;
897     bits = (ret = getValue__ (enc[--rpos]));
898   }
899   if ((encoded_len + shift) / 5 != enclen)
900     return GNUNET_SYSERR;
901   if (-1 == ret)
902     return GNUNET_SYSERR;
903   while (wpos > 0)
904   {
905     if (0 == rpos)
906     {
907       GNUNET_break (0);
908       return GNUNET_SYSERR;
909     }
910     bits = ((ret = getValue__ (enc[--rpos])) << vbit) | bits;
911     if (-1 == ret)
912       return GNUNET_SYSERR;
913     vbit += 5;
914     if (vbit >= 8)
915     {
916       uout[--wpos] = (unsigned char) bits;
917       bits >>= 8;
918       vbit -= 8;
919     }
920   }
921   if ( (0 != rpos) ||
922        (0 != vbit) )
923     return GNUNET_SYSERR;
924   return GNUNET_OK;
925 }
926
927
928 /**
929  * Parse a path that might be an URI.
930  *
931  * @param path path to parse. Must be NULL-terminated.
932  * @param scheme_part a pointer to 'char *' where a pointer to a string that
933  *        represents the URI scheme will be stored. Can be NULL. The string is
934  *        allocated by the function, and should be freed by GNUNET_free() when
935  *        it is no longer needed.
936  * @param path_part a pointer to 'const char *' where a pointer to the path
937  *        part of the URI will be stored. Can be NULL. Points to the same block
938  *        of memory as 'path', and thus must not be freed. Might point to '\0',
939  *        if path part is zero-length.
940  * @return GNUNET_YES if it's an URI, GNUNET_NO otherwise. If 'path' is not
941  *         an URI, '* scheme_part' and '*path_part' will remain unchanged
942  *         (if they weren't NULL).
943  */
944 int
945 GNUNET_STRINGS_parse_uri (const char *path, char **scheme_part,
946     const char **path_part)
947 {
948   size_t len;
949   int i, end;
950   int pp_state = 0;
951   const char *post_scheme_part = NULL;
952   len = strlen (path);
953   for (end = 0, i = 0; !end && i < len; i++)
954   {
955     switch (pp_state)
956     {
957     case 0:
958       if (path[i] == ':' && i > 0)
959       {
960         pp_state += 1;
961         continue;
962       }
963       if (!((path[i] >= 'A' && path[i] <= 'Z') || (path[i] >= 'a' && path[i] <= 'z')
964           || (path[i] >= '0' && path[i] <= '9') || path[i] == '+' || path[i] == '-'
965           || (path[i] == '.')))
966         end = 1;
967       break;
968     case 1:
969     case 2:
970       if (path[i] == '/')
971       {
972         pp_state += 1;
973         continue;
974       }
975       end = 1;
976       break;
977     case 3:
978       post_scheme_part = &path[i];
979       end = 1;
980       break;
981     default:
982       end = 1;
983     }
984   }
985   if (post_scheme_part == NULL)
986     return GNUNET_NO;
987   if (scheme_part)
988   {
989     *scheme_part = GNUNET_malloc (post_scheme_part - path + 1);
990     memcpy (*scheme_part, path, post_scheme_part - path);
991     (*scheme_part)[post_scheme_part - path] = '\0';
992   }
993   if (path_part)
994     *path_part = post_scheme_part;
995   return GNUNET_YES;
996 }
997
998
999 /**
1000  * Check whether @a filename is absolute or not, and if it's an URI
1001  *
1002  * @param filename filename to check
1003  * @param can_be_uri #GNUNET_YES to check for being URI, #GNUNET_NO - to
1004  *        assume it's not URI
1005  * @param r_is_uri a pointer to an int that is set to #GNUNET_YES if @a filename
1006  *        is URI and to #GNUNET_NO otherwise. Can be NULL. If @a can_be_uri is
1007  *        not #GNUNET_YES, `* r_is_uri` is set to #GNUNET_NO.
1008  * @param r_uri_scheme a pointer to a char * that is set to a pointer to URI scheme.
1009  *        The string is allocated by the function, and should be freed with
1010  *        GNUNET_free(). Can be NULL.
1011  * @return #GNUNET_YES if @a filename is absolute, #GNUNET_NO otherwise.
1012  */
1013 int
1014 GNUNET_STRINGS_path_is_absolute (const char *filename,
1015                                  int can_be_uri,
1016                                  int *r_is_uri,
1017                                  char **r_uri_scheme)
1018 {
1019 #if WINDOWS
1020   size_t len;
1021 #endif
1022   const char *post_scheme_path;
1023   int is_uri;
1024   char * uri;
1025   /* consider POSIX paths to be absolute too, even on W32,
1026    * as plibc expansion will fix them for us.
1027    */
1028   if (filename[0] == '/')
1029     return GNUNET_YES;
1030   if (can_be_uri)
1031   {
1032     is_uri = GNUNET_STRINGS_parse_uri (filename, &uri, &post_scheme_path);
1033     if (r_is_uri)
1034       *r_is_uri = is_uri;
1035     if (is_uri)
1036     {
1037       if (r_uri_scheme)
1038         *r_uri_scheme = uri;
1039       else
1040         GNUNET_free_non_null (uri);
1041 #if WINDOWS
1042       len = strlen(post_scheme_path);
1043       /* Special check for file:///c:/blah
1044        * We want to parse 'c:/', not '/c:/'
1045        */
1046       if (post_scheme_path[0] == '/' && len >= 3 && post_scheme_path[2] == ':')
1047         post_scheme_path = &post_scheme_path[1];
1048 #endif
1049       return GNUNET_STRINGS_path_is_absolute (post_scheme_path, GNUNET_NO, NULL, NULL);
1050     }
1051   }
1052   else
1053   {
1054     if (r_is_uri)
1055       *r_is_uri = GNUNET_NO;
1056   }
1057 #if WINDOWS
1058   len = strlen (filename);
1059   if (len >= 3 &&
1060       ((filename[0] >= 'A' && filename[0] <= 'Z')
1061       || (filename[0] >= 'a' && filename[0] <= 'z'))
1062       && filename[1] == ':' && (filename[2] == '/' || filename[2] == '\\'))
1063     return GNUNET_YES;
1064 #endif
1065   return GNUNET_NO;
1066 }
1067
1068 #if MINGW
1069 #define         _IFMT           0170000 /* type of file */
1070 #define         _IFLNK          0120000 /* symbolic link */
1071 #define  S_ISLNK(m)     (((m)&_IFMT) == _IFLNK)
1072 #endif
1073
1074
1075 /**
1076  * Perform @a checks on @a filename.
1077  *
1078  * @param filename file to check
1079  * @param checks checks to perform
1080  * @return #GNUNET_YES if all checks pass, #GNUNET_NO if at least one of them
1081  *         fails, #GNUNET_SYSERR when a check can't be performed
1082  */
1083 int
1084 GNUNET_STRINGS_check_filename (const char *filename,
1085                                enum GNUNET_STRINGS_FilenameCheck checks)
1086 {
1087   struct stat st;
1088   if ( (NULL == filename) || (filename[0] == '\0') )
1089     return GNUNET_SYSERR;
1090   if (0 != (checks & GNUNET_STRINGS_CHECK_IS_ABSOLUTE))
1091     if (!GNUNET_STRINGS_path_is_absolute (filename, GNUNET_NO, NULL, NULL))
1092       return GNUNET_NO;
1093   if (0 != (checks & (GNUNET_STRINGS_CHECK_EXISTS
1094                       | GNUNET_STRINGS_CHECK_IS_DIRECTORY
1095                       | GNUNET_STRINGS_CHECK_IS_LINK)))
1096   {
1097     if (0 != STAT (filename, &st))
1098     {
1099       if (0 != (checks & GNUNET_STRINGS_CHECK_EXISTS))
1100         return GNUNET_NO;
1101       else
1102         return GNUNET_SYSERR;
1103     }
1104   }
1105   if (0 != (checks & GNUNET_STRINGS_CHECK_IS_DIRECTORY))
1106     if (!S_ISDIR (st.st_mode))
1107       return GNUNET_NO;
1108   if (0 != (checks & GNUNET_STRINGS_CHECK_IS_LINK))
1109     if (!S_ISLNK (st.st_mode))
1110       return GNUNET_NO;
1111   return GNUNET_YES;
1112 }
1113
1114
1115 /**
1116  * Tries to convert 'zt_addr' string to an IPv6 address.
1117  * The string is expected to have the format "[ABCD::01]:80".
1118  *
1119  * @param zt_addr 0-terminated string. May be mangled by the function.
1120  * @param addrlen length of @a zt_addr (not counting 0-terminator).
1121  * @param r_buf a buffer to fill. Initially gets filled with zeroes,
1122  *        then its sin6_port, sin6_family and sin6_addr are set appropriately.
1123  * @return #GNUNET_OK if conversion succeded.
1124  *         #GNUNET_SYSERR otherwise, in which
1125  *         case the contents of @a r_buf are undefined.
1126  */
1127 int
1128 GNUNET_STRINGS_to_address_ipv6 (const char *zt_addr,
1129                                 uint16_t addrlen,
1130                                 struct sockaddr_in6 *r_buf)
1131 {
1132   char zbuf[addrlen + 1];
1133   int ret;
1134   char *port_colon;
1135   unsigned int port;
1136
1137   if (addrlen < 6)
1138     return GNUNET_SYSERR;
1139   memcpy (zbuf, zt_addr, addrlen);
1140   if ('[' != zbuf[0])
1141   {
1142     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1143                 _("IPv6 address did not start with `['\n"));
1144     return GNUNET_SYSERR;
1145   }
1146   zbuf[addrlen] = '\0';
1147   port_colon = strrchr (zbuf, ':');
1148   if (NULL == port_colon)
1149   {
1150     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1151                 _("IPv6 address did contain ':' to separate port number\n"));
1152     return GNUNET_SYSERR;
1153   }
1154   if (']' != *(port_colon - 1))
1155   {
1156     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1157                 _("IPv6 address did contain ']' before ':' to separate port number\n"));
1158     return GNUNET_SYSERR;
1159   }
1160   ret = SSCANF (port_colon, ":%u", &port);
1161   if ( (1 != ret) || (port > 65535) )
1162   {
1163     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1164                 _("IPv6 address did contain a valid port number after the last ':'\n"));
1165     return GNUNET_SYSERR;
1166   }
1167   *(port_colon-1) = '\0';
1168   memset (r_buf, 0, sizeof (struct sockaddr_in6));
1169   ret = inet_pton (AF_INET6, &zbuf[1], &r_buf->sin6_addr);
1170   if (ret <= 0)
1171   {
1172     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1173                 _("Invalid IPv6 address `%s': %s\n"),
1174                 &zbuf[1],
1175                 STRERROR (errno));
1176     return GNUNET_SYSERR;
1177   }
1178   r_buf->sin6_port = htons (port);
1179   r_buf->sin6_family = AF_INET6;
1180 #if HAVE_SOCKADDR_IN_SIN_LEN
1181   r_buf->sin6_len = (u_char) sizeof (struct sockaddr_in6);
1182 #endif
1183   return GNUNET_OK;
1184 }
1185
1186
1187 /**
1188  * Tries to convert 'zt_addr' string to an IPv4 address.
1189  * The string is expected to have the format "1.2.3.4:80".
1190  *
1191  * @param zt_addr 0-terminated string. May be mangled by the function.
1192  * @param addrlen length of @a zt_addr (not counting 0-terminator).
1193  * @param r_buf a buffer to fill.
1194  * @return #GNUNET_OK if conversion succeded.
1195  *         #GNUNET_SYSERR otherwise, in which case
1196  *         the contents of @a r_buf are undefined.
1197  */
1198 int
1199 GNUNET_STRINGS_to_address_ipv4 (const char *zt_addr, uint16_t addrlen,
1200                                 struct sockaddr_in *r_buf)
1201 {
1202   unsigned int temps[4];
1203   unsigned int port;
1204   unsigned int cnt;
1205
1206   if (addrlen < 9)
1207     return GNUNET_SYSERR;
1208   cnt = SSCANF (zt_addr, "%u.%u.%u.%u:%u", &temps[0], &temps[1], &temps[2], &temps[3], &port);
1209   if (5 != cnt)
1210     return GNUNET_SYSERR;
1211   for (cnt = 0; cnt < 4; cnt++)
1212     if (temps[cnt] > 0xFF)
1213       return GNUNET_SYSERR;
1214   if (port > 65535)
1215     return GNUNET_SYSERR;
1216   r_buf->sin_family = AF_INET;
1217   r_buf->sin_port = htons (port);
1218   r_buf->sin_addr.s_addr = htonl ((temps[0] << 24) + (temps[1] << 16) +
1219                                   (temps[2] << 8) + temps[3]);
1220 #if HAVE_SOCKADDR_IN_SIN_LEN
1221   r_buf->sin_len = (u_char) sizeof (struct sockaddr_in);
1222 #endif
1223   return GNUNET_OK;
1224 }
1225
1226
1227 /**
1228  * Tries to convert @a addr string to an IP (v4 or v6) address.
1229  * Will automatically decide whether to treat 'addr' as v4 or v6 address.
1230  *
1231  * @param addr a string, may not be 0-terminated.
1232  * @param addrlen number of bytes in @a addr (if addr is 0-terminated,
1233  *        0-terminator should not be counted towards addrlen).
1234  * @param r_buf a buffer to fill.
1235  * @return #GNUNET_OK if conversion succeded. GNUNET_SYSERR otherwise, in which
1236  *         case the contents of r_buf are undefined.
1237  */
1238 int
1239 GNUNET_STRINGS_to_address_ip (const char *addr,
1240                               uint16_t addrlen,
1241                               struct sockaddr_storage *r_buf)
1242 {
1243   if (addr[0] == '[')
1244     return GNUNET_STRINGS_to_address_ipv6 (addr,
1245                                            addrlen,
1246                                            (struct sockaddr_in6 *) r_buf);
1247   return GNUNET_STRINGS_to_address_ipv4 (addr,
1248                                          addrlen,
1249                                          (struct sockaddr_in *) r_buf);
1250 }
1251
1252
1253 /**
1254  * Makes a copy of argv that consists of a single memory chunk that can be
1255  * freed with a single call to GNUNET_free ();
1256  */
1257 static char *const *
1258 _make_continuous_arg_copy (int argc,
1259                            char *const *argv)
1260 {
1261   size_t argvsize = 0;
1262   int i;
1263   char **new_argv;
1264   char *p;
1265   for (i = 0; i < argc; i++)
1266     argvsize += strlen (argv[i]) + 1 + sizeof (char *);
1267   new_argv = GNUNET_malloc (argvsize + sizeof (char *));
1268   p = (char *) &new_argv[argc + 1];
1269   for (i = 0; i < argc; i++)
1270   {
1271     new_argv[i] = p;
1272     strcpy (p, argv[i]);
1273     p += strlen (argv[i]) + 1;
1274   }
1275   new_argv[argc] = NULL;
1276   return (char *const *) new_argv;
1277 }
1278
1279
1280 /**
1281  * Returns utf-8 encoded arguments.
1282  * Does nothing (returns a copy of argc and argv) on any platform
1283  * other than W32.
1284  * Returned argv has u8argv[u8argc] == NULL.
1285  * Returned argv is a single memory block, and can be freed with a single
1286  *   GNUNET_free () call.
1287  *
1288  * @param argc argc (as given by main())
1289  * @param argv argv (as given by main())
1290  * @param u8argc a location to store new argc in (though it's th same as argc)
1291  * @param u8argv a location to store new argv in
1292  * @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
1293  */
1294 int
1295 GNUNET_STRINGS_get_utf8_args (int argc, char *const *argv, int *u8argc, char *const **u8argv)
1296 {
1297 #if WINDOWS
1298   wchar_t *wcmd;
1299   wchar_t **wargv;
1300   int wargc;
1301   int i;
1302   char **split_u8argv;
1303
1304   wcmd = GetCommandLineW ();
1305   if (NULL == wcmd)
1306     return GNUNET_SYSERR;
1307   wargv = CommandLineToArgvW (wcmd, &wargc);
1308   if (NULL == wargv)
1309     return GNUNET_SYSERR;
1310
1311   split_u8argv = GNUNET_malloc (argc * sizeof (char *));
1312
1313   for (i = 0; i < wargc; i++)
1314   {
1315     size_t strl;
1316     /* Hopefully it will allocate us NUL-terminated strings... */
1317     split_u8argv[i] = (char *) u16_to_u8 (wargv[i], wcslen (wargv[i]) + 1, NULL, &strl);
1318     if (NULL == split_u8argv[i])
1319     {
1320       int j;
1321       for (j = 0; j < i; j++)
1322         free (split_u8argv[j]);
1323       GNUNET_free (split_u8argv);
1324       LocalFree (wargv);
1325       return GNUNET_SYSERR;
1326     }
1327   }
1328
1329   *u8argv = _make_continuous_arg_copy (wargc, split_u8argv);
1330   *u8argc = wargc;
1331
1332   for (i = 0; i < wargc; i++)
1333     free (split_u8argv[i]);
1334   free (split_u8argv);
1335   return GNUNET_OK;
1336 #else
1337   char *const *new_argv = (char *const *) _make_continuous_arg_copy (argc, argv);
1338   *u8argv = new_argv;
1339   *u8argc = argc;
1340   return GNUNET_OK;
1341 #endif
1342 }
1343
1344
1345 /**
1346  * Parse the given port policy.  The format is
1347  * "[!]SPORT[-DPORT]".
1348  *
1349  * @param port_policy string to parse
1350  * @param pp policy to fill in
1351  * @return #GNUNET_OK on success, #GNUNET_SYSERR if the
1352  *         @a port_policy is malformed
1353  */
1354 static int
1355 parse_port_policy (const char *port_policy,
1356                    struct GNUNET_STRINGS_PortPolicy *pp)
1357 {
1358   const char *pos;
1359   int s;
1360   int e;
1361   char eol[2];
1362
1363   pos = port_policy;
1364   if ('!' == *pos)
1365   {
1366     pp->negate_portrange = GNUNET_YES;
1367     pos++;
1368   }
1369   if (2 == sscanf (pos,
1370                    "%u-%u%1s",
1371                    &s, &e, eol))
1372   {
1373     if ( (0 == s) ||
1374          (s > 0xFFFF) ||
1375          (e < s) ||
1376          (e > 0xFFFF) )
1377     {
1378       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1379                   _("Port not in range\n"));
1380       return GNUNET_SYSERR;
1381     }
1382     pp->start_port = (uint16_t) s;
1383     pp->end_port = (uint16_t) e;
1384     return GNUNET_OK;
1385   }
1386   if (1 == sscanf (pos,
1387                    "%u%1s",
1388                    &s,
1389                    eol))
1390   {
1391     if ( (0 == s) ||
1392          (s > 0xFFFF) )
1393     {
1394       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1395                   _("Port not in range\n"));
1396       return GNUNET_SYSERR;
1397     }
1398
1399     pp->start_port = (uint16_t) s;
1400     pp->end_port = (uint16_t) s;
1401     return GNUNET_OK;
1402   }
1403   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1404               _("Malformed port policy `%s'\n"),
1405               port_policy);
1406   return GNUNET_SYSERR;
1407 }
1408
1409
1410 /**
1411  * Parse an IPv4 network policy. The argument specifies a list of
1412  * subnets. The format is
1413  * <tt>(network[/netmask][:SPORT[-DPORT]];)*</tt> (no whitespace, must
1414  * be terminated with a semicolon). The network must be given in
1415  * dotted-decimal notation. The netmask can be given in CIDR notation
1416  * (/16) or in dotted-decimal (/255.255.0.0).
1417  *
1418  * @param routeListX a string specifying the IPv4 subnets
1419  * @return the converted list, terminated with all zeros;
1420  *         NULL if the synatx is flawed
1421  */
1422 struct GNUNET_STRINGS_IPv4NetworkPolicy *
1423 GNUNET_STRINGS_parse_ipv4_policy (const char *routeListX)
1424 {
1425   unsigned int count;
1426   unsigned int i;
1427   unsigned int j;
1428   unsigned int len;
1429   int cnt;
1430   unsigned int pos;
1431   unsigned int temps[8];
1432   int slash;
1433   struct GNUNET_STRINGS_IPv4NetworkPolicy *result;
1434   int colon;
1435   int end;
1436   char *routeList;
1437
1438   if (NULL == routeListX)
1439     return NULL;
1440   len = strlen (routeListX);
1441   if (0 == len)
1442     return NULL;
1443   routeList = GNUNET_strdup (routeListX);
1444   count = 0;
1445   for (i = 0; i < len; i++)
1446     if (routeList[i] == ';')
1447       count++;
1448   result = GNUNET_malloc (sizeof (struct GNUNET_STRINGS_IPv4NetworkPolicy) * (count + 1));
1449   i = 0;
1450   pos = 0;
1451   while (i < count)
1452   {
1453     for (colon = pos; ':' != routeList[colon]; colon++)
1454       if ( (';' == routeList[colon]) ||
1455            ('\0' == routeList[colon]) )
1456         break;
1457     end = colon;
1458     for (end = colon; ';' != routeList[end]; end++)
1459       if ('\0' == routeList[end])
1460         break;
1461     if ('\0' == routeList[end])
1462       break;
1463     routeList[end] = '\0';
1464     if (':' == routeList[colon])
1465     {
1466       routeList[colon] = '\0';
1467       if (GNUNET_OK != parse_port_policy (&routeList[colon + 1],
1468                                           &result[i].pp))
1469         break;
1470     }
1471     cnt =
1472         SSCANF (&routeList[pos],
1473                 "%u.%u.%u.%u/%u.%u.%u.%u",
1474                 &temps[0],
1475                 &temps[1],
1476                 &temps[2],
1477                 &temps[3],
1478                 &temps[4],
1479                 &temps[5],
1480                 &temps[6],
1481                 &temps[7]);
1482     if (8 == cnt)
1483     {
1484       for (j = 0; j < 8; j++)
1485         if (temps[j] > 0xFF)
1486         {
1487           LOG (GNUNET_ERROR_TYPE_WARNING,
1488                _("Invalid format for IP: `%s'\n"),
1489                &routeList[pos]);
1490           GNUNET_free (result);
1491           GNUNET_free (routeList);
1492           return NULL;
1493         }
1494       result[i].network.s_addr =
1495           htonl ((temps[0] << 24) + (temps[1] << 16) + (temps[2] << 8) +
1496                  temps[3]);
1497       result[i].netmask.s_addr =
1498           htonl ((temps[4] << 24) + (temps[5] << 16) + (temps[6] << 8) +
1499                  temps[7]);
1500       pos = end + 1;
1501       i++;
1502       continue;
1503     }
1504     /* try second notation */
1505     cnt =
1506         SSCANF (&routeList[pos],
1507                 "%u.%u.%u.%u/%u",
1508                 &temps[0],
1509                 &temps[1],
1510                 &temps[2],
1511                 &temps[3],
1512                 &slash);
1513     if (5 == cnt)
1514     {
1515       for (j = 0; j < 4; j++)
1516         if (temps[j] > 0xFF)
1517         {
1518           LOG (GNUNET_ERROR_TYPE_WARNING,
1519                _("Invalid format for IP: `%s'\n"),
1520                &routeList[pos]);
1521           GNUNET_free (result);
1522           GNUNET_free (routeList);
1523           return NULL;
1524         }
1525       result[i].network.s_addr =
1526           htonl ((temps[0] << 24) + (temps[1] << 16) + (temps[2] << 8) +
1527                  temps[3]);
1528       if ((slash <= 32) && (slash >= 0))
1529       {
1530         result[i].netmask.s_addr = 0;
1531         while (slash > 0)
1532         {
1533           result[i].netmask.s_addr =
1534               (result[i].netmask.s_addr >> 1) + 0x80000000;
1535           slash--;
1536         }
1537         result[i].netmask.s_addr = htonl (result[i].netmask.s_addr);
1538         pos = end + 1;
1539         i++;
1540         continue;
1541       }
1542       else
1543       {
1544         LOG (GNUNET_ERROR_TYPE_WARNING,
1545              _("Invalid network notation ('/%d' is not legal in IPv4 CIDR)."),
1546              slash);
1547         GNUNET_free (result);
1548           GNUNET_free (routeList);
1549         return NULL;            /* error */
1550       }
1551     }
1552     /* try third notation */
1553     slash = 32;
1554     cnt =
1555         SSCANF (&routeList[pos],
1556                 "%u.%u.%u.%u",
1557                 &temps[0],
1558                 &temps[1],
1559                 &temps[2],
1560                 &temps[3]);
1561     if (4 == cnt)
1562     {
1563       for (j = 0; j < 4; j++)
1564         if (temps[j] > 0xFF)
1565         {
1566           LOG (GNUNET_ERROR_TYPE_WARNING,
1567                _("Invalid format for IP: `%s'\n"),
1568                &routeList[pos]);
1569           GNUNET_free (result);
1570           GNUNET_free (routeList);
1571           return NULL;
1572         }
1573       result[i].network.s_addr =
1574           htonl ((temps[0] << 24) + (temps[1] << 16) + (temps[2] << 8) +
1575                  temps[3]);
1576       result[i].netmask.s_addr = 0;
1577       while (slash > 0)
1578       {
1579         result[i].netmask.s_addr = (result[i].netmask.s_addr >> 1) + 0x80000000;
1580         slash--;
1581       }
1582       result[i].netmask.s_addr = htonl (result[i].netmask.s_addr);
1583       pos = end + 1;
1584       i++;
1585       continue;
1586     }
1587     LOG (GNUNET_ERROR_TYPE_WARNING,
1588          _("Invalid format for IP: `%s'\n"),
1589          &routeList[pos]);
1590     GNUNET_free (result);
1591     GNUNET_free (routeList);
1592     return NULL;                /* error */
1593   }
1594   if (pos < strlen (routeList))
1595   {
1596     LOG (GNUNET_ERROR_TYPE_WARNING,
1597          _("Invalid format: `%s'\n"),
1598          &routeListX[pos]);
1599     GNUNET_free (result);
1600     GNUNET_free (routeList);
1601     return NULL;                /* oops */
1602   }
1603   GNUNET_free (routeList);
1604   return result;                /* ok */
1605 }
1606
1607
1608 /**
1609  * Parse an IPv6 network policy. The argument specifies a list of
1610  * subnets. The format is <tt>(network[/netmask[:SPORT[-DPORT]]];)*</tt>
1611  * (no whitespace, must be terminated with a semicolon). The network
1612  * must be given in colon-hex notation.  The netmask must be given in
1613  * CIDR notation (/16) or can be omitted to specify a single host.
1614  * Note that the netmask is mandatory if ports are specified.
1615  *
1616  * @param routeListX a string specifying the policy
1617  * @return the converted list, 0-terminated, NULL if the synatx is flawed
1618  */
1619 struct GNUNET_STRINGS_IPv6NetworkPolicy *
1620 GNUNET_STRINGS_parse_ipv6_policy (const char *routeListX)
1621 {
1622   unsigned int count;
1623   unsigned int i;
1624   unsigned int len;
1625   unsigned int pos;
1626   int start;
1627   int slash;
1628   int ret;
1629   char *routeList;
1630   struct GNUNET_STRINGS_IPv6NetworkPolicy *result;
1631   unsigned int bits;
1632   unsigned int off;
1633   int save;
1634   int colon;
1635
1636   if (NULL == routeListX)
1637     return NULL;
1638   len = strlen (routeListX);
1639   if (0 == len)
1640     return NULL;
1641   routeList = GNUNET_strdup (routeListX);
1642   count = 0;
1643   for (i = 0; i < len; i++)
1644     if (';' == routeList[i])
1645       count++;
1646   if (';' != routeList[len - 1])
1647   {
1648     LOG (GNUNET_ERROR_TYPE_WARNING,
1649          _("Invalid network notation (does not end with ';': `%s')\n"),
1650          routeList);
1651     GNUNET_free (routeList);
1652     return NULL;
1653   }
1654
1655   result = GNUNET_malloc (sizeof (struct GNUNET_STRINGS_IPv6NetworkPolicy) * (count + 1));
1656   i = 0;
1657   pos = 0;
1658   while (i < count)
1659   {
1660     start = pos;
1661     while (';' != routeList[pos])
1662       pos++;
1663     slash = pos;
1664     while ((slash >= start) && (routeList[slash] != '/'))
1665       slash--;
1666
1667     if (slash < start)
1668     {
1669       memset (&result[i].netmask,
1670               0xFF,
1671               sizeof (struct in6_addr));
1672       slash = pos;
1673     }
1674     else
1675     {
1676       routeList[pos] = '\0';
1677       for (colon = pos; ':' != routeList[colon]; colon--)
1678         if ('/' == routeList[colon])
1679           break;
1680       if (':' == routeList[colon])
1681       {
1682         routeList[colon] = '\0';
1683         if (GNUNET_OK != parse_port_policy (&routeList[colon + 1],
1684                                             &result[i].pp))
1685         {
1686           GNUNET_free (result);
1687           GNUNET_free (routeList);
1688           return NULL;
1689         }
1690       }
1691       ret = inet_pton (AF_INET6, &routeList[slash + 1], &result[i].netmask);
1692       if (ret <= 0)
1693       {
1694         save = errno;
1695         if ((1 != SSCANF (&routeList[slash + 1], "%u", &bits)) || (bits > 128))
1696         {
1697           if (0 == ret)
1698             LOG (GNUNET_ERROR_TYPE_WARNING,
1699                  _("Wrong format `%s' for netmask\n"),
1700                  &routeList[slash + 1]);
1701           else
1702           {
1703             errno = save;
1704             LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING, "inet_pton");
1705           }
1706           GNUNET_free (result);
1707           GNUNET_free (routeList);
1708           return NULL;
1709         }
1710         off = 0;
1711         while (bits > 8)
1712         {
1713           result[i].netmask.s6_addr[off++] = 0xFF;
1714           bits -= 8;
1715         }
1716         while (bits > 0)
1717         {
1718           result[i].netmask.s6_addr[off] =
1719               (result[i].netmask.s6_addr[off] >> 1) + 0x80;
1720           bits--;
1721         }
1722       }
1723     }
1724     routeList[slash] = '\0';
1725     ret = inet_pton (AF_INET6, &routeList[start], &result[i].network);
1726     if (ret <= 0)
1727     {
1728       if (0 == ret)
1729         LOG (GNUNET_ERROR_TYPE_WARNING,
1730              _("Wrong format `%s' for network\n"),
1731              &routeList[slash + 1]);
1732       else
1733         LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
1734                       "inet_pton");
1735       GNUNET_free (result);
1736       GNUNET_free (routeList);
1737       return NULL;
1738     }
1739     pos++;
1740     i++;
1741   }
1742   GNUNET_free (routeList);
1743   return result;
1744 }
1745
1746
1747 /* end of strings.c */