src/daemon/common.[ch]: Implement the "read_file()" function.
[collectd.git] / src / daemon / common.h
1 /**
2  * collectd - src/common.h
3  * Copyright (C) 2005-2015  Florian octo Forster
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Authors:
24  *   Florian octo Forster <octo at collectd.org>
25  *   Niki W. Waibel <niki.waibel@gmx.net>
26 **/
27
28 #ifndef COMMON_H
29 #define COMMON_H
30
31 #include "collectd.h"
32 #include "plugin.h"
33
34 #if HAVE_PWD_H
35 # include <pwd.h>
36 #endif
37
38 #define sfree(ptr) \
39         do { \
40                 if((ptr) != NULL) { \
41                         free(ptr); \
42                 } \
43                 (ptr) = NULL; \
44         } while (0)
45
46 #define STATIC_ARRAY_SIZE(a) (sizeof (a) / sizeof (*(a)))
47
48 #define IS_TRUE(s) ((strcasecmp ("true", (s)) == 0) \
49                 || (strcasecmp ("yes", (s)) == 0) \
50                 || (strcasecmp ("on", (s)) == 0))
51 #define IS_FALSE(s) ((strcasecmp ("false", (s)) == 0) \
52                 || (strcasecmp ("no", (s)) == 0) \
53                 || (strcasecmp ("off", (s)) == 0))
54
55 struct rate_to_value_state_s
56 {
57   value_t last_value;
58   cdtime_t last_time;
59   gauge_t residual;
60 };
61 typedef struct rate_to_value_state_s rate_to_value_state_t;
62
63 struct value_to_rate_state_s
64 {
65   value_t last_value;
66   cdtime_t last_time;
67 };
68 typedef struct value_to_rate_state_s value_to_rate_state_t;
69
70 char *sstrncpy (char *dest, const char *src, size_t n);
71
72 __attribute__ ((format(printf,3,4)))
73 int ssnprintf (char *dest, size_t n, const char *format, ...);
74
75 __attribute__ ((format(printf,1,2)))
76 char *ssnprintf_alloc (char const *format, ...);
77
78 char *sstrdup(const char *s);
79 void *smalloc(size_t size);
80 char *sstrerror (int errnum, char *buf, size_t buflen);
81
82 /*
83  * NAME
84  *   sread
85  *
86  * DESCRIPTION
87  *   Reads exactly `n' bytes or fails. Syntax and other behavior is analogous
88  *   to `read(2)'. If EOF is received the file descriptor is closed and an
89  *   error is returned.
90  *
91  * PARAMETERS
92  *   `fd'          File descriptor to write to.
93  *   `buf'         Buffer that is to be written.
94  *   `count'       Number of bytes in the buffer.
95  *
96  * RETURN VALUE
97  *   Zero upon success or non-zero if an error occurred. `errno' is set in this
98  *   case.
99  */
100 ssize_t sread (int fd, void *buf, size_t count);
101
102 /* read_file reads the contents of "file" into memory and stores a pointer in
103  * "ret_data", which must be freed by the caller. The number of bytes read is
104  * stored in "ret_data_size". On success, 0 is returned. On failure, an error
105  * code is stored in "errno" and -1 is returned; "ret_data" and "ret_data_size"
106  * are left unmodified. */
107 int read_file (char const *file, void **ret_data, size_t *ret_data_size);
108
109 /*
110  * NAME
111  *   swrite
112  *
113  * DESCRIPTION
114  *   Writes exactly `n' bytes or fails. Syntax and other behavior is analogous
115  *   to `write(2)'.
116  *
117  * PARAMETERS
118  *   `fd'          File descriptor to write to.
119  *   `buf'         Buffer that is to be written.
120  *   `count'       Number of bytes in the buffer.
121  *
122  * RETURN VALUE
123  *   Zero upon success or non-zero if an error occurred. `errno' is set in this
124  *   case.
125  */
126 ssize_t swrite (int fd, const void *buf, size_t count);
127
128 /*
129  * NAME
130  *   strsplit
131  *
132  * DESCRIPTION
133  *   Splits a string into parts and stores pointers to the parts in `fields'.
134  *   The characters split at are: " ", "\t", "\r", and "\n".
135  *
136  * PARAMETERS
137  *   `string'      String to split. This string will be modified. `fields' will
138  *                 contain pointers to parts of this string, so free'ing it
139  *                 will destroy `fields' as well.
140  *   `fields'      Array of strings where pointers to the parts will be stored.
141  *   `size'        Number of elements in the array. No more than `size'
142  *                 pointers will be stored in `fields'.
143  *
144  * RETURN VALUE
145  *    Returns the number of parts stored in `fields'.
146  */
147 int strsplit (char *string, char **fields, size_t size);
148
149 /*
150  * NAME
151  *   strjoin
152  *
153  * DESCRIPTION
154  *   Joins together several parts of a string using `sep' as a separator. This
155  *   is equivalent to the Perl built-in `join'.
156  *
157  * PARAMETERS
158  *   `dst'         Buffer where the result is stored.
159  *   `dst_len'     Length of the destination buffer. No more than this many
160  *                 bytes will be written to the memory pointed to by `dst',
161  *                 including the trailing null-byte.
162  *   `fields'      Array of strings to be joined.
163  *   `fields_num'  Number of elements in the `fields' array.
164  *   `sep'         String to be inserted between any two elements of `fields'.
165  *                 This string is neither prepended nor appended to the result.
166  *                 Instead of passing "" (empty string) one can pass NULL.
167  *
168  * RETURN VALUE
169  *   Returns the number of characters in `dst', NOT including the trailing
170  *   null-byte. If an error occurred (empty array or `dst' too small) a value
171  *   smaller than zero will be returned.
172  */
173 int strjoin (char *dst, size_t dst_len, char **fields, size_t fields_num, const char *sep);
174
175 /*
176  * NAME
177  *   escape_slashes
178  *
179  * DESCRIPTION
180  *   Removes slashes ("/") from "buffer". If buffer contains a single slash,
181  *   the result will be "root". Leading slashes are removed. All other slashes
182  *   are replaced with underscores ("_").
183  *   This function is used by plugin_dispatch_values() to escape all parts of
184  *   the identifier.
185  *
186  * PARAMETERS
187  *   `buffer'         String to be escaped.
188  *   `buffer_size'    Size of the buffer. No more then this many bytes will be
189  *                    written to `buffer', including the trailing null-byte.
190  *
191  * RETURN VALUE
192  *   Returns zero upon success and a value smaller than zero upon failure.
193  */
194 int escape_slashes (char *buffer, size_t buffer_size);
195
196 /**
197  * NAME
198  *   escape_string
199  *
200  * DESCRIPTION
201  *   escape_string quotes and escapes a string to be usable with collectd's
202  *   plain text protocol. "simple" strings are left as they are, for example if
203  *   buffer is 'simple' before the call, it will remain 'simple'. However, if
204  *   buffer contains 'more "complex"' before the call, the returned buffer will
205  *   contain '"more \"complex\""'.
206  *
207  *   If the buffer is too small to contain the escaped string, the string will
208  *   be truncated. However, leading and trailing double quotes, as well as an
209  *   ending null byte are guaranteed.
210  *
211  * RETURN VALUE
212  *   Returns zero on success, even if the string was truncated. Non-zero on
213  *   failure.
214  */
215 int escape_string (char *buffer, size_t buffer_size);
216
217 /*
218  * NAME
219  *   replace_special
220  *
221  * DESCRIPTION
222  *   Replaces any special characters (anything that's not alpha-numeric or a
223  *   dash) with an underscore.
224  *
225  *   E.g. "foo$bar&" would become "foo_bar_".
226  *
227  * PARAMETERS
228  *   `buffer'      String to be handled.
229  *   `buffer_size' Length of the string. The function returns after
230  *                 encountering a null-byte or reading this many bytes.
231  */
232 void replace_special (char *buffer, size_t buffer_size);
233
234 int strsubstitute (char *str, char c_from, char c_to);
235
236 /*
237  * NAME
238  *   strunescape
239  *
240  * DESCRIPTION
241  *   Replaces any escaped characters in a string with the appropriate special
242  *   characters. The following escaped characters are recognized:
243  *
244  *     \t -> <tab>
245  *     \n -> <newline>
246  *     \r -> <carriage return>
247  *
248  *   For all other escacped characters only the backslash will be removed.
249  *
250  * PARAMETERS
251  *   `buf'         String to be unescaped.
252  *   `buf_len'     Length of the string, including the terminating null-byte.
253  *
254  * RETURN VALUE
255  *   Returns zero upon success, a value less than zero else.
256  */
257 int strunescape (char *buf, size_t buf_len);
258
259 /**
260  * Removed trailing newline characters (CR and LF) from buffer, which must be
261  * null terminated. Returns the length of the resulting string.
262  */
263 __attribute__((nonnull (1)))
264 size_t strstripnewline (char *buffer);
265
266 /*
267  * NAME
268  *   timeval_cmp
269  *
270  * DESCRIPTION
271  *   Compare the two time values `tv0' and `tv1' and store the absolut value
272  *   of the difference in the time value pointed to by `delta' if it does not
273  *   equal NULL.
274  *
275  * RETURN VALUE
276  *   Returns an integer less than, equal to, or greater than zero if `tv0' is
277  *   less than, equal to, or greater than `tv1' respectively.
278  */
279 int timeval_cmp (struct timeval tv0, struct timeval tv1, struct timeval *delta);
280
281 /* make sure tv_usec stores less than a second */
282 #define NORMALIZE_TIMEVAL(tv) \
283         do { \
284                 (tv).tv_sec += (tv).tv_usec / 1000000; \
285                 (tv).tv_usec = (tv).tv_usec % 1000000; \
286         } while (0)
287
288 /* make sure tv_sec stores less than a second */
289 #define NORMALIZE_TIMESPEC(tv) \
290         do { \
291                 (tv).tv_sec += (tv).tv_nsec / 1000000000; \
292                 (tv).tv_nsec = (tv).tv_nsec % 1000000000; \
293         } while (0)
294
295 int check_create_dir (const char *file_orig);
296
297 #ifdef HAVE_LIBKSTAT
298 int get_kstat (kstat_t **ksp_ptr, char *module, int instance, char *name);
299 long long get_kstat_value (kstat_t *ksp, char *name);
300 #endif
301
302 #ifndef HAVE_HTONLL
303 unsigned long long ntohll (unsigned long long n);
304 unsigned long long htonll (unsigned long long n);
305 #endif
306
307 #if FP_LAYOUT_NEED_NOTHING
308 # define ntohd(d) (d)
309 # define htond(d) (d)
310 #elif FP_LAYOUT_NEED_ENDIANFLIP || FP_LAYOUT_NEED_INTSWAP
311 double ntohd (double d);
312 double htond (double d);
313 #else
314 # error "Don't know how to convert between host and network representation of doubles."
315 #endif
316
317 int format_name (char *ret, int ret_len,
318                 const char *hostname,
319                 const char *plugin, const char *plugin_instance,
320                 const char *type, const char *type_instance);
321 #define FORMAT_VL(ret, ret_len, vl) \
322         format_name (ret, ret_len, (vl)->host, (vl)->plugin, (vl)->plugin_instance, \
323                         (vl)->type, (vl)->type_instance)
324 int format_values (char *ret, size_t ret_len,
325                 const data_set_t *ds, const value_list_t *vl,
326                 _Bool store_rates);
327
328 int parse_identifier (char *str, char **ret_host,
329                 char **ret_plugin, char **ret_plugin_instance,
330                 char **ret_type, char **ret_type_instance);
331 int parse_identifier_vl (const char *str, value_list_t *vl);
332 int parse_value (const char *value, value_t *ret_value, int ds_type);
333 int parse_values (char *buffer, value_list_t *vl, const data_set_t *ds);
334
335 #if !HAVE_GETPWNAM_R
336 int getpwnam_r (const char *name, struct passwd *pwbuf, char *buf,
337                 size_t buflen, struct passwd **pwbufp);
338 #endif
339
340 int notification_init (notification_t *n, int severity, const char *message,
341                 const char *host,
342                 const char *plugin, const char *plugin_instance,
343                 const char *type, const char *type_instance);
344 #define NOTIFICATION_INIT_VL(n, vl) \
345         notification_init (n, NOTIF_FAILURE, NULL, \
346                         (vl)->host, (vl)->plugin, (vl)->plugin_instance, \
347                         (vl)->type, (vl)->type_instance)
348
349 typedef int (*dirwalk_callback_f)(const char *dirname, const char *filename,
350                 void *user_data);
351 int walk_directory (const char *dir, dirwalk_callback_f callback,
352                 void *user_data, int hidden);
353 /* Returns the number of bytes read or negative on error. */
354 ssize_t read_file_contents (char const *filename, char *buf, size_t bufsize);
355
356 counter_t counter_diff (counter_t old_value, counter_t new_value);
357
358 /* Convert a rate back to a value_t. When converting to a derive_t, counter_t
359  * or absoltue_t, take fractional residuals into account. This is important
360  * when scaling counters, for example.
361  * Returns zero on success. Returns EAGAIN when called for the first time; in
362  * this case the value_t is invalid and the next call should succeed. Other
363  * return values indicate an error. */
364 int rate_to_value (value_t *ret_value, gauge_t rate,
365                 rate_to_value_state_t *state, int ds_type, cdtime_t t);
366
367 int value_to_rate (value_t *ret_rate, derive_t value,
368                 value_to_rate_state_t *state, int ds_type, cdtime_t t);
369
370 /* Converts a service name (a string) to a port number
371  * (in the range [1-65535]). Returns less than zero on error. */
372 int service_name_to_port_number (const char *service_name);
373
374 /** Parse a string to a derive_t value. Returns zero on success or non-zero on
375  * failure. If failure is returned, ret_value is not touched. */
376 int strtoderive (const char *string, derive_t *ret_value);
377
378 /** Parse a string to a gauge_t value. Returns zero on success or non-zero on
379  * failure. If failure is returned, ret_value is not touched. */
380 int strtogauge (const char *string, gauge_t *ret_value);
381
382 int strarray_add (char ***ret_array, size_t *ret_array_len, char const *str);
383 void strarray_free (char **array, size_t array_len);
384
385 #endif /* COMMON_H */