]>
git.saurik.com Git - apple/network_cmds.git/blob - 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
34 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD: src/crypto/telnet/telnet/main.c,v 1.4.2.5 2002/04/13 10:59:08 markm Exp $");
41 static const char sccsid
[] = "@(#)main.c 8.3 (Berkeley) 5/30/95";
44 #include <sys/types.h>
45 #include <sys/socket.h>
55 #include <libtelnet/auth.h>
58 #include <libtelnet/encrypt.h>
61 /* These values need to be the same as defined in libtelnet/kerberos5.c */
62 /* Either define them in both places, or put in some common header file. */
63 #define OPTS_FORWARD_CREDS 0x00000002
64 #define OPTS_FORWARDABLE_CREDS 0x00000001
70 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
71 char *ipsec_policy_in
= NULL
;
72 char *ipsec_policy_out
= NULL
;
75 int family
= AF_UNSPEC
;
78 * Initialize variables.
95 fprintf(stderr
, "Usage: %s %s%s%s%s\n",
98 "[-4] [-6] [-8] [-E] [-K] [-L] [-N] [-S tos] [-X atype] [-c] [-d]",
99 "\n\t[-e char] [-k realm] [-l user] [-f/-F] [-n tracefile] ",
101 "[-4] [-6] [-8] [-E] [-L] [-N] [-S tos] [-c] [-d]",
102 "\n\t[-e char] [-l user] [-n tracefile] ",
104 "[-r] [-s src_addr] [-u] ",
105 #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
109 "[-y] [host-name [port]]"
110 #else /* ENCRYPTION */
112 #endif /* ENCRYPTION */
118 * main. Parse arguments, invoke the protocol or command parser.
122 main(int argc
, char *argv
[])
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:"
159 while ((ch
= getopt(argc
, argv
,
160 "468EKLNS:X:acde:fFk:l:n:rs:t:uxy" IPSECOPT
)) != -1)
173 eight
= 3; /* binary output and input */
176 rlogin
= escape
= _POSIX_VDISABLE
;
179 #ifdef AUTHENTICATION
184 eight
|= 2; /* binary output only */
194 if ((tos
= parsetos(optarg
, "tcp")) < 0)
195 fprintf(stderr
, "%s%s%s%s\n",
196 prompt
, ": Bad TOS argument '",
198 "; will try to use default TOS");
201 "%s: Warning: -S ignored, no parsetos() support.\n",
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
);