summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSylvestre Gallon <syl@cvs.openbsd.org>2013-12-03 10:07:59 +0000
committerSylvestre Gallon <syl@cvs.openbsd.org>2013-12-03 10:07:59 +0000
commitd12ba81fc3076d387aa92befafc8fad2515b1cfb (patch)
tree5b11dad818e3fd999129138a4bb1849299d01bf1 /lib
parent7b64c054e40f0a9f0fd673131f79e592f98aa0e5 (diff)
Does not append a NUL character to buf in readlink(2).
Add some check for malloc(3) return values. From Derrik Pates (daemon AT now DOT ai), thanks. OK millert@
Diffstat (limited to 'lib')
-rw-r--r--lib/libfuse/fuse_ops.c17
1 files changed, 14 insertions, 3 deletions
diff --git a/lib/libfuse/fuse_ops.c b/lib/libfuse/fuse_ops.c
index 6d173933123..8ae580edab4 100644
--- a/lib/libfuse/fuse_ops.c
+++ b/lib/libfuse/fuse_ops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fuse_ops.c,v 1.15 2013/12/03 09:59:40 syl Exp $ */
+/* $OpenBSD: fuse_ops.c,v 1.16 2013/12/03 10:07:58 syl Exp $ */
/*
* Copyright (c) 2013 Sylvestre Gallon <ccna.syl@gmail.com>
*
@@ -277,6 +277,10 @@ ifuse_ops_readdir(struct fuse *f, struct fusebuf *fbuf)
startsave = 0;
fbuf->fb_dat = malloc(size);
+ if (fbuf->fb_dat == NULL) {
+ fbuf->fb_err = errno;
+ return (0);
+ }
vn = tree_get(&f->vnode_tree, fbuf->fb_ino);
if (!vn->fd->filled) {
@@ -417,6 +421,10 @@ ifuse_ops_read(struct fuse *f, struct fusebuf *fbuf)
offset = fbuf->fb_io_off;
fbuf->fb_dat = malloc(size);
+ if (fbuf->fb_dat == NULL) {
+ fbuf->fb_err = errno;
+ return (0);
+ }
vn = tree_get(&f->vnode_tree, fbuf->fb_ino);
@@ -564,10 +572,13 @@ ifuse_ops_readlink(struct fuse *f, struct fusebuf *fbuf)
fbuf->fb_err = ret;
if (!ret) {
len = strnlen(name, PATH_MAX);
- fbuf->fb_len = len + 1;
+ fbuf->fb_len = len;
fbuf->fb_dat = malloc(fbuf->fb_len);
+ if (fbuf->fb_dat == NULL) {
+ fbuf->fb_err = errno;
+ return (0);
+ }
memcpy(fbuf->fb_dat, name, len);
- fbuf->fb_dat[len] = '\0';
} else
fbuf->fb_len = 0;