-fix (C) notices
[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
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 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, size_t len, char **output);
358
359
360 /**
361  * Parse a path that might be an URI.
362  *
363  * @param path path to parse. Must be NULL-terminated.
364  * @param scheme_part a pointer to 'char *' where a pointer to a string that
365  *        represents the URI scheme will be stored. Can be NULL. The string is
366  *        allocated by the function, and should be freed by GNUNET_free() when
367  *        it is no longer needed.
368  * @param path_part a pointer to 'const char *' where a pointer to the path
369  *        part of the URI will be stored. Can be NULL. Points to the same block
370  *        of memory as 'path', and thus must not be freed. Might point to '\0',
371  *        if path part is zero-length.
372  * @return #GNUNET_YES if it's an URI, #GNUNET_NO otherwise. If 'path' is not
373  *         an URI, '* scheme_part' and '*path_part' will remain unchanged
374  *         (if they weren't NULL).
375  */
376 int
377 GNUNET_STRINGS_parse_uri (const char *path,
378                           char **scheme_part,
379                           const char **path_part);
380
381
382 /**
383  * Check whether filename is absolute or not, and if it's an URI
384  *
385  * @param filename filename to check
386  * @param can_be_uri #GNUNET_YES to check for being URI, #GNUNET_NO - to
387  *        assume it's not URI
388  * @param r_is_uri a pointer to an int that is set to #GNUNET_YES if 'filename'
389  *        is URI and to GNUNET_NO otherwise. Can be NULL. If 'can_be_uri' is
390  *        not #GNUNET_YES, *r_is_uri is set to #GNUNET_NO.
391  * @param r_uri_scheme a pointer to a char * that is set to a pointer to URI scheme.
392  *        The string is allocated by the function, and should be freed with
393  *        GNUNET_free (). Can be NULL.
394  * @return #GNUNET_YES if 'filename' is absolute, #GNUNET_NO otherwise.
395  */
396 int
397 GNUNET_STRINGS_path_is_absolute (const char *filename,
398                                  int can_be_uri,
399                                  int *r_is_uri,
400                                  char **r_uri_scheme);
401
402
403 /**
404  * Flags for what we should check a file for.
405  */
406 enum GNUNET_STRINGS_FilenameCheck
407 {
408   /**
409    * Check that it exists.
410    */
411   GNUNET_STRINGS_CHECK_EXISTS = 0x00000001,
412
413   /**
414    * Check that it is a directory.
415    */
416   GNUNET_STRINGS_CHECK_IS_DIRECTORY = 0x00000002,
417
418   /**
419    * Check that it is a link.
420    */
421   GNUNET_STRINGS_CHECK_IS_LINK = 0x00000004,
422
423   /**
424    * Check that the path is an absolute path.
425    */
426   GNUNET_STRINGS_CHECK_IS_ABSOLUTE = 0x00000008
427 };
428
429
430 /**
431  * Perform checks on @a filename.  FIXME: some duplication with
432  * "GNUNET_DISK_"-APIs.  We should unify those.
433  *
434  * @param filename file to check
435  * @param checks checks to perform
436  * @return #GNUNET_YES if all checks pass, #GNUNET_NO if at least one of them
437  *         fails, #GNUNET_SYSERR when a check can't be performed
438  */
439 int
440 GNUNET_STRINGS_check_filename (const char *filename,
441                                enum GNUNET_STRINGS_FilenameCheck checks);
442
443
444 /**
445  * Tries to convert @a zt_addr string to an IPv6 address.
446  * The string is expected to have the format "[ABCD::01]:80".
447  *
448  * @param zt_addr 0-terminated string. May be mangled by the function.
449  * @param addrlen length of zt_addr (not counting 0-terminator).
450  * @param r_buf a buffer to fill. Initially gets filled with zeroes,
451  *        then its sin6_port, sin6_family and sin6_addr are set appropriately.
452  * @return #GNUNET_OK if conversion succeded. #GNUNET_SYSERR otherwise, in which
453  *         case the contents of r_buf are undefined.
454  */
455 int
456 GNUNET_STRINGS_to_address_ipv6 (const char *zt_addr,
457                                 uint16_t addrlen,
458                                 struct sockaddr_in6 *r_buf);
459
460
461 /**
462  * Tries to convert @a zt_addr string to an IPv4 address.
463  * The string is expected to have the format "1.2.3.4:80".
464  *
465  * @param zt_addr 0-terminated string. May be mangled by the function.
466  * @param addrlen length of zt_addr (not counting 0-terminator).
467  * @param r_buf a buffer to fill.
468  * @return #GNUNET_OK if conversion succeded. #GNUNET_SYSERR otherwise, in which case
469  *         the contents of r_buf are undefined.
470  */
471 int
472 GNUNET_STRINGS_to_address_ipv4 (const char *zt_addr,
473                                 uint16_t addrlen,
474                                 struct sockaddr_in *r_buf);
475
476
477 /**
478  * Tries to convert @a addr string to an IP (v4 or v6) address.
479  * Will automatically decide whether to treat 'addr' as v4 or v6 address.
480  *
481  * @param addr a string, may not be 0-terminated.
482  * @param addrlen number of bytes in @a addr (if addr is 0-terminated,
483  *        0-terminator should not be counted towards addrlen).
484  * @param r_buf a buffer to fill.
485  * @return #GNUNET_OK if conversion succeded. #GNUNET_SYSERR otherwise, in which
486  *         case the contents of r_buf are undefined.
487  */
488 int
489 GNUNET_STRINGS_to_address_ip (const char *addr,
490                               uint16_t addrlen,
491                               struct sockaddr_storage *r_buf);
492
493
494 /**
495  * Returns utf-8 encoded arguments.  Does nothing (returns a copy of
496  * @a argc and @a argv) on any platform other than W32.  Returned @a
497  * argv has `u8argv[u8argc] == NULL`.  Returned @a argv is a single
498  * memory block, and can be freed with a single GNUNET_free() call.
499  *
500  * @param argc argc (as given by main())
501  * @param argv argv (as given by main())
502  * @param u8argc a location to store new argc in (though it's th same as argc)
503  * @param u8argv a location to store new argv in
504  * @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
505  */
506 int
507 GNUNET_STRINGS_get_utf8_args (int argc,
508                               char *const *argv,
509                               int *u8argc,
510                               char *const **u8argv);
511
512
513 /* ***************** IPv4/IPv6 parsing ****************** */
514
515 struct GNUNET_STRINGS_PortPolicy
516 {
517
518   /**
519    * Starting port range (0 if none given).
520    */
521   uint16_t start_port;
522
523   /**
524    * End of port range (0 if none given).
525    */
526   uint16_t end_port;
527
528   /**
529    * #GNUNET_YES if the port range should be negated
530    * ("!" in policy).
531    */
532   int negate_portrange;
533
534 };
535
536
537 /**
538  * @brief IPV4 network in CIDR notation.
539  */
540 struct GNUNET_STRINGS_IPv4NetworkPolicy
541 {
542   /**
543    * IPv4 address.
544    */
545   struct in_addr network;
546
547   /**
548    * IPv4 netmask.
549    */
550   struct in_addr netmask;
551
552   /**
553    * Policy for port access.
554    */
555   struct GNUNET_STRINGS_PortPolicy pp;
556
557 };
558
559
560 /**
561  * @brief network in CIDR notation for IPV6.
562  */
563 struct GNUNET_STRINGS_IPv6NetworkPolicy
564 {
565   /**
566    * IPv6 address.
567    */
568   struct in6_addr network;
569
570   /**
571    * IPv6 netmask.
572    */
573   struct in6_addr netmask;
574
575   /**
576    * Policy for port access.
577    */
578   struct GNUNET_STRINGS_PortPolicy pp;
579
580 };
581
582
583 /**
584  * Parse an IPv4 network policy. The argument specifies a list of
585  * subnets. The format is <tt>(network[/netmask][:[!]SPORT-DPORT];)*</tt>
586  * (no whitespace, must be terminated with a semicolon). The network
587  * must be given in dotted-decimal notation. The netmask can be given
588  * in CIDR notation (/16) or in dotted-decimal (/255.255.0.0).
589  *
590  * @param routeListX a string specifying the IPv4 subnets
591  * @return the converted list, terminated with all zeros;
592  *         NULL if the synatx is flawed
593  */
594 struct GNUNET_STRINGS_IPv4NetworkPolicy *
595 GNUNET_STRINGS_parse_ipv4_policy (const char *routeListX);
596
597
598 /**
599  * Parse an IPv6 network policy. The argument specifies a list of
600  * subnets. The format is <tt>(network[/netmask[:[!]SPORT[-DPORT]]];)*</tt>
601  * (no whitespace, must be terminated with a semicolon). The network
602  * must be given in colon-hex notation.  The netmask must be given in
603  * CIDR notation (/16) or can be omitted to specify a single host.
604  * Note that the netmask is mandatory if ports are specified.
605  *
606  * @param routeListX a string specifying the policy
607  * @return the converted list, 0-terminated, NULL if the synatx is flawed
608  */
609 struct GNUNET_STRINGS_IPv6NetworkPolicy *
610 GNUNET_STRINGS_parse_ipv6_policy (const char *routeListX);
611
612
613
614 #if 0                           /* keep Emacsens' auto-indent happy */
615 {
616 #endif
617 #ifdef __cplusplus
618 }
619 #endif
620
621 /* ifndef GNUNET_UTIL_STRING_H */
622 #endif
623
624 /** @} */  /* end of group */
625
626 /* end of gnunet_util_string.h */