1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
/*
* Copyright (C) 2008-2014 Tobias Brunner
* Copyright (C) 2005-2008 Martin Willi
* Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#include "utils.h"
#include <unistd.h>
#include <limits.h>
#ifndef WIN32
# include <signal.h>
#endif
#include <library.h>
#include <collections/enumerator.h>
#ifdef WIN32
#include <threading/mutex.h>
#include <threading/condvar.h>
/**
* Flag to indicate signaled wait_sigint()
*/
static bool sigint_signaled = FALSE;
/**
* Condvar to wait in wait_sigint()
*/
static condvar_t *sigint_cond;
/**
* Mutex to check signaling()
*/
static mutex_t *sigint_mutex;
/**
* Control handler to catch ^C
*/
static BOOL WINAPI handler(DWORD dwCtrlType)
{
switch (dwCtrlType)
{
case CTRL_C_EVENT:
case CTRL_BREAK_EVENT:
case CTRL_CLOSE_EVENT:
sigint_mutex->lock(sigint_mutex);
sigint_signaled = TRUE;
sigint_cond->signal(sigint_cond);
sigint_mutex->unlock(sigint_mutex);
return TRUE;
default:
return FALSE;
}
}
/**
* Windows variant
*/
void wait_sigint()
{
SetConsoleCtrlHandler(handler, TRUE);
sigint_mutex = mutex_create(MUTEX_TYPE_DEFAULT);
sigint_cond = condvar_create(CONDVAR_TYPE_DEFAULT);
sigint_mutex->lock(sigint_mutex);
while (!sigint_signaled)
{
sigint_cond->wait(sigint_cond, sigint_mutex);
}
sigint_mutex->unlock(sigint_mutex);
sigint_mutex->destroy(sigint_mutex);
sigint_cond->destroy(sigint_cond);
}
#else /* !WIN32 */
/**
* Unix variant
*/
void wait_sigint()
{
sigset_t set;
int sig;
sigemptyset(&set);
sigaddset(&set, SIGINT);
sigaddset(&set, SIGTERM);
sigprocmask(SIG_BLOCK, &set, NULL);
sigwait(&set, &sig);
}
#endif
#ifndef HAVE_CLOSEFROM
/**
* Described in header.
*/
void closefrom(int lowfd)
{
char fd_dir[PATH_MAX];
int maxfd, fd, len;
/* try to close only open file descriptors on Linux... */
len = snprintf(fd_dir, sizeof(fd_dir), "/proc/%u/fd", getpid());
if (len > 0 && len < sizeof(fd_dir) && access(fd_dir, F_OK) == 0)
{
enumerator_t *enumerator = enumerator_create_directory(fd_dir);
if (enumerator)
{
char *rel;
while (enumerator->enumerate(enumerator, &rel, NULL, NULL))
{
fd = atoi(rel);
if (fd >= lowfd)
{
close(fd);
}
}
enumerator->destroy(enumerator);
return;
}
}
/* ...fall back to closing all fds otherwise */
#ifdef WIN32
maxfd = _getmaxstdio();
#else
maxfd = (int)sysconf(_SC_OPEN_MAX);
#endif
if (maxfd < 0)
{
maxfd = 256;
}
for (fd = lowfd; fd < maxfd; fd++)
{
close(fd);
}
}
#endif /* HAVE_CLOSEFROM */
/**
* return null
*/
void *return_null()
{
return NULL;
}
/**
* returns TRUE
*/
bool return_true()
{
return TRUE;
}
/**
* returns FALSE
*/
bool return_false()
{
return FALSE;
}
/**
* nop operation
*/
void nop()
{
}
/**
* See header
*/
void utils_init()
{
#ifdef WIN32
windows_init();
#endif
atomics_init();
strerror_init();
}
/**
* See header
*/
void utils_deinit()
{
#ifdef WIN32
windows_deinit();
#endif
atomics_deinit();
strerror_deinit();
}
|