]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/mach/hurd/dup2.c
Update.
[thirdparty/glibc.git] / sysdeps / mach / hurd / dup2.c
1 /* Copyright (C) 1991, 92, 93, 94, 95, 97, 2002 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
13
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
18
19 #include <errno.h>
20 #include <fcntl.h>
21 #include <unistd.h>
22 #include <hurd.h>
23 #include <hurd/fd.h>
24
25 /* Duplicate FD to FD2, closing the old FD2 and making FD2 be
26 open on the same file as FD is. Return FD2 or -1. */
27 int
28 __dup2 (fd, fd2)
29 int fd;
30 int fd2;
31 {
32 struct hurd_fd *d;
33
34 /* Extract the ports and flags from FD. */
35 d = _hurd_fd_get (fd);
36 if (d == NULL)
37 {
38 errno = EBADF;
39 return -1;
40 }
41
42 HURD_CRITICAL_BEGIN;
43
44 __spin_lock (&d->port.lock);
45 if (d->port.port == MACH_PORT_NULL)
46 {
47 __spin_unlock (&d->port.lock);
48 errno = EBADF;
49 fd2 = -1;
50 }
51 else if (fd2 == fd)
52 /* FD is valid and FD2 is already the same; just return it. */
53 __spin_unlock (&d->port.lock);
54 else
55 {
56 struct hurd_userlink ulink, ctty_ulink;
57 int flags = d->flags;
58 io_t ctty = _hurd_port_get (&d->ctty, &ctty_ulink);
59 io_t port = _hurd_port_locked_get (&d->port, &ulink); /* Unlocks D. */
60
61 if (fd2 < 0)
62 {
63 errno = EBADF;
64 fd2 = -1;
65 }
66 else
67 {
68 /* Get a hold of the destination descriptor. */
69 struct hurd_fd *d2;
70
71 if (fd2 >= _hurd_dtablesize)
72 {
73 /* The table is not large enough to hold the destination
74 descriptor. Enlarge it as necessary to allocate this
75 descriptor. */
76 __mutex_unlock (&_hurd_dtable_lock);
77 /* We still hold FD1's lock, but this is safe because
78 _hurd_alloc_fd will only examine the cells starting
79 at FD2. */
80 d2 = _hurd_alloc_fd (NULL, fd2);
81 if (d2)
82 __spin_unlock (&d2->port.lock);
83 __mutex_lock (&_hurd_dtable_lock);
84 }
85 else
86 {
87 d2 = _hurd_dtable[fd2];
88 if (d2 == NULL)
89 {
90 /* Must allocate a new one. We don't initialize the port
91 cells with this call so that if it fails (out of
92 memory), we will not have already added user
93 references for the ports, which we would then have to
94 deallocate. */
95 d2 = _hurd_dtable[fd2] = _hurd_new_fd (MACH_PORT_NULL,
96 MACH_PORT_NULL);
97 }
98 }
99
100 if (d2 == NULL)
101 {
102 fd2 = -1;
103 if (errno == EINVAL)
104 errno = EBADF; /* POSIX.1-1990 6.2.1.2 ll 54-55. */
105 }
106 else
107 {
108 /* Give the ports each a user ref for the new descriptor. */
109 __mach_port_mod_refs (__mach_task_self (), port,
110 MACH_PORT_RIGHT_SEND, 1);
111 if (ctty != MACH_PORT_NULL)
112 __mach_port_mod_refs (__mach_task_self (), ctty,
113 MACH_PORT_RIGHT_SEND, 1);
114
115 /* Install the ports and flags in the new descriptor slot. */
116 __spin_lock (&d2->port.lock);
117 d2->flags = flags & ~FD_CLOEXEC; /* Dup clears FD_CLOEXEC. */
118 _hurd_port_set (&d2->ctty, ctty);
119 _hurd_port_locked_set (&d2->port, port); /* Unlocks D2. */
120 }
121 }
122 __mutex_unlock (&_hurd_dtable_lock);
123
124 _hurd_port_free (&d->port, &ulink, port);
125 if (ctty != MACH_PORT_NULL)
126 _hurd_port_free (&d->ctty, &ctty_ulink, port);
127 }
128
129 HURD_CRITICAL_END;
130
131 return fd2;
132 }
133 libc_hidden_def (__dup2)
134 weak_alias (__dup2, dup2)