2001-02-04 15:20:18 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2001 Damien Miller. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
2001-05-04 03:39:53 +04:00
|
|
|
RCSID("$OpenBSD: sftp.c,v 1.16 2001/05/03 23:09:53 mouring Exp $");
|
2001-02-04 15:20:18 +03:00
|
|
|
|
|
|
|
/* XXX: commandline mode */
|
|
|
|
/* XXX: short-form remote directory listings (like 'ls -C') */
|
|
|
|
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "xmalloc.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "pathnames.h"
|
2001-05-04 03:39:53 +04:00
|
|
|
#include "misc.h"
|
2001-02-04 15:20:18 +03:00
|
|
|
|
|
|
|
#include "sftp.h"
|
|
|
|
#include "sftp-common.h"
|
|
|
|
#include "sftp-client.h"
|
|
|
|
#include "sftp-int.h"
|
|
|
|
|
2001-03-05 22:50:57 +03:00
|
|
|
#ifdef HAVE___PROGNAME
|
|
|
|
extern char *__progname;
|
|
|
|
#else
|
|
|
|
char *__progname;
|
|
|
|
#endif
|
|
|
|
|
2001-02-09 16:40:03 +03:00
|
|
|
int use_ssh1 = 0;
|
|
|
|
char *ssh_program = _PATH_SSH_PROGRAM;
|
|
|
|
char *sftp_server = NULL;
|
2001-03-07 04:26:48 +03:00
|
|
|
FILE* infile;
|
2001-02-09 16:40:03 +03:00
|
|
|
|
2001-02-04 15:20:18 +03:00
|
|
|
void
|
|
|
|
connect_to_server(char **args, int *in, int *out, pid_t *sshpid)
|
|
|
|
{
|
|
|
|
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];
|
|
|
|
*out = pout[1];
|
|
|
|
c_in = pout[0];
|
|
|
|
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)
|
|
|
|
fatal("fork: %s", strerror(errno));
|
|
|
|
else if (*sshpid == 0) {
|
|
|
|
if ((dup2(c_in, STDIN_FILENO) == -1) ||
|
|
|
|
(dup2(c_out, STDOUT_FILENO) == -1)) {
|
|
|
|
fprintf(stderr, "dup2: %s\n", strerror(errno));
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
close(*in);
|
|
|
|
close(*out);
|
|
|
|
close(c_in);
|
|
|
|
close(c_out);
|
2001-02-09 16:40:03 +03:00
|
|
|
execv(ssh_program, args);
|
|
|
|
fprintf(stderr, "exec: %s: %s\n", ssh_program, strerror(errno));
|
2001-02-04 15:20:18 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
close(c_in);
|
|
|
|
close(c_out);
|
|
|
|
}
|
|
|
|
|
|
|
|
char **
|
|
|
|
make_ssh_args(char *add_arg)
|
|
|
|
{
|
|
|
|
static char **args = NULL;
|
|
|
|
static int nargs = 0;
|
|
|
|
char debug_buf[4096];
|
2001-03-05 10:10:47 +03:00
|
|
|
int i;
|
2001-02-04 15:20:18 +03:00
|
|
|
|
|
|
|
/* Init args array */
|
|
|
|
if (args == NULL) {
|
2001-03-05 10:10:47 +03:00
|
|
|
nargs = 2;
|
2001-02-04 15:20:18 +03:00
|
|
|
i = 0;
|
|
|
|
args = xmalloc(sizeof(*args) * nargs);
|
|
|
|
args[i++] = "ssh";
|
|
|
|
args[i++] = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If asked to add args, then do so and return */
|
|
|
|
if (add_arg) {
|
|
|
|
i = nargs++ - 1;
|
|
|
|
args = xrealloc(args, sizeof(*args) * nargs);
|
|
|
|
args[i++] = add_arg;
|
|
|
|
args[i++] = NULL;
|
|
|
|
return(NULL);
|
|
|
|
}
|
|
|
|
|
2001-03-05 10:10:47 +03:00
|
|
|
/* no subsystem if the server-spec contains a '/' */
|
|
|
|
if (sftp_server == NULL || strchr(sftp_server, '/') == NULL)
|
|
|
|
make_ssh_args("-s");
|
|
|
|
make_ssh_args("-oForwardX11=no");
|
|
|
|
make_ssh_args("-oForwardAgent=no");
|
|
|
|
make_ssh_args(use_ssh1 ? "-oProtocol=1" : "-oProtocol=2");
|
|
|
|
|
2001-02-04 15:20:18 +03:00
|
|
|
/* Otherwise finish up and return the arg array */
|
2001-02-09 16:40:03 +03:00
|
|
|
if (sftp_server != NULL)
|
|
|
|
make_ssh_args(sftp_server);
|
|
|
|
else
|
|
|
|
make_ssh_args("sftp");
|
2001-02-04 15:20:18 +03:00
|
|
|
|
|
|
|
/* XXX: overflow - doesn't grow debug_buf */
|
|
|
|
debug_buf[0] = '\0';
|
|
|
|
for(i = 0; args[i]; i++) {
|
|
|
|
if (i)
|
|
|
|
strlcat(debug_buf, " ", sizeof(debug_buf));
|
|
|
|
|
|
|
|
strlcat(debug_buf, args[i], sizeof(debug_buf));
|
|
|
|
}
|
|
|
|
debug("SSH args \"%s\"", debug_buf);
|
|
|
|
|
|
|
|
return(args);
|
|
|
|
}
|
|
|
|
|
2001-02-05 15:42:17 +03:00
|
|
|
void
|
2001-02-04 15:20:18 +03:00
|
|
|
usage(void)
|
|
|
|
{
|
2001-04-13 04:00:14 +04:00
|
|
|
fprintf(stderr, "usage: sftp [-1vC] [-b batchfile] [-osshopt=value] [user@]host[:file [file]]\n");
|
2001-02-04 15:20:18 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2001-02-05 15:42:17 +03:00
|
|
|
int
|
2001-02-04 15:20:18 +03:00
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
2001-02-09 16:40:03 +03:00
|
|
|
int in, out, ch, debug_level, compress_flag;
|
2001-02-04 15:20:18 +03:00
|
|
|
pid_t sshpid;
|
2001-04-13 04:00:14 +04:00
|
|
|
char *file1 = NULL;
|
|
|
|
char *host, *userhost, *cp, *file2;
|
2001-02-04 15:20:18 +03:00
|
|
|
LogLevel ll;
|
2001-02-09 16:40:03 +03:00
|
|
|
extern int optind;
|
|
|
|
extern char *optarg;
|
2001-02-04 15:20:18 +03:00
|
|
|
|
2001-03-05 22:50:57 +03:00
|
|
|
__progname = get_progname(argv[0]);
|
2001-03-07 04:26:48 +03:00
|
|
|
infile = stdin; /* Read from STDIN unless changed by -b */
|
2001-02-04 15:20:18 +03:00
|
|
|
debug_level = compress_flag = 0;
|
2001-02-09 16:40:03 +03:00
|
|
|
|
2001-03-07 04:26:48 +03:00
|
|
|
while ((ch = getopt(argc, argv, "1hvCo:s:S:b:")) != -1) {
|
2001-02-09 16:40:03 +03:00
|
|
|
switch (ch) {
|
|
|
|
case 'C':
|
2001-02-04 15:20:18 +03:00
|
|
|
compress_flag = 1;
|
2001-02-09 16:40:03 +03:00
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
debug_level = MIN(3, debug_level + 1);
|
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
make_ssh_args("-o");
|
|
|
|
make_ssh_args(optarg);
|
|
|
|
break;
|
|
|
|
case '1':
|
|
|
|
use_ssh1 = 1;
|
|
|
|
if (sftp_server == NULL)
|
|
|
|
sftp_server = _PATH_SFTP_SERVER;
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
sftp_server = optarg;
|
|
|
|
break;
|
|
|
|
case 'S':
|
|
|
|
ssh_program = optarg;
|
|
|
|
break;
|
2001-03-07 04:26:48 +03:00
|
|
|
case 'b':
|
|
|
|
if (infile == stdin) {
|
|
|
|
infile = fopen(optarg, "r");
|
2001-04-06 03:26:32 +04:00
|
|
|
if (infile == NULL)
|
2001-03-07 04:26:48 +03:00
|
|
|
fatal("%s (%s).", strerror(errno), optarg);
|
2001-04-06 03:26:32 +04:00
|
|
|
} else
|
2001-03-07 04:26:48 +03:00
|
|
|
fatal("Filename already specified.");
|
|
|
|
break;
|
2001-02-09 16:40:03 +03:00
|
|
|
case 'h':
|
|
|
|
default:
|
2001-02-04 15:20:18 +03:00
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-13 04:00:14 +04:00
|
|
|
if (optind == argc || argc > (optind + 2))
|
2001-02-04 15:20:18 +03:00
|
|
|
usage();
|
|
|
|
|
2001-04-10 06:40:17 +04:00
|
|
|
userhost = xstrdup(argv[optind]);
|
2001-04-13 04:00:14 +04:00
|
|
|
file2 = argv[optind+1];
|
|
|
|
|
2001-04-16 12:26:41 +04:00
|
|
|
if ((cp = colon(userhost)) != NULL) {
|
2001-04-13 04:00:14 +04:00
|
|
|
*cp++ = '\0';
|
|
|
|
file1 = cp;
|
|
|
|
}
|
2001-02-09 16:40:03 +03:00
|
|
|
|
|
|
|
if ((host = strchr(userhost, '@')) == NULL)
|
|
|
|
host = userhost;
|
2001-02-04 15:20:18 +03:00
|
|
|
else {
|
2001-04-13 04:00:14 +04:00
|
|
|
*host++ = '\0';
|
2001-02-09 16:40:03 +03:00
|
|
|
if (!userhost[0]) {
|
2001-02-04 15:20:18 +03:00
|
|
|
fprintf(stderr, "Missing username\n");
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
make_ssh_args("-l");
|
2001-02-09 16:40:03 +03:00
|
|
|
make_ssh_args(userhost);
|
2001-02-04 15:20:18 +03:00
|
|
|
}
|
|
|
|
|
2001-04-16 12:26:41 +04:00
|
|
|
host = cleanhostname(host);
|
2001-02-09 16:40:03 +03:00
|
|
|
if (!*host) {
|
2001-02-04 15:20:18 +03:00
|
|
|
fprintf(stderr, "Missing hostname\n");
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set up logging and debug '-d' arguments to ssh */
|
|
|
|
ll = SYSLOG_LEVEL_INFO;
|
|
|
|
switch (debug_level) {
|
|
|
|
case 1:
|
|
|
|
ll = SYSLOG_LEVEL_DEBUG1;
|
|
|
|
make_ssh_args("-v");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
ll = SYSLOG_LEVEL_DEBUG2;
|
|
|
|
make_ssh_args("-v");
|
|
|
|
make_ssh_args("-v");
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
ll = SYSLOG_LEVEL_DEBUG3;
|
|
|
|
make_ssh_args("-v");
|
|
|
|
make_ssh_args("-v");
|
|
|
|
make_ssh_args("-v");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (compress_flag)
|
|
|
|
make_ssh_args("-C");
|
|
|
|
|
|
|
|
log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
|
|
|
|
|
2001-02-09 16:40:03 +03:00
|
|
|
make_ssh_args(host);
|
2001-02-04 15:20:18 +03:00
|
|
|
|
2001-02-09 16:40:03 +03:00
|
|
|
fprintf(stderr, "Connecting to %s...\n", host);
|
2001-02-04 15:20:18 +03:00
|
|
|
|
|
|
|
connect_to_server(make_ssh_args(NULL), &in, &out, &sshpid);
|
|
|
|
|
2001-04-13 04:00:14 +04:00
|
|
|
interactive_loop(in, out, file1, file2);
|
2001-02-04 15:20:18 +03:00
|
|
|
|
2001-02-26 23:04:45 +03:00
|
|
|
#if !defined(USE_PIPES)
|
|
|
|
shutdown(in, SHUT_RDWR);
|
|
|
|
shutdown(out, SHUT_RDWR);
|
|
|
|
#endif
|
|
|
|
|
2001-02-04 15:20:18 +03:00
|
|
|
close(in);
|
|
|
|
close(out);
|
2001-03-07 04:26:48 +03:00
|
|
|
if (infile != stdin)
|
|
|
|
fclose(infile);
|
2001-02-04 15:20:18 +03:00
|
|
|
|
2001-02-09 16:40:03 +03:00
|
|
|
if (waitpid(sshpid, NULL, 0) == -1)
|
|
|
|
fatal("Couldn't wait for ssh process: %s", strerror(errno));
|
2001-02-04 15:20:18 +03:00
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|