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/>. */
23 #include <semaphore.h>
31 #include "semaphoreP.h"
32 #include <shm-directory.h>
35 /* Comparison function for search of existing mapping. */
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. */
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. */
70 if (__fxstat64 (_STAT_VER
, fd
, &st
) == 0)
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
,
86 /* There is already a mapping. Use it. */
87 result
= (*foundp
)->sem
;
92 /* We haven't found a mapping. Install ione. */
93 struct inuse_sem
*newp
;
95 newp
= (struct inuse_sem
*) malloc (sizeof (*newp
) + namelen
);
98 /* If the caller hasn't provided any map it now. */
99 if (existing
== SEM_FAILED
)
100 existing
= (sem_t
*) mmap (NULL
, sizeof (sem_t
),
101 PROT_READ
| PROT_WRITE
, MAP_SHARED
,
104 newp
->dev
= st
.st_dev
;
105 newp
->ino
= st
.st_ino
;
107 newp
->sem
= existing
;
108 memcpy (newp
->name
, name
, namelen
);
110 /* Insert the new value. */
111 if (existing
!= MAP_FAILED
112 && __tsearch (newp
, &__sem_mappings
, __sem_search
) != NULL
)
116 /* Something went wrong while inserting the new
117 value. We fail completely. */
122 /* Release the lock. */
123 lll_unlock (__sem_mappings_lock
, LLL_PRIVATE
);
126 if (result
!= existing
&& existing
!= SEM_FAILED
&& existing
!= MAP_FAILED
)
128 /* Do not disturb errno. */
130 munmap (existing
, sizeof (sem_t
));
139 sem_open (const char *name
, int oflag
, ...)
144 /* Create the name of the final file in local variable SHM_NAME. */
145 SHM_GET_NAME (EINVAL
, SEM_FAILED
, SEM_SHM_PREFIX
);
147 /* If the semaphore object has to exist simply open it. */
148 if ((oflag
& O_CREAT
) == 0 || (oflag
& O_EXCL
) == 0)
151 fd
= __libc_open (shm_name
,
152 (oflag
& ~(O_CREAT
|O_ACCMODE
)) | O_NOFOLLOW
| O_RDWR
);
156 /* If we are supposed to create the file try this next. */
157 if ((oflag
& O_CREAT
) != 0 && errno
== ENOENT
)
160 /* Return. errno is already set. */
163 /* Check whether we already have this semaphore mapped and
164 create one if necessary. */
165 result
= check_add_mapping (name
, namelen
, fd
, SEM_FAILED
);
169 /* We have to open a temporary file first since it must have the
170 correct form before we can start using it. */
177 va_start (ap
, oflag
);
179 mode
= va_arg (ap
, mode_t
);
180 value
= va_arg (ap
, unsigned int);
184 if (value
> SEM_VALUE_MAX
)
186 __set_errno (EINVAL
);
190 /* Create the initial file content. */
194 struct new_sem newsem
;
197 #if __HAVE_64B_ATOMICS
198 sem
.newsem
.data
= value
;
200 sem
.newsem
.value
= value
<< SEM_VALUE_SHIFT
;
201 sem
.newsem
.nwaiters
= 0;
203 /* This always is a shared semaphore. */
204 sem
.newsem
.private = LLL_SHARED
;
206 /* Initialize the remaining bytes as well. */
207 memset ((char *) &sem
.initsem
+ sizeof (struct new_sem
), '\0',
208 sizeof (sem_t
) - sizeof (struct new_sem
));
210 tmpfname
= __alloca (shm_dirlen
+ sizeof SEM_SHM_PREFIX
+ 6);
211 char *xxxxxx
= __mempcpy (tmpfname
, shm_dir
, shm_dirlen
);
217 /* Add the suffix for mktemp. */
218 strcpy (xxxxxx
, "XXXXXX");
220 /* We really want to use mktemp here. We cannot use mkstemp
221 since the file must be opened with a specific mode. The
222 mode cannot later be set since then we cannot apply the
224 if (__mktemp (tmpfname
) == NULL
)
227 /* Open the file. Make sure we do not overwrite anything. */
228 fd
= __libc_open (tmpfname
, O_RDWR
| O_CREAT
| O_EXCL
, mode
);
233 if (++retries
< NRETRIES
)
236 __set_errno (EAGAIN
);
246 if (TEMP_FAILURE_RETRY (__libc_write (fd
, &sem
.initsem
, sizeof (sem_t
)))
248 /* Map the sem_t structure from the file. */
249 && (result
= (sem_t
*) mmap (NULL
, sizeof (sem_t
),
250 PROT_READ
| PROT_WRITE
, MAP_SHARED
,
251 fd
, 0)) != MAP_FAILED
)
253 /* Create the file. Don't overwrite an existing file. */
254 if (link (tmpfname
, shm_name
) != 0)
256 /* Undo the mapping. */
257 (void) munmap (result
, sizeof (sem_t
));
259 /* Reinitialize 'result'. */
262 /* This failed. If O_EXCL is not set and the problem was
263 that the file exists, try again. */
264 if ((oflag
& O_EXCL
) == 0 && errno
== EEXIST
)
266 /* Remove the file. */
267 (void) unlink (tmpfname
);
269 /* Close the file. */
270 (void) __libc_close (fd
);
276 /* Insert the mapping into the search tree. This also
277 determines whether another thread sneaked by and already
278 added such a mapping despite the fact that we created it. */
279 result
= check_add_mapping (name
, namelen
, fd
, result
);
282 /* Now remove the temporary name. This should never fail. If
283 it fails we leak a file name. Better fix the kernel. */
284 (void) unlink (tmpfname
);
287 /* Map the mmap error to the error we need. */
288 if (MAP_FAILED
!= (void *) SEM_FAILED
&& result
== MAP_FAILED
)
291 /* We don't need the file descriptor anymore. */
294 /* Do not disturb errno. */