]>
git.cameronkatri.com Git - apple_cmds.git/blob - remote_cmds/telnet.tproj/main.c
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
[])
123 char *src_addr
= NULL
;
125 extern int forward_flags
;
128 tninit(); /* Clear out things */
132 if ((prompt
= strrchr(argv
[0], '/')))
139 rlogin
= (strncmp(prompt
, "rlog", 4) == 0) ? '~' : _POSIX_VDISABLE
;
140 #ifdef AUTHENTICATION
151 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
152 #define IPSECOPT "P:"
156 while ((ch
= getopt(argc
, argv
,
157 "468EKLNS:X:acde:fFk:l:n:rs:uxy" IPSECOPT
)) != -1)
170 eight
= 3; /* binary output and input */
173 rlogin
= escape
= _POSIX_VDISABLE
;
176 #ifdef AUTHENTICATION
181 eight
|= 2; /* binary output only */
189 if ((tos
= parsetos(optarg
, "tcp")) < 0)
190 fprintf(stderr
, "%s%s%s%s\n",
191 prompt
, ": Bad TOS argument '",
193 "; will try to use default TOS");
196 ultmp
= strtoul(optarg
, &ep
, 0);
197 if (*ep
|| ep
== optarg
|| ultmp
> MAXTOS
)
198 fprintf(stderr
, "%s%s%s%s\n",
199 prompt
, ": Bad TOS argument '",
201 "; will try to use default TOS");
207 #ifdef AUTHENTICATION
208 auth_disable_name(optarg
);
212 #ifdef AUTHENTICATION
213 /* It's the default now, so ignore */
225 set_escape_char(optarg
);
228 #ifdef AUTHENTICATION
229 #if defined(KRB5) && defined(FORWARD)
230 if (forward_flags
& OPTS_FORWARD_CREDS
) {
232 "%s: Only one of -f and -F allowed.\n",
236 forward_flags
|= OPTS_FORWARD_CREDS
;
239 "%s: Warning: -f ignored, no Kerberos V5 support.\n",
244 "%s: Warning: -f ignored, no Kerberos V5 support.\n",
249 #ifdef AUTHENTICATION
250 #if defined(KRB5) && defined(FORWARD)
251 if (forward_flags
& OPTS_FORWARD_CREDS
) {
253 "%s: Only one of -f and -F allowed.\n",
257 forward_flags
|= OPTS_FORWARD_CREDS
;
258 forward_flags
|= OPTS_FORWARDABLE_CREDS
;
261 "%s: Warning: -F ignored, no Kerberos V5 support.\n",
266 "%s: Warning: -F ignored, no Kerberos V5 support.\n",
271 #ifdef AUTHENTICATION
274 extern char *dest_realm
, dst_realm_buf
[], dst_realm_sz
;
275 dest_realm
= dst_realm_buf
;
276 (void)strncpy(dest_realm
, optarg
, dst_realm_sz
);
280 "%s: Warning: -k ignored, no Kerberos V4 support.\n",
285 "%s: Warning: -k ignored, no Kerberos V4 support.\n",
290 #ifdef AUTHENTICATION
291 /* This is the default now, so ignore it */
312 "%s: Warning: -x ignored, no ENCRYPT support.\n",
314 #endif /* ENCRYPTION */
322 "%s: Warning: -y ignored, no ENCRYPT support.\n",
324 #endif /* ENCRYPTION */
326 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
328 if (!strncmp("in", optarg
, 2))
329 ipsec_policy_in
= strdup(optarg
);
330 else if (!strncmp("out", optarg
, 3))
331 ipsec_policy_out
= strdup(optarg
);
343 autologin
= (rlogin
== _POSIX_VDISABLE
) ? 0 : 1;
349 char *args
[9], **argp
= args
;
355 *argp
++ = strdup("-l");
359 *argp
++ = strdup("-s");
362 *argp
++ = argv
[0]; /* host */
364 *argp
++ = argv
[1]; /* port */
367 if (setjmp(toplevel
) != 0)
369 if (tn(argp
- args
, args
) == 1)
374 (void)setjmp(toplevel
);