summaryrefslogtreecommitdiff
path: root/lib/libutil
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2023-08-17 13:48:42 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2023-08-17 13:48:42 +0000
commita4aaee2120ce0a121f86e39e214c2fabe82f2762 (patch)
treebbd9151ceaba5a3616e797547cc972932253ea60 /lib/libutil
parente738085b94631f90e21a49852538ac95974baf44 (diff)
Diffstat (limited to 'lib/libutil')
-rw-r--r--lib/libutil/pty.c1
-rw-r--r--lib/libutil/tests/Makefile1
-rw-r--r--lib/libutil/tests/forkpty_test.c58
3 files changed, 60 insertions, 0 deletions
diff --git a/lib/libutil/pty.c b/lib/libutil/pty.c
index f52407608e9a..e5b42a666c7f 100644
--- a/lib/libutil/pty.c
+++ b/lib/libutil/pty.c
@@ -95,6 +95,7 @@ forkpty(int *amaster, char *name, struct termios *termp, struct winsize *winp)
return (-1);
switch (pid = fork()) {
case -1:
+ (void)close(master);
(void)close(slave);
return (-1);
case 0:
diff --git a/lib/libutil/tests/Makefile b/lib/libutil/tests/Makefile
index 0c67747aeb3f..d29045d78a10 100644
--- a/lib/libutil/tests/Makefile
+++ b/lib/libutil/tests/Makefile
@@ -7,6 +7,7 @@ TAP_TESTS_C+= trimdomain_test
TAP_TESTS_C+= trimdomain-nodomain_test
ATF_TESTS_C+= cpuset_test
ATF_TESTS_C+= expand_number_test
+ATF_TESTS_C+= forkpty_test
WARNS?= 2
LIBADD+= util
diff --git a/lib/libutil/tests/forkpty_test.c b/lib/libutil/tests/forkpty_test.c
new file mode 100644
index 000000000000..3e54cf310150
--- /dev/null
+++ b/lib/libutil/tests/forkpty_test.c
@@ -0,0 +1,58 @@
+/*-
+ * Copyright (c) 2023 Klara, Inc.
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+
+#include <sys/resource.h>
+#include <sys/wait.h>
+
+#include <errno.h>
+#include <libutil.h>
+#include <unistd.h>
+
+#include <atf-c.h>
+
+ATF_TC(forkfail);
+ATF_TC_HEAD(forkfail, tc)
+{
+ atf_tc_set_md_var(tc, "descr", "Check for fd leak when fork() fails");
+ atf_tc_set_md_var(tc, "require.user", "unprivileged");
+}
+
+ATF_TC_BODY(forkfail, tc)
+{
+ struct rlimit orl, nrl;
+ pid_t pid;
+ int prevfd, fd, pty;
+
+ /* set process limit to 1 so fork() will fail */
+ ATF_REQUIRE_EQ(0, getrlimit(RLIMIT_NPROC, &orl));
+ nrl = orl;
+ nrl.rlim_cur = 1;
+ ATF_REQUIRE_EQ(0, setrlimit(RLIMIT_NPROC, &nrl));
+ /* check first free fd */
+ ATF_REQUIRE((fd = dup(0)) > 0);
+ ATF_REQUIRE_EQ(0, close(fd));
+ /* attempt forkpty() */
+ pid = forkpty(&pty, NULL, NULL, NULL);
+ if (pid == 0) {
+ /* child - fork() unexpectedly succeeded */
+ _exit(0);
+ }
+ ATF_CHECK_ERRNO(EAGAIN, pid < 0);
+ if (pid > 0) {
+ /* parent - fork() unexpectedly succeeded */
+ (void)waitpid(pid, NULL, 0);
+ }
+ /* check that first free fd hasn't changed */
+ prevfd = fd;
+ ATF_REQUIRE((fd = dup(0)) > 0);
+ ATF_CHECK_EQ(prevfd, fd);
+}
+
+ATF_TP_ADD_TCS(tp)
+{
+ ATF_TP_ADD_TC(tp, forkfail);
+ return (atf_no_error());
+}