summaryrefslogtreecommitdiff
path: root/lib/command.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-02-09 09:52:58 -0500
committerGitHub <noreply@github.com>2017-02-09 09:52:58 -0500
commitb9aa3abbbebb7db75f7209938074aa0cac6d377d (patch)
tree77461b93bf06d698f91fc98d5ba4f89979dc06f9 /lib/command.c
parent9c3a235e8a8bbfc0c4465bb26bf36981bd387899 (diff)
parent056cfe496e84eed72c4d2226a7a405e5263cdc7a (diff)
Merge pull request #189 from opensourcerouting/config-write-sync
lib: use fsync() for config writes, plug fd leak
Diffstat (limited to 'lib/command.c')
-rw-r--r--lib/command.c48
1 files changed, 29 insertions, 19 deletions
diff --git a/lib/command.c b/lib/command.c
index 6467fb7185..4a84386858 100644
--- a/lib/command.c
+++ b/lib/command.c
@@ -1325,9 +1325,9 @@ DEFUN (config_write,
{
int idx_type = 1;
unsigned int i;
- int fd;
+ int fd, dirfd;
struct cmd_node *node;
- char *config_file;
+ char *config_file, *slash;
char *config_file_tmp = NULL;
char *config_file_sav = NULL;
int ret = CMD_WARNING;
@@ -1378,6 +1378,21 @@ DEFUN (config_write,
/* Get filename. */
config_file = host.config;
+#ifndef O_DIRECTORY
+#define O_DIRECTORY 0
+#endif
+ slash = strrchr (config_file, '/');
+ if (slash)
+ {
+ char *config_dir = XSTRDUP (MTYPE_TMP, config_file);
+ config_dir[slash - config_file] = '\0';
+ dirfd = open(config_dir, O_DIRECTORY | O_RDONLY);
+ XFREE (MTYPE_TMP, config_dir);
+ }
+ else
+ dirfd = open(".", O_DIRECTORY | O_RDONLY);
+ /* if dirfd is invalid, directory sync fails, but we're still OK */
+
config_file_sav =
XMALLOC (MTYPE_TMP, strlen (config_file) + strlen (CONF_BACKUP_EXT) + 1);
strcpy (config_file_sav, config_file);
@@ -1395,6 +1410,12 @@ DEFUN (config_write,
VTY_NEWLINE);
goto finished;
}
+ if (fchmod (fd, CONFIGFILE_MASK) != 0)
+ {
+ vty_out (vty, "Can't chmod configuration file %s: %s (%d).%s",
+ config_file_tmp, safe_strerror(errno), errno, VTY_NEWLINE);
+ goto finished;
+ }
/* Make vty for configuration file. */
file_vty = vty_new ();
@@ -1429,35 +1450,24 @@ DEFUN (config_write,
VTY_NEWLINE);
goto finished;
}
- sync ();
- if (unlink (config_file) != 0)
- {
- vty_out (vty, "Can't unlink configuration file %s.%s", config_file,
- VTY_NEWLINE);
- goto finished;
- }
+ fsync (dirfd);
}
- if (link (config_file_tmp, config_file) != 0)
+ if (rename (config_file_tmp, config_file) != 0)
{
vty_out (vty, "Can't save configuration file %s.%s", config_file,
VTY_NEWLINE);
goto finished;
}
- sync ();
-
- if (chmod (config_file, CONFIGFILE_MASK) != 0)
- {
- vty_out (vty, "Can't chmod configuration file %s: %s (%d).%s",
- config_file, safe_strerror(errno), errno, VTY_NEWLINE);
- goto finished;
- }
+ fsync (dirfd);
vty_out (vty, "Configuration saved to %s%s", config_file,
VTY_NEWLINE);
ret = CMD_SUCCESS;
finished:
- unlink (config_file_tmp);
+ if (ret != CMD_SUCCESS)
+ unlink (config_file_tmp);
+ close (dirfd);
XFREE (MTYPE_TMP, config_file_tmp);
XFREE (MTYPE_TMP, config_file_sav);
return ret;