2 * Copyright (c) 1988, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#)main.c 8.3 (Berkeley) 5/30/95
34 * $FreeBSD: src/usr.bin/telnet/main.c,v 1.10.2.5 2002/04/13 11:07:13 markm Exp $
35 * $DragonFly: src/usr.bin/telnet/main.c,v 1.2 2003/06/17 04:29:32 dillon Exp $
38 #include <sys/types.h>
39 #include <sys/socket.h>
49 /* These values need to be the same as defined in libtelnet/kerberos5.c */
50 /* Either define them in both places, or put in some common header file. */
51 #define OPTS_FORWARD_CREDS 0x00000002
52 #define OPTS_FORWARDABLE_CREDS 0x00000001
58 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
59 char *ipsec_policy_in
= NULL
;
60 char *ipsec_policy_out
= NULL
;
63 int family
= AF_UNSPEC
;
66 * Initialize variables.
83 fprintf(stderr
, "Usage: %s %s%s%s%s\n",
85 "[-4] [-6] [-8] [-E] [-L] [-N] [-S tos] [-c] [-d]",
86 "\n\t[-e char] [-l user] [-n tracefile] ",
87 "[-r] [-s src_addr] [-u] ",
88 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
97 * main. Parse arguments, invoke the protocol or command parser.
101 main(int argc
, char *argv
[])
105 char *src_addr
= NULL
;
107 extern int forward_flags
;
110 tninit(); /* Clear out things */
114 if ((prompt
= strrchr(argv
[0], '/')))
121 rlogin
= (strncmp(prompt
, "rlog", 4) == 0) ? '~' : _POSIX_VDISABLE
;
125 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
126 #define IPSECOPT "P:"
130 while ((ch
= getopt(argc
, argv
,
131 "468EKLNS:X:acde:fFk:l:n:rs:t:uxy" IPSECOPT
)) != -1)
144 eight
= 3; /* binary output and input */
147 rlogin
= escape
= _POSIX_VDISABLE
;
152 eight
|= 2; /* binary output only */
162 if ((tos
= parsetos(optarg
, "tcp")) < 0)
163 fprintf(stderr
, "%s%s%s%s\n",
164 prompt
, ": Bad TOS argument '",
166 "; will try to use default TOS");
169 "%s: Warning: -S ignored, no parsetos() support.\n",
186 set_escape_char(optarg
);
190 "%s: Warning: -f ignored, no Kerberos V5 support.\n",
195 "%s: Warning: -F ignored, no Kerberos V5 support.\n",
200 "%s: Warning: -k ignored, no Kerberos V4 support.\n",
221 "%s: Warning: -x ignored, no ENCRYPT support.\n",
226 "%s: Warning: -y ignored, no ENCRYPT support.\n",
229 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
231 if (!strncmp("in", optarg
, 2))
232 ipsec_policy_in
= strdup(optarg
);
233 else if (!strncmp("out", optarg
, 3))
234 ipsec_policy_out
= strdup(optarg
);
246 autologin
= (rlogin
== _POSIX_VDISABLE
) ? 0 : 1;
252 char *args
[9], **argp
= args
;
258 *argp
++ = strdup("-l");
262 *argp
++ = strdup("-s");
265 *argp
++ = argv
[0]; /* host */
267 *argp
++ = argv
[1]; /* port */
270 if (setjmp(toplevel
) != 0)
272 if (tn(argp
- args
, args
) == 1)
277 (void)setjmp(toplevel
);