File: plock.c

package info (click to toggle)
dx 1:4.4.4-15
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 55,920 kB
  • sloc: ansic: 365,464; cpp: 156,582; sh: 10,872; java: 10,641; makefile: 2,293; javascript: 837; awk: 444; yacc: 327
file content (614 lines) | stat: -rw-r--r-- 11,584 bytes parent folder | download | duplicates (6)
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
863
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
/***********************************************************************/
/* Open Visualization Data Explorer                                    */
/* (C) Copyright IBM Corp. 1989,1999                                   */
/* ALL RIGHTS RESERVED                                                 */
/* This code licensed under the                                        */
/*    "IBM PUBLIC LICENSE - Open Visualization Data Explorer"          */
/***********************************************************************/

#include <dxconfig.h>
#if defined(linux) && (ENABLE_SMP_LINUX == 1)

#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/shm.h>
#include <sys/sem.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <math.h>
#include "plock.h"
#include <string.h>

#undef DEBUG_PLOCKS

#if defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED)
/* union semun is defined by including <sys/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

#define SEM_FLAGS  	 (IPC_CREAT | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)
#define SHM_FLAGS  	 (IPC_CREAT | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)
#define OPEN_FLAGS 	 (O_CREAT)
#define OPEN_MODE  (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)
#define IS_MINE(a)	 (locks->_owner[a] == getpid())
#define SET_OWNER(a)	 (locks->_owner[a] = getpid())
#define CLEAR_OWNER(a)	 (locks->_owner[a] = 0)
#define IS_LOCKED(a)     (locks->_owner[a] != 0)
#define IS_UNLOCKED(a)   (! IS_LOCKED(a))
#define SEM_FLG 	 SEM_UNDO
#define MAGIC		 329430943

#define LOCKS_PER_SEMID	    250
#define SEM_BUFS	    256
#define MAXLOCKS	    (LOCKS_PER_SEMID * SEM_BUFS)
#define LOCK_SEMID(a)	    ((a)/LOCKS_PER_SEMID)
#define LOCK_OFFSET(a)	    ((a)%LOCKS_PER_SEMID)
#define CREATE_LOCK_ID(b,o) (((b)*LOCKS_PER_SEMID)   (o))

typedef struct
{
    int _magic;
    int _shmid;

    /*
     * locking the whole ball of wax
     */
    int _locklock;

#if defined(DEBUG_PLOCKS)
    /*
     * for debugging
     */
    int _findlock;
#endif

    int _totAllocated;
    int _totFreed;

    /*
     * index of next bunch of semaphores to allocate
     */
    int _nbuf;

    /*
     * For transfer of an inter-process message
     */
    int _value;
    int _sendlock;
    int _sendwait;

    /*
     * If a lock is locked, which process has it locked?
     */
    int _owner[MAXLOCKS];
    int _allocated[MAXLOCKS];

    /*
     * list of free locks
     */
    int _free[MAXLOCKS];
    int _nfree;

    /*
     * list of semaphore buffers
     */
    struct
    {
	int _nalloc;
	int _semid;
    } _sbufs[SEM_BUFS];

} _locks;

static _locks  *locks = NULL;
static void    _lock(int);
static void    _unlock(int);

#if defined(DEBUG_PLOCKS)
void
foundlock(int i, char *s)
{
    fprintf(stderr, "foundlock %s: %d on %d\n", s, i, getpid());
}
#endif

#define LOCKFILE "/tmp/P.locks"
#define PROJ	 'a'

static void
bump(int l, int v)
{
    struct sembuf sops;
    int sid, soff;

    sid = LOCK_SEMID(l);
    soff = LOCK_OFFSET(l);

    sops.sem_num = soff;
    sops.sem_op = v;
    sops.sem_flg = SEM_FLG;

    errno = 0;

    while ((semop(locks->_sbufs[sid]._semid, &sops, 1) != 0) && (errno == EINTR));

    if (errno)
        perror("error bumping lock");
}

static void
_lock(int l)
{
#if defined(DEBUG_PLOCKS)
    int n0, n1;
    int sid, soff;

    if (l == locks->_findlock)
    {
	sid = LOCK_SEMID(l);
	soff = LOCK_OFFSET(l);

	n0 = semctl(locks->_sbufs[sid]._semid, soff, GETVAL);
    }
#endif

    bump(l, -1);

#if defined(DEBUG_PLOCKS)
    if (l == locks->_findlock)
    {
        char buf[1024];

	n1 = semctl(locks->_sbufs[sid]._semid, soff, GETVAL);

	sprintf(buf, "_lock: %d %d", n0, n1);
        foundlock(locks->_findlock, buf);
    }
#endif

}

