summaryrefslogtreecommitdiffstats
path: root/man5/ipc.5
blob: b7c1051cd23ad44f66c9697df199bd80cee2b94a (plain) (blame)
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
.\" Copyright 1993 Giorgio Ciucci (giorgio@crcc.it)
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\" 
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein.  The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\" 
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.TH IPC 5 1993-11-01 "Linux 0.99.13" "Linux Programmer's Manual" 
.SH NAME
ipc \- System V interprocess communication mechanisms
.SH SYNOPSIS
.nf
.B
# include <sys/types.h>
.B
# include <sys/ipc.h>
.B
# include <sys/msg.h>
.B
# include <sys/sem.h>
.B
# include <sys/shm.h>
.SH DESCRIPTION
This manual page refers to the Linux implementation of the System V
interprocess communication mechanisms:
message queues, semaphore sets, and shared memory segments.
In the following, the word
.B resource
means an instantiation of one among such mechanisms.
.SS Resource Access Permissions
For each resource, the system uses a common structure of type
.BR "struct ipc_perm"
to store information needed in determining permissions to perform an
ipc operation.
The
.B ipc_perm
structure, defined by the
.I <sys/ipc.h>
system header file, includes the following members:
.sp
.B
	ushort cuid;	 
/* creator user id */
.br
.B
	ushort cgid;	 
/* creator group id */
.br
.B
	ushort uid;	 
/* owner user id */
.br
.B
	ushort gid;	
/* owner group id */
.br
.B
	ushort mode;	
/* r/w permissions */
.PP
The
.B mode
member of the
.B ipc_perm
structure defines, with its lower 9 bits, the access permissions to the
resource for a process executing an ipc system call.
The permissions are interpreted as follows:
.sp
.nf
	0400	Read by user.
	0200	Write by user.
.sp .5
	0040	Read by group.
	0020	Write by group.
.sp .5
	0004	Read by others.
	0002	Write by others.
.fi
.PP
Bits 0100, 0010, and 0001 (the execute bits) are unused by the system.
Furthermore,
"write"
effectively means
"alter"
for a semaphore set.
.PP
The same system header file also defines the following symbolic
constants:
.TP 14
.B IPC_CREAT
Create entry if key doesn't exist.
.TP
.B IPC_EXCL
Fail if key exists.
.TP
.B IPC_NOWAIT
Error if request must wait.
.TP
.B IPC_PRIVATE
Private key.
.TP
.B IPC_RMID
Remove resource.
.TP
.B IPC_SET
Set resource options.
.TP
.B IPC_STAT
Get resource options.
.PP
Note that
.B IPC_PRIVATE
is a
.B key_t
type, while all the other symbolic constants are flag fields and can
be OR'ed into an
.B int
type variable.
.SS Message Queues
A message queue is uniquely identified by a positive integer
.RI "(its " msqid )
and has an associated data structure of type
.BR "struct msqid_ds" ,
defined in
.IR <sys/msg.h> ,
containing the following members:
.sp
.B
	struct ipc_perm msg_perm;
.br
.B
	ushort msg_qnum;	
/* no of messages on queue */
.br
.B
	ushort msg_qbytes;	
/* bytes max on a queue */
.br
.B
	ushort msg_lspid;	
/* pid of last msgsnd call */
.br
.B
	ushort msg_lrpid;	
/* pid of last msgrcv call */
.br
.B
	time_t msg_stime;	
/* last msgsnd time */
.br
.B
	time_t msg_rtime;	
/* last msgrcv time */
.br
.B
	time_t msg_ctime;	
