Commit 9c07d253 authored by Wayne Davison's avatar Wayne Davison

Tidied up a few things in preparation for changes.

parent 7352b873
...@@ -44,13 +44,13 @@ static int establish_proxy_connection(int fd, char *host, int port) ...@@ -44,13 +44,13 @@ static int establish_proxy_connection(int fd, char *host, int port)
char *cp; char *cp;
snprintf(buffer, sizeof(buffer), "CONNECT %s:%d HTTP/1.0\r\n\r\n", host, port); snprintf(buffer, sizeof(buffer), "CONNECT %s:%d HTTP/1.0\r\n\r\n", host, port);
if (write(fd, buffer, strlen(buffer)) != (int) strlen(buffer)) { if (write(fd, buffer, strlen(buffer)) != (int)strlen(buffer)) {
rprintf(FERROR, "failed to write to proxy: %s\n", rprintf(FERROR, "failed to write to proxy: %s\n",
strerror(errno)); strerror(errno));
return -1; return -1;
} }
for (cp = buffer; cp < &buffer[sizeof(buffer) - 1]; cp++) { for (cp = buffer; cp < &buffer[sizeof (buffer) - 1]; cp++) {
if (read(fd, cp, 1) != 1) { if (read(fd, cp, 1) != 1) {
rprintf(FERROR, "failed to read from proxy: %s\n", rprintf(FERROR, "failed to read from proxy: %s\n",
strerror(errno)); strerror(errno));
...@@ -70,8 +70,7 @@ static int establish_proxy_connection(int fd, char *host, int port) ...@@ -70,8 +70,7 @@ static int establish_proxy_connection(int fd, char *host, int port)
buffer); buffer);
return -1; return -1;
} }
for (cp = &buffer[5]; isdigit(* (unsigned char *) cp) || (*cp == '.'); cp++) for (cp = &buffer[5]; isdigit(*(uchar*)cp) || *cp == '.'; cp++) {}
;
while (*cp == ' ') while (*cp == ' ')
cp++; cp++;
if (*cp != '2') { if (*cp != '2') {
...@@ -81,7 +80,7 @@ static int establish_proxy_connection(int fd, char *host, int port) ...@@ -81,7 +80,7 @@ static int establish_proxy_connection(int fd, char *host, int port)
} }
/* throw away the rest of the HTTP header */ /* throw away the rest of the HTTP header */
while (1) { while (1) {
for (cp = buffer; cp < &buffer[sizeof(buffer) - 1]; for (cp = buffer; cp < &buffer[sizeof (buffer) - 1];
cp++) { cp++) {
if (read(fd, cp, 1) != 1) { if (read(fd, cp, 1) != 1) {
rprintf(FERROR, "failed to read from proxy: %s\n", rprintf(FERROR, "failed to read from proxy: %s\n",
...@@ -91,9 +90,9 @@ static int establish_proxy_connection(int fd, char *host, int port) ...@@ -91,9 +90,9 @@ static int establish_proxy_connection(int fd, char *host, int port)
if (*cp == '\n') if (*cp == '\n')
break; break;
} }
if ((cp > buffer) && (*cp == '\n')) if (cp > buffer && *cp == '\n')
cp--; cp--;
if ((cp == buffer) && ((*cp == '\n') || (*cp == '\r'))) if (cp == buffer && (*cp == '\n' || *cp == '\r'))
break; break;
} }
return 0; return 0;
...@@ -173,7 +172,7 @@ int open_socket_out(char *host, int port, const char *bind_address, ...@@ -173,7 +172,7 @@ int open_socket_out(char *host, int port, const char *bind_address,
* connetcion via a web proxy at the given address. The format * connetcion via a web proxy at the given address. The format
* is hostname:port */ * is hostname:port */
h = getenv("RSYNC_PROXY"); h = getenv("RSYNC_PROXY");
proxied = (h != NULL) && (*h != '\0'); proxied = h != NULL && *h != '\0';
if (proxied) { if (proxied) {
strlcpy(buffer, h, sizeof(buffer)); strlcpy(buffer, h, sizeof(buffer));
...@@ -258,18 +257,14 @@ int open_socket_out(char *host, int port, const char *bind_address, ...@@ -258,18 +257,14 @@ int open_socket_out(char *host, int port, const char *bind_address,
* *
* @param bind_address Local address to use. Normally NULL to get the stack default. * @param bind_address Local address to use. Normally NULL to get the stack default.
**/ **/
int open_socket_out_wrapped (char *host, int open_socket_out_wrapped(char *host, int port, const char *bind_address,
int port,
const char *bind_address,
int af_hint) int af_hint)
{ {
char *prog; char *prog;
if ((prog = getenv ("RSYNC_CONNECT_PROG")) != NULL) if ((prog = getenv("RSYNC_CONNECT_PROG")) != NULL)
return sock_exec (prog); return sock_exec(prog);
else return open_socket_out(host, port, bind_address, af_hint);
return open_socket_out (host, port, bind_address,
af_hint);
} }
...@@ -370,7 +365,7 @@ int is_a_socket(int fd) ...@@ -370,7 +365,7 @@ int is_a_socket(int fd)
* also has socklen_t [*]. See also accept(2).'' * also has socklen_t [*]. See also accept(2).''
* *
* We now return to your regularly scheduled programming. */ * We now return to your regularly scheduled programming. */
return(getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&v, &l) == 0); return getsockopt(fd, SOL_SOCKET, SO_TYPE, (char *)&v, &l) == 0;
} }
...@@ -418,15 +413,16 @@ void start_accept_loop(int port, int (*fn)(int, int)) ...@@ -418,15 +413,16 @@ void start_accept_loop(int port, int (*fn)(int, int))
FD_ZERO(&fds); FD_ZERO(&fds);
FD_SET(s, &fds); FD_SET(s, &fds);
if (select(s+1, &fds, NULL, NULL, NULL) != 1) { if (select(s+1, &fds, NULL, NULL, NULL) != 1)
continue; continue;
}
if(!FD_ISSET(s, &fds)) continue; if (!FD_ISSET(s, &fds))
continue;
fd = accept(s,(struct sockaddr *)&addr,&addrlen); fd = accept(s,(struct sockaddr *)&addr,&addrlen);
if (fd == -1) continue; if (fd == -1)
continue;
signal(SIGCHLD, sigchld_handler); signal(SIGCHLD, sigchld_handler);
...@@ -507,13 +503,16 @@ struct ...@@ -507,13 +503,16 @@ struct
void set_socket_options(int fd, char *options) void set_socket_options(int fd, char *options)
{ {
char *tok; char *tok;
if (!options || !*options) return;
if (!options || !*options)
return;
options = strdup(options); options = strdup(options);
if (!options) out_of_memory("set_socket_options"); if (!options)
out_of_memory("set_socket_options");
for (tok=strtok(options, " \t,"); tok; tok=strtok(NULL," \t,")) { for (tok = strtok(options, " \t,"); tok; tok = strtok(NULL," \t,")) {
int ret=0,i; int ret=0,i;
int value = 1; int value = 1;
char *p; char *p;
...@@ -525,9 +524,10 @@ void set_socket_options(int fd, char *options) ...@@ -525,9 +524,10 @@ void set_socket_options(int fd, char *options)
got_value = 1; got_value = 1;
} }
for (i=0;socket_options[i].name;i++) for (i = 0; socket_options[i].name; i++) {
if (strcmp(socket_options[i].name,tok)==0) if (strcmp(socket_options[i].name,tok)==0)
break; break;
}
if (!socket_options[i].name) { if (!socket_options[i].name) {
rprintf(FERROR,"Unknown socket option %s\n",tok); rprintf(FERROR,"Unknown socket option %s\n",tok);
...@@ -579,14 +579,14 @@ void become_daemon(void) ...@@ -579,14 +579,14 @@ void become_daemon(void)
#ifdef TIOCNOTTY #ifdef TIOCNOTTY
i = open("/dev/tty", O_RDWR); i = open("/dev/tty", O_RDWR);
if (i >= 0) { if (i >= 0) {
ioctl(i, (int) TIOCNOTTY, (char *)0); ioctl(i, (int)TIOCNOTTY, (char *)0);
close(i); close(i);
} }
#endif /* TIOCNOTTY */ #endif /* TIOCNOTTY */
#endif #endif
/* make sure that stdin, stdout an stderr don't stuff things /* make sure that stdin, stdout an stderr don't stuff things
up (library functions, for example) */ up (library functions, for example) */
for (i=0;i<3;i++) { for (i = 0; i < 3; i++) {
close(i); close(i);
open("/dev/null", O_RDWR); open("/dev/null", O_RDWR);
} }
...@@ -614,7 +614,8 @@ static int socketpair_tcp(int fd[2]) ...@@ -614,7 +614,8 @@ static int socketpair_tcp(int fd[2])
memset(&sock, 0, sizeof(sock)); memset(&sock, 0, sizeof(sock));
if ((listener = socket(PF_INET, SOCK_STREAM, 0)) == -1) goto failed; if ((listener = socket(PF_INET, SOCK_STREAM, 0)) == -1)
goto failed;
memset(&sock2, 0, sizeof(sock2)); memset(&sock2, 0, sizeof(sock2));
#ifdef HAVE_SOCKADDR_LEN #ifdef HAVE_SOCKADDR_LEN
...@@ -624,39 +625,47 @@ static int socketpair_tcp(int fd[2]) ...@@ -624,39 +625,47 @@ static int socketpair_tcp(int fd[2])
bind(listener, (struct sockaddr *)&sock2, sizeof(sock2)); bind(listener, (struct sockaddr *)&sock2, sizeof(sock2));
if (listen(listener, 1) != 0) goto failed; if (listen(listener, 1) != 0)
goto failed;
if (getsockname(listener, (struct sockaddr *)&sock, &socklen) != 0) goto failed; if (getsockname(listener, (struct sockaddr *)&sock, &socklen) != 0)
goto failed;
if ((fd[1] = socket(PF_INET, SOCK_STREAM, 0)) == -1) goto failed; if ((fd[1] = socket(PF_INET, SOCK_STREAM, 0)) == -1)
goto failed;
set_nonblocking(fd[1]); set_nonblocking(fd[1]);
sock.sin_addr.s_addr = htonl(INADDR_LOOPBACK); sock.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
if (connect(fd[1],(struct sockaddr *)&sock,sizeof(sock)) == -1) { if (connect(fd[1],(struct sockaddr *)&sock,sizeof(sock)) == -1) {
if (errno != EINPROGRESS) goto failed; if (errno != EINPROGRESS)
} else { goto failed;
} else
connect_done = 1; connect_done = 1;
}
if ((fd[0] = accept(listener, (struct sockaddr *)&sock, &socklen)) == -1) goto failed; if ((fd[0] = accept(listener, (struct sockaddr *)&sock, &socklen)) == -1)
goto failed;
close(listener); close(listener);
if (connect_done == 0) { if (connect_done == 0) {
if (connect(fd[1],(struct sockaddr *)&sock,sizeof(sock)) != 0 if (connect(fd[1],(struct sockaddr *)&sock,sizeof(sock)) != 0
&& errno != EISCONN) goto failed; && errno != EISCONN)
goto failed;
} }
set_blocking (fd[1]); set_blocking(fd[1]);
/* all OK! */ /* all OK! */
return 0; return 0;
failed: failed:
if (fd[0] != -1) close(fd[0]); if (fd[0] != -1)
if (fd[1] != -1) close(fd[1]); close(fd[0]);
if (listener != -1) close(listener); if (fd[1] != -1)
close(fd[1]);
if (listener != -1)
close(listener);
return -1; return -1;
} }
...@@ -676,8 +685,7 @@ int sock_exec(const char *prog) ...@@ -676,8 +685,7 @@ int sock_exec(const char *prog)
int fd[2]; int fd[2];
if (socketpair_tcp(fd) != 0) { if (socketpair_tcp(fd) != 0) {
rprintf (FERROR, RSYNC_NAME rprintf(FERROR, RSYNC_NAME ": socketpair_tcp failed (%s)\n",
": socketpair_tcp failed (%s)\n",
strerror(errno)); strerror(errno));
return -1; return -1;
} }
...@@ -689,15 +697,12 @@ int sock_exec(const char *prog) ...@@ -689,15 +697,12 @@ int sock_exec(const char *prog)
dup(fd[1]); dup(fd[1]);
if (verbose > 3) { if (verbose > 3) {
/* Can't use rprintf because we've forked. */ /* Can't use rprintf because we've forked. */
fprintf (stderr, fprintf(stderr,
RSYNC_NAME ": execute socket program \"%s\"\n", RSYNC_NAME ": execute socket program \"%s\"\n",
prog); prog);
} }
exit (system (prog)); exit(system(prog));
} }
close (fd[1]); close(fd[1]);
return fd[0]; return fd[0];
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment