1 | //! Functions which duplicate file descriptors. |
2 | |
3 | use crate::fd::OwnedFd; |
4 | use crate::{backend, io}; |
5 | use backend::fd::AsFd; |
6 | |
7 | #[cfg (not(target_os = "wasi" ))] |
8 | pub use backend::io::types::DupFlags; |
9 | |
10 | /// `dup(fd)`—Creates a new `OwnedFd` instance that shares the same |
11 | /// underlying [file description] as `fd`. |
12 | /// |
13 | /// This function does not set the `O_CLOEXEC` flag. To do a `dup` that does |
14 | /// set `O_CLOEXEC`, use [`fcntl_dupfd_cloexec`]. |
15 | /// |
16 | /// POSIX guarantees that `dup` will use the lowest unused file descriptor, |
17 | /// however it is not safe in general to rely on this, as file descriptors may |
18 | /// be unexpectedly allocated on other threads or in libraries. |
19 | /// |
20 | /// # References |
21 | /// - [POSIX] |
22 | /// - [Linux] |
23 | /// - [Apple] |
24 | /// - [FreeBSD] |
25 | /// - [NetBSD] |
26 | /// - [OpenBSD] |
27 | /// - [DragonFly BSD] |
28 | /// - [illumos] |
29 | /// - [glibc] |
30 | /// |
31 | /// [file description]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_258 |
32 | /// [`fcntl_dupfd_cloexec`]: crate::io::fcntl_dupfd_cloexec |
33 | /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/dup.html |
34 | /// [Linux]: https://man7.org/linux/man-pages/man2/dup.2.html |
35 | /// [Apple]: https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/dup.2.html |
36 | /// [FreeBSD]: https://man.freebsd.org/cgi/man.cgi?query=dup&sektion=2 |
37 | /// [NetBSD]: https://man.netbsd.org/dup.2 |
38 | /// [OpenBSD]: https://man.openbsd.org/dup.2 |
39 | /// [DragonFly BSD]: https://man.dragonflybsd.org/?command=dup§ion=2 |
40 | /// [illumos]: https://illumos.org/man/2/dup |
41 | /// [glibc]: https://www.gnu.org/software/libc/manual/html_node/Duplicating-Descriptors.html |
42 | #[cfg (not(target_os = "wasi" ))] |
43 | #[inline ] |
44 | pub fn dup<Fd: AsFd>(fd: Fd) -> io::Result<OwnedFd> { |
45 | backend::io::syscalls::dup(fd.as_fd()) |
46 | } |
47 | |
48 | /// `dup2(fd, new)`—Changes the [file description] of a file descriptor. |
49 | /// |
50 | /// `dup2` conceptually closes `new` and then sets the file description for |
51 | /// `new` to be the same as the one for `fd`. This is a very unusual operation, |
52 | /// and should only be used on file descriptors where you know how `new` will |
53 | /// be subsequently used. |
54 | /// |
55 | /// This function does not set the `O_CLOEXEC` flag. To do a `dup2` that does |
56 | /// set `O_CLOEXEC`, use [`dup3`] with [`DupFlags::CLOEXEC`] on platforms which |
57 | /// support it, or [`fcntl_dupfd_cloexec`] |
58 | /// |
59 | /// For `dup2` to stdin, stdout, and stderr, see [`io::dup2_stdin`], |
60 | /// [`io::dup2_stdout`], and [`io::dup2_stderr`]. |
61 | /// |
62 | /// # References |
63 | /// - [POSIX] |
64 | /// - [Linux] |
65 | /// - [Apple] |
66 | /// - [FreeBSD] |
67 | /// - [NetBSD] |
68 | /// - [OpenBSD] |
69 | /// - [DragonFly BSD] |
70 | /// - [illumos] |
71 | /// - [glibc] |
72 | /// |
73 | /// [file description]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_258 |
74 | /// [`fcntl_dupfd_cloexec`]: crate::io::fcntl_dupfd_cloexec |
75 | /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799/functions/dup2.html |
76 | /// [Linux]: https://man7.org/linux/man-pages/man2/dup2.2.html |
77 | /// [Apple]: https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/dup2.2.html |
78 | /// [FreeBSD]: https://man.freebsd.org/cgi/man.cgi?query=dup2&sektion=2 |
79 | /// [NetBSD]: https://man.netbsd.org/dup2.2 |
80 | /// [OpenBSD]: https://man.openbsd.org/dup2.2 |
81 | /// [DragonFly BSD]: https://man.dragonflybsd.org/?command=dup2§ion=2 |
82 | /// [illumos]: https://illumos.org/man/2/dup |
83 | /// [glibc]: https://www.gnu.org/software/libc/manual/html_node/Duplicating-Descriptors.html |
84 | #[cfg (not(target_os = "wasi" ))] |
85 | #[inline ] |
86 | pub fn dup2<Fd: AsFd>(fd: Fd, new: &mut OwnedFd) -> io::Result<()> { |
87 | backend::io::syscalls::dup2(fd.as_fd(), new) |
88 | } |
89 | |
90 | /// `dup3(fd, new, flags)`—Changes the [file description] of a file |
91 | /// descriptor, with flags. |
92 | /// |
93 | /// `dup3` is the same as [`dup2`] but adds an additional flags operand, and it |
94 | /// fails in the case that `fd` and `new` have the same file descriptor value. |
95 | /// This additional difference is the reason this function isn't named |
96 | /// `dup2_with`. |
97 | /// |
98 | /// # References |
99 | /// - [Linux] |
100 | /// - [FreeBSD] |
101 | /// - [NetBSD] |
102 | /// - [OpenBSD] |
103 | /// - [DragonFly BSD] |
104 | /// |
105 | /// [file description]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_258 |
106 | /// [Linux]: https://man7.org/linux/man-pages/man2/dup3.2.html |
107 | /// [FreeBSD]: https://man.freebsd.org/cgi/man.cgi?query=dup3&sektion=3 |
108 | /// [NetBSD]: https://man.netbsd.org/dup3.2 |
109 | /// [OpenBSD]: https://man.openbsd.org/dup3.2 |
110 | /// [DragonFly BSD]: https://man.dragonflybsd.org/?command=dup3§ion=3 |
111 | #[cfg (not(any(target_os = "aix" , target_os = "wasi" )))] |
112 | #[inline ] |
113 | pub fn dup3<Fd: AsFd>(fd: Fd, new: &mut OwnedFd, flags: DupFlags) -> io::Result<()> { |
114 | backend::io::syscalls::dup3(fd.as_fd(), new, flags) |
115 | } |
116 | |