Blame SOURCES/autofs-5.1.7-fix-mount_fullpath.patch

9a499a
autofs-5.1.7 - fix mount_fullpath()
9a499a
9a499a
From: Ian Kent <raven@themaw.net>
9a499a
9a499a
mount_fullpath() incorrecly fills fullpath with the contents of root
9a499a
when name[0] == '/'. The cases root[last] == '/' and name[0] == '/'
9a499a
need to be handled seperately.
9a499a
9a499a
Signed-off-by: Ian Kent <raven@themaw.net>
9a499a
---
9a499a
 CHANGELOG           |    1 +
9a499a
 lib/mounts.c        |    4 +++-
9a499a
 modules/parse_amd.c |    6 ++++--
9a499a
 3 files changed, 8 insertions(+), 3 deletions(-)
9a499a
9a499a
--- autofs-5.1.4.orig/CHANGELOG
9a499a
+++ autofs-5.1.4/CHANGELOG
9a499a
@@ -36,6 +36,7 @@
9a499a
 - add tree_mapent_add_node().
9a499a
 - add tree_mapent_delete_offsets().
9a499a
 - add tree_mapent_traverse_subtree().
9a499a
+- fix mount_fullpath().
9a499a
 
9a499a
 xx/xx/2018 autofs-5.1.5
9a499a
 - fix flag file permission.
9a499a
--- autofs-5.1.4.orig/lib/mounts.c
9a499a
+++ autofs-5.1.4/lib/mounts.c
9a499a
@@ -371,8 +371,10 @@ int mount_fullpath(char *fullpath, size_
9a499a
 	/* Root offset of multi-mount or direct or offset mount.
9a499a
 	 * Direct or offset mount, name (or root) is absolute path.
9a499a
 	 */
9a499a
-	if (root[last] == '/' || *name == '/')
9a499a
+	if (root[last] == '/')
9a499a
 		len = snprintf(fullpath, max_len, "%s", root);
9a499a
+	else if (*name == '/')
9a499a
+		len = snprintf(fullpath, max_len, "%s", name);
9a499a
 	else
9a499a
 		len = snprintf(fullpath, max_len, "%s/%s", root, name);
9a499a
 
9a499a
--- autofs-5.1.4.orig/modules/parse_amd.c
9a499a
+++ autofs-5.1.4/modules/parse_amd.c
9a499a
@@ -1177,7 +1177,8 @@ static int do_generic_mount(struct autof
9a499a
 		 * the automount filesystem.
9a499a
 		 */
9a499a
 		if (!is_mounted(entry->fs, MNTS_REAL)) {
9a499a
-			ret = do_mount(ap, entry->fs, "/", 1,
9a499a
+			ret = do_mount(ap, entry->fs,
9a499a
+				       entry->fs, strlen(entry->fs),
9a499a
 				       target, entry->type, opts);
9a499a
 			if (ret)
9a499a
 				goto out;
9a499a
@@ -1227,7 +1228,8 @@ static int do_nfs_mount(struct autofs_po
9a499a
 					     mount_nfs->context);
9a499a
 	} else {
9a499a
 		if (!is_mounted(entry->fs, MNTS_REAL)) {
9a499a
-			ret = mount_nfs->mount_mount(ap, entry->fs, "/", 1,
9a499a
+			ret = mount_nfs->mount_mount(ap, entry->fs,
9a499a
+						entry->fs, strlen(entry->fs),
9a499a
 						target, entry->type, opts,
9a499a
 						mount_nfs->context);
9a499a
 			if (ret)