blob: adbc616a945753429a884a421c9c4f33bcd77cea [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/* 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.
6
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.
11
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.
16
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. */
21
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>
30
31/* How long to wait for getting the lock before returning with an error. */
32#define TIMEOUT 15 /* sec */
33
34/* File descriptor for lock file. */
35static int lock_fd = -1;
36
37/* Prevent problems in multithreaded program by using mutex. */
38#include <bits/uClibc_mutex.h>
39__UCLIBC_MUTEX_STATIC(mylock, PTHREAD_MUTEX_INITIALIZER);
40
41/* Prototypes for local functions. */
42static void noop_handler (int __sig);
43
44
45int
46lckpwdf (void)
47{
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;
54
55 if (lock_fd != -1)
56 /* Still locked by own process. */
57 return -1;
58
59 /* Prevent problems caused by multiple threads. */
60 __UCLIBC_MUTEX_LOCK(mylock);
61
62 lock_fd = open (_PATH_PASSWD, O_WRONLY | O_CLOEXEC);
63 if (lock_fd == -1) {
64 goto DONE;
65 }
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
70
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)
77
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);
83
84 /* Install new action handler for alarm and save old.
85 * This never fails in Linux. */
86 sigaction (SIGALRM, &new_act, &saved_act);
87
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);
92
93 /* Start timer. If we cannot get the lock in the specified time we
94 get a signal. */
95 alarm (TIMEOUT);
96
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);
104
105 /* Clear alarm. */
106 alarm (0);
107
108 sigprocmask (SIG_SETMASK, &saved_set, NULL);
109 sigaction (SIGALRM, &saved_act, NULL);
110
111 if (result < 0) {
112 close(lock_fd);
113 lock_fd = -1;
114 }
115
116DONE:
117 __UCLIBC_MUTEX_UNLOCK(mylock);
118 return 0; /* TODO: return result? */
119}
120
121
122int
123ulckpwdf (void)
124{
125 int result;
126
127 if (lock_fd == -1)
128 /* There is no lock set. */
129 result = -1;
130 else
131 {
132 /* Prevent problems caused by multiple threads. */
133 __UCLIBC_MUTEX_LOCK(mylock);
134
135 result = close (lock_fd);
136
137 /* Mark descriptor as unused. */
138 lock_fd = -1;
139
140 /* Clear mutex. */
141 __UCLIBC_MUTEX_UNLOCK(mylock);
142 }
143
144 return result;
145}
146
147
148static void
149noop_handler (int sig attribute_unused) {
150
151 /* We simply return which makes the `fcntl' call return with an error. */
152}