mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-12-26 03:09:34 +03:00
zpool command complains about /etc/exports.d
If the /etc/exports.d directory does not exist, then we should only create it when we're performing an action which already requires root privileges. This commit moves the directory creation to the enable/disable code path which ensures that we have the appropriate privileges. Reviewed-by: Richard Elling <Richard.Elling@RichardElling.com> Reviewed-by: Matthew Ahrens <mahrens@delphix.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: George Wilson <gwilson@delphix.com> Closes #10785 Closes #10934
This commit is contained in:
parent
a5c77dc4d5
commit
bd76bcb36d
@ -228,21 +228,33 @@ nfs_copy_entries(char *filename, const char *mountpoint)
|
|||||||
int error = SA_OK;
|
int error = SA_OK;
|
||||||
char *line;
|
char *line;
|
||||||
|
|
||||||
/*
|
|
||||||
* If the file doesn't exist then there is nothing more
|
|
||||||
* we need to do.
|
|
||||||
*/
|
|
||||||
FILE *oldfp = fopen(ZFS_EXPORTS_FILE, "r");
|
FILE *oldfp = fopen(ZFS_EXPORTS_FILE, "r");
|
||||||
if (oldfp == NULL)
|
|
||||||
return (SA_OK);
|
|
||||||
|
|
||||||
FILE *newfp = fopen(filename, "w+");
|
FILE *newfp = fopen(filename, "w+");
|
||||||
|
if (newfp == NULL) {
|
||||||
|
fprintf(stderr, "failed to open %s file: %s", filename,
|
||||||
|
strerror(errno));
|
||||||
|
fclose(oldfp);
|
||||||
|
return (SA_SYSTEM_ERR);
|
||||||
|
}
|
||||||
fputs(FILE_HEADER, newfp);
|
fputs(FILE_HEADER, newfp);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The ZFS_EXPORTS_FILE may not exist yet. If that's the
|
||||||
|
* case then just write out the new file.
|
||||||
|
*/
|
||||||
|
if (oldfp != NULL) {
|
||||||
while ((line = zgetline(oldfp, mountpoint)) != NULL)
|
while ((line = zgetline(oldfp, mountpoint)) != NULL)
|
||||||
fprintf(newfp, "%s\n", line);
|
fprintf(newfp, "%s\n", line);
|
||||||
if (ferror(oldfp) != 0) {
|
if (ferror(oldfp) != 0) {
|
||||||
error = ferror(oldfp);
|
error = ferror(oldfp);
|
||||||
}
|
}
|
||||||
|
if (fclose(oldfp) != 0) {
|
||||||
|
fprintf(stderr, "Unable to close file %s: %s\n",
|
||||||
|
filename, strerror(errno));
|
||||||
|
error = error != 0 ? error : SA_SYSTEM_ERR;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (error == 0 && ferror(newfp) != 0) {
|
if (error == 0 && ferror(newfp) != 0) {
|
||||||
error = ferror(newfp);
|
error = ferror(newfp);
|
||||||
}
|
}
|
||||||
@ -252,8 +264,6 @@ nfs_copy_entries(char *filename, const char *mountpoint)
|
|||||||
filename, strerror(errno));
|
filename, strerror(errno));
|
||||||
error = error != 0 ? error : SA_SYSTEM_ERR;
|
error = error != 0 ? error : SA_SYSTEM_ERR;
|
||||||
}
|
}
|
||||||
fclose(oldfp);
|
|
||||||
|
|
||||||
return (error);
|
return (error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -393,6 +393,14 @@ static char *
|
|||||||
nfs_init_tmpfile(void)
|
nfs_init_tmpfile(void)
|
||||||
{
|
{
|
||||||
char *tmpfile = NULL;
|
char *tmpfile = NULL;
|
||||||
|
struct stat sb;
|
||||||
|
|
||||||
|
if (stat(ZFS_EXPORTS_DIR, &sb) < 0 &&
|
||||||
|
mkdir(ZFS_EXPORTS_DIR, 0755) < 0) {
|
||||||
|
fprintf(stderr, "failed to create %s: %s\n",
|
||||||
|
ZFS_EXPORTS_DIR, strerror(errno));
|
||||||
|
return (NULL);
|
||||||
|
}
|
||||||
|
|
||||||
if (asprintf(&tmpfile, "%s%s", ZFS_EXPORTS_FILE, ".XXXXXXXX") == -1) {
|
if (asprintf(&tmpfile, "%s%s", ZFS_EXPORTS_FILE, ".XXXXXXXX") == -1) {
|
||||||
fprintf(stderr, "Unable to allocate temporary file\n");
|
fprintf(stderr, "Unable to allocate temporary file\n");
|
||||||
@ -481,17 +489,22 @@ nfs_copy_entries(char *filename, const char *mountpoint)
|
|||||||
size_t buflen = 0;
|
size_t buflen = 0;
|
||||||
int error = SA_OK;
|
int error = SA_OK;
|
||||||
|
|
||||||
/*
|
|
||||||
* If the file doesn't exist then there is nothing more
|
|
||||||
* we need to do.
|
|
||||||
*/
|
|
||||||
FILE *oldfp = fopen(ZFS_EXPORTS_FILE, "r");
|
FILE *oldfp = fopen(ZFS_EXPORTS_FILE, "r");
|
||||||
if (oldfp == NULL)
|
|
||||||
return (SA_OK);
|
|
||||||
|
|
||||||
FILE *newfp = fopen(filename, "w+");
|
FILE *newfp = fopen(filename, "w+");
|
||||||
|
if (newfp == NULL) {
|
||||||
|
fprintf(stderr, "failed to open %s file: %s", filename,
|
||||||
|
strerror(errno));
|
||||||
|
fclose(oldfp);
|
||||||
|
return (SA_SYSTEM_ERR);
|
||||||
|
}
|
||||||
fputs(FILE_HEADER, newfp);
|
fputs(FILE_HEADER, newfp);
|
||||||
while ((getline(&buf, &buflen, oldfp)) != -1) {
|
|
||||||
|
/*
|
||||||
|
* The ZFS_EXPORTS_FILE may not exist yet. If that's the
|
||||||
|
* case then just write out the new file.
|
||||||
|
*/
|
||||||
|
if (oldfp != NULL) {
|
||||||
|
while (getline(&buf, &buflen, oldfp) != -1) {
|
||||||
char *space = NULL;
|
char *space = NULL;
|
||||||
|
|
||||||
if (buf[0] == '\n' || buf[0] == '#')
|
if (buf[0] == '\n' || buf[0] == '#')
|
||||||
@ -501,16 +514,24 @@ nfs_copy_entries(char *filename, const char *mountpoint)
|
|||||||
int mountpoint_len = strlen(mountpoint);
|
int mountpoint_len = strlen(mountpoint);
|
||||||
|
|
||||||
if (space - buf == mountpoint_len &&
|
if (space - buf == mountpoint_len &&
|
||||||
strncmp(mountpoint, buf, mountpoint_len) == 0) {
|
strncmp(mountpoint, buf,
|
||||||
|
mountpoint_len) == 0) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fputs(buf, newfp);
|
fputs(buf, newfp);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (oldfp != NULL && ferror(oldfp) != 0) {
|
if (ferror(oldfp) != 0) {
|
||||||
error = ferror(oldfp);
|
error = ferror(oldfp);
|
||||||
}
|
}
|
||||||
|
if (fclose(oldfp) != 0) {
|
||||||
|
fprintf(stderr, "Unable to close file %s: %s\n",
|
||||||
|
filename, strerror(errno));
|
||||||
|
error = error != 0 ? error : SA_SYSTEM_ERR;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (error == 0 && ferror(newfp) != 0) {
|
if (error == 0 && ferror(newfp) != 0) {
|
||||||
error = ferror(newfp);
|
error = ferror(newfp);
|
||||||
}
|
}
|
||||||
@ -521,8 +542,6 @@ nfs_copy_entries(char *filename, const char *mountpoint)
|
|||||||
filename, strerror(errno));
|
filename, strerror(errno));
|
||||||
error = error != 0 ? error : SA_SYSTEM_ERR;
|
error = error != 0 ? error : SA_SYSTEM_ERR;
|
||||||
}
|
}
|
||||||
fclose(oldfp);
|
|
||||||
|
|
||||||
return (error);
|
return (error);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -701,13 +720,5 @@ static const sa_share_ops_t nfs_shareops = {
|
|||||||
void
|
void
|
||||||
libshare_nfs_init(void)
|
libshare_nfs_init(void)
|
||||||
{
|
{
|
||||||
struct stat sb;
|
|
||||||
|
|
||||||
nfs_fstype = register_fstype("nfs", &nfs_shareops);
|
nfs_fstype = register_fstype("nfs", &nfs_shareops);
|
||||||
|
|
||||||
if (stat(ZFS_EXPORTS_DIR, &sb) < 0 &&
|
|
||||||
mkdir(ZFS_EXPORTS_DIR, 0755) < 0) {
|
|
||||||
fprintf(stderr, "failed to create %s: %s\n",
|
|
||||||
ZFS_EXPORTS_DIR, strerror(errno));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user