Reduce amount of macro magic. Use the same special characters as nroff
[netbsd-mini2440.git] / dist / wpa / src / utils / os_unix.c
blob94e16a949a7d26d9c0f14122034437e9ef3e149c
1 /*
2 * wpa_supplicant/hostapd / OS specific functions for UNIX/POSIX systems
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
10 * license.
12 * See README and COPYING for more details.
15 #include "includes.h"
17 #include "os.h"
19 void os_sleep(os_time_t sec, os_time_t usec)
21 if (sec)
22 sleep(sec);
23 if (usec)
24 usleep(usec);
28 int os_get_time(struct os_time *t)
30 int res;
31 struct timeval tv;
32 res = gettimeofday(&tv, NULL);
33 t->sec = tv.tv_sec;
34 t->usec = tv.tv_usec;
35 return res;
39 int os_mktime(int year, int month, int day, int hour, int min, int sec,
40 os_time_t *t)
42 struct tm tm, *tm1;
43 time_t t_local, t1, t2;
44 os_time_t tz_offset;
46 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 ||
47 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
48 sec > 60)
49 return -1;
51 memset(&tm, 0, sizeof(tm));
52 tm.tm_year = year - 1900;
53 tm.tm_mon = month - 1;
54 tm.tm_mday = day;
55 tm.tm_hour = hour;
56 tm.tm_min = min;
57 tm.tm_sec = sec;
59 t_local = mktime(&tm);
61 /* figure out offset to UTC */
62 tm1 = localtime(&t_local);
63 if (tm1) {
64 t1 = mktime(tm1);
65 tm1 = gmtime(&t_local);
66 if (tm1) {
67 t2 = mktime(tm1);
68 tz_offset = t2 - t1;
69 } else
70 tz_offset = 0;
71 } else
72 tz_offset = 0;
74 *t = (os_time_t) t_local - tz_offset;
75 return 0;
79 int os_daemonize(const char *pid_file)
81 #ifdef __unclinux
82 return -1;
83 #else /* __uclinux */
84 if (daemon(0, 0)) {
85 perror("daemon");
86 return -1;
89 if (pid_file) {
90 FILE *f = fopen(pid_file, "w");
91 if (f) {
92 fprintf(f, "%u\n", getpid());
93 fclose(f);
97 return -0;
98 #endif /* __uclinux */
102 void os_daemonize_terminate(const char *pid_file)
104 if (pid_file)
105 unlink(pid_file);
109 int os_get_random(unsigned char *buf, size_t len)
111 FILE *f;
112 size_t rc;
114 f = fopen("/dev/urandom", "rb");
115 if (f == NULL) {
116 printf("Could not open /dev/urandom.\n");
117 return -1;
120 rc = fread(buf, 1, len, f);
121 fclose(f);
123 return rc != len ? -1 : 0;
127 unsigned long os_random(void)
129 return random();
133 char * os_rel2abs_path(const char *rel_path)
135 char *buf = NULL, *cwd, *ret;
136 size_t len = 128, cwd_len, rel_len, ret_len;
137 int last_errno;
139 if (rel_path[0] == '/')
140 return strdup(rel_path);
142 for (;;) {
143 buf = malloc(len);
144 if (buf == NULL)
145 return NULL;
146 cwd = getcwd(buf, len);
147 if (cwd == NULL) {
148 last_errno = errno;
149 free(buf);
150 if (last_errno != ERANGE)
151 return NULL;
152 len *= 2;
153 if (len > 2000)
154 return NULL;
155 } else {
156 buf[len - 1] = '\0';
157 break;
161 cwd_len = strlen(cwd);
162 rel_len = strlen(rel_path);
163 ret_len = cwd_len + 1 + rel_len + 1;
164 ret = malloc(ret_len);
165 if (ret) {
166 memcpy(ret, cwd, cwd_len);
167 ret[cwd_len] = '/';
168 memcpy(ret + cwd_len + 1, rel_path, rel_len);
169 ret[ret_len - 1] = '\0';
171 free(buf);
172 return ret;
176 int os_program_init(void)
178 return 0;
182 void os_program_deinit(void)
187 int os_setenv(const char *name, const char *value, int overwrite)
189 return setenv(name, value, overwrite);
193 int os_unsetenv(const char *name)
195 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__)
196 unsetenv(name);
197 return 0;
198 #else
199 return unsetenv(name);
200 #endif
204 char * os_readfile(const char *name, size_t *len)
206 FILE *f;
207 char *buf;
209 f = fopen(name, "rb");
210 if (f == NULL)
211 return NULL;
213 fseek(f, 0, SEEK_END);
214 *len = ftell(f);
215 fseek(f, 0, SEEK_SET);
217 buf = malloc(*len);
218 if (buf == NULL) {
219 fclose(f);
220 return NULL;
223 fread(buf, 1, *len, f);
224 fclose(f);
226 return buf;
230 void * os_zalloc(size_t size)
232 return calloc(1, size);
236 size_t os_strlcpy(char *dest, const char *src, size_t siz)
238 const char *s = src;
239 size_t left = siz;
241 if (left) {
242 /* Copy string up to the maximum size of the dest buffer */
243 while (--left != 0) {
244 if ((*dest++ = *s++) == '\0')
245 break;
249 if (left == 0) {
250 /* Not enough room for the string; force NUL-termination */
251 if (siz != 0)
252 *dest = '\0';
253 while (*s++)
254 ; /* determine total src string length */
257 return s - src - 1;