]> andersk Git - openssh.git/blobdiff - sftp.c
- (dtucker) [configure.ac] Move openpty/ctty test outside of case statement
[openssh.git] / sftp.c
diff --git a/sftp.c b/sftp.c
index b9558efd71a2a8cbfcb74d9d6467c802a91cddf9..4354bfd44cde1b5e94c020e0c5e7b522571d5391 100644 (file)
--- a/sftp.c
+++ b/sftp.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2001 Damien Miller.  All rights reserved.
+ * Copyright (c) 2001,2002 Damien Miller.  All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
 
 #include "includes.h"
 
-RCSID("$OpenBSD: sftp.c,v 1.19 2001/09/17 17:57:57 stevesk Exp $");
-
-/* XXX: commandline mode */
-/* XXX: short-form remote directory listings (like 'ls -C') */
+RCSID("$OpenBSD: sftp.c,v 1.37 2003/07/10 20:05:55 markus Exp $");
 
 #include "buffer.h"
 #include "xmalloc.h"
@@ -46,15 +43,30 @@ extern char *__progname;
 char *__progname;
 #endif
 
-char *ssh_program = _PATH_SSH_PROGRAM;
 FILE* infile;
+size_t copy_buffer_len = 32768;
+size_t num_requests = 16;
+static pid_t sshpid = -1;
+
+extern int showprogress;
+
+static void
+killchild(int signo)
+{
+       if (sshpid > 1)
+               kill(sshpid, signo);
+
+       _exit(1);
+}
 
 static void
-connect_to_server(char **args, int *in, int *out, pid_t *sshpid)
+connect_to_server(char *path, char **args, int *in, int *out)
 {
        int c_in, c_out;
+
 #ifdef USE_PIPES
        int pin[2], pout[2];
+
        if ((pipe(pin) == -1) || (pipe(pout) == -1))
                fatal("pipe: %s", strerror(errno));
        *in = pin[0];
@@ -63,15 +75,16 @@ connect_to_server(char **args, int *in, int *out, pid_t *sshpid)
        c_out = pin[1];
 #else /* USE_PIPES */
        int inout[2];
+
        if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) == -1)
                fatal("socketpair: %s", strerror(errno));
        *in = *out = inout[0];
        c_in = c_out = inout[1];
 #endif /* USE_PIPES */
 
-       if ((*sshpid = fork()) == -1)
+       if ((sshpid = fork()) == -1)
                fatal("fork: %s", strerror(errno));
