]> git.saurik.com Git - apple/network_cmds.git/blame - rlogind.tproj/rlogind.c
network_cmds-245.tar.gz
[apple/network_cmds.git] / rlogind.tproj / rlogind.c
CommitLineData
b7080c8e
A
1/*
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
2b484d24
A
6 * "Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 1.0 (the 'License'). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
12 * this file.
b7080c8e
A
13 *
14 * The Original Code and all software distributed under the License are
15 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2b484d24
A
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
20 * under the License."
b7080c8e
A
21 *
22 * @APPLE_LICENSE_HEADER_END@
23 */
24/*-
25 * Copyright (c) 1983, 1988, 1989, 1993
26 * The Regents of the University of California. All rights reserved.
27 *
28 * Redistribution and use in source and binary forms, with or without
29 * modification, are permitted provided that the following conditions
30 * are met:
31 * 1. Redistributions of source code must retain the above copyright
32 * notice, this list of conditions and the following disclaimer.
33 * 2. Redistributions in binary form must reproduce the above copyright
34 * notice, this list of conditions and the following disclaimer in the
35 * documentation and/or other materials provided with the distribution.
36 * 3. All advertising materials mentioning features or use of this software
37 * must display the following acknowledgement:
38 * This product includes software developed by the University of
39 * California, Berkeley and its contributors.
40 * 4. Neither the name of the University nor the names of its contributors
41 * may be used to endorse or promote products derived from this software
42 * without specific prior written permission.
43 *
44 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
45 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
47 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
48 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
49 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
50 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
51 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
52 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
53 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
54 * SUCH DAMAGE.
55 */
56
57#ifndef lint
58static char copyright[] =
59"@(#) Copyright (c) 1983, 1988, 1989, 1993\n\
60 The Regents of the University of California. All rights reserved.\n";
61#endif /* not lint */
62
63#ifndef lint
64static char sccsid[] = "@(#)rlogind.c 8.2 (Berkeley) 4/28/95";
65#endif /* not lint */
66
67/*
68 * remote login server:
69 * \0
70 * remuser\0
71 * locuser\0
72 * terminal_type/speed\0
73 * data
74 */
75
76#define FD_SETSIZE 16 /* don't need many bits for select */
77#include <sys/param.h>
78#include <sys/stat.h>
79#include <sys/ioctl.h>
80#include <signal.h>
81#ifdef __APPLE__
82#include <sys/termios.h>
83#else
84#include <termios.h>
85#endif
86
87#include <sys/socket.h>
88#include <netinet/in.h>
89#include <netinet/in_systm.h>
90#include <netinet/ip.h>
91#include <arpa/inet.h>
92#include <netdb.h>
93
94#include <pwd.h>
95#include <syslog.h>
96#include <errno.h>
97#include <stdio.h>
98#include <unistd.h>
99#include <stdlib.h>
100#include <string.h>
101#include "pathnames.h"
102
103#ifndef TIOCPKT_WINDOW
104#define TIOCPKT_WINDOW 0x80
105#endif
106
107#ifdef KERBEROS
108#include <kerberosIV/des.h>
109#include <kerberosIV/krb.h>
110#define SECURE_MESSAGE "This rlogin session is using DES encryption for all transmissions.\r\n"
111
112AUTH_DAT *kdata;
113KTEXT ticket;
114u_char auth_buf[sizeof(AUTH_DAT)];
115u_char tick_buf[sizeof(KTEXT_ST)];
116Key_schedule schedule;
117int doencrypt, retval, use_kerberos, vacuous;
118
119#define ARGSTR "alnkvx"
120#else
121#define ARGSTR "aln"
122#endif /* KERBEROS */
123
124char *env[2];
125#define NMAX 30
126char lusername[NMAX+1], rusername[NMAX+1];
127static char term[64] = "TERM=";
128#define ENVSIZE (sizeof("TERM=")-1) /* skip null for concatenation */
129int keepalive = 1;
130int check_all = 0;
131
132struct passwd *pwd;
133
134void doit __P((int, struct sockaddr_in *));
135int control __P((int, char *, int));
136void protocol __P((int, int));
137void cleanup __P((int));
138void fatal __P((int, char *, int));
139int do_rlogin __P((struct sockaddr_in *));
140void getstr __P((char *, int, char *));
141void setup_term __P((int));
142int do_krb_login __P((struct sockaddr_in *));
143void usage __P((void));
144int local_domain __P((char *));
145char *topdomain __P((char *));
146
147int
148main(argc, argv)
149 int argc;
150 char *argv[];
151{
152 extern int __check_rhosts_file;
153 struct sockaddr_in from;
154 int ch, fromlen, on;
155
156 openlog("rlogind", LOG_PID | LOG_CONS, LOG_AUTH);
157
158 opterr = 0;
159 while ((ch = getopt(argc, argv, ARGSTR)) != EOF)
160 switch (ch) {
161 case 'a':
162 check_all = 1;
163 break;
164 case 'l':
165 __check_rhosts_file = 0;
166 break;
167 case 'n':
168 keepalive = 0;
169 break;
170#ifdef KERBEROS
171 case 'k':
172 use_kerberos = 1;
173 break;
174 case 'v':
175 vacuous = 1;
176 break;
177#ifdef CRYPT
178 case 'x':
179 doencrypt = 1;
180 break;
181#endif
182#endif
183 case '?':
184 default:
185 usage();
186 break;
187 }
188 argc -= optind;
189 argv += optind;
190
191#ifdef KERBEROS
192 if (use_kerberos && vacuous) {
193 usage();
194 fatal(STDERR_FILENO, "only one of -k and -v allowed", 0);
195 }
196#endif
197 fromlen = sizeof (from);
198 if (getpeername(0, (struct sockaddr *)&from, &fromlen) < 0) {
199 syslog(LOG_ERR,"Can't get peer name of remote host: %m");
200 fatal(STDERR_FILENO, "Can't get peer name of remote host", 1);
201 }
202 on = 1;
203 if (keepalive &&
204 setsockopt(0, SOL_SOCKET, SO_KEEPALIVE, &on, sizeof (on)) < 0)
205 syslog(LOG_WARNING, "setsockopt (SO_KEEPALIVE): %m");
206 on = IPTOS_LOWDELAY;
207 if (setsockopt(0, IPPROTO_IP, IP_TOS, (char *)&on, sizeof(int)) < 0)
208 syslog(LOG_WARNING, "setsockopt (IP_TOS): %m");
209 doit(0, &from);
210}
211
212int child;
213int netf;
214char line[MAXPATHLEN];
215int confirmed;
216
217struct winsize win = { 0, 0, 0, 0 };
218
219
220void
221doit(f, fromp)
222 int f;
223 struct sockaddr_in *fromp;
224{
225 int master, pid, on = 1;
226 int authenticated = 0;
227 register struct hostent *hp;
228 char hostname[2 * MAXHOSTNAMELEN + 1];
229 char c;
230
231 alarm(60);
232 read(f, &c, 1);
233
234 if (c != 0)
235 exit(1);
236#ifdef KERBEROS
237 if (vacuous)
238 fatal(f, "Remote host requires Kerberos authentication", 0);
239#endif
240
241 alarm(0);
242 fromp->sin_port = ntohs((u_short)fromp->sin_port);
243 hp = gethostbyaddr((char *)&fromp->sin_addr, sizeof(struct in_addr),
244 fromp->sin_family);
245 if (hp)
246 (void)strcpy(hostname, hp->h_name);
247 else
248 (void)strcpy(hostname, inet_ntoa(fromp->sin_addr));
249
250#ifdef KERBEROS
251 if (use_kerberos) {
252 retval = do_krb_login(fromp);
253 if (retval == 0)
254 authenticated++;
255 else if (retval > 0)
256 fatal(f, krb_err_txt[retval], 0);
257 write(f, &c, 1);
258 confirmed = 1; /* we sent the null! */
259 } else
260#endif
261 {
262 if (fromp->sin_family != AF_INET ||
263 fromp->sin_port >= IPPORT_RESERVED ||
264 fromp->sin_port < IPPORT_RESERVED/2) {
265 syslog(LOG_NOTICE, "Connection from %s on illegal port",
266 inet_ntoa(fromp->sin_addr));
267 fatal(f, "Permission denied", 0);
268 }
269#ifdef IP_OPTIONS
270 {
271 u_char optbuf[BUFSIZ/3], *cp;
272 char lbuf[BUFSIZ], *lp;
273 int optsize = sizeof(optbuf), ipproto;
274 struct protoent *ip;
275
276 if ((ip = getprotobyname("ip")) != NULL)
277 ipproto = ip->p_proto;
278 else
279 ipproto = IPPROTO_IP;
280 if (getsockopt(0, ipproto, IP_OPTIONS, (char *)optbuf,
281 &optsize) == 0 && optsize != 0) {
282 lp = lbuf;
283 for (cp = optbuf; optsize > 0; cp++, optsize--, lp += 3)
284 sprintf(lp, " %2.2x", *cp);
285 syslog(LOG_NOTICE,
286 "Connection received using IP options (ignored):%s",
287 lbuf);
288 if (setsockopt(0, ipproto, IP_OPTIONS,
289 (char *)NULL, optsize) != 0) {
290 syslog(LOG_ERR,
291 "setsockopt IP_OPTIONS NULL: %m");
292 exit(1);
293 }
294 }
295 }
296#endif
297 if (do_rlogin(fromp) == 0)
298 authenticated++;
299 }
300 if (confirmed == 0) {
301 write(f, "", 1);
302 confirmed = 1; /* we sent the null! */
303 }
304#ifdef KERBEROS
305#ifdef CRYPT
306 if (doencrypt)
307 (void) des_write(f, SECURE_MESSAGE, sizeof(SECURE_MESSAGE) - 1);
308#endif
309#endif
310 netf = f;
311
312 pid = forkpty(&master, line, NULL, &win);
313 if (pid < 0) {
314 if (errno == ENOENT)
315 fatal(f, "Out of ptys", 0);
316 else
317 fatal(f, "Forkpty", 1);
318 }
319 if (pid == 0) {
320 if (f > 2) /* f should always be 0, but... */
321 (void) close(f);
322 setup_term(0);
323 if (authenticated) {
324#ifdef KERBEROS
325 if (use_kerberos && (pwd->pw_uid == 0))
326 syslog(LOG_INFO|LOG_AUTH,
327 "ROOT Kerberos login from %s.%s@%s on %s\n",
328 kdata->pname, kdata->pinst, kdata->prealm,
329 hostname);
330#endif
331
332 execle(_PATH_LOGIN, "login", "-p",
333 "-h", hostname, "-f", "--", lusername, NULL, env);
334 } else
335 execle(_PATH_LOGIN, "login", "-p",
336 "-h", hostname, "--", lusername, NULL, env);
337 fatal(STDERR_FILENO, _PATH_LOGIN, 1);
338 /*NOTREACHED*/
339 }
340#ifdef CRYPT
341#ifdef KERBEROS
342 /*
343 * If encrypted, don't turn on NBIO or the des read/write
344 * routines will croak.
345 */
346
347 if (!doencrypt)
348#endif
349#endif
350 ioctl(f, FIONBIO, &on);
351 ioctl(master, FIONBIO, &on);
352 ioctl(master, TIOCPKT, &on);
353 signal(SIGCHLD, cleanup);
354 protocol(f, master);
355 signal(SIGCHLD, SIG_IGN);
356 cleanup(0);
357}
358
359char magic[2] = { 0377, 0377 };
360char oobdata[] = {TIOCPKT_WINDOW};
361
362/*
363 * Handle a "control" request (signaled by magic being present)
364 * in the data stream. For now, we are only willing to handle
365 * window size changes.
366 */
367int
368control(pty, cp, n)
369 int pty;
370 char *cp;
371 int n;
372{
373 struct winsize w;
374
375 if (n < 4+sizeof (w) || cp[2] != 's' || cp[3] != 's')
376 return (0);
377 oobdata[0] &= ~TIOCPKT_WINDOW; /* we know he heard */
378 memmove(&w, cp+4, sizeof(w));
379 w.ws_row = ntohs(w.ws_row);
380 w.ws_col = ntohs(w.ws_col);
381 w.ws_xpixel = ntohs(w.ws_xpixel);
382 w.ws_ypixel = ntohs(w.ws_ypixel);
383 (void)ioctl(pty, TIOCSWINSZ, &w);
384 return (4+sizeof (w));
385}
386
387/*
388 * rlogin "protocol" machine.
389 */
390void
391protocol(f, p)
392 register int f, p;
393{
394 char pibuf[1024+1], fibuf[1024], *pbp, *fbp;
395 register pcc = 0, fcc = 0;
396 int cc, nfd, n;
397 char cntl;
398
399 /*
400 * Must ignore SIGTTOU, otherwise we'll stop
401 * when we try and set slave pty's window shape
402 * (our controlling tty is the master pty).
403 */
404 (void) signal(SIGTTOU, SIG_IGN);
405 send(f, oobdata, 1, MSG_OOB); /* indicate new rlogin */
406 if (f > p)
407 nfd = f + 1;
408 else
409 nfd = p + 1;
410 if (nfd > FD_SETSIZE) {
411 syslog(LOG_ERR, "select mask too small, increase FD_SETSIZE");
412 fatal(f, "internal error (select mask too small)", 0);
413 }
414 for (;;) {
415 fd_set ibits, obits, ebits, *omask;
416
417 FD_ZERO(&ebits);
418 FD_ZERO(&ibits);
419 FD_ZERO(&obits);
420 omask = (fd_set *)NULL;
421 if (fcc) {
422 FD_SET(p, &obits);
423 omask = &obits;
424 } else
425 FD_SET(f, &ibits);
426 if (pcc >= 0)
427 if (pcc) {
428 FD_SET(f, &obits);
429 omask = &obits;
430 } else
431 FD_SET(p, &ibits);
432 FD_SET(p, &ebits);
433 if ((n = select(nfd, &ibits, omask, &ebits, 0)) < 0) {
434 if (errno == EINTR)
435 continue;
436 fatal(f, "select", 1);
437 }
438 if (n == 0) {
439 /* shouldn't happen... */
440 sleep(5);
441 continue;
442 }
443#define pkcontrol(c) ((c)&(TIOCPKT_FLUSHWRITE|TIOCPKT_NOSTOP|TIOCPKT_DOSTOP))
444 if (FD_ISSET(p, &ebits)) {
445 cc = read(p, &cntl, 1);
446 if (cc == 1 && pkcontrol(cntl)) {
447 cntl |= oobdata[0];
448 send(f, &cntl, 1, MSG_OOB);
449 if (cntl & TIOCPKT_FLUSHWRITE) {
450 pcc = 0;
451 FD_CLR(p, &ibits);
452 }
453 }
454 }
455 if (FD_ISSET(f, &ibits)) {
456#ifdef CRYPT
457#ifdef KERBEROS
458 if (doencrypt)
459 fcc = des_read(f, fibuf, sizeof(fibuf));
460 else
461#endif
462#endif
463 fcc = read(f, fibuf, sizeof(fibuf));
464 if (fcc < 0 && errno == EWOULDBLOCK)
465 fcc = 0;
466 else {
467 register char *cp;
468 int left, n;
469
470 if (fcc <= 0)
471 break;
472 fbp = fibuf;
473
474 top:
475 for (cp = fibuf; cp < fibuf+fcc-1; cp++)
476 if (cp[0] == magic[0] &&
477 cp[1] == magic[1]) {
478 left = fcc - (cp-fibuf);
479 n = control(p, cp, left);
480 if (n) {
481 left -= n;
482 if (left > 0)
483 bcopy(cp+n, cp, left);
484 fcc -= n;
485 goto top; /* n^2 */
486 }
487 }
488 FD_SET(p, &obits); /* try write */
489 }
490 }
491
492 if (FD_ISSET(p, &obits) && fcc > 0) {
493 cc = write(p, fbp, fcc);
494 if (cc > 0) {
495 fcc -= cc;
496 fbp += cc;
497 }
498 }
499
500 if (FD_ISSET(p, &ibits)) {
501 pcc = read(p, pibuf, sizeof (pibuf));
502 pbp = pibuf;
503 if (pcc < 0 && errno == EWOULDBLOCK)
504 pcc = 0;
505 else if (pcc <= 0)
506 break;
507 else if (pibuf[0] == 0) {
508 pbp++, pcc--;
509#ifdef CRYPT
510#ifdef KERBEROS
511 if (!doencrypt)
512#endif
513#endif
514 FD_SET(f, &obits); /* try write */
515 } else {
516 if (pkcontrol(pibuf[0])) {
517 pibuf[0] |= oobdata[0];
518 send(f, &pibuf[0], 1, MSG_OOB);
519 }
520 pcc = 0;
521 }
522 }
523 if ((FD_ISSET(f, &obits)) && pcc > 0) {
524#ifdef CRYPT
525#ifdef KERBEROS
526 if (doencrypt)
527 cc = des_write(f, pbp, pcc);
528 else
529#endif
530#endif
531 cc = write(f, pbp, pcc);
532 if (cc < 0 && errno == EWOULDBLOCK) {
533 /*
534 * This happens when we try write after read
535 * from p, but some old kernels balk at large
536 * writes even when select returns true.
537 */
538 if (!FD_ISSET(p, &ibits))
539 sleep(5);
540 continue;
541 }
542 if (cc > 0) {
543 pcc -= cc;
544 pbp += cc;
545 }
546 }
547 }
548}
549
550void
551cleanup(signo)
552 int signo;
553{
554 char *p;
555
556 p = line + sizeof(_PATH_DEV) - 1;
557 if (logout(p))
558 logwtmp(p, "", "");
559 (void)chmod(line, 0666);
560 (void)chown(line, 0, 0);
561 *p = 'p';
562 (void)chmod(line, 0666);
563 (void)chown(line, 0, 0);
564 shutdown(netf, 2);
565 exit(1);
566}
567
568void
569fatal(f, msg, syserr)
570 int f;
571 char *msg;
572 int syserr;
573{
574 int len;
575 char buf[BUFSIZ], *bp = buf;
576
577 /*
578 * Prepend binary one to message if we haven't sent
579 * the magic null as confirmation.
580 */
581 if (!confirmed)
582 *bp++ = '\01'; /* error indicator */
583 if (syserr)
584 len = sprintf(bp, "rlogind: %s: %s.\r\n",
585 msg, strerror(errno));
586 else
587 len = sprintf(bp, "rlogind: %s.\r\n", msg);
588 (void) write(f, buf, bp + len - buf);
589 exit(1);
590}
591
592int
593do_rlogin(dest)
594 struct sockaddr_in *dest;
595{
596 getstr(rusername, sizeof(rusername), "remuser too long");
597 getstr(lusername, sizeof(lusername), "locuser too long");
598 getstr(term+ENVSIZE, sizeof(term)-ENVSIZE, "Terminal type too long");
599
600 pwd = getpwnam(lusername);
2b484d24
A
601 if (pwd == NULL) {
602 syslog(LOG_ERR,
603 "rlogin denied for user %s: getpwnam() failed\n",
604 lusername);
b7080c8e 605 return (-1);
2b484d24
A
606 }
607 if (pwd->pw_uid == 0 && strcmp("root", lusername))
608 {
609 syslog(LOG_ALERT,
610 "rlogin denied for non-root user %s with uid 0\n",
611 lusername);
b7080c8e 612 return (-1);
2b484d24 613 }
b7080c8e
A
614 return (iruserok(dest->sin_addr.s_addr, 0, rusername, lusername));
615}
616
617void
618getstr(buf, cnt, errmsg)
619 char *buf;
620 int cnt;
621 char *errmsg;
622{
623 char c;
624
625 do {
626 if (read(0, &c, 1) != 1)
627 exit(1);
628 if (--cnt < 0)
629 fatal(STDOUT_FILENO, errmsg, 0);
630 *buf++ = c;
631 } while (c != 0);
632}
633
634void
635setup_term(fd)
636 int fd;
637{
638 register char *cp = index(term+ENVSIZE, '/');
639 char *speed;
640 struct termios tt;
641
642#ifndef notyet
643 tcgetattr(fd, &tt);
644 if (cp) {
645 *cp++ = '\0';
646 speed = cp;
647 cp = index(speed, '/');
648 if (cp)
649 *cp++ = '\0';
650 cfsetspeed(&tt, atoi(speed));
651 }
652
653 tt.c_iflag = TTYDEF_IFLAG;
654 tt.c_oflag = TTYDEF_OFLAG;
655 tt.c_lflag = TTYDEF_LFLAG;
656 tcsetattr(fd, TCSAFLUSH, &tt);
657#else
658 if (cp) {
659 *cp++ = '\0';
660 speed = cp;
661 cp = index(speed, '/');
662 if (cp)
663 *cp++ = '\0';
664 tcgetattr(fd, &tt);
665 cfsetspeed(&tt, atoi(speed));
666 tcsetattr(fd, TCSAFLUSH, &tt);
667 }
668#endif
669
670 env[0] = term;
671 env[1] = 0;
672}
673
674#ifdef KERBEROS
675#define VERSION_SIZE 9
676
677/*
678 * Do the remote kerberos login to the named host with the
679 * given inet address
680 *
681 * Return 0 on valid authorization
682 * Return -1 on valid authentication, no authorization
683 * Return >0 for error conditions
684 */
685int
686do_krb_login(dest)
687 struct sockaddr_in *dest;
688{
689 int rc;
690 char instance[INST_SZ], version[VERSION_SIZE];
691 long authopts = 0L; /* !mutual */
692 struct sockaddr_in faddr;
693
694 kdata = (AUTH_DAT *) auth_buf;
695 ticket = (KTEXT) tick_buf;
696
697 instance[0] = '*';
698 instance[1] = '\0';
699
700#ifdef CRYPT
701 if (doencrypt) {
702 rc = sizeof(faddr);
703 if (getsockname(0, (struct sockaddr *)&faddr, &rc))
704 return (-1);
705 authopts = KOPT_DO_MUTUAL;
706 rc = krb_recvauth(
707 authopts, 0,
708 ticket, "rcmd",
709 instance, dest, &faddr,
710 kdata, "", schedule, version);
711 des_set_key(kdata->session, schedule);
712
713 } else
714#endif
715 rc = krb_recvauth(
716 authopts, 0,
717 ticket, "rcmd",
718 instance, dest, (struct sockaddr_in *) 0,
719 kdata, "", (bit_64 *) 0, version);
720
721 if (rc != KSUCCESS)
722 return (rc);
723
724 getstr(lusername, sizeof(lusername), "locuser");
725 /* get the "cmd" in the rcmd protocol */
726 getstr(term+ENVSIZE, sizeof(term)-ENVSIZE, "Terminal type");
727
728 pwd = getpwnam(lusername);
729 if (pwd == NULL)
730 return (-1);
731
732 /* returns nonzero for no access */
733 if (kuserok(kdata, lusername) != 0)
734 return (-1);
735
736 return (0);
737
738}
739#endif /* KERBEROS */
740
741void
742usage()
743{
744#ifdef KERBEROS
745 syslog(LOG_ERR, "usage: rlogind [-aln] [-k | -v]");
746#else
747 syslog(LOG_ERR, "usage: rlogind [-aln]");
748#endif
749}
750
751/*
752 * Check whether host h is in our local domain,
753 * defined as sharing the last two components of the domain part,
754 * or the entire domain part if the local domain has only one component.
755 * If either name is unqualified (contains no '.'),
756 * assume that the host is local, as it will be
757 * interpreted as such.
758 */
759int
760local_domain(h)
761 char *h;
762{
763 char localhost[MAXHOSTNAMELEN];
764 char *p1, *p2;
765
766 localhost[0] = 0;
767 (void) gethostname(localhost, sizeof(localhost));
768 p1 = topdomain(localhost);
769 p2 = topdomain(h);
770 if (p1 == NULL || p2 == NULL || !strcasecmp(p1, p2))
771 return (1);
772 return (0);
773}
774
775char *
776topdomain(h)
777 char *h;
778{
779 register char *p;
780 char *maybe = NULL;
781 int dots = 0;
782
783 for (p = h + strlen(h); p >= h; p--) {
784 if (*p == '.') {
785 if (++dots == 2)
786 return (p);
787 maybe = p;
788 }
789 }
790 return (maybe);
791}