OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [uClibc/] [libc/] [misc/] [file/] [lockf64.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1325 phoenix
/* 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 <features.h>
20
 
21
#ifdef __UCLIBC_HAS_LFS__
22
#if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS != 64 
23
#undef _FILE_OFFSET_BITS
24
#define _FILE_OFFSET_BITS   64
25
#endif
26
#ifndef __USE_FILE_OFFSET64
27
# define __USE_FILE_OFFSET64    1
28
#endif
29
#ifndef __USE_LARGEFILE64
30
# define __USE_LARGEFILE64      1
31
#endif
32
#endif
33
 
34
#define __USE_GNU
35
 
36
#include <sys/types.h>
37
#include <unistd.h>
38
#include <fcntl.h>
39
#include <errno.h>
40
#include <string.h>
41
 
42
#ifdef __NR_fcntl64
43
#define flock flock64
44
#define fcntl fcntl64
45
#define F_GETLK F_GETLK64
46
#define F_SETLK F_SETLK64
47
#endif
48
 
49
/* lockf is a simplified interface to fcntl's locking facilities.  */
50
 
51
int lockf64 (int fd, int cmd, off64_t len64)
52
{
53
    struct flock fl;
54
    off_t len = (off_t) len64;
55
 
56
    if (len64 != (off64_t) len)
57
    {
58
        /* We can't represent the length.  */
59
        __set_errno(EOVERFLOW);
60
        return -1;
61
    }
62
 
63
    memset((char *) &fl, '\0', sizeof (fl));
64
 
65
    /* lockf is always relative to the current file position.  */
66
    fl.l_whence = SEEK_CUR;
67
    fl.l_start = 0;
68
    fl.l_len = len;
69
 
70
    switch (cmd)
71
    {
72
        case F_TEST:
73
            /* Test the lock: return 0 if FD is unlocked or locked by this process;
74
               return -1, set errno to EACCES, if another process holds the lock.  */
75
            fl.l_type = F_RDLCK;
76
            if (fcntl (fd, F_GETLK, &fl) < 0)
77
                return -1;
78
            if (fl.l_type == F_UNLCK || fl.l_pid == getpid ())
79
                return 0;
80
            __set_errno(EACCES);
81
            return -1;
82
 
83
        case F_ULOCK:
84
            fl.l_type = F_UNLCK;
85
            cmd = F_SETLK;
86
            break;
87
        case F_LOCK:
88
            fl.l_type = F_WRLCK;
89
            cmd = F_SETLKW;
90
            break;
91
        case F_TLOCK:
92
            fl.l_type = F_WRLCK;
93
            cmd = F_SETLK;
94
            break;
95
 
96
        default:
97
            __set_errno(EINVAL);
98
            return -1;
99
    }
100
 
101
    return fcntl(fd, cmd, &fl);
102
}
103
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.