static void
_unlock(int l)
{
#if defined(DEBUG_PLOCKS)
    int n0, n1;
    int sid, soff;

    if (l == locks->_findlock)
    {
	sid = LOCK_SEMID(l);
	soff = LOCK_OFFSET(l);

	n0 = semctl(locks->_sbufs[sid]._semid, soff, GETVAL);
    }
#endif

    bump(l, 1);

#if defined(DEBUG_PLOCKS)
    if (l == locks->_findlock)
    {
        char buf[1024];

	n1 = semctl(locks->_sbufs[sid]._semid, soff, GETVAL);

	sprintf(buf, "_unlock: %d %d", n0, n1);
        foundlock(locks->_findlock, buf);
    }
#endif

}

static void
_cleanup()
{
    if (locks)
    {
	struct shmid_ds buf;
	int shmid = locks->_shmid;

	if (shmctl(shmid, IPC_STAT, &buf) == 0)
	    if (buf.shm_nattch == 1)
	    {
	        int i;
		for (i = 0; i < locks->_nbuf; i  )
		    semctl(locks->_sbufs[i]._semid, 0, IPC_RMID, NULL);
		shmctl(shmid, IPC_RMID, 0);
	    }

	shmdt(locks);
	locks = NULL;
    }
}

static int
_alloc()
{
    if (locks->_nbuf == SEM_BUFS)
    {
        fprintf(stderr, "too many locks created\n");
	return 0;
    }
    
    locks->_sbufs[locks->_nbuf]._nalloc = 0;

    locks->_sbufs[locks->_nbuf]._semid = semget(IPC_PRIVATE, LOCKS_PER_SEMID, SEM_FLAGS);
    if (-1 == locks->_sbufs[locks->_nbuf]._semid)
    {
	perror("error creating sem");
	abort();
    }

    locks->_nbuf  ;

    return 1;
}

int
PLockInit()
{
    int shmid;
    struct stat statbuf;
    key_t k;

    if (locks)
    {
        fprintf(stderr, "initLocks: locks already initted\n");
	return 0;
    }

    if (stat(LOCKFILE, &statbuf))
    {
        int fd = open(LOCKFILE, OPEN_FLAGS, OPEN_MODE);
	if (fd < 0)
	{
	    fprintf(stderr, "initLocks: error accessing locks shared block: open\n");
	    return 0;
	}
	close(fd);
    }
        
    k = ftok(LOCKFILE, PROJ);

    shmid = shmget(k, sizeof(_locks), SHM_FLAGS);
    if (shmid == 0)
    {
        fprintf(stderr, "initLocks: error accessing locks shared block: shmget\n");
	return 0;
    }

    locks = (_locks *)shmat(shmid, 0, 0);
    if (locks == (_locks *)-1)
    {
        fprintf(stderr, "initLocks: error accessing locks shared block: shmat\n");
	return 0;
    }

    if (locks->_magic != MAGIC)
    {
	locks->_magic  	     = MAGIC;
	locks->_shmid  	     = shmid;
	locks->_nbuf   	     = 0;
	locks->_nfree  	     = 0;
	locks->_totAllocated = 0;
	locks->_totFreed 	     = 0;
	memset(locks->_allocated, 0, sizeof(locks->_allocated));

#if defined(DEBUG_PLOCKS)

        s = getenv("PLOCK_DEBUG");
	if (s)
	{
	    locks->_findlock = atoi(s);
	    fprintf(stderr, "plock: looking for %d\n", locks->_findlock);
	}
	else
	    locks->_findlock = -1;
#endif

	if (! _alloc())
	    return 0;

	/*
	 * lock lock is allocated unlocked
	 */
	locks->_locklock = 0;
	_unlock(locks->_locklock);
	locks->_sbufs[0]._nalloc   ;

	/*
	 * now we can use the standard lock allocator
	 *
	 * initialize snd/rcv.  
	 */
	locks->_sendlock = PLockAllocateLock(1);
	locks->_sendwait = PLockAllocateLock(1);
    }

    atexit(_cleanup);

    return 1;
}

int
PLockAllocateLock(int locked)
{
    int i = -1;
    int sid, soff;
    union semun sbuf;

    _lock(locks->_locklock);

    locks->_totAllocated   ;

    if (locks->_nfree)
    {
	locks->_nfree --;
        i = locks->_free[locks->_nfree];

	sid  = locks->_sbufs[LOCK_SEMID(i)]._semid;
	soff = LOCK_OFFSET(i);
    }
    else
    {
        if (locks->_sbufs[locks->_nbuf - 1]._nalloc == LOCKS_PER_SEMID)
	    if (! _alloc())
	        return -1;

	sid  = locks->_sbufs[locks->_nbuf - 1]._semid;
	soff = locks->_sbufs[locks->_nbuf - 1]._nalloc;
	i = CREATE_LOCK_ID(locks->_nbuf - 1, soff);
	locks->_sbufs[locks->_nbuf - 1]._nalloc   ;

    }

    if (locked)
        sbuf.val = 0;
    else
        sbuf.val = 1;

    if (semctl(sid, soff, SETVAL, sbuf) == -1)
        perror("PLockAllocateLock");

    SET_OWNER(i);
    locks->_allocated[i] = 1;

#if defined(DEBUG_PLOCKS)
    if (i == locks->_findlock)
        foundlock(locks->_findlock, "PLockAllocateLock");
#endif

    _unlock(locks->_locklock);

    return i;
}

