forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lock_ops.h
413 lines (330 loc) · 9.37 KB
/
lock_ops.h
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
/*
* Copyright (C) 2001-2003 FhG Fokus
*
* This file is part of opensips, a free SIP server.
*
* opensips 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
*
* opensips 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* History:
* --------
* 2002-12-16 created by andrei
* 2003-02-20 s/gen_lock_t/gen_lock_t/ to avoid a type conflict
* on solaris (andrei)
* 2003-03-05 lock set support added for FAST_LOCK & SYSV (andrei)
* 2003-03-06 removed *_alloc,*_dealloc & moved them to lock_alloc.h
* renamed locking.h to lock_ops.h (all this to solve
* the locking.h<->shm_mem.h interdependency) (andrei)
* 2003-03-10 lock set support added also for PTHREAD_MUTEX & POSIX_SEM
* (andrei)
* 2003-03-17 possible signal interruptions treated for sysv (andrei)
* 2004-07-28 s/lock_set_t/gen_lock_set_t/ because of a type conflict
* on darwin (andrei)
*/
/*!
* \file
* \brief OpenSIPS locking operations
*
* Implements simple locks and lock sets.
*
* simple locks:
* - gen_lock_t* lock_init(gen_lock_t* lock); - inits the lock
* - void lock_destroy(gen_lock_t* lock); - removes the lock (e.g sysv rmid)
* - void lock_get(gen_lock_t* lock); - lock (mutex down)
* - void lock_release(gen_lock_t* lock); - unlock (mutex up)
*
* lock sets: [implemented only for FL & SYSV so far]
* - gen_lock_set_t* lock_set_init(gen_lock_set_t* set); - inits the lock set
* - void lock_set_destroy(gen_lock_set_t* s); - removes the lock set
* - void lock_set_get(gen_lock_set_t* s, int i); - locks sem i from the set
* - void lock_set_release(gen_lock_set_t* s, int i)- unlocks sem i from the set
*
* WARNING:
* - lock_set_init may fail for large number of sems (e.g. sysv).
* - signals are not treated! (some locks are "awakened" by the signals)
*
* \note Warning: do not include this file directly, use instead locking.h
* (unless you don't need to alloc/dealloc locks).
* \todo investigate futex support on linux
*/
#ifndef _lock_ops_h
#define _lock_ops_h
#ifdef FAST_LOCK
#ifdef USE_FUTEX
#include "futex_lock.h"
typedef fx_lock_t gen_lock_t;
#elif defined FAST_LOCK
#include "fastlock.h"
typedef fl_lock_t gen_lock_t;
#endif
#define lock_destroy(lock) /* do nothing */
inline static gen_lock_t* lock_init(gen_lock_t* lock)
{
init_lock(*lock);
return lock;
}
#define lock_release(lock) release_lock(lock)
#ifndef DBG_LOCK
#define lock_get(lock) get_lock(lock)
#else
#define lock_get(lock) get_lock(lock, __FILE__, __FUNCTION__, __LINE__)
#endif
#elif defined USE_PTHREAD_MUTEX
# if defined(__FreeBSD__)
# warning Inter-process mutexes are not supported on FreeBSD as if yet :(
# endif
#include <pthread.h>
typedef pthread_mutex_t gen_lock_t;
inline static gen_lock_t* lock_init(gen_lock_t* lock)
{
pthread_mutexattr_t attr;
if (pthread_mutexattr_init(&attr) != 0)
return 0;
if (pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_SHARED) != 0) {
pthread_mutexattr_destroy(&attr);
return 0;
}
if (pthread_mutex_init(lock, &attr) != 0) {
pthread_mutexattr_destroy(&attr);
return 0;
}
pthread_mutexattr_destroy(&attr);
return lock;
}
#define lock_destroy(lock) pthread_mutex_destroy(lock)
#define lock_get(lock) pthread_mutex_lock(lock)
#define lock_release(lock) pthread_mutex_unlock(lock)
#elif defined USE_UMUTEX
# if !defined(USE_UMUTEX_DECL)
# define USE_UMUTEX_DECL 1
#include <sys/types.h>
#include <errno.h>
#include <string.h>
#define u_long unsigned long
#include <sys/umtx.h>
typedef struct umutex gen_lock_t;
#define lock_destroy(lock) /* do nothing */
inline static int
_umtx_op_err(void *obj, int op, u_long val, void *uaddr, void *uaddr2)
{
if (_umtx_op(obj, op, val, uaddr, uaddr2) == -1)
return (errno);
return (0);
}
inline static gen_lock_t *
lock_init(gen_lock_t *lock)
{
memset(lock, '\0', sizeof(gen_lock_t));
lock->m_flags = USYNC_PROCESS_SHARED;
return (lock);
}
inline static int
lock_get(gen_lock_t *lock)
{
return (_umtx_op_err(lock, UMTX_OP_MUTEX_LOCK, 0, 0, 0));
}
inline static int
lock_release(gen_lock_t *lock)
{
return (_umtx_op_err(lock, UMTX_OP_MUTEX_UNLOCK, 0, 0, 0));
}
# endif /* USE_UMUTEX_DECL */
#elif defined USE_POSIX_SEM
#include <semaphore.h>
typedef sem_t gen_lock_t;
#define lock_destroy(lock) /* do nothing */
inline static gen_lock_t* lock_init(gen_lock_t* lock)
{
if (sem_init(lock, 1, 1)<0) return 0;
return lock;
}
#define lock_get(lock) sem_wait(lock)
#define lock_release(lock) sem_post(lock)
#elif defined USE_SYSV_SEM
#include <sys/ipc.h>
#include <sys/sem.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#include "dprint.h"
extern int uid; /* from main.c */
#if ((defined(HAVE_UNION_SEMUN) || defined(__GNU_LIBRARY__) )&& !defined(_SEM_SEMUN_UNDEFINED))
/* union semun is defined by including sem.h */
#else
/* according to X/OPEN we have to define it ourselves */
union semun {
int val; /* value for SETVAL */
struct semid_ds *buf; /* buffer for IPC_STAT, IPC_SET */
unsigned short int *array; /* array for GETALL, SETALL */
struct seminfo *__buf; /* buffer for IPC_INFO */
};
#endif
typedef int gen_lock_t;
inline static gen_lock_t* lock_init(gen_lock_t* lock)
{
union semun su;
int euid;
euid=geteuid();
if (uid && uid!=euid)
seteuid(uid); /* set euid to the cfg. requested one */
*lock=semget(IPC_PRIVATE, 1, 0700);
if (uid && uid!=euid)
seteuid(euid); /* restore it */
if (*lock==-1) return 0;
su.val=1;
if (semctl(*lock, 0, SETVAL, su)==-1){
/* init error*/
return 0;
}
return lock;
}
//TODO if is init
inline static void lock_destroy(gen_lock_t* lock)
{
union semun su;
su.val = 0;
semctl(*lock, 0, IPC_RMID, su);
}
inline static void lock_get(gen_lock_t* lock)
{
struct sembuf sop;
sop.sem_num=0;
sop.sem_op=-1; /* down */
sop.sem_flg=0;
tryagain:
if (semop(*lock, &sop, 1)==-1){
if (errno==EINTR){
LM_DBG("signal received while waiting for on a mutex\n");
goto tryagain;
}else{
LM_CRIT("%s (%d)\n", strerror(errno), errno);
}
}
}
inline static void lock_release(gen_lock_t* lock)
{
struct sembuf sop;
sop.sem_num=0;
sop.sem_op=1; /* up */
sop.sem_flg=0;
tryagain:
if (semop(*lock, &sop, 1)==-1){
if (errno==EINTR){
/* very improbable*/
LM_DBG("signal received while releasing a mutex\n");
goto tryagain;
}else{
LM_CRIT("%s (%d)\n", strerror(errno), errno);
}
}
}
#else
#error "no locking method selected"
#endif
/* lock sets */
#if defined(FAST_LOCK) || defined(USE_PTHREAD_MUTEX) || defined(USE_POSIX_SEM) || defined(USE_UMUTEX)
#define GEN_LOCK_T_PREFERED
struct gen_lock_set_t_ {
long size;
gen_lock_t* locks;
}; /* must be aligned (32 bits or 64 depending on the arch)*/
typedef struct gen_lock_set_t_ gen_lock_set_t;
#define lock_set_destroy(lock_set) /* do nothing */
inline static gen_lock_set_t* lock_set_init(gen_lock_set_t* s)
{
int r;
for (r=0; r<s->size; r++) if (lock_init(&s->locks[r])==0) return 0;
return s;
}
/* WARNING: no boundary checks!*/
#define lock_set_get(set, i) lock_get(&set->locks[i])
#define lock_set_release(set, i) lock_release(&set->locks[i])
#elif defined(USE_SYSV_SEM)
#undef GEN_LOCK_T_PREFERED
struct gen_lock_set_t_ {
int size;
int semid;
};
typedef struct gen_lock_set_t_ gen_lock_set_t;
inline static gen_lock_set_t* lock_set_init(gen_lock_set_t* s)
{
union semun su;
int r;
int euid;
euid=geteuid();
if (uid && uid!=euid)
seteuid(uid); /* set euid to the cfg. requested one */
s->semid=semget(IPC_PRIVATE, s->size, 0700);
if (uid && uid!=euid)
seteuid(euid); /* restore euid */
if (s->semid==-1){
LM_CRIT("semget (..., %d, 0700) failed: %s\n",
s->size, strerror(errno));
return 0;
}
su.val=1;
for (r=0; r<s->size; r++){
if (semctl(s->semid, r, SETVAL, su)==-1){
LM_CRIT("semctl failed on sem %d: %s\n",
r, strerror(errno));
su.val = 0;
semctl(s->semid, 0, IPC_RMID, su);
return 0;
}
}
return s;
}
inline static void lock_set_destroy(gen_lock_set_t* s)
{
union semun su;
su.val = 0;
semctl(s->semid, 0, IPC_RMID, su);
}
inline static void lock_set_get(gen_lock_set_t* s, int n)
{
struct sembuf sop;
sop.sem_num=n;
sop.sem_op=-1; /* down */
sop.sem_flg=0;
tryagain:
if (semop(s->semid, &sop, 1)==-1){
if (errno==EINTR){
LM_DBG("signal received while waiting on a mutex\n");
goto tryagain;
}else{
LM_CRIT("%s (%d)\n", strerror(errno), errno);
}
}
}
inline static void lock_set_release(gen_lock_set_t* s, int n)
{
struct sembuf sop;
sop.sem_num=n;
sop.sem_op=1; /* up */
sop.sem_flg=0;
tryagain:
if (semop(s->semid, &sop, 1)==-1){
if (errno==EINTR){
/* very improbable */
LM_DBG("signal received while releasing mutex\n");
goto tryagain;
}else{
LM_CRIT("%s (%d)\n", strerror(errno), errno);
}
}
}
#else
#error "no lock set method selected"
#endif
#endif