1df8bae1dSRodney W. Grimes /* 2df8bae1dSRodney W. Grimes * Copyright (c) 1982, 1986, 1988, 1990, 1993 3df8bae1dSRodney W. Grimes * The Regents of the University of California. All rights reserved. 4df8bae1dSRodney W. Grimes * 5df8bae1dSRodney W. Grimes * Redistribution and use in source and binary forms, with or without 6df8bae1dSRodney W. Grimes * modification, are permitted provided that the following conditions 7df8bae1dSRodney W. Grimes * are met: 8df8bae1dSRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 9df8bae1dSRodney W. Grimes * notice, this list of conditions and the following disclaimer. 10df8bae1dSRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 11df8bae1dSRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 12df8bae1dSRodney W. Grimes * documentation and/or other materials provided with the distribution. 13df8bae1dSRodney W. Grimes * 3. All advertising materials mentioning features or use of this software 14df8bae1dSRodney W. Grimes * must display the following acknowledgement: 15df8bae1dSRodney W. Grimes * This product includes software developed by the University of 16df8bae1dSRodney W. Grimes * California, Berkeley and its contributors. 17df8bae1dSRodney W. Grimes * 4. Neither the name of the University nor the names of its contributors 18df8bae1dSRodney W. Grimes * may be used to endorse or promote products derived from this software 19df8bae1dSRodney W. Grimes * without specific prior written permission. 20df8bae1dSRodney W. Grimes * 21df8bae1dSRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 22df8bae1dSRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23df8bae1dSRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24df8bae1dSRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 25df8bae1dSRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26df8bae1dSRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27df8bae1dSRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28df8bae1dSRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29df8bae1dSRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30df8bae1dSRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31df8bae1dSRodney W. Grimes * SUCH DAMAGE. 32df8bae1dSRodney W. Grimes * 33df8bae1dSRodney W. Grimes * @(#)ip_output.c 8.3 (Berkeley) 1/21/94 34c3aac50fSPeter Wemm * $FreeBSD$ 35df8bae1dSRodney W. Grimes */ 36df8bae1dSRodney W. Grimes 379c9137eaSGarrett Wollman #define _IP_VHL 389c9137eaSGarrett Wollman 391f7e052cSJulian Elischer #include "opt_ipfw.h" 40b715f178SLuigi Rizzo #include "opt_ipdn.h" 41fbd1372aSJoerg Wunsch #include "opt_ipdivert.h" 421ee25934SPeter Wemm #include "opt_ipfilter.h" 436a800098SYoshinobu Inoue #include "opt_ipsec.h" 44c4ac87eaSDarren Reed #include "opt_pfil_hooks.h" 4564dddc18SKris Kennaway #include "opt_random_ip_id.h" 46fbd1372aSJoerg Wunsch 47df8bae1dSRodney W. Grimes #include <sys/param.h> 4826f9a767SRodney W. Grimes #include <sys/systm.h> 49f0f6d643SLuigi Rizzo #include <sys/kernel.h> 50df8bae1dSRodney W. Grimes #include <sys/malloc.h> 51df8bae1dSRodney W. Grimes #include <sys/mbuf.h> 52df8bae1dSRodney W. Grimes #include <sys/protosw.h> 53df8bae1dSRodney W. Grimes #include <sys/socket.h> 54df8bae1dSRodney W. Grimes #include <sys/socketvar.h> 55df8bae1dSRodney W. Grimes 56df8bae1dSRodney W. Grimes #include <net/if.h> 57df8bae1dSRodney W. Grimes #include <net/route.h> 58df8bae1dSRodney W. Grimes 59df8bae1dSRodney W. Grimes #include <netinet/in.h> 60df8bae1dSRodney W. Grimes #include <netinet/in_systm.h> 61df8bae1dSRodney W. Grimes #include <netinet/ip.h> 62df8bae1dSRodney W. Grimes #include <netinet/in_pcb.h> 63df8bae1dSRodney W. Grimes #include <netinet/in_var.h> 64df8bae1dSRodney W. Grimes #include <netinet/ip_var.h> 65df8bae1dSRodney W. Grimes 666a800098SYoshinobu Inoue #include "faith.h" 676a800098SYoshinobu Inoue 689c9137eaSGarrett Wollman #include <machine/in_cksum.h> 69df8bae1dSRodney W. Grimes 70a1c995b6SPoul-Henning Kamp static MALLOC_DEFINE(M_IPMOPTS, "ip_moptions", "internet multicast options"); 7155166637SPoul-Henning Kamp 726a800098SYoshinobu Inoue #ifdef IPSEC 736a800098SYoshinobu Inoue #include <netinet6/ipsec.h> 746a800098SYoshinobu Inoue #include <netkey/key.h> 756a800098SYoshinobu Inoue #ifdef IPSEC_DEBUG 766a800098SYoshinobu Inoue #include <netkey/key_debug.h> 776a800098SYoshinobu Inoue #else 786a800098SYoshinobu Inoue #define KEYDEBUG(lev,arg) 796a800098SYoshinobu Inoue #endif 806a800098SYoshinobu Inoue #endif /*IPSEC*/ 816a800098SYoshinobu Inoue 82cfe8b629SGarrett Wollman #include <netinet/ip_fw.h> 83cfe8b629SGarrett Wollman 84b715f178SLuigi Rizzo #ifdef DUMMYNET 85b715f178SLuigi Rizzo #include <netinet/ip_dummynet.h> 86b715f178SLuigi Rizzo #endif 87b715f178SLuigi Rizzo 88f9e354dfSJulian Elischer #ifdef IPFIREWALL_FORWARD_DEBUG 89f9e354dfSJulian Elischer #define print_ip(a) printf("%ld.%ld.%ld.%ld",(ntohl(a.s_addr)>>24)&0xFF,\ 90f9e354dfSJulian Elischer (ntohl(a.s_addr)>>16)&0xFF,\ 91f9e354dfSJulian Elischer (ntohl(a.s_addr)>>8)&0xFF,\ 92f9e354dfSJulian Elischer (ntohl(a.s_addr))&0xFF); 93f9e354dfSJulian Elischer #endif 94f9e354dfSJulian Elischer 95f23b4c91SGarrett Wollman u_short ip_id; 96f23b4c91SGarrett Wollman 97df8bae1dSRodney W. Grimes static struct mbuf *ip_insertoptions __P((struct mbuf *, struct mbuf *, int *)); 9833841545SHajimu UMEMOTO static struct ifnet *ip_multicast_if __P((struct in_addr *, int *)); 99df8bae1dSRodney W. Grimes static void ip_mloopback 10086b1d6d2SBill Fenner __P((struct ifnet *, struct mbuf *, struct sockaddr_in *, int)); 1010312fbe9SPoul-Henning Kamp static int ip_getmoptions 102cfe8b629SGarrett Wollman __P((struct sockopt *, struct ip_moptions *)); 103cfe8b629SGarrett Wollman static int ip_pcbopts __P((int, struct mbuf **, struct mbuf *)); 1040312fbe9SPoul-Henning Kamp static int ip_setmoptions 105cfe8b629SGarrett Wollman __P((struct sockopt *, struct ip_moptions **)); 106df8bae1dSRodney W. Grimes 107beec8214SDarren Reed int ip_optcopy __P((struct ip *, struct ip *)); 108afed1b49SDarren Reed 109afed1b49SDarren Reed 11093e0e116SJulian Elischer extern struct protosw inetsw[]; 11193e0e116SJulian Elischer 112df8bae1dSRodney W. Grimes /* 113df8bae1dSRodney W. Grimes * IP output. The packet in mbuf chain m contains a skeletal IP 114df8bae1dSRodney W. Grimes * header (with len, off, ttl, proto, tos, src, dst). 115df8bae1dSRodney W. Grimes * The mbuf chain containing the packet will be freed. 116df8bae1dSRodney W. Grimes * The mbuf opt, if present, will not be freed. 117df8bae1dSRodney W. Grimes */ 118df8bae1dSRodney W. Grimes int 119df8bae1dSRodney W. Grimes ip_output(m0, opt, ro, flags, imo) 120df8bae1dSRodney W. Grimes struct mbuf *m0; 121df8bae1dSRodney W. Grimes struct mbuf *opt; 122df8bae1dSRodney W. Grimes struct route *ro; 123df8bae1dSRodney W. Grimes int flags; 124df8bae1dSRodney W. Grimes struct ip_moptions *imo; 125df8bae1dSRodney W. Grimes { 12623bf9953SPoul-Henning Kamp struct ip *ip, *mhip; 12723bf9953SPoul-Henning Kamp struct ifnet *ifp; 12823bf9953SPoul-Henning Kamp struct mbuf *m = m0; 12923bf9953SPoul-Henning Kamp int hlen = sizeof (struct ip); 130df8bae1dSRodney W. Grimes int len, off, error = 0; 131df8bae1dSRodney W. Grimes struct sockaddr_in *dst; 132df8bae1dSRodney W. Grimes struct in_ifaddr *ia; 133db4f9cc7SJonathan Lemon int isbroadcast, sw_csum; 1346a800098SYoshinobu Inoue #ifdef IPSEC 1356a800098SYoshinobu Inoue struct route iproute; 136d0a98d79SYoshinobu Inoue struct socket *so = NULL; 1376a800098SYoshinobu Inoue struct secpolicy *sp = NULL; 1386a800098SYoshinobu Inoue #endif 1398948e4baSArchie Cobbs u_int16_t divert_cookie; /* firewall cookie */ 140c4ac87eaSDarren Reed #ifdef PFIL_HOOKS 141c4ac87eaSDarren Reed struct packet_filter_hook *pfh; 142c4ac87eaSDarren Reed struct mbuf *m1; 143c4ac87eaSDarren Reed int rv; 144c4ac87eaSDarren Reed #endif /* PFIL_HOOKS */ 145f9e354dfSJulian Elischer #ifdef IPFIREWALL_FORWARD 146f9e354dfSJulian Elischer int fwd_rewrite_src = 0; 147f9e354dfSJulian Elischer #endif 148b715f178SLuigi Rizzo struct ip_fw_chain *rule = NULL; 149b715f178SLuigi Rizzo 1508948e4baSArchie Cobbs #ifdef IPDIVERT 1518948e4baSArchie Cobbs /* Get and reset firewall cookie */ 1528948e4baSArchie Cobbs divert_cookie = ip_divert_cookie; 1538948e4baSArchie Cobbs ip_divert_cookie = 0; 1548948e4baSArchie Cobbs #else 1558948e4baSArchie Cobbs divert_cookie = 0; 1568948e4baSArchie Cobbs #endif 1578948e4baSArchie Cobbs 158b715f178SLuigi Rizzo #if defined(IPFIREWALL) && defined(DUMMYNET) 159b715f178SLuigi Rizzo /* 160b715f178SLuigi Rizzo * dummynet packet are prepended a vestigial mbuf with 161b715f178SLuigi Rizzo * m_type = MT_DUMMYNET and m_data pointing to the matching 162b715f178SLuigi Rizzo * rule. 163b715f178SLuigi Rizzo */ 164b715f178SLuigi Rizzo if (m->m_type == MT_DUMMYNET) { 165b715f178SLuigi Rizzo /* 166b715f178SLuigi Rizzo * the packet was already tagged, so part of the 167b715f178SLuigi Rizzo * processing was already done, and we need to go down. 1686bc748b0SLuigi Rizzo * Get parameters from the header. 169b715f178SLuigi Rizzo */ 170b715f178SLuigi Rizzo rule = (struct ip_fw_chain *)(m->m_data) ; 171d1f04b29SLuigi Rizzo opt = NULL ; 172d1f04b29SLuigi Rizzo ro = & ( ((struct dn_pkt *)m)->ro ) ; 173d1f04b29SLuigi Rizzo imo = NULL ; 174d1f04b29SLuigi Rizzo dst = ((struct dn_pkt *)m)->dn_dst ; 175d1f04b29SLuigi Rizzo ifp = ((struct dn_pkt *)m)->ifp ; 176d0a98d79SYoshinobu Inoue flags = ((struct dn_pkt *)m)->flags ; 177d1f04b29SLuigi Rizzo 17817458d35SLuigi Rizzo m0 = m = m->m_next ; 179d0a98d79SYoshinobu Inoue #ifdef IPSEC 180686cdd19SJun-ichiro itojun Hagino so = ipsec_getsocket(m); 18133841545SHajimu UMEMOTO (void)ipsec_setsocket(m, NULL); 182d0a98d79SYoshinobu Inoue #endif 183b715f178SLuigi Rizzo ip = mtod(m, struct ip *); 184b715f178SLuigi Rizzo hlen = IP_VHL_HL(ip->ip_vhl) << 2 ; 1855d936aa1SIan Dowse ia = (struct in_ifaddr *)ro->ro_rt->rt_ifa; 186b715f178SLuigi Rizzo goto sendit; 187b715f178SLuigi Rizzo } else 188b715f178SLuigi Rizzo rule = NULL ; 189b715f178SLuigi Rizzo #endif 190d0a98d79SYoshinobu Inoue #ifdef IPSEC 191686cdd19SJun-ichiro itojun Hagino so = ipsec_getsocket(m); 19233841545SHajimu UMEMOTO (void)ipsec_setsocket(m, NULL); 193d0a98d79SYoshinobu Inoue #endif 194b715f178SLuigi Rizzo 195df8bae1dSRodney W. Grimes #ifdef DIAGNOSTIC 196df8bae1dSRodney W. Grimes if ((m->m_flags & M_PKTHDR) == 0) 197df8bae1dSRodney W. Grimes panic("ip_output no HDR"); 1989c9137eaSGarrett Wollman if (!ro) 1999c9137eaSGarrett Wollman panic("ip_output no route, proto = %d", 2009c9137eaSGarrett Wollman mtod(m, struct ip *)->ip_p); 201df8bae1dSRodney W. Grimes #endif 202df8bae1dSRodney W. Grimes if (opt) { 203df8bae1dSRodney W. Grimes m = ip_insertoptions(m, opt, &len); 204df8bae1dSRodney W. Grimes hlen = len; 205df8bae1dSRodney W. Grimes } 206df8bae1dSRodney W. Grimes ip = mtod(m, struct ip *); 207df8bae1dSRodney W. Grimes /* 208df8bae1dSRodney W. Grimes * Fill in IP header. 209df8bae1dSRodney W. Grimes */ 210df8bae1dSRodney W. Grimes if ((flags & (IP_FORWARDING|IP_RAWOUTPUT)) == 0) { 2119c9137eaSGarrett Wollman ip->ip_vhl = IP_MAKE_VHL(IPVERSION, hlen >> 2); 212df8bae1dSRodney W. Grimes ip->ip_off &= IP_DF; 21364dddc18SKris Kennaway #ifdef RANDOM_IP_ID 21464dddc18SKris Kennaway ip->ip_id = ip_randomid(); 21564dddc18SKris Kennaway #else 216e30177e0SRuslan Ermilov ip->ip_id = htons(ip_id++); 21764dddc18SKris Kennaway #endif 218df8bae1dSRodney W. Grimes ipstat.ips_localout++; 219df8bae1dSRodney W. Grimes } else { 2209c9137eaSGarrett Wollman hlen = IP_VHL_HL(ip->ip_vhl) << 2; 221df8bae1dSRodney W. Grimes } 2229c9137eaSGarrett Wollman 223df8bae1dSRodney W. Grimes dst = (struct sockaddr_in *)&ro->ro_dst; 224df8bae1dSRodney W. Grimes /* 225df8bae1dSRodney W. Grimes * If there is a cached route, 226df8bae1dSRodney W. Grimes * check that it is to the same destination 227df8bae1dSRodney W. Grimes * and is still up. If not, free it and try again. 228df8bae1dSRodney W. Grimes */ 229df8bae1dSRodney W. Grimes if (ro->ro_rt && ((ro->ro_rt->rt_flags & RTF_UP) == 0 || 230df8bae1dSRodney W. Grimes dst->sin_addr.s_addr != ip->ip_dst.s_addr)) { 231df8bae1dSRodney W. Grimes RTFREE(ro->ro_rt); 232df8bae1dSRodney W. Grimes ro->ro_rt = (struct rtentry *)0; 233df8bae1dSRodney W. Grimes } 234df8bae1dSRodney W. Grimes if (ro->ro_rt == 0) { 235df8bae1dSRodney W. Grimes dst->sin_family = AF_INET; 236df8bae1dSRodney W. Grimes dst->sin_len = sizeof(*dst); 237df8bae1dSRodney W. Grimes dst->sin_addr = ip->ip_dst; 238df8bae1dSRodney W. Grimes } 239df8bae1dSRodney W. Grimes /* 240df8bae1dSRodney W. Grimes * If routing to interface only, 241df8bae1dSRodney W. Grimes * short circuit routing lookup. 242df8bae1dSRodney W. Grimes */ 243df8bae1dSRodney W. Grimes #define ifatoia(ifa) ((struct in_ifaddr *)(ifa)) 244df8bae1dSRodney W. Grimes #define sintosa(sin) ((struct sockaddr *)(sin)) 245df8bae1dSRodney W. Grimes if (flags & IP_ROUTETOIF) { 246df8bae1dSRodney W. Grimes if ((ia = ifatoia(ifa_ifwithdstaddr(sintosa(dst)))) == 0 && 247df8bae1dSRodney W. Grimes (ia = ifatoia(ifa_ifwithnet(sintosa(dst)))) == 0) { 248df8bae1dSRodney W. Grimes ipstat.ips_noroute++; 249df8bae1dSRodney W. Grimes error = ENETUNREACH; 250df8bae1dSRodney W. Grimes goto bad; 251df8bae1dSRodney W. Grimes } 252df8bae1dSRodney W. Grimes ifp = ia->ia_ifp; 253df8bae1dSRodney W. Grimes ip->ip_ttl = 1; 2549f9b3dc4SGarrett Wollman isbroadcast = in_broadcast(dst->sin_addr, ifp); 255df8bae1dSRodney W. Grimes } else { 2562c17fe93SGarrett Wollman /* 2572c17fe93SGarrett Wollman * If this is the case, we probably don't want to allocate 2582c17fe93SGarrett Wollman * a protocol-cloned route since we didn't get one from the 2592c17fe93SGarrett Wollman * ULP. This lets TCP do its thing, while not burdening 2602c17fe93SGarrett Wollman * forwarding or ICMP with the overhead of cloning a route. 2612c17fe93SGarrett Wollman * Of course, we still want to do any cloning requested by 2622c17fe93SGarrett Wollman * the link layer, as this is probably required in all cases 2632c17fe93SGarrett Wollman * for correct operation (as it is for ARP). 2642c17fe93SGarrett Wollman */ 265df8bae1dSRodney W. Grimes if (ro->ro_rt == 0) 2662c17fe93SGarrett Wollman rtalloc_ign(ro, RTF_PRCLONING); 267df8bae1dSRodney W. Grimes if (ro->ro_rt == 0) { 268df8bae1dSRodney W. Grimes ipstat.ips_noroute++; 269df8bae1dSRodney W. Grimes error = EHOSTUNREACH; 270df8bae1dSRodney W. Grimes goto bad; 271df8bae1dSRodney W. Grimes } 272df8bae1dSRodney W. Grimes ia = ifatoia(ro->ro_rt->rt_ifa); 273df8bae1dSRodney W. Grimes ifp = ro->ro_rt->rt_ifp; 274df8bae1dSRodney W. Grimes ro->ro_rt->rt_use++; 275df8bae1dSRodney W. Grimes if (ro->ro_rt->rt_flags & RTF_GATEWAY) 276df8bae1dSRodney W. Grimes dst = (struct sockaddr_in *)ro->ro_rt->rt_gateway; 2779f9b3dc4SGarrett Wollman if (ro->ro_rt->rt_flags & RTF_HOST) 2789f9b3dc4SGarrett Wollman isbroadcast = (ro->ro_rt->rt_flags & RTF_BROADCAST); 2799f9b3dc4SGarrett Wollman else 2809f9b3dc4SGarrett Wollman isbroadcast = in_broadcast(dst->sin_addr, ifp); 281df8bae1dSRodney W. Grimes } 282df8bae1dSRodney W. Grimes if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr))) { 283df8bae1dSRodney W. Grimes struct in_multi *inm; 284df8bae1dSRodney W. Grimes 285df8bae1dSRodney W. Grimes m->m_flags |= M_MCAST; 286df8bae1dSRodney W. Grimes /* 287df8bae1dSRodney W. Grimes * IP destination address is multicast. Make sure "dst" 288df8bae1dSRodney W. Grimes * still points to the address in "ro". (It may have been 289df8bae1dSRodney W. Grimes * changed to point to a gateway address, above.) 290df8bae1dSRodney W. Grimes */ 291df8bae1dSRodney W. Grimes dst = (struct sockaddr_in *)&ro->ro_dst; 292df8bae1dSRodney W. Grimes /* 293df8bae1dSRodney W. Grimes * See if the caller provided any multicast options 294df8bae1dSRodney W. Grimes */ 295df8bae1dSRodney W. Grimes if (imo != NULL) { 296df8bae1dSRodney W. Grimes ip->ip_ttl = imo->imo_multicast_ttl; 297df8bae1dSRodney W. Grimes if (imo->imo_multicast_ifp != NULL) 298df8bae1dSRodney W. Grimes ifp = imo->imo_multicast_ifp; 2991c5de19aSGarrett Wollman if (imo->imo_multicast_vif != -1) 3001c5de19aSGarrett Wollman ip->ip_src.s_addr = 3011c5de19aSGarrett Wollman ip_mcast_src(imo->imo_multicast_vif); 302df8bae1dSRodney W. Grimes } else 303df8bae1dSRodney W. Grimes ip->ip_ttl = IP_DEFAULT_MULTICAST_TTL; 304df8bae1dSRodney W. Grimes /* 305df8bae1dSRodney W. Grimes * Confirm that the outgoing interface supports multicast. 306df8bae1dSRodney W. Grimes */ 3071c5de19aSGarrett Wollman if ((imo == NULL) || (imo->imo_multicast_vif == -1)) { 308df8bae1dSRodney W. Grimes if ((ifp->if_flags & IFF_MULTICAST) == 0) { 309df8bae1dSRodney W. Grimes ipstat.ips_noroute++; 310df8bae1dSRodney W. Grimes error = ENETUNREACH; 311df8bae1dSRodney W. Grimes goto bad; 312df8bae1dSRodney W. Grimes } 3131c5de19aSGarrett Wollman } 314df8bae1dSRodney W. Grimes /* 315df8bae1dSRodney W. Grimes * If source address not specified yet, use address 316df8bae1dSRodney W. Grimes * of outgoing interface. 317df8bae1dSRodney W. Grimes */ 318df8bae1dSRodney W. Grimes if (ip->ip_src.s_addr == INADDR_ANY) { 3190abc78a6SPoul-Henning Kamp register struct in_ifaddr *ia1; 320df8bae1dSRodney W. Grimes 32137d40066SPoul-Henning Kamp TAILQ_FOREACH(ia1, &in_ifaddrhead, ia_link) 3220abc78a6SPoul-Henning Kamp if (ia1->ia_ifp == ifp) { 3230abc78a6SPoul-Henning Kamp ip->ip_src = IA_SIN(ia1)->sin_addr; 324df8bae1dSRodney W. Grimes break; 325df8bae1dSRodney W. Grimes } 326df8bae1dSRodney W. Grimes } 327df8bae1dSRodney W. Grimes 328df8bae1dSRodney W. Grimes IN_LOOKUP_MULTI(ip->ip_dst, ifp, inm); 329df8bae1dSRodney W. Grimes if (inm != NULL && 330df8bae1dSRodney W. Grimes (imo == NULL || imo->imo_multicast_loop)) { 331df8bae1dSRodney W. Grimes /* 332df8bae1dSRodney W. Grimes * If we belong to the destination multicast group 333df8bae1dSRodney W. Grimes * on the outgoing interface, and the caller did not 334df8bae1dSRodney W. Grimes * forbid loopback, loop back a copy. 335df8bae1dSRodney W. Grimes */ 33686b1d6d2SBill Fenner ip_mloopback(ifp, m, dst, hlen); 337df8bae1dSRodney W. Grimes } 338df8bae1dSRodney W. Grimes else { 339df8bae1dSRodney W. Grimes /* 340df8bae1dSRodney W. Grimes * If we are acting as a multicast router, perform 341df8bae1dSRodney W. Grimes * multicast forwarding as if the packet had just 342df8bae1dSRodney W. Grimes * arrived on the interface to which we are about 343df8bae1dSRodney W. Grimes * to send. The multicast forwarding function 344df8bae1dSRodney W. Grimes * recursively calls this function, using the 345df8bae1dSRodney W. Grimes * IP_FORWARDING flag to prevent infinite recursion. 346df8bae1dSRodney W. Grimes * 347df8bae1dSRodney W. Grimes * Multicasts that are looped back by ip_mloopback(), 348df8bae1dSRodney W. Grimes * above, will be forwarded by the ip_input() routine, 349df8bae1dSRodney W. Grimes * if necessary. 350df8bae1dSRodney W. Grimes */ 351df8bae1dSRodney W. Grimes if (ip_mrouter && (flags & IP_FORWARDING) == 0) { 352f0068c4aSGarrett Wollman /* 353f0068c4aSGarrett Wollman * Check if rsvp daemon is running. If not, don't 354f0068c4aSGarrett Wollman * set ip_moptions. This ensures that the packet 355f0068c4aSGarrett Wollman * is multicast and not just sent down one link 356f0068c4aSGarrett Wollman * as prescribed by rsvpd. 357f0068c4aSGarrett Wollman */ 358b124e4f2SGarrett Wollman if (!rsvp_on) 359f0068c4aSGarrett Wollman imo = NULL; 360f0068c4aSGarrett Wollman if (ip_mforward(ip, ifp, m, imo) != 0) { 361df8bae1dSRodney W. Grimes m_freem(m); 362df8bae1dSRodney W. Grimes goto done; 363df8bae1dSRodney W. Grimes } 364df8bae1dSRodney W. Grimes } 365df8bae1dSRodney W. Grimes } 3665e9ae478SGarrett Wollman 367df8bae1dSRodney W. Grimes /* 368df8bae1dSRodney W. Grimes * Multicasts with a time-to-live of zero may be looped- 369df8bae1dSRodney W. Grimes * back, above, but must not be transmitted on a network. 370df8bae1dSRodney W. Grimes * Also, multicasts addressed to the loopback interface 371df8bae1dSRodney W. Grimes * are not sent -- the above call to ip_mloopback() will 372df8bae1dSRodney W. Grimes * loop back a copy if this host actually belongs to the 373df8bae1dSRodney W. Grimes * destination group on the loopback interface. 374df8bae1dSRodney W. Grimes */ 375f5fea3ddSPaul Traina if (ip->ip_ttl == 0 || ifp->if_flags & IFF_LOOPBACK) { 376df8bae1dSRodney W. Grimes m_freem(m); 377df8bae1dSRodney W. Grimes goto done; 378df8bae1dSRodney W. Grimes } 379df8bae1dSRodney W. Grimes 380df8bae1dSRodney W. Grimes goto sendit; 381df8bae1dSRodney W. Grimes } 382df8bae1dSRodney W. Grimes #ifndef notdef 383df8bae1dSRodney W. Grimes /* 384df8bae1dSRodney W. Grimes * If source address not specified yet, use address 385df8bae1dSRodney W. Grimes * of outgoing interface. 386df8bae1dSRodney W. Grimes */ 387f9e354dfSJulian Elischer if (ip->ip_src.s_addr == INADDR_ANY) { 388df8bae1dSRodney W. Grimes ip->ip_src = IA_SIN(ia)->sin_addr; 389f9e354dfSJulian Elischer #ifdef IPFIREWALL_FORWARD 390f9e354dfSJulian Elischer /* Keep note that we did this - if the firewall changes 391f9e354dfSJulian Elischer * the next-hop, our interface may change, changing the 392f9e354dfSJulian Elischer * default source IP. It's a shame so much effort happens 393f9e354dfSJulian Elischer * twice. Oh well. 394f9e354dfSJulian Elischer */ 395f9e354dfSJulian Elischer fwd_rewrite_src++; 396f9e354dfSJulian Elischer #endif /* IPFIREWALL_FORWARD */ 397f9e354dfSJulian Elischer } 398f9e354dfSJulian Elischer #endif /* notdef */ 399df8bae1dSRodney W. Grimes /* 400b5390296SDavid Greenman * Verify that we have any chance at all of being able to queue 401b5390296SDavid Greenman * the packet or packet fragments 402b5390296SDavid Greenman */ 403b5390296SDavid Greenman if ((ifp->if_snd.ifq_len + ip->ip_len / ifp->if_mtu + 1) >= 404b5390296SDavid Greenman ifp->if_snd.ifq_maxlen) { 405b5390296SDavid Greenman error = ENOBUFS; 406b5390296SDavid Greenman goto bad; 407b5390296SDavid Greenman } 408b5390296SDavid Greenman 409b5390296SDavid Greenman /* 410df8bae1dSRodney W. Grimes * Look for broadcast address and 411df8bae1dSRodney W. Grimes * and verify user is allowed to send 412df8bae1dSRodney W. Grimes * such a packet. 413df8bae1dSRodney W. Grimes */ 4149f9b3dc4SGarrett Wollman if (isbroadcast) { 415df8bae1dSRodney W. Grimes if ((ifp->if_flags & IFF_BROADCAST) == 0) { 416df8bae1dSRodney W. Grimes error = EADDRNOTAVAIL; 417df8bae1dSRodney W. Grimes goto bad; 418df8bae1dSRodney W. Grimes } 419df8bae1dSRodney W. Grimes if ((flags & IP_ALLOWBROADCAST) == 0) { 420df8bae1dSRodney W. Grimes error = EACCES; 421df8bae1dSRodney W. Grimes goto bad; 422df8bae1dSRodney W. Grimes } 423df8bae1dSRodney W. Grimes /* don't allow broadcast messages to be fragmented */ 424df8bae1dSRodney W. Grimes if ((u_short)ip->ip_len > ifp->if_mtu) { 425df8bae1dSRodney W. Grimes error = EMSGSIZE; 426df8bae1dSRodney W. Grimes goto bad; 427df8bae1dSRodney W. Grimes } 428df8bae1dSRodney W. Grimes m->m_flags |= M_BCAST; 4299f9b3dc4SGarrett Wollman } else { 430df8bae1dSRodney W. Grimes m->m_flags &= ~M_BCAST; 4319f9b3dc4SGarrett Wollman } 432df8bae1dSRodney W. Grimes 433f1743588SDarren Reed sendit: 43433841545SHajimu UMEMOTO #ifdef IPSEC 43533841545SHajimu UMEMOTO /* get SP for this packet */ 43633841545SHajimu UMEMOTO if (so == NULL) 43733841545SHajimu UMEMOTO sp = ipsec4_getpolicybyaddr(m, IPSEC_DIR_OUTBOUND, flags, &error); 43833841545SHajimu UMEMOTO else 43933841545SHajimu UMEMOTO sp = ipsec4_getpolicybysock(m, IPSEC_DIR_OUTBOUND, so, &error); 44033841545SHajimu UMEMOTO 44133841545SHajimu UMEMOTO if (sp == NULL) { 44233841545SHajimu UMEMOTO ipsecstat.out_inval++; 44333841545SHajimu UMEMOTO goto bad; 44433841545SHajimu UMEMOTO } 44533841545SHajimu UMEMOTO 44633841545SHajimu UMEMOTO error = 0; 44733841545SHajimu UMEMOTO 44833841545SHajimu UMEMOTO /* check policy */ 44933841545SHajimu UMEMOTO switch (sp->policy) { 45033841545SHajimu UMEMOTO case IPSEC_POLICY_DISCARD: 45133841545SHajimu UMEMOTO /* 45233841545SHajimu UMEMOTO * This packet is just discarded. 45333841545SHajimu UMEMOTO */ 45433841545SHajimu UMEMOTO ipsecstat.out_polvio++; 45533841545SHajimu UMEMOTO goto bad; 45633841545SHajimu UMEMOTO 45733841545SHajimu UMEMOTO case IPSEC_POLICY_BYPASS: 45833841545SHajimu UMEMOTO case IPSEC_POLICY_NONE: 45933841545SHajimu UMEMOTO /* no need to do IPsec. */ 46033841545SHajimu UMEMOTO goto skip_ipsec; 46133841545SHajimu UMEMOTO 46233841545SHajimu UMEMOTO case IPSEC_POLICY_IPSEC: 46333841545SHajimu UMEMOTO if (sp->req == NULL) { 46433841545SHajimu UMEMOTO /* acquire a policy */ 46533841545SHajimu UMEMOTO error = key_spdacquire(sp); 46633841545SHajimu UMEMOTO goto bad; 46733841545SHajimu UMEMOTO } 46833841545SHajimu UMEMOTO break; 46933841545SHajimu UMEMOTO 47033841545SHajimu UMEMOTO case IPSEC_POLICY_ENTRUST: 47133841545SHajimu UMEMOTO default: 47233841545SHajimu UMEMOTO printf("ip_output: Invalid policy found. %d\n", sp->policy); 47333841545SHajimu UMEMOTO } 47433841545SHajimu UMEMOTO { 47533841545SHajimu UMEMOTO struct ipsec_output_state state; 47633841545SHajimu UMEMOTO bzero(&state, sizeof(state)); 47733841545SHajimu UMEMOTO state.m = m; 47833841545SHajimu UMEMOTO if (flags & IP_ROUTETOIF) { 47933841545SHajimu UMEMOTO state.ro = &iproute; 48033841545SHajimu UMEMOTO bzero(&iproute, sizeof(iproute)); 48133841545SHajimu UMEMOTO } else 48233841545SHajimu UMEMOTO state.ro = ro; 48333841545SHajimu UMEMOTO state.dst = (struct sockaddr *)dst; 48433841545SHajimu UMEMOTO 48533841545SHajimu UMEMOTO ip->ip_sum = 0; 48633841545SHajimu UMEMOTO 48733841545SHajimu UMEMOTO /* 48833841545SHajimu UMEMOTO * XXX 48933841545SHajimu UMEMOTO * delayed checksums are not currently compatible with IPsec 49033841545SHajimu UMEMOTO */ 49133841545SHajimu UMEMOTO if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) { 49233841545SHajimu UMEMOTO in_delayed_cksum(m); 49333841545SHajimu UMEMOTO m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA; 49433841545SHajimu UMEMOTO } 49533841545SHajimu UMEMOTO 49633841545SHajimu UMEMOTO HTONS(ip->ip_len); 49733841545SHajimu UMEMOTO HTONS(ip->ip_off); 49833841545SHajimu UMEMOTO 49933841545SHajimu UMEMOTO error = ipsec4_output(&state, sp, flags); 50033841545SHajimu UMEMOTO 50133841545SHajimu UMEMOTO m = state.m; 50233841545SHajimu UMEMOTO if (flags & IP_ROUTETOIF) { 50333841545SHajimu UMEMOTO /* 50433841545SHajimu UMEMOTO * if we have tunnel mode SA, we may need to ignore 50533841545SHajimu UMEMOTO * IP_ROUTETOIF. 50633841545SHajimu UMEMOTO */ 50733841545SHajimu UMEMOTO if (state.ro != &iproute || state.ro->ro_rt != NULL) { 50833841545SHajimu UMEMOTO flags &= ~IP_ROUTETOIF; 50933841545SHajimu UMEMOTO ro = state.ro; 51033841545SHajimu UMEMOTO } 51133841545SHajimu UMEMOTO } else 51233841545SHajimu UMEMOTO ro = state.ro; 51333841545SHajimu UMEMOTO dst = (struct sockaddr_in *)state.dst; 51433841545SHajimu UMEMOTO if (error) { 51533841545SHajimu UMEMOTO /* mbuf is already reclaimed in ipsec4_output. */ 51633841545SHajimu UMEMOTO m0 = NULL; 51733841545SHajimu UMEMOTO switch (error) { 51833841545SHajimu UMEMOTO case EHOSTUNREACH: 51933841545SHajimu UMEMOTO case ENETUNREACH: 52033841545SHajimu UMEMOTO case EMSGSIZE: 52133841545SHajimu UMEMOTO case ENOBUFS: 52233841545SHajimu UMEMOTO case ENOMEM: 52333841545SHajimu UMEMOTO break; 52433841545SHajimu UMEMOTO default: 52533841545SHajimu UMEMOTO printf("ip4_output (ipsec): error code %d\n", error); 52633841545SHajimu UMEMOTO /*fall through*/ 52733841545SHajimu UMEMOTO case ENOENT: 52833841545SHajimu UMEMOTO /* don't show these error codes to the user */ 52933841545SHajimu UMEMOTO error = 0; 53033841545SHajimu UMEMOTO break; 53133841545SHajimu UMEMOTO } 53233841545SHajimu UMEMOTO goto bad; 53333841545SHajimu UMEMOTO } 53433841545SHajimu UMEMOTO } 53533841545SHajimu UMEMOTO 53633841545SHajimu UMEMOTO /* be sure to update variables that are affected by ipsec4_output() */ 53733841545SHajimu UMEMOTO ip = mtod(m, struct ip *); 53833841545SHajimu UMEMOTO #ifdef _IP_VHL 53933841545SHajimu UMEMOTO hlen = IP_VHL_HL(ip->ip_vhl) << 2; 54033841545SHajimu UMEMOTO #else 54133841545SHajimu UMEMOTO hlen = ip->ip_hl << 2; 54233841545SHajimu UMEMOTO #endif 54333841545SHajimu UMEMOTO if (ro->ro_rt == NULL) { 54433841545SHajimu UMEMOTO if ((flags & IP_ROUTETOIF) == 0) { 54533841545SHajimu UMEMOTO printf("ip_output: " 54633841545SHajimu UMEMOTO "can't update route after IPsec processing\n"); 54733841545SHajimu UMEMOTO error = EHOSTUNREACH; /*XXX*/ 54833841545SHajimu UMEMOTO goto bad; 54933841545SHajimu UMEMOTO } 55033841545SHajimu UMEMOTO } else { 55133841545SHajimu UMEMOTO ia = ifatoia(ro->ro_rt->rt_ifa); 55233841545SHajimu UMEMOTO ifp = ro->ro_rt->rt_ifp; 55333841545SHajimu UMEMOTO } 55433841545SHajimu UMEMOTO 55533841545SHajimu UMEMOTO /* make it flipped, again. */ 55633841545SHajimu UMEMOTO NTOHS(ip->ip_len); 55733841545SHajimu UMEMOTO NTOHS(ip->ip_off); 55833841545SHajimu UMEMOTO skip_ipsec: 55933841545SHajimu UMEMOTO #endif /*IPSEC*/ 56033841545SHajimu UMEMOTO 561fed1c7e9SSøren Schmidt /* 562fed1c7e9SSøren Schmidt * IpHack's section. 563fed1c7e9SSøren Schmidt * - Xlate: translate packet's addr/port (NAT). 564e4676ba6SJulian Elischer * - Firewall: deny/allow/etc. 565fed1c7e9SSøren Schmidt * - Wrap: fake packet's addr/port <unimpl.> 566fed1c7e9SSøren Schmidt * - Encapsulate: put it in another IP and send out. <unimp.> 567fed1c7e9SSøren Schmidt */ 568c4ac87eaSDarren Reed #ifdef PFIL_HOOKS 569c4ac87eaSDarren Reed /* 570c4ac87eaSDarren Reed * Run through list of hooks for output packets. 571c4ac87eaSDarren Reed */ 572c4ac87eaSDarren Reed m1 = m; 573c4ac87eaSDarren Reed pfh = pfil_hook_get(PFIL_OUT, &inetsw[ip_protox[IPPROTO_IP]].pr_pfh); 574fc2ffbe6SPoul-Henning Kamp for (; pfh; pfh = TAILQ_NEXT(pfh, pfil_link)) 575c4ac87eaSDarren Reed if (pfh->pfil_func) { 576c4ac87eaSDarren Reed rv = pfh->pfil_func(ip, hlen, ifp, 1, &m1); 577c4ac87eaSDarren Reed if (rv) { 578c4ac87eaSDarren Reed error = EHOSTUNREACH; 5791ee25934SPeter Wemm goto done; 5801ee25934SPeter Wemm } 581c4ac87eaSDarren Reed m = m1; 582c4ac87eaSDarren Reed if (m == NULL) 583c4ac87eaSDarren Reed goto done; 584c4ac87eaSDarren Reed ip = mtod(m, struct ip *); 585c4ac87eaSDarren Reed } 586c4ac87eaSDarren Reed #endif /* PFIL_HOOKS */ 587fed1c7e9SSøren Schmidt 588df8bae1dSRodney W. Grimes /* 589e7319babSPoul-Henning Kamp * Check with the firewall... 590e7319babSPoul-Henning Kamp */ 5916bc748b0SLuigi Rizzo if (fw_enable && ip_fw_chk_ptr) { 5929de9737fSPeter Wemm struct sockaddr_in *old = dst; 593b715f178SLuigi Rizzo 594b715f178SLuigi Rizzo off = (*ip_fw_chk_ptr)(&ip, 5958948e4baSArchie Cobbs hlen, ifp, &divert_cookie, &m, &rule, &dst); 596b715f178SLuigi Rizzo /* 597b715f178SLuigi Rizzo * On return we must do the following: 598507b4b54SLuigi Rizzo * m == NULL -> drop the pkt (old interface, deprecated) 599507b4b54SLuigi Rizzo * (off & 0x40000) -> drop the pkt (new interface) 600b715f178SLuigi Rizzo * 1<=off<= 0xffff -> DIVERT 601b715f178SLuigi Rizzo * (off & 0x10000) -> send to a DUMMYNET pipe 6028948e4baSArchie Cobbs * (off & 0x20000) -> TEE the packet 603b715f178SLuigi Rizzo * dst != old -> IPFIREWALL_FORWARD 604b715f178SLuigi Rizzo * off==0, dst==old -> accept 605b715f178SLuigi Rizzo * If some of the above modules is not compiled in, then 606b715f178SLuigi Rizzo * we should't have to check the corresponding condition 607b715f178SLuigi Rizzo * (because the ipfw control socket should not accept 608b715f178SLuigi Rizzo * unsupported rules), but better play safe and drop 609b715f178SLuigi Rizzo * packets in case of doubt. 610b715f178SLuigi Rizzo */ 611507b4b54SLuigi Rizzo if (off & IP_FW_PORT_DENY_FLAG) { /* XXX new interface-denied */ 612507b4b54SLuigi Rizzo if (m) 613507b4b54SLuigi Rizzo m_freem(m); 614507b4b54SLuigi Rizzo error = EACCES ; 615507b4b54SLuigi Rizzo goto done; 616507b4b54SLuigi Rizzo } 617b715f178SLuigi Rizzo if (!m) { /* firewall said to reject */ 618507b4b54SLuigi Rizzo static int __debug=10; 619507b4b54SLuigi Rizzo if (__debug >0) { 620507b4b54SLuigi Rizzo printf("firewall returns NULL, please update!\n"); 621507b4b54SLuigi Rizzo __debug-- ; 622507b4b54SLuigi Rizzo } 623e4676ba6SJulian Elischer error = EACCES; 624e4676ba6SJulian Elischer goto done; 62593e0e116SJulian Elischer } 626b715f178SLuigi Rizzo if (off == 0 && dst == old) /* common case */ 627b715f178SLuigi Rizzo goto pass ; 628b715f178SLuigi Rizzo #ifdef DUMMYNET 6298948e4baSArchie Cobbs if ((off & IP_FW_PORT_DYNT_FLAG) != 0) { 630b715f178SLuigi Rizzo /* 631b715f178SLuigi Rizzo * pass the pkt to dummynet. Need to include 632f0a53591SLuigi Rizzo * pipe number, m, ifp, ro, dst because these are 633b715f178SLuigi Rizzo * not recomputed in the next pass. 634b715f178SLuigi Rizzo * All other parameters have been already used and 635b715f178SLuigi Rizzo * so they are not needed anymore. 636b715f178SLuigi Rizzo * XXX note: if the ifp or ro entry are deleted 637b715f178SLuigi Rizzo * while a pkt is in dummynet, we are in trouble! 638b715f178SLuigi Rizzo */ 6397a726a2dSLuigi Rizzo error = dummynet_io(off & 0xffff, DN_TO_IP_OUT, m, 6407a726a2dSLuigi Rizzo ifp,ro,dst,rule, flags); 641b715f178SLuigi Rizzo goto done; 642b715f178SLuigi Rizzo } 643b715f178SLuigi Rizzo #endif 644b715f178SLuigi Rizzo #ifdef IPDIVERT 6458948e4baSArchie Cobbs if (off != 0 && (off & IP_FW_PORT_DYNT_FLAG) == 0) { 6468948e4baSArchie Cobbs struct mbuf *clone = NULL; 6478948e4baSArchie Cobbs 6488948e4baSArchie Cobbs /* Clone packet if we're doing a 'tee' */ 6498948e4baSArchie Cobbs if ((off & IP_FW_PORT_TEE_FLAG) != 0) 6508948e4baSArchie Cobbs clone = m_dup(m, M_DONTWAIT); 6518948e4baSArchie Cobbs 652ea53ecd9SJonathan Lemon /* 653ea53ecd9SJonathan Lemon * XXX 654ea53ecd9SJonathan Lemon * delayed checksums are not currently compatible 655ea53ecd9SJonathan Lemon * with divert sockets. 656ea53ecd9SJonathan Lemon */ 657ea53ecd9SJonathan Lemon if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) { 658ea53ecd9SJonathan Lemon in_delayed_cksum(m); 659ea53ecd9SJonathan Lemon m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA; 660ea53ecd9SJonathan Lemon } 661ea53ecd9SJonathan Lemon 6628948e4baSArchie Cobbs /* Restore packet header fields to original values */ 6638948e4baSArchie Cobbs HTONS(ip->ip_len); 6648948e4baSArchie Cobbs HTONS(ip->ip_off); 6658948e4baSArchie Cobbs 6668948e4baSArchie Cobbs /* Deliver packet to divert input routine */ 6678948e4baSArchie Cobbs ip_divert_cookie = divert_cookie; 6688948e4baSArchie Cobbs divert_packet(m, 0, off & 0xffff); 6698948e4baSArchie Cobbs 6708948e4baSArchie Cobbs /* If 'tee', continue with original packet */ 6718948e4baSArchie Cobbs if (clone != NULL) { 6728948e4baSArchie Cobbs m = clone; 6738948e4baSArchie Cobbs ip = mtod(m, struct ip *); 6748948e4baSArchie Cobbs goto pass; 6758948e4baSArchie Cobbs } 676b715f178SLuigi Rizzo goto done; 677b715f178SLuigi Rizzo } 678b715f178SLuigi Rizzo #endif 679b715f178SLuigi Rizzo 680f9e354dfSJulian Elischer #ifdef IPFIREWALL_FORWARD 681f9e354dfSJulian Elischer /* Here we check dst to make sure it's directly reachable on the 682f9e354dfSJulian Elischer * interface we previously thought it was. 683f9e354dfSJulian Elischer * If it isn't (which may be likely in some situations) we have 684f9e354dfSJulian Elischer * to re-route it (ie, find a route for the next-hop and the 685f9e354dfSJulian Elischer * associated interface) and set them here. This is nested 686f9e354dfSJulian Elischer * forwarding which in most cases is undesirable, except where 687f9e354dfSJulian Elischer * such control is nigh impossible. So we do it here. 688f9e354dfSJulian Elischer * And I'm babbling. 689f9e354dfSJulian Elischer */ 690b715f178SLuigi Rizzo if (off == 0 && old != dst) { 691f9e354dfSJulian Elischer struct in_ifaddr *ia; 692f9e354dfSJulian Elischer 693f9e354dfSJulian Elischer /* It's changed... */ 694f9e354dfSJulian Elischer /* There must be a better way to do this next line... */ 695f9e354dfSJulian Elischer static struct route sro_fwd, *ro_fwd = &sro_fwd; 696f9e354dfSJulian Elischer #ifdef IPFIREWALL_FORWARD_DEBUG 697f9e354dfSJulian Elischer printf("IPFIREWALL_FORWARD: New dst ip: "); 698f9e354dfSJulian Elischer print_ip(dst->sin_addr); 699f9e354dfSJulian Elischer printf("\n"); 700f9e354dfSJulian Elischer #endif 701f9e354dfSJulian Elischer /* 702f9e354dfSJulian Elischer * We need to figure out if we have been forwarded 703f9e354dfSJulian Elischer * to a local socket. If so then we should somehow 704f9e354dfSJulian Elischer * "loop back" to ip_input, and get directed to the 705f9e354dfSJulian Elischer * PCB as if we had received this packet. This is 706f9e354dfSJulian Elischer * because it may be dificult to identify the packets 707f9e354dfSJulian Elischer * you want to forward until they are being output 708f9e354dfSJulian Elischer * and have selected an interface. (e.g. locally 709f9e354dfSJulian Elischer * initiated packets) If we used the loopback inteface, 710f9e354dfSJulian Elischer * we would not be able to control what happens 711f9e354dfSJulian Elischer * as the packet runs through ip_input() as 712f9e354dfSJulian Elischer * it is done through a ISR. 713f9e354dfSJulian Elischer */ 71437d40066SPoul-Henning Kamp TAILQ_FOREACH(ia, &in_ifaddrhead, ia_link) { 715f9e354dfSJulian Elischer /* 716f9e354dfSJulian Elischer * If the addr to forward to is one 717f9e354dfSJulian Elischer * of ours, we pretend to 718f9e354dfSJulian Elischer * be the destination for this packet. 719f9e354dfSJulian Elischer */ 720f9e354dfSJulian Elischer if (IA_SIN(ia)->sin_addr.s_addr == 721f9e354dfSJulian Elischer dst->sin_addr.s_addr) 722f9e354dfSJulian Elischer break; 723f9e354dfSJulian Elischer } 724f9e354dfSJulian Elischer if (ia) { 725f9e354dfSJulian Elischer /* tell ip_input "dont filter" */ 726f9e354dfSJulian Elischer ip_fw_fwd_addr = dst; 727f9e354dfSJulian Elischer if (m->m_pkthdr.rcvif == NULL) 728f9e354dfSJulian Elischer m->m_pkthdr.rcvif = ifunit("lo0"); 72920c822f3SJonathan Lemon if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) { 73020c822f3SJonathan Lemon m->m_pkthdr.csum_flags |= 73120c822f3SJonathan Lemon CSUM_DATA_VALID | CSUM_PSEUDO_HDR; 73220c822f3SJonathan Lemon m0->m_pkthdr.csum_data = 0xffff; 73320c822f3SJonathan Lemon } 73420c822f3SJonathan Lemon m->m_pkthdr.csum_flags |= 73520c822f3SJonathan Lemon CSUM_IP_CHECKED | CSUM_IP_VALID; 73604287599SRuslan Ermilov HTONS(ip->ip_len); 73704287599SRuslan Ermilov HTONS(ip->ip_off); 738f9e354dfSJulian Elischer ip_input(m); 739f9e354dfSJulian Elischer goto done; 740f9e354dfSJulian Elischer } 741f9e354dfSJulian Elischer /* Some of the logic for this was 742f9e354dfSJulian Elischer * nicked from above. 743f9e354dfSJulian Elischer * 744f9e354dfSJulian Elischer * This rewrites the cached route in a local PCB. 745f9e354dfSJulian Elischer * Is this what we want to do? 746f9e354dfSJulian Elischer */ 747f9e354dfSJulian Elischer bcopy(dst, &ro_fwd->ro_dst, sizeof(*dst)); 748f9e354dfSJulian Elischer 749f9e354dfSJulian Elischer ro_fwd->ro_rt = 0; 750f9e354dfSJulian Elischer rtalloc_ign(ro_fwd, RTF_PRCLONING); 751f9e354dfSJulian Elischer 752f9e354dfSJulian Elischer if (ro_fwd->ro_rt == 0) { 753f9e354dfSJulian Elischer ipstat.ips_noroute++; 754f9e354dfSJulian Elischer error = EHOSTUNREACH; 755f9e354dfSJulian Elischer goto bad; 756f9e354dfSJulian Elischer } 757f9e354dfSJulian Elischer 758f9e354dfSJulian Elischer ia = ifatoia(ro_fwd->ro_rt->rt_ifa); 759f9e354dfSJulian Elischer ifp = ro_fwd->ro_rt->rt_ifp; 760f9e354dfSJulian Elischer ro_fwd->ro_rt->rt_use++; 761f9e354dfSJulian Elischer if (ro_fwd->ro_rt->rt_flags & RTF_GATEWAY) 762f9e354dfSJulian Elischer dst = (struct sockaddr_in *)ro_fwd->ro_rt->rt_gateway; 763f9e354dfSJulian Elischer if (ro_fwd->ro_rt->rt_flags & RTF_HOST) 764f9e354dfSJulian Elischer isbroadcast = 765f9e354dfSJulian Elischer (ro_fwd->ro_rt->rt_flags & RTF_BROADCAST); 766f9e354dfSJulian Elischer else 767f9e354dfSJulian Elischer isbroadcast = in_broadcast(dst->sin_addr, ifp); 768f9e354dfSJulian Elischer RTFREE(ro->ro_rt); 769f9e354dfSJulian Elischer ro->ro_rt = ro_fwd->ro_rt; 770f9e354dfSJulian Elischer dst = (struct sockaddr_in *)&ro_fwd->ro_dst; 771f9e354dfSJulian Elischer 772f9e354dfSJulian Elischer /* 773f9e354dfSJulian Elischer * If we added a default src ip earlier, 774f9e354dfSJulian Elischer * which would have been gotten from the-then 775f9e354dfSJulian Elischer * interface, do it again, from the new one. 776f9e354dfSJulian Elischer */ 777f9e354dfSJulian Elischer if (fwd_rewrite_src) 778f9e354dfSJulian Elischer ip->ip_src = IA_SIN(ia)->sin_addr; 779b715f178SLuigi Rizzo goto pass ; 780f9e354dfSJulian Elischer } 781f9e354dfSJulian Elischer #endif /* IPFIREWALL_FORWARD */ 782b715f178SLuigi Rizzo /* 783b715f178SLuigi Rizzo * if we get here, none of the above matches, and 784b715f178SLuigi Rizzo * we have to drop the pkt 785b715f178SLuigi Rizzo */ 786b715f178SLuigi Rizzo m_freem(m); 787b715f178SLuigi Rizzo error = EACCES; /* not sure this is the right error msg */ 788b715f178SLuigi Rizzo goto done; 78993e0e116SJulian Elischer } 790e7319babSPoul-Henning Kamp 791b715f178SLuigi Rizzo pass: 792206a3274SRuslan Ermilov m->m_pkthdr.csum_flags |= CSUM_IP; 793206a3274SRuslan Ermilov sw_csum = m->m_pkthdr.csum_flags & ~ifp->if_hwassist; 794db4f9cc7SJonathan Lemon if (sw_csum & CSUM_DELAY_DATA) { 795db4f9cc7SJonathan Lemon in_delayed_cksum(m); 796db4f9cc7SJonathan Lemon sw_csum &= ~CSUM_DELAY_DATA; 797db4f9cc7SJonathan Lemon } 798206a3274SRuslan Ermilov m->m_pkthdr.csum_flags &= ifp->if_hwassist; 799db4f9cc7SJonathan Lemon 800e7319babSPoul-Henning Kamp /* 801db4f9cc7SJonathan Lemon * If small enough for interface, or the interface will take 802db4f9cc7SJonathan Lemon * care of the fragmentation for us, can just send directly. 803df8bae1dSRodney W. Grimes */ 804db4f9cc7SJonathan Lemon if ((u_short)ip->ip_len <= ifp->if_mtu || 805db4f9cc7SJonathan Lemon ifp->if_hwassist & CSUM_FRAGMENT) { 80604287599SRuslan Ermilov HTONS(ip->ip_len); 80704287599SRuslan Ermilov HTONS(ip->ip_off); 808df8bae1dSRodney W. Grimes ip->ip_sum = 0; 809db4f9cc7SJonathan Lemon if (sw_csum & CSUM_DELAY_IP) { 8109c9137eaSGarrett Wollman if (ip->ip_vhl == IP_VHL_BORING) { 8119c9137eaSGarrett Wollman ip->ip_sum = in_cksum_hdr(ip); 8129c9137eaSGarrett Wollman } else { 813df8bae1dSRodney W. Grimes ip->ip_sum = in_cksum(m, hlen); 8149c9137eaSGarrett Wollman } 815db4f9cc7SJonathan Lemon } 8165da9f8faSJosef Karthauser 8175da9f8faSJosef Karthauser /* Record statistics for this interface address. */ 8185da9f8faSJosef Karthauser if (!(flags & IP_FORWARDING)) { 8195da9f8faSJosef Karthauser ia->ia_ifa.if_opackets++; 8205da9f8faSJosef Karthauser ia->ia_ifa.if_obytes += m->m_pkthdr.len; 8215da9f8faSJosef Karthauser } 8225da9f8faSJosef Karthauser 82333841545SHajimu UMEMOTO #ifdef IPSEC 82433841545SHajimu UMEMOTO /* clean ipsec history once it goes out of the node */ 82533841545SHajimu UMEMOTO ipsec_delaux(m); 82633841545SHajimu UMEMOTO #endif 82733841545SHajimu UMEMOTO 828df8bae1dSRodney W. Grimes error = (*ifp->if_output)(ifp, m, 829df8bae1dSRodney W. Grimes (struct sockaddr *)dst, ro->ro_rt); 830df8bae1dSRodney W. Grimes goto done; 831df8bae1dSRodney W. Grimes } 832df8bae1dSRodney W. Grimes /* 833df8bae1dSRodney W. Grimes * Too large for interface; fragment if possible. 834df8bae1dSRodney W. Grimes * Must be able to put at least 8 bytes per fragment. 835df8bae1dSRodney W. Grimes */ 836df8bae1dSRodney W. Grimes if (ip->ip_off & IP_DF) { 837df8bae1dSRodney W. Grimes error = EMSGSIZE; 8383d1f141bSGarrett Wollman /* 8393d1f141bSGarrett Wollman * This case can happen if the user changed the MTU 8403d1f141bSGarrett Wollman * of an interface after enabling IP on it. Because 8413d1f141bSGarrett Wollman * most netifs don't keep track of routes pointing to 8423d1f141bSGarrett Wollman * them, there is no way for one to update all its 8433d1f141bSGarrett Wollman * routes when the MTU is changed. 8443d1f141bSGarrett Wollman */ 8453d1f141bSGarrett Wollman if ((ro->ro_rt->rt_flags & (RTF_UP | RTF_HOST)) 8463d1f141bSGarrett Wollman && !(ro->ro_rt->rt_rmx.rmx_locks & RTV_MTU) 8473d1f141bSGarrett Wollman && (ro->ro_rt->rt_rmx.rmx_mtu > ifp->if_mtu)) { 8483d1f141bSGarrett Wollman ro->ro_rt->rt_rmx.rmx_mtu = ifp->if_mtu; 8493d1f141bSGarrett Wollman } 850df8bae1dSRodney W. Grimes ipstat.ips_cantfrag++; 851df8bae1dSRodney W. Grimes goto bad; 852df8bae1dSRodney W. Grimes } 853df8bae1dSRodney W. Grimes len = (ifp->if_mtu - hlen) &~ 7; 854df8bae1dSRodney W. Grimes if (len < 8) { 855df8bae1dSRodney W. Grimes error = EMSGSIZE; 856df8bae1dSRodney W. Grimes goto bad; 857df8bae1dSRodney W. Grimes } 858df8bae1dSRodney W. Grimes 859db4f9cc7SJonathan Lemon /* 860db4f9cc7SJonathan Lemon * if the interface will not calculate checksums on 861db4f9cc7SJonathan Lemon * fragmented packets, then do it here. 862db4f9cc7SJonathan Lemon */ 863db4f9cc7SJonathan Lemon if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA && 864db4f9cc7SJonathan Lemon (ifp->if_hwassist & CSUM_IP_FRAGS) == 0) { 865db4f9cc7SJonathan Lemon in_delayed_cksum(m); 866db4f9cc7SJonathan Lemon m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA; 867db4f9cc7SJonathan Lemon } 868db4f9cc7SJonathan Lemon 869df8bae1dSRodney W. Grimes { 870df8bae1dSRodney W. Grimes int mhlen, firstlen = len; 871df8bae1dSRodney W. Grimes struct mbuf **mnext = &m->m_nextpkt; 872db4f9cc7SJonathan Lemon int nfrags = 1; 873df8bae1dSRodney W. Grimes 874df8bae1dSRodney W. Grimes /* 875df8bae1dSRodney W. Grimes * Loop through length of segment after first fragment, 876df8bae1dSRodney W. Grimes * make new header and copy data of each part and link onto chain. 877df8bae1dSRodney W. Grimes */ 878df8bae1dSRodney W. Grimes m0 = m; 879df8bae1dSRodney W. Grimes mhlen = sizeof (struct ip); 880df8bae1dSRodney W. Grimes for (off = hlen + len; off < (u_short)ip->ip_len; off += len) { 881df8bae1dSRodney W. Grimes MGETHDR(m, M_DONTWAIT, MT_HEADER); 882df8bae1dSRodney W. Grimes if (m == 0) { 883df8bae1dSRodney W. Grimes error = ENOBUFS; 884df8bae1dSRodney W. Grimes ipstat.ips_odropped++; 885df8bae1dSRodney W. Grimes goto sendorfree; 886df8bae1dSRodney W. Grimes } 887db4f9cc7SJonathan Lemon m->m_flags |= (m0->m_flags & M_MCAST) | M_FRAG; 888df8bae1dSRodney W. Grimes m->m_data += max_linkhdr; 889df8bae1dSRodney W. Grimes mhip = mtod(m, struct ip *); 890df8bae1dSRodney W. Grimes *mhip = *ip; 891df8bae1dSRodney W. Grimes if (hlen > sizeof (struct ip)) { 892df8bae1dSRodney W. Grimes mhlen = ip_optcopy(ip, mhip) + sizeof (struct ip); 8939c9137eaSGarrett Wollman mhip->ip_vhl = IP_MAKE_VHL(IPVERSION, mhlen >> 2); 894df8bae1dSRodney W. Grimes } 895df8bae1dSRodney W. Grimes m->m_len = mhlen; 896cc22c7a7SRuslan Ermilov mhip->ip_off = ((off - hlen) >> 3) + ip->ip_off; 897df8bae1dSRodney W. Grimes if (off + len >= (u_short)ip->ip_len) 898df8bae1dSRodney W. Grimes len = (u_short)ip->ip_len - off; 899df8bae1dSRodney W. Grimes else 900df8bae1dSRodney W. Grimes mhip->ip_off |= IP_MF; 901df8bae1dSRodney W. Grimes mhip->ip_len = htons((u_short)(len + mhlen)); 902df8bae1dSRodney W. Grimes m->m_next = m_copy(m0, off, len); 903df8bae1dSRodney W. Grimes if (m->m_next == 0) { 904df8bae1dSRodney W. Grimes (void) m_free(m); 905df8bae1dSRodney W. Grimes error = ENOBUFS; /* ??? */ 906df8bae1dSRodney W. Grimes ipstat.ips_odropped++; 907df8bae1dSRodney W. Grimes goto sendorfree; 908df8bae1dSRodney W. Grimes } 909df8bae1dSRodney W. Grimes m->m_pkthdr.len = mhlen + len; 910df8bae1dSRodney W. Grimes m->m_pkthdr.rcvif = (struct ifnet *)0; 911db4f9cc7SJonathan Lemon m->m_pkthdr.csum_flags = m0->m_pkthdr.csum_flags; 91204287599SRuslan Ermilov HTONS(mhip->ip_off); 913df8bae1dSRodney W. Grimes mhip->ip_sum = 0; 914db4f9cc7SJonathan Lemon if (sw_csum & CSUM_DELAY_IP) { 9159c9137eaSGarrett Wollman if (mhip->ip_vhl == IP_VHL_BORING) { 916e2184122SBruce Evans mhip->ip_sum = in_cksum_hdr(mhip); 9179c9137eaSGarrett Wollman } else { 918df8bae1dSRodney W. Grimes mhip->ip_sum = in_cksum(m, mhlen); 9199c9137eaSGarrett Wollman } 920db4f9cc7SJonathan Lemon } 921df8bae1dSRodney W. Grimes *mnext = m; 922df8bae1dSRodney W. Grimes mnext = &m->m_nextpkt; 923db4f9cc7SJonathan Lemon nfrags++; 924df8bae1dSRodney W. Grimes } 925db4f9cc7SJonathan Lemon ipstat.ips_ofragments += nfrags; 926db4f9cc7SJonathan Lemon 927db4f9cc7SJonathan Lemon /* set first/last markers for fragment chain */ 928db4f9cc7SJonathan Lemon m->m_flags |= M_LASTFRAG; 929db4f9cc7SJonathan Lemon m0->m_flags |= M_FIRSTFRAG | M_FRAG; 930db4f9cc7SJonathan Lemon m0->m_pkthdr.csum_data = nfrags; 931db4f9cc7SJonathan Lemon 932df8bae1dSRodney W. Grimes /* 933df8bae1dSRodney W. Grimes * Update first fragment by trimming what's been copied out 934df8bae1dSRodney W. Grimes * and updating header, then send each fragment (in order). 935df8bae1dSRodney W. Grimes */ 936df8bae1dSRodney W. Grimes m = m0; 937df8bae1dSRodney W. Grimes m_adj(m, hlen + firstlen - (u_short)ip->ip_len); 938df8bae1dSRodney W. Grimes m->m_pkthdr.len = hlen + firstlen; 939df8bae1dSRodney W. Grimes ip->ip_len = htons((u_short)m->m_pkthdr.len); 94004287599SRuslan Ermilov ip->ip_off |= IP_MF; 94104287599SRuslan Ermilov HTONS(ip->ip_off); 942df8bae1dSRodney W. Grimes ip->ip_sum = 0; 943db4f9cc7SJonathan Lemon if (sw_csum & CSUM_DELAY_IP) { 9449c9137eaSGarrett Wollman if (ip->ip_vhl == IP_VHL_BORING) { 9459c9137eaSGarrett Wollman ip->ip_sum = in_cksum_hdr(ip); 9469c9137eaSGarrett Wollman } else { 947df8bae1dSRodney W. Grimes ip->ip_sum = in_cksum(m, hlen); 9489c9137eaSGarrett Wollman } 949db4f9cc7SJonathan Lemon } 950df8bae1dSRodney W. Grimes sendorfree: 951df8bae1dSRodney W. Grimes for (m = m0; m; m = m0) { 952df8bae1dSRodney W. Grimes m0 = m->m_nextpkt; 953df8bae1dSRodney W. Grimes m->m_nextpkt = 0; 95433841545SHajimu UMEMOTO #ifdef IPSEC 95533841545SHajimu UMEMOTO /* clean ipsec history once it goes out of the node */ 95633841545SHajimu UMEMOTO ipsec_delaux(m); 95733841545SHajimu UMEMOTO #endif 958fe937674SJosef Karthauser if (error == 0) { 959fe937674SJosef Karthauser /* Record statistics for this interface address. */ 960fe937674SJosef Karthauser ia->ia_ifa.if_opackets++; 961fe937674SJosef Karthauser ia->ia_ifa.if_obytes += m->m_pkthdr.len; 962fe937674SJosef Karthauser 963df8bae1dSRodney W. Grimes error = (*ifp->if_output)(ifp, m, 964df8bae1dSRodney W. Grimes (struct sockaddr *)dst, ro->ro_rt); 965fe937674SJosef Karthauser } else 966df8bae1dSRodney W. Grimes m_freem(m); 967df8bae1dSRodney W. Grimes } 968df8bae1dSRodney W. Grimes 969df8bae1dSRodney W. Grimes if (error == 0) 970df8bae1dSRodney W. Grimes ipstat.ips_fragmented++; 971df8bae1dSRodney W. Grimes } 972df8bae1dSRodney W. Grimes done: 9736a800098SYoshinobu Inoue #ifdef IPSEC 9746a800098SYoshinobu Inoue if (ro == &iproute && ro->ro_rt) { 9756a800098SYoshinobu Inoue RTFREE(ro->ro_rt); 9766a800098SYoshinobu Inoue ro->ro_rt = NULL; 9776a800098SYoshinobu Inoue } 9786a800098SYoshinobu Inoue if (sp != NULL) { 9796a800098SYoshinobu Inoue KEYDEBUG(KEYDEBUG_IPSEC_STAMP, 9806a800098SYoshinobu Inoue printf("DP ip_output call free SP:%p\n", sp)); 9816a800098SYoshinobu Inoue key_freesp(sp); 9826a800098SYoshinobu Inoue } 9836a800098SYoshinobu Inoue #endif /* IPSEC */ 984df8bae1dSRodney W. Grimes return (error); 985df8bae1dSRodney W. Grimes bad: 986df8bae1dSRodney W. Grimes m_freem(m0); 987df8bae1dSRodney W. Grimes goto done; 988df8bae1dSRodney W. Grimes } 989df8bae1dSRodney W. Grimes 9901c238475SJonathan Lemon void 991db4f9cc7SJonathan Lemon in_delayed_cksum(struct mbuf *m) 992db4f9cc7SJonathan Lemon { 993db4f9cc7SJonathan Lemon struct ip *ip; 994db4f9cc7SJonathan Lemon u_short csum, offset; 995db4f9cc7SJonathan Lemon 996db4f9cc7SJonathan Lemon ip = mtod(m, struct ip *); 997db4f9cc7SJonathan Lemon offset = IP_VHL_HL(ip->ip_vhl) << 2 ; 998db4f9cc7SJonathan Lemon csum = in_cksum_skip(m, ip->ip_len, offset); 999206a3274SRuslan Ermilov if (m->m_pkthdr.csum_flags & CSUM_UDP && csum == 0) 1000206a3274SRuslan Ermilov csum = 0xffff; 1001db4f9cc7SJonathan Lemon offset += m->m_pkthdr.csum_data; /* checksum offset */ 1002db4f9cc7SJonathan Lemon 1003db4f9cc7SJonathan Lemon if (offset + sizeof(u_short) > m->m_len) { 1004db4f9cc7SJonathan Lemon printf("delayed m_pullup, m->len: %d off: %d p: %d\n", 1005db4f9cc7SJonathan Lemon m->m_len, offset, ip->ip_p); 1006db4f9cc7SJonathan Lemon /* 1007db4f9cc7SJonathan Lemon * XXX 1008db4f9cc7SJonathan Lemon * this shouldn't happen, but if it does, the 1009db4f9cc7SJonathan Lemon * correct behavior may be to insert the checksum 1010db4f9cc7SJonathan Lemon * in the existing chain instead of rearranging it. 1011db4f9cc7SJonathan Lemon */ 1012db4f9cc7SJonathan Lemon m = m_pullup(m, offset + sizeof(u_short)); 1013db4f9cc7SJonathan Lemon } 1014db4f9cc7SJonathan Lemon *(u_short *)(m->m_data + offset) = csum; 1015db4f9cc7SJonathan Lemon } 1016db4f9cc7SJonathan Lemon 1017df8bae1dSRodney W. Grimes /* 1018df8bae1dSRodney W. Grimes * Insert IP options into preformed packet. 1019df8bae1dSRodney W. Grimes * Adjust IP destination as required for IP source routing, 1020df8bae1dSRodney W. Grimes * as indicated by a non-zero in_addr at the start of the options. 1021072b9b24SPaul Traina * 1022072b9b24SPaul Traina * XXX This routine assumes that the packet has no options in place. 1023df8bae1dSRodney W. Grimes */ 1024df8bae1dSRodney W. Grimes static struct mbuf * 1025df8bae1dSRodney W. Grimes ip_insertoptions(m, opt, phlen) 1026df8bae1dSRodney W. Grimes register struct mbuf *m; 1027df8bae1dSRodney W. Grimes struct mbuf *opt; 1028df8bae1dSRodney W. Grimes int *phlen; 1029df8bae1dSRodney W. Grimes { 1030df8bae1dSRodney W. Grimes register struct ipoption *p = mtod(opt, struct ipoption *); 1031df8bae1dSRodney W. Grimes struct mbuf *n; 1032df8bae1dSRodney W. Grimes register struct ip *ip = mtod(m, struct ip *); 1033df8bae1dSRodney W. Grimes unsigned optlen; 1034df8bae1dSRodney W. Grimes 1035df8bae1dSRodney W. Grimes optlen = opt->m_len - sizeof(p->ipopt_dst); 1036df8bae1dSRodney W. Grimes if (optlen + (u_short)ip->ip_len > IP_MAXPACKET) 1037df8bae1dSRodney W. Grimes return (m); /* XXX should fail */ 1038df8bae1dSRodney W. Grimes if (p->ipopt_dst.s_addr) 1039df8bae1dSRodney W. Grimes ip->ip_dst = p->ipopt_dst; 1040df8bae1dSRodney W. Grimes if (m->m_flags & M_EXT || m->m_data - optlen < m->m_pktdat) { 1041df8bae1dSRodney W. Grimes MGETHDR(n, M_DONTWAIT, MT_HEADER); 1042df8bae1dSRodney W. Grimes if (n == 0) 1043df8bae1dSRodney W. Grimes return (m); 10445db1e34eSRuslan Ermilov n->m_pkthdr.rcvif = (struct ifnet *)0; 1045df8bae1dSRodney W. Grimes n->m_pkthdr.len = m->m_pkthdr.len + optlen; 1046df8bae1dSRodney W. Grimes m->m_len -= sizeof(struct ip); 1047df8bae1dSRodney W. Grimes m->m_data += sizeof(struct ip); 1048df8bae1dSRodney W. Grimes n->m_next = m; 1049df8bae1dSRodney W. Grimes m = n; 1050df8bae1dSRodney W. Grimes m->m_len = optlen + sizeof(struct ip); 1051df8bae1dSRodney W. Grimes m->m_data += max_linkhdr; 105294a5d9b6SDavid Greenman (void)memcpy(mtod(m, void *), ip, sizeof(struct ip)); 1053df8bae1dSRodney W. Grimes } else { 1054df8bae1dSRodney W. Grimes m->m_data -= optlen; 1055df8bae1dSRodney W. Grimes m->m_len += optlen; 1056df8bae1dSRodney W. Grimes m->m_pkthdr.len += optlen; 1057df8bae1dSRodney W. Grimes ovbcopy((caddr_t)ip, mtod(m, caddr_t), sizeof(struct ip)); 1058df8bae1dSRodney W. Grimes } 1059df8bae1dSRodney W. Grimes ip = mtod(m, struct ip *); 10600453d3cbSBruce Evans bcopy(p->ipopt_list, ip + 1, optlen); 1061df8bae1dSRodney W. Grimes *phlen = sizeof(struct ip) + optlen; 10629c9137eaSGarrett Wollman ip->ip_vhl = IP_MAKE_VHL(IPVERSION, *phlen >> 2); 1063df8bae1dSRodney W. Grimes ip->ip_len += optlen; 1064df8bae1dSRodney W. Grimes return (m); 1065df8bae1dSRodney W. Grimes } 1066df8bae1dSRodney W. Grimes 1067df8bae1dSRodney W. Grimes /* 1068df8bae1dSRodney W. Grimes * Copy options from ip to jp, 1069df8bae1dSRodney W. Grimes * omitting those not copied during fragmentation. 1070df8bae1dSRodney W. Grimes */ 1071beec8214SDarren Reed int 1072df8bae1dSRodney W. Grimes ip_optcopy(ip, jp) 1073df8bae1dSRodney W. Grimes struct ip *ip, *jp; 1074df8bae1dSRodney W. Grimes { 1075df8bae1dSRodney W. Grimes register u_char *cp, *dp; 1076df8bae1dSRodney W. Grimes int opt, optlen, cnt; 1077df8bae1dSRodney W. Grimes 1078df8bae1dSRodney W. Grimes cp = (u_char *)(ip + 1); 1079df8bae1dSRodney W. Grimes dp = (u_char *)(jp + 1); 10809c9137eaSGarrett Wollman cnt = (IP_VHL_HL(ip->ip_vhl) << 2) - sizeof (struct ip); 1081df8bae1dSRodney W. Grimes for (; cnt > 0; cnt -= optlen, cp += optlen) { 1082df8bae1dSRodney W. Grimes opt = cp[0]; 1083df8bae1dSRodney W. Grimes if (opt == IPOPT_EOL) 1084df8bae1dSRodney W. Grimes break; 1085df8bae1dSRodney W. Grimes if (opt == IPOPT_NOP) { 1086df8bae1dSRodney W. Grimes /* Preserve for IP mcast tunnel's LSRR alignment. */ 1087df8bae1dSRodney W. Grimes *dp++ = IPOPT_NOP; 1088df8bae1dSRodney W. Grimes optlen = 1; 1089df8bae1dSRodney W. Grimes continue; 1090686cdd19SJun-ichiro itojun Hagino } 1091686cdd19SJun-ichiro itojun Hagino #ifdef DIAGNOSTIC 1092686cdd19SJun-ichiro itojun Hagino if (cnt < IPOPT_OLEN + sizeof(*cp)) 1093686cdd19SJun-ichiro itojun Hagino panic("malformed IPv4 option passed to ip_optcopy"); 1094686cdd19SJun-ichiro itojun Hagino #endif 1095df8bae1dSRodney W. Grimes optlen = cp[IPOPT_OLEN]; 1096686cdd19SJun-ichiro itojun Hagino #ifdef DIAGNOSTIC 1097686cdd19SJun-ichiro itojun Hagino if (optlen < IPOPT_OLEN + sizeof(*cp) || optlen > cnt) 1098686cdd19SJun-ichiro itojun Hagino panic("malformed IPv4 option passed to ip_optcopy"); 1099686cdd19SJun-ichiro itojun Hagino #endif 1100df8bae1dSRodney W. Grimes /* bogus lengths should have been caught by ip_dooptions */ 1101df8bae1dSRodney W. Grimes if (optlen > cnt) 1102df8bae1dSRodney W. Grimes optlen = cnt; 1103df8bae1dSRodney W. Grimes if (IPOPT_COPIED(opt)) { 11040453d3cbSBruce Evans bcopy(cp, dp, optlen); 1105df8bae1dSRodney W. Grimes dp += optlen; 1106df8bae1dSRodney W. Grimes } 1107df8bae1dSRodney W. Grimes } 1108df8bae1dSRodney W. Grimes for (optlen = dp - (u_char *)(jp+1); optlen & 0x3; optlen++) 1109df8bae1dSRodney W. Grimes *dp++ = IPOPT_EOL; 1110df8bae1dSRodney W. Grimes return (optlen); 1111df8bae1dSRodney W. Grimes } 1112df8bae1dSRodney W. Grimes 1113df8bae1dSRodney W. Grimes /* 1114df8bae1dSRodney W. Grimes * IP socket option processing. 1115df8bae1dSRodney W. Grimes */ 1116df8bae1dSRodney W. Grimes int 1117cfe8b629SGarrett Wollman ip_ctloutput(so, sopt) 1118df8bae1dSRodney W. Grimes struct socket *so; 1119cfe8b629SGarrett Wollman struct sockopt *sopt; 1120df8bae1dSRodney W. Grimes { 1121cfe8b629SGarrett Wollman struct inpcb *inp = sotoinpcb(so); 1122cfe8b629SGarrett Wollman int error, optval; 1123df8bae1dSRodney W. Grimes 1124cfe8b629SGarrett Wollman error = optval = 0; 1125cfe8b629SGarrett Wollman if (sopt->sopt_level != IPPROTO_IP) { 1126cfe8b629SGarrett Wollman return (EINVAL); 1127cfe8b629SGarrett Wollman } 1128df8bae1dSRodney W. Grimes 1129cfe8b629SGarrett Wollman switch (sopt->sopt_dir) { 1130cfe8b629SGarrett Wollman case SOPT_SET: 1131cfe8b629SGarrett Wollman switch (sopt->sopt_name) { 1132df8bae1dSRodney W. Grimes case IP_OPTIONS: 1133df8bae1dSRodney W. Grimes #ifdef notyet 1134df8bae1dSRodney W. Grimes case IP_RETOPTS: 1135df8bae1dSRodney W. Grimes #endif 1136cfe8b629SGarrett Wollman { 1137cfe8b629SGarrett Wollman struct mbuf *m; 1138cfe8b629SGarrett Wollman if (sopt->sopt_valsize > MLEN) { 1139cfe8b629SGarrett Wollman error = EMSGSIZE; 1140cfe8b629SGarrett Wollman break; 1141cfe8b629SGarrett Wollman } 11422a0c503eSBosko Milekic MGET(m, sopt->sopt_p ? M_TRYWAIT : M_DONTWAIT, MT_HEADER); 1143cfe8b629SGarrett Wollman if (m == 0) { 1144cfe8b629SGarrett Wollman error = ENOBUFS; 1145cfe8b629SGarrett Wollman break; 1146cfe8b629SGarrett Wollman } 1147cfe8b629SGarrett Wollman m->m_len = sopt->sopt_valsize; 1148cfe8b629SGarrett Wollman error = sooptcopyin(sopt, mtod(m, char *), m->m_len, 1149cfe8b629SGarrett Wollman m->m_len); 1150cfe8b629SGarrett Wollman 1151cfe8b629SGarrett Wollman return (ip_pcbopts(sopt->sopt_name, &inp->inp_options, 1152cfe8b629SGarrett Wollman m)); 1153cfe8b629SGarrett Wollman } 1154df8bae1dSRodney W. Grimes 1155df8bae1dSRodney W. Grimes case IP_TOS: 1156df8bae1dSRodney W. Grimes case IP_TTL: 1157df8bae1dSRodney W. Grimes case IP_RECVOPTS: 1158df8bae1dSRodney W. Grimes case IP_RECVRETOPTS: 1159df8bae1dSRodney W. Grimes case IP_RECVDSTADDR: 116082c23ebaSBill Fenner case IP_RECVIF: 11616a800098SYoshinobu Inoue #if defined(NFAITH) && NFAITH > 0 11626a800098SYoshinobu Inoue case IP_FAITH: 11636a800098SYoshinobu Inoue #endif 1164cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &optval, sizeof optval, 1165cfe8b629SGarrett Wollman sizeof optval); 1166cfe8b629SGarrett Wollman if (error) 1167cfe8b629SGarrett Wollman break; 1168df8bae1dSRodney W. Grimes 1169cfe8b629SGarrett Wollman switch (sopt->sopt_name) { 1170df8bae1dSRodney W. Grimes case IP_TOS: 1171ca98b82cSDavid Greenman inp->inp_ip_tos = optval; 1172df8bae1dSRodney W. Grimes break; 1173df8bae1dSRodney W. Grimes 1174df8bae1dSRodney W. Grimes case IP_TTL: 1175ca98b82cSDavid Greenman inp->inp_ip_ttl = optval; 1176df8bae1dSRodney W. Grimes break; 1177df8bae1dSRodney W. Grimes #define OPTSET(bit) \ 1178df8bae1dSRodney W. Grimes if (optval) \ 1179df8bae1dSRodney W. Grimes inp->inp_flags |= bit; \ 1180df8bae1dSRodney W. Grimes else \ 1181df8bae1dSRodney W. Grimes inp->inp_flags &= ~bit; 1182df8bae1dSRodney W. Grimes 1183df8bae1dSRodney W. Grimes case IP_RECVOPTS: 1184df8bae1dSRodney W. Grimes OPTSET(INP_RECVOPTS); 1185df8bae1dSRodney W. Grimes break; 1186df8bae1dSRodney W. Grimes 1187df8bae1dSRodney W. Grimes case IP_RECVRETOPTS: 1188df8bae1dSRodney W. Grimes OPTSET(INP_RECVRETOPTS); 1189df8bae1dSRodney W. Grimes break; 1190df8bae1dSRodney W. Grimes 1191df8bae1dSRodney W. Grimes case IP_RECVDSTADDR: 1192df8bae1dSRodney W. Grimes OPTSET(INP_RECVDSTADDR); 1193df8bae1dSRodney W. Grimes break; 119482c23ebaSBill Fenner 119582c23ebaSBill Fenner case IP_RECVIF: 119682c23ebaSBill Fenner OPTSET(INP_RECVIF); 119782c23ebaSBill Fenner break; 11986a800098SYoshinobu Inoue 11996a800098SYoshinobu Inoue #if defined(NFAITH) && NFAITH > 0 12006a800098SYoshinobu Inoue case IP_FAITH: 12016a800098SYoshinobu Inoue OPTSET(INP_FAITH); 12026a800098SYoshinobu Inoue break; 12036a800098SYoshinobu Inoue #endif 1204df8bae1dSRodney W. Grimes } 1205df8bae1dSRodney W. Grimes break; 1206df8bae1dSRodney W. Grimes #undef OPTSET 1207df8bae1dSRodney W. Grimes 1208df8bae1dSRodney W. Grimes case IP_MULTICAST_IF: 1209f0068c4aSGarrett Wollman case IP_MULTICAST_VIF: 1210df8bae1dSRodney W. Grimes case IP_MULTICAST_TTL: 1211df8bae1dSRodney W. Grimes case IP_MULTICAST_LOOP: 1212df8bae1dSRodney W. Grimes case IP_ADD_MEMBERSHIP: 1213df8bae1dSRodney W. Grimes case IP_DROP_MEMBERSHIP: 1214cfe8b629SGarrett Wollman error = ip_setmoptions(sopt, &inp->inp_moptions); 1215df8bae1dSRodney W. Grimes break; 1216df8bae1dSRodney W. Grimes 121733b3ac06SPeter Wemm case IP_PORTRANGE: 1218cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &optval, sizeof optval, 1219cfe8b629SGarrett Wollman sizeof optval); 1220cfe8b629SGarrett Wollman if (error) 1221cfe8b629SGarrett Wollman break; 122233b3ac06SPeter Wemm 122333b3ac06SPeter Wemm switch (optval) { 122433b3ac06SPeter Wemm case IP_PORTRANGE_DEFAULT: 122533b3ac06SPeter Wemm inp->inp_flags &= ~(INP_LOWPORT); 122633b3ac06SPeter Wemm inp->inp_flags &= ~(INP_HIGHPORT); 122733b3ac06SPeter Wemm break; 122833b3ac06SPeter Wemm 122933b3ac06SPeter Wemm case IP_PORTRANGE_HIGH: 123033b3ac06SPeter Wemm inp->inp_flags &= ~(INP_LOWPORT); 123133b3ac06SPeter Wemm inp->inp_flags |= INP_HIGHPORT; 123233b3ac06SPeter Wemm break; 123333b3ac06SPeter Wemm 123433b3ac06SPeter Wemm case IP_PORTRANGE_LOW: 123533b3ac06SPeter Wemm inp->inp_flags &= ~(INP_HIGHPORT); 123633b3ac06SPeter Wemm inp->inp_flags |= INP_LOWPORT; 123733b3ac06SPeter Wemm break; 123833b3ac06SPeter Wemm 123933b3ac06SPeter Wemm default: 124033b3ac06SPeter Wemm error = EINVAL; 124133b3ac06SPeter Wemm break; 124233b3ac06SPeter Wemm } 1243ce8c72b1SPeter Wemm break; 124433b3ac06SPeter Wemm 12456a800098SYoshinobu Inoue #ifdef IPSEC 12466a800098SYoshinobu Inoue case IP_IPSEC_POLICY: 12476a800098SYoshinobu Inoue { 12486a800098SYoshinobu Inoue caddr_t req; 1249686cdd19SJun-ichiro itojun Hagino size_t len = 0; 12506a800098SYoshinobu Inoue int priv; 12516a800098SYoshinobu Inoue struct mbuf *m; 12526a800098SYoshinobu Inoue int optname; 12536a800098SYoshinobu Inoue 12546a800098SYoshinobu Inoue if ((error = soopt_getm(sopt, &m)) != 0) /* XXX */ 12556a800098SYoshinobu Inoue break; 12566a800098SYoshinobu Inoue if ((error = soopt_mcopyin(sopt, m)) != 0) /* XXX */ 12576a800098SYoshinobu Inoue break; 12586a800098SYoshinobu Inoue priv = (sopt->sopt_p != NULL && 12596a800098SYoshinobu Inoue suser(sopt->sopt_p) != 0) ? 0 : 1; 12606a800098SYoshinobu Inoue req = mtod(m, caddr_t); 1261686cdd19SJun-ichiro itojun Hagino len = m->m_len; 12626a800098SYoshinobu Inoue optname = sopt->sopt_name; 1263686cdd19SJun-ichiro itojun Hagino error = ipsec4_set_policy(inp, optname, req, len, priv); 12646a800098SYoshinobu Inoue m_freem(m); 12656a800098SYoshinobu Inoue break; 12666a800098SYoshinobu Inoue } 12676a800098SYoshinobu Inoue #endif /*IPSEC*/ 12686a800098SYoshinobu Inoue 1269df8bae1dSRodney W. Grimes default: 1270df8bae1dSRodney W. Grimes error = ENOPROTOOPT; 1271df8bae1dSRodney W. Grimes break; 1272df8bae1dSRodney W. Grimes } 1273df8bae1dSRodney W. Grimes break; 1274df8bae1dSRodney W. Grimes 1275cfe8b629SGarrett Wollman case SOPT_GET: 1276cfe8b629SGarrett Wollman switch (sopt->sopt_name) { 1277df8bae1dSRodney W. Grimes case IP_OPTIONS: 1278df8bae1dSRodney W. Grimes case IP_RETOPTS: 1279cfe8b629SGarrett Wollman if (inp->inp_options) 1280cfe8b629SGarrett Wollman error = sooptcopyout(sopt, 1281cfe8b629SGarrett Wollman mtod(inp->inp_options, 1282cfe8b629SGarrett Wollman char *), 1283cfe8b629SGarrett Wollman inp->inp_options->m_len); 1284cfe8b629SGarrett Wollman else 1285cfe8b629SGarrett Wollman sopt->sopt_valsize = 0; 1286df8bae1dSRodney W. Grimes break; 1287df8bae1dSRodney W. Grimes 1288df8bae1dSRodney W. Grimes case IP_TOS: 1289df8bae1dSRodney W. Grimes case IP_TTL: 1290df8bae1dSRodney W. Grimes case IP_RECVOPTS: 1291df8bae1dSRodney W. Grimes case IP_RECVRETOPTS: 1292df8bae1dSRodney W. Grimes case IP_RECVDSTADDR: 129382c23ebaSBill Fenner case IP_RECVIF: 1294cfe8b629SGarrett Wollman case IP_PORTRANGE: 12956a800098SYoshinobu Inoue #if defined(NFAITH) && NFAITH > 0 12966a800098SYoshinobu Inoue case IP_FAITH: 12976a800098SYoshinobu Inoue #endif 1298cfe8b629SGarrett Wollman switch (sopt->sopt_name) { 1299df8bae1dSRodney W. Grimes 1300df8bae1dSRodney W. Grimes case IP_TOS: 1301ca98b82cSDavid Greenman optval = inp->inp_ip_tos; 1302df8bae1dSRodney W. Grimes break; 1303df8bae1dSRodney W. Grimes 1304df8bae1dSRodney W. Grimes case IP_TTL: 1305ca98b82cSDavid Greenman optval = inp->inp_ip_ttl; 1306df8bae1dSRodney W. Grimes break; 1307df8bae1dSRodney W. Grimes 1308df8bae1dSRodney W. Grimes #define OPTBIT(bit) (inp->inp_flags & bit ? 1 : 0) 1309df8bae1dSRodney W. Grimes 1310df8bae1dSRodney W. Grimes case IP_RECVOPTS: 1311df8bae1dSRodney W. Grimes optval = OPTBIT(INP_RECVOPTS); 1312df8bae1dSRodney W. Grimes break; 1313df8bae1dSRodney W. Grimes 1314df8bae1dSRodney W. Grimes case IP_RECVRETOPTS: 1315df8bae1dSRodney W. Grimes optval = OPTBIT(INP_RECVRETOPTS); 1316df8bae1dSRodney W. Grimes break; 1317df8bae1dSRodney W. Grimes 1318df8bae1dSRodney W. Grimes case IP_RECVDSTADDR: 1319df8bae1dSRodney W. Grimes optval = OPTBIT(INP_RECVDSTADDR); 1320df8bae1dSRodney W. Grimes break; 132182c23ebaSBill Fenner 132282c23ebaSBill Fenner case IP_RECVIF: 132382c23ebaSBill Fenner optval = OPTBIT(INP_RECVIF); 132482c23ebaSBill Fenner break; 1325cfe8b629SGarrett Wollman 1326cfe8b629SGarrett Wollman case IP_PORTRANGE: 1327cfe8b629SGarrett Wollman if (inp->inp_flags & INP_HIGHPORT) 1328cfe8b629SGarrett Wollman optval = IP_PORTRANGE_HIGH; 1329cfe8b629SGarrett Wollman else if (inp->inp_flags & INP_LOWPORT) 1330cfe8b629SGarrett Wollman optval = IP_PORTRANGE_LOW; 1331cfe8b629SGarrett Wollman else 1332cfe8b629SGarrett Wollman optval = 0; 1333cfe8b629SGarrett Wollman break; 13346a800098SYoshinobu Inoue 13356a800098SYoshinobu Inoue #if defined(NFAITH) && NFAITH > 0 13366a800098SYoshinobu Inoue case IP_FAITH: 13376a800098SYoshinobu Inoue optval = OPTBIT(INP_FAITH); 13386a800098SYoshinobu Inoue break; 13396a800098SYoshinobu Inoue #endif 1340df8bae1dSRodney W. Grimes } 1341cfe8b629SGarrett Wollman error = sooptcopyout(sopt, &optval, sizeof optval); 1342df8bae1dSRodney W. Grimes break; 1343df8bae1dSRodney W. Grimes 1344df8bae1dSRodney W. Grimes case IP_MULTICAST_IF: 1345f0068c4aSGarrett Wollman case IP_MULTICAST_VIF: 1346df8bae1dSRodney W. Grimes case IP_MULTICAST_TTL: 1347df8bae1dSRodney W. Grimes case IP_MULTICAST_LOOP: 1348df8bae1dSRodney W. Grimes case IP_ADD_MEMBERSHIP: 1349df8bae1dSRodney W. Grimes case IP_DROP_MEMBERSHIP: 1350cfe8b629SGarrett Wollman error = ip_getmoptions(sopt, inp->inp_moptions); 135133b3ac06SPeter Wemm break; 135233b3ac06SPeter Wemm 13536a800098SYoshinobu Inoue #ifdef IPSEC 13546a800098SYoshinobu Inoue case IP_IPSEC_POLICY: 13556a800098SYoshinobu Inoue { 1356f63e7634SYoshinobu Inoue struct mbuf *m = NULL; 13576a800098SYoshinobu Inoue caddr_t req = NULL; 1358686cdd19SJun-ichiro itojun Hagino size_t len = 0; 13596a800098SYoshinobu Inoue 1360686cdd19SJun-ichiro itojun Hagino if (m != 0) { 13616a800098SYoshinobu Inoue req = mtod(m, caddr_t); 1362686cdd19SJun-ichiro itojun Hagino len = m->m_len; 1363686cdd19SJun-ichiro itojun Hagino } 1364686cdd19SJun-ichiro itojun Hagino error = ipsec4_get_policy(sotoinpcb(so), req, len, &m); 13656a800098SYoshinobu Inoue if (error == 0) 13666a800098SYoshinobu Inoue error = soopt_mcopyout(sopt, m); /* XXX */ 1367f63e7634SYoshinobu Inoue if (error == 0) 13686a800098SYoshinobu Inoue m_freem(m); 13696a800098SYoshinobu Inoue break; 13706a800098SYoshinobu Inoue } 13716a800098SYoshinobu Inoue #endif /*IPSEC*/ 13726a800098SYoshinobu Inoue 1373df8bae1dSRodney W. Grimes default: 1374df8bae1dSRodney W. Grimes error = ENOPROTOOPT; 1375df8bae1dSRodney W. Grimes break; 1376df8bae1dSRodney W. Grimes } 1377df8bae1dSRodney W. Grimes break; 1378df8bae1dSRodney W. Grimes } 1379df8bae1dSRodney W. Grimes return (error); 1380df8bae1dSRodney W. Grimes } 1381df8bae1dSRodney W. Grimes 1382df8bae1dSRodney W. Grimes /* 1383df8bae1dSRodney W. Grimes * Set up IP options in pcb for insertion in output packets. 1384df8bae1dSRodney W. Grimes * Store in mbuf with pointer in pcbopt, adding pseudo-option 1385df8bae1dSRodney W. Grimes * with destination address if source routed. 1386df8bae1dSRodney W. Grimes */ 13870312fbe9SPoul-Henning Kamp static int 1388df8bae1dSRodney W. Grimes ip_pcbopts(optname, pcbopt, m) 1389df8bae1dSRodney W. Grimes int optname; 1390df8bae1dSRodney W. Grimes struct mbuf **pcbopt; 1391df8bae1dSRodney W. Grimes register struct mbuf *m; 1392df8bae1dSRodney W. Grimes { 1393d68fa50cSBruce Evans register int cnt, optlen; 1394df8bae1dSRodney W. Grimes register u_char *cp; 1395df8bae1dSRodney W. Grimes u_char opt; 1396df8bae1dSRodney W. Grimes 1397df8bae1dSRodney W. Grimes /* turn off any old options */ 1398df8bae1dSRodney W. Grimes if (*pcbopt) 1399df8bae1dSRodney W. Grimes (void)m_free(*pcbopt); 1400df8bae1dSRodney W. Grimes *pcbopt = 0; 1401df8bae1dSRodney W. Grimes if (m == (struct mbuf *)0 || m->m_len == 0) { 1402df8bae1dSRodney W. Grimes /* 1403df8bae1dSRodney W. Grimes * Only turning off any previous options. 1404df8bae1dSRodney W. Grimes */ 1405df8bae1dSRodney W. Grimes if (m) 1406df8bae1dSRodney W. Grimes (void)m_free(m); 1407df8bae1dSRodney W. Grimes return (0); 1408df8bae1dSRodney W. Grimes } 1409df8bae1dSRodney W. Grimes 14100c8d2590SBruce Evans if (m->m_len % sizeof(int32_t)) 1411df8bae1dSRodney W. Grimes goto bad; 1412df8bae1dSRodney W. Grimes /* 1413df8bae1dSRodney W. Grimes * IP first-hop destination address will be stored before 1414df8bae1dSRodney W. Grimes * actual options; move other options back 1415df8bae1dSRodney W. Grimes * and clear it when none present. 1416df8bae1dSRodney W. Grimes */ 1417df8bae1dSRodney W. Grimes if (m->m_data + m->m_len + sizeof(struct in_addr) >= &m->m_dat[MLEN]) 1418df8bae1dSRodney W. Grimes goto bad; 1419df8bae1dSRodney W. Grimes cnt = m->m_len; 1420df8bae1dSRodney W. Grimes m->m_len += sizeof(struct in_addr); 1421df8bae1dSRodney W. Grimes cp = mtod(m, u_char *) + sizeof(struct in_addr); 1422df8bae1dSRodney W. Grimes ovbcopy(mtod(m, caddr_t), (caddr_t)cp, (unsigned)cnt); 1423df8bae1dSRodney W. Grimes bzero(mtod(m, caddr_t), sizeof(struct in_addr)); 1424df8bae1dSRodney W. Grimes 1425df8bae1dSRodney W. Grimes for (; cnt > 0; cnt -= optlen, cp += optlen) { 1426df8bae1dSRodney W. Grimes opt = cp[IPOPT_OPTVAL]; 1427df8bae1dSRodney W. Grimes if (opt == IPOPT_EOL) 1428df8bae1dSRodney W. Grimes break; 1429df8bae1dSRodney W. Grimes if (opt == IPOPT_NOP) 1430df8bae1dSRodney W. Grimes optlen = 1; 1431df8bae1dSRodney W. Grimes else { 1432707d00a3SJonathan Lemon if (cnt < IPOPT_OLEN + sizeof(*cp)) 1433707d00a3SJonathan Lemon goto bad; 1434df8bae1dSRodney W. Grimes optlen = cp[IPOPT_OLEN]; 1435707d00a3SJonathan Lemon if (optlen < IPOPT_OLEN + sizeof(*cp) || optlen > cnt) 1436df8bae1dSRodney W. Grimes goto bad; 1437df8bae1dSRodney W. Grimes } 1438df8bae1dSRodney W. Grimes switch (opt) { 1439df8bae1dSRodney W. Grimes 1440df8bae1dSRodney W. Grimes default: 1441df8bae1dSRodney W. Grimes break; 1442df8bae1dSRodney W. Grimes 1443df8bae1dSRodney W. Grimes case IPOPT_LSRR: 1444df8bae1dSRodney W. Grimes case IPOPT_SSRR: 1445df8bae1dSRodney W. Grimes /* 1446df8bae1dSRodney W. Grimes * user process specifies route as: 1447df8bae1dSRodney W. Grimes * ->A->B->C->D 1448df8bae1dSRodney W. Grimes * D must be our final destination (but we can't 1449df8bae1dSRodney W. Grimes * check that since we may not have connected yet). 1450df8bae1dSRodney W. Grimes * A is first hop destination, which doesn't appear in 1451df8bae1dSRodney W. Grimes * actual IP option, but is stored before the options. 1452df8bae1dSRodney W. Grimes */ 1453df8bae1dSRodney W. Grimes if (optlen < IPOPT_MINOFF - 1 + sizeof(struct in_addr)) 1454df8bae1dSRodney W. Grimes goto bad; 1455df8bae1dSRodney W. Grimes m->m_len -= sizeof(struct in_addr); 1456df8bae1dSRodney W. Grimes cnt -= sizeof(struct in_addr); 1457df8bae1dSRodney W. Grimes optlen -= sizeof(struct in_addr); 1458df8bae1dSRodney W. Grimes cp[IPOPT_OLEN] = optlen; 1459df8bae1dSRodney W. Grimes /* 1460df8bae1dSRodney W. Grimes * Move first hop before start of options. 1461df8bae1dSRodney W. Grimes */ 1462df8bae1dSRodney W. Grimes bcopy((caddr_t)&cp[IPOPT_OFFSET+1], mtod(m, caddr_t), 1463df8bae1dSRodney W. Grimes sizeof(struct in_addr)); 1464df8bae1dSRodney W. Grimes /* 1465df8bae1dSRodney W. Grimes * Then copy rest of options back 1466df8bae1dSRodney W. Grimes * to close up the deleted entry. 1467df8bae1dSRodney W. Grimes */ 1468df8bae1dSRodney W. Grimes ovbcopy((caddr_t)(&cp[IPOPT_OFFSET+1] + 1469df8bae1dSRodney W. Grimes sizeof(struct in_addr)), 1470df8bae1dSRodney W. Grimes (caddr_t)&cp[IPOPT_OFFSET+1], 1471df8bae1dSRodney W. Grimes (unsigned)cnt + sizeof(struct in_addr)); 1472df8bae1dSRodney W. Grimes break; 1473df8bae1dSRodney W. Grimes } 1474df8bae1dSRodney W. Grimes } 1475df8bae1dSRodney W. Grimes if (m->m_len > MAX_IPOPTLEN + sizeof(struct in_addr)) 1476df8bae1dSRodney W. Grimes goto bad; 1477df8bae1dSRodney W. Grimes *pcbopt = m; 1478df8bae1dSRodney W. Grimes return (0); 1479df8bae1dSRodney W. Grimes 1480df8bae1dSRodney W. Grimes bad: 1481df8bae1dSRodney W. Grimes (void)m_free(m); 1482df8bae1dSRodney W. Grimes return (EINVAL); 1483df8bae1dSRodney W. Grimes } 1484df8bae1dSRodney W. Grimes 1485df8bae1dSRodney W. Grimes /* 1486cfe8b629SGarrett Wollman * XXX 1487cfe8b629SGarrett Wollman * The whole multicast option thing needs to be re-thought. 1488cfe8b629SGarrett Wollman * Several of these options are equally applicable to non-multicast 1489cfe8b629SGarrett Wollman * transmission, and one (IP_MULTICAST_TTL) totally duplicates a 1490cfe8b629SGarrett Wollman * standard option (IP_TTL). 1491cfe8b629SGarrett Wollman */ 149233841545SHajimu UMEMOTO 149333841545SHajimu UMEMOTO /* 149433841545SHajimu UMEMOTO * following RFC1724 section 3.3, 0.0.0.0/8 is interpreted as interface index. 149533841545SHajimu UMEMOTO */ 149633841545SHajimu UMEMOTO static struct ifnet * 149733841545SHajimu UMEMOTO ip_multicast_if(a, ifindexp) 149833841545SHajimu UMEMOTO struct in_addr *a; 149933841545SHajimu UMEMOTO int *ifindexp; 150033841545SHajimu UMEMOTO { 150133841545SHajimu UMEMOTO int ifindex; 150233841545SHajimu UMEMOTO struct ifnet *ifp; 150333841545SHajimu UMEMOTO 150433841545SHajimu UMEMOTO if (ifindexp) 150533841545SHajimu UMEMOTO *ifindexp = 0; 150633841545SHajimu UMEMOTO if (ntohl(a->s_addr) >> 24 == 0) { 150733841545SHajimu UMEMOTO ifindex = ntohl(a->s_addr) & 0xffffff; 150833841545SHajimu UMEMOTO if (ifindex < 0 || if_index < ifindex) 150933841545SHajimu UMEMOTO return NULL; 151033841545SHajimu UMEMOTO ifp = ifindex2ifnet[ifindex]; 151133841545SHajimu UMEMOTO if (ifindexp) 151233841545SHajimu UMEMOTO *ifindexp = ifindex; 151333841545SHajimu UMEMOTO } else { 151433841545SHajimu UMEMOTO INADDR_TO_IFP(*a, ifp); 151533841545SHajimu UMEMOTO } 151633841545SHajimu UMEMOTO return ifp; 151733841545SHajimu UMEMOTO } 151833841545SHajimu UMEMOTO 1519cfe8b629SGarrett Wollman /* 1520df8bae1dSRodney W. Grimes * Set the IP multicast options in response to user setsockopt(). 1521df8bae1dSRodney W. Grimes */ 15220312fbe9SPoul-Henning Kamp static int 1523cfe8b629SGarrett Wollman ip_setmoptions(sopt, imop) 1524cfe8b629SGarrett Wollman struct sockopt *sopt; 1525df8bae1dSRodney W. Grimes struct ip_moptions **imop; 1526df8bae1dSRodney W. Grimes { 1527cfe8b629SGarrett Wollman int error = 0; 1528cfe8b629SGarrett Wollman int i; 1529df8bae1dSRodney W. Grimes struct in_addr addr; 1530cfe8b629SGarrett Wollman struct ip_mreq mreq; 1531cfe8b629SGarrett Wollman struct ifnet *ifp; 1532cfe8b629SGarrett Wollman struct ip_moptions *imo = *imop; 1533df8bae1dSRodney W. Grimes struct route ro; 1534cfe8b629SGarrett Wollman struct sockaddr_in *dst; 153533841545SHajimu UMEMOTO int ifindex; 15369b626c29SGarrett Wollman int s; 1537df8bae1dSRodney W. Grimes 1538df8bae1dSRodney W. Grimes if (imo == NULL) { 1539df8bae1dSRodney W. Grimes /* 1540df8bae1dSRodney W. Grimes * No multicast option buffer attached to the pcb; 1541df8bae1dSRodney W. Grimes * allocate one and initialize to default values. 1542df8bae1dSRodney W. Grimes */ 1543df8bae1dSRodney W. Grimes imo = (struct ip_moptions*)malloc(sizeof(*imo), M_IPMOPTS, 1544df8bae1dSRodney W. Grimes M_WAITOK); 1545df8bae1dSRodney W. Grimes 1546df8bae1dSRodney W. Grimes if (imo == NULL) 1547df8bae1dSRodney W. Grimes return (ENOBUFS); 1548df8bae1dSRodney W. Grimes *imop = imo; 1549df8bae1dSRodney W. Grimes imo->imo_multicast_ifp = NULL; 155033841545SHajimu UMEMOTO imo->imo_multicast_addr.s_addr = INADDR_ANY; 15511c5de19aSGarrett Wollman imo->imo_multicast_vif = -1; 1552df8bae1dSRodney W. Grimes imo->imo_multicast_ttl = IP_DEFAULT_MULTICAST_TTL; 1553df8bae1dSRodney W. Grimes imo->imo_multicast_loop = IP_DEFAULT_MULTICAST_LOOP; 1554df8bae1dSRodney W. Grimes imo->imo_num_memberships = 0; 1555df8bae1dSRodney W. Grimes } 1556df8bae1dSRodney W. Grimes 1557cfe8b629SGarrett Wollman switch (sopt->sopt_name) { 1558f0068c4aSGarrett Wollman /* store an index number for the vif you wanna use in the send */ 1559f0068c4aSGarrett Wollman case IP_MULTICAST_VIF: 1560cfe8b629SGarrett Wollman if (legal_vif_num == 0) { 15615e9ae478SGarrett Wollman error = EOPNOTSUPP; 15625e9ae478SGarrett Wollman break; 15635e9ae478SGarrett Wollman } 1564cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &i, sizeof i, sizeof i); 1565cfe8b629SGarrett Wollman if (error) 1566f0068c4aSGarrett Wollman break; 15671c5de19aSGarrett Wollman if (!legal_vif_num(i) && (i != -1)) { 1568f0068c4aSGarrett Wollman error = EINVAL; 1569f0068c4aSGarrett Wollman break; 1570f0068c4aSGarrett Wollman } 1571f0068c4aSGarrett Wollman imo->imo_multicast_vif = i; 1572f0068c4aSGarrett Wollman break; 1573f0068c4aSGarrett Wollman 1574df8bae1dSRodney W. Grimes case IP_MULTICAST_IF: 1575df8bae1dSRodney W. Grimes /* 1576df8bae1dSRodney W. Grimes * Select the interface for outgoing multicast packets. 1577df8bae1dSRodney W. Grimes */ 1578cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &addr, sizeof addr, sizeof addr); 1579cfe8b629SGarrett Wollman if (error) 1580df8bae1dSRodney W. Grimes break; 1581df8bae1dSRodney W. Grimes /* 1582df8bae1dSRodney W. Grimes * INADDR_ANY is used to remove a previous selection. 1583df8bae1dSRodney W. Grimes * When no interface is selected, a default one is 1584df8bae1dSRodney W. Grimes * chosen every time a multicast packet is sent. 1585df8bae1dSRodney W. Grimes */ 1586df8bae1dSRodney W. Grimes if (addr.s_addr == INADDR_ANY) { 1587df8bae1dSRodney W. Grimes imo->imo_multicast_ifp = NULL; 1588df8bae1dSRodney W. Grimes break; 1589df8bae1dSRodney W. Grimes } 1590df8bae1dSRodney W. Grimes /* 1591df8bae1dSRodney W. Grimes * The selected interface is identified by its local 1592df8bae1dSRodney W. Grimes * IP address. Find the interface and confirm that 1593df8bae1dSRodney W. Grimes * it supports multicasting. 1594df8bae1dSRodney W. Grimes */ 159520e8807cSGarrett Wollman s = splimp(); 159633841545SHajimu UMEMOTO ifp = ip_multicast_if(&addr, &ifindex); 1597df8bae1dSRodney W. Grimes if (ifp == NULL || (ifp->if_flags & IFF_MULTICAST) == 0) { 1598fbc6ab00SBill Fenner splx(s); 1599df8bae1dSRodney W. Grimes error = EADDRNOTAVAIL; 1600df8bae1dSRodney W. Grimes break; 1601df8bae1dSRodney W. Grimes } 1602df8bae1dSRodney W. Grimes imo->imo_multicast_ifp = ifp; 160333841545SHajimu UMEMOTO if (ifindex) 160433841545SHajimu UMEMOTO imo->imo_multicast_addr = addr; 160533841545SHajimu UMEMOTO else 160633841545SHajimu UMEMOTO imo->imo_multicast_addr.s_addr = INADDR_ANY; 16079b626c29SGarrett Wollman splx(s); 1608df8bae1dSRodney W. Grimes break; 1609df8bae1dSRodney W. Grimes 1610df8bae1dSRodney W. Grimes case IP_MULTICAST_TTL: 1611df8bae1dSRodney W. Grimes /* 1612df8bae1dSRodney W. Grimes * Set the IP time-to-live for outgoing multicast packets. 1613cfe8b629SGarrett Wollman * The original multicast API required a char argument, 1614cfe8b629SGarrett Wollman * which is inconsistent with the rest of the socket API. 1615cfe8b629SGarrett Wollman * We allow either a char or an int. 1616df8bae1dSRodney W. Grimes */ 1617cfe8b629SGarrett Wollman if (sopt->sopt_valsize == 1) { 1618cfe8b629SGarrett Wollman u_char ttl; 1619cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &ttl, 1, 1); 1620cfe8b629SGarrett Wollman if (error) 1621df8bae1dSRodney W. Grimes break; 1622cfe8b629SGarrett Wollman imo->imo_multicast_ttl = ttl; 1623cfe8b629SGarrett Wollman } else { 1624cfe8b629SGarrett Wollman u_int ttl; 1625cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &ttl, sizeof ttl, 1626cfe8b629SGarrett Wollman sizeof ttl); 1627cfe8b629SGarrett Wollman if (error) 1628cfe8b629SGarrett Wollman break; 1629cfe8b629SGarrett Wollman if (ttl > 255) 1630cfe8b629SGarrett Wollman error = EINVAL; 1631cfe8b629SGarrett Wollman else 1632cfe8b629SGarrett Wollman imo->imo_multicast_ttl = ttl; 1633df8bae1dSRodney W. Grimes } 1634df8bae1dSRodney W. Grimes break; 1635df8bae1dSRodney W. Grimes 1636df8bae1dSRodney W. Grimes case IP_MULTICAST_LOOP: 1637df8bae1dSRodney W. Grimes /* 1638df8bae1dSRodney W. Grimes * Set the loopback flag for outgoing multicast packets. 1639cfe8b629SGarrett Wollman * Must be zero or one. The original multicast API required a 1640cfe8b629SGarrett Wollman * char argument, which is inconsistent with the rest 1641cfe8b629SGarrett Wollman * of the socket API. We allow either a char or an int. 1642df8bae1dSRodney W. Grimes */ 1643cfe8b629SGarrett Wollman if (sopt->sopt_valsize == 1) { 1644cfe8b629SGarrett Wollman u_char loop; 1645cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &loop, 1, 1); 1646cfe8b629SGarrett Wollman if (error) 1647df8bae1dSRodney W. Grimes break; 1648cfe8b629SGarrett Wollman imo->imo_multicast_loop = !!loop; 1649cfe8b629SGarrett Wollman } else { 1650cfe8b629SGarrett Wollman u_int loop; 1651cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &loop, sizeof loop, 1652cfe8b629SGarrett Wollman sizeof loop); 1653cfe8b629SGarrett Wollman if (error) 1654cfe8b629SGarrett Wollman break; 1655cfe8b629SGarrett Wollman imo->imo_multicast_loop = !!loop; 1656df8bae1dSRodney W. Grimes } 1657df8bae1dSRodney W. Grimes break; 1658df8bae1dSRodney W. Grimes 1659df8bae1dSRodney W. Grimes case IP_ADD_MEMBERSHIP: 1660df8bae1dSRodney W. Grimes /* 1661df8bae1dSRodney W. Grimes * Add a multicast group membership. 1662df8bae1dSRodney W. Grimes * Group must be a valid IP multicast address. 1663df8bae1dSRodney W. Grimes */ 1664cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &mreq, sizeof mreq, sizeof mreq); 1665cfe8b629SGarrett Wollman if (error) 1666df8bae1dSRodney W. Grimes break; 1667cfe8b629SGarrett Wollman 1668cfe8b629SGarrett Wollman if (!IN_MULTICAST(ntohl(mreq.imr_multiaddr.s_addr))) { 1669df8bae1dSRodney W. Grimes error = EINVAL; 1670df8bae1dSRodney W. Grimes break; 1671df8bae1dSRodney W. Grimes } 167220e8807cSGarrett Wollman s = splimp(); 1673df8bae1dSRodney W. Grimes /* 1674df8bae1dSRodney W. Grimes * If no interface address was provided, use the interface of 1675df8bae1dSRodney W. Grimes * the route to the given multicast address. 1676df8bae1dSRodney W. Grimes */ 1677cfe8b629SGarrett Wollman if (mreq.imr_interface.s_addr == INADDR_ANY) { 16781c5de19aSGarrett Wollman bzero((caddr_t)&ro, sizeof(ro)); 1679df8bae1dSRodney W. Grimes dst = (struct sockaddr_in *)&ro.ro_dst; 1680df8bae1dSRodney W. Grimes dst->sin_len = sizeof(*dst); 1681df8bae1dSRodney W. Grimes dst->sin_family = AF_INET; 1682cfe8b629SGarrett Wollman dst->sin_addr = mreq.imr_multiaddr; 1683df8bae1dSRodney W. Grimes rtalloc(&ro); 1684df8bae1dSRodney W. Grimes if (ro.ro_rt == NULL) { 1685df8bae1dSRodney W. Grimes error = EADDRNOTAVAIL; 16869b626c29SGarrett Wollman splx(s); 1687df8bae1dSRodney W. Grimes break; 1688df8bae1dSRodney W. Grimes } 1689df8bae1dSRodney W. Grimes ifp = ro.ro_rt->rt_ifp; 1690df8bae1dSRodney W. Grimes rtfree(ro.ro_rt); 1691df8bae1dSRodney W. Grimes } 1692df8bae1dSRodney W. Grimes else { 169333841545SHajimu UMEMOTO ifp = ip_multicast_if(&mreq.imr_interface, NULL); 1694df8bae1dSRodney W. Grimes } 16959b626c29SGarrett Wollman 1696df8bae1dSRodney W. Grimes /* 1697df8bae1dSRodney W. Grimes * See if we found an interface, and confirm that it 1698df8bae1dSRodney W. Grimes * supports multicast. 1699df8bae1dSRodney W. Grimes */ 1700df8bae1dSRodney W. Grimes if (ifp == NULL || (ifp->if_flags & IFF_MULTICAST) == 0) { 1701df8bae1dSRodney W. Grimes error = EADDRNOTAVAIL; 17029b626c29SGarrett Wollman splx(s); 1703df8bae1dSRodney W. Grimes break; 1704df8bae1dSRodney W. Grimes } 1705df8bae1dSRodney W. Grimes /* 1706df8bae1dSRodney W. Grimes * See if the membership already exists or if all the 1707df8bae1dSRodney W. Grimes * membership slots are full. 1708df8bae1dSRodney W. Grimes */ 1709df8bae1dSRodney W. Grimes for (i = 0; i < imo->imo_num_memberships; ++i) { 1710df8bae1dSRodney W. Grimes if (imo->imo_membership[i]->inm_ifp == ifp && 1711df8bae1dSRodney W. Grimes imo->imo_membership[i]->inm_addr.s_addr 1712cfe8b629SGarrett Wollman == mreq.imr_multiaddr.s_addr) 1713df8bae1dSRodney W. Grimes break; 1714df8bae1dSRodney W. Grimes } 1715df8bae1dSRodney W. Grimes if (i < imo->imo_num_memberships) { 1716df8bae1dSRodney W. Grimes error = EADDRINUSE; 17179b626c29SGarrett Wollman splx(s); 1718df8bae1dSRodney W. Grimes break; 1719df8bae1dSRodney W. Grimes } 1720df8bae1dSRodney W. Grimes if (i == IP_MAX_MEMBERSHIPS) { 1721df8bae1dSRodney W. Grimes error = ETOOMANYREFS; 17229b626c29SGarrett Wollman splx(s); 1723df8bae1dSRodney W. Grimes break; 1724df8bae1dSRodney W. Grimes } 1725df8bae1dSRodney W. Grimes /* 1726df8bae1dSRodney W. Grimes * Everything looks good; add a new record to the multicast 1727df8bae1dSRodney W. Grimes * address list for the given interface. 1728df8bae1dSRodney W. Grimes */ 1729df8bae1dSRodney W. Grimes if ((imo->imo_membership[i] = 1730cfe8b629SGarrett Wollman in_addmulti(&mreq.imr_multiaddr, ifp)) == NULL) { 1731df8bae1dSRodney W. Grimes error = ENOBUFS; 17329b626c29SGarrett Wollman splx(s); 1733df8bae1dSRodney W. Grimes break; 1734df8bae1dSRodney W. Grimes } 1735df8bae1dSRodney W. Grimes ++imo->imo_num_memberships; 17369b626c29SGarrett Wollman splx(s); 1737df8bae1dSRodney W. Grimes break; 1738df8bae1dSRodney W. Grimes 1739df8bae1dSRodney W. Grimes case IP_DROP_MEMBERSHIP: 1740df8bae1dSRodney W. Grimes /* 1741df8bae1dSRodney W. Grimes * Drop a multicast group membership. 1742df8bae1dSRodney W. Grimes * Group must be a valid IP multicast address. 1743df8bae1dSRodney W. Grimes */ 1744cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &mreq, sizeof mreq, sizeof mreq); 1745cfe8b629SGarrett Wollman if (error) 1746df8bae1dSRodney W. Grimes break; 1747cfe8b629SGarrett Wollman 1748cfe8b629SGarrett Wollman if (!IN_MULTICAST(ntohl(mreq.imr_multiaddr.s_addr))) { 1749df8bae1dSRodney W. Grimes error = EINVAL; 1750df8bae1dSRodney W. Grimes break; 1751df8bae1dSRodney W. Grimes } 17529b626c29SGarrett Wollman 175320e8807cSGarrett Wollman s = splimp(); 1754df8bae1dSRodney W. Grimes /* 1755df8bae1dSRodney W. Grimes * If an interface address was specified, get a pointer 1756df8bae1dSRodney W. Grimes * to its ifnet structure. 1757df8bae1dSRodney W. Grimes */ 1758cfe8b629SGarrett Wollman if (mreq.imr_interface.s_addr == INADDR_ANY) 1759df8bae1dSRodney W. Grimes ifp = NULL; 1760df8bae1dSRodney W. Grimes else { 176133841545SHajimu UMEMOTO ifp = ip_multicast_if(&mreq.imr_interface, NULL); 1762df8bae1dSRodney W. Grimes if (ifp == NULL) { 1763df8bae1dSRodney W. Grimes error = EADDRNOTAVAIL; 17649b626c29SGarrett Wollman splx(s); 1765df8bae1dSRodney W. Grimes break; 1766df8bae1dSRodney W. Grimes } 1767df8bae1dSRodney W. Grimes } 1768df8bae1dSRodney W. Grimes /* 1769df8bae1dSRodney W. Grimes * Find the membership in the membership array. 1770df8bae1dSRodney W. Grimes */ 1771df8bae1dSRodney W. Grimes for (i = 0; i < imo->imo_num_memberships; ++i) { 1772df8bae1dSRodney W. Grimes if ((ifp == NULL || 1773df8bae1dSRodney W. Grimes imo->imo_membership[i]->inm_ifp == ifp) && 1774df8bae1dSRodney W. Grimes imo->imo_membership[i]->inm_addr.s_addr == 1775cfe8b629SGarrett Wollman mreq.imr_multiaddr.s_addr) 1776df8bae1dSRodney W. Grimes break; 1777df8bae1dSRodney W. Grimes } 1778df8bae1dSRodney W. Grimes if (i == imo->imo_num_memberships) { 1779df8bae1dSRodney W. Grimes error = EADDRNOTAVAIL; 17809b626c29SGarrett Wollman splx(s); 1781df8bae1dSRodney W. Grimes break; 1782df8bae1dSRodney W. Grimes } 1783df8bae1dSRodney W. Grimes /* 1784df8bae1dSRodney W. Grimes * Give up the multicast address record to which the 1785df8bae1dSRodney W. Grimes * membership points. 1786df8bae1dSRodney W. Grimes */ 1787df8bae1dSRodney W. Grimes in_delmulti(imo->imo_membership[i]); 1788df8bae1dSRodney W. Grimes /* 1789df8bae1dSRodney W. Grimes * Remove the gap in the membership array. 1790df8bae1dSRodney W. Grimes */ 1791df8bae1dSRodney W. Grimes for (++i; i < imo->imo_num_memberships; ++i) 1792df8bae1dSRodney W. Grimes imo->imo_membership[i-1] = imo->imo_membership[i]; 1793df8bae1dSRodney W. Grimes --imo->imo_num_memberships; 17949b626c29SGarrett Wollman splx(s); 1795df8bae1dSRodney W. Grimes break; 1796df8bae1dSRodney W. Grimes 1797df8bae1dSRodney W. Grimes default: 1798df8bae1dSRodney W. Grimes error = EOPNOTSUPP; 1799df8bae1dSRodney W. Grimes break; 1800df8bae1dSRodney W. Grimes } 1801df8bae1dSRodney W. Grimes 1802df8bae1dSRodney W. Grimes /* 1803df8bae1dSRodney W. Grimes * If all options have default values, no need to keep the mbuf. 1804df8bae1dSRodney W. Grimes */ 1805df8bae1dSRodney W. Grimes if (imo->imo_multicast_ifp == NULL && 18061c5de19aSGarrett Wollman imo->imo_multicast_vif == -1 && 1807df8bae1dSRodney W. Grimes imo->imo_multicast_ttl == IP_DEFAULT_MULTICAST_TTL && 1808df8bae1dSRodney W. Grimes imo->imo_multicast_loop == IP_DEFAULT_MULTICAST_LOOP && 1809df8bae1dSRodney W. Grimes imo->imo_num_memberships == 0) { 1810df8bae1dSRodney W. Grimes free(*imop, M_IPMOPTS); 1811df8bae1dSRodney W. Grimes *imop = NULL; 1812df8bae1dSRodney W. Grimes } 1813df8bae1dSRodney W. Grimes 1814df8bae1dSRodney W. Grimes return (error); 1815df8bae1dSRodney W. Grimes } 1816df8bae1dSRodney W. Grimes 1817df8bae1dSRodney W. Grimes /* 1818df8bae1dSRodney W. Grimes * Return the IP multicast options in response to user getsockopt(). 1819df8bae1dSRodney W. Grimes */ 18200312fbe9SPoul-Henning Kamp static int 1821cfe8b629SGarrett Wollman ip_getmoptions(sopt, imo) 1822cfe8b629SGarrett Wollman struct sockopt *sopt; 1823df8bae1dSRodney W. Grimes register struct ip_moptions *imo; 1824df8bae1dSRodney W. Grimes { 1825cfe8b629SGarrett Wollman struct in_addr addr; 1826df8bae1dSRodney W. Grimes struct in_ifaddr *ia; 1827cfe8b629SGarrett Wollman int error, optval; 1828cfe8b629SGarrett Wollman u_char coptval; 1829df8bae1dSRodney W. Grimes 1830cfe8b629SGarrett Wollman error = 0; 1831cfe8b629SGarrett Wollman switch (sopt->sopt_name) { 1832f0068c4aSGarrett Wollman case IP_MULTICAST_VIF: 1833f0068c4aSGarrett Wollman if (imo != NULL) 1834cfe8b629SGarrett Wollman optval = imo->imo_multicast_vif; 1835f0068c4aSGarrett Wollman else 1836cfe8b629SGarrett Wollman optval = -1; 1837cfe8b629SGarrett Wollman error = sooptcopyout(sopt, &optval, sizeof optval); 1838cfe8b629SGarrett Wollman break; 1839f0068c4aSGarrett Wollman 1840df8bae1dSRodney W. Grimes case IP_MULTICAST_IF: 1841df8bae1dSRodney W. Grimes if (imo == NULL || imo->imo_multicast_ifp == NULL) 1842cfe8b629SGarrett Wollman addr.s_addr = INADDR_ANY; 184333841545SHajimu UMEMOTO else if (imo->imo_multicast_addr.s_addr) { 184433841545SHajimu UMEMOTO /* return the value user has set */ 184533841545SHajimu UMEMOTO addr = imo->imo_multicast_addr; 184633841545SHajimu UMEMOTO } else { 1847df8bae1dSRodney W. Grimes IFP_TO_IA(imo->imo_multicast_ifp, ia); 1848cfe8b629SGarrett Wollman addr.s_addr = (ia == NULL) ? INADDR_ANY 1849df8bae1dSRodney W. Grimes : IA_SIN(ia)->sin_addr.s_addr; 1850df8bae1dSRodney W. Grimes } 1851cfe8b629SGarrett Wollman error = sooptcopyout(sopt, &addr, sizeof addr); 1852cfe8b629SGarrett Wollman break; 1853df8bae1dSRodney W. Grimes 1854df8bae1dSRodney W. Grimes case IP_MULTICAST_TTL: 1855cfe8b629SGarrett Wollman if (imo == 0) 1856cfe8b629SGarrett Wollman optval = coptval = IP_DEFAULT_MULTICAST_TTL; 1857cfe8b629SGarrett Wollman else 1858cfe8b629SGarrett Wollman optval = coptval = imo->imo_multicast_ttl; 1859cfe8b629SGarrett Wollman if (sopt->sopt_valsize == 1) 1860cfe8b629SGarrett Wollman error = sooptcopyout(sopt, &coptval, 1); 1861cfe8b629SGarrett Wollman else 1862cfe8b629SGarrett Wollman error = sooptcopyout(sopt, &optval, sizeof optval); 1863cfe8b629SGarrett Wollman break; 1864df8bae1dSRodney W. Grimes 1865df8bae1dSRodney W. Grimes case IP_MULTICAST_LOOP: 1866cfe8b629SGarrett Wollman if (imo == 0) 1867cfe8b629SGarrett Wollman optval = coptval = IP_DEFAULT_MULTICAST_LOOP; 1868cfe8b629SGarrett Wollman else 1869cfe8b629SGarrett Wollman optval = coptval = imo->imo_multicast_loop; 1870cfe8b629SGarrett Wollman if (sopt->sopt_valsize == 1) 1871cfe8b629SGarrett Wollman error = sooptcopyout(sopt, &coptval, 1); 1872cfe8b629SGarrett Wollman else 1873cfe8b629SGarrett Wollman error = sooptcopyout(sopt, &optval, sizeof optval); 1874cfe8b629SGarrett Wollman break; 1875df8bae1dSRodney W. Grimes 1876df8bae1dSRodney W. Grimes default: 1877cfe8b629SGarrett Wollman error = ENOPROTOOPT; 1878cfe8b629SGarrett Wollman break; 1879df8bae1dSRodney W. Grimes } 1880cfe8b629SGarrett Wollman return (error); 1881df8bae1dSRodney W. Grimes } 1882df8bae1dSRodney W. Grimes 1883df8bae1dSRodney W. Grimes /* 1884df8bae1dSRodney W. Grimes * Discard the IP multicast options. 1885df8bae1dSRodney W. Grimes */ 1886df8bae1dSRodney W. Grimes void 1887df8bae1dSRodney W. Grimes ip_freemoptions(imo) 1888df8bae1dSRodney W. Grimes register struct ip_moptions *imo; 1889df8bae1dSRodney W. Grimes { 1890df8bae1dSRodney W. Grimes register int i; 1891df8bae1dSRodney W. Grimes 1892df8bae1dSRodney W. Grimes if (imo != NULL) { 1893df8bae1dSRodney W. Grimes for (i = 0; i < imo->imo_num_memberships; ++i) 1894df8bae1dSRodney W. Grimes in_delmulti(imo->imo_membership[i]); 1895df8bae1dSRodney W. Grimes free(imo, M_IPMOPTS); 1896df8bae1dSRodney W. Grimes } 1897df8bae1dSRodney W. Grimes } 1898df8bae1dSRodney W. Grimes 1899df8bae1dSRodney W. Grimes /* 1900df8bae1dSRodney W. Grimes * Routine called from ip_output() to loop back a copy of an IP multicast 1901df8bae1dSRodney W. Grimes * packet to the input queue of a specified interface. Note that this 1902df8bae1dSRodney W. Grimes * calls the output routine of the loopback "driver", but with an interface 1903f5fea3ddSPaul Traina * pointer that might NOT be a loopback interface -- evil, but easier than 1904f5fea3ddSPaul Traina * replicating that code here. 1905df8bae1dSRodney W. Grimes */ 1906df8bae1dSRodney W. Grimes static void 190786b1d6d2SBill Fenner ip_mloopback(ifp, m, dst, hlen) 1908df8bae1dSRodney W. Grimes struct ifnet *ifp; 1909df8bae1dSRodney W. Grimes register struct mbuf *m; 1910df8bae1dSRodney W. Grimes register struct sockaddr_in *dst; 191186b1d6d2SBill Fenner int hlen; 1912df8bae1dSRodney W. Grimes { 1913df8bae1dSRodney W. Grimes register struct ip *ip; 1914df8bae1dSRodney W. Grimes struct mbuf *copym; 1915df8bae1dSRodney W. Grimes 1916df8bae1dSRodney W. Grimes copym = m_copy(m, 0, M_COPYALL); 191786b1d6d2SBill Fenner if (copym != NULL && (copym->m_flags & M_EXT || copym->m_len < hlen)) 191886b1d6d2SBill Fenner copym = m_pullup(copym, hlen); 1919df8bae1dSRodney W. Grimes if (copym != NULL) { 1920df8bae1dSRodney W. Grimes /* 1921df8bae1dSRodney W. Grimes * We don't bother to fragment if the IP length is greater 1922df8bae1dSRodney W. Grimes * than the interface's MTU. Can this possibly matter? 1923df8bae1dSRodney W. Grimes */ 1924df8bae1dSRodney W. Grimes ip = mtod(copym, struct ip *); 192504287599SRuslan Ermilov HTONS(ip->ip_len); 192604287599SRuslan Ermilov HTONS(ip->ip_off); 1927df8bae1dSRodney W. Grimes ip->ip_sum = 0; 19289c9137eaSGarrett Wollman if (ip->ip_vhl == IP_VHL_BORING) { 19299c9137eaSGarrett Wollman ip->ip_sum = in_cksum_hdr(ip); 19309c9137eaSGarrett Wollman } else { 193186b1d6d2SBill Fenner ip->ip_sum = in_cksum(copym, hlen); 19329c9137eaSGarrett Wollman } 19339c9137eaSGarrett Wollman /* 19349c9137eaSGarrett Wollman * NB: 1935e1596dffSBill Fenner * It's not clear whether there are any lingering 1936e1596dffSBill Fenner * reentrancy problems in other areas which might 1937e1596dffSBill Fenner * be exposed by using ip_input directly (in 1938e1596dffSBill Fenner * particular, everything which modifies the packet 1939e1596dffSBill Fenner * in-place). Yet another option is using the 1940e1596dffSBill Fenner * protosw directly to deliver the looped back 1941e1596dffSBill Fenner * packet. For the moment, we'll err on the side 1942ed7509acSJulian Elischer * of safety by using if_simloop(). 19439c9137eaSGarrett Wollman */ 1944201c2527SJulian Elischer #if 1 /* XXX */ 1945201c2527SJulian Elischer if (dst->sin_family != AF_INET) { 19462b8a366cSJulian Elischer printf("ip_mloopback: bad address family %d\n", 1947201c2527SJulian Elischer dst->sin_family); 1948201c2527SJulian Elischer dst->sin_family = AF_INET; 1949201c2527SJulian Elischer } 1950201c2527SJulian Elischer #endif 1951201c2527SJulian Elischer 19529c9137eaSGarrett Wollman #ifdef notdef 1953e1596dffSBill Fenner copym->m_pkthdr.rcvif = ifp; 1954ed7509acSJulian Elischer ip_input(copym); 19559c9137eaSGarrett Wollman #else 195650c6dc99SJonathan Lemon /* if the checksum hasn't been computed, mark it as valid */ 195750c6dc99SJonathan Lemon if (copym->m_pkthdr.csum_flags & CSUM_DELAY_DATA) { 195850c6dc99SJonathan Lemon copym->m_pkthdr.csum_flags |= 195950c6dc99SJonathan Lemon CSUM_DATA_VALID | CSUM_PSEUDO_HDR; 196050c6dc99SJonathan Lemon copym->m_pkthdr.csum_data = 0xffff; 196150c6dc99SJonathan Lemon } 196206a429a3SArchie Cobbs if_simloop(ifp, copym, dst->sin_family, 0); 19639c9137eaSGarrett Wollman #endif 1964df8bae1dSRodney W. Grimes } 1965df8bae1dSRodney W. Grimes } 1966