|
|
603f99 |
autofs-5.1.3 - fix possible memory leak during amd parse
|
|
|
603f99 |
|
|
|
603f99 |
From: Ian Kent <raven@themaw.net>
|
|
|
603f99 |
|
|
|
603f99 |
If an amd map entry option is given more than once subsequent assignment
|
|
|
603f99 |
could result in a memory leak.
|
|
|
603f99 |
|
|
|
603f99 |
Signed-off-by: Ian Kent <raven@themaw.net>
|
|
|
603f99 |
---
|
|
|
603f99 |
CHANGELOG | 1
|
|
|
603f99 |
modules/amd_parse.y | 92 +++++++++++++++++++++++++++++-----------------------
|
|
|
603f99 |
2 files changed, 54 insertions(+), 39 deletions(-)
|
|
|
603f99 |
|
|
|
603f99 |
--- autofs-5.0.7.orig/CHANGELOG
|
|
|
603f99 |
+++ autofs-5.0.7/CHANGELOG
|
|
|
603f99 |
@@ -276,6 +276,7 @@
|
|
|
603f99 |
- refactor amd_parse.c.
|
|
|
603f99 |
- fix amd parser double quote handling.
|
|
|
603f99 |
- fix expandamdent() quote handling.
|
|
|
603f99 |
+- fix possible memory leak during amd parse.
|
|
|
603f99 |
|
|
|
603f99 |
25/07/2012 autofs-5.0.7
|
|
|
603f99 |
=======================
|
|
|
603f99 |
--- autofs-5.0.7.orig/modules/amd_parse.y
|
|
|
603f99 |
+++ autofs-5.0.7/modules/amd_parse.y
|
|
|
603f99 |
@@ -41,6 +41,7 @@ extern int amd_lex(void);
|
|
|
603f99 |
extern void amd_set_scan_buffer(const char *);
|
|
|
603f99 |
|
|
|
603f99 |
static char *amd_strdup(char *);
|
|
|
603f99 |
+static void amd_set_value(char **, char *);
|
|
|
603f99 |
static void local_init_vars(void);
|
|
|
603f99 |
static void local_free_vars(void);
|
|
|
603f99 |
|
|
|
603f99 |
@@ -289,19 +290,22 @@ option_assignment: MAP_OPTION OPTION_ASS
|
|
|
603f99 |
}
|
|
|
603f99 |
|
|
|
603f99 |
if (!strcmp($1, "fs"))
|
|
|
603f99 |
- entry.fs = fs_opt_val;
|
|
|
603f99 |
+ amd_set_value(&entry.fs, fs_opt_val);
|
|
|
603f99 |
else if (!strcmp($1, "sublink")) {
|
|
|
603f99 |
- entry.sublink = fs_opt_val;
|
|
|
603f99 |
+ amd_set_value(&entry.sublink, fs_opt_val);
|
|
|
603f99 |
} else if (!strcmp($1, "pref")) {
|
|
|
603f99 |
if (strcmp(fs_opt_val, "null"))
|
|
|
603f99 |
- entry.pref = fs_opt_val;
|
|
|
603f99 |
+ amd_set_value(&entry.pref, fs_opt_val);
|
|
|
603f99 |
else {
|
|
|
603f99 |
- entry.pref = amd_strdup("");
|
|
|
603f99 |
- if (!entry.pref) {
|
|
|
603f99 |
+ char *empty;
|
|
|
603f99 |
+
|
|
|
603f99 |
+ empty = amd_strdup("");
|
|
|
603f99 |
+ if (!empty) {
|
|
|
603f99 |
amd_notify($3);
|
|
|
603f99 |
free(fs_opt_val);
|
|
|
603f99 |
YYABORT;
|
|
|
603f99 |
}
|
|
|
603f99 |
+ amd_set_value(&entry.pref, empty);
|
|
|
603f99 |
free(fs_opt_val);
|
|
|
603f99 |
}
|
|
|
603f99 |
} else {
|
|
|
603f99 |
@@ -314,11 +318,14 @@ option_assignment: MAP_OPTION OPTION_ASS
|
|
|
603f99 |
| MAP_OPTION OPTION_ASSIGN
|
|
|
603f99 |
{
|
|
|
603f99 |
if (!strcmp($1, "fs")) {
|
|
|
603f99 |
- entry.fs = amd_strdup("");
|
|
|
603f99 |
- if (!entry.fs) {
|
|
|
603f99 |
+ char *empty;
|
|
|
603f99 |
+
|
|
|
603f99 |
+ empty = amd_strdup("");
|
|
|
603f99 |
+ if (!empty) {
|
|
|
603f99 |
amd_notify($1);
|
|
|
603f99 |
YYABORT;
|
|
|
603f99 |
}
|
|
|
603f99 |
+ amd_set_value(&entry.fs, empty);
|
|
|
603f99 |
} else {
|
|
|
603f99 |
amd_notify($1);
|
|
|
603f99 |
YYABORT;
|
|
|
603f99 |
@@ -335,11 +342,11 @@ option_assignment: MAP_OPTION OPTION_ASS
|
|
|
603f99 |
}
|
|
|
603f99 |
|
|
|
603f99 |
if (!strcmp($1, "rhost"))
|
|
|
603f99 |
- entry.rhost = fs_opt_val;
|
|
|
603f99 |
+ amd_set_value(&entry.rhost, fs_opt_val);
|
|
|
603f99 |
else if (!strcmp($1, "rfs"))
|
|
|
603f99 |
- entry.rfs = fs_opt_val;
|
|
|
603f99 |
+ amd_set_value(&entry.rfs, fs_opt_val);
|
|
|
603f99 |
else if (!strcmp($1, "dev"))
|
|
|
603f99 |
- entry.dev = fs_opt_val;
|
|
|
603f99 |
+ amd_set_value(&entry.dev, fs_opt_val);
|
|
|
603f99 |
else if (!strcmp($1, "mount") ||
|
|
|
603f99 |
!strcmp($1, "unmount") ||
|
|
|
603f99 |
!strcmp($1, "umount")) {
|
|
|
603f99 |
@@ -369,11 +376,11 @@ option_assignment: MAP_OPTION OPTION_ASS
|
|
|
603f99 |
}
|
|
|
603f99 |
|
|
|
603f99 |
if (!strcmp($1, "rhost"))
|
|
|
603f99 |
- entry.rhost = empty;
|
|
|
603f99 |
+ amd_set_value(&entry.rhost, empty);
|
|
|
603f99 |
else if (!strcmp($1, "rfs"))
|
|
|
603f99 |
- entry.rfs = empty;
|
|
|
603f99 |
+ amd_set_value(&entry.rfs, empty);
|
|
|
603f99 |
else if (!strcmp($1, "dev"))
|
|
|
603f99 |
- entry.dev = empty;
|
|
|
603f99 |
+ amd_set_value(&entry.dev, empty);
|
|
|
603f99 |
else {
|
|
|
603f99 |
amd_notify($1);
|
|
|
603f99 |
free(empty);
|
|
|
603f99 |
@@ -468,36 +475,27 @@ static int match_map_option_fs_type(char
|
|
|
603f99 |
return 0;
|
|
|
603f99 |
}
|
|
|
603f99 |
|
|
|
603f99 |
- if (!strcmp(fs_type, "auto")) {
|
|
|
603f99 |
+ if (!strcmp(fs_type, "auto"))
|
|
|
603f99 |
entry.flags |= AMD_MOUNT_TYPE_AUTO;
|
|
|
603f99 |
- entry.type = fs_type;
|
|
|
603f99 |
- } else if (!strcmp(fs_type, "nfs") ||
|
|
|
603f99 |
- !strcmp(fs_type, "nfs4")) {
|
|
|
603f99 |
+ else if (!strcmp(fs_type, "nfs") ||
|
|
|
603f99 |
+ !strcmp(fs_type, "nfs4"))
|
|
|
603f99 |
entry.flags |= AMD_MOUNT_TYPE_NFS;
|
|
|
603f99 |
- entry.type = fs_type;
|
|
|
603f99 |
- } else if (!strcmp(fs_type, "nfsl")) {
|
|
|
603f99 |
+ else if (!strcmp(fs_type, "nfsl"))
|
|
|
603f99 |
entry.flags |= AMD_MOUNT_TYPE_NFSL;
|
|
|
603f99 |
- entry.type = fs_type;
|
|
|
603f99 |
- } else if (!strcmp(fs_type, "link")) {
|
|
|
603f99 |
+ else if (!strcmp(fs_type, "link"))
|
|
|
603f99 |
entry.flags |= AMD_MOUNT_TYPE_LINK;
|
|
|
603f99 |
- entry.type = fs_type;
|
|
|
603f99 |
- } else if (!strcmp(fs_type, "linkx")) {
|
|
|
603f99 |
+ else if (!strcmp(fs_type, "linkx"))
|
|
|
603f99 |
entry.flags |= AMD_MOUNT_TYPE_LINKX;
|
|
|
603f99 |
- entry.type = fs_type;
|
|
|
603f99 |
- } else if (!strcmp(fs_type, "host")) {
|
|
|
603f99 |
+ else if (!strcmp(fs_type, "host"))
|
|
|
603f99 |
entry.flags |= AMD_MOUNT_TYPE_HOST;
|
|
|
603f99 |
- entry.type = fs_type;
|
|
|
603f99 |
- } else if (!strcmp(fs_type, "lofs")) {
|
|
|
603f99 |
+ else if (!strcmp(fs_type, "lofs"))
|
|
|
603f99 |
entry.flags |= AMD_MOUNT_TYPE_LOFS;
|
|
|
603f99 |
- entry.type = fs_type;
|
|
|
603f99 |
- } else if (!strcmp(fs_type, "xfs")) {
|
|
|
603f99 |
+ else if (!strcmp(fs_type, "xfs"))
|
|
|
603f99 |
entry.flags |= AMD_MOUNT_TYPE_XFS;
|
|
|
603f99 |
- entry.type = fs_type;
|
|
|
603f99 |
- } else if (!strcmp(fs_type, "ext2") ||
|
|
|
603f99 |
+ else if (!strcmp(fs_type, "ext2") ||
|
|
|
603f99 |
!strcmp(fs_type, "ext3") ||
|
|
|
603f99 |
- !strcmp(fs_type, "ext4")) {
|
|
|
603f99 |
+ !strcmp(fs_type, "ext4"))
|
|
|
603f99 |
entry.flags |= AMD_MOUNT_TYPE_EXT;
|
|
|
603f99 |
- entry.type = fs_type;
|
|
|
603f99 |
} else if (!strcmp(fs_type, "ufs")) {
|
|
|
603f99 |
entry.flags |= AMD_MOUNT_TYPE_UFS;
|
|
|
603f99 |
entry.type = conf_amd_get_linux_ufs_mount_type();
|
|
|
603f99 |
@@ -508,6 +506,7 @@ static int match_map_option_fs_type(char
|
|
|
603f99 |
return 0;
|
|
|
603f99 |
}
|
|
|
603f99 |
free(fs_type);
|
|
|
603f99 |
+ fs_type = NULL;
|
|
|
603f99 |
} else if (!strcmp(fs_type, "cdfs")) {
|
|
|
603f99 |
entry.flags |= AMD_MOUNT_TYPE_CDFS;
|
|
|
603f99 |
entry.type = amd_strdup("iso9660");
|
|
|
603f99 |
@@ -518,6 +517,7 @@ static int match_map_option_fs_type(char
|
|
|
603f99 |
return 0;
|
|
|
603f99 |
}
|
|
|
603f99 |
free(fs_type);
|
|
|
603f99 |
+ fs_type = NULL;
|
|
|
603f99 |
} else if (!strcmp(fs_type, "jfs") ||
|
|
|
603f99 |
!strcmp(fs_type, "nfsx") ||
|
|
|
603f99 |
!strcmp(fs_type, "program") ||
|
|
|
603f99 |
@@ -534,12 +534,16 @@ static int match_map_option_fs_type(char
|
|
|
603f99 |
fs_type);
|
|
|
603f99 |
amd_msg(msg_buf);
|
|
|
603f99 |
free(fs_type);
|
|
|
603f99 |
+ fs_type = NULL;
|
|
|
603f99 |
} else {
|
|
|
603f99 |
amd_notify(fs_type);
|
|
|
603f99 |
free(fs_type);
|
|
|
603f99 |
return 0;
|
|
|
603f99 |
}
|
|
|
603f99 |
|
|
|
603f99 |
+ if (fs_type)
|
|
|
603f99 |
+ amd_set_value(&entry.type, fs_type);
|
|
|
603f99 |
+
|
|
|
603f99 |
return 1;
|
|
|
603f99 |
}
|
|
|
603f99 |
|
|
|
603f99 |
@@ -558,15 +562,18 @@ static int match_map_option_map_type(cha
|
|
|
603f99 |
!strcmp(map_type, "nisplus") ||
|
|
|
603f99 |
!strcmp(map_type, "ldap") ||
|
|
|
603f99 |
!strcmp(map_type, "hesiod")) {
|
|
|
603f99 |
- entry.map_type = map_type;
|
|
|
603f99 |
+ amd_set_value(&entry.map_type, map_type);
|
|
|
603f99 |
} else if (!strcmp(map_type, "exec")) {
|
|
|
603f99 |
/* autofs uses "program" for "exec" map type */
|
|
|
603f99 |
- entry.map_type = amd_strdup("program");
|
|
|
603f99 |
- if (!entry.map_type) {
|
|
|
603f99 |
+ char * tmp;
|
|
|
603f99 |
+
|
|
|
603f99 |
+ tmp = amd_strdup("program");
|
|
|
603f99 |
+ if (!tmp) {
|
|
|
603f99 |
amd_notify(type);
|
|
|
603f99 |
free(map_type);
|
|
|
603f99 |
return 0;
|
|
|
603f99 |
}
|
|
|
603f99 |
+ amd_set_value(&entry.map_type, tmp);
|
|
|
603f99 |
free(map_type);
|
|
|
603f99 |
} else if (!strcmp(map_type, "passwd")) {
|
|
|
603f99 |
sprintf(msg_buf, "map type %s is "
|
|
|
603f99 |
@@ -621,17 +628,17 @@ static int match_mnt_option_options(char
|
|
|
603f99 |
tmp = amd_strdup(options);
|
|
|
603f99 |
if (!tmp)
|
|
|
603f99 |
return 0;
|
|
|
603f99 |
- entry.opts = tmp;
|
|
|
603f99 |
+ amd_set_value(&entry.opts, tmp);
|
|
|
603f99 |
} else if (!strcmp(mnt_option, "addopts")) {
|
|
|
603f99 |
tmp = amd_strdup(options);
|
|
|
603f99 |
if (!tmp)
|
|
|
603f99 |
return 0;
|
|
|
603f99 |
- entry.addopts = tmp;
|
|
|
603f99 |
+ amd_set_value(&entry.addopts, tmp);
|
|
|
603f99 |
} else if (!strcmp(mnt_option, "remopts")) {
|
|
|
603f99 |
tmp = amd_strdup(options);
|
|
|
603f99 |
if (!tmp)
|
|
|
603f99 |
return 0;
|
|
|
603f99 |
- entry.remopts = tmp;
|
|
|
603f99 |
+ amd_set_value(&entry.remopts, tmp);
|
|
|
603f99 |
} else
|
|
|
603f99 |
return 0;
|
|
|
603f99 |
|
|
|
603f99 |
@@ -715,6 +722,13 @@ done:
|
|
|
603f99 |
return tmp;
|
|
|
603f99 |
}
|
|
|
603f99 |
|
|
|
603f99 |
+static void amd_set_value(char **field, char *value)
|
|
|
603f99 |
+{
|
|
|
603f99 |
+ if (*field)
|
|
|
603f99 |
+ free(*field);
|
|
|
603f99 |
+ *field = value;
|
|
|
603f99 |
+}
|
|
|
603f99 |
+
|
|
|
603f99 |
static int amd_error(const char *s)
|
|
|
603f99 |
{
|
|
|
603f99 |
if (strcmp(s, "syntax"))
|