- djm@cvs.openbsd.org 2002/02/04 21:53:12

[sftp.1 sftp.c]
     Add "-P" option to directly connect to a local sftp-server. Should be useful
     for regression testing; ok markus@
This commit is contained in:
Damien Miller 2002-02-05 12:27:31 +11:00
parent ab57f35114
commit d14ee1e29c
3 changed files with 69 additions and 46 deletions

View File

@ -92,6 +92,10 @@
- stevesk@cvs.openbsd.org 2002/02/04 20:41:16 - stevesk@cvs.openbsd.org 2002/02/04 20:41:16
[ssh-add.1] [ssh-add.1]
more sync for default ssh-add identities; ok markus@ more sync for default ssh-add identities; ok markus@
- djm@cvs.openbsd.org 2002/02/04 21:53:12
[sftp.1 sftp.c]
Add "-P" option to directly connect to a local sftp-server. Should be
useful for regression testing; ok markus@
20020130 20020130
- (djm) Delay PRNG seeding until we need it in ssh-keygen, from markus@ - (djm) Delay PRNG seeding until we need it in ssh-keygen, from markus@
@ -7494,4 +7498,4 @@
- Wrote replacements for strlcpy and mkdtemp - Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1 - Released 1.0pre1
$Id: ChangeLog,v 1.1824 2002/02/05 01:26:58 djm Exp $ $Id: ChangeLog,v 1.1825 2002/02/05 01:27:31 djm Exp $

9
sftp.1
View File

@ -1,4 +1,4 @@
.\" $OpenBSD: sftp.1,v 1.26 2001/09/17 20:38:09 stevesk Exp $ .\" $OpenBSD: sftp.1,v 1.27 2002/02/04 21:53:11 djm Exp $
.\" .\"
.\" Copyright (c) 2001 Damien Miller. All rights reserved. .\" Copyright (c) 2001 Damien Miller. All rights reserved.
.\" .\"
@ -34,6 +34,7 @@
.Op Fl b Ar batchfile .Op Fl b Ar batchfile
.Op Fl F Ar ssh_config .Op Fl F Ar ssh_config
.Op Fl o Ar ssh_option .Op Fl o Ar ssh_option
.Op Fl P Ar sftp_server path
.Op Fl s Ar subsystem | sftp_server .Op Fl s Ar subsystem | sftp_server
.Op Fl S Ar program .Op Fl S Ar program
.Ar host .Ar host
@ -65,6 +66,12 @@ The options are as follows:
.Bl -tag -width Ds .Bl -tag -width Ds
.It Fl 1 .It Fl 1
Specify the use of protocol version 1. Specify the use of protocol version 1.
.It Fl P Ar sftp_server path
Connect directly to a local
.Nm sftp-server
(rather than via
.Nm ssh )
This option may be useful in debugging the client and server.
.It Fl b Ar batchfile .It Fl b Ar batchfile
Batch mode reads a series of commands from an input Batch mode reads a series of commands from an input
.Ar batchfile .Ar batchfile

100
sftp.c
View File

