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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
|
#include <sys/wait.h>
#include <stdio.h>
#include <inttypes.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <string.h>
#include <assert.h>
#include <sys/stat.h>
#include <stddef.h>
#include <limits.h>
#include <sys/param.h>
#include <stdbool.h>
#include "gcc-compat.h"
#include "str.h"
#include "log.h"
#include "gcc-compat.h"
#include "err.h"
#include "ipc.h"
#if (defined(__GNUC__) && defined(__i386__))
#define get16bits(d) (*((const uint16_t *) (d)))
#else
#define get16bits(d) ((((uint32_t)(((const uint8_t *)(d))[1])) << 8)\
+(uint32_t)(((const uint8_t *)(d))[0]) )
#endif
/*
* SuperFastHash, by Paul Hsieh.
* http://www.azillionmonkeys.com/qed/hash.html
*/
static uint32_t super_fast_hash(const uint8_t *data, uint32_t len, uint32_t hash)
{
uint32_t tmp;
int rem = len & 3;
len >>= 2;
for (;len > 0; len--) {
hash += get16bits (data);
tmp = (get16bits (data+2) << 11) ^ hash;
hash = (hash << 16) ^ tmp;
data += 2*sizeof (uint16_t);
hash += hash >> 11;
}
/* Handle end cases */
switch (rem) {
case 3:
hash += get16bits (data);
hash ^= hash << 16;
hash ^= data[sizeof (uint16_t)] << 18;
hash += hash >> 11;
break;
case 2:
hash += get16bits (data);
hash ^= hash << 11;
hash += hash >> 17;
break;
case 1:
hash += *data;
hash ^= hash << 10;
hash += hash >> 1;
}
/* Force "avalanching" of final 127 bits */
hash ^= hash << 3;
hash += hash >> 5;
hash ^= hash << 4;
hash += hash >> 17;
hash ^= hash << 25;
hash += hash >> 6;
return hash;
}
/*
* Return the canonical absolute name of a given file name.
*
* Slightly modified version of glibc's realpath, Copyright (C)
* 1996-2002,2004,2005,2006,2008 Free Software Foundation, Inc.
*
* A canonical name does not contain any `.', `..' components nor any repeated
* path separators ('/') or symlinks. All path components must exist. The
* result is malloc'd and must be freed by the caller.
*/
static int dss_realpath(const char *name, char **resolved_path)
{
char *rpath = NULL, *dest, *extra_buf = NULL;
const char *start, *end, *rpath_limit;
long int path_max;
int ret, num_links = 0;
if (name[0] == '\0') {
/*
* As per Single Unix Specification V2 we must return an error
* if the name argument points to an empty string.
*/
ret = -ERRNO_TO_DSS_ERROR(ENOENT);
goto error;
}
#ifdef PATH_MAX
path_max = PATH_MAX;
#else
/*
* From realpath(3): Asking pathconf(3) does not really help, since on
* the one hand POSIX warns that the result of pathconf(3) may be
* huge and unsuitable for mallocing memory. And on the other hand
* pathconf(3) may return -1 to signify that PATH_MAX is not bounded.
*/
path_max = pathconf(name, _PC_PATH_MAX);
if (path_max <= 0 || path_max >= 4096)
path_max = 4096;
#endif
rpath = dss_malloc(path_max);
rpath_limit = rpath + path_max;
if (name[0] != '/') {
if (!getcwd(rpath, path_max)) {
ret = -ERRNO_TO_DSS_ERROR(errno);
goto error;
}
dest = memchr(rpath, '\0', path_max);
} else {
rpath[0] = '/';
dest = rpath + 1;
}
for (start = end = name; *start; start = end) {
struct stat st;
int n;
/* Skip sequence of multiple path-separators. */
while (*start == '/')
++start;
/* Find end of path component. */
for (end = start; *end && *end != '/'; ++end)
/* Nothing. */ ;
if (end - start == 0)
break;
else if (end - start == 1 && start[0] == '.')
/* nothing */ ;
else if (end - start == 2 && start[0] == '.' && start[1] == '.') {
/* Back up to previous component, ignore if at root already. */
if (dest > rpath + 1)
while ((--dest)[-1] != '/') ;
} else {
size_t new_size;
if (dest[-1] != '/')
*dest++ = '/';
if (dest + (end - start) >= rpath_limit) {
ptrdiff_t dest_offset = dest - rpath;
new_size = rpath_limit - rpath;
if (end - start + 1 > path_max)
new_size += end - start + 1;
else
new_size += path_max;
rpath = dss_realloc(rpath, new_size);
rpath_limit = rpath + new_size;
dest = rpath + dest_offset;
}
memcpy(dest, start, end - start);
dest += end - start;
*dest = '\0';
if (stat(rpath, &st) < 0) {
ret = -ERRNO_TO_DSS_ERROR(errno);
goto error;
}
if (S_ISLNK(st.st_mode)) {
char *buf = alloca(path_max);
size_t len;
if (++num_links > MAXSYMLINKS) {
ret = -ERRNO_TO_DSS_ERROR(ELOOP);
goto error;
}
n = readlink(rpath, buf, path_max - 1);
if (n < 0) {
ret = -ERRNO_TO_DSS_ERROR(errno);
goto error;
}
buf[n] = '\0';
if (!extra_buf)
extra_buf = alloca(path_max);
len = strlen(end);
if ((long int) (n + len) >= path_max) {
ret = -ERRNO_TO_DSS_ERROR(ENAMETOOLONG);
goto error;
}
/* Careful here, end may be a pointer into extra_buf... */
memmove(&extra_buf[n], end, len + 1);
name = end = memcpy(extra_buf, buf, n);
if (buf[0] == '/') /* It's an absolute symlink */
dest = rpath + 1;
else /* Back up to previous component, ignore if at root already: */
if (dest > rpath + 1)
while ((--dest)[-1] != '/')
; /* nothing */
} else if (!S_ISDIR(st.st_mode) && *end != '\0') {
ret = -ERRNO_TO_DSS_ERROR(ENOTDIR);
goto error;
}
}
}
if (dest > rpath + 1 && dest[-1] == '/')
--dest;
*dest = '\0';
*resolved_path = rpath;
return 1;
error:
free(rpath);
*resolved_path = NULL;
return ret;
}
static int get_key_or_die(const char *config_file)
{
int ret;
struct stat statbuf;
char *rpath;
assert(config_file);
if (stat(config_file, &statbuf) == 0) {
ret = dss_realpath(config_file, &rpath);
if (ret < 0) {
DSS_EMERG_LOG(("could not resolve path %s: %s\n", config_file,
dss_strerror(-ret)));
exit(EXIT_FAILURE);
}
DSS_DEBUG_LOG(("resolved path: %s\n", rpath));
} else
/*
* This happens if the user did not specify a config file, and
* the default config file does not exist. Another (unlikely)
* possibility is that the config file was removed between
* startup and this call. We don't care about these corner
* cases too much and just use the unresolved path in this
* case.
*/
rpath = dss_strdup(config_file);
ret = super_fast_hash((uint8_t *)rpath, strlen(rpath), 0) >> 1;
free(rpath);
return ret;
}
static int mutex_get(int key, int flags)
{
int ret;
DSS_DEBUG_LOG(("getting semaphore 0x%x\n", key));
ret = semget(key, 2, flags);
if (ret < 0)
return -ERRNO_TO_DSS_ERROR(errno);
return ret;
}
static int do_semop(int id, struct sembuf *sops, int num)
{
int ret;
DSS_DEBUG_LOG(("calling semop\n"));
do {
ret = semop(id, sops, num);
if (ret >= 0)
return 1;
} while (errno == EINTR);
return -ERRNO_TO_DSS_ERROR(errno);
}
static int mutex_lock(int id)
{
struct sembuf sops[4];
DSS_DEBUG_LOG(("locking\n"));
sops[0].sem_num = 0;
sops[0].sem_op = 0;
sops[0].sem_flg = SEM_UNDO | IPC_NOWAIT;
sops[1].sem_num = 0;
sops[1].sem_op = 1;
sops[1].sem_flg = SEM_UNDO | IPC_NOWAIT;
sops[2].sem_num = 1;
sops[2].sem_op = 0;
sops[2].sem_flg = SEM_UNDO | IPC_NOWAIT;
sops[3].sem_num = 1;
sops[3].sem_op = 1;
sops[3].sem_flg = SEM_UNDO | IPC_NOWAIT;
return do_semop(id, sops, 4);
}
static bool mutex_is_locked(int id)
{
struct sembuf sops;
int ret;
DSS_DEBUG_LOG(("trying to lock\n"));
sops.sem_num = 0;
sops.sem_op = 0;
sops.sem_flg = SEM_UNDO | IPC_NOWAIT;
ret = do_semop(id, &sops, 1);
if (ret < 0)
return true;
return false;
}
int lock_dss(char *config_file)
{
int ret, key = get_key_or_die(config_file);
ret = mutex_get(key, IPC_CREAT | 0600);
if (ret < 0)
return ret;
return mutex_lock(ret);
}
int get_dss_pid(char *config_file, pid_t *pid)
{
int ret, semid, key = get_key_or_die(config_file);
if (pid)
*pid = 0;
ret = mutex_get(key, 0);
if (ret < 0)
return ret;
semid = ret;
ret = semctl(semid, 1, GETPID);
if (ret < 0)
return -E_NOT_RUNNING;
if (pid)
*pid = ret;
return mutex_is_locked(semid)? 1 : -E_NOT_RUNNING;
}
|