Check mount point in parse_commandline
This commit is contained in:
parent
fef2a85f3d
commit
123b473444
@ -1,9 +1,13 @@
|
|||||||
ChangeLog for davfs2
|
ChangeLog for davfs2
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
|
2012-01-25 Werner Baumann (werner.baumann@onlinehome.de)
|
||||||
|
* mount_davfs.c, mount_davfs.h:
|
||||||
|
Check mount point in parse_commandline.
|
||||||
|
|
||||||
2012-01-24 Werner Baumann (werner.baumann@onlinehome.de)
|
2012-01-24 Werner Baumann (werner.baumann@onlinehome.de)
|
||||||
* mount_davfs.c, check_mountpoint:
|
* mount_davfs.c, check_mountpoint:
|
||||||
Used stored persona.
|
Use stored persona.
|
||||||
|
|
||||||
2012-01-22 Werner Baumann (werner.baumann@onlinehome.de)
|
2012-01-22 Werner Baumann (werner.baumann@onlinehome.de)
|
||||||
* mount_davfs.c:
|
* mount_davfs.c:
|
||||||
|
@ -134,9 +134,6 @@ check_double_mounts(dav_args *args);
|
|||||||
static void
|
static void
|
||||||
check_fstab(const dav_args *args);
|
check_fstab(const dav_args *args);
|
||||||
|
|
||||||
static void
|
|
||||||
check_mountpoint(dav_args *args);
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
check_permissions(dav_args *args);
|
check_permissions(dav_args *args);
|
||||||
|
|
||||||
@ -253,8 +250,6 @@ main(int argc, char *argv[])
|
|||||||
|
|
||||||
parse_config(args);
|
parse_config(args);
|
||||||
|
|
||||||
check_mountpoint(args);
|
|
||||||
|
|
||||||
check_dirs(args);
|
check_dirs(args);
|
||||||
|
|
||||||
check_permissions(args);
|
check_permissions(args);
|
||||||
@ -750,29 +745,6 @@ check_fstab(const dav_args *args)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Checks whether the mountpoint is valid.
|
|
||||||
For non root users it must meet the additional condition:
|
|
||||||
- if the mount point is given as relative path, it must lie within
|
|
||||||
the mounting users home directory (so a relative path in fstab
|
|
||||||
- which might be useful in some cases - will not allow to to
|
|
||||||
gain access to directories not intended).
|
|
||||||
If this condition is not met or an error occurs, an error message is
|
|
||||||
printed and exit(EXIT_FAILURE) is called.
|
|
||||||
Requires: relative_mpoint, privileged. */
|
|
||||||
static void
|
|
||||||
check_mountpoint(dav_args *args)
|
|
||||||
{
|
|
||||||
if (args->relative_mpoint && !args->privileged) {
|
|
||||||
if (strstr(mpoint, args->home) != mpoint)
|
|
||||||
error(EXIT_FAILURE, 0, _("A relative mount point must lie "
|
|
||||||
"within your home directory"));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (args->debug & DAV_DBG_CONFIG)
|
|
||||||
syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG), "mountpoint: %s", mpoint);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* The mounting user must be either root or meet the following conditions:
|
/* The mounting user must be either root or meet the following conditions:
|
||||||
- The uid must not differ from the option uid, if this option is used.
|
- The uid must not differ from the option uid, if this option is used.
|
||||||
- The user must belong to the group specified in option gid (if used).
|
- The user must belong to the group specified in option gid (if used).
|
||||||
@ -908,7 +880,7 @@ is_mounted(void)
|
|||||||
argc : the number of arguments.
|
argc : the number of arguments.
|
||||||
argv[] : array of argument strings.
|
argv[] : array of argument strings.
|
||||||
Requires: uid, uid_name, gid, home, mopts
|
Requires: uid, uid_name, gid, home, mopts
|
||||||
Provides: cmdline. relative_mpoint, conf, user, users, netdev, mopts,
|
Provides: cmdline, conf, user, users, netdev, mopts,
|
||||||
add_mopts, fsuid, fsgid, dir_mode, file_mode, scheme, host, port,
|
add_mopts, fsuid, fsgid, dir_mode, file_mode, scheme, host, port,
|
||||||
path, cl_username. */
|
path, cl_username. */
|
||||||
static dav_args *
|
static dav_args *
|
||||||
@ -982,7 +954,6 @@ parse_commandline(dav_args *args, int argc, char *argv[])
|
|||||||
if (!mpoint)
|
if (!mpoint)
|
||||||
error(EXIT_FAILURE, 0,
|
error(EXIT_FAILURE, 0,
|
||||||
_("can't evaluate path of mount point %s"), mpoint);
|
_("can't evaluate path of mount point %s"), mpoint);
|
||||||
args->relative_mpoint = (*argv[i] != '/');
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
error(0, 0, _("too many arguments"));
|
error(0, 0, _("too many arguments"));
|
||||||
@ -990,8 +961,11 @@ parse_commandline(dav_args *args, int argc, char *argv[])
|
|||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!mpoint)
|
if (!args->privileged && *argv[i] != '/') {
|
||||||
error(EXIT_FAILURE, 0, _("no mountpoint specified"));
|
if (strstr(mpoint, args->home) != mpoint)
|
||||||
|
error(EXIT_FAILURE, 0, _("A relative mount point must lie "
|
||||||
|
"within your home directory"));
|
||||||
|
}
|
||||||
|
|
||||||
if (!url)
|
if (!url)
|
||||||
error(EXIT_FAILURE, 0, _("no WebDAV-server specified"));
|
error(EXIT_FAILURE, 0, _("no WebDAV-server specified"));
|
||||||
@ -1822,8 +1796,6 @@ log_dbg_config(dav_args *args)
|
|||||||
" url: %s", url);
|
" url: %s", url);
|
||||||
syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG),
|
syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG),
|
||||||
" mount point: %s", mpoint);
|
" mount point: %s", mpoint);
|
||||||
syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG),
|
|
||||||
" relative_mpoint: %i", args->relative_mpoint);
|
|
||||||
syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG),
|
syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG),
|
||||||
" dav_user: %s", args->dav_user);
|
" dav_user: %s", args->dav_user);
|
||||||
syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG),
|
syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG),
|
||||||
|
@ -32,7 +32,6 @@
|
|||||||
daemon mode. The rest will be freed when forking into daemon mode. */
|
daemon mode. The rest will be freed when forking into daemon mode. */
|
||||||
typedef struct {
|
typedef struct {
|
||||||
char *cmdline;
|
char *cmdline;
|
||||||
int relative_mpoint;
|
|
||||||
/* Persona */
|
/* Persona */
|
||||||
int privileged;
|
int privileged;
|
||||||
uid_t uid;
|
uid_t uid;
|
||||||
|
Loading…
Reference in New Issue
Block a user