@ -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 * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
@ -24,9 +24,8 @@
#include "includes.h" #include "includes.h"
RCSID("$OpenBSD: sftp.c,v 1.22 2001/12/19 07:18:56 deraadt Exp $"); RCSID("$OpenBSD: sftp.c,v 1.23 2002/02/04 21:53:12 djm Exp $");
/* XXX: commandline mode */
/* XXX: short-form remote directory listings (like 'ls -C') */ /* XXX: short-form remote directory listings (like 'ls -C') */
#include "buffer.h" #include "buffer.h"
@ -46,11 +45,10 @@ extern char *__progname;
char *__progname; char *__progname;
#endif #endif
char *ssh_program = _PATH_SSH_PROGRAM;
FILE* infile; FILE* infile;
static void 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, pid_t *sshpid)
{ {
int c_in, c_out; int c_in, c_out;
#ifdef USE_PIPES #ifdef USE_PIPES
@ -81,8 +79,8 @@ connect_to_server(char **args, int *in, int *out, pid_t *sshpid)
close(*out); close(*out);
close(c_in); close(c_in);
close(c_out); close(c_out);
execv(ssh_program, args); execv(path, args);
fprintf(stderr, "exec: %s: %s\n", ssh_program, strerror(errno)); fprintf(stderr, "exec: %s: %s\n", path, strerror(errno));
exit(1); exit(1);
} }
@ -107,6 +105,7 @@ main(int argc, char **argv)
char *host, *userhost, *cp, *file2; char *host, *userhost, *cp, *file2;
int debug_level = 0, sshver = 2; int debug_level = 0, sshver = 2;
char *file1 = NULL, *sftp_server = NULL; char *file1 = NULL, *sftp_server = NULL;
char *ssh_program = _PATH_SSH_PROGRAM, *sftp_direct = NULL;
LogLevel ll = SYSLOG_LEVEL_INFO; LogLevel ll = SYSLOG_LEVEL_INFO;
arglist args; arglist args;
extern int optind; extern int optind;
@ -122,7 +121,7 @@ main(int argc, char **argv)
ll = SYSLOG_LEVEL_INFO; ll = SYSLOG_LEVEL_INFO;
infile = stdin; /* Read from STDIN unless changed by -b */ 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:F:P:")) != -1) {
switch (ch) { switch (ch) {
case 'C': case 'C':
addargs(&args, "-C"); addargs(&args, "-C");
@ -157,55 +156,68 @@ main(int argc, char **argv)
} else } else
fatal("Filename already specified."); fatal("Filename already specified.");
break; break;
case 'P':
sftp_direct = optarg;
break;
case 'h': case 'h':
default: default:
usage(); usage();
} }
} }
if (optind == argc || argc > (optind + 2)) if (sftp_direct == NULL) {
usage(); if (optind == argc || argc > (optind + 2))
usage();
userhost = xstrdup(argv[optind]); userhost = xstrdup(argv[optind]);
file2 = argv[optind+1]; file2 = argv[optind+1];
if ((cp = colon(userhost)) != NULL) { if ((cp = colon(userhost)) != NULL) {
*cp++ = '\0'; *cp++ = '\0';
file1 = cp; file1 = cp;
} }
if ((host = strchr(userhost, '@')) == NULL) if ((host = strchr(userhost, '@')) == NULL)
host = userhost; host = userhost;
else { else {
*host++ = '\0'; *host++ = '\0';
if (!userhost[0]) { if (!userhost[0]) {
fprintf(stderr, "Missing username\n"); fprintf(stderr, "Missing username\n");
usage();
}
addargs(&args, "-l%s",userhost);
}
host = cleanhostname(host);
if (!*host) {
fprintf(stderr, "Missing hostname\n");
usage(); usage();
} }
addargs(&args, "-l%s",userhost);
log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
addargs(&args, "-oProtocol %d", sshver);
/* 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;
fprintf(stderr, "Connecting to %s...\n", host);
connect_to_server(ssh_program, args.list, &in, &out,
&sshpid);
} else {
args.list = NULL;
addargs(&args, "sftp-server");
fprintf(stderr, "Attaching to %s...\n", sftp_direct);
connect_to_server(sftp_direct, args.list, &in, &out,
&sshpid);
} }
host = cleanhostname(host);
if (!*host) {
fprintf(stderr, "Missing hostname\n");
usage();
}
log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
addargs(&args, "-oProtocol %d", sshver);
/* 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;
fprintf(stderr, "Connecting to %s...\n", host);
connect_to_server(args.list, &in, &out, &sshpid);
interactive_loop(in, out, file1, file2); interactive_loop(in, out, file1, file2);
#if !defined(USE_PIPES) #if !defined(USE_PIPES)