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
|
// -*- c++ -*-
//------------------------------------------------------------------------------
// $Id: Semaphore.cpp,v 1.5 2012/05/20 04:12:18 vlg Exp $
//------------------------------------------------------------------------------
// Semaphore.C
//------------------------------------------------------------------------------
// Copyright (c) 2000 by Vladislav Grinchenko
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//------------------------------------------------------------------------------
// Created: 07/10/2000
//------------------------------------------------------------------------------
#if !defined(WIN32)
#include <sstream>
#include <string>
#include <iomanip>
#include "assa/Semaphore.h"
using namespace ASSA;
/*--- Static definitions and constants ---*/
const int ASSA::Semaphore::BIGCOUNT = 10000;
sembuf Semaphore::m_op_lock [2] =
{
{2, 0, 0}, // Wait for [2] lock to equal 0,
{2, 1, SEM_UNDO} // then increment [2] to 1 - this locks it.
// UNDO to release the lock if processes
// exits before explicitly unlocking.
};
sembuf Semaphore::m_op_endcreate [2] =
{
{1, -1, SEM_UNDO}, // Decrement [1] (proc counter) with undo on
// exit,
{2, -1, SEM_UNDO} // then decrement [2] (lock) back to 0.
};
sembuf Semaphore::m_op_open [2] =
{
{1, -1, SEM_UNDO}, // Decrement [1] (proc counter) with undo on
// exit.
};
sembuf Semaphore::m_op_close [3] =
{
{2, 0, 0}, // Wait for [2] lock to equal 0,
{2, 1, SEM_UNDO}, // then increment [2] to 1 - this locks it,
{1, 1, SEM_UNDO} // then increment [1] (proc counter)
};
sembuf Semaphore::m_op_unlock [1] =
{
{2, -1, SEM_UNDO} // Decrement [2] (lock) back to 0
};
sembuf Semaphore::m_op_op [1] =
{
{0, 99, SEM_UNDO} // Decrement or increment [0] with undo on
// exit. The 99 is set to the actual amount
// to add or substract (positive or negative)
};
//------------------------------------------------------------------------------
int
Semaphore::
create (key_t key_, int initval_)
{
trace_with_mask("Semaphore::create", SEM);
register int semval;
union semnum {
int val;
struct semid_ds* buf;
ushort* array;
} semctrl_arg;
if (IPC_PRIVATE == key_) {
EL((ASSAERR,"Not intended for private semaphores\n"));
return (-1);
}
else if (key_ == (key_t) -1) {
EL((ASSAERR,"Probably an ftok() error by caller\n"));
return (-1);
}
m_key = key_;
bool done = false;
while (!done) {
if ( (m_id = semget (m_key, 3, 0666 | IPC_CREAT)) < 0) {
EL((ASSAERR,"Permission problem or kernel tables full\n"));
return (-1);
}
/*
When the semaphore is created, we know that the value of
all 3 set members is 0.
Get a lock on the semaphore by waiting for [2] to equal 0,
then increment it.
There is a race condition here. There is a possibility
that between the semget(2) and semop(2) below, another
process can cal Semaphore:::close () member function
which can remove a semaphore if that process is the last
one using it.
Therefore, we handle the error condition of an invalid
semaphore ID specially below, and if it does happen, we
just go back and create it again.
*/
if (semop (m_id, &m_op_lock[0], 2) < 0) {
if (errno == EINVAL) {
continue;
}
EL((ASSAERR,"Can't lock semaphore\n"));
Assure_exit (false);
}
done = true;
} // while (!done)
/*
Get the value of the process counter. If it equals 0,
then no one has initialized the semaphore yet.
*/
if ((semval = semctl (m_id, 1, GETVAL, 0)) < 0) {
EL((ASSAERR,"Can't GETVAL\n"));
Assure_exit (false);
}
if (semval == 0) {
/*
We could initalize by doing a SETALL, but that
would clear the adjust value that we set when
we locked the semaphore above. Instead, we'll do
two system calls to initialize semaphore value [0]
and process counter [1].
*/
semctrl_arg.val = initval_;
if (semctl (m_id, 0, SETVAL, semctrl_arg) < 0) {
EL((ASSAERR,"Can't SETVAL[0]\n"));
Assure_exit (false);
}
semctrl_arg.val = BIGCOUNT;
if (semctl (m_id, 1, SETVAL, semctrl_arg) < 0) {
EL((ASSAERR,"Can't SETVAL[1]\n"));
Assure_exit (false);
}
} // if (semval == 0)
/*--- Decrement the process counter and then release the lock. ---*/
if (semop (m_id, &m_op_endcreate[0], 2) < 0) {
EL((ASSAERR,"Error on semop (ndcreate)\n"));
Assure_exit (false);
}
return (m_id);
}
int
Semaphore::
open (key_t key_)
{
trace_with_mask("Semaphore::open", SEM);
if (IPC_PRIVATE == key_) {
EL((ASSAERR,"Not intended for private semaphores\n"));
return (-1);
}
else if (key_ == (key_t) -1) {
EL((ASSAERR,"Probably an ftok() error by caller\n"));
return (-1);
}
m_key = key_;
if ((m_id = semget (m_key, 3, 0)) < 0) {
EL((ASSAERR,"Error on semget(3)"));
return (-1);
}
/*--- Decrement the process counter. No need for lock ---*/
if (semop (m_id, &m_op_open[0], 1) < 0) {
EL((ASSAERR,"Error on semget(open)\n"));
Assure_exit(false);
}
return (m_id);
}
void
Semaphore::
remove ()
{
trace_with_mask("Semaphore::remove", SEM);
if (m_id < 0 || m_key == ((key_t) -1) ) return;
if (semctl (m_id, 0, IPC_RMID, 0) < 0) {
EL((ASSAERR,"Can't IPC_RMID\n"));
Assure_exit(false);
}
init ();
}
void
Semaphore::
close ()
{
trace_with_mask("Semaphore::close", SEM);
register int semval;
if (m_id < 0) return;
/*
First get the lock on semaphore, then increment process counter.
*/
if (semop (m_id, &m_op_close[0], 3) < 0) {
EL((ASSAERR,"Can't semop(2)\n"));
Assure_exit(false);
}
/*
Now that we have a lock, read the value of the process counter
to see if this is the last reference to the semaphore.
There is a race condition here (same as in Semaphore::create()).
*/
if ((semval = semctl (m_id, 1, GETVAL, 0)) < 0) {
EL((ASSAERR,"Can't GETVAL\n"));
Assure_exit(false);
}
if (semval > BIGCOUNT) {
EL((ASSAERR,"sem[1] > BIGCOUNT\n"));
Assure_exit(false);
}
else if (semval == BIGCOUNT) {
remove ();
}
else if (semop (m_id, &m_op_unlock[0], 1) < 0) {
EL((ASSAERR,"Can't unlock\n"));
Assure_exit(false);
}
/*--- Invalidate ---*/
init ();
}
void
Semaphore::
op (int value_)
{
/* Test if m_id is still valid. If it fails, then
* next operation is failing because of it. If not,
* then something else happens here.
*/
trace_with_mask("Semaphore::op", SEM);
int semval = 0;
dump ();
if ((semval = semctl (m_id, 1, GETVAL, 0)) < 0) {
EL((ASSAERR,"Can't GETVAL\n"));
Assure_exit (false);
}
/* This will fail on Solaris? */
if ((m_op_op[0].sem_op = value_) == 0) {
EL((ASSAERR,"Can't have value_ == 0\n"));
Assure_exit(false);
}
if (semop (m_id, &m_op_op[0], 1) < 0) {
EL((ASSAERR,"sem_op error\n"));
Assure_exit(false);
}
}
void
Semaphore::
dump (void) const
{
trace_with_mask("Semaphore::dump", SEM);
std::ostringstream msg;
msg << "\n\n\tKey.....: ";
if (m_key == (key_t) -1) {
msg << m_key;
}
else {
msg << "0x" << std::hex << m_key << std::dec;
}
msg << "\n\tID......: " << m_id << "\n\n";
if (m_id >= 0 && m_key >= (key_t) -1) {
msg << "\tsemval [0]\tproc counter[1]\tlock [2]\n"
<< "\t----------\t---------------\t--------\n";
/*--- Get value of element in semaphore set ---*/
msg << "\t " << semctl (m_id, 0, GETVAL)
<< "\t\t " << semctl (m_id, 1, GETVAL)
<< "\t\t " << semctl (m_id, 2, GETVAL);
}
else {
msg << "Semaphore id = -1. No info is available.";
}
msg << std::ends;
DL((SEM,"%s\n\n", msg.str ().c_str ()));
}
#endif /* !defined(WIN32) */
|