1LSEEK(3P)                  POSIX Programmer's Manual                 LSEEK(3P)
2
3
4

PROLOG

6       This  manual  page is part of the POSIX Programmer's Manual.  The Linux
7       implementation of this interface may differ (consult the  corresponding
8       Linux  manual page for details of Linux behavior), or the interface may
9       not be implemented on Linux.
10

NAME

12       lseek - move the read/write file offset
13

SYNOPSIS

15       #include <unistd.h>
16
17       off_t lseek(int fildes, off_t offset, int whence);
18
19

DESCRIPTION

21       The lseek() function shall set  the  file  offset  for  the  open  file
22       description associated with the file descriptor fildes, as follows:
23
24        * If whence is SEEK_SET, the file offset shall be set to offset bytes.
25
26        * If  whence  is SEEK_CUR, the file offset shall be set to its current
27          location plus offset.
28
29        * If whence is SEEK_END, the file offset shall be set to the  size  of
30          the file plus offset.
31
32       The  symbolic constants SEEK_SET, SEEK_CUR, and SEEK_END are defined in
33       <unistd.h>.
34
35       The behavior of lseek() on devices which are incapable  of  seeking  is
36       implementation-defined.  The  value  of the file offset associated with
37       such a device is undefined.
38
39       The lseek() function shall allow the file offset to be set  beyond  the
40       end  of the existing data in the file. If data is later written at this
41       point, subsequent reads of data in the gap shall return bytes with  the
42       value 0 until data is actually written into the gap.
43
44       The lseek() function shall not, by itself, extend the size of a file.
45
46       If  fildes  refers to a shared memory object, the result of the lseek()
47       function is unspecified.
48
49       If fildes refers to a typed memory object, the result  of  the  lseek()
50       function is unspecified.
51

RETURN VALUE

53       Upon  successful completion, the resulting offset, as measured in bytes
54       from  the  beginning  of  the  file,  shall  be  returned.   Otherwise,
55       (off_t)-1  shall be returned, errno shall be set to indicate the error,
56       and the file offset shall remain unchanged.
57

ERRORS

59       The lseek() function shall fail if:
60
61       EBADF  The fildes argument is not an open file descriptor.
62
63       EINVAL The whence argument is not a proper value, or the resulting file
64              offset would be negative for a regular file, block special file,
65              or directory.
66
67       EOVERFLOW
68              The resulting file offset would be a value which cannot be  rep‐
69              resented correctly in an object of type off_t.
70
71       ESPIPE The fildes argument is associated with a pipe, FIFO, or socket.
72
73
74       The following sections are informative.
75

EXAMPLES

77       None.
78

APPLICATION USAGE

80       None.
81

RATIONALE

83       The  ISO C  standard  includes  the  functions fgetpos() and fsetpos(),
84       which work on very large files by use of a special positioning type.
85
86       Although lseek() may position the file offset beyond  the  end  of  the
87       file,  this function does not itself extend the size of the file. While
88       the only function in IEEE Std 1003.1-2001 that may directly extend  the
89       size of the file is write(), truncate(), and ftruncate(), several func‐
90       tions originally derived from the ISO C  standard,  such  as  fwrite(),
91       fprintf(), and so on, may do so (by causing calls on write()).
92
93       An  invalid file offset that would cause [EINVAL] to be returned may be
94       both implementation-defined and device-dependent (for  example,  memory
95       may  have  few invalid values). A negative file offset may be valid for
96       some devices in some implementations.
97
98       The POSIX.1-1990 standard did not specifically  prohibit  lseek()  from
99       returning  a negative offset. Therefore, an application was required to
100       clear errno prior to the call and check errno upon return to  determine
101       whether a return value of ( off_t)-1 is a negative offset or an indica‐
102       tion of an error condition. The standard developers  did  not  wish  to
103       require  this action on the part of a conforming application, and chose
104       to require that errno be set to [EINVAL] when the resulting file offset
105       would be negative for a regular file, block special file, or directory.
106

FUTURE DIRECTIONS

108       None.
109

SEE ALSO

111       open(),   the   Base   Definitions   volume   of  IEEE Std 1003.1-2001,
112       <sys/types.h>, <unistd.h>
113
115       Portions of this text are reprinted and reproduced in  electronic  form
116       from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
117       -- Portable Operating System Interface (POSIX),  The  Open  Group  Base
118       Specifications  Issue  6,  Copyright  (C) 2001-2003 by the Institute of
119       Electrical and Electronics Engineers, Inc and The Open  Group.  In  the
120       event of any discrepancy between this version and the original IEEE and
121       The Open Group Standard, the original IEEE and The Open Group  Standard
122       is  the  referee document. The original Standard can be obtained online
123       at http://www.opengroup.org/unix/online.html .
124
125
126
127IEEE/The Open Group                  2003                            LSEEK(3P)
Impressum