1fab63cc4SDoug Rabson.\" -*- nroff -*- 2fab63cc4SDoug Rabson.\" 3fab63cc4SDoug Rabson.\" Copyright (c) 1996 Doug Rabson 4fab63cc4SDoug Rabson.\" 5fab63cc4SDoug Rabson.\" All rights reserved. 6fab63cc4SDoug Rabson.\" 7fab63cc4SDoug Rabson.\" This program is free software. 8fab63cc4SDoug Rabson.\" 9fab63cc4SDoug Rabson.\" Redistribution and use in source and binary forms, with or without 10fab63cc4SDoug Rabson.\" modification, are permitted provided that the following conditions 11fab63cc4SDoug Rabson.\" are met: 12fab63cc4SDoug Rabson.\" 1. Redistributions of source code must retain the above copyright 13fab63cc4SDoug Rabson.\" notice, this list of conditions and the following disclaimer. 14fab63cc4SDoug Rabson.\" 2. Redistributions in binary form must reproduce the above copyright 15fab63cc4SDoug Rabson.\" notice, this list of conditions and the following disclaimer in the 16fab63cc4SDoug Rabson.\" documentation and/or other materials provided with the distribution. 17fab63cc4SDoug Rabson.\" 18fab63cc4SDoug Rabson.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR 19fab63cc4SDoug Rabson.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 20fab63cc4SDoug Rabson.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 21fab63cc4SDoug Rabson.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT, 22fab63cc4SDoug Rabson.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 23fab63cc4SDoug Rabson.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24fab63cc4SDoug Rabson.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25fab63cc4SDoug Rabson.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26fab63cc4SDoug Rabson.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 27fab63cc4SDoug Rabson.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28fab63cc4SDoug Rabson.\" 297f3dea24SPeter Wemm.\" $FreeBSD$ 30fab63cc4SDoug Rabson.\" 31fab63cc4SDoug Rabson.Dd July 24, 1996 32fab63cc4SDoug Rabson.Os 33fab63cc4SDoug Rabson.Dt VOP_LINK 9 34fab63cc4SDoug Rabson.Sh NAME 35fab63cc4SDoug Rabson.Nm VOP_LINK 36fab63cc4SDoug Rabson.Nd create a new name for a file 37fab63cc4SDoug Rabson.Sh SYNOPSIS 3832eef9aeSRuslan Ermilov.In sys/param.h 3932eef9aeSRuslan Ermilov.In sys/vnode.h 40fab63cc4SDoug Rabson.Ft int 41fab63cc4SDoug Rabson.Fn VOP_LINK "struct vnode *dvp" "struct vnode *vp" "struct componentname *cnp" 42fab63cc4SDoug Rabson.Sh DESCRIPTION 43fab63cc4SDoug RabsonThis links a new name in the specified directory to an existing file. 44fab63cc4SDoug Rabson.Pp 45fab63cc4SDoug RabsonIts arguments are: 463136363fSRuslan Ermilov.Bl -tag -width 8n 47fab63cc4SDoug Rabson.It Ar dvp 48fab63cc4SDoug Rabsonthe vnode of the directory 493ac84fedSMatthew Dillon.It Ar vp 50fab63cc4SDoug Rabsonthe vnode of the file to be linked 51fab63cc4SDoug Rabson.It Ar cnp 52fab63cc4SDoug Rabsonpathname information about the file 53fab63cc4SDoug Rabson.El 54fab63cc4SDoug Rabson.Pp 554f0ef111SDon LewisThe pathname info should NOT be released on exit because it is done 564f0ef111SDon Lewisby the caller. 57691d7d09SDon LewisThe directory and file vnodes should NOT be released on exit. 58fab63cc4SDoug Rabson.Sh LOCKS 5939473914SDon Lewis.Xr VOP_LINK 9 6039473914SDon Lewisexpects the directory and file vnodes to be locked on entry and will leave 6139473914SDon Lewisthe vnodes locked on return. 62fab63cc4SDoug Rabson.Sh RETURN VALUES 63fab63cc4SDoug RabsonZero is returned if the file was linked successfully, otherwise an 64fab63cc4SDoug Rabsonerror is returned. 65fab63cc4SDoug Rabson.Sh PSEUDOCODE 66fab63cc4SDoug Rabson.Bd -literal 67fab63cc4SDoug Rabsonint 68fab63cc4SDoug Rabsonvop_link(struct vnode *dvp, struct vnode *vp, struct componentname *cnp) 69fab63cc4SDoug Rabson{ 70fab63cc4SDoug Rabson int error = 0; 71fab63cc4SDoug Rabson 724f0ef111SDon Lewis if (vp->v_mount != dvp->v_mount) 734f0ef111SDon Lewis return (EXDEV); 74fab63cc4SDoug Rabson 7539473914SDon Lewis if (vp would have too many links) 7639473914SDon Lewis return (EMLINK); 77c20b4df6SMatthew Dillon 7839473914SDon Lewis if (vp is immutable) 7939473914SDon Lewis return (EPERM); 80fab63cc4SDoug Rabson 81fab63cc4SDoug Rabson /* 82fab63cc4SDoug Rabson * Increment link count of vp and write back the on-disc version of it. 83fab63cc4SDoug Rabson */ 84fab63cc4SDoug Rabson ...; 85fab63cc4SDoug Rabson 86fab63cc4SDoug Rabson if (!error) { 87fab63cc4SDoug Rabson /* 88fab63cc4SDoug Rabson * Add the new name to the directory. 89fab63cc4SDoug Rabson */ 90fab63cc4SDoug Rabson ...; 91fab63cc4SDoug Rabson } 92fab63cc4SDoug Rabson 93fab63cc4SDoug Rabson return error; 94fab63cc4SDoug Rabson} 95fab63cc4SDoug Rabson.Ed 96fab63cc4SDoug Rabson.Sh ERRORS 97eaa8b244SMike Pritchard.Bl -tag -width Er 984f0ef111SDon Lewis.It Bq Er EMLINK 99cc258457SDon LewisThe file has too many links. 1004f0ef111SDon Lewis.El 1014f0ef111SDon Lewis.Bl -tag -width Er 102fab63cc4SDoug Rabson.It Bq Er EPERM 103cc258457SDon LewisThe file is immutable. 104fab63cc4SDoug Rabson.El 1054f0ef111SDon Lewis.Bl -tag -width Er 1064f0ef111SDon Lewis.It Bq Er EXDEV 107cc258457SDon LewisA hard link is not possible between different file systems. 1084f0ef111SDon Lewis.El 109fab63cc4SDoug Rabson.Sh SEE ALSO 11037af2883SMatthew Dillon.Xr vnode 9 , 11137af2883SMatthew Dillon.Xr vn_lock 9 112fab63cc4SDoug Rabson.Sh AUTHORS 11337af2883SMatthew DillonThis man page was originally written by 114aaf1f16eSPhilippe Charnier.An Doug Rabson . 115