You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
2.8 KiB
104 lines
2.8 KiB
7 years ago
|
autofs-5.1.0 - fix some out of order evaluations in parse_amd.c
|
||
|
|
||
|
From: Ian Kent <ikent@redhat.com>
|
||
|
|
||
|
Fix some check contents before NULL check ordering in modules/parse_amd.c.
|
||
|
---
|
||
|
CHANGELOG | 1 +
|
||
|
modules/parse_amd.c | 33 ++++++++++++++-------------------
|
||
|
2 files changed, 15 insertions(+), 19 deletions(-)
|
||
|
|
||
|
--- autofs-5.0.7.orig/CHANGELOG
|
||
|
+++ autofs-5.0.7/CHANGELOG
|
||
|
@@ -142,6 +142,7 @@
|
||
|
- add return check in ldap check_map_indirect().
|
||
|
- check host macro is set before use.
|
||
|
- check options length before use in parse_amd.c.
|
||
|
+- fix some out of order evaluations in parse_amd.c.
|
||
|
|
||
|
25/07/2012 autofs-5.0.7
|
||
|
=======================
|
||
|
--- autofs-5.0.7.orig/modules/parse_amd.c
|
||
|
+++ autofs-5.0.7/modules/parse_amd.c
|
||
|
@@ -1226,13 +1226,12 @@ static unsigned int validate_auto_option
|
||
|
* left blank the mount must be expected to fail so don't
|
||
|
* report the error.
|
||
|
*/
|
||
|
- if (!*entry->fs)
|
||
|
- return 0;
|
||
|
- else if (!entry->fs) {
|
||
|
+ if (!entry->fs) {
|
||
|
error(logopt, MODPREFIX
|
||
|
"%s: file system not given", entry->type);
|
||
|
return 0;
|
||
|
- }
|
||
|
+ } else if (!*entry->fs)
|
||
|
+ return 0;
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
@@ -1255,13 +1254,12 @@ static unsigned int validate_nfs_options
|
||
|
* expected to fail.
|
||
|
*/
|
||
|
if (!entry->rfs || !*entry->rfs) {
|
||
|
- if (!*entry->rfs)
|
||
|
+ if (entry->rfs && !*entry->rfs)
|
||
|
return 0;
|
||
|
/* Map option fs has been intentionally left blank */
|
||
|
if (entry->fs && !*entry->fs)
|
||
|
return 0;
|
||
|
- if (entry->fs)
|
||
|
- entry->rfs = strdup(entry->fs);
|
||
|
+ entry->rfs = strdup(entry->fs);
|
||
|
if (!entry->rfs) {
|
||
|
error(logopt, MODPREFIX
|
||
|
"%s: remote file system not given", entry->type);
|
||
|
@@ -1285,24 +1283,22 @@ static unsigned int validate_generic_opt
|
||
|
* expected to fail so don't report the error.
|
||
|
*/
|
||
|
if (fstype != AMD_MOUNT_TYPE_LOFS) {
|
||
|
- if (!*entry->dev)
|
||
|
- return 0;
|
||
|
- else if (!entry->dev) {
|
||
|
+ if (!entry->dev) {
|
||
|
error(logopt, MODPREFIX
|
||
|
"%s: mount device not given", entry->type);
|
||
|
return 0;
|
||
|
- }
|
||
|
- } else {
|
||
|
- if (!*entry->rfs)
|
||
|
+ } else if (!*entry->dev)
|
||
|
return 0;
|
||
|
- else if (!entry->rfs) {
|
||
|
+ } else {
|
||
|
+ if (!entry->rfs) {
|
||
|
/*
|
||
|
* Can't use entry->type as the mount type to reprot
|
||
|
* the error since entry->type == "bind" not "lofs".
|
||
|
*/
|
||
|
error(logopt, "lofs: mount device not given");
|
||
|
return 0;
|
||
|
- }
|
||
|
+ } else if (!*entry->rfs)
|
||
|
+ return 0;
|
||
|
}
|
||
|
if (entry->sublink && !entry->fs) {
|
||
|
error(logopt, MODPREFIX
|
||
|
@@ -1337,13 +1333,12 @@ static unsigned int validate_host_option
|
||
|
* if it isn't given in the map entry. Don't report an error
|
||
|
* if it has been left empty since it's expected to fail.
|
||
|
*/
|
||
|
- if (!*entry->rhost)
|
||
|
- return 0;
|
||
|
- else if (!entry->rhost) {
|
||
|
+ if (!entry->rhost) {
|
||
|
error(logopt, MODPREFIX
|
||
|
"%s: remote host name not given", entry->type);
|
||
|
return 0;
|
||
|
- }
|
||
|
+ } else if (!*entry->rhost)
|
||
|
+ return 0;
|
||
|
return 1;
|
||
|
}
|
||
|
|