Skip to content

Commit

Permalink
libshare/nfs: escape mount points when needed
Browse files Browse the repository at this point in the history
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Ahelenia Ziemiańska <[email protected]>
Closes openzfs#13165
Closes openzfs#13153
  • Loading branch information
nabijaczleweli authored and behlendorf committed May 12, 2022
1 parent a31fcd4 commit 9b06aa6
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 8 deletions.
43 changes: 41 additions & 2 deletions lib/libshare/nfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <sys/stat.h>
#include <sys/file.h>
#include <fcntl.h>
#include <ctype.h>
#include <stdio.h>
#include <errno.h>
#include <libshare.h>
Expand Down Expand Up @@ -143,6 +144,34 @@ nfs_fini_tmpfile(const char *exports, struct tmpfile *tmpf)
return (SA_OK);
}

int
nfs_escape_mountpoint(const char *mp, char **out, boolean_t *need_free)
{
if (strpbrk(mp, "\t\n\v\f\r \\") == NULL) {
*out = (char *)mp;
*need_free = B_FALSE;
return (SA_OK);
} else {
size_t len = strlen(mp);
*out = malloc(len * 4 + 1);
if (!*out)
return (SA_NO_MEMORY);
*need_free = B_TRUE;

char *oc = *out;
for (const char *c = mp; c < mp + len; ++c)
if (memchr("\t\n\v\f\r \\", *c,
strlen("\t\n\v\f\r \\"))) {
sprintf(oc, "\\%03hho", *c);
oc += 4;
} else
*oc++ = *c;
*oc = '\0';
}

return (SA_OK);
}

static int
nfs_process_exports(const char *exports, const char *mountpoint,
boolean_t (*cbk)(void *userdata, char *line, boolean_t found_mountpoint),
Expand All @@ -153,8 +182,16 @@ nfs_process_exports(const char *exports, const char *mountpoint,

FILE *oldfp = fopen(exports, "re");
if (oldfp != NULL) {
boolean_t need_mp_free;
char *mp;
if ((error = nfs_escape_mountpoint(mountpoint,
&mp, &need_mp_free)) != SA_OK) {
(void) fclose(oldfp);
return (error);
}

char *buf = NULL, *sep;
size_t buflen = 0, mplen = strlen(mountpoint);
size_t buflen = 0, mplen = strlen(mp);

while (cont && getline(&buf, &buflen, oldfp) != -1) {
if (buf[0] == '\n' || buf[0] == '#')
Expand All @@ -163,9 +200,11 @@ nfs_process_exports(const char *exports, const char *mountpoint,
cont = cbk(userdata, buf,
(sep = strpbrk(buf, "\t \n")) != NULL &&
sep - buf == mplen &&
strncmp(buf, mountpoint, mplen) == 0);
strncmp(buf, mp, mplen) == 0);
}
free(buf);
if (need_mp_free)
free(mp);

if (ferror(oldfp) != 0)
error = ferror(oldfp);
Expand Down
1 change: 1 addition & 0 deletions lib/libshare/nfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

#define FILE_HEADER "# !!! DO NOT EDIT THIS FILE MANUALLY !!!\n\n"

int nfs_escape_mountpoint(const char *mp, char **out, boolean_t *need_free);
boolean_t nfs_is_shared_impl(const char *exports, sa_share_impl_t impl_share);
int nfs_toggle_share(const char *lockfile, const char *exports,
const char *expdir, sa_share_impl_t impl_share,
Expand Down
15 changes: 12 additions & 3 deletions lib/libshare/os/freebsd/nfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,24 @@ nfs_enable_share_impl(sa_share_impl_t impl_share, FILE *tmpfile)
if (strcmp(shareopts, "on") == 0)
shareopts = "";

if (fputs(impl_share->sa_mountpoint, tmpfile) == EOF ||
boolean_t need_free;
char *mp;
int rc = nfs_escape_mountpoint(impl_share->sa_mountpoint, &mp,
&need_free);
if (rc != SA_OK)
return (rc);

if (fputs(mp, tmpfile) == EOF ||
fputc('\t', tmpfile) == EOF ||
translate_opts(shareopts, tmpfile) == EOF ||
fputc('\n', tmpfile) == EOF) {
fprintf(stderr, "failed to write to temporary file\n");
return (SA_SYSTEM_ERR);
rc = SA_SYSTEM_ERR;
}

return (SA_OK);
if (need_free)
free(mp);
return (rc);
}

static int
Expand Down
13 changes: 10 additions & 3 deletions lib/libshare/os/linux/nfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -387,14 +387,21 @@ nfs_add_entry(FILE *tmpfile, const char *sharepath,
if (linux_opts == NULL)
linux_opts = "";

if (fprintf(tmpfile, "%s %s(sec=%s,%s,%s)\n", sharepath,
boolean_t need_free;
char *mp;
int rc = nfs_escape_mountpoint(sharepath, &mp, &need_free);
if (rc != SA_OK)
return (rc);
if (fprintf(tmpfile, "%s %s(sec=%s,%s,%s)\n", mp,
get_linux_hostspec(host), security, access_opts,
linux_opts) < 0) {
fprintf(stderr, "failed to write to temporary file\n");
return (SA_SYSTEM_ERR);
rc = SA_SYSTEM_ERR;
}

return (SA_OK);
if (need_free)
free(mp);
return (rc);
}

/*
Expand Down

0 comments on commit 9b06aa6

Please sign in to comment.