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
36 static const char sccsid
[] = "@(#)main.c 8.3 (Berkeley) 5/30/95";
39 #include <sys/cdefs.h>
40 __FBSDID("$FreeBSD: src/contrib/telnet/telnet/main.c,v 1.20 2005/01/09 10:24:45 maxim Exp $");
42 #include <sys/param.h>
43 #include <sys/socket.h>
53 #include <libtelnet/auth.h>
56 #include <libtelnet/encrypt.h>
59 /* These values need to be the same as defined in libtelnet/kerberos5.c */
60 /* Either define them in both places, or put in some common header file. */
61 #define OPTS_FORWARD_CREDS 0x00000002
62 #define OPTS_FORWARDABLE_CREDS 0x00000001
64 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
65 char *ipsec_policy_in
= NULL
;
66 char *ipsec_policy_out
= NULL
;
71 int family
= AF_UNSPEC
;
74 * Initialize variables.
91 fprintf(stderr
, "usage: %s %s%s%s%s\n",
94 "[-4] [-6] [-8] [-E] [-K] [-L] [-N] [-S tos] [-X atype] [-c] [-d]",
95 "\n\t[-e char] [-k realm] [-l user] [-f/-F] [-n tracefile] ",
97 "[-4] [-6] [-8] [-E] [-L] [-N] [-S tos] [-c] [-d]",
98 "\n\t[-e char] [-l user] [-n tracefile] ",
100 "[-r] [-s src_addr] [-u] ",
101 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
105 "[-y] [host-name [port]]"
106 #else /* ENCRYPTION */
108 #endif /* ENCRYPTION */
114 * main. Parse arguments, invoke the protocol or command parser.
118 main(int argc
, char *argv
[])
121 #if (!defined(__BEOS__) && !defined(__HAIKU__))
126 char *src_addr
= NULL
;
128 extern int forward_flags
;
131 tninit(); /* Clear out things */
135 if ((prompt
= strrchr(argv
[0], '/')))
142 rlogin
= (strncmp(prompt
, "rlog", 4) == 0) ? '~' : _POSIX_VDISABLE
;
143 #ifdef AUTHENTICATION
154 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
155 #define IPSECOPT "P:"
162 while ((ch
= getopt(argc
, argv
,
163 "468EKLNS:X:acde:fFk:l:n:rs:uxy" IPSECOPT
)) != -1)
176 eight
= 3; /* binary output and input */
179 rlogin
= escape
= _POSIX_VDISABLE
;
182 #ifdef AUTHENTICATION
187 eight
|= 2; /* binary output only */
193 #if (defined(__BEOS__) || defined(__HAIKU__))
194 fprintf(stderr
, "-S option is not supported\n");
198 if ((tos
= parsetos(optarg
, "tcp")) < 0)
199 fprintf(stderr
, "%s%s%s%s\n",
200 prompt
, ": Bad TOS argument '",
202 "; will try to use default TOS");
205 ultmp
= strtoul(optarg
, &ep
, 0);
206 if (*ep
|| ep
== optarg
|| ultmp
> MAXTOS
)
207 fprintf(stderr
, "%s%s%s%s\n",
208 prompt
, ": Bad TOS argument '",
210 "; will try to use default TOS");
214 #endif /* __BEOS__ */
217 #ifdef AUTHENTICATION
218 auth_disable_name(optarg
);
222 #ifdef AUTHENTICATION
223 /* It's the default now, so ignore */
235 set_escape_char(optarg
);
238 #ifdef AUTHENTICATION
239 #if defined(KRB5) && defined(FORWARD)
240 if (forward_flags
& OPTS_FORWARD_CREDS
) {
242 "%s: Only one of -f and -F allowed.\n",
246 forward_flags
|= OPTS_FORWARD_CREDS
;
249 "%s: Warning: -f ignored, no Kerberos V5 support.\n",
254 "%s: Warning: -f ignored, no Kerberos V5 support.\n",
259 #ifdef AUTHENTICATION
260 #if defined(KRB5) && defined(FORWARD)
261 if (forward_flags
& OPTS_FORWARD_CREDS
) {
263 "%s: Only one of -f and -F allowed.\n",
267 forward_flags
|= OPTS_FORWARD_CREDS
;
268 forward_flags
|= OPTS_FORWARDABLE_CREDS
;
271 "%s: Warning: -F ignored, no Kerberos V5 support.\n",
276 "%s: Warning: -F ignored, no Kerberos V5 support.\n",
281 #ifdef AUTHENTICATION
284 extern char *dest_realm
, dst_realm_buf
[], dst_realm_sz
;
285 dest_realm
= dst_realm_buf
;
286 (void)strncpy(dest_realm
, optarg
, dst_realm_sz
);
290 "%s: Warning: -k ignored, no Kerberos V4 support.\n",
295 "%s: Warning: -k ignored, no Kerberos V4 support.\n",
300 #ifdef AUTHENTICATION
301 /* This is the default now, so ignore it */
322 "%s: Warning: -x ignored, no ENCRYPT support.\n",
324 #endif /* ENCRYPTION */
332 "%s: Warning: -y ignored, no ENCRYPT support.\n",
334 #endif /* ENCRYPTION */
336 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
338 if (!strncmp("in", optarg
, 2))
339 ipsec_policy_in
= strdup(optarg
);
340 else if (!strncmp("out", optarg
, 3))
341 ipsec_policy_out
= strdup(optarg
);
353 autologin
= (rlogin
== _POSIX_VDISABLE
) ? 0 : 1;
359 char *args
[9], **argp
= args
;
365 *argp
++ = strdup("-l");
369 *argp
++ = strdup("-s");
372 *argp
++ = argv
[0]; /* host */
374 *argp
++ = argv
[1]; /* port */
377 if (setjmp(toplevel
) != 0)
379 if (tn(argp
- args
, args
) == 1)
384 (void)setjmp(toplevel
);