]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/posix/shm_open.c
Fix librt-routines-var issues for !PTHREAD_IN_LIBC
[thirdparty/glibc.git] / sysdeps / posix / shm_open.c
1 /* shm_open -- open a POSIX shared memory object. Generic POSIX file version.
2 Copyright (C) 2001-2021 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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 <https://www.gnu.org/licenses/>. */
18
19 #include <unistd.h>
20
21 #if ! _POSIX_MAPPED_FILES
22
23 # include <rt/shm_open.c>
24
25 #else
26
27 # include <errno.h>
28 # include <fcntl.h>
29 # include <pthread.h>
30 # include <shm-directory.h>
31
32
33 /* Open shared memory object. */
34 int
35 shm_open (const char *name, int oflag, mode_t mode)
36 {
37 struct shmdir_name dirname;
38 if (__shm_get_name (&dirname, name, false) != 0)
39 {
40 __set_errno (EINVAL);
41 return -1;
42 }
43
44 oflag |= O_NOFOLLOW | O_CLOEXEC;
45
46 /* Disable asynchronous cancellation. */
47 int state;
48 pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, &state);
49
50 int fd = open (dirname.name, oflag, mode);
51 if (fd == -1 && __glibc_unlikely (errno == EISDIR))
52 /* It might be better to fold this error with EINVAL since
53 directory names are just another example for unsuitable shared
54 object names and the standard does not mention EISDIR. */
55 __set_errno (EINVAL);
56
57 pthread_setcancelstate (state, NULL);
58
59 return fd;
60 }
61
62 #endif /* _POSIX_MAPPED_FILES */