msgctl (2) - Linux Manuals
msgctl: System V message control operations
Command to display msgctl
manual in Linux: $ man 2 msgctl
NAME
msgctl - System V message control operations
SYNOPSIS
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
int msgctl(int msqid, int cmd, struct msqid_ds *buf);
DESCRIPTION
msgctl()
performs the control operation specified by
cmd
on the System V message queue with identifier
msqid.
The
msqid_ds
data structure is defined in <sys/msg.h> as follows:
struct msqid_ds {
struct ipc_perm msg_perm; /* Ownership and permissions */
time_t msg_stime; /* Time of last msgsnd(2) */
time_t msg_rtime; /* Time of last msgrcv(2) */
time_t msg_ctime; /* Time of creation or last
modification by msgctl() */
unsigned long msg_cbytes; /* # of bytes in queue */
msgqnum_t msg_qnum; /* # number of messages in queue */
msglen_t msg_qbytes; /* Maximum # of bytes in queue */
pid_t msg_lspid; /* PID of last msgsnd(2) */
pid_t msg_lrpid; /* PID of last msgrcv(2) */
};
The fields of the
msgid_ds
structure are as follows:
- msg_perm
-
This is an
ipc_perm
structure (see below) that specifies the access permissions on the message
queue.
- msg_stime
-
Time of the last
msgsnd(2)
system call.
- msg_rtime
-
Time of the last
msgrcv(2)
system call.
- msg_ctime
-
Time of creation of queue or time of last
msgctl()
IPC_SET
operation.
- msg_cbytes
-
Number of bytes in all messages currently on the message queue.
This is a nonstandard Linux extension that is not specified in POSIX.
- msg_qnum
-
Number of messages currently on the message queue.
- msg_qbytes
-
Maximum number of bytes of message text allowed on the message
queue.
- msg_lspid
-
ID of the process that performed the last
msgsnd(2)
system call.
- msg_lrpid
-
ID of the process that performed the last
msgrcv(2)
system call.
The
ipc_perm
structure is defined as follows
(the highlighted fields are settable using
IPC_SET):
struct ipc_perm {
key_t __key; /* Key supplied to msgget(2) */
uid_t uid; /* Effective UID of owner */
gid_t gid; /* Effective GID of owner */
uid_t cuid; /* Effective UID of creator */
gid_t cgid; /* Effective GID of creator */
unsigned short mode; /* Permissions */
unsigned short __seq; /* Sequence number */
};
The least significant 9 bits of the
mode
field of the
ipc_perm
structure define the access permissions for the message queue.
The permission bits are as follows:
0400 | Read by user
|
0200 | Write by user
|
0040 | Read by group
|
0020 | Write by group
|
0004 | Read by others
|
0002 | Write by others
|
Bits 0100, 0010, and 0001 (the execute bits) are unused by the system.
Valid values for
cmd
are:
- IPC_STAT
-
Copy information from the kernel data structure associated with
msqid
into the
msqid_ds
structure pointed to by
buf.
The caller must have read permission on the message queue.
- IPC_SET
-
Write the values of some members of the
msqid_ds
structure pointed to by
buf
to the kernel data structure associated with this message queue,
updating also its
msg_ctime
member.
-
The following members of the structure are updated:
msg_qbytes,
msg_perm.uid,
msg_perm.gid,
and (the least significant 9 bits of)
msg_perm.mode.
-
The effective UID of the calling process must match the owner
(msg_perm.uid)
or creator
(msg_perm.cuid)
of the message queue, or the caller must be privileged.
Appropriate privilege (Linux: the
CAP_SYS_RESOURCE
capability) is required to raise the
msg_qbytes
value beyond the system parameter
MSGMNB.
- IPC_RMID
-
Immediately remove the message queue,
awakening all waiting reader and writer processes (with an error
return and
errno
set to
EIDRM).
The calling process must have appropriate privileges
or its effective user ID must be either that of the creator or owner
of the message queue.
The third argument to
msgctl()
is ignored in this case.
- IPC_INFO (Linux-specific)
-
Return information about system-wide message queue limits and
parameters in the structure pointed to by
buf.
This structure is of type
msginfo
(thus, a cast is required),
defined in
<sys/msg.h>
if the
_GNU_SOURCE
feature test macro is defined:
-
struct msginfo {