fix zombie-fest
[oweals/gnunet.git] / src / include / gnunet_strings_lib.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2001-2013 GNUnet e.V.
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @author Christian Grothoff
23  * @author Krista Bennett
24  * @author Gerd Knorr <kraxel@bytesex.org>
25  * @author Ioana Patrascu
26  * @author Tzvetan Horozov
27  *
28  * @file
29  * Strings and string handling functions
30  *
31  * @defgroup strings  Strings library
32  * Strings and string handling functions, including malloc and string tokenizing.
33  * @{
34  */
35
36 #ifndef GNUNET_STRINGS_LIB_H
37 #define GNUNET_STRINGS_LIB_H
38
39 /* we need size_t, and since it can be both unsigned int
40    or unsigned long long, this IS platform dependent;
41    but "stdlib.h" should be portable 'enough' to be
42    unconditionally available... */
43 #include <stdlib.h>
44
45 #ifdef __cplusplus
46 extern "C"
47 {
48 #if 0                           /* keep Emacsens' auto-indent happy */
49 }
50 #endif
51 #endif
52
53 #include "gnunet_time_lib.h"
54
55
56 /**
57  * Convert a given fancy human-readable size to bytes.
58  *
59  * @param fancy_size human readable string (i.e. 1 MB)
60  * @param size set to the size in bytes
61  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
62  */
63 int
64 GNUNET_STRINGS_fancy_size_to_bytes (const char *fancy_size,
65                                     unsigned long long *size);
66
67
68 /**
69  * Convert a given fancy human-readable time to our internal
70  * representation.
71  *
72  * @param fancy_time human readable string (i.e. 1 minute)
73  * @param rtime set to the relative time
74  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
75  */
76 int
77 GNUNET_STRINGS_fancy_time_to_relative (const char *fancy_time,
78                                        struct GNUNET_TIME_Relative *rtime);
79
80
81 /**
82  * @ingroup time
83  * Convert a given fancy human-readable time to our internal
84  * representation.  The human-readable time is expected to be
85  * in local time, whereas the returned value will be in UTC.
86  *
87  * @param fancy_time human readable string (i.e. %Y-%m-%d %H:%M:%S)
88  * @param atime set to the absolute time
89  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
90  */
91 int
92 GNUNET_STRINGS_fancy_time_to_absolute (const char *fancy_time,
93                                        struct GNUNET_TIME_Absolute *atime);
94
95
96 /**
97  * Convert a given filesize into a fancy human-readable format.
98  *
99  * @param size number of bytes
100  * @return fancy representation of the size (possibly rounded) for humans
101  */
102 char *
103 GNUNET_STRINGS_byte_size_fancy (unsigned long long size);
104
105
106 /**
107  * Convert the len characters long character sequence
108  * given in input that is in the given input charset
109  * to a string in given output charset.
110  *
111  * @param input input string
112  * @param len number of bytes in @a input
113  * @param input_charset character set used for @a input
114  * @param output_charset desired character set for the return value
115  * @return the converted string (0-terminated),
116  *  if conversion fails, a copy of the orignal
117  *  string is returned.
118  */
119 char *
120 GNUNET_STRINGS_conv (const char *input, size_t len,
121                      const char *input_charset,
122                      const char *output_charset);
123
124
125 /**
126  * Convert the len characters long character sequence
127  * given in input that is in the given charset
128  * to UTF-8.
129  *
130  * @param input the input string (not necessarily 0-terminated)
131  * @param len the number of bytes in the @a input
132  * @param charset character set to convert from
133  * @return the converted string (0-terminated)
134  */
135 char *
136 GNUNET_STRINGS_to_utf8 (const char *input,
137                         size_t len,
138                         const char *charset);
139
140
141 /**
142  * Convert the len bytes-long UTF-8 string
143  * given in input to the given charset.
144  *
145  * @param input the input string (not necessarily 0-terminated)
146  * @param len the number of bytes in the @a input
147  * @param charset character set to convert to
148  * @return the converted string (0-terminated),
149  *  if conversion fails, a copy of the orignal
150  *  string is returned.
151  */
152 char *
153 GNUNET_STRINGS_from_utf8 (const char *input,
154                           size_t len,
155                           const char *charset);
156
157
158 /**
159  * Convert the utf-8 input string to lower case.
160  * Output needs to be allocated appropriately.
161  *
162  * @param input input string
163  * @param output output buffer
164  */
165 void
166 GNUNET_STRINGS_utf8_tolower (const char *input,
167                              char *output);
168
169
170 /**
171  * Convert the utf-8 input string to upper case.
172  * Output needs to be allocated appropriately.
173  *
174  * @param input input string
175  * @param output output buffer
176  */
177 void
178 GNUNET_STRINGS_utf8_toupper (const char *input,
179                              char *output);
180
181
182 /**
183  * Complete filename (a la shell) from abbrevition.
184  *
185  * @param fil the name of the file, may contain ~/ or
186  *        be relative to the current directory
187  * @return the full file name,
188  *          NULL is returned on error
189  */
190 char *
191 GNUNET_STRINGS_filename_expand (const char *fil);
192
193
194 /**
195  * Fill a buffer of the given size with count 0-terminated strings
196  * (given as varargs).  If "buffer" is NULL, only compute the amount
197  * of space required (sum of "strlen(arg)+1").
198  *
199  * Unlike using "snprintf" with "%s", this function will add
200  * 0-terminators after each string.  The
201  * "GNUNET_string_buffer_tokenize" function can be used to parse the
202  * buffer back into individual strings.
203  *
204  * @param buffer the buffer to fill with strings, can
205  *               be NULL in which case only the necessary
206  *               amount of space will be calculated
207  * @param size number of bytes available in buffer
208  * @param count number of strings that follow
209  * @param ... count 0-terminated strings to copy to buffer
210  * @return number of bytes written to the buffer
211  *         (or number of bytes that would have been written)
212  */
213 size_t
214 GNUNET_STRINGS_buffer_fill (char *buffer,
215                             size_t size,
216                             unsigned int count,
217                             ...);
218
219
220 /**
221  * Given a buffer of a given size, find "count" 0-terminated strings
222  * in the buffer and assign the count (varargs) of type "const char**"
223  * to the locations of the respective strings in the buffer.
224  *
225  * @param buffer the buffer to parse FIXME: not 'const', is it?
226  * @param size size of the @a buffer
227  * @param count number of strings to locate
228  * @param ... pointers to where to store the strings
229  * @return offset of the character after the last 0-termination
230  *         in the buffer, or 0 on error.
231  */
232 unsigned int
233 GNUNET_STRINGS_buffer_tokenize (const char *buffer,
234                                 size_t size,
235                                 unsigned int count, ...);
236
237
238
239 /**
240  * @ingroup time
241  * Like `asctime`, except for GNUnet time.  Converts a GNUnet internal
242  * absolute time (which is in UTC) to a string in local time.
243  * Note that the returned value will be overwritten if this function
244  * is called again.
245  *
246  * @param t the absolute time to convert
247  * @return timestamp in human-readable form in local time
248  */
249 const char *
250 GNUNET_STRINGS_absolute_time_to_string (struct GNUNET_TIME_Absolute t);
251
252
253 /**
254  * @ingroup time
255  * Give relative time in human-readable fancy format.
256  * This is one of the very few calls in the entire API that is
257  * NOT reentrant!
258  *
259  * @param delta time in milli seconds
260  * @param do_round are we allowed to round a bit?
261  * @return string in human-readable form
262  */
263 const char *
264 GNUNET_STRINGS_relative_time_to_string (struct GNUNET_TIME_Relative delta,
265                                         int do_round);
266
267
268 /**
269  * "man basename"
270  * Returns a pointer to a part of filename (allocates nothing)!
271  *
272  * @param filename filename to extract basename from
273  * @return short (base) name of the file (that is, everything following the
274  *         last directory separator in filename. If filename ends with a
275  *         directory separator, the result will be a zero-length string.
276  *         If filename has no directory separators, the result is filename
277  *         itself.
278  */
279 const char *
280 GNUNET_STRINGS_get_short_name (const char *filename);
281
282
283 /**
284  * Convert binary data to ASCII encoding using Base32Hex (RFC 4648).
285  * Does not append 0-terminator, but returns a pointer to the place where
286  * it should be placed, if needed.
287  *
288  * @param data data to encode
289  * @param size size of data (in bytes)
290  * @param out buffer to fill
291  * @param out_size size of the buffer. Must be large enough to hold
292  * ((size*8) + (((size*8) % 5) > 0 ? 5 - ((size*8) % 5) : 0)) / 5
293  * @return pointer to the next byte in 'out' or NULL on error.
294  */
295 char *
296 GNUNET_STRINGS_data_to_string (const void *data,
297                                size_t size,
298                                char *out,
299                                size_t out_size);
300
301
302 /**
303  * Return the base32crockford encoding of the given buffer.
304  *
305  * The returned string will be freshly allocated, and must be free'd
306  * with #GNUNET_free().
307  *
308  * @param buf buffer with data
309  * @param size size of the buffer @a buf
310  * @return freshly allocated, null-terminated string
311  */
312 char *
313 GNUNET_STRINGS_data_to_string_alloc (const void *buf,
314                                      size_t size);
315
316
317 /**
318  * Convert Base32hex encoding back to data.
319  * @a out_size must match exactly the size of the data before it was encoded.
320  *
321  * @param enc the encoding
322  * @param enclen number of characters in @a enc (without 0-terminator, which can be missing)
323  * @param out location where to store the decoded data
324  * @param out_size size of the output buffer @a out
325  * @return #GNUNET_OK on success, #GNUNET_SYSERR if result has the wrong encoding
326  */
327 int
328 GNUNET_STRINGS_string_to_data (const char *enc,
329                                size_t enclen,
330                                void *out,
331                                size_t out_size);
332
333
334 /**
335  * Encode into Base64.
336  *
337  * @param data the data to encode
338  * @param len the length of the input
339  * @param output where to write the output (*output should be NULL,
340  *   is allocated)
341  * @return the size of the output
342  */
343 size_t
344 GNUNET_STRINGS_base64_encode (const char *data, size_t len, char **output);
345
346
347 /**
348  * Decode from Base64.
349  *
350  * @param data the data to encode
351  * @param len the length of the input
352  * @param[out] output where to write the output (*output should be NULL,
353  *   is allocated)
354  * @return the size of the output
355  */
356 size_t
357 GNUNET_STRINGS_base64_decode (const char *data,
358                               size_t len,
359                               char **output);
360
361
362 /**
363  * Parse a path that might be an URI.
364  *
365  * @param path path to parse. Must be NULL-terminated.
366  * @param[out] scheme_part pointer to a string that
367  *        represents the URI scheme will be stored. Can be NULL. The string is
368  *        allocated by the function, and should be freed by GNUNET_free() when
369  *        it is no longer needed.
370  * @param path_part a pointer to 'const char *' where a pointer to the path
371  *        part of the URI will be stored. Can be NULL. Points to the same block
372  *        of memory as @a path, and thus must not be freed. Might point to '\0',
373  *        if path part is zero-length.
374  * @return #GNUNET_YES if it's an URI, #GNUNET_NO otherwise. If 'path' is not
375  *         an URI, '* scheme_part' and '*path_part' will remain unchanged
376  *         (if they weren't NULL).
377  */
378 int
379 GNUNET_STRINGS_parse_uri (const char *path,
380                           char **scheme_part,
381                           const char **path_part);
382
383
384 /**
385  * Check whether filename is absolute or not, and if it's an URI
386  *
387  * @param filename filename to check
388  * @param can_be_uri #GNUNET_YES to check for being URI, #GNUNET_NO - to
389  *        assume it's not URI
390  * @param r_is_uri a pointer to an int that is set to #GNUNET_YES if 'filename'
391  *        is URI and to GNUNET_NO otherwise. Can be NULL. If 'can_be_uri' is
392  *        not #GNUNET_YES, *r_is_uri is set to #GNUNET_NO.
393  * @param r_uri_scheme a pointer to a char * that is set to a pointer to URI scheme.
394  *        The string is allocated by the function, and should be freed with
395  *        GNUNET_free (). Can be NULL.
396  * @return #GNUNET_YES if 'filename' is absolute, #GNUNET_NO otherwise.
397  */
398 int
399 GNUNET_STRINGS_path_is_absolute (const char *filename,
400                                  int can_be_uri,
401                                  int *r_is_uri,
402                                  char **r_uri_scheme);
403
404
405 /**
406  * Flags for what we should check a file for.
407  */
408 enum GNUNET_STRINGS_FilenameCheck
409 {
410   /**
411    * Check that it exists.
412    */
413   GNUNET_STRINGS_CHECK_EXISTS = 0x00000001,
414
415   /**
416    * Check that it is a directory.
417    */
418   GNUNET_STRINGS_CHECK_IS_DIRECTORY = 0x00000002,
419
420   /**
421    * Check that it is a link.
422    */
423   GNUNET_STRINGS_CHECK_IS_LINK = 0x00000004,
424
425   /**
426    * Check that the path is an absolute path.
427    */
428   GNUNET_STRINGS_CHECK_IS_ABSOLUTE = 0x00000008
429 };
430
431
432 /**
433  * Perform checks on @a filename.  FIXME: some duplication with
434  * "GNUNET_DISK_"-APIs.  We should unify those.
435  *
436  * @param filename file to check
437  * @param checks checks to perform
438  * @return #GNUNET_YES if all checks pass, #GNUNET_NO if at least one of them
439  *         fails, #GNUNET_SYSERR when a check can't be performed
440  */
441 int
442 GNUNET_STRINGS_check_filename (const char *filename,
443                                enum GNUNET_STRINGS_FilenameCheck checks);
444
445
446 /**
447  * Tries to convert @a zt_addr string to an IPv6 address.
448  * The string is expected to have the format "[ABCD::01]:80".
449  *
450  * @param zt_addr 0-terminated string. May be mangled by the function.
451  * @param addrlen length of zt_addr (not counting 0-terminator).
452  * @param r_buf a buffer to fill. Initially gets filled with zeroes,
453  *        then its sin6_port, sin6_family and sin6_addr are set appropriately.
454  * @return #GNUNET_OK if conversion succeded. #GNUNET_SYSERR otherwise, in which
455  *         case the contents of r_buf are undefined.
456  */
457 int
458 GNUNET_STRINGS_to_address_ipv6 (const char *zt_addr,
459                                 uint16_t addrlen,
460                                 struct sockaddr_in6 *r_buf);
461
462
463 /**
464  * Tries to convert @a zt_addr string to an IPv4 address.
465  * The string is expected to have the format "1.2.3.4:80".
466  *
467  * @param zt_addr 0-terminated string. May be mangled by the function.
468  * @param addrlen length of zt_addr (not counting 0-terminator).
469  * @param r_buf a buffer to fill.
470  * @return #GNUNET_OK if conversion succeded. #GNUNET_SYSERR otherwise, in which case
471  *         the contents of r_buf are undefined.
472  */
473 int
474 GNUNET_STRINGS_to_address_ipv4 (const char *zt_addr,
475                                 uint16_t addrlen,
476                                 struct sockaddr_in *r_buf);
477
478
479 /**
480  * Parse an address given as a string into a 
481  * `struct sockaddr`.
482  *
483  * @param addr the address
484  * @param[out] af set to the parsed address family (i.e. AF_INET)
485  * @param[out] sa set to the parsed address
486  * @return 0 on error, otherwise number of bytes in @a sa
487  */
488 size_t
489 GNUNET_STRINGS_parse_socket_addr (const char *addr,
490                                   uint8_t *af,
491                                   struct sockaddr **sa);
492
493
494 /**
495  * Tries to convert @a addr string to an IP (v4 or v6) address.
496  * Will automatically decide whether to treat 'addr' as v4 or v6 address.
497  *
498  * @param addr a string, may not be 0-terminated.
499  * @param addrlen number of bytes in @a addr (if addr is 0-terminated,
500  *        0-terminator should not be counted towards addrlen).
501  * @param r_buf a buffer to fill.
502  * @return #GNUNET_OK if conversion succeded. #GNUNET_SYSERR otherwise, in which
503  *         case the contents of r_buf are undefined.
504  */
505 int
506 GNUNET_STRINGS_to_address_ip (const char *addr,
507                               uint16_t addrlen,
508                               struct sockaddr_storage *r_buf);
509
510
511 /**
512  * Returns utf-8 encoded arguments.  Does nothing (returns a copy of
513  * @a argc and @a argv) on any platform other than W32.  Returned @a
514  * argv has `u8argv[u8argc] == NULL`.  Returned @a argv is a single
515  * memory block, and can be freed with a single GNUNET_free() call.
516  *
517  * @param argc argc (as given by main())
518  * @param argv argv (as given by main())
519  * @param u8argc a location to store new argc in (though it's th same as argc)
520  * @param u8argv a location to store new argv in
521  * @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
522  */
523 int
524 GNUNET_STRINGS_get_utf8_args (int argc,
525                               char *const *argv,
526                               int *u8argc,
527                               char *const **u8argv);
528
529
530 /* ***************** IPv4/IPv6 parsing ****************** */
531
532 struct GNUNET_STRINGS_PortPolicy
533 {
534
535   /**
536    * Starting port range (0 if none given).
537    */
538   uint16_t start_port;
539
540   /**
541    * End of port range (0 if none given).
542    */
543   uint16_t end_port;
544
545   /**
546    * #GNUNET_YES if the port range should be negated
547    * ("!" in policy).
548    */
549   int negate_portrange;
550
551 };
552
553
554 /**
555  * @brief IPV4 network in CIDR notation.
556  */
557 struct GNUNET_STRINGS_IPv4NetworkPolicy
558 {
559   /**
560    * IPv4 address.
561    */
562   struct in_addr network;
563
564   /**
565    * IPv4 netmask.
566    */
567   struct in_addr netmask;
568
569   /**
570    * Policy for port access.
571    */
572   struct GNUNET_STRINGS_PortPolicy pp;
573
574 };
575
576
577 /**
578  * @brief network in CIDR notation for IPV6.
579  */
580 struct GNUNET_STRINGS_IPv6NetworkPolicy
581 {
582   /**
583    * IPv6 address.
584    */
585   struct in6_addr network;
586
587   /**
588    * IPv6 netmask.
589    */
590   struct in6_addr netmask;
591
592   /**
593    * Policy for port access.
594    */
595   struct GNUNET_STRINGS_PortPolicy pp;
596
597 };
598
599
600 /**
601  * Parse an IPv4 network policy. The argument specifies a list of
602  * subnets. The format is <tt>(network[/netmask][:[!]SPORT-DPORT];)*</tt>
603  * (no whitespace, must be terminated with a semicolon). The network
604  * must be given in dotted-decimal notation. The netmask can be given
605  * in CIDR notation (/16) or in dotted-decimal (/255.255.0.0).
606  *
607  * @param routeListX a string specifying the IPv4 subnets
608  * @return the converted list, terminated with all zeros;
609  *         NULL if the synatx is flawed
610  */
611 struct GNUNET_STRINGS_IPv4NetworkPolicy *
612 GNUNET_STRINGS_parse_ipv4_policy (const char *routeListX);
613
614
615 /**
616  * Parse an IPv6 network policy. The argument specifies a list of
617  * subnets. The format is <tt>(network[/netmask[:[!]SPORT[-DPORT]]];)*</tt>
618  * (no whitespace, must be terminated with a semicolon). The network
619  * must be given in colon-hex notation.  The netmask must be given in
620  * CIDR notation (/16) or can be omitted to specify a single host.
621  * Note that the netmask is mandatory if ports are specified.
622  *
623  * @param routeListX a string specifying the policy
624  * @return the converted list, 0-terminated, NULL if the synatx is flawed
625  */
626 struct GNUNET_STRINGS_IPv6NetworkPolicy *
627 GNUNET_STRINGS_parse_ipv6_policy (const char *routeListX);
628
629
630
631 #if 0                           /* keep Emacsens' auto-indent happy */
632 {
633 #endif
634 #ifdef __cplusplus
635 }
636 #endif
637
638 /* ifndef GNUNET_UTIL_STRING_H */
639 #endif
640
641 /** @} */  /* end of group */
642
643 /* end of gnunet_util_string.h */