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