1lseek(2) System Calls lseek(2)
2
3
4
6 lseek - move read/write file pointer
7
9 #include <sys/types.h>
10 #include <unistd.h>
11
12 off_t lseek(int fildes, off_t offset, int whence);
13
14
16 The lseek() function sets the file pointer associated with the open
17 file descriptor specified by fildes as follows:
18
19 o If whence is SEEK_SET, the pointer is set to offset bytes.
20
21 o If whence is SEEK_CUR, the pointer is set to its current
22 location plus offset.
23
24 o If whence is SEEK_END, the pointer is set to the size of the
25 file plus offset.
26
27 o If whence is SEEK_HOLE, the offset of the start of the next
28 hole greater than or equal to the supplied offset is
29 returned. The definition of a hole is provided near the end
30 of the DESCRIPTION.
31
32 o If whence is SEEK_DATA, the file pointer is set to the start
33 of the next non-hole file region greater than or equal to
34 the supplied offset.
35
36
37 The symbolic constants SEEK_SET, SEEK_CUR, SEEK_END, SEEK_HOLE, and
38 SEEK_DATA are defined in the header <unistd.h>.
39
40
41 Some devices are incapable of seeking. The value of the file pointer
42 associated with such a device is undefined.
43
44
45 The lseek() function allows the file pointer to be set beyond the
46 existing data in the file. If data are later written at this point,
47 subsequent reads in the gap between the previous end of data and the
48 newly written data will return bytes of value 0 until data are written
49 into the gap.
50
51
52 If fildes is a remote file descriptor and offset is negative, lseek()
53 returns the file pointer even if it is negative. The lseek() function
54 will not, by itself, extend the size of a file.
55
56
57 If fildes refers to a shared memory object, lseek() behaves as if
58 fildes referred to a regular file.
59
60
61 A "hole" is defined as a contiguous range of bytes in a file, all hav‐
62 ing the value of zero, but not all zeros in a file are guaranteed to be
63 represented as holes returned with SEEK_HOLE. Filesystems are allowed
64 to expose ranges of zeros with SEEK_HOLE, but not required to. Applica‐
65 tions can use SEEK_HOLE to optimise their behavior for ranges of zeros,
66 but must not depend on it to find all such ranges in a file. The exis‐
67 tence of a hole at the end of every data region allows for easy pro‐
68 gramming and implies that a virtual hole exists at the end of the file.
69 Applications should use fpathconf(_PC_MIN_HOLE_SIZE) or path‐
70 conf(_PC_MIN_HOLE_SIZE) to determine if a filesystem supports
71 SEEK_HOLE. See fpathconf(2).
72
73
74 For filesystems that do not supply information about holes, the file
75 will be represented as one entire data region.
76
78 Upon successful completion, the resulting offset, as measured in bytes
79 from the beginning of the file, is returned. Otherwise, (off_t)−1 is
80 returned, the file offset remains unchanged, and errno is set to indi‐
81 cate the error.
82
84 The lseek() function will fail if:
85
86 EBADF The fildes argument is not an open file descriptor.
87
88
89 EINVAL The whence argument is not SEEK_SET, SEEK_CUR, or
90 SEEK_END; or the fildes argument is not a remote file
91 descriptor and the resulting file pointer would be nega‐
92 tive.
93
94
95 ENXIO For SEEK_DATA, there are no more data regions past the
96 supplied offset. For SEEK_HOLE, there are no more holes
97 past the supplied offset.
98
99
100 EOVERFLOW The resulting file offset would be a value which cannot be
101 represented correctly in an object of type off_t for regu‐
102 lar files.
103
104
105 ESPIPE The fildes argument is associated with a pipe, a FIFO, or
106 a socket.
107
108
110 The lseek() function has a transitional interface for 64-bit file off‐
111 sets. See lf64(5).
112
113
114 In multithreaded applications, using lseek() in conjunction with a
115 read(2) or write(2) call on a file descriptor shared by more than one
116 thread is not an atomic operation. To ensure atomicity, use pread() or
117 pwrite().
118
120 See attributes(5) for descriptions of the following attributes:
121
122
123
124
125 ┌─────────────────────────────┬─────────────────────────────┐
126 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
127 ├─────────────────────────────┼─────────────────────────────┤
128 │Interface Stability │Standard │
129 ├─────────────────────────────┼─────────────────────────────┤
130 │MT-Level │Async-Signal-Safe │
131 └─────────────────────────────┴─────────────────────────────┘
132
134 creat(2), dup(2), fcntl(2), fpathconf(2), open(2), read(2), write(2),
135 attributes(5), lf64(5), standards(5)
136
137
138
139SunOS 5.11 4 May 2005 lseek(2)