OSDN Git Service

Implement lockf64
[uclinux-h8/uClibc.git] / libc / misc / file / lockf64.c
1 /* Copyright (C) 1994, 1996, 1997, 1998, 2000 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 Library General Public License as
6    published by the Free Software Foundation; either version 2 of the
7    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    Library General Public License for more details.
13
14    You should have received a copy of the GNU Library General Public
15    License along with the GNU C Library; see the file COPYING.LIB.  If not,
16    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17    Boston, MA 02111-1307, USA.  */
18
19 #include <sys/types.h>
20 #include <unistd.h>
21 #include <fcntl.h>
22 #include <errno.h>
23 #include <string.h>
24
25 #ifdef __NR_fcntl64
26 #define flock flock64
27 #define fcntl fcntl64
28 #define F_GETLK F_GETLK64
29 #define F_SETLK F_SETLK64
30 #endif
31
32 /* lockf is a simplified interface to fcntl's locking facilities.  */
33
34 int lockf64 (int fd, int cmd, off64_t len64)
35 {
36     struct flock fl;
37     off_t len = (off_t) len64;
38
39     if (len64 != (off64_t) len)
40     {
41         /* We can't represent the length.  */
42         __set_errno(EOVERFLOW);
43         return -1;
44     }
45
46     memset((char *) &fl, '\0', sizeof (fl));
47
48     /* lockf is always relative to the current file position.  */
49     fl.l_whence = SEEK_CUR;
50     fl.l_start = 0;
51     fl.l_len = len;
52
53     switch (cmd)
54     {
55         case F_TEST:
56             /* Test the lock: return 0 if FD is unlocked or locked by this process;
57                return -1, set errno to EACCES, if another process holds the lock.  */
58             fl.l_type = F_RDLCK;
59             if (fcntl (fd, F_GETLK, &fl) < 0)
60                 return -1;
61             if (fl.l_type == F_UNLCK || fl.l_pid == getpid ())
62                 return 0;
63             __set_errno(EACCES);
64             return -1;
65
66         case F_ULOCK:
67             fl.l_type = F_UNLCK;
68             cmd = F_SETLK;
69             break;
70         case F_LOCK:
71             fl.l_type = F_WRLCK;
72             cmd = F_SETLKW;
73             break;
74         case F_TLOCK:
75             fl.l_type = F_WRLCK;
76             cmd = F_SETLK;
77             break;
78
79         default:
80             __set_errno(EINVAL);
81             return -1;
82     }
83
84     return fcntl(fd, cmd, &fl);
85 }