1997-08-23 11:32:50 +04:00
|
|
|
/* $NetBSD: main.c,v 1.25 1997/08/23 07:32:54 lukem Exp $ */
|
1996-11-25 08:13:18 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-08-25 07:47:50 +04:00
|
|
|
* Copyright (c) 1985, 1989, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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.
|
|
|
|
*/
|
|
|
|
|
1997-07-20 13:45:35 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifndef lint
|
1997-07-20 13:45:35 +04:00
|
|
|
__COPYRIGHT("@(#) Copyright (c) 1985, 1989, 1993, 1994\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n");
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1995-09-08 05:05:59 +04:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 10/9/94";
|
|
|
|
#else
|
1997-08-23 11:32:50 +04:00
|
|
|
__RCSID("$NetBSD: main.c,v 1.25 1997/08/23 07:32:54 lukem Exp $");
|
1995-09-08 05:05:59 +04:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* FTP User Program -- Command Interface.
|
|
|
|
*/
|
|
|
|
#include <sys/types.h>
|
1994-08-25 07:47:50 +04:00
|
|
|
#include <sys/socket.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-08-25 07:47:50 +04:00
|
|
|
#include <err.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <netdb.h>
|
|
|
|
#include <pwd.h>
|
1994-08-25 07:47:50 +04:00
|
|
|
#include <stdio.h>
|
1997-06-10 11:04:43 +04:00
|
|
|
#include <stdlib.h>
|
1995-09-14 05:39:52 +04:00
|
|
|
#include <string.h>
|
1994-08-25 07:47:50 +04:00
|
|
|
#include <unistd.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-08-25 07:47:50 +04:00
|
|
|
#include "ftp_var.h"
|
1997-08-23 11:32:50 +04:00
|
|
|
#include "pathnames.h"
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-07-20 13:45:35 +04:00
|
|
|
int main __P((int, char **));
|
|
|
|
|
1994-08-25 07:47:50 +04:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
main(argc, argv)
|
1994-08-25 07:47:50 +04:00
|
|
|
int argc;
|
1993-03-21 12:45:37 +03:00
|
|
|
char *argv[];
|
|
|
|
{
|
1997-01-19 17:19:02 +03:00
|
|
|
struct servent *sp;
|
1997-07-20 13:45:35 +04:00
|
|
|
int ch, top, rval;
|
|
|
|
long port;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct passwd *pw = NULL;
|
1997-08-18 14:20:13 +04:00
|
|
|
char *cp, *ep, homedir[MAXPATHLEN];
|
1997-06-10 11:04:43 +04:00
|
|
|
int dumbterm;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
sp = getservbyname("ftp", "tcp");
|
1994-08-25 07:47:50 +04:00
|
|
|
if (sp == 0)
|
1997-01-19 17:19:02 +03:00
|
|
|
ftpport = htons(FTP_PORT); /* good fallback */
|
|
|
|
else
|
|
|
|
ftpport = sp->s_port;
|
|
|
|
sp = getservbyname("http", "tcp");
|
|
|
|
if (sp == 0)
|
|
|
|
httpport = htons(HTTP_PORT); /* good fallback */
|
|
|
|
else
|
|
|
|
httpport = sp->s_port;
|
1997-08-18 14:20:13 +04:00
|
|
|
gateport = 0;
|
|
|
|
cp = getenv("FTPSERVERPORT");
|
|
|
|
if (cp != NULL) {
|
|
|
|
port = strtol(cp, &ep, 10);
|
|
|
|
if (port < 1 || port > 0xffff || *ep != '\0')
|
|
|
|
warnx("bad FTPSERVERPORT port number: %s (ignored)",
|
|
|
|
cp);
|
|
|
|
else
|
|
|
|
gateport = htons(port);
|
|
|
|
}
|
|
|
|
if (gateport == 0) {
|
|
|
|
sp = getservbyname("ftpgate", "tcp");
|
|
|
|
if (sp == 0)
|
|
|
|
gateport = htons(GATE_PORT);
|
|
|
|
else
|
|
|
|
gateport = sp->s_port;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
doglob = 1;
|
|
|
|
interactive = 1;
|
|
|
|
autologin = 1;
|
1996-11-25 08:13:18 +03:00
|
|
|
passivemode = 0;
|
1996-11-28 06:12:28 +03:00
|
|
|
preserve = 1;
|
[Yet Another Huge Ftp Commit - hopefully the last for a while,
barring any more little things people want added ...]
New features:
* progressmeter is now asynchronous, so "stalled" transfers can be
detected. "- stalled -" is displayed instead of the ETA in this case.
When the xfer resumes, the time that the xfer was stalled for is
factored out of the ETA. It is debatable whether this is better than
not factoring it out, but I like it this way (I.e, if it stalls for 8
seconds and the ETA was 30 seconds, when it resumes the ETA will still
be 30 seconds).
* verbosity can be disabled on the command line (-V), so that in auto-fetch
mode the only lines displayed will be a description of the file, and
the progress bar (if possible)
* if the screen is resized (and detected via the SIGWINCH signal), the
progress bar will rescale automatically.
Bugs fixed:
* progress bar will not use the last character on the line, as this can
cause problems on some terminals
* screen dimensions (via ioctl(TIOCWINSZ)) should use stdout not stdin
* progressmeter() used some vars before initialising them
* ^D will quit now. [fixes bin/3162]
* use hstrerror() to generate error message for host name lookup failure.
* use getcwd instead of getwd (it should have been OK, but why tempt fate?)
* auto-fetch transfers will always return a positive exit value upon failure
or interruption, relative to the file's position in argv[].
* remote completion of / will work, without putting a leading "///".
This is actually a bug in ftpd(1), where "NLST /" prefixes all names
with "//", but fixing every ftpd(1) is not an option...
1997-02-01 13:44:54 +03:00
|
|
|
verbose = 0;
|
|
|
|
progress = 0;
|
1997-08-18 14:20:13 +04:00
|
|
|
gatemode = 0;
|
1997-03-14 04:39:31 +03:00
|
|
|
#ifndef SMALL
|
1997-03-13 09:23:11 +03:00
|
|
|
editing = 0;
|
1997-04-05 07:27:32 +04:00
|
|
|
el = NULL;
|
|
|
|
hist = NULL;
|
1997-03-13 09:23:11 +03:00
|
|
|
#endif
|
1996-11-25 08:13:18 +03:00
|
|
|
mark = HASHBYTES;
|
1997-01-19 17:19:02 +03:00
|
|
|
marg_sl = sl_init();
|
1997-08-23 11:32:50 +04:00
|
|
|
if ((tmpdir = getenv("TMPDIR")) == NULL)
|
|
|
|
tmpdir = _PATH_TMP;
|
1994-08-25 07:47:50 +04:00
|
|
|
|
1996-12-29 07:05:29 +03:00
|
|
|
cp = strrchr(argv[0], '/');
|
|
|
|
cp = (cp == NULL) ? argv[0] : cp + 1;
|
|
|
|
if (strcmp(cp, "pftp") == 0)
|
|
|
|
passivemode = 1;
|
1997-08-18 14:20:13 +04:00
|
|
|
else if (strcmp(cp, "gate-ftp") == 0)
|
|
|
|
gatemode = 1;
|
|
|
|
|
|
|
|
gateserver = getenv("FTPSERVER");
|
|
|
|
if (gateserver == NULL || *gateserver == '\0')
|
|
|
|
gateserver = GATE_SERVER;
|
|
|
|
if (gatemode) {
|
|
|
|
if (*gateserver == '\0') {
|
|
|
|
warnx(
|
|
|
|
"Neither $FTPSERVER nor GATE_SERVER is defined; disabling gate-ftp");
|
|
|
|
gatemode = 0;
|
|
|
|
}
|
|
|
|
}
|
1996-12-29 07:05:29 +03:00
|
|
|
|
1997-06-10 11:04:43 +04:00
|
|
|
cp = getenv("TERM");
|
|
|
|
if (cp == NULL || strcmp(cp, "dumb") == 0)
|
|
|
|
dumbterm = 1;
|
|
|
|
else
|
|
|
|
dumbterm = 0;
|
[Yet Another Huge Ftp Commit - hopefully the last for a while,
barring any more little things people want added ...]
New features:
* progressmeter is now asynchronous, so "stalled" transfers can be
detected. "- stalled -" is displayed instead of the ETA in this case.
When the xfer resumes, the time that the xfer was stalled for is
factored out of the ETA. It is debatable whether this is better than
not factoring it out, but I like it this way (I.e, if it stalls for 8
seconds and the ETA was 30 seconds, when it resumes the ETA will still
be 30 seconds).
* verbosity can be disabled on the command line (-V), so that in auto-fetch
mode the only lines displayed will be a description of the file, and
the progress bar (if possible)
* if the screen is resized (and detected via the SIGWINCH signal), the
progress bar will rescale automatically.
Bugs fixed:
* progress bar will not use the last character on the line, as this can
cause problems on some terminals
* screen dimensions (via ioctl(TIOCWINSZ)) should use stdout not stdin
* progressmeter() used some vars before initialising them
* ^D will quit now. [fixes bin/3162]
* use hstrerror() to generate error message for host name lookup failure.
* use getcwd instead of getwd (it should have been OK, but why tempt fate?)
* auto-fetch transfers will always return a positive exit value upon failure
or interruption, relative to the file's position in argv[].
* remote completion of / will work, without putting a leading "///".
This is actually a bug in ftpd(1), where "NLST /" prefixes all names
with "//", but fixing every ftpd(1) is not an option...
1997-02-01 13:44:54 +03:00
|
|
|
fromatty = isatty(fileno(stdin));
|
1997-03-13 09:23:11 +03:00
|
|
|
if (fromatty) {
|
[Yet Another Huge Ftp Commit - hopefully the last for a while,
barring any more little things people want added ...]
New features:
* progressmeter is now asynchronous, so "stalled" transfers can be
detected. "- stalled -" is displayed instead of the ETA in this case.
When the xfer resumes, the time that the xfer was stalled for is
factored out of the ETA. It is debatable whether this is better than
not factoring it out, but I like it this way (I.e, if it stalls for 8
seconds and the ETA was 30 seconds, when it resumes the ETA will still
be 30 seconds).
* verbosity can be disabled on the command line (-V), so that in auto-fetch
mode the only lines displayed will be a description of the file, and
the progress bar (if possible)
* if the screen is resized (and detected via the SIGWINCH signal), the
progress bar will rescale automatically.
Bugs fixed:
* progress bar will not use the last character on the line, as this can
cause problems on some terminals
* screen dimensions (via ioctl(TIOCWINSZ)) should use stdout not stdin
* progressmeter() used some vars before initialising them
* ^D will quit now. [fixes bin/3162]
* use hstrerror() to generate error message for host name lookup failure.
* use getcwd instead of getwd (it should have been OK, but why tempt fate?)
* auto-fetch transfers will always return a positive exit value upon failure
or interruption, relative to the file's position in argv[].
* remote completion of / will work, without putting a leading "///".
This is actually a bug in ftpd(1), where "NLST /" prefixes all names
with "//", but fixing every ftpd(1) is not an option...
1997-02-01 13:44:54 +03:00
|
|
|
verbose = 1; /* verbose if from a tty */
|
1997-03-14 04:39:31 +03:00
|
|
|
#ifndef SMALL
|
1997-06-10 11:04:43 +04:00
|
|
|
if (! dumbterm)
|
|
|
|
editing = 1; /* editing mode on if tty is usable */
|
1997-03-13 09:23:11 +03:00
|
|
|
#endif
|
|
|
|
}
|
1997-06-10 11:04:43 +04:00
|
|
|
if (isatty(fileno(stdout)) && !dumbterm)
|
|
|
|
progress = 1; /* progress bar on if tty is usable */
|
[Yet Another Huge Ftp Commit - hopefully the last for a while,
barring any more little things people want added ...]
New features:
* progressmeter is now asynchronous, so "stalled" transfers can be
detected. "- stalled -" is displayed instead of the ETA in this case.
When the xfer resumes, the time that the xfer was stalled for is
factored out of the ETA. It is debatable whether this is better than
not factoring it out, but I like it this way (I.e, if it stalls for 8
seconds and the ETA was 30 seconds, when it resumes the ETA will still
be 30 seconds).
* verbosity can be disabled on the command line (-V), so that in auto-fetch
mode the only lines displayed will be a description of the file, and
the progress bar (if possible)
* if the screen is resized (and detected via the SIGWINCH signal), the
progress bar will rescale automatically.
Bugs fixed:
* progress bar will not use the last character on the line, as this can
cause problems on some terminals
* screen dimensions (via ioctl(TIOCWINSZ)) should use stdout not stdin
* progressmeter() used some vars before initialising them
* ^D will quit now. [fixes bin/3162]
* use hstrerror() to generate error message for host name lookup failure.
* use getcwd instead of getwd (it should have been OK, but why tempt fate?)
* auto-fetch transfers will always return a positive exit value upon failure
or interruption, relative to the file's position in argv[].
* remote completion of / will work, without putting a leading "///".
This is actually a bug in ftpd(1), where "NLST /" prefixes all names
with "//", but fixing every ftpd(1) is not an option...
1997-02-01 13:44:54 +03:00
|
|
|
|
1997-03-13 09:23:11 +03:00
|
|
|
while ((ch = getopt(argc, argv, "adeginpP:tvV")) != -1) {
|
1994-09-01 01:32:33 +04:00
|
|
|
switch (ch) {
|
1996-11-25 08:13:18 +03:00
|
|
|
case 'a':
|
|
|
|
anonftp = 1;
|
|
|
|
break;
|
|
|
|
|
1994-08-25 07:47:50 +04:00
|
|
|
case 'd':
|
|
|
|
options |= SO_DEBUG;
|
|
|
|
debug++;
|
|
|
|
break;
|
1996-11-25 08:13:18 +03:00
|
|
|
|
1997-03-13 09:23:11 +03:00
|
|
|
case 'e':
|
1997-03-14 04:39:31 +03:00
|
|
|
#ifndef SMALL
|
1997-03-13 09:23:11 +03:00
|
|
|
editing = 0;
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
|
1994-08-25 07:47:50 +04:00
|
|
|
case 'g':
|
|
|
|
doglob = 0;
|
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-08-25 07:47:50 +04:00
|
|
|
case 'i':
|
|
|
|
interactive = 0;
|
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-08-25 07:47:50 +04:00
|
|
|
case 'n':
|
|
|
|
autologin = 0;
|
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-11-25 08:13:18 +03:00
|
|
|
case 'p':
|
|
|
|
passivemode = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'P':
|
1997-08-18 14:20:13 +04:00
|
|
|
port = strtol(optarg, &ep, 10);
|
|
|
|
if (port < 1 || port > 0xffff || *ep != '\0')
|
1997-03-13 09:23:11 +03:00
|
|
|
warnx("bad port number: %s (ignored)", optarg);
|
1997-01-19 17:19:02 +03:00
|
|
|
else
|
|
|
|
ftpport = htons(port);
|
1996-11-25 08:13:18 +03:00
|
|
|
break;
|
|
|
|
|
1994-08-25 07:47:50 +04:00
|
|
|
case 't':
|
[Yet Another Huge Ftp Commit - hopefully the last for a while,
barring any more little things people want added ...]
New features:
* progressmeter is now asynchronous, so "stalled" transfers can be
detected. "- stalled -" is displayed instead of the ETA in this case.
When the xfer resumes, the time that the xfer was stalled for is
factored out of the ETA. It is debatable whether this is better than
not factoring it out, but I like it this way (I.e, if it stalls for 8
seconds and the ETA was 30 seconds, when it resumes the ETA will still
be 30 seconds).
* verbosity can be disabled on the command line (-V), so that in auto-fetch
mode the only lines displayed will be a description of the file, and
the progress bar (if possible)
* if the screen is resized (and detected via the SIGWINCH signal), the
progress bar will rescale automatically.
Bugs fixed:
* progress bar will not use the last character on the line, as this can
cause problems on some terminals
* screen dimensions (via ioctl(TIOCWINSZ)) should use stdout not stdin
* progressmeter() used some vars before initialising them
* ^D will quit now. [fixes bin/3162]
* use hstrerror() to generate error message for host name lookup failure.
* use getcwd instead of getwd (it should have been OK, but why tempt fate?)
* auto-fetch transfers will always return a positive exit value upon failure
or interruption, relative to the file's position in argv[].
* remote completion of / will work, without putting a leading "///".
This is actually a bug in ftpd(1), where "NLST /" prefixes all names
with "//", but fixing every ftpd(1) is not an option...
1997-02-01 13:44:54 +03:00
|
|
|
trace = 1;
|
1994-08-25 07:47:50 +04:00
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-08-25 07:47:50 +04:00
|
|
|
case 'v':
|
[Yet Another Huge Ftp Commit - hopefully the last for a while,
barring any more little things people want added ...]
New features:
* progressmeter is now asynchronous, so "stalled" transfers can be
detected. "- stalled -" is displayed instead of the ETA in this case.
When the xfer resumes, the time that the xfer was stalled for is
factored out of the ETA. It is debatable whether this is better than
not factoring it out, but I like it this way (I.e, if it stalls for 8
seconds and the ETA was 30 seconds, when it resumes the ETA will still
be 30 seconds).
* verbosity can be disabled on the command line (-V), so that in auto-fetch
mode the only lines displayed will be a description of the file, and
the progress bar (if possible)
* if the screen is resized (and detected via the SIGWINCH signal), the
progress bar will rescale automatically.
Bugs fixed:
* progress bar will not use the last character on the line, as this can
cause problems on some terminals
* screen dimensions (via ioctl(TIOCWINSZ)) should use stdout not stdin
* progressmeter() used some vars before initialising them
* ^D will quit now. [fixes bin/3162]
* use hstrerror() to generate error message for host name lookup failure.
* use getcwd instead of getwd (it should have been OK, but why tempt fate?)
* auto-fetch transfers will always return a positive exit value upon failure
or interruption, relative to the file's position in argv[].
* remote completion of / will work, without putting a leading "///".
This is actually a bug in ftpd(1), where "NLST /" prefixes all names
with "//", but fixing every ftpd(1) is not an option...
1997-02-01 13:44:54 +03:00
|
|
|
verbose = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'V':
|
|
|
|
verbose = 0;
|
1994-08-25 07:47:50 +04:00
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-08-25 07:47:50 +04:00
|
|
|
default:
|
1996-12-06 05:06:46 +03:00
|
|
|
usage();
|
1994-08-25 07:47:50 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-08-25 07:47:50 +04:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
cpend = 0; /* no pending replies */
|
|
|
|
proxy = 0; /* proxy not active */
|
|
|
|
crflag = 1; /* strip c.r. on ascii gets */
|
|
|
|
sendport = -1; /* not using ports */
|
|
|
|
/*
|
|
|
|
* Set up the home directory in case we're globbing.
|
|
|
|
*/
|
|
|
|
cp = getlogin();
|
|
|
|
if (cp != NULL) {
|
|
|
|
pw = getpwnam(cp);
|
|
|
|
}
|
|
|
|
if (pw == NULL)
|
|
|
|
pw = getpwuid(getuid());
|
|
|
|
if (pw != NULL) {
|
|
|
|
home = homedir;
|
1997-03-13 09:23:11 +03:00
|
|
|
(void)strcpy(home, pw->pw_dir);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1996-11-25 08:13:18 +03:00
|
|
|
|
[Yet Another Huge Ftp Commit - hopefully the last for a while,
barring any more little things people want added ...]
New features:
* progressmeter is now asynchronous, so "stalled" transfers can be
detected. "- stalled -" is displayed instead of the ETA in this case.
When the xfer resumes, the time that the xfer was stalled for is
factored out of the ETA. It is debatable whether this is better than
not factoring it out, but I like it this way (I.e, if it stalls for 8
seconds and the ETA was 30 seconds, when it resumes the ETA will still
be 30 seconds).
* verbosity can be disabled on the command line (-V), so that in auto-fetch
mode the only lines displayed will be a description of the file, and
the progress bar (if possible)
* if the screen is resized (and detected via the SIGWINCH signal), the
progress bar will rescale automatically.
Bugs fixed:
* progress bar will not use the last character on the line, as this can
cause problems on some terminals
* screen dimensions (via ioctl(TIOCWINSZ)) should use stdout not stdin
* progressmeter() used some vars before initialising them
* ^D will quit now. [fixes bin/3162]
* use hstrerror() to generate error message for host name lookup failure.
* use getcwd instead of getwd (it should have been OK, but why tempt fate?)
* auto-fetch transfers will always return a positive exit value upon failure
or interruption, relative to the file's position in argv[].
* remote completion of / will work, without putting a leading "///".
This is actually a bug in ftpd(1), where "NLST /" prefixes all names
with "//", but fixing every ftpd(1) is not an option...
1997-02-01 13:44:54 +03:00
|
|
|
setttywidth(0);
|
1997-03-13 09:23:11 +03:00
|
|
|
(void)signal(SIGWINCH, setttywidth);
|
[Yet Another Huge Ftp Commit - hopefully the last for a while,
barring any more little things people want added ...]
New features:
* progressmeter is now asynchronous, so "stalled" transfers can be
detected. "- stalled -" is displayed instead of the ETA in this case.
When the xfer resumes, the time that the xfer was stalled for is
factored out of the ETA. It is debatable whether this is better than
not factoring it out, but I like it this way (I.e, if it stalls for 8
seconds and the ETA was 30 seconds, when it resumes the ETA will still
be 30 seconds).
* verbosity can be disabled on the command line (-V), so that in auto-fetch
mode the only lines displayed will be a description of the file, and
the progress bar (if possible)
* if the screen is resized (and detected via the SIGWINCH signal), the
progress bar will rescale automatically.
Bugs fixed:
* progress bar will not use the last character on the line, as this can
cause problems on some terminals
* screen dimensions (via ioctl(TIOCWINSZ)) should use stdout not stdin
* progressmeter() used some vars before initialising them
* ^D will quit now. [fixes bin/3162]
* use hstrerror() to generate error message for host name lookup failure.
* use getcwd instead of getwd (it should have been OK, but why tempt fate?)
* auto-fetch transfers will always return a positive exit value upon failure
or interruption, relative to the file's position in argv[].
* remote completion of / will work, without putting a leading "///".
This is actually a bug in ftpd(1), where "NLST /" prefixes all names
with "//", but fixing every ftpd(1) is not an option...
1997-02-01 13:44:54 +03:00
|
|
|
|
1997-07-20 13:45:35 +04:00
|
|
|
#ifdef __GNUC__ /* XXX: to shut up gcc warnings */
|
|
|
|
(void)&argc;
|
|
|
|
(void)&argv;
|
|
|
|
#endif
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
if (argc > 0) {
|
1997-01-19 17:19:02 +03:00
|
|
|
if (strchr(argv[0], ':') != NULL) {
|
|
|
|
anonftp = 1; /* Handle "automatic" transfers. */
|
|
|
|
rval = auto_fetch(argc, argv);
|
|
|
|
if (rval >= 0) /* -1 == connected and cd-ed */
|
|
|
|
exit(rval);
|
|
|
|
} else {
|
|
|
|
char *xargv[5];
|
|
|
|
|
|
|
|
if (setjmp(toplevel))
|
|
|
|
exit(0);
|
1997-03-13 09:23:11 +03:00
|
|
|
(void)signal(SIGINT, (sig_t)intr);
|
|
|
|
(void)signal(SIGPIPE, (sig_t)lostpeer);
|
1997-01-19 17:19:02 +03:00
|
|
|
xargv[0] = __progname;
|
|
|
|
xargv[1] = argv[0];
|
|
|
|
xargv[2] = argv[1];
|
|
|
|
xargv[3] = argv[2];
|
|
|
|
xargv[4] = NULL;
|
|
|
|
setpeer(argc+1, xargv);
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1997-04-05 07:27:32 +04:00
|
|
|
#ifndef SMALL
|
|
|
|
controlediting();
|
|
|
|
#endif /* !SMALL */
|
1993-03-21 12:45:37 +03:00
|
|
|
top = setjmp(toplevel) == 0;
|
|
|
|
if (top) {
|
1997-03-13 09:23:11 +03:00
|
|
|
(void)signal(SIGINT, (sig_t)intr);
|
|
|
|
(void)signal(SIGPIPE, (sig_t)lostpeer);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
for (;;) {
|
|
|
|
cmdscanner(top);
|
|
|
|
top = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
intr()
|
|
|
|
{
|
|
|
|
|
[Yet Another Huge Ftp Commit - hopefully the last for a while,
barring any more little things people want added ...]
New features:
* progressmeter is now asynchronous, so "stalled" transfers can be
detected. "- stalled -" is displayed instead of the ETA in this case.
When the xfer resumes, the time that the xfer was stalled for is
factored out of the ETA. It is debatable whether this is better than
not factoring it out, but I like it this way (I.e, if it stalls for 8
seconds and the ETA was 30 seconds, when it resumes the ETA will still
be 30 seconds).
* verbosity can be disabled on the command line (-V), so that in auto-fetch
mode the only lines displayed will be a description of the file, and
the progress bar (if possible)
* if the screen is resized (and detected via the SIGWINCH signal), the
progress bar will rescale automatically.
Bugs fixed:
* progress bar will not use the last character on the line, as this can
cause problems on some terminals
* screen dimensions (via ioctl(TIOCWINSZ)) should use stdout not stdin
* progressmeter() used some vars before initialising them
* ^D will quit now. [fixes bin/3162]
* use hstrerror() to generate error message for host name lookup failure.
* use getcwd instead of getwd (it should have been OK, but why tempt fate?)
* auto-fetch transfers will always return a positive exit value upon failure
or interruption, relative to the file's position in argv[].
* remote completion of / will work, without putting a leading "///".
This is actually a bug in ftpd(1), where "NLST /" prefixes all names
with "//", but fixing every ftpd(1) is not an option...
1997-02-01 13:44:54 +03:00
|
|
|
alarmtimer(0);
|
1993-03-21 12:45:37 +03:00
|
|
|
longjmp(toplevel, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
lostpeer()
|
|
|
|
{
|
|
|
|
|
[Yet Another Huge Ftp Commit - hopefully the last for a while,
barring any more little things people want added ...]
New features:
* progressmeter is now asynchronous, so "stalled" transfers can be
detected. "- stalled -" is displayed instead of the ETA in this case.
When the xfer resumes, the time that the xfer was stalled for is
factored out of the ETA. It is debatable whether this is better than
not factoring it out, but I like it this way (I.e, if it stalls for 8
seconds and the ETA was 30 seconds, when it resumes the ETA will still
be 30 seconds).
* verbosity can be disabled on the command line (-V), so that in auto-fetch
mode the only lines displayed will be a description of the file, and
the progress bar (if possible)
* if the screen is resized (and detected via the SIGWINCH signal), the
progress bar will rescale automatically.
Bugs fixed:
* progress bar will not use the last character on the line, as this can
cause problems on some terminals
* screen dimensions (via ioctl(TIOCWINSZ)) should use stdout not stdin
* progressmeter() used some vars before initialising them
* ^D will quit now. [fixes bin/3162]
* use hstrerror() to generate error message for host name lookup failure.
* use getcwd instead of getwd (it should have been OK, but why tempt fate?)
* auto-fetch transfers will always return a positive exit value upon failure
or interruption, relative to the file's position in argv[].
* remote completion of / will work, without putting a leading "///".
This is actually a bug in ftpd(1), where "NLST /" prefixes all names
with "//", but fixing every ftpd(1) is not an option...
1997-02-01 13:44:54 +03:00
|
|
|
alarmtimer(0);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (connected) {
|
|
|
|
if (cout != NULL) {
|
1997-03-13 09:23:11 +03:00
|
|
|
(void)shutdown(fileno(cout), 1+1);
|
|
|
|
(void)fclose(cout);
|
1993-03-21 12:45:37 +03:00
|
|
|
cout = NULL;
|
|
|
|
}
|
|
|
|
if (data >= 0) {
|
1997-03-13 09:23:11 +03:00
|
|
|
(void)shutdown(data, 1+1);
|
|
|
|
(void)close(data);
|
1993-03-21 12:45:37 +03:00
|
|
|
data = -1;
|
|
|
|
}
|
|
|
|
connected = 0;
|
|
|
|
}
|
|
|
|
pswitch(1);
|
|
|
|
if (connected) {
|
|
|
|
if (cout != NULL) {
|
1997-03-13 09:23:11 +03:00
|
|
|
(void)shutdown(fileno(cout), 1+1);
|
|
|
|
(void)fclose(cout);
|
1993-03-21 12:45:37 +03:00
|
|
|
cout = NULL;
|
|
|
|
}
|
|
|
|
connected = 0;
|
|
|
|
}
|
|
|
|
proxflag = 0;
|
|
|
|
pswitch(0);
|
|
|
|
}
|
|
|
|
|
1994-08-25 07:47:50 +04:00
|
|
|
/*
|
1997-01-19 17:19:02 +03:00
|
|
|
* Generate a prompt
|
|
|
|
*/
|
1994-08-25 07:47:50 +04:00
|
|
|
char *
|
1997-01-19 17:19:02 +03:00
|
|
|
prompt()
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1997-01-19 17:19:02 +03:00
|
|
|
return ("ftp> ");
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-08-25 07:47:50 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Command parser.
|
|
|
|
*/
|
1994-08-25 07:47:50 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
cmdscanner(top)
|
|
|
|
int top;
|
|
|
|
{
|
1994-08-25 07:47:50 +04:00
|
|
|
struct cmd *c;
|
1997-01-19 17:19:02 +03:00
|
|
|
int num;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-01-19 17:19:02 +03:00
|
|
|
if (!top
|
1997-03-14 04:39:31 +03:00
|
|
|
#ifndef SMALL
|
1997-01-19 17:19:02 +03:00
|
|
|
&& !editing
|
1997-03-14 04:39:31 +03:00
|
|
|
#endif /* !SMALL */
|
1997-01-19 17:19:02 +03:00
|
|
|
)
|
1997-03-13 09:23:11 +03:00
|
|
|
(void)putchar('\n');
|
1993-03-21 12:45:37 +03:00
|
|
|
for (;;) {
|
1997-03-14 04:39:31 +03:00
|
|
|
#ifndef SMALL
|
1997-01-19 17:19:02 +03:00
|
|
|
if (!editing) {
|
1997-03-14 04:39:31 +03:00
|
|
|
#endif /* !SMALL */
|
1997-01-19 17:19:02 +03:00
|
|
|
if (fromatty) {
|
1997-03-13 09:23:11 +03:00
|
|
|
fputs(prompt(), stdout);
|
|
|
|
(void)fflush(stdout);
|
1997-01-19 17:19:02 +03:00
|
|
|
}
|
|
|
|
if (fgets(line, sizeof(line), stdin) == NULL)
|
|
|
|
quit(0, 0);
|
|
|
|
num = strlen(line);
|
|
|
|
if (num == 0)
|
|
|
|
break;
|
|
|
|
if (line[--num] == '\n') {
|
|
|
|
if (num == 0)
|
|
|
|
break;
|
|
|
|
line[num] = '\0';
|
|
|
|
} else if (num == sizeof(line) - 2) {
|
1997-03-13 09:23:11 +03:00
|
|
|
puts("sorry, input line too long.");
|
1997-01-19 17:19:02 +03:00
|
|
|
while ((num = getchar()) != '\n' && num != EOF)
|
|
|
|
/* void */;
|
|
|
|
break;
|
|
|
|
} /* else it was a line without a newline */
|
1997-03-14 04:39:31 +03:00
|
|
|
#ifndef SMALL
|
[Yet Another Huge Ftp Commit - hopefully the last for a while,
barring any more little things people want added ...]
New features:
* progressmeter is now asynchronous, so "stalled" transfers can be
detected. "- stalled -" is displayed instead of the ETA in this case.
When the xfer resumes, the time that the xfer was stalled for is
factored out of the ETA. It is debatable whether this is better than
not factoring it out, but I like it this way (I.e, if it stalls for 8
seconds and the ETA was 30 seconds, when it resumes the ETA will still
be 30 seconds).
* verbosity can be disabled on the command line (-V), so that in auto-fetch
mode the only lines displayed will be a description of the file, and
the progress bar (if possible)
* if the screen is resized (and detected via the SIGWINCH signal), the
progress bar will rescale automatically.
Bugs fixed:
* progress bar will not use the last character on the line, as this can
cause problems on some terminals
* screen dimensions (via ioctl(TIOCWINSZ)) should use stdout not stdin
* progressmeter() used some vars before initialising them
* ^D will quit now. [fixes bin/3162]
* use hstrerror() to generate error message for host name lookup failure.
* use getcwd instead of getwd (it should have been OK, but why tempt fate?)
* auto-fetch transfers will always return a positive exit value upon failure
or interruption, relative to the file's position in argv[].
* remote completion of / will work, without putting a leading "///".
This is actually a bug in ftpd(1), where "NLST /" prefixes all names
with "//", but fixing every ftpd(1) is not an option...
1997-02-01 13:44:54 +03:00
|
|
|
} else {
|
1997-01-19 17:19:02 +03:00
|
|
|
const char *buf;
|
|
|
|
cursor_pos = NULL;
|
|
|
|
|
|
|
|
if ((buf = el_gets(el, &num)) == NULL || num == 0)
|
[Yet Another Huge Ftp Commit - hopefully the last for a while,
barring any more little things people want added ...]
New features:
* progressmeter is now asynchronous, so "stalled" transfers can be
detected. "- stalled -" is displayed instead of the ETA in this case.
When the xfer resumes, the time that the xfer was stalled for is
factored out of the ETA. It is debatable whether this is better than
not factoring it out, but I like it this way (I.e, if it stalls for 8
seconds and the ETA was 30 seconds, when it resumes the ETA will still
be 30 seconds).
* verbosity can be disabled on the command line (-V), so that in auto-fetch
mode the only lines displayed will be a description of the file, and
the progress bar (if possible)
* if the screen is resized (and detected via the SIGWINCH signal), the
progress bar will rescale automatically.
Bugs fixed:
* progress bar will not use the last character on the line, as this can
cause problems on some terminals
* screen dimensions (via ioctl(TIOCWINSZ)) should use stdout not stdin
* progressmeter() used some vars before initialising them
* ^D will quit now. [fixes bin/3162]
* use hstrerror() to generate error message for host name lookup failure.
* use getcwd instead of getwd (it should have been OK, but why tempt fate?)
* auto-fetch transfers will always return a positive exit value upon failure
or interruption, relative to the file's position in argv[].
* remote completion of / will work, without putting a leading "///".
This is actually a bug in ftpd(1), where "NLST /" prefixes all names
with "//", but fixing every ftpd(1) is not an option...
1997-02-01 13:44:54 +03:00
|
|
|
quit(0, 0);
|
1997-01-19 17:19:02 +03:00
|
|
|
if (line[--num] == '\n') {
|
|
|
|
if (num == 0)
|
|
|
|
break;
|
|
|
|
} else if (num >= sizeof(line)) {
|
1997-03-13 09:23:11 +03:00
|
|
|
puts("sorry, input line too long.");
|
1997-01-19 17:19:02 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
memcpy(line, buf, num);
|
|
|
|
line[num] = '\0';
|
|
|
|
history(hist, H_ENTER, buf);
|
|
|
|
}
|
1997-03-14 04:39:31 +03:00
|
|
|
#endif /* !SMALL */
|
1997-01-19 17:19:02 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
makeargv();
|
1997-01-19 17:19:02 +03:00
|
|
|
if (margc == 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
continue;
|
1997-03-14 04:39:31 +03:00
|
|
|
#if 0 && !defined(SMALL) /* XXX: don't want el_parse */
|
1997-01-19 17:19:02 +03:00
|
|
|
/*
|
|
|
|
* el_parse returns -1 to signal that it's not been handled
|
|
|
|
* internally.
|
|
|
|
*/
|
|
|
|
if (el_parse(el, margc, margv) != -1)
|
|
|
|
continue;
|
1997-03-14 04:39:31 +03:00
|
|
|
#endif /* !SMALL */
|
1993-03-21 12:45:37 +03:00
|
|
|
c = getcmd(margv[0]);
|
|
|
|
if (c == (struct cmd *)-1) {
|
1997-03-13 09:23:11 +03:00
|
|
|
puts("?Ambiguous command.");
|
1993-03-21 12:45:37 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (c == 0) {
|
1997-03-13 09:23:11 +03:00
|
|
|
puts("?Invalid command.");
|
1993-03-21 12:45:37 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (c->c_conn && !connected) {
|
1997-03-13 09:23:11 +03:00
|
|
|
puts("Not connected.");
|
1993-03-21 12:45:37 +03:00
|
|
|
continue;
|
|
|
|
}
|
1996-11-28 06:12:28 +03:00
|
|
|
confirmrest = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
(*c->c_handler)(margc, margv);
|
|
|
|
if (bell && c->c_bell)
|
1997-03-13 09:23:11 +03:00
|
|
|
(void)putchar('\007');
|
1993-03-21 12:45:37 +03:00
|
|
|
if (c->c_handler != help)
|
|
|
|
break;
|
|
|
|
}
|
1997-03-13 09:23:11 +03:00
|
|
|
(void)signal(SIGINT, (sig_t)intr);
|
|
|
|
(void)signal(SIGPIPE, (sig_t)lostpeer);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
struct cmd *
|
|
|
|
getcmd(name)
|
1996-11-28 06:12:28 +03:00
|
|
|
const char *name;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1996-11-28 06:12:28 +03:00
|
|
|
const char *p, *q;
|
1994-08-25 07:47:50 +04:00
|
|
|
struct cmd *c, *found;
|
|
|
|
int nmatches, longest;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-05-07 04:16:55 +04:00
|
|
|
if (name == NULL)
|
|
|
|
return (0);
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
longest = 0;
|
|
|
|
nmatches = 0;
|
|
|
|
found = 0;
|
1996-11-25 08:13:18 +03:00
|
|
|
for (c = cmdtab; (p = c->c_name) != NULL; c++) {
|
1993-03-21 12:45:37 +03:00
|
|
|
for (q = name; *q == *p++; q++)
|
|
|
|
if (*q == 0) /* exact match? */
|
|
|
|
return (c);
|
|
|
|
if (!*q) { /* the name was a prefix */
|
|
|
|
if (q - name > longest) {
|
|
|
|
longest = q - name;
|
|
|
|
nmatches = 1;
|
|
|
|
found = c;
|
|
|
|
} else if (q - name == longest)
|
|
|
|
nmatches++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (nmatches > 1)
|
|
|
|
return ((struct cmd *)-1);
|
|
|
|
return (found);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Slice a string up into argc/argv.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int slrflag;
|
|
|
|
|
1994-08-25 07:47:50 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
makeargv()
|
|
|
|
{
|
1997-01-19 17:19:02 +03:00
|
|
|
char *argp;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
stringbase = line; /* scan from first of buffer */
|
|
|
|
argbase = argbuf; /* store from first of buffer */
|
|
|
|
slrflag = 0;
|
1997-01-19 17:19:02 +03:00
|
|
|
marg_sl->sl_cur = 0; /* reset to start of marg_sl */
|
1995-09-15 04:32:33 +04:00
|
|
|
for (margc = 0; ; margc++) {
|
1997-01-19 17:19:02 +03:00
|
|
|
argp = slurpstring();
|
|
|
|
sl_add(marg_sl, argp);
|
|
|
|
if (argp == NULL)
|
1995-09-15 04:32:33 +04:00
|
|
|
break;
|
|
|
|
}
|
1997-03-14 04:39:31 +03:00
|
|
|
#ifndef SMALL
|
1997-01-19 17:19:02 +03:00
|
|
|
if (cursor_pos == line) {
|
|
|
|
cursor_argc = 0;
|
|
|
|
cursor_argo = 0;
|
|
|
|
} else if (cursor_pos != NULL) {
|
|
|
|
cursor_argc = margc;
|
|
|
|
cursor_argo = strlen(margv[margc-1]);
|
|
|
|
}
|
1997-03-14 04:39:31 +03:00
|
|
|
#endif /* !SMALL */
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1997-03-14 04:39:31 +03:00
|
|
|
#ifdef SMALL
|
1997-01-19 17:19:02 +03:00
|
|
|
#define INC_CHKCURSOR(x) (x)++
|
1997-03-14 04:39:31 +03:00
|
|
|
#else /* !SMALL */
|
1997-01-19 17:19:02 +03:00
|
|
|
#define INC_CHKCURSOR(x) { (x)++ ; \
|
|
|
|
if (x == cursor_pos) { \
|
|
|
|
cursor_argc = margc; \
|
|
|
|
cursor_argo = ap-argbase; \
|
|
|
|
cursor_pos = NULL; \
|
|
|
|
} }
|
|
|
|
|
1997-03-14 04:39:31 +03:00
|
|
|
#endif /* !SMALL */
|
1997-01-19 17:19:02 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Parse string into argbuf;
|
|
|
|
* implemented with FSM to
|
|
|
|
* handle quoting and strings
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
slurpstring()
|
|
|
|
{
|
|
|
|
int got_one = 0;
|
1994-08-25 07:47:50 +04:00
|
|
|
char *sb = stringbase;
|
|
|
|
char *ap = argbase;
|
1993-03-21 12:45:37 +03:00
|
|
|
char *tmp = argbase; /* will return this if token found */
|
|
|
|
|
|
|
|
if (*sb == '!' || *sb == '$') { /* recognize ! as a token for shell */
|
|
|
|
switch (slrflag) { /* and $ as token for macro invoke */
|
|
|
|
case 0:
|
|
|
|
slrflag++;
|
1997-01-19 17:19:02 +03:00
|
|
|
INC_CHKCURSOR(stringbase);
|
1993-03-21 12:45:37 +03:00
|
|
|
return ((*sb == '!') ? "!" : "$");
|
|
|
|
/* NOTREACHED */
|
|
|
|
case 1:
|
|
|
|
slrflag++;
|
|
|
|
altarg = stringbase;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
S0:
|
|
|
|
switch (*sb) {
|
|
|
|
|
|
|
|
case '\0':
|
|
|
|
goto OUT;
|
|
|
|
|
|
|
|
case ' ':
|
|
|
|
case '\t':
|
1997-01-19 17:19:02 +03:00
|
|
|
INC_CHKCURSOR(sb);
|
|
|
|
goto S0;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
default:
|
|
|
|
switch (slrflag) {
|
|
|
|
case 0:
|
|
|
|
slrflag++;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
slrflag++;
|
|
|
|
altarg = sb;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
goto S1;
|
|
|
|
}
|
|
|
|
|
|
|
|
S1:
|
|
|
|
switch (*sb) {
|
|
|
|
|
|
|
|
case ' ':
|
|
|
|
case '\t':
|
|
|
|
case '\0':
|
|
|
|
goto OUT; /* end of token */
|
|
|
|
|
|
|
|
case '\\':
|
1997-01-19 17:19:02 +03:00
|
|
|
INC_CHKCURSOR(sb);
|
|
|
|
goto S2; /* slurp next character */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
case '"':
|
1997-01-19 17:19:02 +03:00
|
|
|
INC_CHKCURSOR(sb);
|
|
|
|
goto S3; /* slurp quoted string */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
default:
|
1997-01-19 17:19:02 +03:00
|
|
|
*ap = *sb; /* add character to token */
|
|
|
|
ap++;
|
|
|
|
INC_CHKCURSOR(sb);
|
1993-03-21 12:45:37 +03:00
|
|
|
got_one = 1;
|
|
|
|
goto S1;
|
|
|
|
}
|
|
|
|
|
|
|
|
S2:
|
|
|
|
switch (*sb) {
|
|
|
|
|
|
|
|
case '\0':
|
|
|
|
goto OUT;
|
|
|
|
|
|
|
|
default:
|
1997-01-19 17:19:02 +03:00
|
|
|
*ap = *sb;
|
|
|
|
ap++;
|
|
|
|
INC_CHKCURSOR(sb);
|
1993-03-21 12:45:37 +03:00
|
|
|
got_one = 1;
|
|
|
|
goto S1;
|
|
|
|
}
|
|
|
|
|
|
|
|
S3:
|
|
|
|
switch (*sb) {
|
|
|
|
|
|
|
|
case '\0':
|
|
|
|
goto OUT;
|
|
|
|
|
|
|
|
case '"':
|
1997-01-19 17:19:02 +03:00
|
|
|
INC_CHKCURSOR(sb);
|
|
|
|
goto S1;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
default:
|
1997-01-19 17:19:02 +03:00
|
|
|
*ap = *sb;
|
|
|
|
ap++;
|
|
|
|
INC_CHKCURSOR(sb);
|
1993-03-21 12:45:37 +03:00
|
|
|
got_one = 1;
|
|
|
|
goto S3;
|
|
|
|
}
|
|
|
|
|
|
|
|
OUT:
|
|
|
|
if (got_one)
|
|
|
|
*ap++ = '\0';
|
|
|
|
argbase = ap; /* update storage pointer */
|
|
|
|
stringbase = sb; /* update scan pointer */
|
|
|
|
if (got_one) {
|
1994-08-25 07:47:50 +04:00
|
|
|
return (tmp);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
switch (slrflag) {
|
|
|
|
case 0:
|
|
|
|
slrflag++;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
slrflag++;
|
|
|
|
altarg = (char *) 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
1994-08-25 07:47:50 +04:00
|
|
|
return ((char *)0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Help command.
|
|
|
|
* Call each command handler with argc == 0 and argv[0] == name.
|
|
|
|
*/
|
1994-08-25 07:47:50 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
help(argc, argv)
|
|
|
|
int argc;
|
|
|
|
char *argv[];
|
|
|
|
{
|
1994-08-25 07:47:50 +04:00
|
|
|
struct cmd *c;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
if (argc == 1) {
|
1997-01-19 17:19:02 +03:00
|
|
|
StringList *buf;
|
|
|
|
|
|
|
|
buf = sl_init();
|
|
|
|
printf("%sommands may be abbreviated. Commands are:\n\n",
|
|
|
|
proxy ? "Proxy c" : "C");
|
|
|
|
for (c = cmdtab; c < &cmdtab[NCMDS]; c++)
|
|
|
|
if (c->c_name && (!proxy || c->c_proxy))
|
|
|
|
sl_add(buf, c->c_name);
|
|
|
|
list_vertical(buf);
|
|
|
|
sl_free(buf, 0);
|
1993-03-21 12:45:37 +03:00
|
|
|
return;
|
|
|
|
}
|
1997-01-19 17:19:02 +03:00
|
|
|
|
1997-03-13 09:23:11 +03:00
|
|
|
#define HELPINDENT ((int) sizeof("disconnect"))
|
1997-01-19 17:19:02 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
while (--argc > 0) {
|
1994-08-25 07:47:50 +04:00
|
|
|
char *arg;
|
1997-01-19 17:19:02 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
arg = *++argv;
|
|
|
|
c = getcmd(arg);
|
|
|
|
if (c == (struct cmd *)-1)
|
|
|
|
printf("?Ambiguous help command %s\n", arg);
|
|
|
|
else if (c == (struct cmd *)0)
|
|
|
|
printf("?Invalid help command %s\n", arg);
|
|
|
|
else
|
|
|
|
printf("%-*s\t%s\n", HELPINDENT,
|
|
|
|
c->c_name, c->c_help);
|
|
|
|
}
|
|
|
|
}
|
1996-11-25 08:13:18 +03:00
|
|
|
|
1996-12-06 05:06:46 +03:00
|
|
|
void
|
|
|
|
usage()
|
|
|
|
{
|
|
|
|
(void)fprintf(stderr,
|
1997-03-13 09:23:11 +03:00
|
|
|
"usage: %s [-adeginptvV] [host [port]]\n"
|
1997-01-19 17:19:02 +03:00
|
|
|
" %s host:path[/]\n"
|
|
|
|
" %s ftp://host[:port]/path[/]\n"
|
|
|
|
" %s http://host[:port]/file\n",
|
|
|
|
__progname, __progname, __progname, __progname);
|
1996-12-06 05:06:46 +03:00
|
|
|
exit(1);
|
|
|
|
}
|