summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-11-04 01:41:14 -0500
committerIan Moffett <ian@osmora.org>2024-11-04 01:41:14 -0500
commitf7dc760dd7a2dd8ba5a133e396e717b7886059f4 (patch)
tree8ca9154c36296004cb5c9ab4e86ff1fd51d2912f /sys/kern
parent604d40fce6b7e69e9494de7381071315536335db (diff)
kernel: descrip: Add support for fd duplicationmainexpt
Sometimes we may need to duplicate a file descriptor and create a new fdno that refers to the same vnode. The fd_dup() function enables us to do this when needed. Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/kern_descrip.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/sys/kern/kern_descrip.c b/sys/kern/kern_descrip.c
index c3d9b5c..da10f89 100644
--- a/sys/kern/kern_descrip.c
+++ b/sys/kern/kern_descrip.c
@@ -226,3 +226,26 @@ fd_open(const char *pathname, int flags)
filedes->vp = nd.vp;
return filedes->fdno;
}
+
+/*
+ * Duplicate a file descriptor. New file descriptor
+ * points to the same vnode.
+ */
+int
+fd_dup(int fd)
+{
+ int error;
+ struct filedesc *new_desc, *tmp;
+
+ tmp = fd_get(fd);
+ if (tmp == NULL)
+ return -EBADF;
+
+ if ((error = fd_alloc(&new_desc)) != 0)
+ return error;
+
+ /* Ref that vnode before we point to it */
+ vfs_vref(tmp->vp);
+ new_desc->vp = tmp->vp;
+ return new_desc->fdno;
+}