1*8269e767SBrooks Davis.\" SPDX-License-Identifier: BSD-2-Clause 2*8269e767SBrooks Davis.\" 3*8269e767SBrooks Davis.\" Copyright (c) 2018 Gandi 4*8269e767SBrooks Davis.\" 5*8269e767SBrooks Davis.\" Redistribution and use in source and binary forms, with or without 6*8269e767SBrooks Davis.\" modification, are permitted provided that the following conditions 7*8269e767SBrooks Davis.\" are met: 8*8269e767SBrooks Davis.\" 1. Redistributions of source code must retain the above copyright 9*8269e767SBrooks Davis.\" notice, this list of conditions and the following disclaimer. 10*8269e767SBrooks Davis.\" 2. Redistributions in binary form must reproduce the above copyright 11*8269e767SBrooks Davis.\" notice, this list of conditions and the following disclaimer in the 12*8269e767SBrooks Davis.\" documentation and/or other materials provided with the distribution. 13*8269e767SBrooks Davis.\" 14*8269e767SBrooks Davis.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15*8269e767SBrooks Davis.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16*8269e767SBrooks Davis.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17*8269e767SBrooks Davis.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18*8269e767SBrooks Davis.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19*8269e767SBrooks Davis.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20*8269e767SBrooks Davis.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21*8269e767SBrooks Davis.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22*8269e767SBrooks Davis.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23*8269e767SBrooks Davis.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24*8269e767SBrooks Davis.\" SUCH DAMAGE. 25*8269e767SBrooks Davis.\" 26*8269e767SBrooks Davis.Dd November 30, 2022 27*8269e767SBrooks Davis.Dt FHREADLINK 2 28*8269e767SBrooks Davis.Os 29*8269e767SBrooks Davis.Sh NAME 30*8269e767SBrooks Davis.Nm fhreadlink 31*8269e767SBrooks Davis.Nd read value of a symbolic link 32*8269e767SBrooks Davis.Sh LIBRARY 33*8269e767SBrooks Davis.Lb libc 34*8269e767SBrooks Davis.Sh SYNOPSIS 35*8269e767SBrooks Davis.In sys/param.h 36*8269e767SBrooks Davis.In sys/mount.h 37*8269e767SBrooks Davis.Ft int 38*8269e767SBrooks Davis.Fn fhreadlink "fhandle_t *fhp" "char *buf" "size_t bufsize" 39*8269e767SBrooks Davis.Fc 40*8269e767SBrooks Davis.Sh DESCRIPTION 41*8269e767SBrooks DavisThe 42*8269e767SBrooks Davis.Fn fhreadlink 43*8269e767SBrooks Davissystem call 44*8269e767SBrooks Davisplaces the contents of the symbolic link 45*8269e767SBrooks Davis.Fa fhp 46*8269e767SBrooks Davisin the buffer 47*8269e767SBrooks Davis.Fa buf , 48*8269e767SBrooks Daviswhich has size 49*8269e767SBrooks Davis.Fa bufsiz . 50*8269e767SBrooks DavisThe 51*8269e767SBrooks Davis.Fn fhreadlink 52*8269e767SBrooks Davissystem call does not append a 53*8269e767SBrooks Davis.Dv NUL 54*8269e767SBrooks Davischaracter to 55*8269e767SBrooks Davis.Fa buf . 56*8269e767SBrooks Davis.Pp 57*8269e767SBrooks Davis.Sh RETURN VALUES 58*8269e767SBrooks DavisThe call returns the count of characters placed in the buffer 59*8269e767SBrooks Davisif it succeeds, or a \-1 if an error occurs, placing the error 60*8269e767SBrooks Daviscode in the global variable 61*8269e767SBrooks Davis.Va errno . 62*8269e767SBrooks Davis.Sh ERRORS 63*8269e767SBrooks DavisThe 64*8269e767SBrooks Davis.Fn readlink 65*8269e767SBrooks Davissystem call 66*8269e767SBrooks Daviswill fail if: 67*8269e767SBrooks Davis.Bl -tag -width Er 68*8269e767SBrooks Davis.It Bq Er ENOENT 69*8269e767SBrooks DavisThe named file does not exist. 70*8269e767SBrooks Davis.It Bq Er ELOOP 71*8269e767SBrooks DavisToo many symbolic links were encountered in translating the file handle 72*8269e767SBrooks Davis.Fa fhp . 73*8269e767SBrooks Davis.It Bq Er EINVAL 74*8269e767SBrooks DavisThe named file is not a symbolic link. 75*8269e767SBrooks Davis.It Bq Er EIO 76*8269e767SBrooks DavisAn I/O error occurred while reading from the file system. 77*8269e767SBrooks Davis.It Bq Er EINTEGRITY 78*8269e767SBrooks DavisCorrupted data was detected while reading from the file system. 79*8269e767SBrooks Davis.It Bq Er EFAULT 80*8269e767SBrooks DavisThe 81*8269e767SBrooks Davis.Fa buf 82*8269e767SBrooks Davisargument 83*8269e767SBrooks Davisextends outside the process's allocated address space. 84*8269e767SBrooks Davis.It Bq Er ESTALE 85*8269e767SBrooks DavisThe file handle 86*8269e767SBrooks Davis.Fa fhp 87*8269e767SBrooks Davisis no longer valid 88*8269e767SBrooks Davis.El 89*8269e767SBrooks Davis.El 90*8269e767SBrooks Davis.Sh SEE ALSO 91*8269e767SBrooks Davis.Xr fhstat 2 , 92*8269e767SBrooks Davis.Xr fhlink 2 , 93*8269e767SBrooks Davis.Sh HISTORY 94*8269e767SBrooks DavisThe 95*8269e767SBrooks Davis.Fn fhreadlink 96*8269e767SBrooks Davissystem call first appeared in 97*8269e767SBrooks Davis.Fx 12.1 . 98