Home | History | Annotate | Line # | Download | only in ftp
util.c revision 1.24
      1  1.24     lukem /*	$NetBSD: util.c,v 1.24 1998/06/04 08:28:36 lukem Exp $	*/
      2   1.1     lukem 
      3   1.1     lukem /*
      4   1.1     lukem  * Copyright (c) 1985, 1989, 1993, 1994
      5   1.1     lukem  *	The Regents of the University of California.  All rights reserved.
      6   1.1     lukem  *
      7   1.1     lukem  * Redistribution and use in source and binary forms, with or without
      8   1.1     lukem  * modification, are permitted provided that the following conditions
      9   1.1     lukem  * are met:
     10   1.1     lukem  * 1. Redistributions of source code must retain the above copyright
     11   1.1     lukem  *    notice, this list of conditions and the following disclaimer.
     12   1.1     lukem  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1     lukem  *    notice, this list of conditions and the following disclaimer in the
     14   1.1     lukem  *    documentation and/or other materials provided with the distribution.
     15   1.1     lukem  * 3. All advertising materials mentioning features or use of this software
     16   1.1     lukem  *    must display the following acknowledgement:
     17   1.1     lukem  *	This product includes software developed by the University of
     18   1.1     lukem  *	California, Berkeley and its contributors.
     19   1.1     lukem  * 4. Neither the name of the University nor the names of its contributors
     20   1.1     lukem  *    may be used to endorse or promote products derived from this software
     21   1.1     lukem  *    without specific prior written permission.
     22   1.1     lukem  *
     23   1.1     lukem  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1     lukem  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1     lukem  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1     lukem  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1     lukem  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1     lukem  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1     lukem  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1     lukem  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1     lukem  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1     lukem  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1     lukem  * SUCH DAMAGE.
     34   1.1     lukem  */
     35   1.1     lukem 
     36  1.10     lukem #include <sys/cdefs.h>
     37   1.1     lukem #ifndef lint
     38  1.24     lukem __RCSID("$NetBSD: util.c,v 1.24 1998/06/04 08:28:36 lukem Exp $");
     39   1.1     lukem #endif /* not lint */
     40   1.1     lukem 
     41   1.1     lukem /*
     42   1.1     lukem  * FTP User Program -- Misc support routines
     43   1.1     lukem  */
     44   1.1     lukem #include <sys/ioctl.h>
     45   1.1     lukem #include <sys/time.h>
     46   1.1     lukem #include <arpa/ftp.h>
     47   1.1     lukem 
     48   1.1     lukem #include <ctype.h>
     49   1.1     lukem #include <err.h>
     50   1.1     lukem #include <fcntl.h>
     51   1.1     lukem #include <glob.h>
     52  1.23  christos #include <termios.h>
     53  1.23  christos #include <signal.h>
     54  1.10     lukem #include <limits.h>
     55   1.7     lukem #include <pwd.h>
     56   1.1     lukem #include <stdio.h>
     57  1.10     lukem #include <stdlib.h>
     58   1.1     lukem #include <string.h>
     59   1.1     lukem #include <time.h>
     60  1.17     lukem #include <tzfile.h>
     61   1.1     lukem #include <unistd.h>
     62   1.1     lukem 
     63   1.1     lukem #include "ftp_var.h"
     64   1.1     lukem #include "pathnames.h"
     65   1.1     lukem 
     66   1.1     lukem /*
     67   1.1     lukem  * Connect to peer server and
     68   1.1     lukem  * auto-login, if possible.
     69   1.1     lukem  */
     70   1.1     lukem void
     71   1.1     lukem setpeer(argc, argv)
     72   1.1     lukem 	int argc;
     73   1.1     lukem 	char *argv[];
     74   1.1     lukem {
     75   1.1     lukem 	char *host;
     76  1.19     lukem 	in_port_t port;
     77   1.1     lukem 
     78   1.1     lukem 	if (connected) {
     79  1.24     lukem 		fprintf(ttyout, "Already connected to %s, use close first.\n",
     80   1.5     lukem 		    hostname);
     81   1.1     lukem 		code = -1;
     82   1.1     lukem 		return;
     83   1.1     lukem 	}
     84   1.1     lukem 	if (argc < 2)
     85   1.5     lukem 		(void)another(&argc, &argv, "to");
     86   1.1     lukem 	if (argc < 2 || argc > 3) {
     87  1.24     lukem 		fprintf(ttyout, "usage: %s host-name [port]\n", argv[0]);
     88   1.1     lukem 		code = -1;
     89   1.1     lukem 		return;
     90   1.1     lukem 	}
     91  1.12     lukem 	if (gatemode)
     92  1.12     lukem 		port = gateport;
     93  1.12     lukem 	else
     94  1.12     lukem 		port = ftpport;
     95   1.1     lukem 	if (argc > 2) {
     96  1.10     lukem 		char *ep;
     97  1.10     lukem 		long nport;
     98  1.10     lukem 
     99  1.10     lukem 		nport = strtol(argv[2], &ep, 10);
    100  1.20     lukem 		if (nport < 1 || nport > MAX_IN_PORT_T || *ep != '\0') {
    101  1.24     lukem 			fprintf(ttyout, "%s: bad port number '%s'.\n",
    102  1.24     lukem 			    argv[1], argv[2]);
    103  1.24     lukem 			fprintf(ttyout, "usage: %s host-name [port]\n",
    104  1.24     lukem 			    argv[0]);
    105   1.1     lukem 			code = -1;
    106   1.1     lukem 			return;
    107   1.1     lukem 		}
    108  1.19     lukem 		port = htons((in_port_t)nport);
    109   1.1     lukem 	}
    110  1.12     lukem 
    111  1.12     lukem 	if (gatemode) {
    112  1.12     lukem 		if (gateserver == NULL || *gateserver == '\0')
    113  1.12     lukem 			errx(1, "gateserver not defined (shouldn't happen)");
    114  1.12     lukem 		host = hookup(gateserver, port);
    115  1.12     lukem 	} else
    116  1.12     lukem 		host = hookup(argv[1], port);
    117  1.12     lukem 
    118   1.1     lukem 	if (host) {
    119   1.1     lukem 		int overbose;
    120   1.1     lukem 
    121  1.12     lukem 		if (gatemode) {
    122  1.12     lukem 			if (command("PASSERVE %s", argv[1]) != COMPLETE)
    123  1.12     lukem 				return;
    124  1.12     lukem 			if (verbose)
    125  1.24     lukem 				fprintf(ttyout,
    126  1.24     lukem 				    "Connected via pass-through server %s\n",
    127  1.12     lukem 				    gateserver);
    128  1.12     lukem 		}
    129  1.12     lukem 
    130   1.1     lukem 		connected = 1;
    131   1.1     lukem 		/*
    132   1.1     lukem 		 * Set up defaults for FTP.
    133   1.1     lukem 		 */
    134   1.5     lukem 		(void)strcpy(typename, "ascii"), type = TYPE_A;
    135   1.1     lukem 		curtype = TYPE_A;
    136   1.5     lukem 		(void)strcpy(formname, "non-print"), form = FORM_N;
    137   1.5     lukem 		(void)strcpy(modename, "stream"), mode = MODE_S;
    138   1.5     lukem 		(void)strcpy(structname, "file"), stru = STRU_F;
    139   1.5     lukem 		(void)strcpy(bytename, "8"), bytesize = 8;
    140   1.1     lukem 		if (autologin)
    141   1.7     lukem 			(void)login(argv[1], NULL, NULL);
    142   1.1     lukem 
    143   1.1     lukem 		overbose = verbose;
    144   1.1     lukem 		if (debug == 0)
    145   1.1     lukem 			verbose = -1;
    146   1.1     lukem 		if (command("SYST") == COMPLETE && overbose) {
    147   1.1     lukem 			char *cp, c;
    148   1.1     lukem 			c = 0;
    149  1.24     lukem 			cp = strchr(reply_string + 4, ' ');
    150   1.1     lukem 			if (cp == NULL)
    151  1.24     lukem 				cp = strchr(reply_string + 4, '\r');
    152   1.1     lukem 			if (cp) {
    153   1.1     lukem 				if (cp[-1] == '.')
    154   1.1     lukem 					cp--;
    155   1.1     lukem 				c = *cp;
    156   1.1     lukem 				*cp = '\0';
    157   1.1     lukem 			}
    158   1.1     lukem 
    159  1.24     lukem 			fprintf(ttyout, "Remote system type is %s.\n",
    160  1.24     lukem 			    reply_string + 4);
    161   1.1     lukem 			if (cp)
    162   1.1     lukem 				*cp = c;
    163   1.1     lukem 		}
    164   1.1     lukem 		if (!strncmp(reply_string, "215 UNIX Type: L8", 17)) {
    165   1.1     lukem 			if (proxy)
    166   1.1     lukem 				unix_proxy = 1;
    167   1.1     lukem 			else
    168   1.1     lukem 				unix_server = 1;
    169   1.1     lukem 			/*
    170   1.1     lukem 			 * Set type to 0 (not specified by user),
    171   1.1     lukem 			 * meaning binary by default, but don't bother
    172   1.1     lukem 			 * telling server.  We can use binary
    173   1.1     lukem 			 * for text files unless changed by the user.
    174   1.1     lukem 			 */
    175   1.1     lukem 			type = 0;
    176   1.5     lukem 			(void)strcpy(typename, "binary");
    177   1.1     lukem 			if (overbose)
    178  1.24     lukem 			    fprintf(ttyout,
    179  1.24     lukem 				"Using %s mode to transfer files.\n",
    180   1.1     lukem 				typename);
    181   1.1     lukem 		} else {
    182   1.1     lukem 			if (proxy)
    183   1.1     lukem 				unix_proxy = 0;
    184   1.1     lukem 			else
    185   1.1     lukem 				unix_server = 0;
    186   1.1     lukem 			if (overbose &&
    187   1.1     lukem 			    !strncmp(reply_string, "215 TOPS20", 10))
    188  1.24     lukem 				fputs(
    189  1.24     lukem "Remember to set tenex mode when transferring binary files from this machine.\n",
    190  1.24     lukem 				    ttyout);
    191   1.1     lukem 		}
    192   1.1     lukem 		verbose = overbose;
    193   1.1     lukem 	}
    194   1.7     lukem }
    195   1.7     lukem 
    196   1.7     lukem /*
    197   1.7     lukem  * login to remote host, using given username & password if supplied
    198   1.7     lukem  */
    199   1.7     lukem int
    200   1.7     lukem login(host, user, pass)
    201   1.7     lukem 	const char *host;
    202   1.7     lukem 	char *user, *pass;
    203   1.7     lukem {
    204   1.7     lukem 	char tmp[80];
    205   1.7     lukem 	char *acct;
    206   1.7     lukem 	char anonpass[MAXLOGNAME + 1 + MAXHOSTNAMELEN];	/* "user@hostname" */
    207   1.7     lukem 	char hostname[MAXHOSTNAMELEN];
    208  1.14     lukem 	struct passwd *pw;
    209   1.7     lukem 	int n, aflag = 0;
    210   1.7     lukem 
    211   1.7     lukem 	acct = NULL;
    212   1.7     lukem 	if (user == NULL) {
    213   1.7     lukem 		if (ruserpass(host, &user, &pass, &acct) < 0) {
    214   1.7     lukem 			code = -1;
    215   1.7     lukem 			return (0);
    216   1.7     lukem 		}
    217   1.7     lukem 	}
    218   1.7     lukem 
    219   1.7     lukem 	/*
    220   1.7     lukem 	 * Set up arguments for an anonymous FTP session, if necessary.
    221   1.7     lukem 	 */
    222   1.7     lukem 	if ((user == NULL || pass == NULL) && anonftp) {
    223   1.7     lukem 		memset(anonpass, 0, sizeof(anonpass));
    224   1.7     lukem 		memset(hostname, 0, sizeof(hostname));
    225   1.7     lukem 
    226   1.7     lukem 		/*
    227   1.7     lukem 		 * Set up anonymous login password.
    228   1.7     lukem 		 */
    229  1.14     lukem 		if ((user = getlogin()) == NULL) {
    230  1.14     lukem 			if ((pw = getpwuid(getuid())) == NULL)
    231  1.14     lukem 				user = "anonymous";
    232  1.14     lukem 			else
    233  1.14     lukem 				user = pw->pw_name;
    234  1.14     lukem 		}
    235   1.7     lukem 		gethostname(hostname, MAXHOSTNAMELEN);
    236   1.7     lukem #ifndef DONT_CHEAT_ANONPASS
    237   1.7     lukem 		/*
    238   1.7     lukem 		 * Every anonymous FTP server I've encountered
    239   1.7     lukem 		 * will accept the string "username@", and will
    240   1.7     lukem 		 * append the hostname itself.  We do this by default
    241   1.7     lukem 		 * since many servers are picky about not having
    242   1.7     lukem 		 * a FQDN in the anonymous password. - thorpej (at) netbsd.org
    243   1.7     lukem 		 */
    244   1.7     lukem 		snprintf(anonpass, sizeof(anonpass) - 1, "%s@",
    245   1.7     lukem 		    user);
    246   1.7     lukem #else
    247   1.7     lukem 		snprintf(anonpass, sizeof(anonpass) - 1, "%s@%s",
    248   1.7     lukem 		    user, hp->h_name);
    249   1.7     lukem #endif
    250   1.7     lukem 		pass = anonpass;
    251   1.9     lukem 		user = "anonymous";	/* as per RFC 1635 */
    252   1.7     lukem 	}
    253   1.7     lukem 
    254   1.7     lukem 	while (user == NULL) {
    255   1.7     lukem 		char *myname = getlogin();
    256   1.7     lukem 
    257  1.14     lukem 		if (myname == NULL && (pw = getpwuid(getuid())) != NULL)
    258  1.14     lukem 			myname = pw->pw_name;
    259   1.7     lukem 		if (myname)
    260  1.24     lukem 			fprintf(ttyout, "Name (%s:%s): ", host, myname);
    261   1.7     lukem 		else
    262  1.24     lukem 			fprintf(ttyout, "Name (%s): ", host);
    263  1.19     lukem 		*tmp = '\0';
    264   1.7     lukem 		(void)fgets(tmp, sizeof(tmp) - 1, stdin);
    265   1.7     lukem 		tmp[strlen(tmp) - 1] = '\0';
    266   1.7     lukem 		if (*tmp == '\0')
    267   1.7     lukem 			user = myname;
    268   1.7     lukem 		else
    269   1.7     lukem 			user = tmp;
    270   1.7     lukem 	}
    271   1.7     lukem 	n = command("USER %s", user);
    272   1.7     lukem 	if (n == CONTINUE) {
    273   1.7     lukem 		if (pass == NULL)
    274   1.7     lukem 			pass = getpass("Password:");
    275   1.7     lukem 		n = command("PASS %s", pass);
    276   1.7     lukem 	}
    277   1.7     lukem 	if (n == CONTINUE) {
    278   1.7     lukem 		aflag++;
    279   1.7     lukem 		if (acct == NULL)
    280   1.7     lukem 			acct = getpass("Account:");
    281   1.7     lukem 		n = command("ACCT %s", acct);
    282   1.7     lukem 	}
    283   1.7     lukem 	if ((n != COMPLETE) ||
    284   1.7     lukem 	    (!aflag && acct != NULL && command("ACCT %s", acct) != COMPLETE)) {
    285   1.7     lukem 		warnx("Login failed.");
    286   1.7     lukem 		return (0);
    287   1.7     lukem 	}
    288   1.7     lukem 	if (proxy)
    289   1.7     lukem 		return (1);
    290   1.7     lukem 	connected = -1;
    291   1.7     lukem 	for (n = 0; n < macnum; ++n) {
    292   1.7     lukem 		if (!strcmp("init", macros[n].mac_name)) {
    293   1.7     lukem 			(void)strcpy(line, "$init");
    294   1.7     lukem 			makeargv();
    295   1.7     lukem 			domacro(margc, margv);
    296   1.7     lukem 			break;
    297   1.7     lukem 		}
    298   1.7     lukem 	}
    299   1.7     lukem 	return (1);
    300   1.1     lukem }
    301   1.1     lukem 
    302   1.1     lukem /*
    303   1.5     lukem  * `another' gets another argument, and stores the new argc and argv.
    304   1.1     lukem  * It reverts to the top level (via main.c's intr()) on EOF/error.
    305   1.1     lukem  *
    306   1.1     lukem  * Returns false if no new arguments have been added.
    307   1.1     lukem  */
    308   1.1     lukem int
    309   1.1     lukem another(pargc, pargv, prompt)
    310   1.1     lukem 	int *pargc;
    311   1.1     lukem 	char ***pargv;
    312   1.1     lukem 	const char *prompt;
    313   1.1     lukem {
    314   1.1     lukem 	int len = strlen(line), ret;
    315   1.1     lukem 
    316   1.1     lukem 	if (len >= sizeof(line) - 3) {
    317  1.24     lukem 		fputs("sorry, arguments too long.\n", ttyout);
    318   1.1     lukem 		intr();
    319   1.1     lukem 	}
    320  1.24     lukem 	fprintf(ttyout, "(%s) ", prompt);
    321   1.1     lukem 	line[len++] = ' ';
    322   1.1     lukem 	if (fgets(&line[len], sizeof(line) - len, stdin) == NULL)
    323   1.1     lukem 		intr();
    324   1.1     lukem 	len += strlen(&line[len]);
    325   1.1     lukem 	if (len > 0 && line[len - 1] == '\n')
    326   1.1     lukem 		line[len - 1] = '\0';
    327   1.1     lukem 	makeargv();
    328   1.1     lukem 	ret = margc > *pargc;
    329   1.1     lukem 	*pargc = margc;
    330   1.1     lukem 	*pargv = margv;
    331   1.1     lukem 	return (ret);
    332   1.1     lukem }
    333   1.1     lukem 
    334   1.5     lukem /*
    335   1.5     lukem  * glob files given in argv[] from the remote server.
    336   1.5     lukem  * if errbuf isn't NULL, store error messages there instead
    337   1.5     lukem  * of writing to the screen.
    338   1.5     lukem  */
    339   1.1     lukem char *
    340   1.5     lukem remglob(argv, doswitch, errbuf)
    341   1.1     lukem         char *argv[];
    342   1.1     lukem         int doswitch;
    343   1.5     lukem 	char **errbuf;
    344   1.1     lukem {
    345   1.1     lukem         char temp[MAXPATHLEN];
    346   1.1     lukem         static char buf[MAXPATHLEN];
    347   1.1     lukem         static FILE *ftemp = NULL;
    348   1.1     lukem         static char **args;
    349   1.1     lukem         int oldverbose, oldhash, fd;
    350   1.1     lukem         char *cp, *mode;
    351   1.1     lukem 
    352   1.1     lukem         if (!mflag) {
    353   1.5     lukem                 if (!doglob)
    354   1.1     lukem                         args = NULL;
    355   1.1     lukem                 else {
    356   1.1     lukem                         if (ftemp) {
    357   1.5     lukem                                 (void)fclose(ftemp);
    358   1.1     lukem                                 ftemp = NULL;
    359   1.1     lukem                         }
    360   1.1     lukem                 }
    361   1.1     lukem                 return (NULL);
    362   1.1     lukem         }
    363   1.1     lukem         if (!doglob) {
    364   1.1     lukem                 if (args == NULL)
    365   1.1     lukem                         args = argv;
    366   1.1     lukem                 if ((cp = *++args) == NULL)
    367   1.1     lukem                         args = NULL;
    368   1.1     lukem                 return (cp);
    369   1.1     lukem         }
    370   1.1     lukem         if (ftemp == NULL) {
    371  1.13     lukem                 (void)snprintf(temp, sizeof(temp), "%s/%s", tmpdir, TMPFILE);
    372   1.5     lukem                 if ((fd = mkstemp(temp)) < 0) {
    373   1.1     lukem                         warn("unable to create temporary file %s", temp);
    374   1.1     lukem                         return (NULL);
    375   1.1     lukem                 }
    376   1.1     lukem                 close(fd);
    377   1.5     lukem                 oldverbose = verbose;
    378   1.5     lukem 		verbose = (errbuf != NULL) ? -1 : 0;
    379   1.5     lukem                 oldhash = hash;
    380   1.5     lukem                 hash = 0;
    381   1.5     lukem                 if (doswitch)
    382   1.1     lukem                         pswitch(!proxy);
    383   1.1     lukem                 for (mode = "w"; *++argv != NULL; mode = "a")
    384  1.12     lukem                         recvrequest("NLST", temp, *argv, mode, 0, 0);
    385   1.5     lukem 		if ((code / 100) != COMPLETE) {
    386   1.5     lukem 			if (errbuf != NULL)
    387   1.5     lukem 				*errbuf = reply_string;
    388   1.5     lukem 		}
    389   1.5     lukem                 if (doswitch)
    390   1.1     lukem                         pswitch(!proxy);
    391   1.5     lukem                 verbose = oldverbose;
    392   1.5     lukem 		hash = oldhash;
    393   1.1     lukem                 ftemp = fopen(temp, "r");
    394   1.5     lukem                 (void)unlink(temp);
    395   1.1     lukem                 if (ftemp == NULL) {
    396   1.5     lukem 			if (errbuf == NULL)
    397  1.24     lukem 				fputs(
    398  1.24     lukem 				    "can't find list of remote files, oops.\n",
    399  1.24     lukem 				    ttyout);
    400   1.5     lukem 			else
    401   1.5     lukem 				*errbuf =
    402   1.5     lukem 				    "can't find list of remote files, oops.";
    403   1.1     lukem                         return (NULL);
    404   1.1     lukem                 }
    405   1.1     lukem         }
    406   1.5     lukem         if (fgets(buf, sizeof(buf), ftemp) == NULL) {
    407   1.5     lukem                 (void)fclose(ftemp);
    408   1.5     lukem 		ftemp = NULL;
    409   1.1     lukem                 return (NULL);
    410   1.1     lukem         }
    411   1.1     lukem         if ((cp = strchr(buf, '\n')) != NULL)
    412   1.1     lukem                 *cp = '\0';
    413   1.1     lukem         return (buf);
    414   1.1     lukem }
    415   1.1     lukem 
    416   1.1     lukem int
    417   1.1     lukem confirm(cmd, file)
    418   1.1     lukem 	const char *cmd, *file;
    419   1.1     lukem {
    420   1.1     lukem 	char line[BUFSIZ];
    421   1.1     lukem 
    422   1.1     lukem 	if (!interactive || confirmrest)
    423   1.1     lukem 		return (1);
    424  1.24     lukem 	fprintf(ttyout, "%s %s? ", cmd, file);
    425  1.24     lukem 	(void)fflush(ttyout);
    426   1.1     lukem 	if (fgets(line, sizeof(line), stdin) == NULL)
    427   1.1     lukem 		return (0);
    428   1.1     lukem 	switch (tolower(*line)) {
    429   1.1     lukem 		case 'n':
    430   1.1     lukem 			return (0);
    431   1.1     lukem 		case 'p':
    432   1.1     lukem 			interactive = 0;
    433  1.24     lukem 			fputs("Interactive mode: off.\n", ttyout);
    434   1.1     lukem 			break;
    435   1.1     lukem 		case 'a':
    436   1.1     lukem 			confirmrest = 1;
    437  1.24     lukem 			fprintf(ttyout, "Prompting off for duration of %s.\n",
    438  1.24     lukem 			    cmd);
    439   1.1     lukem 			break;
    440   1.1     lukem 	}
    441   1.1     lukem 	return (1);
    442   1.1     lukem }
    443   1.1     lukem 
    444   1.1     lukem /*
    445   1.1     lukem  * Glob a local file name specification with
    446   1.1     lukem  * the expectation of a single return value.
    447   1.1     lukem  * Can't control multiple values being expanded
    448   1.1     lukem  * from the expression, we return only the first.
    449   1.1     lukem  */
    450   1.1     lukem int
    451   1.1     lukem globulize(cpp)
    452   1.1     lukem 	char **cpp;
    453   1.1     lukem {
    454   1.1     lukem 	glob_t gl;
    455   1.1     lukem 	int flags;
    456   1.1     lukem 
    457   1.1     lukem 	if (!doglob)
    458   1.1     lukem 		return (1);
    459   1.1     lukem 
    460   1.1     lukem 	flags = GLOB_BRACE|GLOB_NOCHECK|GLOB_QUOTE|GLOB_TILDE;
    461   1.1     lukem 	memset(&gl, 0, sizeof(gl));
    462   1.1     lukem 	if (glob(*cpp, flags, NULL, &gl) ||
    463   1.1     lukem 	    gl.gl_pathc == 0) {
    464   1.1     lukem 		warnx("%s: not found", *cpp);
    465   1.1     lukem 		globfree(&gl);
    466   1.1     lukem 		return (0);
    467   1.1     lukem 	}
    468  1.12     lukem 		/* XXX: caller should check if *cpp changed, and
    469  1.12     lukem 		 *	free(*cpp) if that is the case
    470  1.12     lukem 		 */
    471  1.12     lukem 	*cpp = strdup(gl.gl_pathv[0]);
    472   1.1     lukem 	globfree(&gl);
    473   1.1     lukem 	return (1);
    474   1.1     lukem }
    475   1.1     lukem 
    476   1.1     lukem /*
    477   1.1     lukem  * determine size of remote file
    478   1.1     lukem  */
    479   1.1     lukem off_t
    480   1.1     lukem remotesize(file, noisy)
    481   1.1     lukem 	const char *file;
    482   1.1     lukem 	int noisy;
    483   1.1     lukem {
    484   1.1     lukem 	int overbose;
    485   1.1     lukem 	off_t size;
    486   1.1     lukem 
    487   1.1     lukem 	overbose = verbose;
    488   1.1     lukem 	size = -1;
    489   1.1     lukem 	if (debug == 0)
    490   1.1     lukem 		verbose = -1;
    491  1.11     lukem 	if (command("SIZE %s", file) == COMPLETE) {
    492  1.11     lukem 		char *cp, *ep;
    493  1.11     lukem 
    494  1.11     lukem 		cp = strchr(reply_string, ' ');
    495  1.11     lukem 		if (cp != NULL) {
    496  1.11     lukem 			cp++;
    497  1.23  christos #ifdef NO_QUAD
    498  1.23  christos 			size = strtol(cp, &ep, 10);
    499  1.23  christos #else
    500  1.11     lukem 			size = strtoq(cp, &ep, 10);
    501  1.23  christos #endif
    502  1.23  christos 			if (*ep != '\0' && !isspace((unsigned char)*ep))
    503  1.11     lukem 				size = -1;
    504  1.11     lukem 		}
    505  1.24     lukem 	} else if (noisy && debug == 0) {
    506  1.24     lukem 		fputs(reply_string, ttyout);
    507  1.24     lukem 		putc('\n', ttyout);
    508  1.24     lukem 	}
    509   1.1     lukem 	verbose = overbose;
    510   1.1     lukem 	return (size);
    511   1.1     lukem }
    512   1.1     lukem 
    513   1.1     lukem /*
    514   1.1     lukem  * determine last modification time (in GMT) of remote file
    515   1.1     lukem  */
    516   1.1     lukem time_t
    517   1.1     lukem remotemodtime(file, noisy)
    518   1.1     lukem 	const char *file;
    519   1.1     lukem 	int noisy;
    520   1.1     lukem {
    521   1.1     lukem 	int overbose;
    522   1.1     lukem 	time_t rtime;
    523  1.14     lukem 	int ocode;
    524   1.1     lukem 
    525   1.1     lukem 	overbose = verbose;
    526  1.14     lukem 	ocode = code;
    527   1.1     lukem 	rtime = -1;
    528   1.1     lukem 	if (debug == 0)
    529   1.1     lukem 		verbose = -1;
    530   1.1     lukem 	if (command("MDTM %s", file) == COMPLETE) {
    531   1.1     lukem 		struct tm timebuf;
    532   1.1     lukem 		int yy, mo, day, hour, min, sec;
    533   1.1     lukem 		sscanf(reply_string, "%*s %04d%02d%02d%02d%02d%02d", &yy, &mo,
    534   1.1     lukem 			&day, &hour, &min, &sec);
    535   1.1     lukem 		memset(&timebuf, 0, sizeof(timebuf));
    536   1.1     lukem 		timebuf.tm_sec = sec;
    537   1.1     lukem 		timebuf.tm_min = min;
    538   1.1     lukem 		timebuf.tm_hour = hour;
    539   1.1     lukem 		timebuf.tm_mday = day;
    540   1.1     lukem 		timebuf.tm_mon = mo - 1;
    541  1.22  christos 		timebuf.tm_year = yy - TM_YEAR_BASE;
    542   1.1     lukem 		timebuf.tm_isdst = -1;
    543   1.1     lukem 		rtime = mktime(&timebuf);
    544   1.1     lukem 		if (rtime == -1 && (noisy || debug != 0))
    545  1.24     lukem 			fprintf(ttyout, "Can't convert %s to a time.\n",
    546  1.24     lukem 			    reply_string);
    547   1.1     lukem 		else
    548  1.23  christos #ifndef __SVR4
    549   1.1     lukem 			rtime += timebuf.tm_gmtoff;	/* conv. local -> GMT */
    550  1.23  christos #else
    551  1.23  christos 			rtime -= timezone;
    552  1.23  christos #endif
    553  1.24     lukem 	} else if (noisy && debug == 0) {
    554  1.24     lukem 		fputs(reply_string, ttyout);
    555  1.24     lukem 		putc('\n', ttyout);
    556  1.24     lukem 	}
    557   1.1     lukem 	verbose = overbose;
    558  1.14     lukem 	if (rtime == -1)
    559  1.14     lukem 		code = ocode;
    560   1.1     lukem 	return (rtime);
    561   1.1     lukem }
    562   1.1     lukem 
    563  1.18       gwr #ifndef	SMALL
    564  1.10     lukem 
    565  1.24     lukem /*
    566  1.24     lukem  * return non-zero if we're the current foreground process
    567  1.24     lukem  */
    568  1.24     lukem int
    569  1.24     lukem foregroundproc()
    570   1.3     lukem {
    571   1.9     lukem 	static pid_t pgrp = -1;
    572   1.9     lukem 	int ctty_pgrp;
    573   1.3     lukem 
    574   1.9     lukem 	if (pgrp == -1)
    575   1.9     lukem 		pgrp = getpgrp();
    576   1.9     lukem 
    577  1.24     lukem 	return ((ioctl(fileno(ttyout), TIOCGPGRP, &ctty_pgrp) != -1 &&
    578  1.24     lukem 	    ctty_pgrp == (int)pgrp));
    579  1.24     lukem }
    580  1.24     lukem 
    581  1.24     lukem 
    582  1.24     lukem static void updateprogressmeter __P((int));
    583  1.24     lukem 
    584  1.24     lukem static void
    585  1.24     lukem updateprogressmeter(dummy)
    586  1.24     lukem 	int dummy;
    587  1.24     lukem {
    588  1.24     lukem 
    589   1.9     lukem 	/*
    590   1.9     lukem 	 * print progress bar only if we are foreground process.
    591   1.9     lukem 	 */
    592  1.24     lukem 	if (foregroundproc())
    593   1.9     lukem 		progressmeter(0);
    594   1.3     lukem }
    595  1.18       gwr #endif	/* SMALL */
    596   1.3     lukem 
    597   1.1     lukem /*
    598   1.1     lukem  * Display a transfer progress bar if progress is non-zero.
    599   1.3     lukem  * SIGALRM is hijacked for use by this function.
    600   1.3     lukem  * - Before the transfer, set filesize to size of file (or -1 if unknown),
    601   1.3     lukem  *   and call with flag = -1. This starts the once per second timer,
    602   1.3     lukem  *   and a call to updateprogressmeter() upon SIGALRM.
    603   1.3     lukem  * - During the transfer, updateprogressmeter will call progressmeter
    604   1.3     lukem  *   with flag = 0
    605   1.3     lukem  * - After the transfer, call with flag = 1
    606   1.1     lukem  */
    607   1.1     lukem static struct timeval start;
    608  1.21     lukem static struct timeval lastupdate;
    609   1.1     lukem 
    610   1.1     lukem void
    611   1.1     lukem progressmeter(flag)
    612   1.1     lukem 	int flag;
    613   1.1     lukem {
    614  1.18       gwr #ifndef	SMALL
    615   1.3     lukem 	/*
    616   1.3     lukem 	 * List of order of magnitude prefixes.
    617   1.3     lukem 	 * The last is `P', as 2^64 = 16384 Petabytes
    618   1.3     lukem 	 */
    619   1.3     lukem 	static const char prefixes[] = " KMGTP";
    620   1.3     lukem 
    621   1.3     lukem 	static off_t lastsize;
    622   1.3     lukem 	struct timeval now, td, wait;
    623   1.1     lukem 	off_t cursize, abbrevsize;
    624  1.17     lukem 	double elapsed;
    625  1.17     lukem 	int ratio, barlength, i, len, remaining;
    626   1.3     lukem 	char buf[256];
    627   1.1     lukem 
    628  1.15   mycroft 	len = 0;
    629  1.15   mycroft 
    630   1.3     lukem 	if (flag == -1) {
    631  1.19     lukem 		(void)gettimeofday(&start, NULL);
    632   1.3     lukem 		lastupdate = start;
    633   1.3     lukem 		lastsize = restart_point;
    634   1.3     lukem 	}
    635  1.19     lukem 	(void)gettimeofday(&now, NULL);
    636   1.2   thorpej 	if (!progress || filesize <= 0)
    637   1.1     lukem 		return;
    638   1.1     lukem 	cursize = bytes + restart_point;
    639   1.1     lukem 
    640   1.1     lukem 	ratio = cursize * 100 / filesize;
    641   1.1     lukem 	ratio = MAX(ratio, 0);
    642   1.1     lukem 	ratio = MIN(ratio, 100);
    643  1.15   mycroft 	len += snprintf(buf + len, sizeof(buf) - len, "\r%3d%% ", ratio);
    644   1.1     lukem 
    645   1.1     lukem 	barlength = ttywidth - 30;
    646   1.1     lukem 	if (barlength > 0) {
    647   1.1     lukem 		i = barlength * ratio / 100;
    648  1.15   mycroft 		len += snprintf(buf + len, sizeof(buf) - len,
    649   1.3     lukem 		    "|%.*s%*s|", i,
    650   1.1     lukem "*****************************************************************************"
    651   1.1     lukem "*****************************************************************************",
    652   1.1     lukem 		    barlength - i, "");
    653   1.1     lukem 	}
    654   1.1     lukem 
    655   1.1     lukem 	i = 0;
    656   1.1     lukem 	abbrevsize = cursize;
    657   1.1     lukem 	while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
    658   1.1     lukem 		i++;
    659   1.1     lukem 		abbrevsize >>= 10;
    660   1.1     lukem 	}
    661  1.15   mycroft 	len += snprintf(buf + len, sizeof(buf) - len,
    662  1.11     lukem 	    " %5qd %c%c ", (long long)abbrevsize, prefixes[i],
    663   1.1     lukem 	    prefixes[i] == ' ' ? ' ' : 'B');
    664   1.1     lukem 
    665   1.3     lukem 	timersub(&now, &lastupdate, &wait);
    666   1.3     lukem 	if (cursize > lastsize) {
    667   1.3     lukem 		lastupdate = now;
    668   1.3     lukem 		lastsize = cursize;
    669   1.3     lukem 		if (wait.tv_sec >= STALLTIME) {	/* fudge out stalled time */
    670   1.3     lukem 			start.tv_sec += wait.tv_sec;
    671   1.3     lukem 			start.tv_usec += wait.tv_usec;
    672   1.3     lukem 		}
    673   1.3     lukem 		wait.tv_sec = 0;
    674   1.3     lukem 	}
    675   1.3     lukem 
    676   1.1     lukem 	timersub(&now, &start, &td);
    677   1.1     lukem 	elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
    678   1.3     lukem 
    679   1.8     lukem 	if (bytes <= 0 || elapsed <= 0.0 || cursize > filesize) {
    680  1.15   mycroft 		len += snprintf(buf + len, sizeof(buf) - len,
    681   1.3     lukem 		    "   --:-- ETA");
    682   1.3     lukem 	} else if (wait.tv_sec >= STALLTIME) {
    683  1.15   mycroft 		len += snprintf(buf + len, sizeof(buf) - len,
    684   1.3     lukem 		    " - stalled -");
    685   1.1     lukem 	} else {
    686  1.17     lukem 		remaining = (int)
    687  1.17     lukem 		    ((filesize - restart_point) / (bytes / elapsed) - elapsed);
    688  1.17     lukem 		if (remaining >= 100 * SECSPERHOUR)
    689  1.15   mycroft 			len += snprintf(buf + len, sizeof(buf) - len,
    690  1.15   mycroft 			    "   --:-- ETA");
    691  1.15   mycroft 		else {
    692  1.17     lukem 			i = remaining / SECSPERHOUR;
    693  1.15   mycroft 			if (i)
    694  1.15   mycroft 				len += snprintf(buf + len, sizeof(buf) - len,
    695  1.15   mycroft 				    "%2d:", i);
    696  1.15   mycroft 			else
    697  1.15   mycroft 				len += snprintf(buf + len, sizeof(buf) - len,
    698  1.15   mycroft 				    "   ");
    699  1.17     lukem 			i = remaining % SECSPERHOUR;
    700  1.15   mycroft 			len += snprintf(buf + len, sizeof(buf) - len,
    701  1.15   mycroft 			    "%02d:%02d ETA", i / 60, i % 60);
    702  1.15   mycroft 		}
    703   1.1     lukem 	}
    704  1.24     lukem 	(void)write(fileno(ttyout), buf, len);
    705   1.1     lukem 
    706   1.3     lukem 	if (flag == -1) {
    707   1.5     lukem 		(void)signal(SIGALRM, updateprogressmeter);
    708   1.3     lukem 		alarmtimer(1);		/* set alarm timer for 1 Hz */
    709   1.3     lukem 	} else if (flag == 1) {
    710   1.3     lukem 		alarmtimer(0);
    711  1.24     lukem 		(void)putc('\n', ttyout);
    712   1.3     lukem 	}
    713  1.24     lukem 	fflush(ttyout);
    714  1.18       gwr #endif	/* SMALL */
    715   1.1     lukem }
    716   1.1     lukem 
    717   1.1     lukem /*
    718   1.1     lukem  * Display transfer statistics.
    719   1.1     lukem  * Requires start to be initialised by progressmeter(-1),
    720   1.1     lukem  * direction to be defined by xfer routines, and filesize and bytes
    721   1.1     lukem  * to be updated by xfer routines
    722  1.24     lukem  * If siginfo is nonzero, an ETA is displayed, and the output goes to stderr
    723  1.24     lukem  * instead of ttyout.
    724   1.1     lukem  */
    725   1.1     lukem void
    726   1.1     lukem ptransfer(siginfo)
    727   1.1     lukem 	int siginfo;
    728   1.1     lukem {
    729  1.18       gwr #ifndef	SMALL
    730  1.21     lukem 	struct timeval now, td, wait;
    731   1.1     lukem 	double elapsed;
    732   1.1     lukem 	off_t bs;
    733  1.17     lukem 	int meg, remaining, hh, len;
    734   1.1     lukem 	char buf[100];
    735   1.1     lukem 
    736   1.1     lukem 	if (!verbose && !siginfo)
    737   1.1     lukem 		return;
    738   1.1     lukem 
    739  1.19     lukem 	(void)gettimeofday(&now, NULL);
    740   1.1     lukem 	timersub(&now, &start, &td);
    741   1.1     lukem 	elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
    742   1.1     lukem 	bs = bytes / (elapsed == 0.0 ? 1 : elapsed);
    743   1.1     lukem 	meg = 0;
    744   1.1     lukem 	if (bs > (1024 * 1024))
    745   1.1     lukem 		meg = 1;
    746  1.17     lukem 	len = 0;
    747  1.17     lukem 	len += snprintf(buf + len, sizeof(buf) - len,
    748  1.23  christos #ifndef NO_QUAD
    749  1.23  christos 	    "%qd byte%s %s in ", (long long)bytes,
    750  1.23  christos #else
    751  1.23  christos 	    "%ld byte%s %s in ", (long)bytes,
    752  1.23  christos #endif
    753  1.23  christos 	    bytes == 1 ? "" : "s", direction);
    754  1.21     lukem 	remaining = (int)elapsed;
    755  1.21     lukem 	if (remaining > SECSPERDAY) {
    756  1.21     lukem 		int days;
    757  1.21     lukem 
    758  1.21     lukem 		days = remaining / SECSPERDAY;
    759  1.21     lukem 		remaining %= SECSPERDAY;
    760  1.21     lukem 		len += snprintf(buf + len, sizeof(buf) - len,
    761  1.21     lukem 		    "%d day%s ", days, days == 1 ? "" : "s");
    762  1.21     lukem 	}
    763  1.21     lukem 	hh = remaining / SECSPERHOUR;
    764  1.21     lukem 	remaining %= SECSPERHOUR;
    765  1.21     lukem 	if (hh)
    766  1.21     lukem 		len += snprintf(buf + len, sizeof(buf) - len, "%2d:", hh);
    767  1.21     lukem 	len += snprintf(buf + len, sizeof(buf) - len,
    768  1.21     lukem 	    "%02d:%02d (%.2f %sB/s)", remaining / 60, remaining % 60,
    769  1.21     lukem 	    bs / (1024.0 * (meg ? 1024.0 : 1.0)),
    770  1.21     lukem 	    meg ? "M" : "K");
    771  1.21     lukem 
    772   1.8     lukem 	if (siginfo && bytes > 0 && elapsed > 0.0 && filesize >= 0
    773   1.8     lukem 	    && bytes + restart_point <= filesize) {
    774   1.1     lukem 		remaining = (int)((filesize - restart_point) /
    775   1.1     lukem 				  (bytes / elapsed) - elapsed);
    776  1.17     lukem 		hh = remaining / SECSPERHOUR;
    777  1.17     lukem 		remaining %= SECSPERHOUR;
    778  1.21     lukem 		len += snprintf(buf + len, sizeof(buf) - len, "  ETA: ");
    779  1.21     lukem 		if (hh)
    780  1.21     lukem 			len += snprintf(buf + len, sizeof(buf) - len, "%2d:",
    781  1.21     lukem 			    hh);
    782  1.17     lukem 		len += snprintf(buf + len, sizeof(buf) - len,
    783  1.21     lukem 		    "%02d:%02d", remaining / 60, remaining % 60);
    784  1.21     lukem 		timersub(&now, &lastupdate, &wait);
    785  1.21     lukem 		if (wait.tv_sec >= STALLTIME)
    786  1.21     lukem 			len += snprintf(buf + len, sizeof(buf) - len,
    787  1.21     lukem 			    "  (stalled)");
    788   1.1     lukem 	}
    789  1.21     lukem 	len += snprintf(buf + len, sizeof(buf) - len, "\n");
    790  1.24     lukem 	(void)write(siginfo ? STDERR_FILENO : fileno(ttyout), buf, len);
    791  1.18       gwr #endif	/* SMALL */
    792   1.1     lukem }
    793   1.1     lukem 
    794   1.1     lukem /*
    795   1.1     lukem  * List words in stringlist, vertically arranged
    796   1.1     lukem  */
    797   1.1     lukem void
    798   1.1     lukem list_vertical(sl)
    799   1.1     lukem 	StringList *sl;
    800   1.1     lukem {
    801   1.1     lukem 	int i, j, w;
    802   1.1     lukem 	int columns, width, lines, items;
    803   1.1     lukem 	char *p;
    804   1.1     lukem 
    805   1.1     lukem 	width = items = 0;
    806   1.1     lukem 
    807   1.1     lukem 	for (i = 0 ; i < sl->sl_cur ; i++) {
    808   1.1     lukem 		w = strlen(sl->sl_str[i]);
    809   1.1     lukem 		if (w > width)
    810   1.1     lukem 			width = w;
    811   1.1     lukem 	}
    812   1.1     lukem 	width = (width + 8) &~ 7;
    813   1.1     lukem 
    814   1.1     lukem 	columns = ttywidth / width;
    815   1.1     lukem 	if (columns == 0)
    816   1.1     lukem 		columns = 1;
    817   1.1     lukem 	lines = (sl->sl_cur + columns - 1) / columns;
    818   1.1     lukem 	for (i = 0; i < lines; i++) {
    819   1.1     lukem 		for (j = 0; j < columns; j++) {
    820   1.1     lukem 			p = sl->sl_str[j * lines + i];
    821   1.1     lukem 			if (p)
    822  1.24     lukem 				fputs(p, ttyout);
    823   1.1     lukem 			if (j * lines + i + lines >= sl->sl_cur) {
    824  1.24     lukem 				putc('\n', ttyout);
    825   1.1     lukem 				break;
    826   1.1     lukem 			}
    827   1.1     lukem 			w = strlen(p);
    828   1.1     lukem 			while (w < width) {
    829   1.1     lukem 				w = (w + 8) &~ 7;
    830  1.24     lukem 				(void)putc('\t', ttyout);
    831   1.1     lukem 			}
    832   1.1     lukem 		}
    833   1.1     lukem 	}
    834   1.3     lukem }
    835   1.3     lukem 
    836   1.3     lukem /*
    837   1.3     lukem  * Update the global ttywidth value, using TIOCGWINSZ.
    838   1.3     lukem  */
    839   1.3     lukem void
    840   1.3     lukem setttywidth(a)
    841   1.3     lukem 	int a;
    842   1.3     lukem {
    843   1.3     lukem 	struct winsize winsize;
    844   1.3     lukem 
    845  1.24     lukem 	if (ioctl(fileno(ttyout), TIOCGWINSZ, &winsize) != -1)
    846   1.3     lukem 		ttywidth = winsize.ws_col;
    847   1.3     lukem 	else
    848   1.3     lukem 		ttywidth = 80;
    849   1.3     lukem }
    850   1.3     lukem 
    851   1.3     lukem /*
    852   1.3     lukem  * Set the SIGALRM interval timer for wait seconds, 0 to disable.
    853   1.3     lukem  */
    854   1.3     lukem void
    855   1.3     lukem alarmtimer(wait)
    856   1.3     lukem 	int wait;
    857   1.3     lukem {
    858   1.3     lukem 	struct itimerval itv;
    859   1.3     lukem 
    860   1.3     lukem 	itv.it_value.tv_sec = wait;
    861   1.3     lukem 	itv.it_value.tv_usec = 0;
    862   1.3     lukem 	itv.it_interval = itv.it_value;
    863   1.3     lukem 	setitimer(ITIMER_REAL, &itv, NULL);
    864   1.1     lukem }
    865   1.6     lukem 
    866   1.6     lukem /*
    867   1.6     lukem  * Setup or cleanup EditLine structures
    868   1.6     lukem  */
    869   1.6     lukem #ifndef SMALL
    870   1.6     lukem void
    871   1.6     lukem controlediting()
    872   1.6     lukem {
    873   1.6     lukem 	if (editing && el == NULL && hist == NULL) {
    874  1.16  christos 		HistEvent ev;
    875  1.16  christos 
    876  1.24     lukem 		el = el_init(__progname, stdin, ttyout, stderr);
    877  1.23  christos 		/* init editline */
    878   1.6     lukem 		hist = history_init();		/* init the builtin history */
    879  1.23  christos 		history(hist, &ev, H_SETSIZE, 100);/* remember 100 events */
    880   1.6     lukem 		el_set(el, EL_HIST, history, hist);	/* use history */
    881   1.6     lukem 
    882   1.6     lukem 		el_set(el, EL_EDITOR, "emacs");	/* default editor is emacs */
    883   1.6     lukem 		el_set(el, EL_PROMPT, prompt);	/* set the prompt function */
    884   1.6     lukem 
    885   1.6     lukem 		/* add local file completion, bind to TAB */
    886   1.6     lukem 		el_set(el, EL_ADDFN, "ftp-complete",
    887   1.6     lukem 		    "Context sensitive argument completion",
    888   1.6     lukem 		    complete);
    889   1.6     lukem 		el_set(el, EL_BIND, "^I", "ftp-complete", NULL);
    890   1.6     lukem 
    891   1.6     lukem 		el_source(el, NULL);	/* read ~/.editrc */
    892   1.6     lukem 		el_set(el, EL_SIGNAL, 1);
    893   1.6     lukem 	} else if (!editing) {
    894   1.6     lukem 		if (hist) {
    895   1.6     lukem 			history_end(hist);
    896   1.6     lukem 			hist = NULL;
    897   1.6     lukem 		}
    898   1.6     lukem 		if (el) {
    899   1.6     lukem 			el_end(el);
    900   1.6     lukem 			el = NULL;
    901   1.6     lukem 		}
    902   1.6     lukem 	}
    903   1.6     lukem }
    904   1.6     lukem #endif /* !SMALL */
    905