hostapd
os.h
1 /*
2  * OS specific functions
3  * Copyright (c) 2005-2009, Jouni Malinen <j@w1.fi>
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8 
9 #ifndef OS_H
10 #define OS_H
11 
12 typedef long os_time_t;
13 
19 void os_sleep(os_time_t sec, os_time_t usec);
20 
21 struct os_time {
22  os_time_t sec;
23  os_time_t usec;
24 };
25 
26 struct os_reltime {
27  os_time_t sec;
28  os_time_t usec;
29 };
30 
36 int os_get_time(struct os_time *t);
37 
43 int os_get_reltime(struct os_reltime *t);
44 
45 
46 /* Helpers for handling struct os_time */
47 
48 static inline int os_time_before(struct os_time *a, struct os_time *b)
49 {
50  return (a->sec < b->sec) ||
51  (a->sec == b->sec && a->usec < b->usec);
52 }
53 
54 
55 static inline void os_time_sub(struct os_time *a, struct os_time *b,
56  struct os_time *res)
57 {
58  res->sec = a->sec - b->sec;
59  res->usec = a->usec - b->usec;
60  if (res->usec < 0) {
61  res->sec--;
62  res->usec += 1000000;
63  }
64 }
65 
66 
67 /* Helpers for handling struct os_reltime */
68 
69 static inline int os_reltime_before(struct os_reltime *a,
70  struct os_reltime *b)
71 {
72  return (a->sec < b->sec) ||
73  (a->sec == b->sec && a->usec < b->usec);
74 }
75 
76 
77 static inline void os_reltime_sub(struct os_reltime *a, struct os_reltime *b,
78  struct os_reltime *res)
79 {
80  res->sec = a->sec - b->sec;
81  res->usec = a->usec - b->usec;
82  if (res->usec < 0) {
83  res->sec--;
84  res->usec += 1000000;
85  }
86 }
87 
88 
89 static inline void os_reltime_age(struct os_reltime *start,
90  struct os_reltime *age)
91 {
92  struct os_reltime now;
93 
94  os_get_reltime(&now);
95  os_reltime_sub(&now, start, age);
96 }
97 
98 
99 static inline int os_reltime_expired(struct os_reltime *now,
100  struct os_reltime *ts,
101  os_time_t timeout_secs)
102 {
103  struct os_reltime age;
104 
105  os_reltime_sub(now, ts, &age);
106  return (age.sec > timeout_secs) ||
107  (age.sec == timeout_secs && age.usec > 0);
108 }
109 
110 
111 static inline int os_reltime_initialized(struct os_reltime *t)
112 {
113  return t->sec != 0 || t->usec != 0;
114 }
115 
116 
132 int os_mktime(int year, int month, int day, int hour, int min, int sec,
133  os_time_t *t);
134 
135 struct os_tm {
136  int sec; /* 0..59 or 60 for leap seconds */
137  int min; /* 0..59 */
138  int hour; /* 0..23 */
139  int day; /* 1..31 */
140  int month; /* 1..12 */
141  int year; /* Four digit year */
142 };
143 
144 int os_gmtime(os_time_t t, struct os_tm *tm);
145 
151 int os_daemonize(const char *pid_file);
152 
157 void os_daemonize_terminate(const char *pid_file);
158 
165 int os_get_random(unsigned char *buf, size_t len);
166 
171 unsigned long os_random(void);
172 
186 char * os_rel2abs_path(const char *rel_path);
187 
196 int os_program_init(void);
197 
206 void os_program_deinit(void);
207 
218 int os_setenv(const char *name, const char *value, int overwrite);
219 
228 int os_unsetenv(const char *name);
229 
240 char * os_readfile(const char *name, size_t *len);
241 
247 int os_file_exists(const char *fname);
248 
254 int os_fdatasync(FILE *stream);
255 
263 void * os_zalloc(size_t size);
264 
277 static inline void * os_calloc(size_t nmemb, size_t size)
278 {
279  if (size && nmemb > (~(size_t) 0) / size)
280  return NULL;
281  return os_zalloc(nmemb * size);
282 }
283 
284 
285 /*
286  * The following functions are wrapper for standard ANSI C or POSIX functions.
287  * By default, they are just defined to use the standard function name and no
288  * os_*.c implementation is needed for them. This avoids extra function calls
289  * by allowing the C pre-processor take care of the function name mapping.
290  *
291  * If the target system uses a C library that does not provide these functions,
292  * build_config.h can be used to define the wrappers to use a different
293  * function name. This can be done on function-by-function basis since the
294  * defines here are only used if build_config.h does not define the os_* name.
295  * If needed, os_*.c file can be used to implement the functions that are not
296  * included in the C library on the target system. Alternatively,
297  * OS_NO_C_LIB_DEFINES can be defined to skip all defines here in which case
298  * these functions need to be implemented in os_*.c file for the target system.
299  */
300 
301 #ifdef OS_NO_C_LIB_DEFINES
302 
310 void * os_malloc(size_t size);
311 
322 void * os_realloc(void *ptr, size_t size);
323 
328 void os_free(void *ptr);
329 
340 void * os_memcpy(void *dest, const void *src, size_t n);
341 
351 void * os_memmove(void *dest, const void *src, size_t n);
352 
360 void * os_memset(void *s, int c, size_t n);
361 
371 int os_memcmp(const void *s1, const void *s2, size_t n);
372 
380 char * os_strdup(const char *s);
381 
387 size_t os_strlen(const char *s);
388 
396 int os_strcasecmp(const char *s1, const char *s2);
397 
407 int os_strncasecmp(const char *s1, const char *s2, size_t n);
408 
415 char * os_strchr(const char *s, int c);
416 
423 char * os_strrchr(const char *s, int c);
424 
432 int os_strcmp(const char *s1, const char *s2);
433 
443 int os_strncmp(const char *s1, const char *s2, size_t n);
444 
451 char * os_strstr(const char *haystack, const char *needle);
452 
474 int os_snprintf(char *str, size_t size, const char *format, ...);
475 
476 #else /* OS_NO_C_LIB_DEFINES */
477 
478 #ifdef WPA_TRACE
479 void * os_malloc(size_t size);
480 void * os_realloc(void *ptr, size_t size);
481 void os_free(void *ptr);
482 char * os_strdup(const char *s);
483 #else /* WPA_TRACE */
484 #ifndef os_malloc
485 #define os_malloc(s) malloc((s))
486 #endif
487 #ifndef os_realloc
488 #define os_realloc(p, s) realloc((p), (s))
489 #endif
490 #ifndef os_free
491 #define os_free(p) free((p))
492 #endif
493 #ifndef os_strdup
494 #ifdef _MSC_VER
495 #define os_strdup(s) _strdup(s)
496 #else
497 #define os_strdup(s) strdup(s)
498 #endif
499 #endif
500 #endif /* WPA_TRACE */
501 
502 #ifndef os_memcpy
503 #define os_memcpy(d, s, n) memcpy((d), (s), (n))
504 #endif
505 #ifndef os_memmove
506 #define os_memmove(d, s, n) memmove((d), (s), (n))
507 #endif
508 #ifndef os_memset
509 #define os_memset(s, c, n) memset(s, c, n)
510 #endif
511 #ifndef os_memcmp
512 #define os_memcmp(s1, s2, n) memcmp((s1), (s2), (n))
513 #endif
514 
515 #ifndef os_strlen
516 #define os_strlen(s) strlen(s)
517 #endif
518 #ifndef os_strcasecmp
519 #ifdef _MSC_VER
520 #define os_strcasecmp(s1, s2) _stricmp((s1), (s2))
521 #else
522 #define os_strcasecmp(s1, s2) strcasecmp((s1), (s2))
523 #endif
524 #endif
525 #ifndef os_strncasecmp
526 #ifdef _MSC_VER
527 #define os_strncasecmp(s1, s2, n) _strnicmp((s1), (s2), (n))
528 #else
529 #define os_strncasecmp(s1, s2, n) strncasecmp((s1), (s2), (n))
530 #endif
531 #endif
532 #ifndef os_strchr
533 #define os_strchr(s, c) strchr((s), (c))
534 #endif
535 #ifndef os_strcmp
536 #define os_strcmp(s1, s2) strcmp((s1), (s2))
537 #endif
538 #ifndef os_strncmp
539 #define os_strncmp(s1, s2, n) strncmp((s1), (s2), (n))
540 #endif
541 #ifndef os_strrchr
542 #define os_strrchr(s, c) strrchr((s), (c))
543 #endif
544 #ifndef os_strstr
545 #define os_strstr(h, n) strstr((h), (n))
546 #endif
547 
548 #ifndef os_snprintf
549 #ifdef _MSC_VER
550 #define os_snprintf _snprintf
551 #else
552 #define os_snprintf snprintf
553 #endif
554 #endif
555 
556 #endif /* OS_NO_C_LIB_DEFINES */
557 
558 
559 static inline int os_snprintf_error(size_t size, int res)
560 {
561  return res < 0 || (unsigned int) res >= size;
562 }
563 
564 
565 static inline void * os_realloc_array(void *ptr, size_t nmemb, size_t size)
566 {
567  if (size && nmemb > (~(size_t) 0) / size)
568  return NULL;
569  return os_realloc(ptr, nmemb * size);
570 }
571 
579 static inline void os_remove_in_array(void *ptr, size_t nmemb, size_t size,
580  size_t idx)
581 {
582  if (idx < nmemb - 1)
583  os_memmove(((unsigned char *) ptr) + idx * size,
584  ((unsigned char *) ptr) + (idx + 1) * size,
585  (nmemb - idx - 1) * size);
586 }
587 
598 size_t os_strlcpy(char *dest, const char *src, size_t siz);
599 
615 int os_memcmp_const(const void *a, const void *b, size_t len);
616 
624 int os_exec(const char *program, const char *arg, int wait_completion);
625 
626 
627 #ifdef OS_REJECT_C_LIB_FUNCTIONS
628 #define malloc OS_DO_NOT_USE_malloc
629 #define realloc OS_DO_NOT_USE_realloc
630 #define free OS_DO_NOT_USE_free
631 #define memcpy OS_DO_NOT_USE_memcpy
632 #define memmove OS_DO_NOT_USE_memmove
633 #define memset OS_DO_NOT_USE_memset
634 #define memcmp OS_DO_NOT_USE_memcmp
635 #undef strdup
636 #define strdup OS_DO_NOT_USE_strdup
637 #define strlen OS_DO_NOT_USE_strlen
638 #define strcasecmp OS_DO_NOT_USE_strcasecmp
639 #define strncasecmp OS_DO_NOT_USE_strncasecmp
640 #undef strchr
641 #define strchr OS_DO_NOT_USE_strchr
642 #undef strcmp
643 #define strcmp OS_DO_NOT_USE_strcmp
644 #undef strncmp
645 #define strncmp OS_DO_NOT_USE_strncmp
646 #undef strncpy
647 #define strncpy OS_DO_NOT_USE_strncpy
648 #define strrchr OS_DO_NOT_USE_strrchr
649 #define strstr OS_DO_NOT_USE_strstr
650 #undef snprintf
651 #define snprintf OS_DO_NOT_USE_snprintf
652 
653 #define strcpy OS_DO_NOT_USE_strcpy
654 #endif /* OS_REJECT_C_LIB_FUNCTIONS */
655 
656 
657 #if defined(WPA_TRACE_BFD) && defined(CONFIG_TESTING_OPTIONS)
658 #define TEST_FAIL() testing_test_fail()
659 int testing_test_fail(void);
660 extern char wpa_trace_fail_func[256];
661 extern unsigned int wpa_trace_fail_after;
662 extern char wpa_trace_test_fail_func[256];
663 extern unsigned int wpa_trace_test_fail_after;
664 #else
665 #define TEST_FAIL() 0
666 #endif
667 
668 #endif /* OS_H */
Definition: os.h:21
Definition: os.h:135
Definition: os.h:26