]> git.ipfire.org Git - people/ms/strongswan.git/blame - src/libstrongswan/utils.c
implemented a monotonic timestamping function, unaffected from system time changes
[people/ms/strongswan.git] / src / libstrongswan / utils.c
CommitLineData
552cc11b 1/*
d25ce370 2 * Copyright (C) 2008-2009 Tobias Brunner
552cc11b
MW
3 * Copyright (C) 2005-2008 Martin Willi
4 * Hochschule fuer Technik Rapperswil
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
552cc11b
MW
15 */
16
17#include "utils.h"
18
6c20579a 19#include <sys/stat.h>
552cc11b 20#include <string.h>
552cc11b 21#include <stdio.h>
6c20579a 22#include <unistd.h>
74b14b40 23#include <stdint.h>
d24a74c5 24#include <limits.h>
6c20579a 25#include <dirent.h>
f464d750 26#include <time.h>
552cc11b
MW
27
28#include <enum.h>
6c20579a 29#include <debug.h>
552cc11b
MW
30
31ENUM(status_names, SUCCESS, DESTROY_ME,
32 "SUCCESS",
33 "FAILED",
34 "OUT_OF_RES",
35 "ALREADY_DONE",
36 "NOT_SUPPORTED",
37 "INVALID_ARG",
38 "NOT_FOUND",
39 "PARSE_ERROR",
40 "VERIFY_ERROR",
41 "INVALID_STATE",
42 "DESTROY_ME",
43 "NEED_MORE",
44);
45
46/**
47 * Described in header.
48 */
49void *clalloc(void * pointer, size_t size)
50{
51 void *data;
52 data = malloc(size);
53
54 memcpy(data, pointer, size);
55
56 return (data);
57}
58
59/**
60 * Described in header.
61 */
01e43e31 62void memxor(u_int8_t dst[], u_int8_t src[], size_t n)
552cc11b 63{
01e43e31 64 int m, i;
4fd233a7 65
01e43e31 66 /* byte wise XOR until dst aligned */
74b14b40 67 for (i = 0; (uintptr_t)&dst[i] % sizeof(long); i++)
4fd233a7 68 {
01e43e31 69 dst[i] ^= src[i];
4fd233a7 70 }
01e43e31 71 /* try to use words if src shares an aligment with dst */
74b14b40 72 switch (((uintptr_t)&src[i] % sizeof(long)))
552cc11b 73 {
01e43e31
MW
74 case 0:
75 for (m = n - sizeof(long); i <= m; i += sizeof(long))
76 {
77 *(long*)&dst[i] ^= *(long*)&src[i];
78 }
79 break;
80 case sizeof(int):
81 for (m = n - sizeof(int); i <= m; i += sizeof(int))
82 {
83 *(int*)&dst[i] ^= *(int*)&src[i];
84 }
85 break;
86 case sizeof(short):
87 for (m = n - sizeof(short); i <= m; i += sizeof(short))
88 {
89 *(short*)&dst[i] ^= *(short*)&src[i];
90 }
91 break;
92 default:
93 break;
94 }
95 /* byte wise XOR of the rest */
96 for (; i < n; i++)
97 {
98 dst[i] ^= src[i];
552cc11b
MW
99 }
100}
101
81736d7d
TB
102/**
103 * Described in header.
104 */
105void *memstr(const void *haystack, const char *needle, size_t n)
106{
107 unsigned const char *pos = haystack;
108 size_t l = strlen(needle);
109 for (; n >= l; ++pos, --n)
110 {
111 if (memeq(pos, needle, l))
112 {
113 return (void*)pos;
114 }
115 }
116 return NULL;
117}
118
6c20579a
TB
119/**
120 * Described in header.
121 */
122bool mkdir_p(const char *path, mode_t mode)
123{
124 size_t len;
125 char *pos, full[PATH_MAX];
126 pos = full;
127 if (!path || *path == '\0')
128 {
129 return TRUE;
130 }
131 len = snprintf(full, sizeof(full)-1, "%s", path);
132 if (len < 0 || len >= sizeof(full)-1)
133 {
134 DBG1("path string %s too long", path);
135 return FALSE;
136 }
137 /* ensure that the path ends with a '/' */
138 if (full[len-1] != '/')
139 {
140 full[len++] = '/';
141 full[len] = '\0';
142 }
143 /* skip '/' at the beginning */
144 while (*pos == '/')
145 {
146 pos++;
147 }
148 while ((pos = strchr(pos, '/')))
149 {
150 *pos = '\0';
151 if (access(full, F_OK) < 0)
152 {
153 if (mkdir(full, mode) < 0)
154 {
155 DBG1("failed to create directory %s", full);
156 return FALSE;
157 }
158 }
159 *pos = '/';
160 pos++;
161 }
162 return TRUE;
163}
164
3f310c0d
MW
165/**
166 * Return monotonic time
167 */
168time_t time_monotonic(timeval_t *tv)
169{
170#if defined(HAVE_CLOCK_GETTIME)
171 timespec_t ts;
172
173 if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0)
174 {
175 if (tv)
176 {
177 tv->tv_sec = ts.tv_sec;
178 tv->tv_usec = ts.tv_nsec / 1000;
179 }
180 return ts.tv_sec;
181 }
182#endif /* HAVE_CLOCK_MONOTONIC */
183 /* Fallback to non-monotonic timestamps:
184 * On MAC OS X, creating monotonic timestamps is rather difficult. We
185 * could use mach_absolute_time() and catch sleep/wakeup notifications.
186 * We stick to the simpler (non-monotonic) gettimeofday() for now. */
187 if (!tv)
188 {
189 return time(NULL);
190 }
191 if (gettimeofday(tv, NULL) != 0)
192 { /* should actually never fail if passed pointers are valid */
193 return -1;
194 }
195 return tv->tv_sec;
196}
197
081ae2eb
MW
198/**
199 * return null
200 */
201void *return_null()
202{
203 return NULL;
204}
205
da17b016
MW
206/**
207 * returns TRUE
208 */
209bool return_true()
210{
211 return TRUE;
212}
213
214/**
215 * returns FALSE
216 */
217bool return_false()
218{
219 return FALSE;
220}
221
233b853d
MW
222/**
223 * nop operation
224 */
225void nop()
226{
227}
228
efd0fe21
MW
229#ifndef HAVE_GCC_ATOMIC_OPERATIONS
230#include <pthread.h>
231
552cc11b 232/**
efd0fe21 233 * We use a single mutex for all refcount variables.
552cc11b
MW
234 */
235static pthread_mutex_t ref_mutex = PTHREAD_MUTEX_INITIALIZER;
236
237/**
efd0fe21 238 * Increase refcount
552cc11b
MW
239 */
240void ref_get(refcount_t *ref)
241{
242 pthread_mutex_lock(&ref_mutex);
243 (*ref)++;
244 pthread_mutex_unlock(&ref_mutex);
245}
246
247/**
efd0fe21 248 * Decrease refcount
552cc11b
MW
249 */
250bool ref_put(refcount_t *ref)
251{
252 bool more_refs;
253
254 pthread_mutex_lock(&ref_mutex);
255 more_refs = --(*ref);
256 pthread_mutex_unlock(&ref_mutex);
257 return !more_refs;
258}
efd0fe21 259#endif /* HAVE_GCC_ATOMIC_OPERATIONS */
552cc11b
MW
260
261/**
d25ce370 262 * Described in header.
552cc11b 263 */
d25ce370
TB
264int time_printf_hook(char *dst, size_t len, printf_hook_spec_t *spec,
265 const void *const *args)
552cc11b
MW
266{
267 static const char* months[] = {
268 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
269 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
270 };
271 time_t *time = *((time_t**)(args[0]));
d25ce370 272 bool utc = *((bool*)(args[1]));;
552cc11b
MW
273 struct tm t;
274
552cc11b
MW
275 if (time == UNDEFINED_TIME)
276 {
d25ce370
TB
277 return print_in_hook(dst, len, "--- -- --:--:--%s----",
278 utc ? " UTC " : " ");
552cc11b
MW
279 }
280 if (utc)
281 {
282 gmtime_r(time, &t);
283 }
284 else
285 {
286 localtime_r(time, &t);
287 }
d25ce370
TB
288 return print_in_hook(dst, len, "%s %02d %02d:%02d:%02d%s%04d",
289 months[t.tm_mon], t.tm_mday, t.tm_hour, t.tm_min,
290 t.tm_sec, utc ? " UTC " : " ", t.tm_year + 1900);
552cc11b
MW
291}
292
293/**
d25ce370 294 * Described in header.
552cc11b 295 */
d25ce370
TB
296int time_delta_printf_hook(char *dst, size_t len, printf_hook_spec_t *spec,
297 const void *const *args)
552cc11b
MW
298{
299 char* unit = "second";
d25ce370
TB
300 time_t *arg1 = *((time_t**)(args[0]));
301 time_t *arg2 = *((time_t**)(args[1]));
302 time_t delta = abs(*arg1 - *arg2);
552cc11b 303
552cc11b
MW
304 if (delta > 2 * 60 * 60 * 24)
305 {
306 delta /= 60 * 60 * 24;
307 unit = "day";
308 }
309 else if (delta > 2 * 60 * 60)
310 {
311 delta /= 60 * 60;
312 unit = "hour";
313 }
314 else if (delta > 2 * 60)
315 {
316 delta /= 60;
317 unit = "minute";
318 }
d25ce370 319 return print_in_hook(dst, len, "%d %s%s", delta, unit, (delta == 1)? "":"s");
552cc11b
MW
320}
321
322/**
323 * Number of bytes per line to dump raw data
324 */
325#define BYTES_PER_LINE 16
326
327static char hexdig_upper[] = "0123456789ABCDEF";
328
329/**
d25ce370 330 * Described in header.
552cc11b 331 */
d25ce370
TB
332int mem_printf_hook(char *dst, size_t dstlen,
333 printf_hook_spec_t *spec, const void *const *args)
552cc11b
MW
334{
335 char *bytes = *((void**)(args[0]));
336 int len = *((size_t*)(args[1]));
337
338 char buffer[BYTES_PER_LINE * 3];
339 char ascii_buffer[BYTES_PER_LINE + 1];
340 char *buffer_pos = buffer;
341 char *bytes_pos = bytes;
342 char *bytes_roof = bytes + len;
343 int line_start = 0;
344 int i = 0;
345 int written = 0;
346
d25ce370 347 written += print_in_hook(dst, dstlen, "=> %d bytes @ %p", len, bytes);
552cc11b
MW
348
349 while (bytes_pos < bytes_roof)
350 {
351 *buffer_pos++ = hexdig_upper[(*bytes_pos >> 4) & 0xF];
352 *buffer_pos++ = hexdig_upper[ *bytes_pos & 0xF];
353
354 ascii_buffer[i++] =
355 (*bytes_pos > 31 && *bytes_pos < 127) ? *bytes_pos : '.';
356
357 if (++bytes_pos == bytes_roof || i == BYTES_PER_LINE)
358 {
359 int padding = 3 * (BYTES_PER_LINE - i);
552cc11b
MW
360
361 while (padding--)
362 {
363 *buffer_pos++ = ' ';
364 }
365 *buffer_pos++ = '\0';
366 ascii_buffer[i] = '\0';
367
d25ce370
TB
368 written += print_in_hook(dst, dstlen, "\n%4d: %s %s",
369 line_start, buffer, ascii_buffer);
552cc11b
MW
370
371 buffer_pos = buffer;
372 line_start += BYTES_PER_LINE;
373 i = 0;
374 }
375 else
376 {
377 *buffer_pos++ = ' ';
378 }
379 }
380 return written;
381}