diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-07-29 15:52:36 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-07-29 15:52:36 -0700 |
commit | 37e64c3b73b093a9025d9c10e7d5782b46cef79d (patch) | |
tree | 5b57ea2119cf8d0fda3ff4d631f408a746c0fea1 /src | |
parent | 8eafe675fc4292cd05947f146f05c205ff21258e (diff) | |
download | vyatta-cfg-37e64c3b73b093a9025d9c10e7d5782b46cef79d.tar.gz vyatta-cfg-37e64c3b73b093a9025d9c10e7d5782b46cef79d.zip |
Optimize delete
Use inline code rather than system() function, and optimize allocation
to use stack where possible.
Diffstat (limited to 'src')
-rw-r--r-- | src/delete.c | 79 |
1 files changed, 39 insertions, 40 deletions
diff --git a/src/delete.c b/src/delete.c index bb2c987..004986d 100644 --- a/src/delete.c +++ b/src/delete.c @@ -12,35 +12,35 @@ extern char *cli_operation_name; static void remove_rf(boolean do_umount) { - char *command; - touch(); - if (do_umount) { - command = my_malloc(strlen(get_mdirp()) + 20, "delete"); - sprintf(command, "sudo umount %s", get_mdirp()); - system(command); - free(command); - } - command = my_malloc(strlen(m_path.path) + 10, "delete"); - sprintf(command, "rm -rf %s", m_path.path); + char *command = NULL; + touch(); + if (do_umount) { + command = malloc(strlen(get_mdirp()) + 20); + sprintf(command, "sudo umount %s", get_mdirp()); system(command); - free(command); - if (do_umount) { - command = my_malloc(strlen(get_mdirp()) + strlen(get_cdirp()) + - strlen(get_mdirp()) + 100, - "delete"); - sprintf(command, "sudo mount -t $UNIONFS -o dirs=%s=rw:%s=ro" - " $UNIONFS %s", get_cdirp(), get_adirp(), get_mdirp()); - system(command); - free(command); - } + } + + command = realloc(command, strlen(m_path.path) + 10); + sprintf(command, "rm -rf %s", m_path.path); + system(command); + + if (do_umount) { + command = realloc(command, strlen(get_mdirp()) + strlen(get_cdirp()) + + strlen(get_mdirp()) + 100); + sprintf(command, "sudo mount -t $UNIONFS -o dirs=%s=rw:%s=ro" + " $UNIONFS %s", get_cdirp(), get_adirp(), get_mdirp()); + system(command); + } + free(command); } + static boolean has_default(char **def, int size) { - char *buf; - buf = malloc(1025); char *buf_ptr; FILE *fp = fopen(t_path.path, "r"); + if (fp) { + char buf[1025]; while (fgets(buf, 1024, fp)) { if (strncmp(buf, "default:", 8) == 0) { buf_ptr = index(buf,':'); @@ -53,33 +53,32 @@ static boolean has_default(char **def, int size) } memcpy(*def, buf_ptr, strlen(buf_ptr)-1); fclose(fp); - free(buf); return 0; } } fclose(fp); } - free(buf); + return 1; } -static void reset_default(char *def_val) + +static void reset_default(const char *def_val) { - char *command,*def_cmd; - boolean has_default = 1; - if (def_val == NULL) { + if (def_val == NULL) return; - } - if (has_default) { - touch(); - command = my_malloc(strlen(m_path.path) + 100, "set"); - sprintf(command, "echo %s > %s/node.val", def_val, m_path.path); - system(command); - def_cmd = malloc(strlen(m_path.path) + 12); - sprintf(def_cmd, "touch %s/def",m_path.path); - system(def_cmd); - free(command); - free(def_cmd); - } + + char filename[strlen(m_path.path) + 10]; + touch(); + sprintf(filename, "%s/node.val", m_path.path); + + FILE *fp = fopen(filename, "w"); + if (fp == NULL) + bye("can not open: %s", filename); + fputs(def_val, fp); + fclose(fp); + + sprintf(filename, "%s/def", m_path.path); + touch_file(filename); } /*************************************************** set_validate: |