[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Minios-devel] [UNIKRAFT/LWIP PATCH 7/8] sockets.c: Refuse to deal with non-sockets



Otherwise, socket_net_file_get() will try to look up lwip's file
descriptors for file objects not created by lwip, reading garbage from
where it expects sock_fd in sock_net_file.

Signed-off-by: Florian Schmidt <florian.schmidt@xxxxxxxxx>
---
 sockets.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/sockets.c b/sockets.c
index 0cf22de..7f4b6f3 100644
--- a/sockets.c
+++ b/sockets.c
@@ -65,6 +65,12 @@ static inline struct sock_net_file *sock_net_file_get(int fd)
                file = ERR2PTR(-EINVAL);
                goto EXIT;
        }
+       if (fos->f_dentry->d_vnode->v_type != VSOCK) {
+               LWIP_DEBUGF(SOCKETS_DEBUG,
+                           ("file descriptor is not a socket\n"));
+               file = ERR2PTR(-EBADF);
+               goto EXIT;
+       }
        file = __containerof(fos, struct sock_net_file, vfscore_file);
 EXIT:
        return file;
@@ -122,6 +128,7 @@ static int sock_fd_alloc(struct vnops *v_op, int sock_fd)
        uk_mutex_init(&s_vnode->v_lock);
        s_vnode->v_refcnt = 1;
        s_vnode->v_data = file;
+       s_vnode->v_type = VSOCK;
 
        file->sock_fd = sock_fd;
        LWIP_DEBUGF(SOCKETS_DEBUG, ("Allocated socket %d (%x)\n",
-- 
2.21.0


_______________________________________________
Minios-devel mailing list
Minios-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/minios-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.