Remove socket.S implementation
[glibc.git] / nptl / sem_open.c
blobbfd2dea94ec443261a3281c68b726037d03ddbd0
1 /* Copyright (C) 2002-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
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/>. */
19 #include <errno.h>
20 #include <fcntl.h>
21 #include <pthread.h>
22 #include <search.h>
23 #include <semaphore.h>
24 #include <stdarg.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <unistd.h>
29 #include <sys/mman.h>
30 #include <sys/stat.h>
31 #include "semaphoreP.h"
32 #include <shm-directory.h>
35 /* Comparison function for search of existing mapping. */
36 int
37 attribute_hidden
38 __sem_search (const void *a, const void *b)
40 const struct inuse_sem *as = (const struct inuse_sem *) a;
41 const struct inuse_sem *bs = (const struct inuse_sem *) b;
43 if (as->ino != bs->ino)
44 /* Cannot return the difference the type is larger than int. */
45 return as->ino < bs->ino ? -1 : (as->ino == bs->ino ? 0 : 1);
47 if (as->dev != bs->dev)
48 /* Cannot return the difference the type is larger than int. */
49 return as->dev < bs->dev ? -1 : (as->dev == bs->dev ? 0 : 1);
51 return strcmp (as->name, bs->name);
55 /* The search tree for existing mappings. */
56 void *__sem_mappings attribute_hidden;
58 /* Lock to protect the search tree. */
59 int __sem_mappings_lock attribute_hidden = LLL_LOCK_INITIALIZER;
62 /* Search for existing mapping and if possible add the one provided. */
63 static sem_t *
64 check_add_mapping (const char *name, size_t namelen, int fd, sem_t *existing)
66 sem_t *result = SEM_FAILED;
68 /* Get the information about the file. */
69 struct stat64 st;
70 if (__fxstat64 (_STAT_VER, fd, &st) == 0)
72 /* Get the lock. */
73 lll_lock (__sem_mappings_lock, LLL_PRIVATE);
75 /* Search for an existing mapping given the information we have. */
76 struct inuse_sem *fake;
77 fake = (struct inuse_sem *) alloca (sizeof (*fake) + namelen);
78 memcpy (fake->name, name, namelen);
79 fake->dev = st.st_dev;
80 fake->ino = st.st_ino;
82 struct inuse_sem **foundp = tfind (fake, &__sem_mappings, __sem_search);
83 if (foundp != NULL)
85 /* There is already a mapping. Use it. */
86 result = (*foundp)->sem;
87 ++(*foundp)->refcnt;
89 else
91 /* We haven't found a mapping. Install ione. */
92 struct inuse_sem *newp;
94 newp = (struct inuse_sem *) malloc (sizeof (*newp) + namelen);
95 if (newp != NULL)
97 /* If the caller hasn't provided any map it now. */
98 if (existing == SEM_FAILED)
99 existing = (sem_t *) mmap (NULL, sizeof (sem_t),
100 PROT_READ | PROT_WRITE, MAP_SHARED,
101 fd, 0);
103 newp->dev = st.st_dev;
104 newp->ino = st.st_ino;
105 newp->refcnt = 1;
106 newp->sem = existing;
107 memcpy (newp->name, name, namelen);
109 /* Insert the new value. */
110 if (existing != MAP_FAILED
111 && tsearch (newp, &__sem_mappings, __sem_search) != NULL)
112 /* Successful. */
113 result = existing;
114 else
115 /* Something went wrong while inserting the new
116 value. We fail completely. */
117 free (newp);
121 /* Release the lock. */
122 lll_unlock (__sem_mappings_lock, LLL_PRIVATE);
125 if (result != existing && existing != SEM_FAILED && existing != MAP_FAILED)
127 /* Do not disturb errno. */
128 int save = errno;
129 munmap (existing, sizeof (sem_t));
130 errno = save;
133 return result;
137 sem_t *
138 sem_open (const char *name, int oflag, ...)
140 int fd;
141 sem_t *result;
143 /* Create the name of the final file in local variable SHM_NAME. */
144 SHM_GET_NAME (EINVAL, SEM_FAILED, SEM_SHM_PREFIX);
146 /* If the semaphore object has to exist simply open it. */
147 if ((oflag & O_CREAT) == 0 || (oflag & O_EXCL) == 0)
149 try_again:
150 fd = __libc_open (shm_name,
151 (oflag & ~(O_CREAT|O_ACCMODE)) | O_NOFOLLOW | O_RDWR);
153 if (fd == -1)
155 /* If we are supposed to create the file try this next. */
156 if ((oflag & O_CREAT) != 0 && errno == ENOENT)
157 goto try_create;
159 /* Return. errno is already set. */
161 else
162 /* Check whether we already have this semaphore mapped and
163 create one if necessary. */
164 result = check_add_mapping (name, namelen, fd, SEM_FAILED);
166 else
168 /* We have to open a temporary file first since it must have the
169 correct form before we can start using it. */
170 char *tmpfname;
171 mode_t mode;
172 unsigned int value;
173 va_list ap;
175 try_create:
176 va_start (ap, oflag);
178 mode = va_arg (ap, mode_t);
179 value = va_arg (ap, unsigned int);
181 va_end (ap);
183 if (value > SEM_VALUE_MAX)
185 __set_errno (EINVAL);
186 return SEM_FAILED;
189 /* Create the initial file content. */
190 union
192 sem_t initsem;
193 struct new_sem newsem;
194 } sem;
196 #if __HAVE_64B_ATOMICS
197 sem.newsem.data = value;
198 #else
199 sem.newsem.value = value << SEM_VALUE_SHIFT;
200 sem.newsem.nwaiters = 0;
201 #endif
202 /* This always is a shared semaphore. */
203 sem.newsem.private = LLL_SHARED;
205 /* Initialize the remaining bytes as well. */
206 memset ((char *) &sem.initsem + sizeof (struct new_sem), '\0',
207 sizeof (sem_t) - sizeof (struct new_sem));
209 tmpfname = __alloca (shm_dirlen + sizeof SEM_SHM_PREFIX + 6);
210 char *xxxxxx = __mempcpy (tmpfname, shm_dir, shm_dirlen);
212 int retries = 0;
213 #define NRETRIES 50
214 while (1)
216 /* Add the suffix for mktemp. */
217 strcpy (xxxxxx, "XXXXXX");
219 /* We really want to use mktemp here. We cannot use mkstemp
220 since the file must be opened with a specific mode. The
221 mode cannot later be set since then we cannot apply the
222 file create mask. */
223 if (__mktemp (tmpfname) == NULL)
224 return SEM_FAILED;
226 /* Open the file. Make sure we do not overwrite anything. */
227 fd = __libc_open (tmpfname, O_RDWR | O_CREAT | O_EXCL, mode);
228 if (fd == -1)
230 if (errno == EEXIST)
232 if (++retries < NRETRIES)
233 continue;
235 __set_errno (EAGAIN);
238 return SEM_FAILED;
241 /* We got a file. */
242 break;
245 if (TEMP_FAILURE_RETRY (__libc_write (fd, &sem.initsem, sizeof (sem_t)))
246 == sizeof (sem_t)
247 /* Map the sem_t structure from the file. */
248 && (result = (sem_t *) mmap (NULL, sizeof (sem_t),
249 PROT_READ | PROT_WRITE, MAP_SHARED,
250 fd, 0)) != MAP_FAILED)
252 /* Create the file. Don't overwrite an existing file. */
253 if (link (tmpfname, shm_name) != 0)
255 /* Undo the mapping. */
256 (void) munmap (result, sizeof (sem_t));
258 /* Reinitialize 'result'. */
259 result = SEM_FAILED;
261 /* This failed. If O_EXCL is not set and the problem was
262 that the file exists, try again. */
263 if ((oflag & O_EXCL) == 0 && errno == EEXIST)
265 /* Remove the file. */
266 (void) unlink (tmpfname);
268 /* Close the file. */
269 (void) __libc_close (fd);
271 goto try_again;
274 else
275 /* Insert the mapping into the search tree. This also
276 determines whether another thread sneaked by and already
277 added such a mapping despite the fact that we created it. */
278 result = check_add_mapping (name, namelen, fd, result);
281 /* Now remove the temporary name. This should never fail. If
282 it fails we leak a file name. Better fix the kernel. */
283 (void) unlink (tmpfname);
286 /* Map the mmap error to the error we need. */
287 if (MAP_FAILED != (void *) SEM_FAILED && result == MAP_FAILED)
288 result = SEM_FAILED;
290 /* We don't need the file descriptor anymore. */
291 if (fd != -1)
293 /* Do not disturb errno. */
294 int save = errno;
295 __libc_close (fd);
296 errno = save;
299 return result;