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
|
{
This file is part of the Free Pascal run time library.
Copyright (c) 1999-2004 by the Free Pascal development team
This file implements IPC calls calls for Linu/FreeBSD
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program 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.
**********************************************************************}
unit ipc;
interface
Uses
{$ifdef FPC_USE_LIBCX}
initc,
{$endif}
BaseUnix,UnixType;
{$i osdefs.inc} { Compile time defines }
{ ----------------------------------------------------------------------
General IPC stuff
----------------------------------------------------------------------}
//Var
// IPCError : longint;
{$packrecords c}
Type
{$IFDEF FreeBSD}
TKey = clong;
{$ELSE}
TKey = cint;
{$ENDIF}
key_t = TKey;
Const
{ IPC flags for get calls }
{$if defined(FreeBSD) or defined(NetBSD) or defined(OpenBSD)} // BSD_VISIBLE
IPC_R = 4 shl 6;
IPC_W = 2 shl 6;
IPC_M = 2 shl 12;
{$endif}
{$ifdef Darwin}
IPC_R = 4 shl 6;
IPC_W = 2 shl 6;
IPC_M = 1 shl 12;
{$endif}
IPC_CREAT = 1 shl 9; { create if key is nonexistent }
IPC_EXCL = 2 shl 9; { fail if key exists }
IPC_NOWAIT = 4 shl 9; { return error on wait }
{$if defined(FreeBSD) or defined(Darwin) or defined(Linux) or defined(OpenBSD)}
IPC_PRIVATE : TKey = 0;
{$endif}
{ Actions for ctl calls }
IPC_RMID = 0; { remove resource }
IPC_SET = 1; { set ipc_perm options }
IPC_STAT = 2; { get ipc_perm options }
{$ifndef Darwin}
IPC_INFO = 3; { see ipcs }
{$endif}
type
PIPC_Perm = ^TIPC_Perm;
{$ifdef darwin }
{$packrecords 4}
{ This is also the strcut for FreeBSD up to version 7
renamed ipc_perm_old in /usr/include/sys/ipc.h in version 8 and after }
TIPC_Perm = record
cuid : cushort; { creator user id }
cgid : cushort; { creator group id }
uid : cushort; { user id }
gid : cushort; { group id }
mode : cushort; { r/w permission }
seq : cushort; { sequence # (to generate unique msg/sem/shm id) }
key : key_t; { user specified msg/sem/shm key }
End;
{$packrecords c}
{$else }
{$if defined(NetBSD) or defined(OpenBSD) or defined(FreeBSD) }
TIPC_Perm = record
cuid : uid_t; { creator user id }
cgid : gid_t; { creator group id }
uid : uid_t; { user id }
gid : gid_t; { group id }
mode : mode_t; { r/w permission }
seq : cushort; { sequence # (to generate unique msg/sem/shm id) }
key : key_t; { user specified msg/sem/shm key }
End;
{$else } // linux
{$ifdef cpu32}
{$ifndef linux_ipc64}
{$define linux_ipc32}
{$endif}
{$endif}
{$if not defined(linux_ipc32) and not defined(FPC_USE_LIBC)}
TIPC_Perm = record
key : TKey;
uid : kernel_uid_t;
gid : kernel_gid_t;
cuid : kernel_uid_t;
cgid : kernel_gid_t;
mode : kernel_mode_t;
{$if sizeof(kernel_mode_t) < 4}
__pad1 : array[1..4-sizeof(mode_t)];
{$endif}
{$ifdef cpupowerpc}
seq : cuint;
{$else}
seq : cushort;
{$endif}
__pad2 : cushort;
__unused1 : culong;
__unused2 : culong;
End;
{$else not(linux_ipc32) and not(FPC_USE_LIBC)}
TIPC_Perm = record
key : TKey;
uid : kernel_uid_t;
gid : kernel_gid_t;
cuid : kernel_uid_t;
cgid : kernel_gid_t;
mode : kernel_mode_t;
seq : cushort;
End;
{$endif not(linux_ipc32) and not(FPC_USE_LIBC)}
{$endif not netbsd}
{$endif not others}
{ Function to generate a IPC key. }
Function ftok (Path : pchar; ID : cint) : TKey; {$ifdef FPC_USE_LIBC} cdecl; external clib name 'ftok'; {$endif}
{ ----------------------------------------------------------------------
Sys V Shared memory stuff
----------------------------------------------------------------------}
Type
PShmid_DS = ^TShmid_ds;
{$if defined(FreeBSD) or defined(OpenBSD) or defined (NetBSD) }
TShmid_ds = record
shm_perm : TIPC_Perm;
shm_segsz : cint;
shm_lpid : pid_t;
shm_cpid : pid_t;
shm_nattch : cshort;
shm_atime : time_t;
shm_dtime : time_t;
shm_ctime : time_t;
shm_internal : pointer;
end;
{$endif}
{$ifdef Darwin}
{$packrecords 4}
TShmid_ds = record
shm_perm : TIPC_Perm;
shm_segsz : size_t;
shm_lpid : pid_t;
shm_cpid : pid_t;
shm_nattch : cushort; // typedef unsigned short shmatt_t
shm_atime : time_t;
shm_dtime : time_t;
shm_ctime : time_t;
shm_internal : pointer;
end;
{$packrecords c}
{$endif}
{$ifdef Linux}
{$ifdef cpux86_64}
TShmid_ds = record
shm_perm : TIPC_Perm;
shm_segsz : size_t;
shm_atime : time_t;
shm_dtime : time_t;
shm_ctime : time_t;
shm_cpid : pid_t;
shm_lpid : pid_t;
shm_nattch : culong;
__unused4 : culong;
__unused5 : culong;
end;
{$else cpux86_64}
TShmid_ds = record
shm_perm : TIPC_Perm;
shm_segsz : cint;
shm_atime : time_t;
shm_dtime : time_t;
shm_ctime : time_t;
shm_cpid : ipc_pid_t;
shm_lpid : ipc_pid_t;
shm_nattch : word;
shm_npages : word;
shm_pages : pointer;
attaches : pointer;
end;
{$endif cpux86_64}
{$endif}
const
{$ifdef Linux}
SHM_R = 4 shl 6;
SHM_W = 2 shl 6;
{$else}
SHM_R = IPC_R;
SHM_W = IPC_W;
{$endif}
SHM_RDONLY = 1 shl 12;
SHM_RND = 2 shl 12;
{$ifdef Linux}
SHM_REMAP = 4 shl 12;
{$endif}
{$ifdef Darwin}
SHMLBA = 4096;
{$endif}
SHM_LOCK = 11;
SHM_UNLOCK = 12;
{$ifdef FreeBSD} // ipcs shmctl commands
SHM_STAT = 13;
SHM_INFO = 14;
{$endif}
type // the shm*info kind is "kernel" only.
PSHMinfo = ^TSHMinfo;
TSHMinfo = record // comment under FreeBSD/Darwin: do we really need this?
shmmax : cint;
shmmin : cint;
shmmni : cint;
shmseg : cint;
shmall : cint;
end;
{$if defined(FreeBSD) or defined(OpenBSD) or defined(Linux)}
PSHM_info = ^TSHM_info;
TSHM_info = record
used_ids : cint;
shm_tot,
shm_rss,
shm_swp,
swap_attempts,
swap_successes : culong;
end;
{$endif}
Function shmget(key: Tkey; size:size_t; flag:cint):cint; {$ifdef FPC_USE_LIBC} cdecl; external clib name 'shmget'; {$endif}
Function shmat (shmid:cint; shmaddr:pointer; shmflg:cint):pointer; {$ifdef FPC_USE_LIBC} cdecl; external clib name 'shmat'; {$endif}
Function shmdt (shmaddr:pointer):cint; {$ifdef FPC_USE_LIBC} cdecl; external clib name 'shmdt'; {$endif}
Function shmctl(shmid:cint; cmd:cint; buf: pshmid_ds): cint; {$ifdef FPC_USE_LIBC} cdecl; external clib name 'shmctl'; {$endif}
{ ----------------------------------------------------------------------
Message queue stuff
----------------------------------------------------------------------}
const
MSG_NOERROR = 1 shl 12;
{$ifdef Linux}
MSG_EXCEPT = 2 shl 12;
MSGMNI = 128;
MSGMAX = 4056;
MSGMNB = 16384;
{$endif}
type
msglen_t = culong;
msgqnum_t= culong;
{$ifdef Darwin}
user_msglen_t = culonglong;
user_msgqnum_t= culonglong;
{$endif}
PMSG = ^TMSG;
TMSG = record
{$ifndef FreeBSD} // opague in FreeBSD
{$ifdef Darwin}
msg_next : PMSG;
msg_type : clong;
msg_ts : cushort;
mac_label : pointer;
{$else}
msg_next : PMSG;
msg_type : Longint;
msg_spot : PChar;
msg_stime : Longint;
msg_ts : Integer;
{$endif}
{$endif}
end;
type
{$ifdef Linux}
PMSQid_ds = ^TMSQid_ds;
TMSQid_ds = record
msg_perm : TIPC_perm;
msg_first : PMsg;
msg_last : PMsg;
msg_stime : time_t;
msg_rtime : time_t;
msg_ctime : time_t;
msg_cbytes : word;
msg_qnum : word;
msg_qbytes : word;
msg_lspid : ipc_pid_t;
msg_lrpid : ipc_pid_t;
end;
{$else}
{$ifdef Darwin}
{$packrecords 4}
PMSQid_ds = ^TMSQid_ds;
TMSQid_ds = record
msg_perm : TIPC_perm;
msg_first : cint32;
msg_last : cint32;
msg_cbytes : msglen_t;
msg_qnum : msgqnum_t;
msg_qbytes : msglen_t;
msg_lspid : pid_t;
msg_lrpid : pid_t;
msg_stime : time_t;
msg_pad1 : cint32;
msg_rtime : time_t;
msg_pad2 : cint32;
msg_ctime : time_t;
msg_pad3 : cint32;
msg_pad4 : array [0..3] of cint32;
end;
{$packrecords c}
{$else}
PMSQid_ds = ^TMSQid_ds;
TMSQid_ds = record
msg_perm : TIPC_perm;
msg_first : PMsg;
msg_last : PMsg;
msg_cbytes : msglen_t;
msg_qnum : msgqnum_t;
msg_qbytes : msglen_t;
msg_lspid : pid_t;
msg_lrpid : pid_t;
msg_stime : time_t;
msg_pad1 : clong;
msg_rtime : time_t;
msg_pad2 : clong;
msg_ctime : time_t;
msg_pad3 : clong;
msg_pad4 : array [0..3] of clong;
end;
{$endif}
{$endif}
PMSGbuf = ^TMSGbuf;
TMSGbuf = record // called mymsg on freebsd and SVID manual
mtype : clong;
mtext : array[0..0] of char;
end;
{$ifdef linux}
PMSGinfo = ^TMSGinfo;
TMSGinfo = record
msgpool : cint;
msgmap : cint;
msgmax : cint;
msgmnb : cint;
msgmni : cint;
msgssz : cint;
msgtql : cint;
msgseg : cushort;
end;
{$else}
PMSGinfo = ^TMSGinfo;
TMSGinfo = record
msgmax,
msgmni,
msgmnb,
msgtql,
msgssz,
msgseg : cint;
end;
{$endif}
Function msgget(key: TKey; msgflg:cint):cint; {$ifdef FPC_USE_LIBC} cdecl; external clib name 'msgget'; {$endif}
Function msgsnd(msqid:cint; msgp: PMSGBuf; msgsz: size_t; msgflg:cint): cint; {$ifdef FPC_USE_LIBC} cdecl; external clib name 'msgsnd'; {$endif}
Function msgrcv(msqid:cint; msgp: PMSGBuf; msgsz: size_t; msgtyp:clong; msgflg:cint): {$ifdef Darwin}ssize_t;{$else}cint;{$endif} {$ifdef FPC_USE_LIBC} cdecl; external clib name 'msgrcv'; {$endif}
Function msgctl(msqid:cint; cmd: cint; buf: PMSQid_ds): cint; {$ifdef FPC_USE_LIBC} cdecl; external clib name 'msgctl'; {$endif}
{ ----------------------------------------------------------------------
Semaphores stuff
----------------------------------------------------------------------}
const
{$ifdef Linux} // renamed to many name clashes
SEM_UNDO = $1000;
SEM_GETPID = 11;
SEM_GETVAL = 12;
SEM_GETALL = 13;
SEM_GETNCNT = 14;
SEM_GETZCNT = 15;
SEM_SETVAL = 16;
SEM_SETALL = 17;
SEM_SEMMNI = 128;
SEM_SEMMSL = 32;
SEM_SEMMNS = (SEM_SEMMNI * SEM_SEMMSL);
SEM_SEMOPM = 32;
SEM_SEMVMX = 32767;
{$else}
SEM_UNDO = 1 shl 12;
MAX_SOPS = 5;
SEM_GETNCNT = 3; { Return the value of sempid (READ) }
SEM_GETPID = 4; { Return the value of semval (READ) }
SEM_GETVAL = 5; { Return semvals into arg.array (READ) }
SEM_GETALL = 6; { Return the value of semzcnt (READ) }
SEM_GETZCNT = 7; { Set the value of semval to arg.val (ALTER) }
SEM_SETVAL = 8; { Set semvals from arg.array (ALTER) }
SEM_SETALL = 9;
{ Permissions }
SEM_A = 2 shl 6; { alter permission }
SEM_R = 4 shl 6; { read permission }
{$endif}
type
{$ifdef Linux}
{$ifndef linux_ipc32}
PSEMid_ds = ^TSEMid_ds;
TSEMid_ds = record
sem_perm : tipc_perm;
sem_otime : time_t; // kernel
unused1 : culong;
sem_ctime : time_t;
unused2 : culong;
sem_nsems : culong;
unused3 : culong;
unused4 : culong;
end;
{$else not linux_ipc32}
PSEMid_ds = ^TSEMid_ds;
TSEMid_ds = record
sem_perm : tipc_perm;
sem_otime : time_t; // kernel
sem_ctime : time_t;
sem_base : pointer;
sem_pending : pointer;
sem_pending_last : pointer;
undo : pointer;
sem_nsems : cushort;
end;
{$endif not linux_ipc32}
{$else Linux}
{$ifdef Darwin}
PSEM = ^TSEM;
TSEM = record
semval : cushort;
sempid : pid_t;
semncnt : cushort;
semzcnt : cushort;
end;
{$packrecords 4}
PSEMid_ds = ^TSEMid_ds;
TSEMid_ds = record
sem_perm : tipc_perm;
sem_base : cint32;
sem_nsems : cushort;
sem_otime : time_t;
sem_pad1 : cint32;
sem_ctime : time_t;
sem_pad2 : cint32;
sem_pad3 : array[0..3] of cint32;
end;
{$packrecords c}
{$else}
PSEM = ^TSEM;
TSEM = record end; // opague
PSEMid_ds = ^TSEMid_ds;
TSEMid_ds = record
sem_perm : tipc_perm;
sem_base : PSEM;
sem_nsems : cushort;
sem_otime : time_t;
sem_pad1 : cint;
sem_ctime : time_t;
sem_pad2 : cint;
sem_pad3 : array[0..3] of cint;
end;
{$endif}
{$endif}
PSEMbuf = ^TSEMbuf;
TSEMbuf = record
sem_num : cushort;
sem_op : cshort;
sem_flg : cshort;
end;
PSEMinfo = ^TSEMinfo;
TSEMinfo = record
semmap : cint;
semmni : cint;
semmns : cint;
semmnu : cint;
semmsl : cint;
semopm : cint;
semume : cint;
semusz : cint;
semvmx : cint;
semaem : cint;
end;
{ internal mode bits}
{$ifdef FreeBSD}
Const
SEM_ALLOC = 1 shl 9;
SEM_DEST = 2 shl 9;
{$endif}
Type
PSEMun = ^TSEMun;
TSEMun = record
case cint of
0 : ( val : cint );
1 : ( buf : PSEMid_ds );
2 : ( arr : PWord ); // ^ushort
{$ifdef linux}
3 : ( padbuf : PSeminfo );
4 : ( padpad : pointer );
{$endif}
end;
Function semget(key:Tkey; nsems:cint; semflg:cint): cint; {$ifdef FPC_USE_LIBC} cdecl; external clib name 'semget'; {$endif}
Function semop(semid:cint; sops: psembuf; nsops: cuint): cint; {$ifdef FPC_USE_LIBC} cdecl; external clib name 'semop'; {$endif}
Function semctl(semid:cint; semnum:cint; cmd:cint; var arg: tsemun): cint;
{$ifdef linux}
Function semtimedop(semid:cint; sops: psembuf; nsops: cuint; timeOut: ptimespec): cint; {$ifdef FPC_USE_LIBC} cdecl; external name 'semtimedop'; platform; {$else} platform; {$endif}
{$endif}
implementation
{$ifndef FPC_USE_LIBC}
uses Syscall;
{$endif ndef FPC_USE_LIBC}
{$ifndef FPC_USE_LIBC}
{$ifdef Linux}
{$if defined(cpux86_64) or defined(NO_SYSCALL_IPC)}
{$i ipcsys.inc}
{$else}
{$i ipccall.inc}
{$endif}
{$endif}
{$ifdef BSD}
{$i ipcbsd.inc}
{$endif}
{$else ndef FPC_USE_LIBC}
Function real_semctl(semid:cint; semnum:cint; cmd:cint): cint; {$ifdef FPC_USE_LIBC} cdecl; varargs; external clib name 'semctl'; {$endif}
Function semctl(semid:cint; semnum:cint; cmd:cint; var arg: tsemun): cint;
begin
semctl := real_semctl(semid,semnum,cmd,pointer(arg));
end;
{$endif}
end.
|