xref: /freebsd/lib/libsys/dup.2 (revision 8269e7673cf033aba67dab8264fe719920c70f87)
1*8269e767SBrooks Davis.\" Copyright (c) 1980, 1991, 1993
2*8269e767SBrooks Davis.\"	The Regents of the University of California.  All rights reserved.
3*8269e767SBrooks Davis.\"
4*8269e767SBrooks Davis.\" Redistribution and use in source and binary forms, with or without
5*8269e767SBrooks Davis.\" modification, are permitted provided that the following conditions
6*8269e767SBrooks Davis.\" are met:
7*8269e767SBrooks Davis.\" 1. Redistributions of source code must retain the above copyright
8*8269e767SBrooks Davis.\"    notice, this list of conditions and the following disclaimer.
9*8269e767SBrooks Davis.\" 2. Redistributions in binary form must reproduce the above copyright
10*8269e767SBrooks Davis.\"    notice, this list of conditions and the following disclaimer in the
11*8269e767SBrooks Davis.\"    documentation and/or other materials provided with the distribution.
12*8269e767SBrooks Davis.\" 3. Neither the name of the University nor the names of its contributors
13*8269e767SBrooks Davis.\"    may be used to endorse or promote products derived from this software
14*8269e767SBrooks Davis.\"    without specific prior written permission.
15*8269e767SBrooks Davis.\"
16*8269e767SBrooks Davis.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17*8269e767SBrooks Davis.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18*8269e767SBrooks Davis.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19*8269e767SBrooks Davis.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20*8269e767SBrooks Davis.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21*8269e767SBrooks Davis.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22*8269e767SBrooks Davis.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23*8269e767SBrooks Davis.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24*8269e767SBrooks Davis.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25*8269e767SBrooks Davis.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26*8269e767SBrooks Davis.\" SUCH DAMAGE.
27*8269e767SBrooks Davis.\"
28*8269e767SBrooks Davis.Dd December 1, 2017
29*8269e767SBrooks Davis.Dt DUP 2
30*8269e767SBrooks Davis.Os
31*8269e767SBrooks Davis.Sh NAME
32*8269e767SBrooks Davis.Nm dup ,
33*8269e767SBrooks Davis.Nm dup2
34*8269e767SBrooks Davis.Nd duplicate an existing file descriptor
35*8269e767SBrooks Davis.Sh LIBRARY
36*8269e767SBrooks Davis.Lb libc
37*8269e767SBrooks Davis.Sh SYNOPSIS
38*8269e767SBrooks Davis.In unistd.h
39*8269e767SBrooks Davis.Ft int
40*8269e767SBrooks Davis.Fn dup "int oldd"
41*8269e767SBrooks Davis.Ft int
42*8269e767SBrooks Davis.Fn dup2 "int oldd" "int newd"
43*8269e767SBrooks Davis.Sh DESCRIPTION
44*8269e767SBrooks DavisThe
45*8269e767SBrooks Davis.Fn dup
46*8269e767SBrooks Davissystem call
47*8269e767SBrooks Davisduplicates an existing object descriptor and returns its value to
48*8269e767SBrooks Davisthe calling process
49*8269e767SBrooks Davis.Fa ( newd
50*8269e767SBrooks Davis=
51*8269e767SBrooks Davis.Fn dup oldd ) .
52*8269e767SBrooks DavisThe argument
53*8269e767SBrooks Davis.Fa oldd
54*8269e767SBrooks Davisis a small non-negative integer index in
55*8269e767SBrooks Davisthe per-process descriptor table.
56*8269e767SBrooks DavisThe new descriptor returned by the call
57*8269e767SBrooks Davisis the lowest numbered descriptor
58*8269e767SBrooks Daviscurrently not in use by the process.
59*8269e767SBrooks Davis.Pp
60*8269e767SBrooks DavisThe object referenced by the descriptor does not distinguish
61*8269e767SBrooks Davisbetween
62*8269e767SBrooks Davis.Fa oldd
63*8269e767SBrooks Davisand
64*8269e767SBrooks Davis.Fa newd
65*8269e767SBrooks Davisin any way.
66*8269e767SBrooks DavisThus if
67*8269e767SBrooks Davis.Fa newd
68*8269e767SBrooks Davisand
69*8269e767SBrooks Davis.Fa oldd
70*8269e767SBrooks Davisare duplicate references to an open
71*8269e767SBrooks Davisfile,
72*8269e767SBrooks Davis.Xr read 2 ,
73*8269e767SBrooks Davis.Xr write 2
74*8269e767SBrooks Davisand
75*8269e767SBrooks Davis.Xr lseek 2
76*8269e767SBrooks Daviscalls all move a single pointer into the file,
77*8269e767SBrooks Davisand append mode, non-blocking I/O and asynchronous I/O options
78*8269e767SBrooks Davisare shared between the references.
79*8269e767SBrooks DavisIf a separate pointer into the file is desired, a different
80*8269e767SBrooks Davisobject reference to the file must be obtained by issuing an
81*8269e767SBrooks Davisadditional
82*8269e767SBrooks Davis.Xr open 2
83*8269e767SBrooks Davissystem call.
84*8269e767SBrooks DavisThe close-on-exec flag on the new file descriptor is unset.
85*8269e767SBrooks Davis.Pp
86*8269e767SBrooks DavisIn
87*8269e767SBrooks Davis.Fn dup2 ,
88*8269e767SBrooks Davisthe value of the new descriptor
89*8269e767SBrooks Davis.Fa newd
90*8269e767SBrooks Davisis specified.
91*8269e767SBrooks DavisIf this descriptor is already in use and
92*8269e767SBrooks Davis.Fa oldd
93*8269e767SBrooks Davis\*(Ne
94*8269e767SBrooks Davis.Fa newd ,
95*8269e767SBrooks Davisthe descriptor is first deallocated as if the
96*8269e767SBrooks Davis.Xr close 2
97*8269e767SBrooks Davissystem call had been used.
98*8269e767SBrooks DavisIf
99*8269e767SBrooks Davis.Fa oldd
100*8269e767SBrooks Davisis not a valid descriptor, then
101*8269e767SBrooks Davis.Fa newd
102*8269e767SBrooks Davisis not closed.
103*8269e767SBrooks DavisIf
104*8269e767SBrooks Davis.Fa oldd
105*8269e767SBrooks Davis==
106*8269e767SBrooks Davis.Fa newd
107*8269e767SBrooks Davisand
108*8269e767SBrooks Davis.Fa oldd
109*8269e767SBrooks Davisis a valid descriptor, then
110*8269e767SBrooks Davis.Fn dup2
111*8269e767SBrooks Davisis successful, and does nothing.
112*8269e767SBrooks Davis.Sh RETURN VALUES
113*8269e767SBrooks DavisThese calls return the new file descriptor if successful;
114*8269e767SBrooks Davisotherwise the value -1 is returned and
115*8269e767SBrooks Davisthe external variable
116*8269e767SBrooks Davis.Va errno
117*8269e767SBrooks Davisis set to indicate the cause of the error.
118*8269e767SBrooks Davis.Sh ERRORS
119*8269e767SBrooks DavisThe
120*8269e767SBrooks Davis.Fn dup
121*8269e767SBrooks Davissystem call fails if:
122*8269e767SBrooks Davis.Bl -tag -width Er
123*8269e767SBrooks Davis.It Bq Er EBADF
124*8269e767SBrooks DavisThe
125*8269e767SBrooks Davis.Fa oldd
126*8269e767SBrooks Davisargument
127*8269e767SBrooks Davisis not a valid active descriptor
128*8269e767SBrooks Davis.It Bq Er EMFILE
129*8269e767SBrooks DavisToo many descriptors are active.
130*8269e767SBrooks Davis.El
131*8269e767SBrooks Davis.Pp
132*8269e767SBrooks DavisThe
133*8269e767SBrooks Davis.Fn dup2
134*8269e767SBrooks Davissystem call fails if:
135*8269e767SBrooks Davis.Bl -tag -width Er
136*8269e767SBrooks Davis.It Bq Er EBADF
137*8269e767SBrooks DavisThe
138*8269e767SBrooks Davis.Fa oldd
139*8269e767SBrooks Davisargument is not a valid active descriptor or the
140*8269e767SBrooks Davis.Fa newd
141*8269e767SBrooks Davisargument is negative or exceeds the maximum allowable descriptor number
142*8269e767SBrooks Davis.El
143*8269e767SBrooks Davis.Sh SEE ALSO
144*8269e767SBrooks Davis.Xr accept 2 ,
145*8269e767SBrooks Davis.Xr close 2 ,
146*8269e767SBrooks Davis.Xr fcntl 2 ,
147*8269e767SBrooks Davis.Xr getdtablesize 2 ,
148*8269e767SBrooks Davis.Xr open 2 ,
149*8269e767SBrooks Davis.Xr pipe 2 ,
150*8269e767SBrooks Davis.Xr socket 2 ,
151*8269e767SBrooks Davis.Xr socketpair 2 ,
152*8269e767SBrooks Davis.Xr dup3 3
153*8269e767SBrooks Davis.Sh STANDARDS
154*8269e767SBrooks DavisThe
155*8269e767SBrooks Davis.Fn dup
156*8269e767SBrooks Davisand
157*8269e767SBrooks Davis.Fn dup2
158*8269e767SBrooks Davissystem calls are expected to conform to
159*8269e767SBrooks Davis.St -p1003.1-90 .
160*8269e767SBrooks Davis.Sh HISTORY
161*8269e767SBrooks DavisThe
162*8269e767SBrooks Davis.Fn dup
163*8269e767SBrooks Davisfunction appeared in
164*8269e767SBrooks Davis.At v3 .
165*8269e767SBrooks DavisThe
166*8269e767SBrooks Davis.Fn dup2
167*8269e767SBrooks Davisfunction appeared in
168*8269e767SBrooks Davis.At v7 .
169