forked from asipto/kamailio-devel-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
c03locking.xml
757 lines (749 loc) · 19.3 KB
/
c03locking.xml
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
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
<chapter id="c03locks">
<title>Locking system</title>
<para>
&kamailio; provides a custom locking system which has a simple interface for development.
Its root element is a mutex semaphore, that can be set (locked) or unset (unlocked). The rest
of synchronization mechanisms available in SysV and POSIX not being needed.
</para>
<para>
The locks can be used as simple variables or lock sets (array of simple locks). To improve
the speed, behind the locks is, by default, machine-specific code. If the architecture of the
machine is unknown, &kamailio; will use SysV semaphores.
</para>
<section id="c03asml">
<title>Simple Locks API</title>
<para>
Basically, to create a lock, you have to define a variable of type
<emphasis role="strong">gen_lock_t</emphasis>, allocate it in shared memory and initialize it.
Then you can perform set/unset operations, destroying the variable when you finish using it.
</para>
<para>
To use the locking system in your C code you have to include the headers file:
<emphasis role="strong">locking.h</emphasis>.
</para>
<para>
Data types and available functions to do operations with locks are described in the next
sections.
</para>
<section id="c03glock">
<title>gen_lock_t</title>
<para>
It is the type to define a lock variable. It must be allocated in shared memory, to be
available across &kamailio; processes.
</para>
<example id="c03ex_gen_lock_t">
<title>Defining a lock</title>
<programlisting format="linespecific">
...
#include "locking.h"
gen_lock_t lock;
...
</programlisting>
</example>
</section>
<section id="c03lock_alloc">
<title>lock_alloc(...)</title>
<para>
Allocates a lock in shared memory. If your <emphasis role="strong">gen_lock_t</emphasis>
is not part of a structure allocated in shared memory, you have to use this function to
properly create the lock.
</para>
<example id="c03p_lock_alloc">
<title>Prototype</title>
<programlisting format="linespecific">
...
gen_lock_t* lock_alloc();
...
</programlisting>
</example>
<para>
It returns the pointer to a shared memory structure.
</para>
<example id="c03ex_lock_alloc">
<title>Example of usage</title>
<programlisting format="linespecific">
...
#include "locking.h"
...
gen_lock_t *lock;
lock = lock_alloc();
if(lock==NULL)
{
LM_ERR("cannot allocate the lock\n");
exit;
}
...
</programlisting>
</example>
<para>
Lock allocation can be skipped if the lock is already in shared memory
-- BUT be sure the lock content IS in shared memory.
</para>
<example id="c03ex_lock_alloc_shm">
<title>Example of lock in shared memory</title>
<programlisting format="linespecific">
...
struct s {
int a;
gen_lock_t lock;
} *x;
x = shm_malloc(sizeof struct s); /* we allocate it in the shared memory */
if (lock_init(&x->lock)==0){
/* error initializing the lock */
...
}
...
</programlisting>
</example>
</section>
<section id="c03lock_dealloc">
<title>lock_dealloc(...)</title>
<para>
Free the shared memory allocated for lock.
</para>
<example id="c03p_lock_dealloc">
<title>Prototype</title>
<programlisting format="linespecific">
...
void lock_dealloc(gen_lock_t* lock);
...
</programlisting>
</example>
<para>
The parameter is a variable returned by <emphasis role="strong">lock_alloc(...)</emphasis>.
</para>
<example id="c03ex_lock_dealloc">
<title>Example of usage</title>
<programlisting format="linespecific">
...
#include "locking.h"
...
gen_lock_t *lock;
lock = lock_alloc();
if(lock==NULL)
{
LM_ERR("cannot allocate the lock\n");
exit;
}
/* make use of lock */
...
lock_dealloc(lock);
...
</programlisting>
</example>
</section>
<section id="c03lock_init">
<title>lock_init(...)</title>
<para>
Initialize the lock. You must call this function before the first set operation on the lock.
</para>
<example id="c03p_lock_init">
<title>Prototype</title>
<programlisting format="linespecific">
...
gen_lock_t* lock_init(gen_lock_t* lock);
...
</programlisting>
</example>
<para>
It returns the parameter if there is no error, <emphasis role="strong">NULL</emphasis>
if error occurred.
</para>
<example id="c03ex_lock_init">
<title>Example of usage</title>
<programlisting format="linespecific">
...
#include "locking.h"
...
gen_lock_t *lock;
lock = lock_alloc();
if(lock==NULL)
{
LM_ERR("cannot allocate the lock\n");
exit;
}
if(lock_init(lock)==NULL)
{
LM_ERR("cannot init the lock\n");
lock_dealloc(lock);
exit;
}
/* make use of lock */
...
lock_dealloc(lock);
...
</programlisting>
</example>
</section>
<section id="c03lock_destroy">
<title>lock_destroy(...)</title>
<para>
Destroy internal attributes of <emphasis role="strong">gen_lock_t</emphasis>. You must
call it before deallocating a lock to ensure proper clean up (if SysV is used, it calls
the functions to remove the semaphores).
</para>
<example id="c03p_lock_destroy">
<title>Prototype</title>
<programlisting format="linespecific">
...
void lock_destroy(gen_lock_t* lock);
...
</programlisting>
</example>
<para>
The parameter is a lock initialized with <emphasis role="strong">lock_init(...)</emphasis>.
</para>
<example id="c03ex_lock_destroy">
<title>Example of usage</title>
<programlisting format="linespecific">
...
#include "locking.h"
...
gen_lock_t *lock;
lock = lock_alloc();
if(lock==NULL)
{
LM_ERR("cannot allocate the lock\n");
exit;
}
if(lock_init(lock)==NULL)
{
LM_ERR("cannot init the lock\n");
lock_dealloc(lock);
exit;
}
/* make use of lock */
...
lock_destroy(lock);
lock_dealloc(lock);
...
</programlisting>
</example>
</section>
<section id="c03lock_get">
<title>lock_get(...)</title>
<para>
Perform set operation on a lock. If the lock is already set, the function waits until
the lock is unset.
</para>
<example id="c03p_lock_get">
<title>Prototype</title>
<programlisting format="linespecific">
...
void lock_get(gen_lock_t* lock);
...
</programlisting>
</example>
<para>
The parameter must be initialized with <emphasis role="strong">lock_init(...)</emphasis>
before calling this function.
</para>
<example id="c03ex_lock_get">
<title>Example of usage</title>
<programlisting format="linespecific">
...
#include "locking.h"
...
gen_lock_t *lock;
lock = lock_alloc();
if(lock==NULL)
{
LM_ERR("cannot allocate the lock\n");
exit;
}
if(lock_init(lock)==NULL)
{
LM_ERR("cannot init the lock\n");
lock_dealloc(lock);
exit;
}
/* make use of lock */
lock_get(lock);
/* under lock protection */
...
lock_destroy(lock);
lock_dealloc(lock);
...
</programlisting>
</example>
</section>
<section id="c03lock_try">
<title>lock_try(...)</title>
<para>
Try to perform set operation on a lock. If the lock is already set, the function
returns -1, otherwise sets the lock and returns 0. This is a non-blocking lock_get().
</para>
<example id="c03p_lock_try">
<title>Prototype</title>
<programlisting format="linespecific">
...
int lock_try(gen_lock_t* lock);
...
</programlisting>
</example>
<para>
The parameter must be initialized with <emphasis role="strong">lock_init(...)</emphasis>
before calling this function.
</para>
<example id="c03ex_lock_try">
<title>Example of usage</title>
<programlisting format="linespecific">
...
#include "locking.h"
...
gen_lock_t *lock;
lock = lock_alloc();
if(lock==NULL)
{
LM_ERR("cannot allocate the lock\n");
exit;
}
if(lock_init(lock)==NULL)
{
LM_ERR("cannot init the lock\n");
lock_dealloc(lock);
exit;
}
/* make use of lock */
if(lock_try(lock)==0) {
/* under lock protection */
...
} else {
/* NO lock protection */
...
}
...
lock_destroy(lock);
lock_dealloc(lock);
...
</programlisting>
</example>
</section>
<section id="c03lock_release">
<title>lock_release(...)</title>
<para>
Perform unset operation on a lock. If the lock is set, it will unblock it. You
should call it after <emphasis role="strong">lock_set(...)</emphasis>, after finishing
the operations that needs synchronization and protection against race conditions.
</para>
<example id="c03p_lock_release">
<title>Prototype</title>
<programlisting format="linespecific">
...
void lock_release(gen_lock_t* lock);
...
</programlisting>
</example>
<para>
The parameter must be initialized before calling this function.
</para>
<example id="c03ex_lock_release">
<title>Example of usage</title>
<programlisting format="linespecific">
...
#include "locking.h"
...
gen_lock_t *lock;
lock = lock_alloc();
if(lock==NULL)
{
LM_ERR("cannot allocate the lock\n");
exit;
}
if(lock_init(lock)==NULL)
{
LM_ERR("cannot init the lock\n");
lock_dealloc(lock);
exit;
}
/* make use of lock */
lock_get(lock);
/* under lock protection */
...
lock_release(lock);
...
lock_destroy(lock);
lock_dealloc(lock);
...
</programlisting>
</example>
</section>
</section>
<section id="c03astl">
<title>Lock Set API</title>
<para>
The lock set is an array of <emphasis role="strong">gen_lock_t</emphasis>. To create a
lock set, you have to define a variable of type
<emphasis role="strong">gen_lock_set_t</emphasis>, allocate it in shared memory specifying the
number of locks in the set, then initialize it. You can perform set/unset operations,
providing the lock set variable and destroying the variable when you finish using it.
</para>
<para>
To use the lock sets in your C code you have to include the headers file:
<emphasis role="strong">locking.h</emphasis>.
</para>
<para>
Data types and available functions to do operations with lock sets are described in the next
sections.
</para>
<section id="c03gen_lock_set_t">
<title>gen_lock_set_t</title>
<para>
It is the type to define a lock set variable. It must be allocated in shared memory, to be
available across &kamailio; processes.
</para>
<example id="c03ex_gen_lock_set_t">
<title>Defining a lock</title>
<programlisting format="linespecific">
...
#include "locking.h"
gen_lock_set_t lock_set;
...
</programlisting>
</example>
</section>
<section id="c03lock_set_alloc">
<title>lock_set_alloc(...)</title>
<para>
Allocates a lock set in shared memory.
</para>
<example id="c03p_lock_set_alloc">
<title>Prototype</title>
<programlisting format="linespecific">
...
gen_lock_set_t* lock_set_alloc(int n);
...
</programlisting>
</example>
<para>
The parameter <emphasis role="strong">n</emphasis> specifies the number
of locks in the set. Return pointer to the lock set, or NULL if the set couldn't
be allocated.
</para>
<example id="c03ex_lock_set_alloc">
<title>Example of usage</title>
<programlisting format="linespecific">
...
#include "locking.h"
...
gen_lock_set_t *set;
set = lock_set_alloc(16);
if(set==NULL)
{
LM_ERR("cannot allocate the lock set\n");
exit;
}
...
</programlisting>
</example>
</section>
<section id="c03lock_set_dealloc">
<title>lock_set_dealloc(...)</title>
<para>
Free the memory allocated for a lock set.
</para>
<example id="c03p_lock_set_dealloc">
<title>Prototype</title>
<programlisting format="linespecific">
...
void lock_set_dealloc(gen_lock_set_t* set);
...
</programlisting>
</example>
<para>
The parameter has to be a lock set allocated with
<emphasis role="strong">lock_set_alloc(...)</emphasis>.
</para>
<example id="c03ex_lock_set_dealloc">
<title>Example of usage</title>
<programlisting format="linespecific">
...
#include "locking.h"
...
gen_lock_set_t *set;
set = lock_set_alloc(16);
if(set==NULL)
{
LM_ERR("cannot allocate the lock set\n");
exit;
}
...
lock_set_dealloc(set);
...
</programlisting>
</example>
</section>
<section id="c03lock_set_init">
<title>lock_set_init(...)</title>
<para>
Initialized the internal attributes of a lock set. The lock set has to be allocated
with <emphasis role="strong">lock_set_alloc(...)</emphasis>. This function must be
called before performing any set/unset operation on lock set.
</para>
<example id="c03p_lock_set_init">
<title>Prototype</title>
<programlisting format="linespecific">
...
gen_lock_set_t* lock_set_init(gen_lock_set_t* set);
...
</programlisting>
</example>
<para>
The parameter is an allocated lock set. It returns NULL if the lock set couldn't be
initialized, otherwise returns the pointer to the lock set.
</para>
<example id="c03ex_lock_set_init">
<title>Example of usage</title>
<programlisting format="linespecific">
...
#include "locking.h"
...
gen_lock_set_t *set;
set = lock_set_alloc(16);
if(set==NULL)
{
LM_ERR("cannot allocate the lock set\n");
exit;
}
if(lock_set_init(set)==NULL)
{
LM_ERR("cannot initialize the lock set'n");
lock_set_dealloc(set);
exit;
}
/* make usage of lock set */
...
lock_set_dealloc(set);
...
</programlisting>
</example>
</section>
<section id="c03lock_set_destroy">
<title>lock_set_destroy(...)</title>
<para>
Destroy the internal structure of the lock set. You have to call it once
you finished to use the lock set. The function must be called after
<emphasis role="strong">lock_set_init(...)</emphasis>
</para>
<example id="c03p_lock_set_destroy">
<title>Prototype</title>
<programlisting format="linespecific">
...
void lock_set_destroy(gen_lock_set_t* set);
...
</programlisting>
</example>
<para>
The parameter is an initialized lock set. After calling this function you should not
perform anymore set/unset operations on lock set.
</para>
<example id="c03ex_lock_set_destroy">
<title>Example of usage</title>
<programlisting format="linespecific">
...
#include "locking.h"
...
gen_lock_set_t *set;
set = lock_set_alloc(16);
if(set==NULL)
{
LM_ERR("cannot allocate the lock set\n");
exit;
}
if(lock_set_init(set)==NULL)
{
LM_ERR("cannot initialize the lock set'n");
lock_set_dealloc(set);
exit;
}
/* make usage of lock set */
...
lock_set_destroy(set);
lock_set_dealloc(set);
...
</programlisting>
</example>
</section>
<section id="c03lock_set_get">
<title>lock_set_get(...)</title>
<para>
Set (block) a lock in the lock set. You should call this function after the lock set
has been initialized. If the lock is already set, the function waits until that lock is
unset (unblocked).
</para>
<example id="c03p_lock_set_get">
<title>Prototype</title>
<programlisting format="linespecific">
...
void lock_set_get(gen_lock_set_t* set, int i);
...
</programlisting>
</example>
<para>
First parameter is the lock set. The second is the index withing the set of the lock to
be set. First lock in set has index 0. The index parameter must be between
<emphasis role="strong">0</emphasis> and <emphasis role="strong">n-1</emphasis> (see
<emphasis role="strong">lock_set_alloc(...)</emphasis>.
</para>
<example id="c03ex_lock_set_get">
<title>Example of usage</title>
<programlisting format="linespecific">
...
#include "locking.h"
...
gen_lock_set_t *set;
set = lock_set_alloc(16);
if(set==NULL)
{
LM_ERR("cannot allocate the lock set\n");
exit;
}
if(lock_set_init(set)==NULL)
{
LM_ERR("cannot initialize the lock set'n");
lock_set_dealloc(set);
exit;
}
/* make usage of lock set */
lock_set_get(set, 8);
/* under lock protection */
...
lock_set_destroy(set);
lock_set_dealloc(set);
...
</programlisting>
</example>
</section>
<section id="c03lock_set_try">
<title>lock_set_get(...)</title>
<para>
Try to set (block) a lock in the lock set. You should call this function after the lock set
has been initialized. If the lock is already set, the function returns -1, otherwise it sets
the lock and returns 0. This is a non-blocking lock_set_get().
</para>
<example id="c03p_lock_set_try">
<title>Prototype</title>
<programlisting format="linespecific">
...
int lock_set_try(gen_lock_set_t* set, int i);
...
</programlisting>
</example>
<para>
First parameter is the lock set. The second is the index withing the set of the lock to
be set. First lock in set has index 0. The index parameter must be between
<emphasis role="strong">0</emphasis> and <emphasis role="strong">n-1</emphasis> (see
<emphasis role="strong">lock_set_alloc(...)</emphasis>.
</para>
<example id="c03ex_lock_set_try">
<title>Example of usage</title>
<programlisting format="linespecific">
...
#include "locking.h"
...
gen_lock_set_t *set;
set = lock_set_alloc(16);
if(set==NULL)
{
LM_ERR("cannot allocate the lock set\n");
exit;
}
if(lock_set_init(set)==NULL)
{
LM_ERR("cannot initialize the lock set'n");
lock_set_dealloc(set);
exit;
}
/* make usage of lock set */
if(lock_set_try(set, 8)==0) {
/* under lock protection */
...
} else {
/* NO lock protection */
...
}
...
lock_set_destroy(set);
lock_set_dealloc(set);
...
</programlisting>
</example>
</section>
<section id="c03lock_set_release">
<title>lock_set_release(...)</title>
<para>
Unset (unblock) a lock in the lock set.
</para>
<example id="c03p_lock_set_release">
<title>Prototype</title>
<programlisting format="linespecific">
...
void lock_set_release(gen_lock_set_t* set, int i);
...
</programlisting>
</example>
<para>
First parameter is the lock set. The second is the index withing the set of the lock to
be unset. First lock in set has index 0. The index parameter must be between
<emphasis role="strong">0</emphasis> and <emphasis role="strong">n-1</emphasis> (see
<emphasis role="strong">lock_set_alloc(...)</emphasis>.
</para>
<example id="c03ex_lock_set_release">
<title>Example of usage</title>
<programlisting format="linespecific">
...
#include "locking.h"
...
gen_lock_set_t *set;
set = lock_set_alloc(16);
if(set==NULL)
{
LM_ERR("cannot allocate the lock set\n");
exit;
}
if(lock_set_init(set)==NULL)
{
LM_ERR("cannot initialize the lock set'n");
lock_set_dealloc(set);
exit;
}
/* make usage of lock set */
lock_set_get(set, 8);
/* under lock protection */
...
lock_set_release(set, 8);
...
lock_set_destroy(set);
lock_set_dealloc(set);
...
</programlisting>
</example>
</section>
</section>
<section id="c03troubleshooting">
<title>Troubleshooting</title>
<para>
A clear sign of issues with the locking is that one or more &kamailio; processes eat lot of CPU.
If the traffic load does not justify such behavior and no more SIP messages are processed, the only
solution is to troubleshoot and fix the locking error. The problem is that a lock is set but never
unset. A typical case is when returning due to an error and forgetting to release a previously lock
set.
</para>
<para>
To troubleshoot a solution is to use <emphasis role="strong">gdb</emphasis>, attach to the process
that eats lot of CPU and get the backtrace. You need to get the PID of that &kamailio; process -
<emphasis role="strong">top</emphasis> or <emphasis role="strong">ps</emphasis> tools can be used.
</para>
<programlisting format="linespecific">
...
# gdb /path/to/kamailio PID
# gdb> bt
...
</programlisting>
<para>
From the backtrace you should get to the lock that is set and not released. From there you should
start the investigation - what are the cases to set that lock and in which circumstances it does not
get released.
</para>
</section>
</chapter>