always canonicalize mount point
This commit is contained in:
parent
f8e3e247ad
commit
93a8791136
@ -1,6 +1,10 @@
|
|||||||
ChangeLog for davfs2
|
ChangeLog for davfs2
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
|
2010-11-03 Werner Baumann (werner.baumann@onlinehome.de)
|
||||||
|
* mount_davfs.c, check_mountpoint:
|
||||||
|
Always canonicalize mount point.
|
||||||
|
|
||||||
2010-08-07 Werner Baumann (werner.baumann@onlinehome.de)
|
2010-08-07 Werner Baumann (werner.baumann@onlinehome.de)
|
||||||
* webdav.c:
|
* webdav.c:
|
||||||
Added missing '\r' in constant none_match_header
|
Added missing '\r' in constant none_match_header
|
||||||
|
@ -758,23 +758,23 @@ check_mountpoint(dav_args *args)
|
|||||||
{
|
{
|
||||||
|
|
||||||
struct passwd *pw;
|
struct passwd *pw;
|
||||||
|
int relative = (*mpoint != '/');
|
||||||
|
|
||||||
if (*mpoint != '/') {
|
char *mp = canonicalize_file_name(mpoint);
|
||||||
char *mp = canonicalize_file_name(mpoint);
|
if (!mp)
|
||||||
if (!mp)
|
error(EXIT_FAILURE, 0,
|
||||||
|
_("can't evaluate path of mount point %s"), mpoint);
|
||||||
|
free(mpoint);
|
||||||
|
mpoint = mp;
|
||||||
|
|
||||||
|
if (relative && getuid() != 0) {
|
||||||
|
pw = getpwuid(getuid());
|
||||||
|
if (!pw || !pw->pw_dir)
|
||||||
error(EXIT_FAILURE, 0,
|
error(EXIT_FAILURE, 0,
|
||||||
_("can't evaluate path of mount point %s"), mpoint);
|
_("can't get home directory for uid %i"), getuid());
|
||||||
if (getuid() != 0) {
|
if (strstr(mp, pw->pw_dir) != mp)
|
||||||
pw = getpwuid(getuid());
|
error(EXIT_FAILURE, 0, _("A relative mount point must lie "
|
||||||
if (!pw || !pw->pw_dir)
|
"within your home directory"));
|
||||||
error(EXIT_FAILURE, 0,
|
|
||||||
_("can't get home directory for uid %i"), getuid());
|
|
||||||
if (strstr(mp, pw->pw_dir) != mp)
|
|
||||||
error(EXIT_FAILURE, 0, _("A relative mount point must lie "
|
|
||||||
"within your home directory"));
|
|
||||||
}
|
|
||||||
free(mpoint);
|
|
||||||
mpoint = mp;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strcmp(mpoint, "/") == 0 || strlen(mpoint) < 2)
|
if (strcmp(mpoint, "/") == 0 || strlen(mpoint) < 2)
|
||||||
|
Loading…
Reference in New Issue
Block a user