[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[tor-commits] [tor/master] Let's be smarter while parsing {Client, Server}TransportPlugin lines.
commit 51cdd30c01c47e3522bd49a23a83a566cf4de5a7
Author: George Kadianakis <desnacked@xxxxxxxxx>
Date: Mon Jul 18 16:42:31 2011 +0200
Let's be smarter while parsing {Client,Server}TransportPlugin lines.
---
src/or/config.c | 64 +++++++++++++++++++++++---------------------------
src/or/transports.c | 1 -
2 files changed, 29 insertions(+), 36 deletions(-)
diff --git a/src/or/config.c b/src/or/config.c
index da35270..02925f3 100644
--- a/src/or/config.c
+++ b/src/or/config.c
@@ -4702,22 +4702,25 @@ parse_client_transport_line(const char *line, int validate_only)
/* managed proxy options */
int is_managed=0;
char **proxy_argv=NULL;
+ char **tmp=NULL;
+ int proxy_argc,i;
+
+ int line_length;
items = smartlist_create();
smartlist_split_string(items, line, NULL,
SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, -1);
- if (smartlist_len(items) < 3) {
+ line_length = smartlist_len(items);
+ if (line_length < 3) {
log_warn(LD_CONFIG, "Too few arguments on ClientTransportPlugin line.");
goto err;
}
name = smartlist_get(items, 0);
- smartlist_del_keeporder(items, 0);
/* field2 is either a SOCKS version or "exec" */
- field2 = smartlist_get(items, 0);
- smartlist_del_keeporder(items, 0);
+ field2 = smartlist_get(items, 1);
if (!strcmp(field2,"socks4")) {
socks_ver = PROXY_SOCKS4;
@@ -4735,16 +4738,12 @@ parse_client_transport_line(const char *line, int validate_only)
if (!validate_only) { /* if we are not just validating, use the
rest of the line as the argv of the proxy
to be launched */
- char **tmp;
- char *tmp_arg;
- proxy_argv = tor_malloc_zero(sizeof(char*)*(smartlist_len(items)+1));
+ proxy_argc = line_length-2;
+ tor_assert(proxy_argc > 0);
+ proxy_argv = tor_malloc_zero(sizeof(char*)*(proxy_argc+1));
tmp = proxy_argv;
- while (smartlist_len(items)) {
- tmp_arg = smartlist_get(items, 0);
- smartlist_del_keeporder(items, 0);
- *tmp++ = tor_strdup(tmp_arg);
- tor_free(tmp_arg);
- }
+ for (i=0;i<proxy_argc;i++) /* store arguments */
+ *tmp++ = smartlist_get(items, 2+i);
*tmp = NULL; /*terminated with NUL pointer, just like execve() likes it*/
if (pt_managed_launch_client_proxy(name, proxy_argv) < 0) {
@@ -4754,8 +4753,7 @@ parse_client_transport_line(const char *line, int validate_only)
}
}
} else { /* external */
- addrport = smartlist_get(items, 0);
- smartlist_del_keeporder(items, 0);
+ addrport = smartlist_get(items, 2);
if (tor_addr_port_parse(addrport, &addr, &port)<0) {
log_warn(LD_CONFIG, "Error parsing transport "
@@ -4788,9 +4786,7 @@ parse_client_transport_line(const char *line, int validate_only)
done:
SMARTLIST_FOREACH(items, char*, s, tor_free(s));
smartlist_free(items);
- tor_free(name);
- tor_free(field2);
- tor_free(addrport);
+ tor_free(proxy_argv);
return r;
}
@@ -4813,21 +4809,24 @@ parse_server_transport_line(const char *line, int validate_only)
/* managed proxy options */
int is_managed=0;
char **proxy_argv=NULL;
+ char **tmp=NULL;
+ int proxy_argc,i;
+
+ int line_length;
items = smartlist_create();
smartlist_split_string(items, line, NULL,
SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, -1);
- if (smartlist_len(items) < 3) {
+ line_length = smartlist_len(items);
+ if (line_length < 3) {
log_warn(LD_CONFIG, "Too few arguments on ServerTransportPlugin line.");
goto err;
}
name = smartlist_get(items, 0);
- smartlist_del_keeporder(items, 0);
- type = smartlist_get(items, 0);
- smartlist_del_keeporder(items, 0);
+ type = smartlist_get(items, 1);
if (!strcmp(type, "exec")) {
is_managed=1;
@@ -4840,16 +4839,13 @@ parse_server_transport_line(const char *line, int validate_only)
if (is_managed) { /* managed */
if (!validate_only) {
- char **tmp;
- char *tmp_arg;
- proxy_argv = tor_malloc_zero(sizeof(char*)*(smartlist_len(items)+1));
+ proxy_argc = line_length-2;
+ tor_assert(proxy_argc > 0);
+ proxy_argv = tor_malloc_zero(sizeof(char*)*(proxy_argc+1));
tmp = proxy_argv;
- while (smartlist_len(items)) {
- tmp_arg = smartlist_get(items, 0);
- smartlist_del_keeporder(items, 0);
- *tmp++ = tor_strdup(tmp_arg);
- tor_free(tmp_arg);
- }
+
+ for (i=0;i<proxy_argc;i++) /* store arguments */
+ *tmp++ = smartlist_get(items, 2+i);
*tmp = NULL; /*terminated with NUL pointer, just like execve() likes it*/
if (pt_managed_launch_server_proxy(name, proxy_argv) < 0) { /* launch it! */
@@ -4859,8 +4855,7 @@ parse_server_transport_line(const char *line, int validate_only)
}
}
} else { /* external */
- addrport = smartlist_get(items, 0);
- smartlist_del_keeporder(items, 0);
+ addrport = smartlist_get(items, 2);
if (tor_addr_port_parse(addrport, &addr, &port)<0) {
log_warn(LD_CONFIG, "Error parsing transport "
@@ -4888,8 +4883,7 @@ parse_server_transport_line(const char *line, int validate_only)
done:
SMARTLIST_FOREACH(items, char*, s, tor_free(s));
smartlist_free(items);
- tor_free(name);
- tor_free(type);
+ tor_free(proxy_argv);
return r;
}
diff --git a/src/or/transports.c b/src/or/transports.c
index 6589a8c..930cb8c 100644
--- a/src/or/transports.c
+++ b/src/or/transports.c
@@ -106,7 +106,6 @@ pt_managed_launch_proxy(const char *method,
/* free the memory allocated for the execve() */
free_execve_args(envp);
- free_execve_args(proxy_argv);
/* Set stdout/stderr pipes to be non-blocking */
fcntl(stdout_pipe, F_SETFL, O_NONBLOCK);
_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits