-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpool_sema.c
161 lines (135 loc) · 3.63 KB
/
pool_sema.c
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
/* -*-pgsql-c-*- */
/*
* $Header: /cvsroot/pgpool/pgpool-II/pool_sema.c,v 1.7 2009/08/22 04:04:21 t-ishii Exp $
*
* pgpool: a language independent connection pool server for PostgreSQL
* written by Tatsuo Ishii
*
* Portions Copyright (c) 2003-2009, PgPool Global Development Group
* Portions Copyright (c) 2003-2004, PostgreSQL Global Development Group
*
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby
* granted, provided that the above copyright notice appear in all
* copies and that both that copyright notice and this permission
* notice appear in supporting documentation, and that the name of the
* author not be used in advertising or publicity pertaining to
* distribution of the software without specific, written prior
* permission. The author makes no representations about the
* suitability of this software for any purpose. It is provided "as
* is" without express or implied warranty.
*
*/
#include "pool.h"
#include <errno.h>
#include <string.h>
#include <sys/sem.h>
#include "pool_ipc.h"
#ifndef HAVE_UNION_SEMUN
union semun
{
int val;
struct semid_ds *buf;
unsigned short *array;
};
#endif
static int semId;
/*
* Removes a semaphore set.
*/
static void
IpcSemaphoreKill(int status, Datum semId)
{
union semun semun;
struct semid_ds seminfo;
/*
* Is a previously-existing sema segment still existing and in use?
*/
semun.buf = &seminfo;
if (semctl(semId, 0, IPC_STAT, semun) < 0
&& (errno == EINVAL || errno == EACCES
#ifdef EIDRM
|| errno == EIDRM
#endif
))
return;
semun.val = 0; /* unused, but keep compiler quiet */
if (semctl(semId, 0, IPC_RMID) < 0)
pool_log("semctl(%lu, 0, IPC_RMID, ...) failed: %s", semId, strerror(errno));
}
/*
* Create a semaphore set and initialize.
*/
int
pool_semaphore_create(int numSems)
{
int i;
/* Try to create new semaphore set */
semId = semget(IPC_PRIVATE, numSems, IPC_CREAT | IPC_EXCL | IPCProtection);
if (semId < 0)
{
pool_error("could not create %d semaphores: %s", numSems, strerror(errno));
return -1;
}
on_shmem_exit(IpcSemaphoreKill, semId);
/* Initialize it to count 1 */
for (i = 0; i < numSems; i++)
{
union semun semun;
semun.val = 1;
if (semctl(semId, i, SETVAL, semun) < 0)
{
pool_error("semctl(%d, %d, SETVAL, %d) failed: %s",
semId, i, 1, strerror(errno));
return -1;
}
}
return 0;
}
/*
* Lock a semaphore (decrement count), blocking if count would be < 0
*/
void
pool_semaphore_lock(int semNum)
{
int errStatus;
struct sembuf sops;
sops.sem_op = -1; /* decrement */
sops.sem_flg = 0;
sops.sem_num = semNum;
/*
* Note: if errStatus is -1 and errno == EINTR then it means we returned
* from the operation prematurely because we were sent a signal. So we
* try and lock the semaphore again.
*/
do
{
errStatus = semop(semId, &sops, 1);
} while (errStatus < 0 && errno == EINTR);
if (errStatus < 0)
pool_error("semop(id=%d) failed: %s", semId, strerror(errno));
}
/*
* Unlock a semaphore (increment count)
*/
void
pool_semaphore_unlock(int semNum)
{
int errStatus;
struct sembuf sops;
sops.sem_op = 1; /* increment */
sops.sem_flg = 0;
sops.sem_num = semNum;
/*
* Note: if errStatus is -1 and errno == EINTR then it means we returned
* from the operation prematurely because we were sent a signal. So we
* try and unlock the semaphore again. Not clear this can really happen,
* but might as well cope.
*/
do
{
errStatus = semop(semId, &sops, 1);
} while (errStatus < 0 && errno == EINTR);
if (errStatus < 0)
pool_error("semop(id=%d) failed: %s", semId, strerror(errno));
}