]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/unix/sysv/linux/msgctl.c
Add script to update copyright notices and reformat some to facilitate its use.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / msgctl.c
1 /* Copyright (C) 1995-2012 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
18
19 #include <errno.h>
20 #include <sys/msg.h>
21 #include <ipc_priv.h>
22
23 #include <sysdep.h>
24 #include <string.h>
25 #include <sys/syscall.h>
26 #include <shlib-compat.h>
27 #include <bp-checks.h>
28
29 #include <kernel-features.h>
30
31 struct __old_msqid_ds
32 {
33 struct __old_ipc_perm msg_perm; /* structure describing operation permission */
34 struct msg *__unbounded __msg_first; /* pointer to first message on queue */
35 struct msg *__unbounded __msg_last; /* pointer to last message on queue */
36 __time_t msg_stime; /* time of last msgsnd command */
37 __time_t msg_rtime; /* time of last msgrcv command */
38 __time_t msg_ctime; /* time of last change */
39 struct wait_queue *__unbounded __wwait; /* ??? */
40 struct wait_queue *__unbounded __rwait; /* ??? */
41 unsigned short int __msg_cbytes; /* current number of bytes on queue */
42 unsigned short int msg_qnum; /* number of messages currently on queue */
43 unsigned short int msg_qbytes; /* max number of bytes allowed on queue */
44 __ipc_pid_t msg_lspid; /* pid of last msgsnd() */
45 __ipc_pid_t msg_lrpid; /* pid of last msgrcv() */
46 };
47
48 /* Allows to control internal state and destruction of message queue
49 objects. */
50 #if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)
51 int __old_msgctl (int, int, struct __old_msqid_ds *);
52 #endif
53 int __new_msgctl (int, int, struct msqid_ds *);
54
55 #if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)
56 int
57 attribute_compat_text_section
58 __old_msgctl (int msqid, int cmd, struct __old_msqid_ds *buf)
59 {
60 return INLINE_SYSCALL (ipc, 5, IPCOP_msgctl, msqid, cmd, 0, CHECK_1 (buf));
61 }
62 compat_symbol (libc, __old_msgctl, msgctl, GLIBC_2_0);
63 #endif
64
65 int
66 __new_msgctl (int msqid, int cmd, struct msqid_ds *buf)
67 {
68 #if __ASSUME_IPC64 > 0
69 return INLINE_SYSCALL (ipc, 5, IPCOP_msgctl,
70 msqid, cmd | __IPC_64, 0, CHECK_1 (buf));
71 #else
72 switch (cmd) {
73 case MSG_STAT:
74 case IPC_STAT:
75 case IPC_SET:
76 break;
77 default:
78 return INLINE_SYSCALL (ipc, 5, IPCOP_msgctl,
79 msqid, cmd, 0, CHECK_1 (buf));
80 }
81
82 {
83 int result;
84 struct __old_msqid_ds old;
85
86 /* Unfortunately there is no way how to find out for sure whether
87 we should use old or new msgctl. */
88 result = INLINE_SYSCALL (ipc, 5, IPCOP_msgctl,
89 msqid, cmd | __IPC_64, 0, CHECK_1 (buf));
90 if (result != -1 || errno != EINVAL)
91 return result;
92
93 if (cmd == IPC_SET)
94 {
95 old.msg_perm.uid = buf->msg_perm.uid;
96 old.msg_perm.gid = buf->msg_perm.gid;
97 old.msg_perm.mode = buf->msg_perm.mode;
98 old.msg_qbytes = buf->msg_qbytes;
99 if (old.msg_perm.uid != buf->msg_perm.uid ||
100 old.msg_perm.gid != buf->msg_perm.gid ||
101 old.msg_qbytes != buf->msg_qbytes)
102 {
103 __set_errno (EINVAL);
104 return -1;
105 }
106 }
107 result = INLINE_SYSCALL (ipc, 5, IPCOP_msgctl,
108 msqid, cmd, 0, __ptrvalue (&old));
109 if (result != -1 && cmd != IPC_SET)
110 {
111 memset(buf, 0, sizeof(*buf));
112 buf->msg_perm.__key = old.msg_perm.__key;
113 buf->msg_perm.uid = old.msg_perm.uid;
114 buf->msg_perm.gid = old.msg_perm.gid;
115 buf->msg_perm.cuid = old.msg_perm.cuid;
116 buf->msg_perm.cgid = old.msg_perm.cgid;
117 buf->msg_perm.mode = old.msg_perm.mode;
118 buf->msg_perm.__seq = old.msg_perm.__seq;
119 buf->msg_stime = old.msg_stime;
120 buf->msg_rtime = old.msg_rtime;
121 buf->msg_ctime = old.msg_ctime;
122 buf->__msg_cbytes = old.__msg_cbytes;
123 buf->msg_qnum = old.msg_qnum;
124 buf->msg_qbytes = old.msg_qbytes;
125 buf->msg_lspid = old.msg_lspid;
126 buf->msg_lrpid = old.msg_lrpid;
127 }
128 return result;
129 }
130 #endif
131 }
132
133 versioned_symbol (libc, __new_msgctl, msgctl, GLIBC_2_2);