mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] (6/9) symlink patchkit (against -bk current)
@ 2004-06-22 19:23 viro
  0 siblings, 0 replies; only message in thread
From: viro @ 2004-06-22 19:23 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel

        xfs switched to new scheme; leaks plugged.

diff -urN RC7-bk5-smb/fs/xfs/linux-2.6/xfs_iops.c RC7-bk5-xfs/fs/xfs/linux-2.6/xfs_iops.c
--- RC7-bk5-smb/fs/xfs/linux-2.6/xfs_iops.c	Wed Jun 16 10:26:24 2004
+++ RC7-bk5-xfs/fs/xfs/linux-2.6/xfs_iops.c	Tue Jun 22 15:13:11 2004
@@ -67,6 +67,7 @@
 #include "xfs_utils.h"
 
 #include <linux/xattr.h>
+#include <linux/namei.h>
 
 
 /*
@@ -419,13 +420,16 @@
 	ASSERT(nd);
 
 	link = (char *)kmalloc(MAXNAMELEN+1, GFP_KERNEL);
-	if (!link)
-		return -ENOMEM;
+	if (!link) {
+		nd_set_link(nd, ERR_PTR(-ENOMEM));
+		return 0;
+	}
 
 	uio = (uio_t *)kmalloc(sizeof(uio_t), GFP_KERNEL);
 	if (!uio) {
 		kfree(link);
-		return -ENOMEM;
+		nd_set_link(nd, ERR_PTR(-ENOMEM));
+		return 0;
 	}
 
 	vp = LINVFS_GET_VP(dentry->d_inode);
@@ -441,18 +445,22 @@
 
 	VOP_READLINK(vp, uio, 0, NULL, error);
 	if (error) {
-		kfree(uio);
 		kfree(link);
-		return -error;
+		link = ERR_PTR(-error);
+	} else {
+		link[MAXNAMELEN - uio->uio_resid] = '\0';
 	}
-
-	link[MAXNAMELEN - uio->uio_resid] = '\0';
 	kfree(uio);
 
-	/* vfs_follow_link returns (-) errors */
-	error = vfs_follow_link(nd, link);
-	kfree(link);
-	return error;
+	nd_set_link(nd, link);
+	return 0;
+}
+
+static void linvfs_put_link(struct dentry *dentry, struct nameidata *nd)
+{
+	char *s = nd_get_link(nd);
+	if (!IS_ERR(s))
+		kfree(s);
 }
 
 #ifdef CONFIG_XFS_POSIX_ACL
@@ -692,6 +700,7 @@
 struct inode_operations linvfs_symlink_inode_operations = {
 	.readlink		= linvfs_readlink,
 	.follow_link		= linvfs_follow_link,
+	.put_link		= linvfs_put_link,
 	.permission		= linvfs_permission,
 	.getattr		= linvfs_getattr,
 	.setattr		= linvfs_setattr,

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-06-22 20:07 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-06-22 19:23 [PATCH] (6/9) symlink patchkit (against -bk current) viro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome