ARM: remove sub-arch/variants selection from menuconfig
[uclibc-ng.git] / libc / pwd_grp / lckpwdf.c
blobadbc616a945753429a884a421c9c4f33bcd77cea
1 /* vi: set sw=4 ts=4: */
2 /* Handle locking of password file.
3 Copyright (C) 1996,98,2000,02 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
5 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with the GNU C Library; if not, write to the Free
19 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 02111-1307 USA. */
22 #include <features.h>
23 #include <fcntl.h>
24 #include <signal.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include <sys/file.h>
28 #include <paths.h>
29 #include <shadow.h>
31 /* How long to wait for getting the lock before returning with an error. */
32 #define TIMEOUT 15 /* sec */
34 /* File descriptor for lock file. */
35 static int lock_fd = -1;
37 /* Prevent problems in multithreaded program by using mutex. */
38 #include <bits/uClibc_mutex.h>
39 __UCLIBC_MUTEX_STATIC(mylock, PTHREAD_MUTEX_INITIALIZER);
41 /* Prototypes for local functions. */
42 static void noop_handler (int __sig);
45 int
46 lckpwdf (void)
48 sigset_t saved_set; /* Saved set of caught signals. */
49 struct sigaction saved_act; /* Saved signal action. */
50 sigset_t new_set; /* New set of caught signals. */
51 struct sigaction new_act; /* New signal action. */
52 struct flock fl; /* Information struct for locking. */
53 int result;
55 if (lock_fd != -1)
56 /* Still locked by own process. */
57 return -1;
59 /* Prevent problems caused by multiple threads. */
60 __UCLIBC_MUTEX_LOCK(mylock);
62 lock_fd = open (_PATH_PASSWD, O_WRONLY | O_CLOEXEC);
63 if (lock_fd == -1) {
64 goto DONE;
66 #ifndef __ASSUME_O_CLOEXEC
67 /* Make sure file gets correctly closed when process finished. */
68 fcntl (lock_fd, F_SETFD, FD_CLOEXEC);
69 #endif
71 /* Now we have to get exclusive write access. Since multiple
72 process could try this we won't stop when it first fails.
73 Instead we set a timeout for the system call. Once the timer
74 expires it is likely that there are some problems which cannot be
75 resolved by waiting. (sa_flags have no SA_RESTART. Thus SIGALRM
76 will EINTR fcntl(F_SETLKW)
78 It is important that we don't change the signal state. We must
79 restore the old signal behaviour. */
80 memset (&new_act, '\0', sizeof (new_act));
81 new_act.sa_handler = noop_handler;
82 __sigfillset (&new_act.sa_mask);
84 /* Install new action handler for alarm and save old.
85 * This never fails in Linux. */
86 sigaction (SIGALRM, &new_act, &saved_act);
88 /* Now make sure the alarm signal is not blocked. */
89 __sigemptyset (&new_set);
90 __sigaddset (&new_set, SIGALRM);
91 sigprocmask (SIG_UNBLOCK, &new_set, &saved_set);
93 /* Start timer. If we cannot get the lock in the specified time we
94 get a signal. */
95 alarm (TIMEOUT);
97 /* Try to get the lock. */
98 memset (&fl, '\0', sizeof (fl));
99 if (F_WRLCK)
100 fl.l_type = F_WRLCK;
101 if (SEEK_SET)
102 fl.l_whence = SEEK_SET;
103 result = fcntl (lock_fd, F_SETLKW, &fl);
105 /* Clear alarm. */
106 alarm (0);
108 sigprocmask (SIG_SETMASK, &saved_set, NULL);
109 sigaction (SIGALRM, &saved_act, NULL);
111 if (result < 0) {
112 close(lock_fd);
113 lock_fd = -1;
116 DONE:
117 __UCLIBC_MUTEX_UNLOCK(mylock);
118 return 0; /* TODO: return result? */
123 ulckpwdf (void)
125 int result;
127 if (lock_fd == -1)
128 /* There is no lock set. */
129 result = -1;
130 else
132 /* Prevent problems caused by multiple threads. */
133 __UCLIBC_MUTEX_LOCK(mylock);
135 result = close (lock_fd);
137 /* Mark descriptor as unused. */
138 lock_fd = -1;
140 /* Clear mutex. */
141 __UCLIBC_MUTEX_UNLOCK(mylock);
144 return result;
148 static void
149 noop_handler (int sig attribute_unused) {
151 /* We simply return which makes the `fcntl' call return with an error. */