]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/unix/sysv/linux/i386/lockf64.c
8a17c13cbeba7d4fb6efc2ea6dc98338b12b81ea
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / i386 / lockf64.c
1 /* Copyright (C) 1994-2018 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
17
18 #include <sys/types.h>
19 #include <unistd.h>
20 #include <fcntl.h>
21 #include <errno.h>
22 #include <string.h>
23 #include <sysdep.h>
24
25 /* lockf is a simplified interface to fcntl's locking facilities. */
26
27 int
28 lockf64 (int fd, int cmd, off64_t len64)
29 {
30 struct flock64 fl64;
31 int cmd64;
32 int result;
33
34 memset ((char *) &fl64, '\0', sizeof (fl64));
35 fl64.l_whence = SEEK_CUR;
36 fl64.l_start = 0;
37 fl64.l_len = len64;
38
39 switch (cmd)
40 {
41 case F_TEST:
42 /* Test the lock: return 0 if FD is unlocked or locked by this process;
43 return -1, set errno to EACCES, if another process holds the lock. */
44 fl64.l_type = F_RDLCK;
45 INTERNAL_SYSCALL_DECL (err);
46 result = INTERNAL_SYSCALL (fcntl64, err, 3, fd, F_GETLK64, &fl64);
47 if (__glibc_unlikely (INTERNAL_SYSCALL_ERROR_P (result, err)))
48 return INLINE_SYSCALL_ERROR_RETURN_VALUE (INTERNAL_SYSCALL_ERRNO (result,
49 err));
50 if (fl64.l_type == F_UNLCK || fl64.l_pid == __getpid ())
51 return 0;
52 return INLINE_SYSCALL_ERROR_RETURN_VALUE (EACCES);
53 case F_ULOCK:
54 fl64.l_type = F_UNLCK;
55 cmd64 = F_SETLK64;
56 break;
57 case F_LOCK:
58 fl64.l_type = F_WRLCK;
59 cmd64 = F_SETLKW64;
60 break;
61 case F_TLOCK:
62 fl64.l_type = F_WRLCK;
63 cmd64 = F_SETLK64;
64 break;
65
66 default:
67 return INLINE_SYSCALL_ERROR_RETURN_VALUE (EINVAL);
68 }
69 return INLINE_SYSCALL (fcntl64, 3, fd, cmd64, &fl64);
70 }