/* last change time */
.TP 11
.B msg_perm
.B ipc_perm
structure that specifies the access permissions on the message
queue.
.TP
.B msg_qnum
Number of messages currently on the message queue.
.TP
.B msg_qbytes
Maximum number of bytes of message text allowed on the message
queue.
.TP
.B msg_lspid
ID of the process that performed the last
.B msgsnd
system call.
.TP
.B msg_lrpid
ID of the process that performed the last
.B msgrcv
system call.
.TP
.B msg_stime
Time of the last
.B msgsnd
system call.
.TP
.B msg_rtime
Time of the last
.B msgcv
system call.
.TP
.B msg_ctime
Time of the last
system call that changed a member of the
.B msqid_ds
structure.
.SS Semaphore Sets
A semaphore set is uniquely identified by a positive integer
.RI "(its " semid )
and has an associated data structure of type
.BR "struct semid_ds" ,
defined in
.IR <sys/sem.h> ,
containing the following members:
.sp
.B
	struct ipc_perm sem_perm;
.br
.B
	time_t sem_otime;	
/* last operation time */
.br
.B
	time_t sem_ctime;	
/* last change time */
.br
.B
	ushort sem_nsems;	
/* count of sems in set */
.TP 11
.B sem_perm
.B ipc_perm
structure that specifies the access permissions on the semaphore
set.
.TP
.B sem_otime
Time of last
.B semop
system call.
.TP
.B sem_ctime
Time of last
.B semctl
system call that changed a member of the above structure or of one
semaphore belonging to the set.
.TP
.B sem_nsems
Number of semaphores in the set.
Each semaphore of the set is referenced by a non-negative integer
ranging from
.B 0
to
.BR sem_nsems\-1 .
.PP
A semaphore is a data structure of type
.B "struct sem"
containing the following members:
.sp
.B
	ushort semval;	
/* semaphore value */
.br
.B
	short sempid;	
/* pid for last operation */
.br
.B
	ushort semncnt;
/* nr awaiting semval to increase */
.br
.B
	ushort semzcnt;
/* nr awaiting semval = 0 */
.TP 11
.B semval
Semaphore value: a non-negative integer.
.TP
.B sempid
ID of the last process that performed a semaphore operation
on this semaphore.
.TP
.B semncnt
Number of processes suspended awaiting for
.B semval
to increase.
.TP
.B semznt
Number of processes suspended awaiting for
.B semval
to become zero.
.SS Shared Memory Segments
A shared memory segment is uniquely identified by a positive integer
.RI "(its " shmid )
and has an associated data structure of type
.BR "struct shmid_ds" ,
defined in
.IR <sys/shm.h> ,
containing the following members:
.sp
.B
	struct ipc_perm shm_perm;
.br
.B
	int shm_segsz; 	
/* size of segment */
.br
.B
	ushort shm_cpid;	
/* pid of creator */
.br
.B
	ushort shm_lpid;	
/* pid, last operation */
.br
.B
	short shm_nattch;	
/* no. of current attaches */
.br
.B
	time_t shm_atime;	
/* time of last attach */
.br
.B
	time_t shm_dtime;	
/* time of last detach */
.br
.B
	time_t shm_ctime;	
/* time of last change */
.TP 11
.B shm_perm
.B ipc_perm
structure that specifies the access permissions on the shared memory
segment.
.TP
.B shm_segsz
Size in bytes of the shared memory segment.
.TP
.B shm_cpid
ID of the process that created the shared memory segment.
.TP
.B shm_lpid
ID of the last process that executed a
.B shmat
or
.B shmdt
system call.
.TP
.B shm_nattch
Number of current alive attaches for this shared memory segment.
.TP
.B shm_atime
Time of the last
.B shmat
system call.
.TP
.B shm_dtime
Time of the last
.B shmdt
system call.
.TP
.B shm_ctime
Time of the last
.B shmctl
system call that changed
.BR shmid_ds .
.SH "SEE ALSO"
.BR msgctl (2),
.BR msgget (2),
.BR msgrcv (2),
.BR msgsnd (2),
.BR semctl (2),
.BR semget (2),
.BR semop (2),
.BR shmat (2),
.BR shmctl (2),
.BR shmdt (2),
.BR shmget (2),
.BR ftok (3)