Home | History | Annotate | Line # | Download | only in netatalk
at_control.c revision 1.1.14.1
      1  1.1.14.1      kenh /*	$NetBSD: at_control.c,v 1.1.14.1 1998/12/11 04:53:06 kenh Exp $	 */
      2       1.1  christos 
      3       1.1  christos /*
      4       1.1  christos  * Copyright (c) 1990,1994 Regents of The University of Michigan.
      5       1.1  christos  * All Rights Reserved.
      6       1.1  christos  *
      7       1.1  christos  * Permission to use, copy, modify, and distribute this software and
      8       1.1  christos  * its documentation for any purpose and without fee is hereby granted,
      9       1.1  christos  * provided that the above copyright notice appears in all copies and
     10       1.1  christos  * that both that copyright notice and this permission notice appear
     11       1.1  christos  * in supporting documentation, and that the name of The University
     12       1.1  christos  * of Michigan not be used in advertising or publicity pertaining to
     13       1.1  christos  * distribution of the software without specific, written prior
     14       1.1  christos  * permission. This software is supplied as is without expressed or
     15       1.1  christos  * implied warranties of any kind.
     16       1.1  christos  *
     17       1.1  christos  * This product includes software developed by the University of
     18       1.1  christos  * California, Berkeley and its contributors.
     19       1.1  christos  *
     20       1.1  christos  *	Research Systems Unix Group
     21       1.1  christos  *	The University of Michigan
     22       1.1  christos  *	c/o Wesley Craig
     23       1.1  christos  *	535 W. William Street
     24       1.1  christos  *	Ann Arbor, Michigan
     25       1.1  christos  *	+1-313-764-2278
     26       1.1  christos  *	netatalk (at) umich.edu
     27       1.1  christos  */
     28       1.1  christos 
     29       1.1  christos #include <sys/param.h>
     30       1.1  christos #include <sys/systm.h>
     31       1.1  christos #include <sys/proc.h>
     32       1.1  christos #include <sys/types.h>
     33       1.1  christos #include <sys/errno.h>
     34       1.1  christos #include <sys/ioctl.h>
     35       1.1  christos #include <sys/mbuf.h>
     36       1.1  christos #include <sys/kernel.h>
     37       1.1  christos #include <sys/socket.h>
     38       1.1  christos #include <sys/socketvar.h>
     39       1.1  christos #include <net/if.h>
     40       1.1  christos #include <net/route.h>
     41       1.1  christos #include <net/if_ether.h>
     42       1.1  christos #include <netinet/in.h>
     43       1.1  christos #undef s_net
     44       1.1  christos 
     45       1.1  christos #include <netatalk/at.h>
     46       1.1  christos #include <netatalk/at_var.h>
     47       1.1  christos #include <netatalk/aarp.h>
     48       1.1  christos #include <netatalk/phase2.h>
     49       1.1  christos #include <netatalk/at_extern.h>
     50       1.1  christos 
     51       1.1  christos static int aa_dorangeroute __P((struct ifaddr * ifa,
     52       1.1  christos     u_int first, u_int last, int cmd));
     53       1.1  christos static int aa_addsingleroute __P((struct ifaddr * ifa,
     54       1.1  christos     struct at_addr * addr, struct at_addr * mask));
     55       1.1  christos static int aa_delsingleroute __P((struct ifaddr * ifa,
     56       1.1  christos     struct at_addr * addr, struct at_addr * mask));
     57       1.1  christos static int aa_dosingleroute __P((struct ifaddr * ifa, struct at_addr * addr,
     58       1.1  christos     struct at_addr * mask, int cmd, int flags));
     59       1.1  christos static int at_scrub __P((struct ifnet * ifp, struct at_ifaddr * aa));
     60       1.1  christos static int at_ifinit __P((struct ifnet * ifp, struct at_ifaddr * aa,
     61       1.1  christos     struct sockaddr_at * sat));
     62       1.1  christos #if 0
     63       1.1  christos static void aa_clean __P((void));
     64       1.1  christos #endif
     65       1.1  christos 
     66       1.1  christos #define sateqaddr(a,b)	((a)->sat_len == (b)->sat_len && \
     67       1.1  christos 			 (a)->sat_family == (b)->sat_family && \
     68       1.1  christos 			 (a)->sat_addr.s_net == (b)->sat_addr.s_net && \
     69       1.1  christos 			 (a)->sat_addr.s_node == (b)->sat_addr.s_node )
     70       1.1  christos 
     71       1.1  christos int
     72       1.1  christos at_control(cmd, data, ifp, p)
     73       1.1  christos 	u_long          cmd;
     74       1.1  christos 	caddr_t         data;
     75       1.1  christos 	struct ifnet   *ifp;
     76       1.1  christos 	struct proc    *p;
     77       1.1  christos {
     78       1.1  christos 	struct ifreq   *ifr = (struct ifreq *) data;
     79       1.1  christos 	struct sockaddr_at *sat;
     80       1.1  christos 	struct netrange *nr;
     81       1.1  christos 	struct at_aliasreq *ifra = (struct at_aliasreq *) data;
     82       1.1  christos 	struct at_ifaddr *aa0;
     83       1.1  christos 	struct at_ifaddr *aa = 0;
     84  1.1.14.1      kenh 	int s, retval = 0;
     85       1.1  christos 
     86  1.1.14.1      kenh 	s = splimp();
     87       1.1  christos 	/*
     88       1.1  christos          * If we have an ifp, then find the matching at_ifaddr if it exists
     89       1.1  christos          */
     90       1.1  christos 	if (ifp)
     91  1.1.14.1      kenh 		for (aa = at_ifaddr.tqh_first;
     92  1.1.14.1      kenh 					 aa; aa = aa->aa_list.tqe_next)
     93       1.1  christos 			if (aa->aa_ifp == ifp)
     94       1.1  christos 				break;
     95       1.1  christos 
     96       1.1  christos 	/*
     97       1.1  christos          * In this first switch table we are basically getting ready for
     98       1.1  christos          * the second one, by getting the atalk-specific things set up
     99       1.1  christos          * so that they start to look more similar to other protocols etc.
    100       1.1  christos          */
    101       1.1  christos 
    102       1.1  christos 	switch (cmd) {
    103       1.1  christos 	case SIOCAIFADDR:
    104       1.1  christos 	case SIOCDIFADDR:
    105       1.1  christos 		/*
    106       1.1  christos 		 * If we have an appletalk sockaddr, scan forward of where
    107       1.1  christos 		 * we are now on the at_ifaddr list to find one with a matching
    108       1.1  christos 		 * address on this interface.
    109       1.1  christos 		 * This may leave aa pointing to the first address on the
    110       1.1  christos 		 * NEXT interface!
    111       1.1  christos 		 */
    112       1.1  christos 		if (ifra->ifra_addr.sat_family == AF_APPLETALK) {
    113       1.1  christos 			for (; aa; aa = aa->aa_list.tqe_next)
    114       1.1  christos 				if (aa->aa_ifp == ifp &&
    115       1.1  christos 				    sateqaddr(&aa->aa_addr, &ifra->ifra_addr))
    116       1.1  christos 					break;
    117       1.1  christos 		}
    118       1.1  christos 		/*
    119       1.1  christos 		 * If we a retrying to delete an addres but didn't find such,
    120       1.1  christos 		 * then return with an error
    121       1.1  christos 		 */
    122  1.1.14.1      kenh 		if (cmd == SIOCDIFADDR && aa == 0) {
    123  1.1.14.1      kenh 			splx(s);
    124       1.1  christos 			return (EADDRNOTAVAIL);
    125  1.1.14.1      kenh 		}
    126       1.1  christos 		/* FALLTHROUGH */
    127       1.1  christos 
    128       1.1  christos 	case SIOCSIFADDR:
    129       1.1  christos 		/*
    130       1.1  christos 		 * If we are not superuser, then we don't get to do these
    131       1.1  christos 		 * ops.
    132       1.1  christos 		 */
    133  1.1.14.1      kenh 		if (suser(p->p_ucred, &p->p_acflag)) {
    134  1.1.14.1      kenh 			splx(s);
    135       1.1  christos 			return (EPERM);
    136  1.1.14.1      kenh 		}
    137       1.1  christos 
    138       1.1  christos 		sat = satosat(&ifr->ifr_addr);
    139       1.1  christos 		nr = (struct netrange *) sat->sat_zero;
    140       1.1  christos 		if (nr->nr_phase == 1) {
    141       1.1  christos 			/*
    142       1.1  christos 		         * Look for a phase 1 address on this interface.
    143       1.1  christos 		         * This may leave aa pointing to the first address on
    144       1.1  christos 			 * the NEXT interface!
    145       1.1  christos 		         */
    146       1.1  christos 			for (; aa; aa = aa->aa_list.tqe_next) {
    147       1.1  christos 				if (aa->aa_ifp == ifp &&
    148       1.1  christos 				    (aa->aa_flags & AFA_PHASE2) == 0)
    149       1.1  christos 					break;
    150       1.1  christos 			}
    151       1.1  christos 		} else {	/* default to phase 2 */
    152       1.1  christos 			/*
    153       1.1  christos 		         * Look for a phase 2 address on this interface.
    154       1.1  christos 		         * This may leave aa pointing to the first address on
    155       1.1  christos 			 * the NEXT interface!
    156       1.1  christos 		         */
    157       1.1  christos 			for (; aa; aa = aa->aa_list.tqe_next) {
    158       1.1  christos 				if (aa->aa_ifp == ifp &&
    159       1.1  christos 				    (aa->aa_flags & AFA_PHASE2))
    160       1.1  christos 					break;
    161       1.1  christos 			}
    162       1.1  christos 		}
    163       1.1  christos 
    164       1.1  christos 		if (ifp == 0)
    165       1.1  christos 			panic("at_control");
    166       1.1  christos 
    167       1.1  christos 		/*
    168       1.1  christos 		 * If we failed to find an existing at_ifaddr entry, then we
    169       1.1  christos 		 * allocate a fresh one.
    170       1.1  christos 		 */
    171       1.1  christos 		if (aa == (struct at_ifaddr *) 0) {
    172       1.1  christos 			aa = (struct at_ifaddr *)
    173       1.1  christos 			    malloc(sizeof(struct at_ifaddr), M_IFADDR,
    174       1.1  christos 			    M_WAITOK);
    175       1.1  christos 
    176  1.1.14.1      kenh 			if (aa == NULL) {
    177  1.1.14.1      kenh 				splx(s);
    178       1.1  christos 				return (ENOBUFS);
    179  1.1.14.1      kenh 			}
    180       1.1  christos 
    181       1.1  christos 			bzero(aa, sizeof *aa);
    182       1.1  christos 
    183       1.1  christos 			if ((aa0 = at_ifaddr.tqh_first) != NULL) {
    184       1.1  christos 				/*
    185       1.1  christos 				 * Don't let the loopback be first, since the
    186       1.1  christos 				 * first address is the machine's default
    187       1.1  christos 				 * address for binding.
    188       1.1  christos 				 * If it is, stick ourself in front, otherwise
    189       1.1  christos 				 * go to the back of the list.
    190       1.1  christos 				 */
    191       1.1  christos 				if (aa0->aa_ifp->if_flags & IFF_LOOPBACK) {
    192       1.1  christos 					TAILQ_INSERT_HEAD(&at_ifaddr, aa,
    193       1.1  christos 					    aa_list);
    194       1.1  christos 				} else {
    195       1.1  christos 					TAILQ_INSERT_TAIL(&at_ifaddr, aa,
    196       1.1  christos 					    aa_list);
    197       1.1  christos 				}
    198       1.1  christos 			} else {
    199       1.1  christos 				TAILQ_INSERT_TAIL(&at_ifaddr, aa, aa_list);
    200       1.1  christos 			}
    201       1.1  christos 
    202       1.1  christos 			/*
    203       1.1  christos 		         * Find the end of the interface's addresses
    204       1.1  christos 		         * and link our new one on the end
    205       1.1  christos 		         */
    206       1.1  christos 			TAILQ_INSERT_TAIL(&ifp->if_addrlist,
    207       1.1  christos 			    (struct ifaddr *) aa, ifa_list);
    208       1.1  christos 
    209       1.1  christos 			/*
    210  1.1.14.1      kenh 			 * Even though we have made two references to
    211  1.1.14.1      kenh 			 * aa above, we only have one ref in aa's refcnt
    212  1.1.14.1      kenh 			 * as we insert & delete these two references
    213  1.1.14.1      kenh 			 * together. Also note that by bzero'ing, we
    214  1.1.14.1      kenh 			 * included these references in refcnt.
    215  1.1.14.1      kenh 			 */
    216  1.1.14.1      kenh 
    217  1.1.14.1      kenh 			/*
    218       1.1  christos 		         * As the at_ifaddr contains the actual sockaddrs,
    219       1.1  christos 		         * and the ifaddr itself, link them al together
    220       1.1  christos 			 * correctly.
    221       1.1  christos 		         */
    222       1.1  christos 			aa->aa_ifa.ifa_addr =
    223       1.1  christos 			    (struct sockaddr *) &aa->aa_addr;
    224       1.1  christos 			aa->aa_ifa.ifa_dstaddr =
    225       1.1  christos 			    (struct sockaddr *) &aa->aa_addr;
    226       1.1  christos 			aa->aa_ifa.ifa_netmask =
    227       1.1  christos 			    (struct sockaddr *) &aa->aa_netmask;
    228       1.1  christos 
    229       1.1  christos 			/*
    230       1.1  christos 		         * Set/clear the phase 2 bit.
    231       1.1  christos 		         */
    232       1.1  christos 			if (nr->nr_phase == 1)
    233       1.1  christos 				aa->aa_flags &= ~AFA_PHASE2;
    234       1.1  christos 			else
    235       1.1  christos 				aa->aa_flags |= AFA_PHASE2;
    236       1.1  christos 
    237       1.1  christos 			/*
    238       1.1  christos 		         * and link it all together
    239       1.1  christos 		         */
    240       1.1  christos 			aa->aa_ifp = ifp;
    241  1.1.14.1      kenh 			if_addref(ifp);
    242  1.1.14.1      kenh 			/*
    243  1.1.14.1      kenh 			 * There's a refcount implicit in the existance of
    244  1.1.14.1      kenh 			 * an ifa, so we don't need an ifa_addref here.
    245  1.1.14.1      kenh 			 */
    246       1.1  christos 		} else {
    247       1.1  christos 			/*
    248       1.1  christos 		         * If we DID find one then we clobber any routes
    249       1.1  christos 			 * dependent on it..
    250       1.1  christos 		         */
    251       1.1  christos 			at_scrub(ifp, aa);
    252       1.1  christos 		}
    253       1.1  christos 		break;
    254       1.1  christos 
    255       1.1  christos 	case SIOCGIFADDR:
    256       1.1  christos 		sat = satosat(&ifr->ifr_addr);
    257       1.1  christos 		nr = (struct netrange *) sat->sat_zero;
    258       1.1  christos 		if (nr->nr_phase == 1) {
    259       1.1  christos 			/*
    260       1.1  christos 		         * If the request is specifying phase 1, then
    261       1.1  christos 		         * only look at a phase one address
    262       1.1  christos 		         */
    263       1.1  christos 			for (; aa; aa = aa->aa_list.tqe_next) {
    264       1.1  christos 				if (aa->aa_ifp == ifp &&
    265       1.1  christos 				    (aa->aa_flags & AFA_PHASE2) == 0)
    266       1.1  christos 					break;
    267       1.1  christos 			}
    268       1.1  christos 		} else {
    269       1.1  christos 			/*
    270       1.1  christos 		         * default to phase 2
    271       1.1  christos 		         */
    272       1.1  christos 			for (; aa; aa = aa->aa_list.tqe_next) {
    273       1.1  christos 				if (aa->aa_ifp == ifp &&
    274       1.1  christos 				    (aa->aa_flags & AFA_PHASE2))
    275       1.1  christos 					break;
    276       1.1  christos 			}
    277       1.1  christos 		}
    278       1.1  christos 
    279  1.1.14.1      kenh 		if (aa == (struct at_ifaddr *) 0) {
    280  1.1.14.1      kenh 			splx(s);
    281       1.1  christos 			return (EADDRNOTAVAIL);
    282  1.1.14.1      kenh 		}
    283       1.1  christos 		break;
    284       1.1  christos 	}
    285  1.1.14.1      kenh 	if (aa)
    286  1.1.14.1      kenh 		ifa_addref(&aa->aa_ifa);
    287  1.1.14.1      kenh 	splx(s);
    288       1.1  christos 
    289       1.1  christos 	/*
    290       1.1  christos          * By the time this switch is run we should be able to assume that
    291       1.1  christos          * the "aa" pointer is valid when needed.
    292       1.1  christos          */
    293       1.1  christos 	switch (cmd) {
    294       1.1  christos 	case SIOCGIFADDR:
    295       1.1  christos 
    296       1.1  christos 		/*
    297       1.1  christos 		 * copy the contents of the sockaddr blindly.
    298       1.1  christos 		 */
    299       1.1  christos 		sat = (struct sockaddr_at *) & ifr->ifr_addr;
    300       1.1  christos 		*sat = aa->aa_addr;
    301       1.1  christos 
    302       1.1  christos 		/*
    303       1.1  christos 		 * and do some cleanups
    304       1.1  christos 		 */
    305       1.1  christos 		((struct netrange *) &sat->sat_zero)->nr_phase =
    306       1.1  christos 		    (aa->aa_flags & AFA_PHASE2) ? 2 : 1;
    307       1.1  christos 		((struct netrange *) &sat->sat_zero)->nr_firstnet =
    308       1.1  christos 		    aa->aa_firstnet;
    309       1.1  christos 		((struct netrange *) &sat->sat_zero)->nr_lastnet =
    310       1.1  christos 		    aa->aa_lastnet;
    311       1.1  christos 		break;
    312       1.1  christos 
    313       1.1  christos 	case SIOCSIFADDR:
    314  1.1.14.1      kenh 		retval = at_ifinit(ifp, aa,
    315  1.1.14.1      kenh 		    (struct sockaddr_at *) &ifr->ifr_addr);
    316  1.1.14.1      kenh 		break;
    317       1.1  christos 
    318       1.1  christos 	case SIOCAIFADDR:
    319       1.1  christos 		if (sateqaddr(&ifra->ifra_addr, &aa->aa_addr))
    320  1.1.14.1      kenh 			break; /* == return 0; */
    321  1.1.14.1      kenh 		retval = at_ifinit(ifp, aa,
    322  1.1.14.1      kenh 		    (struct sockaddr_at *) &ifr->ifr_addr);
    323  1.1.14.1      kenh 		break;
    324       1.1  christos 
    325       1.1  christos 	case SIOCDIFADDR:
    326       1.1  christos 		/*
    327       1.1  christos 		 * scrub all routes.. didn't we just DO this? XXX yes, del it
    328       1.1  christos 		 */
    329       1.1  christos 		at_scrub(ifp, aa);
    330       1.1  christos 
    331       1.1  christos 		/*
    332       1.1  christos 		 * remove the ifaddr from the interface
    333       1.1  christos 		 */
    334  1.1.14.1      kenh 		s = splimp();
    335       1.1  christos 		TAILQ_REMOVE(&ifp->if_addrlist, (struct ifaddr *) aa, ifa_list);
    336       1.1  christos 		TAILQ_REMOVE(&at_ifaddr, aa, aa_list);
    337  1.1.14.1      kenh 		/*
    338  1.1.14.1      kenh 		 * Now get rid of the references. We need to get rid of two
    339  1.1.14.1      kenh 		 * references on the ifa (one for it in the TAILQ's above,
    340  1.1.14.1      kenh 		 * and one for our copy of it), and one ifnet reference for
    341  1.1.14.1      kenh 		 * the ifp in the ifaddr. Our copy is del'd
    342  1.1.14.1      kenh 		 * off at the end of the routine, and the if_delref
    343  1.1.14.1      kenh 		 *  is in ifafree, so we only do one ifa_delref here.
    344  1.1.14.1      kenh 		 */
    345  1.1.14.1      kenh 		ifa_delref(&aa->aa_ifa);
    346  1.1.14.1      kenh 		splx(s);
    347  1.1.14.1      kenh 		retval = 0;
    348       1.1  christos 		break;
    349       1.1  christos 
    350       1.1  christos 	default:
    351  1.1.14.1      kenh 		if (ifp == 0 || ifp->if_ioctl == 0) {
    352  1.1.14.1      kenh 			retval = EOPNOTSUPP;
    353  1.1.14.1      kenh 			break;
    354  1.1.14.1      kenh 		}
    355  1.1.14.1      kenh 		retval = (*ifp->if_ioctl) (ifp, cmd, data);
    356       1.1  christos 	}
    357  1.1.14.1      kenh 	if (aa)
    358  1.1.14.1      kenh 		ifa_delref(&aa->aa_ifa);
    359  1.1.14.1      kenh 	return (retval);
    360       1.1  christos }
    361       1.1  christos 
    362       1.1  christos /*
    363       1.1  christos  * Given an interface and an at_ifaddr (supposedly on that interface) remove
    364       1.1  christos  * any routes that depend on this. Why ifp is needed I'm not sure, as
    365       1.1  christos  * aa->at_ifaddr.ifa_ifp should be the same.
    366       1.1  christos  */
    367       1.1  christos static int
    368       1.1  christos at_scrub(ifp, aa)
    369       1.1  christos 	struct ifnet   *ifp;
    370       1.1  christos 	struct at_ifaddr *aa;
    371       1.1  christos {
    372       1.1  christos 	int error = 0;
    373       1.1  christos 
    374       1.1  christos 	if (aa->aa_flags & AFA_ROUTE) {
    375       1.1  christos 		if (ifp->if_flags & IFF_LOOPBACK)
    376       1.1  christos 			error = aa_delsingleroute(&aa->aa_ifa,
    377       1.1  christos 			    &aa->aa_addr.sat_addr, &aa->aa_netmask.sat_addr);
    378       1.1  christos 		else if (ifp->if_flags & IFF_POINTOPOINT)
    379       1.1  christos 			error = rtinit(&aa->aa_ifa, RTM_DELETE, RTF_HOST);
    380       1.1  christos 		else if (ifp->if_flags & IFF_BROADCAST)
    381       1.1  christos 			error = aa_dorangeroute(&aa->aa_ifa,
    382       1.1  christos 			    ntohs(aa->aa_firstnet), ntohs(aa->aa_lastnet),
    383       1.1  christos 			    RTM_DELETE);
    384       1.1  christos 
    385       1.1  christos 		aa->aa_ifa.ifa_flags &= ~IFA_ROUTE;
    386       1.1  christos 		aa->aa_flags &= ~AFA_ROUTE;
    387       1.1  christos 	}
    388       1.1  christos 	return error;
    389       1.1  christos }
    390       1.1  christos 
    391       1.1  christos /*
    392       1.1  christos  * given an at_ifaddr,a sockaddr_at and an ifp,
    393       1.1  christos  * bang them all together at high speed and see what happens
    394       1.1  christos  */
    395       1.1  christos static int
    396       1.1  christos at_ifinit(ifp, aa, sat)
    397       1.1  christos 	struct ifnet   *ifp;
    398       1.1  christos 	struct at_ifaddr *aa;
    399       1.1  christos 	struct sockaddr_at *sat;
    400       1.1  christos {
    401       1.1  christos 	struct netrange nr, onr;
    402       1.1  christos 	struct sockaddr_at oldaddr;
    403       1.1  christos 	int             s = splimp(), error = 0, i, j;
    404       1.1  christos 	int             netinc, nodeinc, nnets;
    405       1.1  christos 	u_short         net;
    406       1.1  christos 
    407       1.1  christos 	/*
    408       1.1  christos 	 * save the old addresses in the at_ifaddr just in case we need them.
    409       1.1  christos 	 */
    410       1.1  christos 	oldaddr = aa->aa_addr;
    411       1.1  christos 	onr.nr_firstnet = aa->aa_firstnet;
    412       1.1  christos 	onr.nr_lastnet = aa->aa_lastnet;
    413       1.1  christos 
    414       1.1  christos 	/*
    415       1.1  christos          * take the address supplied as an argument, and add it to the
    416       1.1  christos          * at_ifnet (also given). Remember ing to update
    417       1.1  christos          * those parts of the at_ifaddr that need special processing
    418       1.1  christos          */
    419       1.1  christos 	bzero(AA_SAT(aa), sizeof(struct sockaddr_at));
    420       1.1  christos 	bcopy(sat->sat_zero, &nr, sizeof(struct netrange));
    421       1.1  christos 	bcopy(sat->sat_zero, AA_SAT(aa)->sat_zero, sizeof(struct netrange));
    422       1.1  christos 	nnets = ntohs(nr.nr_lastnet) - ntohs(nr.nr_firstnet) + 1;
    423       1.1  christos 	aa->aa_firstnet = nr.nr_firstnet;
    424       1.1  christos 	aa->aa_lastnet = nr.nr_lastnet;
    425       1.1  christos 
    426       1.1  christos #ifdef NETATALKDEBUG
    427       1.1  christos 	printf("at_ifinit: %s: %u.%u range %u-%u phase %d\n",
    428       1.1  christos 	    ifp->if_xname,
    429       1.1  christos 	    ntohs(sat->sat_addr.s_net), sat->sat_addr.s_node,
    430       1.1  christos 	    ntohs(aa->aa_firstnet), ntohs(aa->aa_lastnet),
    431       1.1  christos 	    (aa->aa_flags & AFA_PHASE2) ? 2 : 1);
    432       1.1  christos #endif
    433       1.1  christos 
    434       1.1  christos 	/*
    435       1.1  christos          * We could eliminate the need for a second phase 1 probe (post
    436       1.1  christos          * autoconf) if we check whether we're resetting the node. Note
    437       1.1  christos          * that phase 1 probes use only nodes, not net.node pairs.  Under
    438       1.1  christos          * phase 2, both the net and node must be the same.
    439       1.1  christos          */
    440       1.1  christos 	AA_SAT(aa)->sat_len = sat->sat_len;
    441       1.1  christos 	AA_SAT(aa)->sat_family = AF_APPLETALK;
    442       1.1  christos 	if (ifp->if_flags & IFF_LOOPBACK) {
    443       1.1  christos 		AA_SAT(aa)->sat_addr.s_net = sat->sat_addr.s_net;
    444       1.1  christos 		AA_SAT(aa)->sat_addr.s_node = sat->sat_addr.s_node;
    445       1.1  christos #if 0
    446       1.1  christos 	} else if (fp->if_flags & IFF_POINTOPOINT) {
    447       1.1  christos 		/* unimplemented */
    448       1.1  christos 		/*
    449       1.1  christos 		 * we'd have to copy the dstaddr field over from the sat
    450       1.1  christos 		 * but it's not clear that it would contain the right info..
    451       1.1  christos 		 */
    452       1.1  christos #endif
    453       1.1  christos 	} else {
    454       1.1  christos 		/*
    455       1.1  christos 		 * We are a normal (probably ethernet) interface.
    456       1.1  christos 		 * apply the new address to the interface structures etc.
    457       1.1  christos 		 * We will probe this address on the net first, before
    458       1.1  christos 		 * applying it to ensure that it is free.. If it is not, then
    459       1.1  christos 		 * we will try a number of other randomly generated addresses
    460       1.1  christos 		 * in this net and then increment the net.  etc.etc. until
    461       1.1  christos 		 * we find an unused address.
    462       1.1  christos 		 */
    463       1.1  christos 		aa->aa_flags |= AFA_PROBING;	/* if not loopback we Must
    464       1.1  christos 						 * probe? */
    465       1.1  christos 		if (aa->aa_flags & AFA_PHASE2) {
    466       1.1  christos 			if (sat->sat_addr.s_net == ATADDR_ANYNET) {
    467       1.1  christos 				/*
    468       1.1  christos 				 * If we are phase 2, and the net was not
    469       1.1  christos 				 * specified * then we select a random net
    470       1.1  christos 				 * within the supplied netrange.
    471       1.1  christos 				 * XXX use /dev/random?
    472       1.1  christos 				 */
    473       1.1  christos 				if (nnets != 1) {
    474       1.1  christos 					net = ntohs(nr.nr_firstnet) +
    475       1.1  christos 					    time.tv_sec % (nnets - 1);
    476       1.1  christos 				} else {
    477       1.1  christos 					net = ntohs(nr.nr_firstnet);
    478       1.1  christos 				}
    479       1.1  christos 			} else {
    480       1.1  christos 				/*
    481       1.1  christos 				 * if a net was supplied, then check that it
    482       1.1  christos 				 * is within the netrange. If it is not then
    483       1.1  christos 				 * replace the old values and return an error
    484       1.1  christos 				 */
    485       1.1  christos 				if (ntohs(sat->sat_addr.s_net) <
    486       1.1  christos 				    ntohs(nr.nr_firstnet) ||
    487       1.1  christos 				    ntohs(sat->sat_addr.s_net) >
    488       1.1  christos 				    ntohs(nr.nr_lastnet)) {
    489       1.1  christos 					aa->aa_addr = oldaddr;
    490       1.1  christos 					aa->aa_firstnet = onr.nr_firstnet;
    491       1.1  christos 					aa->aa_lastnet = onr.nr_lastnet;
    492       1.1  christos 					splx(s);
    493       1.1  christos 					return (EINVAL);
    494       1.1  christos 				}
    495       1.1  christos 				/*
    496       1.1  christos 				 * otherwise just use the new net number..
    497       1.1  christos 				 */
    498       1.1  christos 				net = ntohs(sat->sat_addr.s_net);
    499       1.1  christos 			}
    500       1.1  christos 		} else {
    501       1.1  christos 			/*
    502       1.1  christos 		         * we must be phase one, so just use whatever we were
    503       1.1  christos 			 * given. I guess it really isn't going to be used...
    504       1.1  christos 			 * RIGHT?
    505       1.1  christos 		         */
    506       1.1  christos 			net = ntohs(sat->sat_addr.s_net);
    507       1.1  christos 		}
    508       1.1  christos 
    509       1.1  christos 		/*
    510       1.1  christos 		 * set the node part of the address into the ifaddr. If it's
    511       1.1  christos 		 * not specified, be random about it... XXX use /dev/random?
    512       1.1  christos 		 */
    513       1.1  christos 		if (sat->sat_addr.s_node == ATADDR_ANYNODE) {
    514       1.1  christos 			AA_SAT(aa)->sat_addr.s_node = time.tv_sec;
    515       1.1  christos 		} else {
    516       1.1  christos 			AA_SAT(aa)->sat_addr.s_node = sat->sat_addr.s_node;
    517       1.1  christos 		}
    518       1.1  christos 
    519       1.1  christos 		/*
    520       1.1  christos 		 * step through the nets in the range starting at the
    521       1.1  christos 		 * (possibly random) start point.
    522       1.1  christos 		 */
    523       1.1  christos 		for (i = nnets, netinc = 1; i > 0; net = ntohs(nr.nr_firstnet) +
    524       1.1  christos 		     ((net - ntohs(nr.nr_firstnet) + netinc) % nnets), i--) {
    525       1.1  christos 			AA_SAT(aa)->sat_addr.s_net = htons(net);
    526       1.1  christos 
    527       1.1  christos 			/*
    528       1.1  christos 		         * using a rather strange stepping method,
    529       1.1  christos 		         * stagger through the possible node addresses
    530       1.1  christos 		         * Once again, starting at the (possibly random)
    531       1.1  christos 		         * initial node address.
    532       1.1  christos 		         */
    533       1.1  christos 			for (j = 0, nodeinc = time.tv_sec | 1; j < 256;
    534       1.1  christos 			     j++, AA_SAT(aa)->sat_addr.s_node += nodeinc) {
    535       1.1  christos 				if (AA_SAT(aa)->sat_addr.s_node > 253 ||
    536       1.1  christos 				    AA_SAT(aa)->sat_addr.s_node < 1) {
    537       1.1  christos 					continue;
    538       1.1  christos 				}
    539       1.1  christos 				aa->aa_probcnt = 10;
    540       1.1  christos 
    541       1.1  christos 				/*
    542       1.1  christos 				 * start off the probes as an asynchronous
    543       1.1  christos 				 * activity. though why wait 200mSec?
    544       1.1  christos 				 */
    545       1.1  christos 				timeout(aarpprobe, ifp, hz / 5);
    546       1.1  christos 				if (tsleep(aa, PPAUSE | PCATCH, "at_ifinit",
    547       1.1  christos 				    0)) {
    548       1.1  christos 					/*
    549       1.1  christos 				         * theoretically we shouldn't time out
    550       1.1  christos 					 * here so if we returned with an error.
    551       1.1  christos 				         */
    552       1.1  christos 					printf("at_ifinit: timeout?!\n");
    553       1.1  christos 					aa->aa_addr = oldaddr;
    554       1.1  christos 					aa->aa_firstnet = onr.nr_firstnet;
    555       1.1  christos 					aa->aa_lastnet = onr.nr_lastnet;
    556       1.1  christos 					splx(s);
    557       1.1  christos 					return (EINTR);
    558       1.1  christos 				}
    559       1.1  christos 				/*
    560       1.1  christos 				 * The async activity should have woken us
    561       1.1  christos 				 * up. We need to see if it was successful in
    562       1.1  christos 				 * finding a free spot, or if we need to
    563       1.1  christos 				 * iterate to the next address to try.
    564       1.1  christos 				 */
    565       1.1  christos 				if ((aa->aa_flags & AFA_PROBING) == 0)
    566       1.1  christos 					break;
    567       1.1  christos 			}
    568       1.1  christos 
    569       1.1  christos 			/*
    570       1.1  christos 		         * of course we need to break out through two loops...
    571       1.1  christos 		         */
    572       1.1  christos 			if ((aa->aa_flags & AFA_PROBING) == 0)
    573       1.1  christos 				break;
    574       1.1  christos 
    575       1.1  christos 			/* reset node for next network */
    576       1.1  christos 			AA_SAT(aa)->sat_addr.s_node = time.tv_sec;
    577       1.1  christos 		}
    578       1.1  christos 
    579       1.1  christos 		/*
    580       1.1  christos 		 * if we are still trying to probe, then we have finished all
    581       1.1  christos 		 * the possible addresses, so we need to give up
    582       1.1  christos 		 */
    583       1.1  christos 		if (aa->aa_flags & AFA_PROBING) {
    584       1.1  christos 			aa->aa_addr = oldaddr;
    585       1.1  christos 			aa->aa_firstnet = onr.nr_firstnet;
    586       1.1  christos 			aa->aa_lastnet = onr.nr_lastnet;
    587       1.1  christos 			splx(s);
    588       1.1  christos 			return (EADDRINUSE);
    589       1.1  christos 		}
    590       1.1  christos 	}
    591       1.1  christos 
    592       1.1  christos 	/*
    593       1.1  christos 	 * Now that we have selected an address, we need to tell the
    594       1.1  christos 	 * interface about it, just in case it needs to adjust something.
    595       1.1  christos 	 */
    596       1.1  christos 	if (ifp->if_ioctl &&
    597       1.1  christos 	    (error = (*ifp->if_ioctl) (ifp, SIOCSIFADDR, (caddr_t) aa))) {
    598       1.1  christos 		/*
    599       1.1  christos 		 * of course this could mean that it objects violently
    600       1.1  christos 		 * so if it does, we back out again..
    601       1.1  christos 		 */
    602       1.1  christos 		aa->aa_addr = oldaddr;
    603       1.1  christos 		aa->aa_firstnet = onr.nr_firstnet;
    604       1.1  christos 		aa->aa_lastnet = onr.nr_lastnet;
    605       1.1  christos 		splx(s);
    606       1.1  christos 		return (error);
    607       1.1  christos 	}
    608       1.1  christos 	/*
    609       1.1  christos 	 * set up the netmask part of the at_ifaddr and point the appropriate
    610       1.1  christos 	 * pointer in the ifaddr to it. probably pointless, but what the
    611       1.1  christos 	 * heck.. XXX
    612       1.1  christos 	 */
    613       1.1  christos 	bzero(&aa->aa_netmask, sizeof(aa->aa_netmask));
    614       1.1  christos 	aa->aa_netmask.sat_len = sizeof(struct sockaddr_at);
    615       1.1  christos 	aa->aa_netmask.sat_family = AF_APPLETALK;
    616       1.1  christos 	aa->aa_netmask.sat_addr.s_net = 0xffff;
    617       1.1  christos 	aa->aa_netmask.sat_addr.s_node = 0;
    618       1.1  christos #if 0
    619       1.1  christos 	aa->aa_ifa.ifa_netmask = (struct sockaddr *) &(aa->aa_netmask);/* XXX */
    620       1.1  christos #endif
    621       1.1  christos 
    622       1.1  christos 	/*
    623       1.1  christos          * Initialize broadcast (or remote p2p) address
    624       1.1  christos          */
    625       1.1  christos 	bzero(&aa->aa_broadaddr, sizeof(aa->aa_broadaddr));
    626       1.1  christos 	aa->aa_broadaddr.sat_len = sizeof(struct sockaddr_at);
    627       1.1  christos 	aa->aa_broadaddr.sat_family = AF_APPLETALK;
    628       1.1  christos 
    629       1.1  christos 	aa->aa_ifa.ifa_metric = ifp->if_metric;
    630       1.1  christos 	if (ifp->if_flags & IFF_BROADCAST) {
    631       1.1  christos 		aa->aa_broadaddr.sat_addr.s_net = htons(0);
    632       1.1  christos 		aa->aa_broadaddr.sat_addr.s_node = 0xff;
    633       1.1  christos 		aa->aa_ifa.ifa_broadaddr =
    634       1.1  christos 		    (struct sockaddr *) &aa->aa_broadaddr;
    635       1.1  christos 		/* add the range of routes needed */
    636       1.1  christos 		error = aa_dorangeroute(&aa->aa_ifa,
    637       1.1  christos 		    ntohs(aa->aa_firstnet), ntohs(aa->aa_lastnet), RTM_ADD);
    638       1.1  christos 	} else if (ifp->if_flags & IFF_POINTOPOINT) {
    639       1.1  christos 		struct at_addr  rtaddr, rtmask;
    640       1.1  christos 
    641       1.1  christos 		bzero(&rtaddr, sizeof(rtaddr));
    642       1.1  christos 		bzero(&rtmask, sizeof(rtmask));
    643       1.1  christos 		/* fill in the far end if we know it here XXX */
    644       1.1  christos 		aa->aa_ifa.ifa_dstaddr = (struct sockaddr *) & aa->aa_dstaddr;
    645       1.1  christos 		error = aa_addsingleroute(&aa->aa_ifa, &rtaddr, &rtmask);
    646       1.1  christos 	} else if (ifp->if_flags & IFF_LOOPBACK) {
    647       1.1  christos 		struct at_addr  rtaddr, rtmask;
    648       1.1  christos 
    649       1.1  christos 		bzero(&rtaddr, sizeof(rtaddr));
    650       1.1  christos 		bzero(&rtmask, sizeof(rtmask));
    651       1.1  christos 		rtaddr.s_net = AA_SAT(aa)->sat_addr.s_net;
    652       1.1  christos 		rtaddr.s_node = AA_SAT(aa)->sat_addr.s_node;
    653       1.1  christos 		rtmask.s_net = 0xffff;
    654       1.1  christos 		rtmask.s_node = 0x0;
    655       1.1  christos 		error = aa_addsingleroute(&aa->aa_ifa, &rtaddr, &rtmask);
    656       1.1  christos 	}
    657       1.1  christos 	/*
    658       1.1  christos          * of course if we can't add these routes we back out, but it's getting
    659       1.1  christos          * risky by now XXX
    660       1.1  christos          */
    661       1.1  christos 	if (error) {
    662       1.1  christos 		at_scrub(ifp, aa);
    663       1.1  christos 		aa->aa_addr = oldaddr;
    664       1.1  christos 		aa->aa_firstnet = onr.nr_firstnet;
    665       1.1  christos 		aa->aa_lastnet = onr.nr_lastnet;
    666       1.1  christos 		splx(s);
    667       1.1  christos 		return (error);
    668       1.1  christos 	}
    669       1.1  christos 	/*
    670       1.1  christos          * note that the address has a route associated with it....
    671       1.1  christos          */
    672       1.1  christos 	aa->aa_ifa.ifa_flags |= IFA_ROUTE;
    673       1.1  christos 	aa->aa_flags |= AFA_ROUTE;
    674       1.1  christos 	splx(s);
    675       1.1  christos 	return (0);
    676       1.1  christos }
    677       1.1  christos 
    678       1.1  christos /*
    679       1.1  christos  * check whether a given address is a broadcast address for us..
    680       1.1  christos  */
    681       1.1  christos int
    682       1.1  christos at_broadcast(sat)
    683       1.1  christos 	struct sockaddr_at *sat;
    684       1.1  christos {
    685       1.1  christos 	struct at_ifaddr *aa;
    686  1.1.14.1      kenh 	int s;
    687       1.1  christos 
    688       1.1  christos 	/*
    689       1.1  christos          * If the node is not right, it can't be a broadcast
    690       1.1  christos          */
    691       1.1  christos 	if (sat->sat_addr.s_node != ATADDR_BCAST)
    692       1.1  christos 		return 0;
    693       1.1  christos 
    694       1.1  christos 	/*
    695       1.1  christos          * If the node was right then if the net is right, it's a broadcast
    696       1.1  christos          */
    697       1.1  christos 	if (sat->sat_addr.s_net == ATADDR_ANYNET)
    698       1.1  christos 		return 1;
    699       1.1  christos 
    700       1.1  christos 	/*
    701       1.1  christos          * failing that, if the net is one we have, it's a broadcast as well.
    702       1.1  christos          */
    703  1.1.14.1      kenh 	s = splimp();
    704       1.1  christos 	for (aa = at_ifaddr.tqh_first; aa; aa = aa->aa_list.tqe_next) {
    705       1.1  christos 		if ((aa->aa_ifp->if_flags & IFF_BROADCAST)
    706       1.1  christos 		    && (ntohs(sat->sat_addr.s_net) >= ntohs(aa->aa_firstnet)
    707  1.1.14.1      kenh 		  && ntohs(sat->sat_addr.s_net) <= ntohs(aa->aa_lastnet))) {
    708  1.1.14.1      kenh 			splx(s);
    709       1.1  christos 			return 1;
    710  1.1.14.1      kenh 		}
    711       1.1  christos 	}
    712  1.1.14.1      kenh 	splx(s);
    713       1.1  christos 	return 0;
    714       1.1  christos }
    715       1.1  christos 
    716       1.1  christos 
    717       1.1  christos /*
    718       1.1  christos  * aa_dorangeroute()
    719       1.1  christos  *
    720       1.1  christos  * Add a route for a range of networks from bot to top - 1.
    721       1.1  christos  * Algorithm:
    722       1.1  christos  *
    723       1.1  christos  * Split the range into two subranges such that the middle
    724       1.1  christos  * of the two ranges is the point where the highest bit of difference
    725       1.1  christos  * between the two addresses, makes it's transition
    726       1.1  christos  * Each of the upper and lower ranges might not exist, or might be
    727       1.1  christos  * representable by 1 or more netmasks. In addition, if both
    728       1.1  christos  * ranges can be represented by the same netmask, then teh can be merged
    729       1.1  christos  * by using the next higher netmask..
    730       1.1  christos  */
    731       1.1  christos 
    732       1.1  christos static int
    733       1.1  christos aa_dorangeroute(ifa, bot, top, cmd)
    734       1.1  christos 	struct ifaddr *ifa;
    735       1.1  christos 	u_int bot;
    736       1.1  christos 	u_int top;
    737       1.1  christos 	int cmd;
    738       1.1  christos {
    739       1.1  christos 	u_int           mask1;
    740       1.1  christos 	struct at_addr  addr;
    741       1.1  christos 	struct at_addr  mask;
    742       1.1  christos 	int             error;
    743       1.1  christos 
    744       1.1  christos 	/*
    745       1.1  christos 	 * slight sanity check
    746       1.1  christos 	 */
    747       1.1  christos 	if (bot > top)
    748       1.1  christos 		return (EINVAL);
    749       1.1  christos 
    750       1.1  christos 	addr.s_node = 0;
    751       1.1  christos 	mask.s_node = 0;
    752       1.1  christos 	/*
    753       1.1  christos 	 * just start out with the lowest boundary
    754       1.1  christos 	 * and keep extending the mask till it's too big.
    755       1.1  christos 	 */
    756       1.1  christos 
    757       1.1  christos 	while (bot <= top) {
    758       1.1  christos 		mask1 = 1;
    759       1.1  christos 		while (((bot & ~mask1) >= bot)
    760       1.1  christos 		       && ((bot | mask1) <= top)) {
    761       1.1  christos 			mask1 <<= 1;
    762       1.1  christos 			mask1 |= 1;
    763       1.1  christos 		}
    764       1.1  christos 		mask1 >>= 1;
    765       1.1  christos 		mask.s_net = htons(~mask1);
    766       1.1  christos 		addr.s_net = htons(bot);
    767       1.1  christos 		if (cmd == RTM_ADD) {
    768       1.1  christos 			error = aa_addsingleroute(ifa, &addr, &mask);
    769       1.1  christos 			if (error) {
    770       1.1  christos 				/* XXX clean up? */
    771       1.1  christos 				return (error);
    772       1.1  christos 			}
    773       1.1  christos 		} else {
    774       1.1  christos 			error = aa_delsingleroute(ifa, &addr, &mask);
    775       1.1  christos 		}
    776       1.1  christos 		bot = (bot | mask1) + 1;
    777       1.1  christos 	}
    778       1.1  christos 	return 0;
    779       1.1  christos }
    780       1.1  christos 
    781       1.1  christos static int
    782       1.1  christos aa_addsingleroute(ifa, addr, mask)
    783       1.1  christos 	struct ifaddr *ifa;
    784       1.1  christos 	struct at_addr *addr;
    785       1.1  christos 	struct at_addr *mask;
    786       1.1  christos {
    787       1.1  christos 	int error;
    788       1.1  christos 
    789       1.1  christos #ifdef NETATALKDEBUG
    790       1.1  christos 	printf("aa_addsingleroute: %x.%x mask %x.%x ...",
    791       1.1  christos 	       ntohs(addr->s_net), addr->s_node,
    792       1.1  christos 	       ntohs(mask->s_net), mask->s_node);
    793       1.1  christos #endif
    794       1.1  christos 
    795       1.1  christos 	error = aa_dosingleroute(ifa, addr, mask, RTM_ADD, RTF_UP);
    796       1.1  christos #ifdef NETATALKDEBUG
    797       1.1  christos 	if (error)
    798       1.1  christos 		printf("aa_addsingleroute: error %d\n", error);
    799       1.1  christos #endif
    800       1.1  christos 	return (error);
    801       1.1  christos }
    802       1.1  christos 
    803       1.1  christos static int
    804       1.1  christos aa_delsingleroute(ifa, addr, mask)
    805       1.1  christos 	struct ifaddr *ifa;
    806       1.1  christos 	struct at_addr *addr;
    807       1.1  christos 	struct at_addr *mask;
    808       1.1  christos {
    809       1.1  christos 	int error;
    810       1.1  christos 
    811       1.1  christos #ifdef NETATALKDEBUG
    812       1.1  christos 	printf("aa_delsingleroute: %x.%x mask %x.%x ...",
    813       1.1  christos 	       ntohs(addr->s_net), addr->s_node,
    814       1.1  christos 	       ntohs(mask->s_net), mask->s_node);
    815       1.1  christos #endif
    816       1.1  christos 
    817       1.1  christos 	error = aa_dosingleroute(ifa, addr, mask, RTM_DELETE, 0);
    818       1.1  christos #ifdef NETATALKDEBUG
    819       1.1  christos 	if (error)
    820       1.1  christos 		printf("aa_delsingleroute: error %d\n", error);
    821       1.1  christos #endif
    822       1.1  christos 	return (error);
    823       1.1  christos }
    824       1.1  christos 
    825       1.1  christos static int
    826       1.1  christos aa_dosingleroute(ifa, at_addr, at_mask, cmd, flags)
    827       1.1  christos 	struct ifaddr *ifa;
    828       1.1  christos 	struct at_addr *at_addr;
    829       1.1  christos 	struct at_addr *at_mask;
    830       1.1  christos 	int cmd;
    831       1.1  christos 	int flags;
    832       1.1  christos {
    833       1.1  christos 	struct sockaddr_at addr, mask, *gate;
    834       1.1  christos 
    835       1.1  christos 	bzero(&addr, sizeof(addr));
    836       1.1  christos 	bzero(&mask, sizeof(mask));
    837       1.1  christos 	addr.sat_family = AF_APPLETALK;
    838       1.1  christos 	addr.sat_len = sizeof(struct sockaddr_at);
    839       1.1  christos 	addr.sat_addr.s_net = at_addr->s_net;
    840       1.1  christos 	addr.sat_addr.s_node = at_addr->s_node;
    841       1.1  christos 	mask.sat_family = AF_APPLETALK;
    842       1.1  christos 	mask.sat_len = sizeof(struct sockaddr_at);
    843       1.1  christos 	mask.sat_addr.s_net = at_mask->s_net;
    844       1.1  christos 	mask.sat_addr.s_node = at_mask->s_node;
    845       1.1  christos 
    846       1.1  christos 	if (at_mask->s_node) {
    847       1.1  christos 		gate = satosat(ifa->ifa_dstaddr);
    848       1.1  christos 		flags |= RTF_HOST;
    849       1.1  christos 	} else {
    850       1.1  christos 		gate = satosat(ifa->ifa_addr);
    851       1.1  christos 	}
    852       1.1  christos 
    853       1.1  christos #ifdef NETATALKDEBUG
    854       1.1  christos 	printf("on %s %x.%x\n", (flags & RTF_HOST) ? "host" : "net",
    855       1.1  christos 	       ntohs(gate->sat_addr.s_net), gate->sat_addr.s_node);
    856       1.1  christos #endif
    857       1.1  christos 	return (rtrequest(cmd, (struct sockaddr *) &addr,
    858       1.1  christos 	    (struct sockaddr *) gate, (struct sockaddr *) &mask, flags, NULL));
    859       1.1  christos }
    860       1.1  christos 
    861       1.1  christos #if 0
    862       1.1  christos static void
    863       1.1  christos aa_clean()
    864       1.1  christos {
    865       1.1  christos 	struct at_ifaddr *aa;
    866       1.1  christos 	struct ifaddr  *ifa;
    867       1.1  christos 	struct ifnet   *ifp;
    868       1.1  christos 
    869       1.1  christos 	while (aa = at_ifaddr) {
    870       1.1  christos 		ifp = aa->aa_ifp;
    871       1.1  christos 		at_scrub(ifp, aa);
    872       1.1  christos 		at_ifaddr = aa->aa_next;
    873       1.1  christos 		if ((ifa = ifp->if_addrlist) == (struct ifaddr *) aa) {
    874       1.1  christos 			ifp->if_addrlist = ifa->ifa_next;
    875       1.1  christos 		} else {
    876       1.1  christos 			while (ifa->ifa_next &&
    877       1.1  christos 			       (ifa->ifa_next != (struct ifaddr *) aa)) {
    878       1.1  christos 				ifa = ifa->ifa_next;
    879       1.1  christos 			}
    880       1.1  christos 			if (ifa->ifa_next) {
    881       1.1  christos 				ifa->ifa_next =
    882       1.1  christos 				    ((struct ifaddr *) aa)->ifa_next;
    883       1.1  christos 			} else {
    884       1.1  christos 				panic("at_entry");
    885       1.1  christos 			}
    886       1.1  christos 		}
    887       1.1  christos 	}
    888       1.1  christos }
    889       1.1  christos #endif
    890