void
PLockFreeLock(int l)
{
    int n;
    int sid, soff;

    _lock(locks->_locklock);

    locks->_totFreed  ;

#if defined(DEBUG_PLOCKS)
    if (l == locks->_findlock)
        foundlock(locks->_findlock, "PLockFreeLock");
#endif

    sid = LOCK_SEMID(l);
    soff = LOCK_OFFSET(l);

    n = semctl(locks->_sbufs[sid]._semid, soff, GETVAL);
    if (n < 0)
    {
	fprintf(stderr, "PLockFreeLock: invalid lock: %d on process %d\n", l, getpid());
	goto out;
    }

    locks->_owner[l] = 0;
    locks->_allocated[l] = 0;

    locks->_free[locks->_nfree] = l;
    locks->_nfree   ;

out:
    _unlock(locks->_locklock);
}

int
PLockLock(int l)
{
    _lock(locks->_locklock);

#if defined(DEBUG_PLOCKS)
    if (l == locks->_findlock)
        foundlock(locks->_findlock, "PLockLock entry");
#endif

    if (l < 3)
    {
        fprintf(stderr, "PLockLock: invalid lock: %d on process %d\n", l, getpid());
	goto out;
    }

    _unlock(locks->_locklock);
    _lock(l);
    _lock(locks->_locklock);

    SET_OWNER(l);

#if defined(DEBUG_PLOCKS)
    if (l == locks->_findlock)
        foundlock(locks->_findlock, "PLockLock exit");
#endif

    _unlock(locks->_locklock);

    return 1;

out:
    _unlock(locks->_locklock);
    return 0;
}

int
PLockTryLock(int l)
{
    _lock(locks->_locklock);

#if defined(DEBUG_PLOCKS)
    if (l == locks->_findlock)
        foundlock(locks->_findlock, "PLockTryLock");
#endif

    if (l < 3)
    {
        fprintf(stderr, "PLockTryLock: invalid lock: %d on process %d\n", l, getpid());
	goto out;
    }

    if (locks->_owner[l])
        goto out;

    while (IS_LOCKED(l))
    {
	_unlock(locks->_locklock);
	_lock(l);
	_lock(locks->_locklock);
    }

    SET_OWNER(l);

    _unlock(locks->_locklock);

    return 1;

out:
    _unlock(locks->_locklock);
    return 0;
}

int
PLockUnlock(int l)
{
    _lock(locks->_locklock);

#if defined(DEBUG_PLOCKS)
    if (l == locks->_findlock)
        foundlock(locks->_findlock, "PLockUnlock");
#endif

    if (l < 3)
    {
        fprintf(stderr, "PLockUnlock: invalid lock: %d on process %d \n", l, getpid());
	goto out;
    }

    CLEAR_OWNER(l);
    _unlock(l);

    _unlock(locks->_locklock);

    return 1;

out:
    _unlock(locks->_locklock);
    return 0;
}

int
PLockAllocateWait()
{
    return PLockAllocateLock(1);
}

void
PLockFreeWait(int l)
{
    return PLockFreeLock(l);
}

int
PLockWait(int w, int l)
{
    _lock(locks->_locklock);

    if (w < 3)
    {
        fprintf(stderr, "PLockWait: invalid wait: %d on process %d\n", w, getpid());
	goto out;
    }

    if (l < 3)
    {
        fprintf(stderr, "PLockWait: invalid lock: %d on process %d\n", l, getpid());
	goto out;
    }

    if (! IS_LOCKED(l))
    {
        fprintf(stderr, "PLockWait: lock is not locked: %d on process %d\n", l, getpid());
	goto out;
    }

    if (!IS_MINE(l))
    {
        fprintf(stderr, "PLockWait: attempting to unlock someone else's lock: %d pid %d\n", l, getpid());
	goto out;
    }

    CLEAR_OWNER(l);
    _unlock(l);

    SET_OWNER(w);
    _unlock(locks->_locklock);
    bump(w, -1);
    _lock(l);
    _lock(locks->_locklock);

    SET_OWNER(l);

    _unlock(locks->_locklock);

    return 1;

out:
    _unlock(locks->_locklock);
    return 0;
}

int 
PLockSignal(int w)
{
    _lock(locks->_locklock);

    if (IS_LOCKED(w))
	bump(w, 1);
    
    _unlock(locks->_locklock);

    return 1;
}

void
PLockStats()
{
    fprintf(stderr, "%d locks allocated, %d locks freed, %d locks outstanding\n",
    		locks->_totAllocated, locks->_totFreed, 
    		locks->_totAllocated - locks->_totFreed);
}

#endif