1 /* Copyright (C) 1995-2014 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.
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.
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.
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/>. */
26 #include <sys/syscall.h>
27 #include <shlib-compat.h>
29 #include <kernel-features.h>
33 struct __old_ipc_perm sem_perm
; /* operation permission struct */
34 __time_t sem_otime
; /* last semop() time */
35 __time_t sem_ctime
; /* last time changed by semctl() */
36 struct sem
*__sembase
; /* ptr to first semaphore in array */
37 struct sem_queue
*__sem_pending
; /* pending operations */
38 struct sem_queue
*__sem_pending_last
; /* last pending operation */
39 struct sem_undo
*__undo
; /* ondo requests on this array */
40 unsigned short int sem_nsems
; /* number of semaphores in set */
43 /* Define a `union semun' suitable for Linux here. */
46 int val
; /* value for SETVAL */
47 struct semid_ds
*buf
; /* buffer for IPC_STAT & IPC_SET */
48 unsigned short int *array
; /* array for GETALL & SETALL */
49 struct seminfo
*__buf
; /* buffer for IPC_INFO */
50 struct __old_semid_ds
*__old_buf
;
53 /* Return identifier for array of NSEMS semaphores associated with
55 #if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)
56 int __old_semctl (int semid
, int semnum
, int cmd
, ...);
58 int __new_semctl (int semid
, int semnum
, int cmd
, ...);
60 #if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)
62 attribute_compat_text_section
63 __old_semctl (int semid
, int semnum
, int cmd
, ...)
70 /* Get the argument only if required. */
74 case SETVAL
: /* arg.val */
75 case GETALL
: /* arg.array */
77 case IPC_STAT
: /* arg.buf */
80 case IPC_INFO
: /* arg.__buf */
83 arg
= va_arg (ap
, union semun
);
90 return INLINE_SYSCALL (ipc
, 5, IPCOP_semctl
, semid
, semnum
, cmd
,
93 compat_symbol (libc
, __old_semctl
, semctl
, GLIBC_2_0
);
97 __new_semctl (int semid
, int semnum
, int cmd
, ...)
104 /* Get the argument only if required. */
108 case SETVAL
: /* arg.val */
109 case GETALL
: /* arg.array */
111 case IPC_STAT
: /* arg.buf */
114 case IPC_INFO
: /* arg.__buf */
117 arg
= va_arg (ap
, union semun
);
124 #if __ASSUME_IPC64 > 0
125 return INLINE_SYSCALL (ipc
, 5, IPCOP_semctl
, semid
, semnum
, cmd
| __IPC_64
,
135 return INLINE_SYSCALL (ipc
, 5, IPCOP_semctl
, semid
, semnum
, cmd
,
140 int save_errno
= errno
, result
;
141 struct __old_semid_ds old
;
142 struct semid_ds
*buf
;
144 /* Unfortunately there is no way how to find out for sure whether
145 we should use old or new semctl. */
146 result
= INLINE_SYSCALL (ipc
, 5, IPCOP_semctl
, semid
, semnum
, cmd
| __IPC_64
,
148 if (result
!= -1 || errno
!= EINVAL
)
151 __set_errno(save_errno
);
153 arg
.__old_buf
= &old
;
156 old
.sem_perm
.uid
= buf
->sem_perm
.uid
;
157 old
.sem_perm
.gid
= buf
->sem_perm
.gid
;
158 old
.sem_perm
.mode
= buf
->sem_perm
.mode
;
159 if (old
.sem_perm
.uid
!= buf
->sem_perm
.uid
||
160 old
.sem_perm
.gid
!= buf
->sem_perm
.gid
)
162 __set_errno (EINVAL
);
166 result
= INLINE_SYSCALL (ipc
, 5, IPCOP_semctl
, semid
, semnum
, cmd
,
168 if (result
!= -1 && cmd
!= IPC_SET
)
170 memset(buf
, 0, sizeof(*buf
));
171 buf
->sem_perm
.__key
= old
.sem_perm
.__key
;
172 buf
->sem_perm
.uid
= old
.sem_perm
.uid
;
173 buf
->sem_perm
.gid
= old
.sem_perm
.gid
;
174 buf
->sem_perm
.cuid
= old
.sem_perm
.cuid
;
175 buf
->sem_perm
.cgid
= old
.sem_perm
.cgid
;
176 buf
->sem_perm
.mode
= old
.sem_perm
.mode
;
177 buf
->sem_perm
.__seq
= old
.sem_perm
.__seq
;
178 buf
->sem_otime
= old
.sem_otime
;
179 buf
->sem_ctime
= old
.sem_ctime
;
180 buf
->sem_nsems
= old
.sem_nsems
;
187 versioned_symbol (libc
, __new_semctl
, semctl
, GLIBC_2_2
);