2 * wpa_supplicant/hostapd / OS specific functions
3 * Copyright (c) 2005-2006, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
18 typedef long os_time_t
;
21 * os_sleep - Sleep (sec, usec)
22 * @sec: Number of seconds to sleep
23 * @usec: Number of microseconds to sleep
25 void os_sleep(os_time_t sec
, os_time_t usec
);
33 * os_get_time - Get current time (sec, usec)
34 * @t: Pointer to buffer for the time
35 * Returns: 0 on success, -1 on failure
37 int os_get_time(struct os_time
*t
);
40 /* Helper macros for handling struct os_time */
42 #define os_time_before(a, b) \
43 ((a)->sec < (b)->sec || \
44 ((a)->sec == (b)->sec && (a)->usec < (b)->usec))
46 #define os_time_sub(a, b, res) do { \
47 (res)->sec = (a)->sec - (b)->sec; \
48 (res)->usec = (a)->usec - (b)->usec; \
49 if ((res)->usec < 0) { \
51 (res)->usec += 1000000; \
56 * os_mktime - Convert broken-down time into seconds since 1970-01-01
57 * @year: Four digit year
58 * @month: Month (1 .. 12)
59 * @day: Day of month (1 .. 31)
60 * @hour: Hour (0 .. 23)
61 * @min: Minute (0 .. 59)
62 * @sec: Second (0 .. 60)
63 * @t: Buffer for returning calendar time representation (seconds since
64 * 1970-01-01 00:00:00)
65 * Returns: 0 on success, -1 on failure
67 int os_mktime(int year
, int month
, int day
, int hour
, int min
, int sec
,
72 * os_daemonize - Run in the background (detach from the controlling terminal)
73 * @pid_file: File name to write the process ID to or %NULL to skip this
74 * Returns: 0 on success, -1 on failure
76 int os_daemonize(const char *pid_file
);
79 * os_daemonize_terminate - Stop running in the background (remove pid file)
80 * @pid_file: File name to write the process ID to or %NULL to skip this
82 void os_daemonize_terminate(const char *pid_file
);
85 * os_get_random - Get cryptographically strong pseudo random data
86 * @buf: Buffer for pseudo random data
87 * @len: Length of the buffer
88 * Returns: 0 on success, -1 on failure
90 int os_get_random(unsigned char *buf
, size_t len
);
93 * os_random - Get pseudo random value (not necessarily very strong)
94 * Returns: Pseudo random value
96 unsigned long os_random(void);
99 * os_rel2abs_path - Get an absolute path for a file
100 * @rel_path: Relative path to a file
101 * Returns: Absolute path for the file or %NULL on failure
103 * This function tries to convert a relative path of a file to an absolute path
104 * in order for the file to be found even if current working directory has
105 * changed. The returned value is allocated and caller is responsible for
106 * freeing it. It is acceptable to just return the same path in an allocated
107 * buffer, e.g., return strdup(rel_path). This function is only used to find
108 * configuration files when os_daemonize() may have changed the current working
109 * directory and relative path would be pointing to a different location.
111 char * os_rel2abs_path(const char *rel_path
);
114 * os_program_init - Program initialization (called at start)
115 * Returns: 0 on success, -1 on failure
117 * This function is called when a programs starts. If there are any OS specific
118 * processing that is needed, it can be placed here. It is also acceptable to
119 * just return 0 if not special processing is needed.
121 int os_program_init(void);
124 * os_program_deinit - Program deinitialization (called just before exit)
126 * This function is called just before a program exists. If there are any OS
127 * specific processing, e.g., freeing resourced allocated in os_program_init(),
128 * it should be done here. It is also acceptable for this function to do
131 void os_program_deinit(void);
134 * os_setenv - Set environment variable
135 * @name: Name of the variable
136 * @value: Value to set to the variable
137 * @overwrite: Whether existing variable should be overwritten
138 * Returns: 0 on success, -1 on error
140 * This function is only used for wpa_cli action scripts. OS wrapper does not
141 * need to implement this if such functionality is not needed.
143 int os_setenv(const char *name
, const char *value
, int overwrite
);
146 * os_unsetenv - Delete environent variable
147 * @name: Name of the variable
148 * Returns: 0 on success, -1 on error
150 * This function is only used for wpa_cli action scripts. OS wrapper does not
151 * need to implement this if such functionality is not needed.
153 int os_unsetenv(const char *name
);
156 * os_readfile - Read a file to an allocated memory buffer
157 * @name: Name of the file to read
158 * @len: For returning the length of the allocated buffer
159 * Returns: Pointer to the allocated buffer or %NULL on failure
161 * This function allocates memory and reads the given file to this buffer. Both
162 * binary and text files can be read with this function. The caller is
163 * responsible for freeing the returned buffer with os_free().
165 char * os_readfile(const char *name
, size_t *len
);
168 * os_zalloc - Allocate and zero memory
169 * @size: Number of bytes to allocate
170 * Returns: Pointer to allocated and zeroed memory or %NULL on failure
172 * Caller is responsible for freeing the returned buffer with os_free().
174 void * os_zalloc(size_t size
);
178 * The following functions are wrapper for standard ANSI C or POSIX functions.
179 * By default, they are just defined to use the standard function name and no
180 * os_*.c implementation is needed for them. This avoids extra function calls
181 * by allowing the C pre-processor take care of the function name mapping.
183 * If the target system uses a C library that does not provide these functions,
184 * build_config.h can be used to define the wrappers to use a different
185 * function name. This can be done on function-by-function basis since the
186 * defines here are only used if build_config.h does not define the os_* name.
187 * If needed, os_*.c file can be used to implement the functions that are not
188 * included in the C library on the target system. Alternatively,
189 * OS_NO_C_LIB_DEFINES can be defined to skip all defines here in which case
190 * these functions need to be implemented in os_*.c file for the target system.
193 #ifdef OS_NO_C_LIB_DEFINES
196 * os_malloc - Allocate dynamic memory
197 * @size: Size of the buffer to allocate
198 * Returns: Allocated buffer or %NULL on failure
200 * Caller is responsible for freeing the returned buffer with os_free().
202 void * os_malloc(size_t size
);
205 * os_realloc - Re-allocate dynamic memory
206 * @ptr: Old buffer from os_malloc() or os_realloc()
207 * @size: Size of the new buffer
208 * Returns: Allocated buffer or %NULL on failure
210 * Caller is responsible for freeing the returned buffer with os_free().
211 * If re-allocation fails, %NULL is returned and the original buffer (ptr) is
212 * not freed and caller is still responsible for freeing it.
214 void * os_realloc(void *ptr
, size_t size
);
217 * os_free - Free dynamic memory
218 * @ptr: Old buffer from os_malloc() or os_realloc(); can be %NULL
220 void os_free(void *ptr
);
223 * os_memcpy - Copy memory area
226 * @n: Number of bytes to copy
229 * The memory areas src and dst must not overlap. os_memmove() can be used with
230 * overlapping memory.
232 void * os_memcpy(void *dest
, const void *src
, size_t n
);
235 * os_memmove - Copy memory area
238 * @n: Number of bytes to copy
241 * The memory areas src and dst may overlap.
243 void * os_memmove(void *dest
, const void *src
, size_t n
);
246 * os_memset - Fill memory with a constant byte
247 * @s: Memory area to be filled
249 * @n: Number of bytes started from s to fill with c
252 void * os_memset(void *s
, int c
, size_t n
);
255 * os_memcmp - Compare memory areas
258 * @n: Maximum numbers of octets to compare
259 * Returns: An integer less than, equal to, or greater than zero if s1 is
260 * found to be less than, to match, or be greater than s2. Only first n
261 * characters will be compared.
263 int os_memcmp(const void *s1
, const void *s2
, size_t n
);
266 * os_strdup - Duplicate a string
268 * Returns: Allocated buffer with the string copied into it or %NULL on failure
270 * Caller is responsible for freeing the returned buffer with os_free().
272 char * os_strdup(const char *s
);
275 * os_strlen - Calculate the length of a string
276 * @s: '\0' terminated string
277 * Returns: Number of characters in s (not counting the '\0' terminator)
279 size_t os_strlen(const char *s
);
282 * os_strcasecmp - Compare two strings ignoring case
285 * Returns: An integer less than, equal to, or greater than zero if s1 is
286 * found to be less than, to match, or be greatred than s2
288 int os_strcasecmp(const char *s1
, const char *s2
);
291 * os_strncasecmp - Compare two strings ignoring case
294 * @n: Maximum numbers of characters to compare
295 * Returns: An integer less than, equal to, or greater than zero if s1 is
296 * found to be less than, to match, or be greater than s2. Only first n
297 * characters will be compared.
299 int os_strncasecmp(const char *s1
, const char *s2
, size_t n
);
302 * os_strchr - Locate the first occurrence of a character in string
304 * @c: Character to search for
305 * Returns: Pointer to the matched character or %NULL if not found
307 char * os_strchr(const char *s
, int c
);
310 * os_strrchr - Locate the last occurrence of a character in string
312 * @c: Character to search for
313 * Returns: Pointer to the matched character or %NULL if not found
315 char * os_strrchr(const char *s
, int c
);
318 * os_strcmp - Compare two strings
321 * Returns: An integer less than, equal to, or greater than zero if s1 is
322 * found to be less than, to match, or be greatred than s2
324 int os_strcmp(const char *s1
, const char *s2
);
327 * os_strncmp - Compare two strings
330 * @n: Maximum numbers of characters to compare
331 * Returns: An integer less than, equal to, or greater than zero if s1 is
332 * found to be less than, to match, or be greater than s2. Only first n
333 * characters will be compared.
335 int os_strncmp(const char *s1
, const char *s2
, size_t n
);
338 * os_strncpy - Copy a string
341 * @n: Maximum number of characters to copy
344 char * os_strncpy(char *dest
, const char *src
, size_t n
);
347 * os_strstr - Locate a substring
348 * @haystack: String (haystack) to search from
349 * @needle: Needle to search from haystack
350 * Returns: Pointer to the beginning of the substring or %NULL if not found
352 char * os_strstr(const char *haystack
, const char *needle
);
355 * os_snprintf - Print to a memory buffer
356 * @str: Memory buffer to print into
357 * @size: Maximum length of the str buffer
358 * @format: printf format
359 * Returns: Number of characters printed (not including trailing '\0').
361 * If the output buffer is truncated, number of characters which would have
362 * been written is returned. Since some C libraries return -1 in such a case,
363 * the caller must be prepared on that value, too, to indicate truncation.
365 * Note: Some C library implementations of snprintf() may not guarantee null
366 * termination in case the output is truncated. The OS wrapper function of
367 * os_snprintf() should provide this guarantee, i.e., to null terminate the
368 * output buffer if a C library version of the function is used and if that
369 * function does not guarantee null termination.
371 * If the target system does not include snprintf(), see, e.g.,
372 * http://www.ijs.si/software/snprintf/ for an example of a portable
373 * implementation of snprintf.
375 int os_snprintf(char *str
, size_t size
, const char *format
, ...);
377 #else /* OS_NO_C_LIB_DEFINES */
380 #define os_malloc(s) malloc((s))
383 #define os_realloc(p, s) realloc((p), (s))
386 #define os_free(p) free((p))
390 #define os_memcpy(d, s, n) memcpy((d), (s), (n))
393 #define os_memmove(d, s, n) memmove((d), (s), (n))
396 #define os_memset(s, c, n) memset(s, c, n)
399 #define os_memcmp(s1, s2, n) memcmp((s1), (s2), (n))
404 #define os_strdup(s) _strdup(s)
406 #define os_strdup(s) strdup(s)
410 #define os_strlen(s) strlen(s)
412 #ifndef os_strcasecmp
414 #define os_strcasecmp(s1, s2) _stricmp((s1), (s2))
416 #define os_strcasecmp(s1, s2) strcasecmp((s1), (s2))
419 #ifndef os_strncasecmp
421 #define os_strncasecmp(s1, s2, n) _strnicmp((s1), (s2), (n))
423 #define os_strncasecmp(s1, s2, n) strncasecmp((s1), (s2), (n))
427 #define os_strchr(s, c) strchr((s), (c))
430 #define os_strcmp(s1, s2) strcmp((s1), (s2))
433 #define os_strncmp(s1, s2, n) strncmp((s1), (s2), (n))
436 #define os_strncpy(d, s, n) strncpy((d), (s), (n))
439 #define os_strrchr(s, c) strrchr((s), (c))
442 #define os_strstr(h, n) strstr((h), (n))
447 #define os_snprintf _snprintf
449 #define os_snprintf snprintf
453 #endif /* OS_NO_C_LIB_DEFINES */
456 #ifdef OS_REJECT_C_LIB_FUNCTIONS
457 #define malloc OS_DO_NOT_USE_malloc
458 #define realloc OS_DO_NOT_USE_realloc
459 #define free OS_DO_NOT_USE_free
460 #define memcpy OS_DO_NOT_USE_memcpy
461 #define memmove OS_DO_NOT_USE_memmove
462 #define memset OS_DO_NOT_USE_memset
463 #define memcmp OS_DO_NOT_USE_memcmp
465 #define strdup OS_DO_NOT_USE_strdup
466 #define strlen OS_DO_NOT_USE_strlen
467 #define strcasecmp OS_DO_NOT_USE_strcasecmp
468 #define strncasecmp OS_DO_NOT_USE_strncasecmp
470 #define strchr OS_DO_NOT_USE_strchr
472 #define strcmp OS_DO_NOT_USE_strcmp
474 #define strncmp OS_DO_NOT_USE_strncmp
476 #define strncpy OS_DO_NOT_USE_strncpy
477 #define strrchr OS_DO_NOT_USE_strrchr
478 #define strstr OS_DO_NOT_USE_strstr
480 #define snprintf OS_DO_NOT_USE_snprintf
482 #define strcpy OS_DO_NOT_USE_strcpy
483 #endif /* OS_REJECT_C_LIB_FUNCTIONS */