main.c revision 1.89 1 1.89 lukem /* $NetBSD: main.c,v 1.89 2004/07/20 10:40:22 lukem Exp $ */
2 1.59 lukem
3 1.59 lukem /*-
4 1.89 lukem * Copyright (c) 1996-2004 The NetBSD Foundation, Inc.
5 1.59 lukem * All rights reserved.
6 1.59 lukem *
7 1.59 lukem * This code is derived from software contributed to The NetBSD Foundation
8 1.59 lukem * by Luke Mewburn.
9 1.59 lukem *
10 1.59 lukem * Redistribution and use in source and binary forms, with or without
11 1.59 lukem * modification, are permitted provided that the following conditions
12 1.59 lukem * are met:
13 1.59 lukem * 1. Redistributions of source code must retain the above copyright
14 1.59 lukem * notice, this list of conditions and the following disclaimer.
15 1.59 lukem * 2. Redistributions in binary form must reproduce the above copyright
16 1.59 lukem * notice, this list of conditions and the following disclaimer in the
17 1.59 lukem * documentation and/or other materials provided with the distribution.
18 1.59 lukem * 3. All advertising materials mentioning features or use of this software
19 1.59 lukem * must display the following acknowledgement:
20 1.59 lukem * This product includes software developed by the NetBSD
21 1.59 lukem * Foundation, Inc. and its contributors.
22 1.59 lukem * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.59 lukem * contributors may be used to endorse or promote products derived
24 1.59 lukem * from this software without specific prior written permission.
25 1.59 lukem *
26 1.59 lukem * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.59 lukem * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.59 lukem * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.59 lukem * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.59 lukem * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.59 lukem * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.59 lukem * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.59 lukem * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.59 lukem * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.59 lukem * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.59 lukem * POSSIBILITY OF SUCH DAMAGE.
37 1.59 lukem */
38 1.45 itojun
39 1.45 itojun /*
40 1.55 lukem * Copyright (c) 1985, 1989, 1993, 1994
41 1.55 lukem * The Regents of the University of California. All rights reserved.
42 1.55 lukem *
43 1.45 itojun * Redistribution and use in source and binary forms, with or without
44 1.45 itojun * modification, are permitted provided that the following conditions
45 1.45 itojun * are met:
46 1.45 itojun * 1. Redistributions of source code must retain the above copyright
47 1.45 itojun * notice, this list of conditions and the following disclaimer.
48 1.45 itojun * 2. Redistributions in binary form must reproduce the above copyright
49 1.45 itojun * notice, this list of conditions and the following disclaimer in the
50 1.45 itojun * documentation and/or other materials provided with the distribution.
51 1.86 agc * 3. Neither the name of the University nor the names of its contributors
52 1.45 itojun * may be used to endorse or promote products derived from this software
53 1.45 itojun * without specific prior written permission.
54 1.55 lukem *
55 1.55 lukem * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
56 1.45 itojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
57 1.45 itojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
58 1.55 lukem * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
59 1.45 itojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
60 1.45 itojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
61 1.45 itojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
62 1.45 itojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
63 1.45 itojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
64 1.45 itojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
65 1.45 itojun * SUCH DAMAGE.
66 1.45 itojun */
67 1.12 lukem
68 1.1 cgd /*
69 1.55 lukem * Copyright (C) 1997 and 1998 WIDE Project.
70 1.55 lukem * All rights reserved.
71 1.55 lukem *
72 1.1 cgd * Redistribution and use in source and binary forms, with or without
73 1.1 cgd * modification, are permitted provided that the following conditions
74 1.1 cgd * are met:
75 1.1 cgd * 1. Redistributions of source code must retain the above copyright
76 1.1 cgd * notice, this list of conditions and the following disclaimer.
77 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
78 1.1 cgd * notice, this list of conditions and the following disclaimer in the
79 1.1 cgd * documentation and/or other materials provided with the distribution.
80 1.55 lukem * 3. Neither the name of the project nor the names of its contributors
81 1.1 cgd * may be used to endorse or promote products derived from this software
82 1.1 cgd * without specific prior written permission.
83 1.55 lukem *
84 1.55 lukem * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
85 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
86 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
87 1.55 lukem * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
88 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
89 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
90 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
91 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
92 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
93 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
94 1.1 cgd * SUCH DAMAGE.
95 1.1 cgd */
96 1.1 cgd
97 1.23 lukem #include <sys/cdefs.h>
98 1.1 cgd #ifndef lint
99 1.23 lukem __COPYRIGHT("@(#) Copyright (c) 1985, 1989, 1993, 1994\n\
100 1.23 lukem The Regents of the University of California. All rights reserved.\n");
101 1.1 cgd #endif /* not lint */
102 1.1 cgd
103 1.1 cgd #ifndef lint
104 1.8 tls #if 0
105 1.8 tls static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 10/9/94";
106 1.8 tls #else
107 1.89 lukem __RCSID("$NetBSD: main.c,v 1.89 2004/07/20 10:40:22 lukem Exp $");
108 1.8 tls #endif
109 1.1 cgd #endif /* not lint */
110 1.1 cgd
111 1.1 cgd /*
112 1.1 cgd * FTP User Program -- Command Interface.
113 1.1 cgd */
114 1.3 cgd #include <sys/types.h>
115 1.1 cgd #include <sys/socket.h>
116 1.1 cgd
117 1.3 cgd #include <err.h>
118 1.61 lukem #include <errno.h>
119 1.1 cgd #include <netdb.h>
120 1.56 lukem #include <paths.h>
121 1.1 cgd #include <pwd.h>
122 1.3 cgd #include <stdio.h>
123 1.22 lukem #include <stdlib.h>
124 1.9 cgd #include <string.h>
125 1.3 cgd #include <unistd.h>
126 1.76 jdolecek #include <locale.h>
127 1.1 cgd
128 1.57 lukem #define GLOBAL /* force GLOBAL decls in ftp_var.h to be declared */
129 1.3 cgd #include "ftp_var.h"
130 1.1 cgd
131 1.65 lukem #define FTP_PROXY "ftp_proxy" /* env var with FTP proxy location */
132 1.65 lukem #define HTTP_PROXY "http_proxy" /* env var with HTTP proxy location */
133 1.65 lukem #define NO_PROXY "no_proxy" /* env var with list of non-proxied
134 1.35 lukem * hosts, comma or space separated */
135 1.35 lukem
136 1.70 lukem static void setupoption(char *, char *, char *);
137 1.70 lukem int main(int, char *[]);
138 1.23 lukem
139 1.3 cgd int
140 1.70 lukem main(int argc, char *argv[])
141 1.1 cgd {
142 1.64 lukem int ch, rval;
143 1.74 lukem struct passwd *pw;
144 1.71 lukem char *cp, *ep, *anonuser, *anonpass, *upload_path;
145 1.71 lukem int dumbterm, s, len, isupload;
146 1.76 jdolecek
147 1.76 jdolecek setlocale(LC_ALL, "");
148 1.82 lukem setprogname(argv[0]);
149 1.1 cgd
150 1.45 itojun ftpport = "ftp";
151 1.45 itojun httpport = "http";
152 1.45 itojun gateport = NULL;
153 1.24 lukem cp = getenv("FTPSERVERPORT");
154 1.45 itojun if (cp != NULL)
155 1.45 itojun gateport = cp;
156 1.45 itojun else
157 1.45 itojun gateport = "ftpgate";
158 1.1 cgd doglob = 1;
159 1.1 cgd interactive = 1;
160 1.1 cgd autologin = 1;
161 1.31 lukem passivemode = 1;
162 1.31 lukem activefallback = 1;
163 1.13 lukem preserve = 1;
164 1.17 lukem verbose = 0;
165 1.17 lukem progress = 0;
166 1.24 lukem gatemode = 0;
167 1.57 lukem data = -1;
168 1.39 lukem outfile = NULL;
169 1.39 lukem restartautofetch = 0;
170 1.43 cgd #ifndef NO_EDITCOMPLETE
171 1.18 lukem editing = 0;
172 1.21 lukem el = NULL;
173 1.21 lukem hist = NULL;
174 1.18 lukem #endif
175 1.60 lukem bytes = 0;
176 1.12 lukem mark = HASHBYTES;
177 1.44 lukem rate_get = 0;
178 1.44 lukem rate_get_incr = DEFAULTINCR;
179 1.44 lukem rate_put = 0;
180 1.44 lukem rate_put_incr = DEFAULTINCR;
181 1.49 lukem #ifdef INET6
182 1.47 itojun epsv4 = 1;
183 1.49 lukem #else
184 1.49 lukem epsv4 = 0;
185 1.49 lukem #endif
186 1.58 lukem epsv4bad = 0;
187 1.71 lukem upload_path = NULL;
188 1.71 lukem isupload = 0;
189 1.73 lukem reply_callback = NULL;
190 1.78 lukem family = AF_UNSPEC;
191 1.50 lukem
192 1.74 lukem netrc[0] = '\0';
193 1.74 lukem cp = getenv("NETRC");
194 1.74 lukem if (cp != NULL && strlcpy(netrc, cp, sizeof(netrc)) >= sizeof(netrc))
195 1.74 lukem errx(1, "$NETRC `%s': %s", cp, strerror(ENAMETOOLONG));
196 1.74 lukem
197 1.50 lukem /*
198 1.50 lukem * Get the default socket buffer sizes if we don't already have them.
199 1.50 lukem * It doesn't matter which socket we do this to, because on the first
200 1.50 lukem * call no socket buffer sizes will have been modified, so we are
201 1.50 lukem * guaranteed to get the system defaults.
202 1.50 lukem */
203 1.50 lukem s = socket(AF_INET, SOCK_STREAM, 0);
204 1.50 lukem if (s == -1)
205 1.50 lukem err(1, "can't create socket");
206 1.51 lukem len = sizeof(rcvbuf_size);
207 1.51 lukem if (getsockopt(s, SOL_SOCKET, SO_RCVBUF, (void *) &rcvbuf_size, &len)
208 1.51 lukem < 0)
209 1.51 lukem err(1, "unable to get default rcvbuf size");
210 1.50 lukem len = sizeof(sndbuf_size);
211 1.50 lukem if (getsockopt(s, SOL_SOCKET, SO_SNDBUF, (void *) &sndbuf_size, &len)
212 1.50 lukem < 0)
213 1.50 lukem err(1, "unable to get default sndbuf size");
214 1.51 lukem (void)close(s);
215 1.51 lukem /* sanity check returned buffer sizes */
216 1.51 lukem if (rcvbuf_size <= 0)
217 1.87 christos rcvbuf_size = 8 * 1024;
218 1.51 lukem if (sndbuf_size <= 0)
219 1.87 christos sndbuf_size = 8 * 1024;
220 1.87 christos
221 1.87 christos if (sndbuf_size > 8 * 1024 * 1024)
222 1.87 christos sndbuf_size = 8 * 1024 * 1024;
223 1.87 christos if (rcvbuf_size > 8 * 1024 * 1024)
224 1.87 christos rcvbuf_size = 8 * 1024 * 1024;
225 1.44 lukem
226 1.69 lukem marg_sl = xsl_init();
227 1.25 lukem if ((tmpdir = getenv("TMPDIR")) == NULL)
228 1.25 lukem tmpdir = _PATH_TMP;
229 1.3 cgd
230 1.31 lukem /* Set default operation mode based on FTPMODE environment variable */
231 1.31 lukem if ((cp = getenv("FTPMODE")) != NULL) {
232 1.65 lukem if (strcasecmp(cp, "passive") == 0) {
233 1.31 lukem passivemode = 1;
234 1.31 lukem activefallback = 0;
235 1.65 lukem } else if (strcasecmp(cp, "active") == 0) {
236 1.31 lukem passivemode = 0;
237 1.31 lukem activefallback = 0;
238 1.65 lukem } else if (strcasecmp(cp, "gate") == 0) {
239 1.31 lukem gatemode = 1;
240 1.65 lukem } else if (strcasecmp(cp, "auto") == 0) {
241 1.31 lukem passivemode = 1;
242 1.31 lukem activefallback = 1;
243 1.31 lukem } else
244 1.31 lukem warnx("unknown $FTPMODE '%s'; using defaults", cp);
245 1.31 lukem }
246 1.31 lukem
247 1.77 cgd if (strcmp(getprogname(), "pftp") == 0) {
248 1.15 lukem passivemode = 1;
249 1.31 lukem activefallback = 0;
250 1.77 cgd } else if (strcmp(getprogname(), "gate-ftp") == 0)
251 1.24 lukem gatemode = 1;
252 1.24 lukem
253 1.24 lukem gateserver = getenv("FTPSERVER");
254 1.24 lukem if (gateserver == NULL || *gateserver == '\0')
255 1.24 lukem gateserver = GATE_SERVER;
256 1.24 lukem if (gatemode) {
257 1.24 lukem if (*gateserver == '\0') {
258 1.24 lukem warnx(
259 1.42 lukem "Neither $FTPSERVER nor GATE_SERVER is defined; disabling gate-ftp");
260 1.24 lukem gatemode = 0;
261 1.24 lukem }
262 1.24 lukem }
263 1.15 lukem
264 1.22 lukem cp = getenv("TERM");
265 1.22 lukem if (cp == NULL || strcmp(cp, "dumb") == 0)
266 1.22 lukem dumbterm = 1;
267 1.22 lukem else
268 1.22 lukem dumbterm = 0;
269 1.17 lukem fromatty = isatty(fileno(stdin));
270 1.37 lukem ttyout = stdout;
271 1.37 lukem if (isatty(fileno(ttyout))) {
272 1.41 lukem verbose = 1; /* verbose if to a tty */
273 1.37 lukem if (! dumbterm) {
274 1.43 cgd #ifndef NO_EDITCOMPLETE
275 1.41 lukem if (fromatty) /* editing mode on if tty is usable */
276 1.41 lukem editing = 1;
277 1.43 cgd #endif
278 1.43 cgd #ifndef NO_PROGRESS
279 1.37 lukem if (foregroundproc())
280 1.37 lukem progress = 1; /* progress bar on if fg */
281 1.43 cgd #endif
282 1.37 lukem }
283 1.18 lukem }
284 1.17 lukem
285 1.83 christos while ((ch = getopt(argc, argv, "46AadefginN:o:pP:q:r:RtT:u:vV")) != -1) {
286 1.6 mycroft switch (ch) {
287 1.78 lukem case '4':
288 1.78 lukem family = AF_INET;
289 1.78 lukem break;
290 1.78 lukem
291 1.78 lukem case '6':
292 1.82 lukem #ifdef INET6
293 1.78 lukem family = AF_INET6;
294 1.82 lukem #else
295 1.82 lukem warnx("INET6 support is not available; ignoring -6");
296 1.82 lukem #endif
297 1.78 lukem break;
298 1.78 lukem
299 1.31 lukem case 'A':
300 1.31 lukem activefallback = 0;
301 1.31 lukem passivemode = 0;
302 1.31 lukem break;
303 1.31 lukem
304 1.12 lukem case 'a':
305 1.12 lukem anonftp = 1;
306 1.12 lukem break;
307 1.12 lukem
308 1.3 cgd case 'd':
309 1.3 cgd options |= SO_DEBUG;
310 1.3 cgd debug++;
311 1.3 cgd break;
312 1.12 lukem
313 1.18 lukem case 'e':
314 1.43 cgd #ifndef NO_EDITCOMPLETE
315 1.18 lukem editing = 0;
316 1.18 lukem #endif
317 1.18 lukem break;
318 1.18 lukem
319 1.36 lukem case 'f':
320 1.36 lukem flushcache = 1;
321 1.36 lukem break;
322 1.36 lukem
323 1.3 cgd case 'g':
324 1.3 cgd doglob = 0;
325 1.3 cgd break;
326 1.1 cgd
327 1.3 cgd case 'i':
328 1.3 cgd interactive = 0;
329 1.3 cgd break;
330 1.1 cgd
331 1.3 cgd case 'n':
332 1.3 cgd autologin = 0;
333 1.3 cgd break;
334 1.1 cgd
335 1.74 lukem case 'N':
336 1.74 lukem if (strlcpy(netrc, optarg, sizeof(netrc))
337 1.74 lukem >= sizeof(netrc))
338 1.74 lukem errx(1, "%s: %s", optarg,
339 1.74 lukem strerror(ENAMETOOLONG));
340 1.74 lukem break;
341 1.74 lukem
342 1.31 lukem case 'o':
343 1.31 lukem outfile = optarg;
344 1.31 lukem if (strcmp(outfile, "-") == 0)
345 1.31 lukem ttyout = stderr;
346 1.31 lukem break;
347 1.31 lukem
348 1.12 lukem case 'p':
349 1.12 lukem passivemode = 1;
350 1.31 lukem activefallback = 0;
351 1.12 lukem break;
352 1.12 lukem
353 1.12 lukem case 'P':
354 1.45 itojun ftpport = optarg;
355 1.83 christos break;
356 1.83 christos
357 1.83 christos case 'q':
358 1.83 christos quit_time = strtol(optarg, &ep, 10);
359 1.83 christos if (quit_time < 1 || *ep != '\0')
360 1.83 christos errx(1, "bad quit value: %s", optarg);
361 1.12 lukem break;
362 1.12 lukem
363 1.31 lukem case 'r':
364 1.31 lukem retry_connect = strtol(optarg, &ep, 10);
365 1.39 lukem if (retry_connect < 1 || *ep != '\0')
366 1.31 lukem errx(1, "bad retry value: %s", optarg);
367 1.31 lukem break;
368 1.31 lukem
369 1.39 lukem case 'R':
370 1.39 lukem restartautofetch = 1;
371 1.39 lukem break;
372 1.39 lukem
373 1.3 cgd case 't':
374 1.17 lukem trace = 1;
375 1.3 cgd break;
376 1.1 cgd
377 1.44 lukem case 'T':
378 1.44 lukem {
379 1.44 lukem int targc;
380 1.44 lukem char *targv[6], *oac;
381 1.44 lukem
382 1.44 lukem /* look for `dir,max[,incr]' */
383 1.44 lukem targc = 0;
384 1.44 lukem targv[targc++] = "-T";
385 1.44 lukem oac = xstrdup(optarg);
386 1.44 lukem
387 1.44 lukem while ((cp = strsep(&oac, ",")) != NULL) {
388 1.44 lukem if (*cp == '\0') {
389 1.44 lukem warnx("bad throttle value: %s", optarg);
390 1.44 lukem usage();
391 1.44 lukem /* NOTREACHED */
392 1.44 lukem }
393 1.44 lukem targv[targc++] = cp;
394 1.44 lukem if (targc >= 5)
395 1.44 lukem break;
396 1.44 lukem }
397 1.44 lukem if (parserate(targc, targv, 1) == -1)
398 1.44 lukem usage();
399 1.44 lukem free(oac);
400 1.44 lukem break;
401 1.44 lukem }
402 1.44 lukem
403 1.71 lukem case 'u':
404 1.71 lukem {
405 1.71 lukem isupload = 1;
406 1.71 lukem interactive = 0;
407 1.71 lukem upload_path = xstrdup(optarg);
408 1.71 lukem
409 1.71 lukem break;
410 1.71 lukem }
411 1.71 lukem
412 1.3 cgd case 'v':
413 1.37 lukem progress = verbose = 1;
414 1.17 lukem break;
415 1.17 lukem
416 1.17 lukem case 'V':
417 1.37 lukem progress = verbose = 0;
418 1.3 cgd break;
419 1.1 cgd
420 1.3 cgd default:
421 1.14 lukem usage();
422 1.3 cgd }
423 1.1 cgd }
424 1.37 lukem /* set line buffering on ttyout */
425 1.37 lukem setvbuf(ttyout, NULL, _IOLBF, 0);
426 1.3 cgd argc -= optind;
427 1.3 cgd argv += optind;
428 1.3 cgd
429 1.1 cgd cpend = 0; /* no pending replies */
430 1.1 cgd proxy = 0; /* proxy not active */
431 1.1 cgd crflag = 1; /* strip c.r. on ascii gets */
432 1.1 cgd sendport = -1; /* not using ports */
433 1.74 lukem
434 1.1 cgd /*
435 1.74 lukem * Cache the user name and home directory.
436 1.1 cgd */
437 1.74 lukem localhome = NULL;
438 1.74 lukem localname = NULL;
439 1.74 lukem anonuser = "anonymous";
440 1.74 lukem cp = getenv("HOME");
441 1.74 lukem if (! EMPTYSTRING(cp))
442 1.74 lukem localhome = xstrdup(cp);
443 1.74 lukem pw = NULL;
444 1.1 cgd cp = getlogin();
445 1.65 lukem if (cp != NULL)
446 1.1 cgd pw = getpwnam(cp);
447 1.1 cgd if (pw == NULL)
448 1.1 cgd pw = getpwuid(getuid());
449 1.65 lukem if (pw != NULL) {
450 1.74 lukem if (localhome == NULL && !EMPTYSTRING(pw->pw_dir))
451 1.74 lukem localhome = xstrdup(pw->pw_dir);
452 1.74 lukem localname = xstrdup(pw->pw_name);
453 1.74 lukem anonuser = localname;
454 1.74 lukem }
455 1.74 lukem if (netrc[0] == '\0' && localhome != NULL) {
456 1.74 lukem if (strlcpy(netrc, localhome, sizeof(netrc)) >= sizeof(netrc) ||
457 1.74 lukem strlcat(netrc, "/.netrc", sizeof(netrc)) >= sizeof(netrc)) {
458 1.74 lukem warnx("%s/.netrc: %s", localhome,
459 1.74 lukem strerror(ENAMETOOLONG));
460 1.74 lukem netrc[0] = '\0';
461 1.74 lukem }
462 1.65 lukem }
463 1.74 lukem if (localhome == NULL)
464 1.74 lukem localhome = xstrdup("/");
465 1.65 lukem
466 1.65 lukem /*
467 1.65 lukem * Every anonymous FTP server I've encountered will accept the
468 1.65 lukem * string "username@", and will append the hostname itself. We
469 1.65 lukem * do this by default since many servers are picky about not
470 1.65 lukem * having a FQDN in the anonymous password.
471 1.85 salo * - thorpej (at) NetBSD.org
472 1.65 lukem */
473 1.65 lukem len = strlen(anonuser) + 2;
474 1.65 lukem anonpass = xmalloc(len);
475 1.65 lukem (void)strlcpy(anonpass, anonuser, len);
476 1.65 lukem (void)strlcat(anonpass, "@", len);
477 1.65 lukem
478 1.67 lukem /*
479 1.67 lukem * set all the defaults for options defined in
480 1.67 lukem * struct option optiontab[] declared in cmdtab.c
481 1.67 lukem */
482 1.65 lukem setupoption("anonpass", getenv("FTPANONPASS"), anonpass);
483 1.66 lukem setupoption("ftp_proxy", getenv(FTP_PROXY), "");
484 1.66 lukem setupoption("http_proxy", getenv(HTTP_PROXY), "");
485 1.66 lukem setupoption("no_proxy", getenv(NO_PROXY), "");
486 1.66 lukem setupoption("pager", getenv("PAGER"), DEFAULTPAGER);
487 1.67 lukem setupoption("prompt", getenv("FTPPROMPT"), DEFAULTPROMPT);
488 1.67 lukem setupoption("rprompt", getenv("FTPRPROMPT"), DEFAULTRPROMPT);
489 1.66 lukem
490 1.66 lukem free(anonpass);
491 1.12 lukem
492 1.17 lukem setttywidth(0);
493 1.60 lukem #ifdef SIGINFO
494 1.60 lukem (void)xsignal(SIGINFO, psummary);
495 1.60 lukem #endif
496 1.60 lukem (void)xsignal(SIGQUIT, psummary);
497 1.44 lukem (void)xsignal(SIGUSR1, crankrate);
498 1.44 lukem (void)xsignal(SIGUSR2, crankrate);
499 1.60 lukem (void)xsignal(SIGWINCH, setttywidth);
500 1.23 lukem
501 1.31 lukem #ifdef __GNUC__ /* to shut up gcc warnings */
502 1.23 lukem (void)&argc;
503 1.23 lukem (void)&argv;
504 1.23 lukem #endif
505 1.17 lukem
506 1.1 cgd if (argc > 0) {
507 1.71 lukem if (isupload) {
508 1.71 lukem rval = auto_put(argc, argv, upload_path);
509 1.71 lukem exit(rval);
510 1.71 lukem } else if (strchr(argv[0], ':') != NULL
511 1.71 lukem && ! isipv6addr(argv[0])) {
512 1.39 lukem rval = auto_fetch(argc, argv);
513 1.16 lukem if (rval >= 0) /* -1 == connected and cd-ed */
514 1.16 lukem exit(rval);
515 1.16 lukem } else {
516 1.68 lukem char *xargv[4], *user, *host;
517 1.3 cgd
518 1.89 lukem sigint_raised = 0;
519 1.89 lukem if (sigsetjmp(toplevel, 1)) {
520 1.89 lukem if (sigint_raised)
521 1.89 lukem exit(EXIT_SIGINT);
522 1.89 lukem else
523 1.89 lukem exit(1);
524 1.89 lukem }
525 1.61 lukem (void)xsignal(SIGINT, intr);
526 1.65 lukem (void)xsignal(SIGPIPE, lostpeer);
527 1.68 lukem user = NULL;
528 1.68 lukem host = argv[0];
529 1.68 lukem cp = strchr(host, '@');
530 1.68 lukem if (cp) {
531 1.68 lukem *cp = '\0';
532 1.68 lukem user = host;
533 1.68 lukem host = cp + 1;
534 1.68 lukem }
535 1.77 cgd /* XXX discards const */
536 1.77 cgd xargv[0] = (char *)getprogname();
537 1.68 lukem xargv[1] = host;
538 1.16 lukem xargv[2] = argv[1];
539 1.68 lukem xargv[3] = NULL;
540 1.31 lukem do {
541 1.68 lukem int oautologin;
542 1.68 lukem
543 1.68 lukem oautologin = autologin;
544 1.68 lukem if (user != NULL) {
545 1.68 lukem anonftp = 0;
546 1.68 lukem autologin = 0;
547 1.68 lukem }
548 1.31 lukem setpeer(argc+1, xargv);
549 1.68 lukem autologin = oautologin;
550 1.68 lukem if (connected == 1 && user != NULL)
551 1.68 lukem (void)ftp_login(host, user, NULL);
552 1.31 lukem if (!retry_connect)
553 1.31 lukem break;
554 1.31 lukem if (!connected) {
555 1.31 lukem macnum = 0;
556 1.31 lukem fprintf(ttyout,
557 1.31 lukem "Retrying in %d seconds...\n",
558 1.31 lukem retry_connect);
559 1.31 lukem sleep(retry_connect);
560 1.31 lukem }
561 1.31 lukem } while (!connected);
562 1.31 lukem retry_connect = 0; /* connected, stop hiding msgs */
563 1.16 lukem }
564 1.1 cgd }
565 1.71 lukem if (isupload)
566 1.71 lukem usage();
567 1.71 lukem
568 1.43 cgd #ifndef NO_EDITCOMPLETE
569 1.21 lukem controlediting();
570 1.43 cgd #endif /* !NO_EDITCOMPLETE */
571 1.64 lukem
572 1.64 lukem (void)sigsetjmp(toplevel, 1);
573 1.64 lukem (void)xsignal(SIGINT, intr);
574 1.65 lukem (void)xsignal(SIGPIPE, lostpeer);
575 1.64 lukem for (;;)
576 1.64 lukem cmdscanner();
577 1.1 cgd }
578 1.1 cgd
579 1.3 cgd /*
580 1.16 lukem * Generate a prompt
581 1.16 lukem */
582 1.3 cgd char *
583 1.70 lukem prompt(void)
584 1.1 cgd {
585 1.66 lukem static char **prompt;
586 1.66 lukem static char buf[MAXPATHLEN];
587 1.66 lukem
588 1.66 lukem if (prompt == NULL) {
589 1.66 lukem struct option *o;
590 1.66 lukem
591 1.66 lukem o = getoption("prompt");
592 1.66 lukem if (o == NULL)
593 1.66 lukem errx(1, "no such option `prompt'");
594 1.66 lukem prompt = &(o->value);
595 1.66 lukem }
596 1.67 lukem formatbuf(buf, sizeof(buf), *prompt ? *prompt : DEFAULTPROMPT);
597 1.67 lukem return (buf);
598 1.67 lukem }
599 1.67 lukem
600 1.67 lukem /*
601 1.67 lukem * Generate an rprompt
602 1.67 lukem */
603 1.67 lukem char *
604 1.70 lukem rprompt(void)
605 1.67 lukem {
606 1.67 lukem static char **rprompt;
607 1.67 lukem static char buf[MAXPATHLEN];
608 1.67 lukem
609 1.67 lukem if (rprompt == NULL) {
610 1.67 lukem struct option *o;
611 1.66 lukem
612 1.67 lukem o = getoption("rprompt");
613 1.67 lukem if (o == NULL)
614 1.67 lukem errx(1, "no such option `rprompt'");
615 1.67 lukem rprompt = &(o->value);
616 1.66 lukem }
617 1.67 lukem formatbuf(buf, sizeof(buf), *rprompt ? *rprompt : DEFAULTRPROMPT);
618 1.66 lukem return (buf);
619 1.1 cgd }
620 1.3 cgd
621 1.1 cgd /*
622 1.1 cgd * Command parser.
623 1.1 cgd */
624 1.3 cgd void
625 1.70 lukem cmdscanner(void)
626 1.1 cgd {
627 1.67 lukem struct cmd *c;
628 1.67 lukem char *p;
629 1.67 lukem int num;
630 1.1 cgd
631 1.1 cgd for (;;) {
632 1.43 cgd #ifndef NO_EDITCOMPLETE
633 1.16 lukem if (!editing) {
634 1.43 cgd #endif /* !NO_EDITCOMPLETE */
635 1.16 lukem if (fromatty) {
636 1.31 lukem fputs(prompt(), ttyout);
637 1.67 lukem p = rprompt();
638 1.67 lukem if (*p)
639 1.67 lukem fprintf(ttyout, "%s ", p);
640 1.31 lukem (void)fflush(ttyout);
641 1.16 lukem }
642 1.63 lukem if (fgets(line, sizeof(line), stdin) == NULL) {
643 1.63 lukem if (fromatty)
644 1.63 lukem putc('\n', ttyout);
645 1.73 lukem quit(0, NULL);
646 1.63 lukem }
647 1.16 lukem num = strlen(line);
648 1.16 lukem if (num == 0)
649 1.16 lukem break;
650 1.16 lukem if (line[--num] == '\n') {
651 1.16 lukem if (num == 0)
652 1.16 lukem break;
653 1.16 lukem line[num] = '\0';
654 1.16 lukem } else if (num == sizeof(line) - 2) {
655 1.31 lukem fputs("sorry, input line too long.\n", ttyout);
656 1.16 lukem while ((num = getchar()) != '\n' && num != EOF)
657 1.16 lukem /* void */;
658 1.16 lukem break;
659 1.16 lukem } /* else it was a line without a newline */
660 1.43 cgd #ifndef NO_EDITCOMPLETE
661 1.17 lukem } else {
662 1.16 lukem const char *buf;
663 1.26 christos HistEvent ev;
664 1.16 lukem cursor_pos = NULL;
665 1.16 lukem
666 1.63 lukem if ((buf = el_gets(el, &num)) == NULL || num == 0) {
667 1.63 lukem if (fromatty)
668 1.63 lukem putc('\n', ttyout);
669 1.73 lukem quit(0, NULL);
670 1.63 lukem }
671 1.40 lukem if (buf[--num] == '\n') {
672 1.16 lukem if (num == 0)
673 1.16 lukem break;
674 1.16 lukem } else if (num >= sizeof(line)) {
675 1.31 lukem fputs("sorry, input line too long.\n", ttyout);
676 1.1 cgd break;
677 1.16 lukem }
678 1.16 lukem memcpy(line, buf, num);
679 1.16 lukem line[num] = '\0';
680 1.26 christos history(hist, &ev, H_ENTER, buf);
681 1.16 lukem }
682 1.43 cgd #endif /* !NO_EDITCOMPLETE */
683 1.16 lukem
684 1.1 cgd makeargv();
685 1.16 lukem if (margc == 0)
686 1.1 cgd continue;
687 1.1 cgd c = getcmd(margv[0]);
688 1.1 cgd if (c == (struct cmd *)-1) {
689 1.31 lukem fputs("?Ambiguous command.\n", ttyout);
690 1.1 cgd continue;
691 1.1 cgd }
692 1.30 lukem if (c == NULL) {
693 1.43 cgd #if !defined(NO_EDITCOMPLETE)
694 1.30 lukem /*
695 1.30 lukem * attempt to el_parse() unknown commands.
696 1.30 lukem * any command containing a ':' would be parsed
697 1.30 lukem * as "[prog:]cmd ...", and will result in a
698 1.30 lukem * false positive if prog != "ftp", so treat
699 1.30 lukem * such commands as invalid.
700 1.30 lukem */
701 1.38 lukem if (strchr(margv[0], ':') != NULL ||
702 1.80 thorpej el_parse(el, margc, (const char **)margv) != 0)
703 1.43 cgd #endif /* !NO_EDITCOMPLETE */
704 1.31 lukem fputs("?Invalid command.\n", ttyout);
705 1.1 cgd continue;
706 1.1 cgd }
707 1.1 cgd if (c->c_conn && !connected) {
708 1.31 lukem fputs("Not connected.\n", ttyout);
709 1.1 cgd continue;
710 1.1 cgd }
711 1.13 lukem confirmrest = 0;
712 1.75 lukem margv[0] = c->c_name;
713 1.1 cgd (*c->c_handler)(margc, margv);
714 1.1 cgd if (bell && c->c_bell)
715 1.31 lukem (void)putc('\007', ttyout);
716 1.1 cgd if (c->c_handler != help)
717 1.1 cgd break;
718 1.1 cgd }
719 1.61 lukem (void)xsignal(SIGINT, intr);
720 1.65 lukem (void)xsignal(SIGPIPE, lostpeer);
721 1.1 cgd }
722 1.1 cgd
723 1.1 cgd struct cmd *
724 1.70 lukem getcmd(const char *name)
725 1.1 cgd {
726 1.13 lukem const char *p, *q;
727 1.3 cgd struct cmd *c, *found;
728 1.3 cgd int nmatches, longest;
729 1.11 pk
730 1.11 pk if (name == NULL)
731 1.11 pk return (0);
732 1.1 cgd
733 1.1 cgd longest = 0;
734 1.1 cgd nmatches = 0;
735 1.1 cgd found = 0;
736 1.12 lukem for (c = cmdtab; (p = c->c_name) != NULL; c++) {
737 1.1 cgd for (q = name; *q == *p++; q++)
738 1.1 cgd if (*q == 0) /* exact match? */
739 1.1 cgd return (c);
740 1.1 cgd if (!*q) { /* the name was a prefix */
741 1.1 cgd if (q - name > longest) {
742 1.1 cgd longest = q - name;
743 1.1 cgd nmatches = 1;
744 1.1 cgd found = c;
745 1.1 cgd } else if (q - name == longest)
746 1.1 cgd nmatches++;
747 1.1 cgd }
748 1.1 cgd }
749 1.1 cgd if (nmatches > 1)
750 1.1 cgd return ((struct cmd *)-1);
751 1.1 cgd return (found);
752 1.1 cgd }
753 1.1 cgd
754 1.1 cgd /*
755 1.1 cgd * Slice a string up into argc/argv.
756 1.1 cgd */
757 1.1 cgd
758 1.1 cgd int slrflag;
759 1.1 cgd
760 1.3 cgd void
761 1.70 lukem makeargv(void)
762 1.1 cgd {
763 1.16 lukem char *argp;
764 1.1 cgd
765 1.1 cgd stringbase = line; /* scan from first of buffer */
766 1.1 cgd argbase = argbuf; /* store from first of buffer */
767 1.1 cgd slrflag = 0;
768 1.16 lukem marg_sl->sl_cur = 0; /* reset to start of marg_sl */
769 1.10 pk for (margc = 0; ; margc++) {
770 1.16 lukem argp = slurpstring();
771 1.69 lukem xsl_add(marg_sl, argp);
772 1.16 lukem if (argp == NULL)
773 1.10 pk break;
774 1.10 pk }
775 1.43 cgd #ifndef NO_EDITCOMPLETE
776 1.16 lukem if (cursor_pos == line) {
777 1.16 lukem cursor_argc = 0;
778 1.16 lukem cursor_argo = 0;
779 1.16 lukem } else if (cursor_pos != NULL) {
780 1.16 lukem cursor_argc = margc;
781 1.16 lukem cursor_argo = strlen(margv[margc-1]);
782 1.16 lukem }
783 1.43 cgd #endif /* !NO_EDITCOMPLETE */
784 1.16 lukem }
785 1.10 pk
786 1.43 cgd #ifdef NO_EDITCOMPLETE
787 1.65 lukem #define INC_CHKCURSOR(x) (x)++
788 1.43 cgd #else /* !NO_EDITCOMPLETE */
789 1.65 lukem #define INC_CHKCURSOR(x) { (x)++ ; \
790 1.16 lukem if (x == cursor_pos) { \
791 1.16 lukem cursor_argc = margc; \
792 1.16 lukem cursor_argo = ap-argbase; \
793 1.16 lukem cursor_pos = NULL; \
794 1.16 lukem } }
795 1.38 lukem
796 1.43 cgd #endif /* !NO_EDITCOMPLETE */
797 1.1 cgd
798 1.1 cgd /*
799 1.1 cgd * Parse string into argbuf;
800 1.1 cgd * implemented with FSM to
801 1.1 cgd * handle quoting and strings
802 1.1 cgd */
803 1.1 cgd char *
804 1.70 lukem slurpstring(void)
805 1.1 cgd {
806 1.1 cgd int got_one = 0;
807 1.3 cgd char *sb = stringbase;
808 1.3 cgd char *ap = argbase;
809 1.1 cgd char *tmp = argbase; /* will return this if token found */
810 1.1 cgd
811 1.1 cgd if (*sb == '!' || *sb == '$') { /* recognize ! as a token for shell */
812 1.1 cgd switch (slrflag) { /* and $ as token for macro invoke */
813 1.1 cgd case 0:
814 1.1 cgd slrflag++;
815 1.16 lukem INC_CHKCURSOR(stringbase);
816 1.1 cgd return ((*sb == '!') ? "!" : "$");
817 1.1 cgd /* NOTREACHED */
818 1.1 cgd case 1:
819 1.1 cgd slrflag++;
820 1.1 cgd altarg = stringbase;
821 1.1 cgd break;
822 1.1 cgd default:
823 1.1 cgd break;
824 1.1 cgd }
825 1.1 cgd }
826 1.1 cgd
827 1.1 cgd S0:
828 1.1 cgd switch (*sb) {
829 1.1 cgd
830 1.1 cgd case '\0':
831 1.1 cgd goto OUT;
832 1.1 cgd
833 1.1 cgd case ' ':
834 1.1 cgd case '\t':
835 1.16 lukem INC_CHKCURSOR(sb);
836 1.16 lukem goto S0;
837 1.1 cgd
838 1.1 cgd default:
839 1.1 cgd switch (slrflag) {
840 1.1 cgd case 0:
841 1.1 cgd slrflag++;
842 1.1 cgd break;
843 1.1 cgd case 1:
844 1.1 cgd slrflag++;
845 1.1 cgd altarg = sb;
846 1.1 cgd break;
847 1.1 cgd default:
848 1.1 cgd break;
849 1.1 cgd }
850 1.1 cgd goto S1;
851 1.1 cgd }
852 1.1 cgd
853 1.1 cgd S1:
854 1.1 cgd switch (*sb) {
855 1.1 cgd
856 1.1 cgd case ' ':
857 1.1 cgd case '\t':
858 1.1 cgd case '\0':
859 1.1 cgd goto OUT; /* end of token */
860 1.1 cgd
861 1.1 cgd case '\\':
862 1.16 lukem INC_CHKCURSOR(sb);
863 1.16 lukem goto S2; /* slurp next character */
864 1.1 cgd
865 1.1 cgd case '"':
866 1.16 lukem INC_CHKCURSOR(sb);
867 1.16 lukem goto S3; /* slurp quoted string */
868 1.1 cgd
869 1.1 cgd default:
870 1.16 lukem *ap = *sb; /* add character to token */
871 1.16 lukem ap++;
872 1.16 lukem INC_CHKCURSOR(sb);
873 1.1 cgd got_one = 1;
874 1.1 cgd goto S1;
875 1.1 cgd }
876 1.1 cgd
877 1.1 cgd S2:
878 1.1 cgd switch (*sb) {
879 1.1 cgd
880 1.1 cgd case '\0':
881 1.1 cgd goto OUT;
882 1.1 cgd
883 1.1 cgd default:
884 1.16 lukem *ap = *sb;
885 1.16 lukem ap++;
886 1.16 lukem INC_CHKCURSOR(sb);
887 1.1 cgd got_one = 1;
888 1.1 cgd goto S1;
889 1.1 cgd }
890 1.1 cgd
891 1.1 cgd S3:
892 1.1 cgd switch (*sb) {
893 1.1 cgd
894 1.1 cgd case '\0':
895 1.1 cgd goto OUT;
896 1.1 cgd
897 1.1 cgd case '"':
898 1.16 lukem INC_CHKCURSOR(sb);
899 1.16 lukem goto S1;
900 1.1 cgd
901 1.1 cgd default:
902 1.16 lukem *ap = *sb;
903 1.16 lukem ap++;
904 1.16 lukem INC_CHKCURSOR(sb);
905 1.1 cgd got_one = 1;
906 1.1 cgd goto S3;
907 1.1 cgd }
908 1.1 cgd
909 1.1 cgd OUT:
910 1.1 cgd if (got_one)
911 1.1 cgd *ap++ = '\0';
912 1.1 cgd argbase = ap; /* update storage pointer */
913 1.1 cgd stringbase = sb; /* update scan pointer */
914 1.1 cgd if (got_one) {
915 1.3 cgd return (tmp);
916 1.1 cgd }
917 1.1 cgd switch (slrflag) {
918 1.1 cgd case 0:
919 1.1 cgd slrflag++;
920 1.1 cgd break;
921 1.1 cgd case 1:
922 1.1 cgd slrflag++;
923 1.28 lukem altarg = NULL;
924 1.1 cgd break;
925 1.1 cgd default:
926 1.1 cgd break;
927 1.1 cgd }
928 1.28 lukem return (NULL);
929 1.1 cgd }
930 1.1 cgd
931 1.1 cgd /*
932 1.65 lukem * Help/usage command.
933 1.1 cgd * Call each command handler with argc == 0 and argv[0] == name.
934 1.1 cgd */
935 1.3 cgd void
936 1.70 lukem help(int argc, char *argv[])
937 1.1 cgd {
938 1.3 cgd struct cmd *c;
939 1.67 lukem char *nargv[1], *p, *cmd;
940 1.65 lukem int isusage;
941 1.1 cgd
942 1.67 lukem cmd = argv[0];
943 1.67 lukem isusage = (strcmp(cmd, "usage") == 0);
944 1.65 lukem if (argc == 0 || (isusage && argc == 1)) {
945 1.67 lukem fprintf(ttyout, "usage: %s [command [...]]\n", cmd);
946 1.65 lukem return;
947 1.65 lukem }
948 1.1 cgd if (argc == 1) {
949 1.16 lukem StringList *buf;
950 1.1 cgd
951 1.69 lukem buf = xsl_init();
952 1.31 lukem fprintf(ttyout,
953 1.31 lukem "%sommands may be abbreviated. Commands are:\n\n",
954 1.16 lukem proxy ? "Proxy c" : "C");
955 1.65 lukem for (c = cmdtab; (p = c->c_name) != NULL; c++)
956 1.65 lukem if (!proxy || c->c_proxy)
957 1.69 lukem xsl_add(buf, p);
958 1.16 lukem list_vertical(buf);
959 1.16 lukem sl_free(buf, 0);
960 1.1 cgd return;
961 1.1 cgd }
962 1.16 lukem
963 1.65 lukem #define HELPINDENT ((int) sizeof("disconnect"))
964 1.16 lukem
965 1.1 cgd while (--argc > 0) {
966 1.3 cgd char *arg;
967 1.16 lukem
968 1.1 cgd arg = *++argv;
969 1.1 cgd c = getcmd(arg);
970 1.1 cgd if (c == (struct cmd *)-1)
971 1.65 lukem fprintf(ttyout, "?Ambiguous %s command `%s'\n",
972 1.67 lukem cmd, arg);
973 1.28 lukem else if (c == NULL)
974 1.65 lukem fprintf(ttyout, "?Invalid %s command `%s'\n",
975 1.67 lukem cmd, arg);
976 1.65 lukem else {
977 1.65 lukem if (isusage) {
978 1.75 lukem nargv[0] = c->c_name;
979 1.65 lukem (*c->c_handler)(0, nargv);
980 1.65 lukem } else
981 1.65 lukem fprintf(ttyout, "%-*s\t%s\n", HELPINDENT,
982 1.65 lukem c->c_name, c->c_help);
983 1.65 lukem }
984 1.1 cgd }
985 1.65 lukem }
986 1.65 lukem
987 1.65 lukem struct option *
988 1.70 lukem getoption(const char *name)
989 1.65 lukem {
990 1.65 lukem const char *p;
991 1.65 lukem struct option *c;
992 1.65 lukem
993 1.65 lukem if (name == NULL)
994 1.65 lukem return (NULL);
995 1.65 lukem for (c = optiontab; (p = c->name) != NULL; c++) {
996 1.65 lukem if (strcasecmp(p, name) == 0)
997 1.65 lukem return (c);
998 1.65 lukem }
999 1.65 lukem return (NULL);
1000 1.65 lukem }
1001 1.65 lukem
1002 1.65 lukem char *
1003 1.70 lukem getoptionvalue(const char *name)
1004 1.65 lukem {
1005 1.65 lukem struct option *c;
1006 1.65 lukem
1007 1.65 lukem if (name == NULL)
1008 1.65 lukem errx(1, "getoptionvalue() invoked with NULL name");
1009 1.66 lukem c = getoption(name);
1010 1.66 lukem if (c != NULL)
1011 1.66 lukem return (c->value);
1012 1.65 lukem errx(1, "getoptionvalue() invoked with unknown option `%s'", name);
1013 1.72 lukem /* NOTREACHED */
1014 1.65 lukem }
1015 1.65 lukem
1016 1.65 lukem static void
1017 1.70 lukem setupoption(char *name, char *value, char *defaultvalue)
1018 1.65 lukem {
1019 1.65 lukem char *nargv[3];
1020 1.65 lukem int overbose;
1021 1.65 lukem
1022 1.65 lukem nargv[0] = "setupoption()";
1023 1.65 lukem nargv[1] = name;
1024 1.65 lukem nargv[2] = (value ? value : defaultvalue);
1025 1.65 lukem overbose = verbose;
1026 1.65 lukem verbose = 0;
1027 1.65 lukem setoption(3, nargv);
1028 1.65 lukem verbose = overbose;
1029 1.12 lukem }
1030 1.12 lukem
1031 1.14 lukem void
1032 1.70 lukem usage(void)
1033 1.14 lukem {
1034 1.77 cgd const char *progname = getprogname();
1035 1.77 cgd
1036 1.14 lukem (void)fprintf(stderr,
1037 1.88 wiz "usage: %s [-46AadefginpRtvV] [-N netrc] [-o outfile] [-P port] [-q quittime]\n"
1038 1.88 wiz " [-r retry] [-T dir,max[,inc][[user@]host [port]]] [host:path[/]]\n"
1039 1.71 lukem " [file:///file] [ftp://[user[:pass]@]host[:port]/path[/]]\n"
1040 1.71 lukem " [http://[user[:pass]@]host[:port]/path] [...]\n"
1041 1.84 wiz " %s -u URL file [...]\n", progname, progname);
1042 1.14 lukem exit(1);
1043 1.1 cgd }
1044