Adding a support script that can be used to make the checked-out
[rsync/rsync.git] / clientserver.c
index d16e561..8cbde16 100644 (file)
@@ -20,9 +20,9 @@
  */
 
 #include "rsync.h"
+#include "ifuncs.h"
 
 extern int verbose;
-extern int quiet;
 extern int output_motd;
 extern int list_only;
 extern int am_sender;
@@ -192,21 +192,31 @@ static int exchange_protocols(int f_in, int f_out, char *buf, size_t bufsiz, int
 
 int start_inband_exchange(int f_in, int f_out, const char *user, int argc, char *argv[])
 {
-       int i;
+       int i, modlen;
        char line[BIGPATHBUFLEN];
        char *sargs[MAX_ARGS];
        int sargc = 0;
-       char *p, *path = *argv;
+       char *p, *modname;
 
-       if (argc == 0 && !am_sender)
-               list_only |= 1;
+       assert(argc > 0);
 
-       if (*path == '/') {
+       if (**argv == '/') {
                rprintf(FERROR,
                        "ERROR: The remote path must start with a module name\n");
                return -1;
        }
 
+       if (!(p = strchr(*argv, '/')))
+               modlen = strlen(*argv);
+       else
+               modlen = p - *argv;
+
+       if (!(modname = new_array(char, modlen+1+1))) /* room for '/' & '\0' */
+               out_of_memory("start_inband_exchange");
+       strlcpy(modname, *argv, modlen + 1);
+       modname[modlen] = '/';
+       modname[modlen+1] = '\0';
+
        if (!user)
                user = getenv("USER");
        if (!user)
@@ -215,9 +225,6 @@ int start_inband_exchange(int f_in, int f_out, const char *user, int argc, char
        if (exchange_protocols(f_in, f_out, line, sizeof line, 1) < 0)
                return -1;
 
-       if (list_only && protocol_version >= 29)
-               list_only |= 2;
-
        /* set daemon_over_rsh to false since we need to build the
         * true set of args passed through the rsh/ssh connection;
         * this is a no-op for direct-socket-connection mode */
@@ -235,7 +242,12 @@ int start_inband_exchange(int f_in, int f_out, const char *user, int argc, char
                        rprintf(FERROR, "internal: args[] overflowed in do_cmd()\n");
                        exit_cleanup(RERR_SYNTAX);
                }
-               sargs[sargc++] = *argv++;
+               if (list_only && strncmp(*argv, modname, modlen) == 0
+                && argv[0][modlen] == '\0')
+                       sargs[sargc++] = modname; /* we send "modname/" */
+               else
+                       sargs[sargc++] = *argv;
+               argv++;
                argc--;
        }
 
@@ -244,10 +256,7 @@ int start_inband_exchange(int f_in, int f_out, const char *user, int argc, char
        if (verbose > 1)
                print_child_argv("sending daemon args:", sargs);
 
-       p = strchr(path, '/');
-       if (p) *p = '\0';
-       io_printf(f_out, "%s\n", path);
-       if (p) *p = '/';
+       io_printf(f_out, "%.*s\n", modlen, modname);
 
        /* Old servers may just drop the connection here,
         rather than sending a proper EXIT command.  Yuck. */
@@ -306,6 +315,8 @@ int start_inband_exchange(int f_in, int f_out, const char *user, int argc, char
                        io_start_multiplex_in();
        }
 
+       free(modname);
+
        return 0;
 }
 
@@ -839,9 +850,70 @@ int start_daemon(int f_in, int f_out)
        return rsync_module(f_in, f_out, i, addr, host);
 }
 
+static void create_pid_file(void)
+{
+       char *pid_file = lp_pid_file();
+       char pidbuf[16];
+       pid_t pid = getpid();
+       int fd;
+
+       if (!pid_file || !*pid_file)
+               return;
+
+       cleanup_set_pid(pid);
+       if ((fd = do_open(pid_file, O_WRONLY|O_CREAT|O_EXCL, 0666 & ~orig_umask)) == -1) {
+               cleanup_set_pid(0);
+               fprintf(stderr, "failed to create pid file %s: %s\n", pid_file, strerror(errno));
+               rsyserr(FLOG, errno, "failed to create pid file %s", pid_file);
+               exit_cleanup(RERR_FILEIO);
+       }
+       snprintf(pidbuf, sizeof pidbuf, "%ld\n", (long)pid);
+       write(fd, pidbuf, strlen(pidbuf));
+       close(fd);
+}
+
+/* Become a daemon, discarding the controlling terminal. */
+static void become_daemon(void)
+{
+       int i;
+       pid_t pid = fork();
+
+       if (pid) {
+               if (pid < 0) {
+                       fprintf(stderr, "failed to fork: %s\n", strerror(errno));
+                       exit_cleanup(RERR_FILEIO);
+               }
+               _exit(0);
+       }
+
+       create_pid_file();
+
+       /* detach from the terminal */
+#ifdef HAVE_SETSID
+       setsid();
+#elif defined TIOCNOTTY
+       i = open("/dev/tty", O_RDWR);
+       if (i >= 0) {
+               ioctl(i, (int)TIOCNOTTY, (char *)0);
+               close(i);
+       }
+#endif
+       /* make sure that stdin, stdout an stderr don't stuff things
+        * up (library functions, for example) */
+       for (i = 0; i < 3; i++) {
+               close(i);
+               open("/dev/null", O_RDWR);
+       }
+}
+
 int daemon_main(void)
 {
-       char *pid_file;
+       if (!config_file) {
+               if (am_server && am_root <= 0)
+                       config_file = RSYNCD_USERCONF;
+               else
+                       config_file = RSYNCD_SYSCONF;
+       }
 
        if (is_a_socket(STDIN_FILENO)) {
                int i;
@@ -857,11 +929,15 @@ int daemon_main(void)
                return start_daemon(STDIN_FILENO, STDIN_FILENO);
        }
 
-       if (!no_detach)
-               become_daemon();
-
-       if (!lp_load(config_file, 1))
+       if (!lp_load(config_file, 1)) {
+               fprintf(stderr, "Failed to parse config file: %s\n", config_file);
                exit_cleanup(RERR_SYNTAX);
+       }
+
+       if (no_detach)
+               create_pid_file();
+       else
+               become_daemon();
 
        if (rsync_port == 0 && (rsync_port = lp_rsync_port()) == 0)
                rsync_port = RSYNC_PORT;
@@ -876,23 +952,6 @@ int daemon_main(void)
         * address too.  In fact, why not just do inet_ntop on the
         * local address??? */
 
-       if (((pid_file = lp_pid_file()) != NULL) && (*pid_file != '\0')) {
-               char pidbuf[16];
-               int fd;
-               pid_t pid = getpid();
-               cleanup_set_pid(pid);
-               if ((fd = do_open(lp_pid_file(), O_WRONLY|O_CREAT|O_TRUNC,
-                                       0666 & ~orig_umask)) == -1) {
-                       cleanup_set_pid(0);
-                       rsyserr(FLOG, errno, "failed to create pid file %s",
-                               pid_file);
-                       exit_cleanup(RERR_FILEIO);
-               }
-               snprintf(pidbuf, sizeof pidbuf, "%ld\n", (long)pid);
-               write(fd, pidbuf, strlen(pidbuf));
-               close(fd);
-       }
-
        start_accept_loop(rsync_port, start_daemon);
        return -1;
 }