lseek(2)


NAME

   lseek - reposition read/write file offset

SYNOPSIS

   #include <sys/types.h>
   #include <unistd.h>

   off_t lseek(int fd, off_t offset, int whence);

DESCRIPTION

   The  lseek()  function  repositions  the  file  offset of the open file
   description associated with the file  descriptor  fd  to  the  argument
   offset according to the directive whence as follows:

   SEEK_SET
          The file offset is set to offset bytes.

   SEEK_CUR
          The  file  offset  is  set  to  its current location plus offset
          bytes.

   SEEK_END
          The file offset is set to the  size  of  the  file  plus  offset
          bytes.

   The lseek() function allows the file offset to be set beyond the end of
   the file (but this does not change the size of the file).  If  data  is
   later written at this point, subsequent reads of the data in the gap (a
   "hole") return null bytes ('\0') until data is  actually  written  into
   the gap.

   Seeking file data and holes
   Since  version  3.1, Linux supports the following additional values for
   whence:

   SEEK_DATA
          Adjust the file offset to the next location in the file  greater
          than  or  equal  to offset containing data.  If offset points to
          data, then the file offset is set to offset.

   SEEK_HOLE
          Adjust the file offset to the next hole in the file greater than
          or equal to offset.  If offset points into the middle of a hole,
          then the file offset is set to offset.  If there is no hole past
          offset,  then the file offset is adjusted to the end of the file
          (i.e., there is an implicit hole at the end of any file).

   In both of the above cases, lseek() fails if offset points past the end
   of the file.

   These  operations  allow  applications  to  map  holes  in  a  sparsely
   allocated file.  This can be  useful  for  applications  such  as  file
   backup  tools,  which can save space when creating backups and preserve
   holes, if they have a mechanism for discovering holes.

   For the purposes of these operations, a hole is  a  sequence  of  zeros
   that  (normally) has not been allocated in the underlying file storage.
   However, a  filesystem  is  not  obliged  to  report  holes,  so  these
   operations are not a guaranteed mechanism for mapping the storage space
   actually allocated to a file.  (Furthermore, a sequence of  zeros  that
   actually has been written to the underlying storage may not be reported
   as a hole.)  In the simplest implementation, a filesystem  can  support
   the  operations by making SEEK_HOLE always return the offset of the end
   of the file, and making SEEK_DATA always return offset (i.e.,  even  if
   the  location  referred to by offset is a hole, it can be considered to
   consist of data that is a sequence of zeros).

   The _GNU_SOURCE feature test macro must be defined in order  to  obtain
   the definitions of SEEK_DATA and SEEK_HOLE from <unistd.h>.

   The  SEEK_HOLE and SEEK_DATA operations are supported for the following
   filesystems:

   *  Btrfs (since Linux 3.1)

   *  OCFS (since Linux 3.2)

   *  XFS (since Linux 3.5)

   *  ext4 (since Linux 3.8)

   *  tmpfs(5) (since Linux 3.8)

   *  NFS (since Linux 3.18)

   *  FUSE (since Linux 4.5)

RETURN VALUE

   Upon  successful  completion,  lseek()  returns  the  resulting  offset
   location  as  measured  in  bytes  from  the beginning of the file.  On
   error, the value (off_t) -1 is returned and errno is  set  to  indicate
   the error.

ERRORS

   EBADF  fd is not an open file descriptor.

   EINVAL whence  is  not  valid.   Or: the resulting file offset would be
          negative, or beyond the end of a seekable device.

   ENXIO  whence is SEEK_DATA or SEEK_HOLE, and the file offset is  beyond
          the end of the file.

   EOVERFLOW
          The resulting file offset cannot be represented in an off_t.

   ESPIPE fd is associated with a pipe, socket, or FIFO.

CONFORMING TO

   POSIX.1-2001, POSIX.1-2008, SVr4, 4.3BSD.

   SEEK_DATA  and  SEEK_HOLE  are  nonstandard  extensions also present in
   Solaris, FreeBSD, and DragonFly BSD; they are proposed for inclusion in
   the next POSIX revision (Issue 8).

NOTES

   See   open(2)  for  a  discussion  of  the  relationship  between  file
   descriptors, open file descriptions, and files.

   The off_t data type is a signed integer data type specified by POSIX.1.

   Some devices are incapable of seeking and POSIX does not specify  which
   devices must support lseek().

   On Linux, using lseek() on a terminal device returns ESPIPE.

   When  converting  old  code,  substitute  values  for  whence  with the
   following macros:

    old       new
   0        SEEK_SET
   1        SEEK_CUR
   2        SEEK_END
   L_SET    SEEK_SET
   L_INCR   SEEK_CUR
   L_XTND   SEEK_END

   Note that file descriptors created by dup(2) or fork(2)  refer  to  the
   same open file descriptions (and thus file offsets), so seeking on such
   files may be subject to race conditions.

SEE ALSO

   dup(2), fork(2), open(2), fseek(3), lseek64(3), posix_fallocate(3)

COLOPHON

   This page is part of release 4.09 of the Linux  man-pages  project.   A
   description  of  the project, information about reporting bugs, and the
   latest    version    of    this    page,    can     be     found     at
   https://www.kernel.org/doc/man-pages/.


More Linux Commands

manpages/Tcl_FSLstat.3.html
Tcl_FSLstat(3) - procedures to interact with any filesystem
There are several reasons for calling the Tcl_FS API functions (e.g. Tcl_FSAccess and Tcl_FSStat) rather than calling system level functions like access and sta

manpages/attr.1.html
attr(1) - extended attributes on XFS filesystem objects.....
The attr utility allows the manipulation of extended attributes associated with filesystem objects from within shell scripts. There are four main operations tha

manpages/nntpd.8.html
nntpd(8) - NNTP server process (Admin - Linux man page).....
Nntpd is a NNTP server. It accepts commands on its standard input and responds on its standard output. It MUST invoked by master(8) with those descriptors attac

manpages/glCallLists.3gl.html
glCallLists(3gl) - execute a list of display lists (ManPage)
glCallLists causes each display list in the list of names passed as lists to be executed. As a result, the commands saved in each display list are executed in o

manpages/uuid_compare.3.html
uuid_compare(3) - compare whether two UUIDs are the same....
The uuid_compare function compares the two supplied uuid variables uu1 and uu2 to each other. RETURN VALUE Returns an integer less than, equal to, or greater th

manpages/cirrus.4.html
cirrus(4) - Cirrus Logic video driver - Linux manual page...
cirrus is an Xorg driver for Cirrus Logic video chips. THIS MAN PAGE NEEDS TO BE FILLED IN. SUPPORTED HARDWARE The cirrus driver supports... CONFIGURATION DETAI

manpages/pamgauss.1.html
pamgauss(1) - create a two dimensional gaussian function as
This program is part of Netpbm(1) pamgauss generates a one-plane PAM image whose samples are a gaussian function of their distance from the center of the image.

manpages/XkbChangeDeviceInfo.3.html
XkbChangeDeviceInfo(3) - Update the server's description of
XkbChangeDeviceInfo updates the servers description of the device specified in device_info-&gt;device_spec with the changes specified in changes and contained in d

manpages/asinh.3.html
asinh(3) - inverse hyperbolic sine function - Linux man page
The asinh() function calculates the inverse hyperbolic sine of x; that is the value whose hyperbolic sine is x. RETURN VALUE On success, these functions return

manpages/radius.8.html
radius(8) - nnrpd RADIUS password authenticator (Man Page)
radius is an nnrpd authenticator, accepting a username and password from nnrpd (given to nnrpd by a reader connection) and attempting to authenticate that usern

manpages/gnutls_pkcs11_copy_secret_key.3.html
gnutls_pkcs11_copy_secret_key(3) - API function (Man Page)
This function will copy a raw secret (symmetric) key into a PKCS 11 token specified by a URL. The key can be marked as sensitive or not. RETURNS On success, GNU

manpages/mvwdelch.3ncurses.html
mvwdelch(3ncurses) - delete character under the cursor in a
These routines delete the character under the cursor; all characters to the right of the cursor on the same line are moved to the left one position and the last





We can't live, work or learn in freedom unless the software we use is free.