xref: /freebsd/bin/ln/symlink.7 (revision 641a6cfb86023499caafe26a4d821a0b885cf00b)
1.\"-
2.\" Copyright (c) 1992, 1993, 1994
3.\"	The Regents of the University of California.  All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\"    notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\"    notice, this list of conditions and the following disclaimer in the
12.\"    documentation and/or other materials provided with the distribution.
13.\" 4. Neither the name of the University nor the names of its contributors
14.\"    may be used to endorse or promote products derived from this software
15.\"    without specific prior written permission.
16.\"
17.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27.\" SUCH DAMAGE.
28.\"
29.\"	@(#)symlink.7	8.3 (Berkeley) 3/31/94
30.\" $FreeBSD$
31.\"
32.Dd April 25, 2010
33.Dt SYMLINK 7
34.Os
35.Sh NAME
36.Nm symlink
37.Nd symbolic link handling
38.Sh SYMBOLIC LINK HANDLING
39Symbolic links are files that act as pointers to other files.
40To understand their behavior, you must first understand how hard links
41work.
42A hard link to a file is indistinguishable from the original file because
43it is a reference to the object underlying the original file name.
44Changes to a file are independent of the name used to reference the
45file.
46Hard links may not refer to directories and may not reference files
47on different file systems.
48A symbolic link contains the name of the file to which it is linked,
49i.e., it is a pointer to another name, and not to an underlying object.
50For this reason, symbolic links may reference directories and may span
51file systems.
52.Pp
53Because a symbolic link and its referenced object coexist in the file system
54name space, confusion can arise in distinguishing between the link itself
55and the referenced object.
56Historically, commands and system calls have adopted their own link
57following conventions in a somewhat ad-hoc fashion.
58Rules for more a uniform approach, as they are implemented in this system,
59are outlined here.
60It is important that local applications conform to these rules, too,
61so that the user interface can be as consistent as possible.
62.Pp
63Symbolic links are handled either by operating on the link itself,
64or by operating on the object referenced by the link.
65In the latter case,
66an application or system call is said to
67.Dq follow
68the link.
69Symbolic links may reference other symbolic links,
70in which case the links are dereferenced until an object that is
71not a symbolic link is found,
72a symbolic link which references a file which does not exist is found,
73or a loop is detected.
74(Loop detection is done by placing an upper limit on the number of
75links that may be followed, and an error results if this limit is
76exceeded.)
77.Pp
78There are three separate areas that need to be discussed.
79They are as follows:
80.Pp
81.Bl -enum -compact -offset indent
82.It
83Symbolic links used as file name arguments for system calls.
84.It
85Symbolic links specified as command line arguments to utilities that
86are not traversing a file tree.
87.It
88Symbolic links encountered by utilities that are traversing a file tree
89(either specified on the command line or encountered as part of the
90file hierarchy walk).
91.El
92.Ss System calls.
93The first area is symbolic links used as file name arguments for
94system calls.
95.Pp
96Except as noted below, all system calls follow symbolic links.
97For example, if there were a symbolic link
98.Dq Li slink
99which pointed to a file named
100.Dq Li afile ,
101the system call
102.Dq Li open("slink" ...\&)
103would return a file descriptor to the file
104.Dq afile .
105.Pp
106There are thirteen system calls that do not follow links, and which operate
107on the symbolic link itself.
108They are:
109.Xr lchflags 2 ,
110.Xr lchmod 2 ,
111.Xr lchown 2 ,
112.Xr lpathconf 2 ,
113.Xr lstat 2 ,
114.Xr lutimes 2 ,
115.Xr readlink 2 ,
116.Xr readlinkat 2 ,
117.Xr rename 2 ,
118.Xr renameat 2 ,
119.Xr rmdir 2 ,
120.Xr unlink 2 ,
121and
122.Xr unlinkat 2 .
123Because
124.Xr remove 3
125is an alias for
126.Xr unlink 2 ,
127it also does not follow symbolic links.
128When
129.Xr rmdir 2
130or
131.Xr unlinkat 2
132with the
133.Dv AT_REMOVEDIR
134flag
135is applied to a symbolic link, it fails with the error
136.Er ENOTDIR .
137.Pp
138The
139.Xr linkat 2
140system call does not follow symbolic links
141unless given the
142.Dv AT_SYMLINK_FOLLOW
143flag.
144.Pp
145The following system calls follow symbolic links
146unless given the
147.Dv AT_SYMLINK_NOFOLLOW
148flag:
149.Xr fchmodat 2 ,
150.Xr fchownat 2
151and
152.Xr fstatat 2 .
153.Pp
154The owner and group of an existing symbolic link can be changed by
155means of the
156.Xr lchown 2
157system call.
158The flags, access permissions, owner/group and modification time of
159an existing symbolic link can be changed by means of the
160.Xr lchflags 2 ,
161.Xr lchmod 2 ,
162.Xr lchown 2 ,
163and
164.Xr lutimes 2
165system calls, respectively.
166Of these, only the flags and ownership are used by the system;
167the access permissions are ignored.
168.Pp
169The
170.Bx 4.4
171system differs from historical
172.Bx 4
173systems in that the system call
174.Xr chown 2
175has been changed to follow symbolic links.
176The
177.Xr lchown 2
178system call was added later when the limitations of the new
179.Xr chown 2
180became apparent.
181.Ss Commands not traversing a file tree.
182The second area is symbolic links, specified as command line file
183name arguments, to commands which are not traversing a file tree.
184.Pp
185Except as noted below, commands follow symbolic links named as command
186line arguments.
187For example, if there were a symbolic link
188.Dq Li slink
189which pointed to a file named
190.Dq Li afile ,
191the command
192.Dq Li cat slink
193would display the contents of the file
194.Dq Li afile .
195.Pp
196It is important to realize that this rule includes commands which may
197optionally traverse file trees, e.g.\& the command
198.Dq Li "chown file"
199is included in this rule, while the command
200.Dq Li "chown -R file"
201is not.
202(The latter is described in the third area, below.)
203.Pp
204If it is explicitly intended that the command operate on the symbolic
205link instead of following the symbolic link, e.g., it is desired that
206.Dq Li "chown slink"
207change the ownership of the file that
208.Dq Li slink
209is, whether it is a symbolic link or not, the
210.Fl h
211option should be used.
212In the above example,
213.Dq Li "chown root slink"
214would change the ownership of the file referenced by
215.Dq Li slink ,
216while
217.Dq Li "chown -h root slink"
218would change the ownership of
219.Dq Li slink
220itself.
221.Pp
222There are four exceptions to this rule.
223The
224.Xr mv 1
225and
226.Xr rm 1
227commands do not follow symbolic links named as arguments,
228but respectively attempt to rename and delete them.
229(Note, if the symbolic link references a file via a relative path,
230moving it to another directory may very well cause it to stop working,
231since the path may no longer be correct.)
232.Pp
233The
234.Xr ls 1
235command is also an exception to this rule.
236For compatibility with historic systems (when
237.Nm ls
238is not doing a tree walk, i.e., the
239.Fl R
240option is not specified),
241the
242.Nm ls
243command follows symbolic links named as arguments if the
244.Fl H
245or
246.Fl L
247option is specified,
248or if the
249.Fl F ,
250.Fl d
251or
252.Fl l
253options are not specified.
254(The
255.Nm ls
256command is the only command where the
257.Fl H
258and
259.Fl L
260options affect its behavior even though it is not doing a walk of
261a file tree.)
262.Pp
263The
264.Xr file 1
265command is also an exception to this rule.
266The
267.Xr file 1
268command does not follow symbolic links named as argument by default.
269The
270.Xr file 1
271command does follow symbolic links named as argument if
272.Fl L
273option is specified.
274.Pp
275The
276.Bx 4.4
277system differs from historical
278.Bx 4
279systems in that the
280.Nm chown
281and
282.Nm chgrp
283commands follow symbolic links specified on the command line.
284.Ss Commands traversing a file tree.
285The following commands either optionally or always traverse file trees:
286.Xr chflags 1 ,
287.Xr chgrp 1 ,
288.Xr chmod 1 ,
289.Xr cp 1 ,
290.Xr du 1 ,
291.Xr find 1 ,
292.Xr ls 1 ,
293.Xr pax 1 ,
294.Xr rm 1 ,
295.Xr tar 1
296and
297.Xr chown 8 .
298.Pp
299It is important to realize that the following rules apply equally to
300symbolic links encountered during the file tree traversal and symbolic
301links listed as command line arguments.
302.Pp
303The first rule applies to symbolic links that reference files that are
304not of type directory.
305Operations that apply to symbolic links are performed on the links
306themselves, but otherwise the links are ignored.
307.Pp
308The command
309.Dq Li "rm -r slink directory"
310will remove
311.Dq Li slink ,
312as well as any symbolic links encountered in the tree traversal of
313.Dq Li directory ,
314because symbolic links may be removed.
315In no case will
316.Nm rm
317affect the file which
318.Dq Li slink
319references in any way.
320.Pp
321The second rule applies to symbolic links that reference files of type
322directory.
323Symbolic links which reference files of type directory are never
324.Dq followed
325by default.
326This is often referred to as a
327.Dq physical
328walk, as opposed to a
329.Dq logical
330walk (where symbolic links referencing directories are followed).
331.Pp
332As consistently as possible, you can make commands doing a file tree
333walk follow any symbolic links named on the command line, regardless
334of the type of file they reference, by specifying the
335.Fl H
336(for
337.Dq half\-logical )
338flag.
339This flag is intended to make the command line name space look
340like the logical name space.
341(Note, for commands that do not always do file tree traversals, the
342.Fl H
343flag will be ignored if the
344.Fl R
345flag is not also specified.)
346.Pp
347For example, the command
348.Dq Li "chown -HR user slink"
349will traverse the file hierarchy rooted in the file pointed to by
350.Dq Li slink .
351Note, the
352.Fl H
353is not the same as the previously discussed
354.Fl h
355flag.
356The
357.Fl H
358flag causes symbolic links specified on the command line to be
359dereferenced both for the purposes of the action to be performed
360and the tree walk, and it is as if the user had specified the
361name of the file to which the symbolic link pointed.
362.Pp
363As consistently as possible, you can make commands doing a file tree
364walk follow any symbolic links named on the command line, as well as
365any symbolic links encountered during the traversal, regardless of
366the type of file they reference, by specifying the
367.Fl L
368(for
369.Dq logical )
370flag.
371This flag is intended to make the entire name space look like
372the logical name space.
373(Note, for commands that do not always do file tree traversals, the
374.Fl L
375flag will be ignored if the
376.Fl R
377flag is not also specified.)
378.Pp
379For example, the command
380.Dq Li "chown -LR user slink"
381will change the owner of the file referenced by
382.Dq Li slink .
383If
384.Dq Li slink
385references a directory,
386.Nm chown
387will traverse the file hierarchy rooted in the directory that it
388references.
389In addition, if any symbolic links are encountered in any file tree that
390.Nm chown
391traverses, they will be treated in the same fashion as
392.Dq Li slink .
393.Pp
394As consistently as possible, you can specify the default behavior by
395specifying the
396.Fl P
397(for
398.Dq physical )
399flag.
400This flag is intended to make the entire name space look like the
401physical name space.
402.Pp
403For commands that do not by default do file tree traversals, the
404.Fl H ,
405.Fl L
406and
407.Fl P
408flags are ignored if the
409.Fl R
410flag is not also specified.
411In addition, you may specify the
412.Fl H ,
413.Fl L
414and
415.Fl P
416options more than once; the last one specified determines the
417command's behavior.
418This is intended to permit you to alias commands to behave one way
419or the other, and then override that behavior on the command line.
420.Pp
421The
422.Xr ls 1
423and
424.Xr rm 1
425commands have exceptions to these rules.
426The
427.Nm rm
428command operates on the symbolic link, and not the file it references,
429and therefore never follows a symbolic link.
430The
431.Nm rm
432command does not support the
433.Fl H ,
434.Fl L
435or
436.Fl P
437options.
438.Pp
439To maintain compatibility with historic systems,
440the
441.Nm ls
442command acts a little differently.
443If you do not specify the
444.Fl F ,
445.Fl d
446or
447.Fl l
448options,
449.Nm ls
450will follow symbolic links specified on the command line.
451If the
452.Fl L
453flag is specified,
454.Nm ls
455follows all symbolic links,
456regardless of their type,
457whether specified on the command line or encountered in the tree walk.
458.Sh SEE ALSO
459.Xr chflags 1 ,
460.Xr chgrp 1 ,
461.Xr chmod 1 ,
462.Xr cp 1 ,
463.Xr du 1 ,
464.Xr find 1 ,
465.Xr ln 1 ,
466.Xr ls 1 ,
467.Xr mv 1 ,
468.Xr pax 1 ,
469.Xr rm 1 ,
470.Xr tar 1 ,
471.Xr lchflags 2 ,
472.Xr lchmod 2 ,
473.Xr lchown 2 ,
474.Xr lstat 2 ,
475.Xr lutimes 2 ,
476.Xr readlink 2 ,
477.Xr rename 2 ,
478.Xr symlink 2 ,
479.Xr unlink 2 ,
480.Xr fts 3 ,
481.Xr remove 3 ,
482.Xr chown 8
483