OSDN Git Service

e10eb4a702ea13fc724faead2277cb8f9ed79a58
[linuxjm/LDP_man-pages.git] / original / man2 / lseek.2
1 '\" t
2 .\" Copyright (c) 1980, 1991 Regents of the University of California.
3 .\" and Copyright (c) 2011, Michael Kerrisk <mtk.manpages@gmail.com>
4 .\" All rights reserved.
5 .\"
6 .\" %%%LICENSE_START(BSD_4_CLAUSE_UCB)
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\" 3. All advertising materials mentioning features or use of this software
16 .\"    must display the following acknowledgement:
17 .\"     This product includes software developed by the University of
18 .\"     California, Berkeley and its contributors.
19 .\" 4. Neither the name of the University nor the names of its contributors
20 .\"    may be used to endorse or promote products derived from this software
21 .\"    without specific prior written permission.
22 .\"
23 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 .\" SUCH DAMAGE.
34 .\" %%%LICENSE_END
35 .\"
36 .\"     @(#)lseek.2     6.5 (Berkeley) 3/10/91
37 .\"
38 .\" Modified 1993-07-23 by Rik Faith <faith@cs.unc.edu>
39 .\" Modified 1995-06-10 by Andries Brouwer <aeb@cwi.nl>
40 .\" Modified 1996-10-31 by Eric S. Raymond <esr@thyrsus.com>
41 .\" Modified 1998-01-17 by Michael Haardt
42 .\"   <michael@cantor.informatik.rwth-aachen.de>
43 .\" Modified 2001-09-24 by Michael Haardt <michael@moria.de>
44 .\" Modified 2003-08-21 by Andries Brouwer <aeb@cwi.nl>
45 .\" 2011-09-18, mtk, Added SEEK_DATA + SEEK_HOLE
46 .\"
47 .TH LSEEK 2 2011-09-25 "Linux" "Linux Programmer's Manual"
48 .SH NAME
49 lseek \- reposition read/write file offset
50 .SH SYNOPSIS
51 .B #include <sys/types.h>
52 .br
53 .B #include <unistd.h>
54 .sp
55 .BI "off_t lseek(int " fd ", off_t " offset ", int " whence );
56 .SH DESCRIPTION
57 The
58 .BR lseek ()
59 function repositions the offset of the open file associated with the
60 file descriptor
61 .I fd
62 to the argument
63 .I offset
64 according to the directive
65 .I whence
66 as follows:
67 .TP
68 .B SEEK_SET
69 The offset is set to
70 .I offset
71 bytes.
72 .TP
73 .B SEEK_CUR
74 The offset is set to its current location plus
75 .I offset
76 bytes.
77 .TP
78 .B SEEK_END
79 The offset is set to the size of the file plus
80 .I offset
81 bytes.
82 .PP
83 The
84 .BR lseek ()
85 function allows the file offset to be set beyond the end
86 of the file (but this does not change the size of the file).
87 If data is later written at this point, subsequent reads of the data
88 in the gap (a "hole") return null bytes (\(aq\\0\(aq) until
89 data is actually written into the gap.
90 .SS Seeking file data and holes
91 Since version 3.1, Linux supports the following additional values for
92 .IR whence :
93 .TP
94 .B SEEK_DATA
95 Adjust the file offset to the next location
96 in the file greater than or equal to
97 .I offset
98 containing data.
99 If
100 .I offset
101 points to data,
102 then the file offset is set to
103 .IR offset .
104 .TP
105 .B SEEK_HOLE
106 Adjust the file offset to the next hole in the file
107 greater than or equal to
108 .IR offset .
109 If
110 .I offset
111 points into the middle of a hole,
112 then the file offset is set to
113 .IR offset .
114 If there is no hole past
115 .IR offset ,
116 then the file offset is adjusted to the end of the file
117 (i.e., there is an implicit hole at the end of any file).
118 .PP
119 In both of the above cases,
120 .BR lseek ()
121 fails if
122 .I offset
123 points past the end of the file.
124
125 These operations allow applications to map holes in a sparsely
126 allocated file.
127 This can be useful for applications such as file backup tools,
128 which can save space when creating backups and preserve holes,
129 if they have a mechanism for discovering holes.
130
131 For the purposes of these operations, a hole is a sequence of zeros that
132 (normally) has not been allocated in the underlying file storage.
133 However, a file system is not obliged to report holes,
134 so these operations are not a guaranteed mechanism for
135 mapping the storage space actually allocated to a file.
136 (Furthermore, a sequence of zeros that actually has been written
137 to the underlying storage may not be reported as a hole.)
138 In the simplest implementation,
139 a file system can support the operations by making
140 .BR SEEK_HOLE
141 always return the offset of the end of the file,
142 and making
143 .BR SEEK_DATA
144 always return
145 .IR offset
146 (i.e., even if the location referred to by
147 .I offset
148 is a hole,
149 it can be considered to consist of data that is a sequence of zeros).
150 .\" https://lkml.org/lkml/2011/4/22/79
151 .\" http://lwn.net/Articles/440255/
152 .\" http://blogs.oracle.com/bonwick/entry/seek_hole_and_seek_data
153 .SH RETURN VALUE
154 Upon successful completion,
155 .BR lseek ()
156 returns the resulting offset location as measured in bytes from the
157 beginning of the file.
158 On error, the value \fI(off_t)\ \-1\fP is returned and
159 .I errno
160 is set to indicate the error.
161 .SH ERRORS
162 .TP
163 .B EBADF
164 .I fd
165 is not an open file descriptor.
166 .TP
167 .B EINVAL
168 .I whence
169 is not valid.
170 Or: the resulting file offset would be negative,
171 or beyond the end of a seekable device.
172 .\" Some systems may allow negative offsets for character devices
173 .\" and/or for remote file systems.
174 .TP
175 .B EOVERFLOW
176 .\" HP-UX 11 says EINVAL for this case (but POSIX.1 says EOVERFLOW)
177 The resulting file offset cannot be represented in an
178 .IR off_t .
179 .TP
180 .B ESPIPE
181 .I fd
182 is associated with a pipe, socket, or FIFO.
183 .TP
184 .B ENXIO
185 .I whence
186 is
187 .B SEEK_DATA
188 or
189 .BR SEEK_HOLE ,
190 and the current file offset is beyond the end of the file.
191 .SH CONFORMING TO
192 SVr4, 4.3BSD, POSIX.1-2001.
193
194 .BR SEEK_DATA
195 and
196 .BR SEEK_HOLE
197 are nonstandard extensions also present in Solaris,
198 FreeBSD, and DragonFly BSD;
199 they are proposed for inclusion in the next POSIX revision (Issue 8).
200 .\" FIXME . Review http://austingroupbugs.net/view.php?id=415 in the future
201 .SH NOTES
202 Some devices are incapable of seeking and POSIX does not specify which
203 devices must support
204 .BR lseek ().
205
206 On Linux, using
207 .BR lseek ()
208 on a terminal device returns
209 \fBESPIPE\fP.
210 .\" Other systems return the number of written characters,
211 .\" using SEEK_SET to set the counter. (Of written characters.)
212
213 When converting old code, substitute values for \fIwhence\fP with the
214 following macros:
215 .TS
216 c c
217 l l.
218 old     new
219 0       SEEK_SET
220 1       SEEK_CUR
221 2       SEEK_END
222 L_SET   SEEK_SET
223 L_INCR  SEEK_CUR
224 L_XTND  SEEK_END
225 .TE
226 .\" .PP
227 .\" SVr1-3 returns \fIlong\fP instead of \fIoff_t\fP,
228 .\" (ancient) BSD returns \fIint\fP.
229 .PP
230 Note that file descriptors created by
231 .BR dup (2)
232 or
233 .BR fork (2)
234 share the current file position pointer, so seeking on such files may be
235 subject to race conditions.
236 .SH SEE ALSO
237 .BR dup (2),
238 .BR fork (2),
239 .BR open (2),
240 .BR fseek (3),
241 .BR lseek64 (3),
242 .BR posix_fallocate (3)