-       else if (*sshpid == 0) {
+       else if (sshpid == 0) {
                if ((dup2(c_in, STDIN_FILENO) == -1) ||
                    (dup2(c_out, STDOUT_FILENO) == -1)) {
                        fprintf(stderr, "dup2: %s\n", strerror(errno));
@@ -81,11 +94,14 @@ connect_to_server(char **args, int *in, int *out, pid_t *sshpid)
                close(*out);
                close(c_in);
                close(c_out);
-               execv(ssh_program, args);
-               fprintf(stderr, "exec: %s: %s\n", ssh_program, strerror(errno));
+               execv(path, args);
+               fprintf(stderr, "exec: %s: %s\n", path, strerror(errno));
                exit(1);
        }
 
+       signal(SIGTERM, killchild);
+       signal(SIGINT, killchild);
+       signal(SIGHUP, killchild);
        close(c_in);
        close(c_out);
 }
@@ -93,20 +109,24 @@ connect_to_server(char **args, int *in, int *out, pid_t *sshpid)
 static void
 usage(void)
 {
+       extern char *__progname;
+
        fprintf(stderr,
-           "usage: sftp [-1vC] [-b batchfile] [-F config] [-o option]\n"
-           "            [user@]host[:file [file]]\n");
+           "usage: %s [-vC1] [-b batchfile] [-o ssh_option] [-s subsystem | sftp_server]\n"
+           "            [-B buffer_size] [-F ssh_config] [-P sftp_server path]\n"
+           "            [-R num_requests] [-S program]\n"
+           "            [user@]host[:file [file]]\n", __progname);
        exit(1);
 }
 
 int
 main(int argc, char **argv)
 {
-       int in, out, ch;
-       pid_t sshpid;
+       int in, out, ch, err;
        char *host, *userhost, *cp, *file2;
        int debug_level = 0, sshver = 2;
        char *file1 = NULL, *sftp_server = NULL;
+       char *ssh_program = _PATH_SSH_PROGRAM, *sftp_direct = NULL;
        LogLevel ll = SYSLOG_LEVEL_INFO;
        arglist args;
        extern int optind;
@@ -114,14 +134,14 @@ main(int argc, char **argv)
 
        __progname = get_progname(argv[0]);
        args.list = NULL;
-       addargs(&args, "ssh");         /* overwritten with ssh_program */
-       addargs(&args, "-oFallBackToRsh no");
+       addargs(&args, "ssh");          /* overwritten with ssh_program */
        addargs(&args, "-oForwardX11 no");
        addargs(&args, "-oForwardAgent no");
+       addargs(&args, "-oClearAllForwardings yes");
        ll = SYSLOG_LEVEL_INFO;
        infile = stdin;         /* Read from STDIN unless changed by -b */
 
-       while ((ch = getopt(argc, argv, "1hvCo:s:S:b:F:")) != -1) {
+       while ((ch = getopt(argc, argv, "1hvCo:s:S:b:B:F:P:R:")) != -1) {
                switch (ch) {
                case 'C':
                        addargs(&args, "-C");
@@ -155,6 +175,21 @@ main(int argc, char **argv)
                                        fatal("%s (%s).", strerror(errno), optarg);
                        } else
                                fatal("Filename already specified.");
+                       showprogress = 0;
+                       break;
+               case 'P':
+                       sftp_direct = optarg;
+                       break;
+               case 'B':
+                       copy_buffer_len = strtol(optarg, &cp, 10);
+                       if (copy_buffer_len == 0 || *cp != '\0')
+                               fatal("Invalid buffer size \"%s\"", optarg);
+                       break;
+               case 'R':
+                       num_requests = strtol(optarg, &cp, 10);
+                       if (num_requests == 0 || *cp != '\0')
+                               fatal("Invalid number of requests \"%s\"",
+                                   optarg);
                        break;
                case 'h':
                default:
@@ -162,54 +197,63 @@ main(int argc, char **argv)
                }
        }
 
-       if (optind == argc || argc > (optind + 2))
-               usage();
+       log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
 
-       userhost = xstrdup(argv[optind]);
-       file2 = argv[optind+1];
+       if (sftp_direct == NULL) {
+               if (optind == argc || argc > (optind + 2))
+                       usage();
 
-       if ((cp = colon(userhost)) != NULL) {
-               *cp++ = '\0';
-               file1 = cp;
-       }
+               userhost = xstrdup(argv[optind]);
+               file2 = argv[optind+1];
 
-       if ((host = strchr(userhost, '@')) == NULL)
-               host = userhost;
-       else {
-               *host++ = '\0';
-               if (!userhost[0]) {
-                       fprintf(stderr, "Missing username\n");
-                       usage();
+               if ((cp = colon(userhost)) != NULL) {
+                       *cp++ = '\0';
+                       file1 = cp;
                }
-               addargs(&args, "-l%s",userhost);
-       }
 
-       host = cleanhostname(host);
-       if (!*host) {
-               fprintf(stderr, "Missing hostname\n");
-               usage();
-       }
+               if ((host = strrchr(userhost, '@')) == NULL)
+                       host = userhost;
+               else {
+                       *host++ = '\0';
+                       if (!userhost[0]) {
+                               fprintf(stderr, "Missing username\n");
+                               usage();
+                       }
+                       addargs(&args, "-l%s",userhost);
+               }
 
-       log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
-       addargs(&args, "-oProtocol %d", sshver);
+               host = cleanhostname(host);
+               if (!*host) {
+                       fprintf(stderr, "Missing hostname\n");
+                       usage();
+               }
+
+               addargs(&args, "-oProtocol %d", sshver);
 
-       /* no subsystem if the server-spec contains a '/' */
-       if (sftp_server == NULL || strchr(sftp_server, '/') == NULL) 
-               addargs(&args, "-s");
+               /* no subsystem if the server-spec contains a '/' */
+               if (sftp_server == NULL || strchr(sftp_server, '/') == NULL)
+                       addargs(&args, "-s");
 
-       addargs(&args, "%s", host);
-       addargs(&args, "%s", (sftp_server != NULL ? sftp_server : "sftp"));
-       args.list[0] = ssh_program;
+               addargs(&args, "%s", host);
+               addargs(&args, "%s", (sftp_server != NULL ?
+                   sftp_server : "sftp"));
+               args.list[0] = ssh_program;
 
-       fprintf(stderr, "Connecting to %s...\n", host);
+               fprintf(stderr, "Connecting to %s...\n", host);
+               connect_to_server(ssh_program, args.list, &in, &out);
+       } else {
+               args.list = NULL;
+               addargs(&args, "sftp-server");
 
-       connect_to_server(args.list, &in, &out, &sshpid);
+               fprintf(stderr, "Attaching to %s...\n", sftp_direct);
+               connect_to_server(sftp_direct, args.list, &in, &out);
+       }
 
-       interactive_loop(in, out, file1, file2);
+       err = interactive_loop(in, out, file1, file2);
 
 #if !defined(USE_PIPES)
-        shutdown(in, SHUT_RDWR);
-        shutdown(out, SHUT_RDWR);
+       shutdown(in, SHUT_RDWR);
+       shutdown(out, SHUT_RDWR);
 #endif
 
        close(in);
@@ -217,8 +261,10 @@ main(int argc, char **argv)
        if (infile != stdin)
                fclose(infile);
 
-       if (waitpid(sshpid, NULL, 0) == -1)
-               fatal("Couldn't wait for ssh process: %s", strerror(errno));
+       while (waitpid(sshpid, NULL, 0) == -1)
+               if (errno != EINTR)
+                       fatal("Couldn't wait for ssh process: %s",
+                           strerror(errno));
 
-       exit(0);
+       exit(err == 0 ? 0 : 1);
 }
This page took 0.046405 seconds and 4 git commands to generate.