summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1995-03-23 18:14:41 +0000
committerwollman <wollman@FreeBSD.org>1995-03-23 18:14:41 +0000
commit04db7a9c8076f9357785fba7eb791bb9f4133d17 (patch)
tree68b64c053e97161efa415e4f2f99519e0bcaf585
parent784a7ccf3c686fa4681d4266fe021d006a1a0b07 (diff)
downloadFreeBSD-src-04db7a9c8076f9357785fba7eb791bb9f4133d17.zip
FreeBSD-src-04db7a9c8076f9357785fba7eb791bb9f4133d17.tar.gz
in_var.h: in_multi structures now form a queue(3)-style LIST structure
in.c: when an interface address is deleted, keep its multicast membership . records (attached to a struct multi_kludge) for attachment to the . next address on the same interface. Also, in_multi structures now . gain a reference to the ifaddr so that they won't point off into . freed memory if an interface goes away and doesn't come back before . the last socket reference drops. This is analogous to how it is . done for routes, and seems to make the most sense.
-rw-r--r--sys/netinet/in.c107
-rw-r--r--sys/netinet/in_var.h19
2 files changed, 109 insertions, 17 deletions
diff --git a/sys/netinet/in.c b/sys/netinet/in.c
index 495dcff..1da3f58 100644
--- a/sys/netinet/in.c
+++ b/sys/netinet/in.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)in.c 8.2 (Berkeley) 11/15/93
- * $Id: in.c,v 1.9 1995/02/14 06:28:25 phk Exp $
+ * $Id: in.c,v 1.10 1995/03/16 18:14:50 bde Exp $
*/
#include <sys/param.h>
@@ -41,6 +41,7 @@
#include <sys/malloc.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
+#include <sys/queue.h>
#include <net/if.h>
#include <net/route.h>
@@ -53,6 +54,18 @@
#include <netinet/igmp_var.h>
/*
+ * This structure is used to keep track of in_multi chains which belong to
+ * deleted interface addresses.
+ */
+static LIST_HEAD(, multi_kludge) in_mk; /* XXX BSS initialization */
+
+struct multi_kludge {
+ LIST_ENTRY(multi_kludge) mk_entry;
+ struct ifnet *mk_ifp;
+ struct in_multihead mk_head;
+};
+
+/*
* Return the network number from an internet address.
*/
u_long
@@ -175,6 +188,7 @@ in_control(so, cmd, data, ifp)
struct sockaddr_in oldaddr;
int error, hostIsNew, maskIsNew;
u_long i;
+ struct multi_kludge *mk;
/*
* Find address for this interface, if it exists.
@@ -346,6 +360,10 @@ in_control(so, cmd, data, ifp)
return (error);
case SIOCDIFADDR:
+ mk = malloc(sizeof *mk, M_IPMADDR, M_WAITOK);
+ if (!mk)
+ return ENOBUFS;
+
in_ifscrub(ifp, ia);
if ((ifa = ifp->if_addrlist) == (struct ifaddr *)ia)
ifp->if_addrlist = ifa->ifa_next;
@@ -369,6 +387,50 @@ in_control(so, cmd, data, ifp)
else
printf("Didn't unlink inifadr from list\n");
}
+
+ if (!oia->ia_multiaddrs.lh_first) {
+ IFAFREE(&oia->ia_ifa);
+ FREE(mk, M_IPMADDR);
+ break;
+ }
+
+ /*
+ * Multicast address kludge:
+ * If there were any multicast addresses attached to this
+ * interface address, either move them to another address
+ * on this interface, or save them until such time as this
+ * interface is reconfigured for IP.
+ */
+ IFP_TO_IA(oia->ia_ifp, ia);
+ if (ia) { /* there is another address */
+ struct in_multi *inm;
+ for(inm = oia->ia_multiaddrs.lh_first; inm;
+ inm = inm->inm_entry.le_next) {
+ IFAFREE(&inm->inm_ia->ia_ifa);
+ ia->ia_ifa.ifa_refcnt++;
+ inm->inm_ia = ia;
+ LIST_INSERT_HEAD(&ia->ia_multiaddrs, inm,
+ inm_entry);
+ }
+ FREE(mk, M_IPMADDR);
+ } else { /* last address on this if deleted, save */
+ struct in_multi *inm;
+
+ LIST_INIT(&mk->mk_head);
+ mk->mk_ifp = ifp;
+
+ for(inm = oia->ia_multiaddrs.lh_first; inm;
+ inm = inm->inm_entry.le_next) {
+ LIST_INSERT_HEAD(&mk->mk_head, inm, inm_entry);
+ }
+
+ if (mk->mk_head.lh_first) {
+ LIST_INSERT_HEAD(&in_mk, mk, mk_entry);
+ } else {
+ FREE(mk, M_IPMADDR);
+ }
+ }
+
IFAFREE((&oia->ia_ifa));
break;
@@ -412,6 +474,7 @@ in_ifinit(ifp, ia, sin, scrub)
register u_long i = ntohl(sin->sin_addr.s_addr);
struct sockaddr_in oldaddr;
int s = splimp(), flags = RTF_UP, error;
+ struct multi_kludge *mk;
oldaddr = ia->ia_addr;
ia->ia_addr = *sin;
@@ -470,6 +533,8 @@ in_ifinit(ifp, ia, sin, scrub)
}
if ((error = rtinit(&(ia->ia_ifa), (int)RTM_ADD, flags)) == 0)
ia->ia_flags |= IFA_ROUTE;
+
+ LIST_INIT(&ia->ia_multiaddrs);
/*
* If the interface supports multicast, join the "all hosts"
* multicast group on that interface.
@@ -477,6 +542,30 @@ in_ifinit(ifp, ia, sin, scrub)
if (ifp->if_flags & IFF_MULTICAST) {
struct in_addr addr;
+ /*
+ * Continuation of multicast address hack:
+ * If there was a multicast group list previously saved
+ * for this interface, then we re-attach it to the first
+ * address configured on the i/f.
+ */
+ for(mk = in_mk.lh_first; mk; mk = mk->mk_entry.le_next) {
+ if(mk->mk_ifp == ifp) {
+ struct in_multi *inm;
+
+ for(inm = mk->mk_head.lh_first; inm;
+ inm = inm->inm_entry.le_next) {
+ IFAFREE(&inm->inm_ia->ia_ifa);
+ ia->ia_ifa.ifa_refcnt++;
+ inm->inm_ia = ia;
+ LIST_INSERT_HEAD(&ia->ia_multiaddrs,
+ inm, inm_entry);
+ }
+ LIST_REMOVE(mk, mk_entry);
+ free(mk, M_IPMADDR);
+ break;
+ }
+ }
+
addr.s_addr = htonl(INADDR_ALLHOSTS_GROUP);
in_addmulti(&addr, ifp);
}
@@ -562,8 +651,9 @@ in_addmulti(ap, ifp)
return (NULL);
}
inm->inm_ia = ia;
- inm->inm_next = ia->ia_multiaddrs;
- ia->ia_multiaddrs = inm;
+ ia->ia_ifa.ifa_refcnt++; /* gain a reference */
+ LIST_INSERT_HEAD(&ia->ia_multiaddrs, inm, inm_entry);
+
/*
* Ask the network driver to update its multicast reception
* filter appropriately for the new address.
@@ -572,7 +662,8 @@ in_addmulti(ap, ifp)
((struct sockaddr_in *)&ifr.ifr_addr)->sin_addr = *ap;
if ((ifp->if_ioctl == NULL) ||
(*ifp->if_ioctl)(ifp, SIOCADDMULTI,(caddr_t)&ifr) != 0) {
- ia->ia_multiaddrs = inm->inm_next;
+ LIST_REMOVE(inm, inm_entry);
+ IFAFREE(&ia->ia_ifa); /* release reference */
free(inm, M_IPMADDR);
splx(s);
return (NULL);
@@ -606,11 +697,9 @@ in_delmulti(inm)
/*
* Unlink from list.
*/
- for (p = &inm->inm_ia->ia_multiaddrs;
- *p != inm;
- p = &(*p)->inm_next)
- continue;
- *p = (*p)->inm_next;
+ LIST_REMOVE(inm, inm_entry);
+ IFAFREE(&inm->inm_ia->ia_ifa); /* release reference */
+
/*
* Notify the network driver to update its multicast reception
* filter.
diff --git a/sys/netinet/in_var.h b/sys/netinet/in_var.h
index cba0cb4..f4548c6 100644
--- a/sys/netinet/in_var.h
+++ b/sys/netinet/in_var.h
@@ -31,12 +31,14 @@
* SUCH DAMAGE.
*
* @(#)in_var.h 8.1 (Berkeley) 6/10/93
- * $Id: in_var.h,v 1.7 1994/10/25 22:13:32 swallace Exp $
+ * $Id: in_var.h,v 1.8 1995/03/16 18:14:53 bde Exp $
*/
#ifndef _NETINET_IN_VAR_H_
#define _NETINET_IN_VAR_H_
+#include <sys/queue.h>
+
/*
* Interface address, Internet version. One of these structures
* is allocated for each interface with an Internet address.
@@ -58,7 +60,8 @@ struct in_ifaddr {
struct sockaddr_in ia_dstaddr; /* reserve space for broadcast addr */
#define ia_broadaddr ia_dstaddr
struct sockaddr_in ia_sockmask; /* reserve space for general netmask */
- struct in_multi *ia_multiaddrs; /* list of multicast addresses */
+ LIST_HEAD(in_multihead, in_multi) ia_multiaddrs;
+ /* list of multicast addresses */
};
struct in_aliasreq {
@@ -140,12 +143,12 @@ struct router_info {
* structure.
*/
struct in_multi {
+ LIST_ENTRY(in_multi) inm_entry; /* list glue */
struct in_addr inm_addr; /* IP multicast address */
struct ifnet *inm_ifp; /* back pointer to ifnet */
struct in_ifaddr *inm_ia; /* back pointer to in_ifaddr */
u_int inm_refcount; /* no. membership claims by sockets */
u_int inm_timer; /* IGMP membership report timer */
- struct in_multi *inm_next; /* ptr to next multicast address */
u_int inm_state; /* state of the membership */
struct router_info *inm_rti; /* router info*/
};
@@ -175,9 +178,9 @@ struct in_multistep {
if (ia == NULL) \
(inm) = NULL; \
else \
- for ((inm) = ia->ia_multiaddrs; \
+ for ((inm) = ia->ia_multiaddrs.lh_first; \
(inm) != NULL && (inm)->inm_addr.s_addr != (addr).s_addr; \
- (inm) = inm->inm_next) \
+ (inm) = inm->inm_entry.le_next) \
continue; \
}
@@ -193,13 +196,13 @@ struct in_multistep {
/* struct in_multi *inm; */ \
{ \
if (((inm) = (step).i_inm) != NULL) \
- (step).i_inm = (inm)->inm_next; \
+ (step).i_inm = (inm)->inm_entry.le_next; \
else \
while ((step).i_ia != NULL) { \
- (inm) = (step).i_ia->ia_multiaddrs; \
+ (inm) = (step).i_ia->ia_multiaddrs.lh_first; \
(step).i_ia = (step).i_ia->ia_next; \
if ((inm) != NULL) { \
- (step).i_inm = (inm)->inm_next; \
+ (step).i_inm = (inm)->inm_entry.le_next; \
break; \
} \
} \
OpenPOWER on IntegriCloud