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 669c9137eaSGarrett Wollman #include <machine/in_cksum.h> 67df8bae1dSRodney W. Grimes 68a1c995b6SPoul-Henning Kamp static MALLOC_DEFINE(M_IPMOPTS, "ip_moptions", "internet multicast options"); 6955166637SPoul-Henning Kamp 706a800098SYoshinobu Inoue #ifdef IPSEC 716a800098SYoshinobu Inoue #include <netinet6/ipsec.h> 726a800098SYoshinobu Inoue #include <netkey/key.h> 736a800098SYoshinobu Inoue #ifdef IPSEC_DEBUG 746a800098SYoshinobu Inoue #include <netkey/key_debug.h> 756a800098SYoshinobu Inoue #else 766a800098SYoshinobu Inoue #define KEYDEBUG(lev,arg) 776a800098SYoshinobu Inoue #endif 786a800098SYoshinobu Inoue #endif /*IPSEC*/ 796a800098SYoshinobu Inoue 80cfe8b629SGarrett Wollman #include <netinet/ip_fw.h> 81b715f178SLuigi Rizzo #include <netinet/ip_dummynet.h> 82b715f178SLuigi Rizzo 83f9e354dfSJulian Elischer #ifdef IPFIREWALL_FORWARD_DEBUG 84f9e354dfSJulian Elischer #define print_ip(a) printf("%ld.%ld.%ld.%ld",(ntohl(a.s_addr)>>24)&0xFF,\ 85f9e354dfSJulian Elischer (ntohl(a.s_addr)>>16)&0xFF,\ 86f9e354dfSJulian Elischer (ntohl(a.s_addr)>>8)&0xFF,\ 87f9e354dfSJulian Elischer (ntohl(a.s_addr))&0xFF); 88f9e354dfSJulian Elischer #endif 89f9e354dfSJulian Elischer 90f23b4c91SGarrett Wollman u_short ip_id; 91f23b4c91SGarrett Wollman 92df8bae1dSRodney W. Grimes static struct mbuf *ip_insertoptions __P((struct mbuf *, struct mbuf *, int *)); 9333841545SHajimu UMEMOTO static struct ifnet *ip_multicast_if __P((struct in_addr *, int *)); 94df8bae1dSRodney W. Grimes static void ip_mloopback 9586b1d6d2SBill Fenner __P((struct ifnet *, struct mbuf *, struct sockaddr_in *, int)); 960312fbe9SPoul-Henning Kamp static int ip_getmoptions 97cfe8b629SGarrett Wollman __P((struct sockopt *, struct ip_moptions *)); 98cfe8b629SGarrett Wollman static int ip_pcbopts __P((int, struct mbuf **, struct mbuf *)); 990312fbe9SPoul-Henning Kamp static int ip_setmoptions 100cfe8b629SGarrett Wollman __P((struct sockopt *, struct ip_moptions **)); 101df8bae1dSRodney W. Grimes 102beec8214SDarren Reed int ip_optcopy __P((struct ip *, struct ip *)); 103afed1b49SDarren Reed 104afed1b49SDarren Reed 10593e0e116SJulian Elischer extern struct protosw inetsw[]; 10693e0e116SJulian Elischer 107df8bae1dSRodney W. Grimes /* 108df8bae1dSRodney W. Grimes * IP output. The packet in mbuf chain m contains a skeletal IP 109df8bae1dSRodney W. Grimes * header (with len, off, ttl, proto, tos, src, dst). 110df8bae1dSRodney W. Grimes * The mbuf chain containing the packet will be freed. 111df8bae1dSRodney W. Grimes * The mbuf opt, if present, will not be freed. 112df8bae1dSRodney W. Grimes */ 113df8bae1dSRodney W. Grimes int 114df8bae1dSRodney W. Grimes ip_output(m0, opt, ro, flags, imo) 115df8bae1dSRodney W. Grimes struct mbuf *m0; 116df8bae1dSRodney W. Grimes struct mbuf *opt; 117df8bae1dSRodney W. Grimes struct route *ro; 118df8bae1dSRodney W. Grimes int flags; 119df8bae1dSRodney W. Grimes struct ip_moptions *imo; 120df8bae1dSRodney W. Grimes { 12123bf9953SPoul-Henning Kamp struct ip *ip, *mhip; 12223bf9953SPoul-Henning Kamp struct ifnet *ifp; 12323bf9953SPoul-Henning Kamp struct mbuf *m = m0; 12423bf9953SPoul-Henning Kamp int hlen = sizeof (struct ip); 125df8bae1dSRodney W. Grimes int len, off, error = 0; 12604d59553SRuslan Ermilov struct route iproute; 127df8bae1dSRodney W. Grimes struct sockaddr_in *dst; 128df8bae1dSRodney W. Grimes struct in_ifaddr *ia; 129db4f9cc7SJonathan Lemon int isbroadcast, sw_csum; 1303efc3014SJulian Elischer struct in_addr pkt_dst; 1316a800098SYoshinobu Inoue #ifdef IPSEC 132d0a98d79SYoshinobu Inoue struct socket *so = NULL; 1336a800098SYoshinobu Inoue struct secpolicy *sp = NULL; 1346a800098SYoshinobu Inoue #endif 1358948e4baSArchie Cobbs u_int16_t divert_cookie; /* firewall cookie */ 136c4ac87eaSDarren Reed #ifdef PFIL_HOOKS 137c4ac87eaSDarren Reed struct packet_filter_hook *pfh; 138c4ac87eaSDarren Reed struct mbuf *m1; 139c4ac87eaSDarren Reed int rv; 140c4ac87eaSDarren Reed #endif /* PFIL_HOOKS */ 141f9e354dfSJulian Elischer #ifdef IPFIREWALL_FORWARD 142f9e354dfSJulian Elischer int fwd_rewrite_src = 0; 143f9e354dfSJulian Elischer #endif 144830cc178SLuigi Rizzo struct ip_fw *rule = NULL; 145b715f178SLuigi Rizzo 1468948e4baSArchie Cobbs #ifdef IPDIVERT 1478948e4baSArchie Cobbs /* Get and reset firewall cookie */ 1488948e4baSArchie Cobbs divert_cookie = ip_divert_cookie; 1498948e4baSArchie Cobbs ip_divert_cookie = 0; 1508948e4baSArchie Cobbs #else 1518948e4baSArchie Cobbs divert_cookie = 0; 1528948e4baSArchie Cobbs #endif 1538948e4baSArchie Cobbs 154b715f178SLuigi Rizzo /* 155b715f178SLuigi Rizzo * dummynet packet are prepended a vestigial mbuf with 156b715f178SLuigi Rizzo * m_type = MT_DUMMYNET and m_data pointing to the matching 157b715f178SLuigi Rizzo * rule. 158b715f178SLuigi Rizzo */ 159b715f178SLuigi Rizzo if (m->m_type == MT_DUMMYNET) { 160b715f178SLuigi Rizzo /* 161b715f178SLuigi Rizzo * the packet was already tagged, so part of the 162b715f178SLuigi Rizzo * processing was already done, and we need to go down. 1636bc748b0SLuigi Rizzo * Get parameters from the header. 164b715f178SLuigi Rizzo */ 165830cc178SLuigi Rizzo rule = (struct ip_fw *)(m->m_data) ; 166d1f04b29SLuigi Rizzo opt = NULL ; 167d1f04b29SLuigi Rizzo ro = & ( ((struct dn_pkt *)m)->ro ) ; 168d1f04b29SLuigi Rizzo imo = NULL ; 169d1f04b29SLuigi Rizzo dst = ((struct dn_pkt *)m)->dn_dst ; 170d1f04b29SLuigi Rizzo ifp = ((struct dn_pkt *)m)->ifp ; 171d0a98d79SYoshinobu Inoue flags = ((struct dn_pkt *)m)->flags ; 172d1f04b29SLuigi Rizzo 17317458d35SLuigi Rizzo m0 = m = m->m_next ; 174d0a98d79SYoshinobu Inoue #ifdef IPSEC 175686cdd19SJun-ichiro itojun Hagino so = ipsec_getsocket(m); 17633841545SHajimu UMEMOTO (void)ipsec_setsocket(m, NULL); 177d0a98d79SYoshinobu Inoue #endif 178b715f178SLuigi Rizzo ip = mtod(m, struct ip *); 179b715f178SLuigi Rizzo hlen = IP_VHL_HL(ip->ip_vhl) << 2 ; 1809a10980eSJonathan Lemon ia = ifatoia(ro->ro_rt->rt_ifa); 181b715f178SLuigi Rizzo goto sendit; 182b715f178SLuigi Rizzo } else 183b715f178SLuigi Rizzo rule = NULL ; 184d0a98d79SYoshinobu Inoue #ifdef IPSEC 185686cdd19SJun-ichiro itojun Hagino so = ipsec_getsocket(m); 18633841545SHajimu UMEMOTO (void)ipsec_setsocket(m, NULL); 187d0a98d79SYoshinobu Inoue #endif 188b715f178SLuigi Rizzo 189df8bae1dSRodney W. Grimes #ifdef DIAGNOSTIC 190df8bae1dSRodney W. Grimes if ((m->m_flags & M_PKTHDR) == 0) 191df8bae1dSRodney W. Grimes panic("ip_output no HDR"); 192df8bae1dSRodney W. Grimes #endif 193df8bae1dSRodney W. Grimes if (opt) { 194df8bae1dSRodney W. Grimes m = ip_insertoptions(m, opt, &len); 195df8bae1dSRodney W. Grimes hlen = len; 196df8bae1dSRodney W. Grimes } 197df8bae1dSRodney W. Grimes ip = mtod(m, struct ip *); 1983efc3014SJulian Elischer pkt_dst = ip_fw_fwd_addr == NULL 1993efc3014SJulian Elischer ? ip->ip_dst : ip_fw_fwd_addr->sin_addr; 2003efc3014SJulian Elischer 201df8bae1dSRodney W. Grimes /* 202df8bae1dSRodney W. Grimes * Fill in IP header. 203df8bae1dSRodney W. Grimes */ 204df8bae1dSRodney W. Grimes if ((flags & (IP_FORWARDING|IP_RAWOUTPUT)) == 0) { 2059c9137eaSGarrett Wollman ip->ip_vhl = IP_MAKE_VHL(IPVERSION, hlen >> 2); 206df8bae1dSRodney W. Grimes ip->ip_off &= IP_DF; 20764dddc18SKris Kennaway #ifdef RANDOM_IP_ID 20864dddc18SKris Kennaway ip->ip_id = ip_randomid(); 20964dddc18SKris Kennaway #else 210e30177e0SRuslan Ermilov ip->ip_id = htons(ip_id++); 21164dddc18SKris Kennaway #endif 212df8bae1dSRodney W. Grimes ipstat.ips_localout++; 213df8bae1dSRodney W. Grimes } else { 2149c9137eaSGarrett Wollman hlen = IP_VHL_HL(ip->ip_vhl) << 2; 215df8bae1dSRodney W. Grimes } 2169c9137eaSGarrett Wollman 21704d59553SRuslan Ermilov /* Route packet. */ 21804d59553SRuslan Ermilov if (ro == NULL) { 21904d59553SRuslan Ermilov ro = &iproute; 22004d59553SRuslan Ermilov bzero(ro, sizeof(*ro)); 22104d59553SRuslan Ermilov } 222df8bae1dSRodney W. Grimes dst = (struct sockaddr_in *)&ro->ro_dst; 223df8bae1dSRodney W. Grimes /* 224df8bae1dSRodney W. Grimes * If there is a cached route, 225df8bae1dSRodney W. Grimes * check that it is to the same destination 226df8bae1dSRodney W. Grimes * and is still up. If not, free it and try again. 227df8bae1dSRodney W. Grimes */ 228df8bae1dSRodney W. Grimes if (ro->ro_rt && ((ro->ro_rt->rt_flags & RTF_UP) == 0 || 2293efc3014SJulian Elischer dst->sin_addr.s_addr != pkt_dst.s_addr)) { 230df8bae1dSRodney W. Grimes RTFREE(ro->ro_rt); 231df8bae1dSRodney W. Grimes ro->ro_rt = (struct rtentry *)0; 232df8bae1dSRodney W. Grimes } 233df8bae1dSRodney W. Grimes if (ro->ro_rt == 0) { 234df8bae1dSRodney W. Grimes dst->sin_family = AF_INET; 235df8bae1dSRodney W. Grimes dst->sin_len = sizeof(*dst); 2363efc3014SJulian Elischer dst->sin_addr = pkt_dst; 237df8bae1dSRodney W. Grimes } 238df8bae1dSRodney W. Grimes /* 239df8bae1dSRodney W. Grimes * If routing to interface only, 240df8bae1dSRodney W. Grimes * short circuit routing lookup. 241df8bae1dSRodney W. Grimes */ 242df8bae1dSRodney W. Grimes if (flags & IP_ROUTETOIF) { 243df8bae1dSRodney W. Grimes if ((ia = ifatoia(ifa_ifwithdstaddr(sintosa(dst)))) == 0 && 244df8bae1dSRodney W. Grimes (ia = ifatoia(ifa_ifwithnet(sintosa(dst)))) == 0) { 245df8bae1dSRodney W. Grimes ipstat.ips_noroute++; 246df8bae1dSRodney W. Grimes error = ENETUNREACH; 247df8bae1dSRodney W. Grimes goto bad; 248df8bae1dSRodney W. Grimes } 249df8bae1dSRodney W. Grimes ifp = ia->ia_ifp; 250df8bae1dSRodney W. Grimes ip->ip_ttl = 1; 2519f9b3dc4SGarrett Wollman isbroadcast = in_broadcast(dst->sin_addr, ifp); 2523afefa39SDaniel C. Sobral } else if (IN_MULTICAST(ntohl(ip->ip_dst.s_addr)) && 25338c1bc35SRuslan Ermilov imo != NULL && imo->imo_multicast_ifp != NULL) { 2543afefa39SDaniel C. Sobral /* 25538c1bc35SRuslan Ermilov * Bypass the normal routing lookup for multicast 25638c1bc35SRuslan Ermilov * packets if the interface is specified. 2573afefa39SDaniel C. Sobral */ 25838c1bc35SRuslan Ermilov ifp = imo->imo_multicast_ifp; 25938c1bc35SRuslan Ermilov IFP_TO_IA(ifp, ia); 26038c1bc35SRuslan Ermilov isbroadcast = 0; /* fool gcc */ 261df8bae1dSRodney W. Grimes } else { 2622c17fe93SGarrett Wollman /* 263f2c2962eSRuslan Ermilov * If this is the case, we probably don't want to allocate 264f2c2962eSRuslan Ermilov * a protocol-cloned route since we didn't get one from the 265f2c2962eSRuslan Ermilov * ULP. This lets TCP do its thing, while not burdening 266f2c2962eSRuslan Ermilov * forwarding or ICMP with the overhead of cloning a route. 267f2c2962eSRuslan Ermilov * Of course, we still want to do any cloning requested by 268f2c2962eSRuslan Ermilov * the link layer, as this is probably required in all cases 269f2c2962eSRuslan Ermilov * for correct operation (as it is for ARP). 2702c17fe93SGarrett Wollman */ 271df8bae1dSRodney W. Grimes if (ro->ro_rt == 0) 2722c17fe93SGarrett Wollman rtalloc_ign(ro, RTF_PRCLONING); 273df8bae1dSRodney W. Grimes if (ro->ro_rt == 0) { 274df8bae1dSRodney W. Grimes ipstat.ips_noroute++; 275df8bae1dSRodney W. Grimes error = EHOSTUNREACH; 276df8bae1dSRodney W. Grimes goto bad; 277df8bae1dSRodney W. Grimes } 278df8bae1dSRodney W. Grimes ia = ifatoia(ro->ro_rt->rt_ifa); 279df8bae1dSRodney W. Grimes ifp = ro->ro_rt->rt_ifp; 280df8bae1dSRodney W. Grimes ro->ro_rt->rt_use++; 281df8bae1dSRodney W. Grimes if (ro->ro_rt->rt_flags & RTF_GATEWAY) 282f2c2962eSRuslan Ermilov dst = (struct sockaddr_in *)ro->ro_rt->rt_gateway; 2839f9b3dc4SGarrett Wollman if (ro->ro_rt->rt_flags & RTF_HOST) 284f2c2962eSRuslan Ermilov isbroadcast = (ro->ro_rt->rt_flags & RTF_BROADCAST); 2859f9b3dc4SGarrett Wollman else 2869f9b3dc4SGarrett Wollman isbroadcast = in_broadcast(dst->sin_addr, ifp); 287df8bae1dSRodney W. Grimes } 2883efc3014SJulian Elischer if (IN_MULTICAST(ntohl(pkt_dst.s_addr))) { 289df8bae1dSRodney W. Grimes struct in_multi *inm; 290df8bae1dSRodney W. Grimes 291df8bae1dSRodney W. Grimes m->m_flags |= M_MCAST; 292df8bae1dSRodney W. Grimes /* 293df8bae1dSRodney W. Grimes * IP destination address is multicast. Make sure "dst" 294df8bae1dSRodney W. Grimes * still points to the address in "ro". (It may have been 295df8bae1dSRodney W. Grimes * changed to point to a gateway address, above.) 296df8bae1dSRodney W. Grimes */ 297df8bae1dSRodney W. Grimes dst = (struct sockaddr_in *)&ro->ro_dst; 298df8bae1dSRodney W. Grimes /* 299df8bae1dSRodney W. Grimes * See if the caller provided any multicast options 300df8bae1dSRodney W. Grimes */ 301df8bae1dSRodney W. Grimes if (imo != NULL) { 302df8bae1dSRodney W. Grimes ip->ip_ttl = imo->imo_multicast_ttl; 3031c5de19aSGarrett Wollman if (imo->imo_multicast_vif != -1) 3041c5de19aSGarrett Wollman ip->ip_src.s_addr = 3051c5de19aSGarrett Wollman ip_mcast_src(imo->imo_multicast_vif); 306df8bae1dSRodney W. Grimes } else 307df8bae1dSRodney W. Grimes ip->ip_ttl = IP_DEFAULT_MULTICAST_TTL; 308df8bae1dSRodney W. Grimes /* 309df8bae1dSRodney W. Grimes * Confirm that the outgoing interface supports multicast. 310df8bae1dSRodney W. Grimes */ 3111c5de19aSGarrett Wollman if ((imo == NULL) || (imo->imo_multicast_vif == -1)) { 312df8bae1dSRodney W. Grimes if ((ifp->if_flags & IFF_MULTICAST) == 0) { 313df8bae1dSRodney W. Grimes ipstat.ips_noroute++; 314df8bae1dSRodney W. Grimes error = ENETUNREACH; 315df8bae1dSRodney W. Grimes goto bad; 316df8bae1dSRodney W. Grimes } 3171c5de19aSGarrett Wollman } 318df8bae1dSRodney W. Grimes /* 319df8bae1dSRodney W. Grimes * If source address not specified yet, use address 320df8bae1dSRodney W. Grimes * of outgoing interface. 321df8bae1dSRodney W. Grimes */ 322df8bae1dSRodney W. Grimes if (ip->ip_src.s_addr == INADDR_ANY) { 32338c1bc35SRuslan Ermilov /* Interface may have no addresses. */ 32438c1bc35SRuslan Ermilov if (ia != NULL) 32538c1bc35SRuslan Ermilov ip->ip_src = IA_SIN(ia)->sin_addr; 326df8bae1dSRodney W. Grimes } 327df8bae1dSRodney W. Grimes 32892bdb2faSBill Fenner if (ip_mrouter && (flags & IP_FORWARDING) == 0) { 32992bdb2faSBill Fenner /* 33092bdb2faSBill Fenner * XXX 33192bdb2faSBill Fenner * delayed checksums are not currently 33292bdb2faSBill Fenner * compatible with IP multicast routing 33392bdb2faSBill Fenner */ 33492bdb2faSBill Fenner if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) { 33592bdb2faSBill Fenner in_delayed_cksum(m); 33692bdb2faSBill Fenner m->m_pkthdr.csum_flags &= 33792bdb2faSBill Fenner ~CSUM_DELAY_DATA; 33892bdb2faSBill Fenner } 33992bdb2faSBill Fenner } 3403efc3014SJulian Elischer IN_LOOKUP_MULTI(pkt_dst, ifp, inm); 341df8bae1dSRodney W. Grimes if (inm != NULL && 342df8bae1dSRodney W. Grimes (imo == NULL || imo->imo_multicast_loop)) { 343df8bae1dSRodney W. Grimes /* 344df8bae1dSRodney W. Grimes * If we belong to the destination multicast group 345df8bae1dSRodney W. Grimes * on the outgoing interface, and the caller did not 346df8bae1dSRodney W. Grimes * forbid loopback, loop back a copy. 347df8bae1dSRodney W. Grimes */ 34886b1d6d2SBill Fenner ip_mloopback(ifp, m, dst, hlen); 349df8bae1dSRodney W. Grimes } 350df8bae1dSRodney W. Grimes else { 351df8bae1dSRodney W. Grimes /* 352df8bae1dSRodney W. Grimes * If we are acting as a multicast router, perform 353df8bae1dSRodney W. Grimes * multicast forwarding as if the packet had just 354df8bae1dSRodney W. Grimes * arrived on the interface to which we are about 355df8bae1dSRodney W. Grimes * to send. The multicast forwarding function 356df8bae1dSRodney W. Grimes * recursively calls this function, using the 357df8bae1dSRodney W. Grimes * IP_FORWARDING flag to prevent infinite recursion. 358df8bae1dSRodney W. Grimes * 359df8bae1dSRodney W. Grimes * Multicasts that are looped back by ip_mloopback(), 360df8bae1dSRodney W. Grimes * above, will be forwarded by the ip_input() routine, 361df8bae1dSRodney W. Grimes * if necessary. 362df8bae1dSRodney W. Grimes */ 363df8bae1dSRodney W. Grimes if (ip_mrouter && (flags & IP_FORWARDING) == 0) { 364f0068c4aSGarrett Wollman /* 365f0068c4aSGarrett Wollman * Check if rsvp daemon is running. If not, don't 366f0068c4aSGarrett Wollman * set ip_moptions. This ensures that the packet 367f0068c4aSGarrett Wollman * is multicast and not just sent down one link 368f0068c4aSGarrett Wollman * as prescribed by rsvpd. 369f0068c4aSGarrett Wollman */ 370b124e4f2SGarrett Wollman if (!rsvp_on) 371f0068c4aSGarrett Wollman imo = NULL; 372f0068c4aSGarrett Wollman if (ip_mforward(ip, ifp, m, imo) != 0) { 373df8bae1dSRodney W. Grimes m_freem(m); 374df8bae1dSRodney W. Grimes goto done; 375df8bae1dSRodney W. Grimes } 376df8bae1dSRodney W. Grimes } 377df8bae1dSRodney W. Grimes } 3785e9ae478SGarrett Wollman 379df8bae1dSRodney W. Grimes /* 380df8bae1dSRodney W. Grimes * Multicasts with a time-to-live of zero may be looped- 381df8bae1dSRodney W. Grimes * back, above, but must not be transmitted on a network. 382df8bae1dSRodney W. Grimes * Also, multicasts addressed to the loopback interface 383df8bae1dSRodney W. Grimes * are not sent -- the above call to ip_mloopback() will 384df8bae1dSRodney W. Grimes * loop back a copy if this host actually belongs to the 385df8bae1dSRodney W. Grimes * destination group on the loopback interface. 386df8bae1dSRodney W. Grimes */ 387f5fea3ddSPaul Traina if (ip->ip_ttl == 0 || ifp->if_flags & IFF_LOOPBACK) { 388df8bae1dSRodney W. Grimes m_freem(m); 389df8bae1dSRodney W. Grimes goto done; 390df8bae1dSRodney W. Grimes } 391df8bae1dSRodney W. Grimes 392df8bae1dSRodney W. Grimes goto sendit; 393df8bae1dSRodney W. Grimes } 394df8bae1dSRodney W. Grimes #ifndef notdef 395df8bae1dSRodney W. Grimes /* 396df8bae1dSRodney W. Grimes * If source address not specified yet, use address 397df8bae1dSRodney W. Grimes * of outgoing interface. 398df8bae1dSRodney W. Grimes */ 399f9e354dfSJulian Elischer if (ip->ip_src.s_addr == INADDR_ANY) { 40038c1bc35SRuslan Ermilov /* Interface may have no addresses. */ 40138c1bc35SRuslan Ermilov if (ia != NULL) { 402df8bae1dSRodney W. Grimes ip->ip_src = IA_SIN(ia)->sin_addr; 403f9e354dfSJulian Elischer #ifdef IPFIREWALL_FORWARD 404f9e354dfSJulian Elischer /* Keep note that we did this - if the firewall changes 405f9e354dfSJulian Elischer * the next-hop, our interface may change, changing the 406f9e354dfSJulian Elischer * default source IP. It's a shame so much effort happens 407f9e354dfSJulian Elischer * twice. Oh well. 408f9e354dfSJulian Elischer */ 409f9e354dfSJulian Elischer fwd_rewrite_src++; 410f9e354dfSJulian Elischer #endif /* IPFIREWALL_FORWARD */ 411f9e354dfSJulian Elischer } 41238c1bc35SRuslan Ermilov } 413f9e354dfSJulian Elischer #endif /* notdef */ 414df8bae1dSRodney W. Grimes /* 415b5390296SDavid Greenman * Verify that we have any chance at all of being able to queue 416b5390296SDavid Greenman * the packet or packet fragments 417b5390296SDavid Greenman */ 418b5390296SDavid Greenman if ((ifp->if_snd.ifq_len + ip->ip_len / ifp->if_mtu + 1) >= 419b5390296SDavid Greenman ifp->if_snd.ifq_maxlen) { 420b5390296SDavid Greenman error = ENOBUFS; 42135609d45SJonathan Lemon ipstat.ips_odropped++; 422b5390296SDavid Greenman goto bad; 423b5390296SDavid Greenman } 424b5390296SDavid Greenman 4258c3f5566SRuslan Ermilov /* 127/8 must not appear on wire - RFC1122. */ 4268c3f5566SRuslan Ermilov if ((ntohl(ip->ip_dst.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET || 4278c3f5566SRuslan Ermilov (ntohl(ip->ip_src.s_addr) >> IN_CLASSA_NSHIFT) == IN_LOOPBACKNET) { 4288c3f5566SRuslan Ermilov if ((ifp->if_flags & IFF_LOOPBACK) == 0) { 4298c3f5566SRuslan Ermilov ipstat.ips_badaddr++; 4308c3f5566SRuslan Ermilov error = EADDRNOTAVAIL; 4318c3f5566SRuslan Ermilov goto bad; 4328c3f5566SRuslan Ermilov } 4338c3f5566SRuslan Ermilov } 4348c3f5566SRuslan Ermilov 435b5390296SDavid Greenman /* 436df8bae1dSRodney W. Grimes * Look for broadcast address and 4378c3f5566SRuslan Ermilov * verify user is allowed to send 438df8bae1dSRodney W. Grimes * such a packet. 439df8bae1dSRodney W. Grimes */ 4409f9b3dc4SGarrett Wollman if (isbroadcast) { 441df8bae1dSRodney W. Grimes if ((ifp->if_flags & IFF_BROADCAST) == 0) { 442df8bae1dSRodney W. Grimes error = EADDRNOTAVAIL; 443df8bae1dSRodney W. Grimes goto bad; 444df8bae1dSRodney W. Grimes } 445df8bae1dSRodney W. Grimes if ((flags & IP_ALLOWBROADCAST) == 0) { 446df8bae1dSRodney W. Grimes error = EACCES; 447df8bae1dSRodney W. Grimes goto bad; 448df8bae1dSRodney W. Grimes } 449df8bae1dSRodney W. Grimes /* don't allow broadcast messages to be fragmented */ 450df8bae1dSRodney W. Grimes if ((u_short)ip->ip_len > ifp->if_mtu) { 451df8bae1dSRodney W. Grimes error = EMSGSIZE; 452df8bae1dSRodney W. Grimes goto bad; 453df8bae1dSRodney W. Grimes } 454df8bae1dSRodney W. Grimes m->m_flags |= M_BCAST; 4559f9b3dc4SGarrett Wollman } else { 456df8bae1dSRodney W. Grimes m->m_flags &= ~M_BCAST; 4579f9b3dc4SGarrett Wollman } 458df8bae1dSRodney W. Grimes 459f1743588SDarren Reed sendit: 46033841545SHajimu UMEMOTO #ifdef IPSEC 46133841545SHajimu UMEMOTO /* get SP for this packet */ 46233841545SHajimu UMEMOTO if (so == NULL) 46333841545SHajimu UMEMOTO sp = ipsec4_getpolicybyaddr(m, IPSEC_DIR_OUTBOUND, flags, &error); 46433841545SHajimu UMEMOTO else 46533841545SHajimu UMEMOTO sp = ipsec4_getpolicybysock(m, IPSEC_DIR_OUTBOUND, so, &error); 46633841545SHajimu UMEMOTO 46733841545SHajimu UMEMOTO if (sp == NULL) { 46833841545SHajimu UMEMOTO ipsecstat.out_inval++; 46933841545SHajimu UMEMOTO goto bad; 47033841545SHajimu UMEMOTO } 47133841545SHajimu UMEMOTO 47233841545SHajimu UMEMOTO error = 0; 47333841545SHajimu UMEMOTO 47433841545SHajimu UMEMOTO /* check policy */ 47533841545SHajimu UMEMOTO switch (sp->policy) { 47633841545SHajimu UMEMOTO case IPSEC_POLICY_DISCARD: 47733841545SHajimu UMEMOTO /* 47833841545SHajimu UMEMOTO * This packet is just discarded. 47933841545SHajimu UMEMOTO */ 48033841545SHajimu UMEMOTO ipsecstat.out_polvio++; 48133841545SHajimu UMEMOTO goto bad; 48233841545SHajimu UMEMOTO 48333841545SHajimu UMEMOTO case IPSEC_POLICY_BYPASS: 48433841545SHajimu UMEMOTO case IPSEC_POLICY_NONE: 48533841545SHajimu UMEMOTO /* no need to do IPsec. */ 48633841545SHajimu UMEMOTO goto skip_ipsec; 48733841545SHajimu UMEMOTO 48833841545SHajimu UMEMOTO case IPSEC_POLICY_IPSEC: 48933841545SHajimu UMEMOTO if (sp->req == NULL) { 49033841545SHajimu UMEMOTO /* acquire a policy */ 49133841545SHajimu UMEMOTO error = key_spdacquire(sp); 49233841545SHajimu UMEMOTO goto bad; 49333841545SHajimu UMEMOTO } 49433841545SHajimu UMEMOTO break; 49533841545SHajimu UMEMOTO 49633841545SHajimu UMEMOTO case IPSEC_POLICY_ENTRUST: 49733841545SHajimu UMEMOTO default: 49833841545SHajimu UMEMOTO printf("ip_output: Invalid policy found. %d\n", sp->policy); 49933841545SHajimu UMEMOTO } 50033841545SHajimu UMEMOTO { 50133841545SHajimu UMEMOTO struct ipsec_output_state state; 50233841545SHajimu UMEMOTO bzero(&state, sizeof(state)); 50333841545SHajimu UMEMOTO state.m = m; 50433841545SHajimu UMEMOTO if (flags & IP_ROUTETOIF) { 50533841545SHajimu UMEMOTO state.ro = &iproute; 50633841545SHajimu UMEMOTO bzero(&iproute, sizeof(iproute)); 50733841545SHajimu UMEMOTO } else 50833841545SHajimu UMEMOTO state.ro = ro; 50933841545SHajimu UMEMOTO state.dst = (struct sockaddr *)dst; 51033841545SHajimu UMEMOTO 51133841545SHajimu UMEMOTO ip->ip_sum = 0; 51233841545SHajimu UMEMOTO 51333841545SHajimu UMEMOTO /* 51433841545SHajimu UMEMOTO * XXX 51533841545SHajimu UMEMOTO * delayed checksums are not currently compatible with IPsec 51633841545SHajimu UMEMOTO */ 51733841545SHajimu UMEMOTO if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) { 51833841545SHajimu UMEMOTO in_delayed_cksum(m); 51933841545SHajimu UMEMOTO m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA; 52033841545SHajimu UMEMOTO } 52133841545SHajimu UMEMOTO 52233841545SHajimu UMEMOTO HTONS(ip->ip_len); 52333841545SHajimu UMEMOTO HTONS(ip->ip_off); 52433841545SHajimu UMEMOTO 52533841545SHajimu UMEMOTO error = ipsec4_output(&state, sp, flags); 52633841545SHajimu UMEMOTO 52733841545SHajimu UMEMOTO m = state.m; 52833841545SHajimu UMEMOTO if (flags & IP_ROUTETOIF) { 52933841545SHajimu UMEMOTO /* 53033841545SHajimu UMEMOTO * if we have tunnel mode SA, we may need to ignore 53133841545SHajimu UMEMOTO * IP_ROUTETOIF. 53233841545SHajimu UMEMOTO */ 53333841545SHajimu UMEMOTO if (state.ro != &iproute || state.ro->ro_rt != NULL) { 53433841545SHajimu UMEMOTO flags &= ~IP_ROUTETOIF; 53533841545SHajimu UMEMOTO ro = state.ro; 53633841545SHajimu UMEMOTO } 53733841545SHajimu UMEMOTO } else 53833841545SHajimu UMEMOTO ro = state.ro; 53933841545SHajimu UMEMOTO dst = (struct sockaddr_in *)state.dst; 54033841545SHajimu UMEMOTO if (error) { 54133841545SHajimu UMEMOTO /* mbuf is already reclaimed in ipsec4_output. */ 54233841545SHajimu UMEMOTO m0 = NULL; 54333841545SHajimu UMEMOTO switch (error) { 54433841545SHajimu UMEMOTO case EHOSTUNREACH: 54533841545SHajimu UMEMOTO case ENETUNREACH: 54633841545SHajimu UMEMOTO case EMSGSIZE: 54733841545SHajimu UMEMOTO case ENOBUFS: 54833841545SHajimu UMEMOTO case ENOMEM: 54933841545SHajimu UMEMOTO break; 55033841545SHajimu UMEMOTO default: 55133841545SHajimu UMEMOTO printf("ip4_output (ipsec): error code %d\n", error); 55233841545SHajimu UMEMOTO /*fall through*/ 55333841545SHajimu UMEMOTO case ENOENT: 55433841545SHajimu UMEMOTO /* don't show these error codes to the user */ 55533841545SHajimu UMEMOTO error = 0; 55633841545SHajimu UMEMOTO break; 55733841545SHajimu UMEMOTO } 55833841545SHajimu UMEMOTO goto bad; 55933841545SHajimu UMEMOTO } 56033841545SHajimu UMEMOTO } 56133841545SHajimu UMEMOTO 56233841545SHajimu UMEMOTO /* be sure to update variables that are affected by ipsec4_output() */ 56333841545SHajimu UMEMOTO ip = mtod(m, struct ip *); 56433841545SHajimu UMEMOTO #ifdef _IP_VHL 56533841545SHajimu UMEMOTO hlen = IP_VHL_HL(ip->ip_vhl) << 2; 56633841545SHajimu UMEMOTO #else 56733841545SHajimu UMEMOTO hlen = ip->ip_hl << 2; 56833841545SHajimu UMEMOTO #endif 56933841545SHajimu UMEMOTO if (ro->ro_rt == NULL) { 57033841545SHajimu UMEMOTO if ((flags & IP_ROUTETOIF) == 0) { 57133841545SHajimu UMEMOTO printf("ip_output: " 57233841545SHajimu UMEMOTO "can't update route after IPsec processing\n"); 57333841545SHajimu UMEMOTO error = EHOSTUNREACH; /*XXX*/ 57433841545SHajimu UMEMOTO goto bad; 57533841545SHajimu UMEMOTO } 57633841545SHajimu UMEMOTO } else { 57733841545SHajimu UMEMOTO ia = ifatoia(ro->ro_rt->rt_ifa); 57833841545SHajimu UMEMOTO ifp = ro->ro_rt->rt_ifp; 57933841545SHajimu UMEMOTO } 58033841545SHajimu UMEMOTO 58133841545SHajimu UMEMOTO /* make it flipped, again. */ 58233841545SHajimu UMEMOTO NTOHS(ip->ip_len); 58333841545SHajimu UMEMOTO NTOHS(ip->ip_off); 58433841545SHajimu UMEMOTO skip_ipsec: 58533841545SHajimu UMEMOTO #endif /*IPSEC*/ 58633841545SHajimu UMEMOTO 587fed1c7e9SSøren Schmidt /* 588fed1c7e9SSøren Schmidt * IpHack's section. 589fed1c7e9SSøren Schmidt * - Xlate: translate packet's addr/port (NAT). 590e4676ba6SJulian Elischer * - Firewall: deny/allow/etc. 591fed1c7e9SSøren Schmidt * - Wrap: fake packet's addr/port <unimpl.> 592fed1c7e9SSøren Schmidt * - Encapsulate: put it in another IP and send out. <unimp.> 593fed1c7e9SSøren Schmidt */ 594c4ac87eaSDarren Reed #ifdef PFIL_HOOKS 595c4ac87eaSDarren Reed /* 596c4ac87eaSDarren Reed * Run through list of hooks for output packets. 597c4ac87eaSDarren Reed */ 598c4ac87eaSDarren Reed m1 = m; 599c4ac87eaSDarren Reed pfh = pfil_hook_get(PFIL_OUT, &inetsw[ip_protox[IPPROTO_IP]].pr_pfh); 600fc2ffbe6SPoul-Henning Kamp for (; pfh; pfh = TAILQ_NEXT(pfh, pfil_link)) 601c4ac87eaSDarren Reed if (pfh->pfil_func) { 602c4ac87eaSDarren Reed rv = pfh->pfil_func(ip, hlen, ifp, 1, &m1); 603c4ac87eaSDarren Reed if (rv) { 604c4ac87eaSDarren Reed error = EHOSTUNREACH; 6051ee25934SPeter Wemm goto done; 6061ee25934SPeter Wemm } 607c4ac87eaSDarren Reed m = m1; 608c4ac87eaSDarren Reed if (m == NULL) 609c4ac87eaSDarren Reed goto done; 610c4ac87eaSDarren Reed ip = mtod(m, struct ip *); 611c4ac87eaSDarren Reed } 612c4ac87eaSDarren Reed #endif /* PFIL_HOOKS */ 613fed1c7e9SSøren Schmidt 614df8bae1dSRodney W. Grimes /* 615e7319babSPoul-Henning Kamp * Check with the firewall... 6163efc3014SJulian Elischer * but not if we are already being fwd'd from a firewall. 617e7319babSPoul-Henning Kamp */ 6183efc3014SJulian Elischer if (fw_enable && IPFW_LOADED && !ip_fw_fwd_addr) { 6199de9737fSPeter Wemm struct sockaddr_in *old = dst; 620b715f178SLuigi Rizzo 6217b109fa4SLuigi Rizzo off = ip_fw_chk_ptr(&ip, 6228948e4baSArchie Cobbs hlen, ifp, &divert_cookie, &m, &rule, &dst); 623b715f178SLuigi Rizzo /* 624b715f178SLuigi Rizzo * On return we must do the following: 625507b4b54SLuigi Rizzo * m == NULL -> drop the pkt (old interface, deprecated) 626aa1f5daaSJonathan Lemon * (off & IP_FW_PORT_DENY_FLAG) -> drop the pkt (new interface) 627b715f178SLuigi Rizzo * 1<=off<= 0xffff -> DIVERT 628aa1f5daaSJonathan Lemon * (off & IP_FW_PORT_DYNT_FLAG) -> send to a DUMMYNET pipe 629aa1f5daaSJonathan Lemon * (off & IP_FW_PORT_TEE_FLAG) -> TEE the packet 630b715f178SLuigi Rizzo * dst != old -> IPFIREWALL_FORWARD 631b715f178SLuigi Rizzo * off==0, dst==old -> accept 632aa1f5daaSJonathan Lemon * If some of the above modules are not compiled in, then 633b715f178SLuigi Rizzo * we should't have to check the corresponding condition 634b715f178SLuigi Rizzo * (because the ipfw control socket should not accept 635b715f178SLuigi Rizzo * unsupported rules), but better play safe and drop 636b715f178SLuigi Rizzo * packets in case of doubt. 637b715f178SLuigi Rizzo */ 638507b4b54SLuigi Rizzo if (off & IP_FW_PORT_DENY_FLAG) { /* XXX new interface-denied */ 639507b4b54SLuigi Rizzo if (m) 640507b4b54SLuigi Rizzo m_freem(m); 641507b4b54SLuigi Rizzo error = EACCES; 642507b4b54SLuigi Rizzo goto done; 643507b4b54SLuigi Rizzo } 644b715f178SLuigi Rizzo if (!m) { /* firewall said to reject */ 645507b4b54SLuigi Rizzo static int __debug=10; 646aa1f5daaSJonathan Lemon 647507b4b54SLuigi Rizzo if (__debug > 0) { 648aa1f5daaSJonathan Lemon printf( 649aa1f5daaSJonathan Lemon "firewall returns NULL, please update!\n"); 650507b4b54SLuigi Rizzo __debug--; 651507b4b54SLuigi Rizzo } 652e4676ba6SJulian Elischer error = EACCES; 653e4676ba6SJulian Elischer goto done; 65493e0e116SJulian Elischer } 655b715f178SLuigi Rizzo if (off == 0 && dst == old) /* common case */ 656b715f178SLuigi Rizzo goto pass; 6577b109fa4SLuigi Rizzo if (DUMMYNET_LOADED && (off & IP_FW_PORT_DYNT_FLAG) != 0) { 658b715f178SLuigi Rizzo /* 659b715f178SLuigi Rizzo * pass the pkt to dummynet. Need to include 660f0a53591SLuigi Rizzo * pipe number, m, ifp, ro, dst because these are 661b715f178SLuigi Rizzo * not recomputed in the next pass. 662b715f178SLuigi Rizzo * All other parameters have been already used and 663b715f178SLuigi Rizzo * so they are not needed anymore. 664b715f178SLuigi Rizzo * XXX note: if the ifp or ro entry are deleted 665b715f178SLuigi Rizzo * while a pkt is in dummynet, we are in trouble! 666b715f178SLuigi Rizzo */ 667db69a05dSPaul Saab error = ip_dn_io_ptr(off & 0xffff, DN_TO_IP_OUT, m, 6687a726a2dSLuigi Rizzo ifp, ro, dst, rule, flags); 669b715f178SLuigi Rizzo goto done; 670b715f178SLuigi Rizzo } 671b715f178SLuigi Rizzo #ifdef IPDIVERT 6728948e4baSArchie Cobbs if (off != 0 && (off & IP_FW_PORT_DYNT_FLAG) == 0) { 6738948e4baSArchie Cobbs struct mbuf *clone = NULL; 6748948e4baSArchie Cobbs 6758948e4baSArchie Cobbs /* Clone packet if we're doing a 'tee' */ 6768948e4baSArchie Cobbs if ((off & IP_FW_PORT_TEE_FLAG) != 0) 6778948e4baSArchie Cobbs clone = m_dup(m, M_DONTWAIT); 6788948e4baSArchie Cobbs 679ea53ecd9SJonathan Lemon /* 680ea53ecd9SJonathan Lemon * XXX 681ea53ecd9SJonathan Lemon * delayed checksums are not currently compatible 682ea53ecd9SJonathan Lemon * with divert sockets. 683ea53ecd9SJonathan Lemon */ 684ea53ecd9SJonathan Lemon if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) { 685ea53ecd9SJonathan Lemon in_delayed_cksum(m); 686ea53ecd9SJonathan Lemon m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA; 687ea53ecd9SJonathan Lemon } 688ea53ecd9SJonathan Lemon 6898948e4baSArchie Cobbs /* Restore packet header fields to original values */ 6908948e4baSArchie Cobbs HTONS(ip->ip_len); 6918948e4baSArchie Cobbs HTONS(ip->ip_off); 6928948e4baSArchie Cobbs 6938948e4baSArchie Cobbs /* Deliver packet to divert input routine */ 6948948e4baSArchie Cobbs ip_divert_cookie = divert_cookie; 6958948e4baSArchie Cobbs divert_packet(m, 0, off & 0xffff); 6968948e4baSArchie Cobbs 6978948e4baSArchie Cobbs /* If 'tee', continue with original packet */ 6988948e4baSArchie Cobbs if (clone != NULL) { 6998948e4baSArchie Cobbs m = clone; 7008948e4baSArchie Cobbs ip = mtod(m, struct ip *); 7018948e4baSArchie Cobbs goto pass; 7028948e4baSArchie Cobbs } 703b715f178SLuigi Rizzo goto done; 704b715f178SLuigi Rizzo } 705b715f178SLuigi Rizzo #endif 706b715f178SLuigi Rizzo 707f9e354dfSJulian Elischer #ifdef IPFIREWALL_FORWARD 708f9e354dfSJulian Elischer /* Here we check dst to make sure it's directly reachable on the 709f9e354dfSJulian Elischer * interface we previously thought it was. 710f9e354dfSJulian Elischer * If it isn't (which may be likely in some situations) we have 711f9e354dfSJulian Elischer * to re-route it (ie, find a route for the next-hop and the 712f9e354dfSJulian Elischer * associated interface) and set them here. This is nested 713f9e354dfSJulian Elischer * forwarding which in most cases is undesirable, except where 714f9e354dfSJulian Elischer * such control is nigh impossible. So we do it here. 715f9e354dfSJulian Elischer * And I'm babbling. 716f9e354dfSJulian Elischer */ 717b715f178SLuigi Rizzo if (off == 0 && old != dst) { 718f9e354dfSJulian Elischer struct in_ifaddr *ia; 719f9e354dfSJulian Elischer 720f9e354dfSJulian Elischer /* It's changed... */ 721f9e354dfSJulian Elischer /* There must be a better way to do this next line... */ 722f9e354dfSJulian Elischer static struct route sro_fwd, *ro_fwd = &sro_fwd; 723f9e354dfSJulian Elischer #ifdef IPFIREWALL_FORWARD_DEBUG 724f9e354dfSJulian Elischer printf("IPFIREWALL_FORWARD: New dst ip: "); 725f9e354dfSJulian Elischer print_ip(dst->sin_addr); 726f9e354dfSJulian Elischer printf("\n"); 727f9e354dfSJulian Elischer #endif 728f9e354dfSJulian Elischer /* 729f9e354dfSJulian Elischer * We need to figure out if we have been forwarded 730f9e354dfSJulian Elischer * to a local socket. If so then we should somehow 731f9e354dfSJulian Elischer * "loop back" to ip_input, and get directed to the 732f9e354dfSJulian Elischer * PCB as if we had received this packet. This is 733f9e354dfSJulian Elischer * because it may be dificult to identify the packets 734f9e354dfSJulian Elischer * you want to forward until they are being output 735f9e354dfSJulian Elischer * and have selected an interface. (e.g. locally 736f9e354dfSJulian Elischer * initiated packets) If we used the loopback inteface, 737f9e354dfSJulian Elischer * we would not be able to control what happens 738f9e354dfSJulian Elischer * as the packet runs through ip_input() as 739f9e354dfSJulian Elischer * it is done through a ISR. 740f9e354dfSJulian Elischer */ 741ca925d9cSJonathan Lemon LIST_FOREACH(ia, 742ca925d9cSJonathan Lemon INADDR_HASH(dst->sin_addr.s_addr), ia_hash) { 743f9e354dfSJulian Elischer /* 744f9e354dfSJulian Elischer * If the addr to forward to is one 745f9e354dfSJulian Elischer * of ours, we pretend to 746f9e354dfSJulian Elischer * be the destination for this packet. 747f9e354dfSJulian Elischer */ 748f9e354dfSJulian Elischer if (IA_SIN(ia)->sin_addr.s_addr == 749f9e354dfSJulian Elischer dst->sin_addr.s_addr) 750f9e354dfSJulian Elischer break; 751f9e354dfSJulian Elischer } 752f9e354dfSJulian Elischer if (ia) { 753f9e354dfSJulian Elischer /* tell ip_input "dont filter" */ 754f9e354dfSJulian Elischer ip_fw_fwd_addr = dst; 755f9e354dfSJulian Elischer if (m->m_pkthdr.rcvif == NULL) 756f9e354dfSJulian Elischer m->m_pkthdr.rcvif = ifunit("lo0"); 75720c822f3SJonathan Lemon if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA) { 75820c822f3SJonathan Lemon m->m_pkthdr.csum_flags |= 75920c822f3SJonathan Lemon CSUM_DATA_VALID | CSUM_PSEUDO_HDR; 76020c822f3SJonathan Lemon m0->m_pkthdr.csum_data = 0xffff; 76120c822f3SJonathan Lemon } 76220c822f3SJonathan Lemon m->m_pkthdr.csum_flags |= 76320c822f3SJonathan Lemon CSUM_IP_CHECKED | CSUM_IP_VALID; 76404287599SRuslan Ermilov HTONS(ip->ip_len); 76504287599SRuslan Ermilov HTONS(ip->ip_off); 766f9e354dfSJulian Elischer ip_input(m); 767f9e354dfSJulian Elischer goto done; 768f9e354dfSJulian Elischer } 769f9e354dfSJulian Elischer /* Some of the logic for this was 770f9e354dfSJulian Elischer * nicked from above. 771f9e354dfSJulian Elischer * 772f9e354dfSJulian Elischer * This rewrites the cached route in a local PCB. 773f9e354dfSJulian Elischer * Is this what we want to do? 774f9e354dfSJulian Elischer */ 775f9e354dfSJulian Elischer bcopy(dst, &ro_fwd->ro_dst, sizeof(*dst)); 776f9e354dfSJulian Elischer 777f9e354dfSJulian Elischer ro_fwd->ro_rt = 0; 778f9e354dfSJulian Elischer rtalloc_ign(ro_fwd, RTF_PRCLONING); 779f9e354dfSJulian Elischer 780f9e354dfSJulian Elischer if (ro_fwd->ro_rt == 0) { 781f9e354dfSJulian Elischer ipstat.ips_noroute++; 782f9e354dfSJulian Elischer error = EHOSTUNREACH; 783f9e354dfSJulian Elischer goto bad; 784f9e354dfSJulian Elischer } 785f9e354dfSJulian Elischer 786f9e354dfSJulian Elischer ia = ifatoia(ro_fwd->ro_rt->rt_ifa); 787f9e354dfSJulian Elischer ifp = ro_fwd->ro_rt->rt_ifp; 788f9e354dfSJulian Elischer ro_fwd->ro_rt->rt_use++; 789f9e354dfSJulian Elischer if (ro_fwd->ro_rt->rt_flags & RTF_GATEWAY) 790f9e354dfSJulian Elischer dst = (struct sockaddr_in *)ro_fwd->ro_rt->rt_gateway; 791f9e354dfSJulian Elischer if (ro_fwd->ro_rt->rt_flags & RTF_HOST) 792f9e354dfSJulian Elischer isbroadcast = 793f9e354dfSJulian Elischer (ro_fwd->ro_rt->rt_flags & RTF_BROADCAST); 794f9e354dfSJulian Elischer else 795f9e354dfSJulian Elischer isbroadcast = in_broadcast(dst->sin_addr, ifp); 7963f9e3122SYaroslav Tykhiy if (ro->ro_rt) 797f9e354dfSJulian Elischer RTFREE(ro->ro_rt); 798f9e354dfSJulian Elischer ro->ro_rt = ro_fwd->ro_rt; 799f9e354dfSJulian Elischer dst = (struct sockaddr_in *)&ro_fwd->ro_dst; 800f9e354dfSJulian Elischer 801f9e354dfSJulian Elischer /* 802f9e354dfSJulian Elischer * If we added a default src ip earlier, 803f9e354dfSJulian Elischer * which would have been gotten from the-then 804f9e354dfSJulian Elischer * interface, do it again, from the new one. 805f9e354dfSJulian Elischer */ 806f9e354dfSJulian Elischer if (fwd_rewrite_src) 807f9e354dfSJulian Elischer ip->ip_src = IA_SIN(ia)->sin_addr; 808b715f178SLuigi Rizzo goto pass ; 809f9e354dfSJulian Elischer } 810f9e354dfSJulian Elischer #endif /* IPFIREWALL_FORWARD */ 811b715f178SLuigi Rizzo /* 812b715f178SLuigi Rizzo * if we get here, none of the above matches, and 813b715f178SLuigi Rizzo * we have to drop the pkt 814b715f178SLuigi Rizzo */ 815b715f178SLuigi Rizzo m_freem(m); 816b715f178SLuigi Rizzo error = EACCES; /* not sure this is the right error msg */ 817b715f178SLuigi Rizzo goto done; 81893e0e116SJulian Elischer } 819e7319babSPoul-Henning Kamp 8203efc3014SJulian Elischer ip_fw_fwd_addr = NULL; 821b715f178SLuigi Rizzo pass: 822206a3274SRuslan Ermilov m->m_pkthdr.csum_flags |= CSUM_IP; 823206a3274SRuslan Ermilov sw_csum = m->m_pkthdr.csum_flags & ~ifp->if_hwassist; 824db4f9cc7SJonathan Lemon if (sw_csum & CSUM_DELAY_DATA) { 825db4f9cc7SJonathan Lemon in_delayed_cksum(m); 826db4f9cc7SJonathan Lemon sw_csum &= ~CSUM_DELAY_DATA; 827db4f9cc7SJonathan Lemon } 828206a3274SRuslan Ermilov m->m_pkthdr.csum_flags &= ifp->if_hwassist; 829db4f9cc7SJonathan Lemon 830e7319babSPoul-Henning Kamp /* 831db4f9cc7SJonathan Lemon * If small enough for interface, or the interface will take 832db4f9cc7SJonathan Lemon * care of the fragmentation for us, can just send directly. 833df8bae1dSRodney W. Grimes */ 834db4f9cc7SJonathan Lemon if ((u_short)ip->ip_len <= ifp->if_mtu || 835db4f9cc7SJonathan Lemon ifp->if_hwassist & CSUM_FRAGMENT) { 83604287599SRuslan Ermilov HTONS(ip->ip_len); 83704287599SRuslan Ermilov HTONS(ip->ip_off); 838df8bae1dSRodney W. Grimes ip->ip_sum = 0; 839db4f9cc7SJonathan Lemon if (sw_csum & CSUM_DELAY_IP) { 8409c9137eaSGarrett Wollman if (ip->ip_vhl == IP_VHL_BORING) { 8419c9137eaSGarrett Wollman ip->ip_sum = in_cksum_hdr(ip); 8429c9137eaSGarrett Wollman } else { 843df8bae1dSRodney W. Grimes ip->ip_sum = in_cksum(m, hlen); 8449c9137eaSGarrett Wollman } 845db4f9cc7SJonathan Lemon } 8465da9f8faSJosef Karthauser 8475da9f8faSJosef Karthauser /* Record statistics for this interface address. */ 84838c1bc35SRuslan Ermilov if (!(flags & IP_FORWARDING) && ia) { 8495da9f8faSJosef Karthauser ia->ia_ifa.if_opackets++; 8505da9f8faSJosef Karthauser ia->ia_ifa.if_obytes += m->m_pkthdr.len; 8515da9f8faSJosef Karthauser } 8525da9f8faSJosef Karthauser 85333841545SHajimu UMEMOTO #ifdef IPSEC 85433841545SHajimu UMEMOTO /* clean ipsec history once it goes out of the node */ 85533841545SHajimu UMEMOTO ipsec_delaux(m); 85633841545SHajimu UMEMOTO #endif 85733841545SHajimu UMEMOTO 858df8bae1dSRodney W. Grimes error = (*ifp->if_output)(ifp, m, 859df8bae1dSRodney W. Grimes (struct sockaddr *)dst, ro->ro_rt); 860df8bae1dSRodney W. Grimes goto done; 861df8bae1dSRodney W. Grimes } 862df8bae1dSRodney W. Grimes /* 863df8bae1dSRodney W. Grimes * Too large for interface; fragment if possible. 864df8bae1dSRodney W. Grimes * Must be able to put at least 8 bytes per fragment. 865df8bae1dSRodney W. Grimes */ 866df8bae1dSRodney W. Grimes if (ip->ip_off & IP_DF) { 867df8bae1dSRodney W. Grimes error = EMSGSIZE; 8683d1f141bSGarrett Wollman /* 8693d1f141bSGarrett Wollman * This case can happen if the user changed the MTU 8703d1f141bSGarrett Wollman * of an interface after enabling IP on it. Because 8713d1f141bSGarrett Wollman * most netifs don't keep track of routes pointing to 8723d1f141bSGarrett Wollman * them, there is no way for one to update all its 8733d1f141bSGarrett Wollman * routes when the MTU is changed. 8743d1f141bSGarrett Wollman */ 8753d1f141bSGarrett Wollman if ((ro->ro_rt->rt_flags & (RTF_UP | RTF_HOST)) 8763d1f141bSGarrett Wollman && !(ro->ro_rt->rt_rmx.rmx_locks & RTV_MTU) 8773d1f141bSGarrett Wollman && (ro->ro_rt->rt_rmx.rmx_mtu > ifp->if_mtu)) { 8783d1f141bSGarrett Wollman ro->ro_rt->rt_rmx.rmx_mtu = ifp->if_mtu; 8793d1f141bSGarrett Wollman } 880df8bae1dSRodney W. Grimes ipstat.ips_cantfrag++; 881df8bae1dSRodney W. Grimes goto bad; 882df8bae1dSRodney W. Grimes } 883df8bae1dSRodney W. Grimes len = (ifp->if_mtu - hlen) &~ 7; 884df8bae1dSRodney W. Grimes if (len < 8) { 885df8bae1dSRodney W. Grimes error = EMSGSIZE; 886df8bae1dSRodney W. Grimes goto bad; 887df8bae1dSRodney W. Grimes } 888df8bae1dSRodney W. Grimes 889db4f9cc7SJonathan Lemon /* 890db4f9cc7SJonathan Lemon * if the interface will not calculate checksums on 891db4f9cc7SJonathan Lemon * fragmented packets, then do it here. 892db4f9cc7SJonathan Lemon */ 893db4f9cc7SJonathan Lemon if (m->m_pkthdr.csum_flags & CSUM_DELAY_DATA && 894db4f9cc7SJonathan Lemon (ifp->if_hwassist & CSUM_IP_FRAGS) == 0) { 895db4f9cc7SJonathan Lemon in_delayed_cksum(m); 896db4f9cc7SJonathan Lemon m->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA; 897db4f9cc7SJonathan Lemon } 898db4f9cc7SJonathan Lemon 899df8bae1dSRodney W. Grimes { 900df8bae1dSRodney W. Grimes int mhlen, firstlen = len; 901df8bae1dSRodney W. Grimes struct mbuf **mnext = &m->m_nextpkt; 902db4f9cc7SJonathan Lemon int nfrags = 1; 903df8bae1dSRodney W. Grimes 904df8bae1dSRodney W. Grimes /* 905df8bae1dSRodney W. Grimes * Loop through length of segment after first fragment, 906df8bae1dSRodney W. Grimes * make new header and copy data of each part and link onto chain. 907df8bae1dSRodney W. Grimes */ 908df8bae1dSRodney W. Grimes m0 = m; 909df8bae1dSRodney W. Grimes mhlen = sizeof (struct ip); 910df8bae1dSRodney W. Grimes for (off = hlen + len; off < (u_short)ip->ip_len; off += len) { 911df8bae1dSRodney W. Grimes MGETHDR(m, M_DONTWAIT, MT_HEADER); 912df8bae1dSRodney W. Grimes if (m == 0) { 913df8bae1dSRodney W. Grimes error = ENOBUFS; 914df8bae1dSRodney W. Grimes ipstat.ips_odropped++; 915df8bae1dSRodney W. Grimes goto sendorfree; 916df8bae1dSRodney W. Grimes } 917db4f9cc7SJonathan Lemon m->m_flags |= (m0->m_flags & M_MCAST) | M_FRAG; 918df8bae1dSRodney W. Grimes m->m_data += max_linkhdr; 919df8bae1dSRodney W. Grimes mhip = mtod(m, struct ip *); 920df8bae1dSRodney W. Grimes *mhip = *ip; 921df8bae1dSRodney W. Grimes if (hlen > sizeof (struct ip)) { 922df8bae1dSRodney W. Grimes mhlen = ip_optcopy(ip, mhip) + sizeof (struct ip); 9239c9137eaSGarrett Wollman mhip->ip_vhl = IP_MAKE_VHL(IPVERSION, mhlen >> 2); 924df8bae1dSRodney W. Grimes } 925df8bae1dSRodney W. Grimes m->m_len = mhlen; 926cc22c7a7SRuslan Ermilov mhip->ip_off = ((off - hlen) >> 3) + ip->ip_off; 927df8bae1dSRodney W. Grimes if (off + len >= (u_short)ip->ip_len) 928df8bae1dSRodney W. Grimes len = (u_short)ip->ip_len - off; 929df8bae1dSRodney W. Grimes else 930df8bae1dSRodney W. Grimes mhip->ip_off |= IP_MF; 931df8bae1dSRodney W. Grimes mhip->ip_len = htons((u_short)(len + mhlen)); 932df8bae1dSRodney W. Grimes m->m_next = m_copy(m0, off, len); 933df8bae1dSRodney W. Grimes if (m->m_next == 0) { 934df8bae1dSRodney W. Grimes (void) m_free(m); 935df8bae1dSRodney W. Grimes error = ENOBUFS; /* ??? */ 936df8bae1dSRodney W. Grimes ipstat.ips_odropped++; 937df8bae1dSRodney W. Grimes goto sendorfree; 938df8bae1dSRodney W. Grimes } 939df8bae1dSRodney W. Grimes m->m_pkthdr.len = mhlen + len; 940df8bae1dSRodney W. Grimes m->m_pkthdr.rcvif = (struct ifnet *)0; 941db4f9cc7SJonathan Lemon m->m_pkthdr.csum_flags = m0->m_pkthdr.csum_flags; 94204287599SRuslan Ermilov HTONS(mhip->ip_off); 943df8bae1dSRodney W. Grimes mhip->ip_sum = 0; 944db4f9cc7SJonathan Lemon if (sw_csum & CSUM_DELAY_IP) { 9459c9137eaSGarrett Wollman if (mhip->ip_vhl == IP_VHL_BORING) { 946e2184122SBruce Evans mhip->ip_sum = in_cksum_hdr(mhip); 9479c9137eaSGarrett Wollman } else { 948df8bae1dSRodney W. Grimes mhip->ip_sum = in_cksum(m, mhlen); 9499c9137eaSGarrett Wollman } 950db4f9cc7SJonathan Lemon } 951df8bae1dSRodney W. Grimes *mnext = m; 952df8bae1dSRodney W. Grimes mnext = &m->m_nextpkt; 953db4f9cc7SJonathan Lemon nfrags++; 954df8bae1dSRodney W. Grimes } 955db4f9cc7SJonathan Lemon ipstat.ips_ofragments += nfrags; 956db4f9cc7SJonathan Lemon 957db4f9cc7SJonathan Lemon /* set first/last markers for fragment chain */ 958db4f9cc7SJonathan Lemon m->m_flags |= M_LASTFRAG; 959db4f9cc7SJonathan Lemon m0->m_flags |= M_FIRSTFRAG | M_FRAG; 960db4f9cc7SJonathan Lemon m0->m_pkthdr.csum_data = nfrags; 961db4f9cc7SJonathan Lemon 962df8bae1dSRodney W. Grimes /* 963df8bae1dSRodney W. Grimes * Update first fragment by trimming what's been copied out 964df8bae1dSRodney W. Grimes * and updating header, then send each fragment (in order). 965df8bae1dSRodney W. Grimes */ 966df8bae1dSRodney W. Grimes m = m0; 967df8bae1dSRodney W. Grimes m_adj(m, hlen + firstlen - (u_short)ip->ip_len); 968df8bae1dSRodney W. Grimes m->m_pkthdr.len = hlen + firstlen; 969df8bae1dSRodney W. Grimes ip->ip_len = htons((u_short)m->m_pkthdr.len); 97004287599SRuslan Ermilov ip->ip_off |= IP_MF; 97104287599SRuslan Ermilov HTONS(ip->ip_off); 972df8bae1dSRodney W. Grimes ip->ip_sum = 0; 973db4f9cc7SJonathan Lemon if (sw_csum & CSUM_DELAY_IP) { 9749c9137eaSGarrett Wollman if (ip->ip_vhl == IP_VHL_BORING) { 9759c9137eaSGarrett Wollman ip->ip_sum = in_cksum_hdr(ip); 9769c9137eaSGarrett Wollman } else { 977df8bae1dSRodney W. Grimes ip->ip_sum = in_cksum(m, hlen); 9789c9137eaSGarrett Wollman } 979db4f9cc7SJonathan Lemon } 980df8bae1dSRodney W. Grimes sendorfree: 981df8bae1dSRodney W. Grimes for (m = m0; m; m = m0) { 982df8bae1dSRodney W. Grimes m0 = m->m_nextpkt; 983df8bae1dSRodney W. Grimes m->m_nextpkt = 0; 98433841545SHajimu UMEMOTO #ifdef IPSEC 98533841545SHajimu UMEMOTO /* clean ipsec history once it goes out of the node */ 98633841545SHajimu UMEMOTO ipsec_delaux(m); 98733841545SHajimu UMEMOTO #endif 98807203494SDaniel C. Sobral if (error == 0) { 989fe937674SJosef Karthauser /* Record statistics for this interface address. */ 99007203494SDaniel C. Sobral if (ia != NULL) { 991fe937674SJosef Karthauser ia->ia_ifa.if_opackets++; 992fe937674SJosef Karthauser ia->ia_ifa.if_obytes += m->m_pkthdr.len; 99307203494SDaniel C. Sobral } 994fe937674SJosef Karthauser 995df8bae1dSRodney W. Grimes error = (*ifp->if_output)(ifp, m, 996df8bae1dSRodney W. Grimes (struct sockaddr *)dst, ro->ro_rt); 997fe937674SJosef Karthauser } else 998df8bae1dSRodney W. Grimes m_freem(m); 999df8bae1dSRodney W. Grimes } 1000df8bae1dSRodney W. Grimes 1001df8bae1dSRodney W. Grimes if (error == 0) 1002df8bae1dSRodney W. Grimes ipstat.ips_fragmented++; 1003df8bae1dSRodney W. Grimes } 1004df8bae1dSRodney W. Grimes done: 10056a800098SYoshinobu Inoue #ifdef IPSEC 10066a800098SYoshinobu Inoue if (ro == &iproute && ro->ro_rt) { 10076a800098SYoshinobu Inoue RTFREE(ro->ro_rt); 10086a800098SYoshinobu Inoue ro->ro_rt = NULL; 10096a800098SYoshinobu Inoue } 10106a800098SYoshinobu Inoue if (sp != NULL) { 10116a800098SYoshinobu Inoue KEYDEBUG(KEYDEBUG_IPSEC_STAMP, 10126a800098SYoshinobu Inoue printf("DP ip_output call free SP:%p\n", sp)); 10136a800098SYoshinobu Inoue key_freesp(sp); 10146a800098SYoshinobu Inoue } 10156a800098SYoshinobu Inoue #endif /* IPSEC */ 1016df8bae1dSRodney W. Grimes return (error); 1017df8bae1dSRodney W. Grimes bad: 10183528d68fSBill Paul m_freem(m); 1019df8bae1dSRodney W. Grimes goto done; 1020df8bae1dSRodney W. Grimes } 1021df8bae1dSRodney W. Grimes 10221c238475SJonathan Lemon void 1023db4f9cc7SJonathan Lemon in_delayed_cksum(struct mbuf *m) 1024db4f9cc7SJonathan Lemon { 1025db4f9cc7SJonathan Lemon struct ip *ip; 1026db4f9cc7SJonathan Lemon u_short csum, offset; 1027db4f9cc7SJonathan Lemon 1028db4f9cc7SJonathan Lemon ip = mtod(m, struct ip *); 1029db4f9cc7SJonathan Lemon offset = IP_VHL_HL(ip->ip_vhl) << 2 ; 1030db4f9cc7SJonathan Lemon csum = in_cksum_skip(m, ip->ip_len, offset); 1031206a3274SRuslan Ermilov if (m->m_pkthdr.csum_flags & CSUM_UDP && csum == 0) 1032206a3274SRuslan Ermilov csum = 0xffff; 1033db4f9cc7SJonathan Lemon offset += m->m_pkthdr.csum_data; /* checksum offset */ 1034db4f9cc7SJonathan Lemon 1035db4f9cc7SJonathan Lemon if (offset + sizeof(u_short) > m->m_len) { 1036db4f9cc7SJonathan Lemon printf("delayed m_pullup, m->len: %d off: %d p: %d\n", 1037db4f9cc7SJonathan Lemon m->m_len, offset, ip->ip_p); 1038db4f9cc7SJonathan Lemon /* 1039db4f9cc7SJonathan Lemon * XXX 1040db4f9cc7SJonathan Lemon * this shouldn't happen, but if it does, the 1041db4f9cc7SJonathan Lemon * correct behavior may be to insert the checksum 1042db4f9cc7SJonathan Lemon * in the existing chain instead of rearranging it. 1043db4f9cc7SJonathan Lemon */ 1044db4f9cc7SJonathan Lemon m = m_pullup(m, offset + sizeof(u_short)); 1045db4f9cc7SJonathan Lemon } 1046db4f9cc7SJonathan Lemon *(u_short *)(m->m_data + offset) = csum; 1047db4f9cc7SJonathan Lemon } 1048db4f9cc7SJonathan Lemon 1049df8bae1dSRodney W. Grimes /* 1050df8bae1dSRodney W. Grimes * Insert IP options into preformed packet. 1051df8bae1dSRodney W. Grimes * Adjust IP destination as required for IP source routing, 1052df8bae1dSRodney W. Grimes * as indicated by a non-zero in_addr at the start of the options. 1053072b9b24SPaul Traina * 1054072b9b24SPaul Traina * XXX This routine assumes that the packet has no options in place. 1055df8bae1dSRodney W. Grimes */ 1056df8bae1dSRodney W. Grimes static struct mbuf * 1057df8bae1dSRodney W. Grimes ip_insertoptions(m, opt, phlen) 1058df8bae1dSRodney W. Grimes register struct mbuf *m; 1059df8bae1dSRodney W. Grimes struct mbuf *opt; 1060df8bae1dSRodney W. Grimes int *phlen; 1061df8bae1dSRodney W. Grimes { 1062df8bae1dSRodney W. Grimes register struct ipoption *p = mtod(opt, struct ipoption *); 1063df8bae1dSRodney W. Grimes struct mbuf *n; 1064df8bae1dSRodney W. Grimes register struct ip *ip = mtod(m, struct ip *); 1065df8bae1dSRodney W. Grimes unsigned optlen; 1066df8bae1dSRodney W. Grimes 1067df8bae1dSRodney W. Grimes optlen = opt->m_len - sizeof(p->ipopt_dst); 1068df8bae1dSRodney W. Grimes if (optlen + (u_short)ip->ip_len > IP_MAXPACKET) 1069df8bae1dSRodney W. Grimes return (m); /* XXX should fail */ 1070df8bae1dSRodney W. Grimes if (p->ipopt_dst.s_addr) 1071df8bae1dSRodney W. Grimes ip->ip_dst = p->ipopt_dst; 1072df8bae1dSRodney W. Grimes if (m->m_flags & M_EXT || m->m_data - optlen < m->m_pktdat) { 1073df8bae1dSRodney W. Grimes MGETHDR(n, M_DONTWAIT, MT_HEADER); 1074df8bae1dSRodney W. Grimes if (n == 0) 1075df8bae1dSRodney W. Grimes return (m); 10765db1e34eSRuslan Ermilov n->m_pkthdr.rcvif = (struct ifnet *)0; 1077df8bae1dSRodney W. Grimes n->m_pkthdr.len = m->m_pkthdr.len + optlen; 1078df8bae1dSRodney W. Grimes m->m_len -= sizeof(struct ip); 1079df8bae1dSRodney W. Grimes m->m_data += sizeof(struct ip); 1080df8bae1dSRodney W. Grimes n->m_next = m; 1081df8bae1dSRodney W. Grimes m = n; 1082df8bae1dSRodney W. Grimes m->m_len = optlen + sizeof(struct ip); 1083df8bae1dSRodney W. Grimes m->m_data += max_linkhdr; 108494a5d9b6SDavid Greenman (void)memcpy(mtod(m, void *), ip, sizeof(struct ip)); 1085df8bae1dSRodney W. Grimes } else { 1086df8bae1dSRodney W. Grimes m->m_data -= optlen; 1087df8bae1dSRodney W. Grimes m->m_len += optlen; 1088df8bae1dSRodney W. Grimes m->m_pkthdr.len += optlen; 1089df8bae1dSRodney W. Grimes ovbcopy((caddr_t)ip, mtod(m, caddr_t), sizeof(struct ip)); 1090df8bae1dSRodney W. Grimes } 1091df8bae1dSRodney W. Grimes ip = mtod(m, struct ip *); 10920453d3cbSBruce Evans bcopy(p->ipopt_list, ip + 1, optlen); 1093df8bae1dSRodney W. Grimes *phlen = sizeof(struct ip) + optlen; 10949c9137eaSGarrett Wollman ip->ip_vhl = IP_MAKE_VHL(IPVERSION, *phlen >> 2); 1095df8bae1dSRodney W. Grimes ip->ip_len += optlen; 1096df8bae1dSRodney W. Grimes return (m); 1097df8bae1dSRodney W. Grimes } 1098df8bae1dSRodney W. Grimes 1099df8bae1dSRodney W. Grimes /* 1100df8bae1dSRodney W. Grimes * Copy options from ip to jp, 1101df8bae1dSRodney W. Grimes * omitting those not copied during fragmentation. 1102df8bae1dSRodney W. Grimes */ 1103beec8214SDarren Reed int 1104df8bae1dSRodney W. Grimes ip_optcopy(ip, jp) 1105df8bae1dSRodney W. Grimes struct ip *ip, *jp; 1106df8bae1dSRodney W. Grimes { 1107df8bae1dSRodney W. Grimes register u_char *cp, *dp; 1108df8bae1dSRodney W. Grimes int opt, optlen, cnt; 1109df8bae1dSRodney W. Grimes 1110df8bae1dSRodney W. Grimes cp = (u_char *)(ip + 1); 1111df8bae1dSRodney W. Grimes dp = (u_char *)(jp + 1); 11129c9137eaSGarrett Wollman cnt = (IP_VHL_HL(ip->ip_vhl) << 2) - sizeof (struct ip); 1113df8bae1dSRodney W. Grimes for (; cnt > 0; cnt -= optlen, cp += optlen) { 1114df8bae1dSRodney W. Grimes opt = cp[0]; 1115df8bae1dSRodney W. Grimes if (opt == IPOPT_EOL) 1116df8bae1dSRodney W. Grimes break; 1117df8bae1dSRodney W. Grimes if (opt == IPOPT_NOP) { 1118df8bae1dSRodney W. Grimes /* Preserve for IP mcast tunnel's LSRR alignment. */ 1119df8bae1dSRodney W. Grimes *dp++ = IPOPT_NOP; 1120df8bae1dSRodney W. Grimes optlen = 1; 1121df8bae1dSRodney W. Grimes continue; 1122686cdd19SJun-ichiro itojun Hagino } 1123686cdd19SJun-ichiro itojun Hagino #ifdef DIAGNOSTIC 1124686cdd19SJun-ichiro itojun Hagino if (cnt < IPOPT_OLEN + sizeof(*cp)) 1125686cdd19SJun-ichiro itojun Hagino panic("malformed IPv4 option passed to ip_optcopy"); 1126686cdd19SJun-ichiro itojun Hagino #endif 1127df8bae1dSRodney W. Grimes optlen = cp[IPOPT_OLEN]; 1128686cdd19SJun-ichiro itojun Hagino #ifdef DIAGNOSTIC 1129686cdd19SJun-ichiro itojun Hagino if (optlen < IPOPT_OLEN + sizeof(*cp) || optlen > cnt) 1130686cdd19SJun-ichiro itojun Hagino panic("malformed IPv4 option passed to ip_optcopy"); 1131686cdd19SJun-ichiro itojun Hagino #endif 1132df8bae1dSRodney W. Grimes /* bogus lengths should have been caught by ip_dooptions */ 1133df8bae1dSRodney W. Grimes if (optlen > cnt) 1134df8bae1dSRodney W. Grimes optlen = cnt; 1135df8bae1dSRodney W. Grimes if (IPOPT_COPIED(opt)) { 11360453d3cbSBruce Evans bcopy(cp, dp, optlen); 1137df8bae1dSRodney W. Grimes dp += optlen; 1138df8bae1dSRodney W. Grimes } 1139df8bae1dSRodney W. Grimes } 1140df8bae1dSRodney W. Grimes for (optlen = dp - (u_char *)(jp+1); optlen & 0x3; optlen++) 1141df8bae1dSRodney W. Grimes *dp++ = IPOPT_EOL; 1142df8bae1dSRodney W. Grimes return (optlen); 1143df8bae1dSRodney W. Grimes } 1144df8bae1dSRodney W. Grimes 1145df8bae1dSRodney W. Grimes /* 1146df8bae1dSRodney W. Grimes * IP socket option processing. 1147df8bae1dSRodney W. Grimes */ 1148df8bae1dSRodney W. Grimes int 1149cfe8b629SGarrett Wollman ip_ctloutput(so, sopt) 1150df8bae1dSRodney W. Grimes struct socket *so; 1151cfe8b629SGarrett Wollman struct sockopt *sopt; 1152df8bae1dSRodney W. Grimes { 1153cfe8b629SGarrett Wollman struct inpcb *inp = sotoinpcb(so); 1154cfe8b629SGarrett Wollman int error, optval; 1155df8bae1dSRodney W. Grimes 1156cfe8b629SGarrett Wollman error = optval = 0; 1157cfe8b629SGarrett Wollman if (sopt->sopt_level != IPPROTO_IP) { 1158cfe8b629SGarrett Wollman return (EINVAL); 1159cfe8b629SGarrett Wollman } 1160df8bae1dSRodney W. Grimes 1161cfe8b629SGarrett Wollman switch (sopt->sopt_dir) { 1162cfe8b629SGarrett Wollman case SOPT_SET: 1163cfe8b629SGarrett Wollman switch (sopt->sopt_name) { 1164df8bae1dSRodney W. Grimes case IP_OPTIONS: 1165df8bae1dSRodney W. Grimes #ifdef notyet 1166df8bae1dSRodney W. Grimes case IP_RETOPTS: 1167df8bae1dSRodney W. Grimes #endif 1168cfe8b629SGarrett Wollman { 1169cfe8b629SGarrett Wollman struct mbuf *m; 1170cfe8b629SGarrett Wollman if (sopt->sopt_valsize > MLEN) { 1171cfe8b629SGarrett Wollman error = EMSGSIZE; 1172cfe8b629SGarrett Wollman break; 1173cfe8b629SGarrett Wollman } 1174b40ce416SJulian Elischer MGET(m, sopt->sopt_td ? M_TRYWAIT : M_DONTWAIT, MT_HEADER); 1175cfe8b629SGarrett Wollman if (m == 0) { 1176cfe8b629SGarrett Wollman error = ENOBUFS; 1177cfe8b629SGarrett Wollman break; 1178cfe8b629SGarrett Wollman } 1179cfe8b629SGarrett Wollman m->m_len = sopt->sopt_valsize; 1180cfe8b629SGarrett Wollman error = sooptcopyin(sopt, mtod(m, char *), m->m_len, 1181cfe8b629SGarrett Wollman m->m_len); 1182cfe8b629SGarrett Wollman 1183cfe8b629SGarrett Wollman return (ip_pcbopts(sopt->sopt_name, &inp->inp_options, 1184cfe8b629SGarrett Wollman m)); 1185cfe8b629SGarrett Wollman } 1186df8bae1dSRodney W. Grimes 1187df8bae1dSRodney W. Grimes case IP_TOS: 1188df8bae1dSRodney W. Grimes case IP_TTL: 1189df8bae1dSRodney W. Grimes case IP_RECVOPTS: 1190df8bae1dSRodney W. Grimes case IP_RECVRETOPTS: 1191df8bae1dSRodney W. Grimes case IP_RECVDSTADDR: 119282c23ebaSBill Fenner case IP_RECVIF: 11936a800098SYoshinobu Inoue case IP_FAITH: 1194cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &optval, sizeof optval, 1195cfe8b629SGarrett Wollman sizeof optval); 1196cfe8b629SGarrett Wollman if (error) 1197cfe8b629SGarrett Wollman break; 1198df8bae1dSRodney W. Grimes 1199cfe8b629SGarrett Wollman switch (sopt->sopt_name) { 1200df8bae1dSRodney W. Grimes case IP_TOS: 1201ca98b82cSDavid Greenman inp->inp_ip_tos = optval; 1202df8bae1dSRodney W. Grimes break; 1203df8bae1dSRodney W. Grimes 1204df8bae1dSRodney W. Grimes case IP_TTL: 1205ca98b82cSDavid Greenman inp->inp_ip_ttl = optval; 1206df8bae1dSRodney W. Grimes break; 1207df8bae1dSRodney W. Grimes #define OPTSET(bit) \ 1208df8bae1dSRodney W. Grimes if (optval) \ 1209df8bae1dSRodney W. Grimes inp->inp_flags |= bit; \ 1210df8bae1dSRodney W. Grimes else \ 1211df8bae1dSRodney W. Grimes inp->inp_flags &= ~bit; 1212df8bae1dSRodney W. Grimes 1213df8bae1dSRodney W. Grimes case IP_RECVOPTS: 1214df8bae1dSRodney W. Grimes OPTSET(INP_RECVOPTS); 1215df8bae1dSRodney W. Grimes break; 1216df8bae1dSRodney W. Grimes 1217df8bae1dSRodney W. Grimes case IP_RECVRETOPTS: 1218df8bae1dSRodney W. Grimes OPTSET(INP_RECVRETOPTS); 1219df8bae1dSRodney W. Grimes break; 1220df8bae1dSRodney W. Grimes 1221df8bae1dSRodney W. Grimes case IP_RECVDSTADDR: 1222df8bae1dSRodney W. Grimes OPTSET(INP_RECVDSTADDR); 1223df8bae1dSRodney W. Grimes break; 122482c23ebaSBill Fenner 122582c23ebaSBill Fenner case IP_RECVIF: 122682c23ebaSBill Fenner OPTSET(INP_RECVIF); 122782c23ebaSBill Fenner break; 12286a800098SYoshinobu Inoue 12296a800098SYoshinobu Inoue case IP_FAITH: 12306a800098SYoshinobu Inoue OPTSET(INP_FAITH); 12316a800098SYoshinobu Inoue break; 1232df8bae1dSRodney W. Grimes } 1233df8bae1dSRodney W. Grimes break; 1234df8bae1dSRodney W. Grimes #undef OPTSET 1235df8bae1dSRodney W. Grimes 1236df8bae1dSRodney W. Grimes case IP_MULTICAST_IF: 1237f0068c4aSGarrett Wollman case IP_MULTICAST_VIF: 1238df8bae1dSRodney W. Grimes case IP_MULTICAST_TTL: 1239df8bae1dSRodney W. Grimes case IP_MULTICAST_LOOP: 1240df8bae1dSRodney W. Grimes case IP_ADD_MEMBERSHIP: 1241df8bae1dSRodney W. Grimes case IP_DROP_MEMBERSHIP: 1242cfe8b629SGarrett Wollman error = ip_setmoptions(sopt, &inp->inp_moptions); 1243df8bae1dSRodney W. Grimes break; 1244df8bae1dSRodney W. Grimes 124533b3ac06SPeter Wemm case IP_PORTRANGE: 1246cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &optval, sizeof optval, 1247cfe8b629SGarrett Wollman sizeof optval); 1248cfe8b629SGarrett Wollman if (error) 1249cfe8b629SGarrett Wollman break; 125033b3ac06SPeter Wemm 125133b3ac06SPeter Wemm switch (optval) { 125233b3ac06SPeter Wemm case IP_PORTRANGE_DEFAULT: 125333b3ac06SPeter Wemm inp->inp_flags &= ~(INP_LOWPORT); 125433b3ac06SPeter Wemm inp->inp_flags &= ~(INP_HIGHPORT); 125533b3ac06SPeter Wemm break; 125633b3ac06SPeter Wemm 125733b3ac06SPeter Wemm case IP_PORTRANGE_HIGH: 125833b3ac06SPeter Wemm inp->inp_flags &= ~(INP_LOWPORT); 125933b3ac06SPeter Wemm inp->inp_flags |= INP_HIGHPORT; 126033b3ac06SPeter Wemm break; 126133b3ac06SPeter Wemm 126233b3ac06SPeter Wemm case IP_PORTRANGE_LOW: 126333b3ac06SPeter Wemm inp->inp_flags &= ~(INP_HIGHPORT); 126433b3ac06SPeter Wemm inp->inp_flags |= INP_LOWPORT; 126533b3ac06SPeter Wemm break; 126633b3ac06SPeter Wemm 126733b3ac06SPeter Wemm default: 126833b3ac06SPeter Wemm error = EINVAL; 126933b3ac06SPeter Wemm break; 127033b3ac06SPeter Wemm } 1271ce8c72b1SPeter Wemm break; 127233b3ac06SPeter Wemm 12736a800098SYoshinobu Inoue #ifdef IPSEC 12746a800098SYoshinobu Inoue case IP_IPSEC_POLICY: 12756a800098SYoshinobu Inoue { 12766a800098SYoshinobu Inoue caddr_t req; 1277686cdd19SJun-ichiro itojun Hagino size_t len = 0; 12786a800098SYoshinobu Inoue int priv; 12796a800098SYoshinobu Inoue struct mbuf *m; 12806a800098SYoshinobu Inoue int optname; 12816a800098SYoshinobu Inoue 12826a800098SYoshinobu Inoue if ((error = soopt_getm(sopt, &m)) != 0) /* XXX */ 12836a800098SYoshinobu Inoue break; 12846a800098SYoshinobu Inoue if ((error = soopt_mcopyin(sopt, m)) != 0) /* XXX */ 12856a800098SYoshinobu Inoue break; 1286b40ce416SJulian Elischer priv = (sopt->sopt_td != NULL && 1287b40ce416SJulian Elischer suser_td(sopt->sopt_td) != 0) ? 0 : 1; 12886a800098SYoshinobu Inoue req = mtod(m, caddr_t); 1289686cdd19SJun-ichiro itojun Hagino len = m->m_len; 12906a800098SYoshinobu Inoue optname = sopt->sopt_name; 1291686cdd19SJun-ichiro itojun Hagino error = ipsec4_set_policy(inp, optname, req, len, priv); 12926a800098SYoshinobu Inoue m_freem(m); 12936a800098SYoshinobu Inoue break; 12946a800098SYoshinobu Inoue } 12956a800098SYoshinobu Inoue #endif /*IPSEC*/ 12966a800098SYoshinobu Inoue 1297df8bae1dSRodney W. Grimes default: 1298df8bae1dSRodney W. Grimes error = ENOPROTOOPT; 1299df8bae1dSRodney W. Grimes break; 1300df8bae1dSRodney W. Grimes } 1301df8bae1dSRodney W. Grimes break; 1302df8bae1dSRodney W. Grimes 1303cfe8b629SGarrett Wollman case SOPT_GET: 1304cfe8b629SGarrett Wollman switch (sopt->sopt_name) { 1305df8bae1dSRodney W. Grimes case IP_OPTIONS: 1306df8bae1dSRodney W. Grimes case IP_RETOPTS: 1307cfe8b629SGarrett Wollman if (inp->inp_options) 1308cfe8b629SGarrett Wollman error = sooptcopyout(sopt, 1309cfe8b629SGarrett Wollman mtod(inp->inp_options, 1310cfe8b629SGarrett Wollman char *), 1311cfe8b629SGarrett Wollman inp->inp_options->m_len); 1312cfe8b629SGarrett Wollman else 1313cfe8b629SGarrett Wollman sopt->sopt_valsize = 0; 1314df8bae1dSRodney W. Grimes break; 1315df8bae1dSRodney W. Grimes 1316df8bae1dSRodney W. Grimes case IP_TOS: 1317df8bae1dSRodney W. Grimes case IP_TTL: 1318df8bae1dSRodney W. Grimes case IP_RECVOPTS: 1319df8bae1dSRodney W. Grimes case IP_RECVRETOPTS: 1320df8bae1dSRodney W. Grimes case IP_RECVDSTADDR: 132182c23ebaSBill Fenner case IP_RECVIF: 1322cfe8b629SGarrett Wollman case IP_PORTRANGE: 13236a800098SYoshinobu Inoue case IP_FAITH: 1324cfe8b629SGarrett Wollman switch (sopt->sopt_name) { 1325df8bae1dSRodney W. Grimes 1326df8bae1dSRodney W. Grimes case IP_TOS: 1327ca98b82cSDavid Greenman optval = inp->inp_ip_tos; 1328df8bae1dSRodney W. Grimes break; 1329df8bae1dSRodney W. Grimes 1330df8bae1dSRodney W. Grimes case IP_TTL: 1331ca98b82cSDavid Greenman optval = inp->inp_ip_ttl; 1332df8bae1dSRodney W. Grimes break; 1333df8bae1dSRodney W. Grimes 1334df8bae1dSRodney W. Grimes #define OPTBIT(bit) (inp->inp_flags & bit ? 1 : 0) 1335df8bae1dSRodney W. Grimes 1336df8bae1dSRodney W. Grimes case IP_RECVOPTS: 1337df8bae1dSRodney W. Grimes optval = OPTBIT(INP_RECVOPTS); 1338df8bae1dSRodney W. Grimes break; 1339df8bae1dSRodney W. Grimes 1340df8bae1dSRodney W. Grimes case IP_RECVRETOPTS: 1341df8bae1dSRodney W. Grimes optval = OPTBIT(INP_RECVRETOPTS); 1342df8bae1dSRodney W. Grimes break; 1343df8bae1dSRodney W. Grimes 1344df8bae1dSRodney W. Grimes case IP_RECVDSTADDR: 1345df8bae1dSRodney W. Grimes optval = OPTBIT(INP_RECVDSTADDR); 1346df8bae1dSRodney W. Grimes break; 134782c23ebaSBill Fenner 134882c23ebaSBill Fenner case IP_RECVIF: 134982c23ebaSBill Fenner optval = OPTBIT(INP_RECVIF); 135082c23ebaSBill Fenner break; 1351cfe8b629SGarrett Wollman 1352cfe8b629SGarrett Wollman case IP_PORTRANGE: 1353cfe8b629SGarrett Wollman if (inp->inp_flags & INP_HIGHPORT) 1354cfe8b629SGarrett Wollman optval = IP_PORTRANGE_HIGH; 1355cfe8b629SGarrett Wollman else if (inp->inp_flags & INP_LOWPORT) 1356cfe8b629SGarrett Wollman optval = IP_PORTRANGE_LOW; 1357cfe8b629SGarrett Wollman else 1358cfe8b629SGarrett Wollman optval = 0; 1359cfe8b629SGarrett Wollman break; 13606a800098SYoshinobu Inoue 13616a800098SYoshinobu Inoue case IP_FAITH: 13626a800098SYoshinobu Inoue optval = OPTBIT(INP_FAITH); 13636a800098SYoshinobu Inoue break; 1364df8bae1dSRodney W. Grimes } 1365cfe8b629SGarrett Wollman error = sooptcopyout(sopt, &optval, sizeof optval); 1366df8bae1dSRodney W. Grimes break; 1367df8bae1dSRodney W. Grimes 1368df8bae1dSRodney W. Grimes case IP_MULTICAST_IF: 1369f0068c4aSGarrett Wollman case IP_MULTICAST_VIF: 1370df8bae1dSRodney W. Grimes case IP_MULTICAST_TTL: 1371df8bae1dSRodney W. Grimes case IP_MULTICAST_LOOP: 1372df8bae1dSRodney W. Grimes case IP_ADD_MEMBERSHIP: 1373df8bae1dSRodney W. Grimes case IP_DROP_MEMBERSHIP: 1374cfe8b629SGarrett Wollman error = ip_getmoptions(sopt, inp->inp_moptions); 137533b3ac06SPeter Wemm break; 137633b3ac06SPeter Wemm 13776a800098SYoshinobu Inoue #ifdef IPSEC 13786a800098SYoshinobu Inoue case IP_IPSEC_POLICY: 13796a800098SYoshinobu Inoue { 1380f63e7634SYoshinobu Inoue struct mbuf *m = NULL; 13816a800098SYoshinobu Inoue caddr_t req = NULL; 1382686cdd19SJun-ichiro itojun Hagino size_t len = 0; 13836a800098SYoshinobu Inoue 1384686cdd19SJun-ichiro itojun Hagino if (m != 0) { 13856a800098SYoshinobu Inoue req = mtod(m, caddr_t); 1386686cdd19SJun-ichiro itojun Hagino len = m->m_len; 1387686cdd19SJun-ichiro itojun Hagino } 1388686cdd19SJun-ichiro itojun Hagino error = ipsec4_get_policy(sotoinpcb(so), req, len, &m); 13896a800098SYoshinobu Inoue if (error == 0) 13906a800098SYoshinobu Inoue error = soopt_mcopyout(sopt, m); /* XXX */ 1391f63e7634SYoshinobu Inoue if (error == 0) 13926a800098SYoshinobu Inoue m_freem(m); 13936a800098SYoshinobu Inoue break; 13946a800098SYoshinobu Inoue } 13956a800098SYoshinobu Inoue #endif /*IPSEC*/ 13966a800098SYoshinobu Inoue 1397df8bae1dSRodney W. Grimes default: 1398df8bae1dSRodney W. Grimes error = ENOPROTOOPT; 1399df8bae1dSRodney W. Grimes break; 1400df8bae1dSRodney W. Grimes } 1401df8bae1dSRodney W. Grimes break; 1402df8bae1dSRodney W. Grimes } 1403df8bae1dSRodney W. Grimes return (error); 1404df8bae1dSRodney W. Grimes } 1405df8bae1dSRodney W. Grimes 1406df8bae1dSRodney W. Grimes /* 1407df8bae1dSRodney W. Grimes * Set up IP options in pcb for insertion in output packets. 1408df8bae1dSRodney W. Grimes * Store in mbuf with pointer in pcbopt, adding pseudo-option 1409df8bae1dSRodney W. Grimes * with destination address if source routed. 1410df8bae1dSRodney W. Grimes */ 14110312fbe9SPoul-Henning Kamp static int 1412df8bae1dSRodney W. Grimes ip_pcbopts(optname, pcbopt, m) 1413df8bae1dSRodney W. Grimes int optname; 1414df8bae1dSRodney W. Grimes struct mbuf **pcbopt; 1415df8bae1dSRodney W. Grimes register struct mbuf *m; 1416df8bae1dSRodney W. Grimes { 1417d68fa50cSBruce Evans register int cnt, optlen; 1418df8bae1dSRodney W. Grimes register u_char *cp; 1419df8bae1dSRodney W. Grimes u_char opt; 1420df8bae1dSRodney W. Grimes 1421df8bae1dSRodney W. Grimes /* turn off any old options */ 1422df8bae1dSRodney W. Grimes if (*pcbopt) 1423df8bae1dSRodney W. Grimes (void)m_free(*pcbopt); 1424df8bae1dSRodney W. Grimes *pcbopt = 0; 1425df8bae1dSRodney W. Grimes if (m == (struct mbuf *)0 || m->m_len == 0) { 1426df8bae1dSRodney W. Grimes /* 1427df8bae1dSRodney W. Grimes * Only turning off any previous options. 1428df8bae1dSRodney W. Grimes */ 1429df8bae1dSRodney W. Grimes if (m) 1430df8bae1dSRodney W. Grimes (void)m_free(m); 1431df8bae1dSRodney W. Grimes return (0); 1432df8bae1dSRodney W. Grimes } 1433df8bae1dSRodney W. Grimes 14340c8d2590SBruce Evans if (m->m_len % sizeof(int32_t)) 1435df8bae1dSRodney W. Grimes goto bad; 1436df8bae1dSRodney W. Grimes /* 1437df8bae1dSRodney W. Grimes * IP first-hop destination address will be stored before 1438df8bae1dSRodney W. Grimes * actual options; move other options back 1439df8bae1dSRodney W. Grimes * and clear it when none present. 1440df8bae1dSRodney W. Grimes */ 1441df8bae1dSRodney W. Grimes if (m->m_data + m->m_len + sizeof(struct in_addr) >= &m->m_dat[MLEN]) 1442df8bae1dSRodney W. Grimes goto bad; 1443df8bae1dSRodney W. Grimes cnt = m->m_len; 1444df8bae1dSRodney W. Grimes m->m_len += sizeof(struct in_addr); 1445df8bae1dSRodney W. Grimes cp = mtod(m, u_char *) + sizeof(struct in_addr); 1446df8bae1dSRodney W. Grimes ovbcopy(mtod(m, caddr_t), (caddr_t)cp, (unsigned)cnt); 1447df8bae1dSRodney W. Grimes bzero(mtod(m, caddr_t), sizeof(struct in_addr)); 1448df8bae1dSRodney W. Grimes 1449df8bae1dSRodney W. Grimes for (; cnt > 0; cnt -= optlen, cp += optlen) { 1450df8bae1dSRodney W. Grimes opt = cp[IPOPT_OPTVAL]; 1451df8bae1dSRodney W. Grimes if (opt == IPOPT_EOL) 1452df8bae1dSRodney W. Grimes break; 1453df8bae1dSRodney W. Grimes if (opt == IPOPT_NOP) 1454df8bae1dSRodney W. Grimes optlen = 1; 1455df8bae1dSRodney W. Grimes else { 1456707d00a3SJonathan Lemon if (cnt < IPOPT_OLEN + sizeof(*cp)) 1457707d00a3SJonathan Lemon goto bad; 1458df8bae1dSRodney W. Grimes optlen = cp[IPOPT_OLEN]; 1459707d00a3SJonathan Lemon if (optlen < IPOPT_OLEN + sizeof(*cp) || optlen > cnt) 1460df8bae1dSRodney W. Grimes goto bad; 1461df8bae1dSRodney W. Grimes } 1462df8bae1dSRodney W. Grimes switch (opt) { 1463df8bae1dSRodney W. Grimes 1464df8bae1dSRodney W. Grimes default: 1465df8bae1dSRodney W. Grimes break; 1466df8bae1dSRodney W. Grimes 1467df8bae1dSRodney W. Grimes case IPOPT_LSRR: 1468df8bae1dSRodney W. Grimes case IPOPT_SSRR: 1469df8bae1dSRodney W. Grimes /* 1470df8bae1dSRodney W. Grimes * user process specifies route as: 1471df8bae1dSRodney W. Grimes * ->A->B->C->D 1472df8bae1dSRodney W. Grimes * D must be our final destination (but we can't 1473df8bae1dSRodney W. Grimes * check that since we may not have connected yet). 1474df8bae1dSRodney W. Grimes * A is first hop destination, which doesn't appear in 1475df8bae1dSRodney W. Grimes * actual IP option, but is stored before the options. 1476df8bae1dSRodney W. Grimes */ 1477df8bae1dSRodney W. Grimes if (optlen < IPOPT_MINOFF - 1 + sizeof(struct in_addr)) 1478df8bae1dSRodney W. Grimes goto bad; 1479df8bae1dSRodney W. Grimes m->m_len -= sizeof(struct in_addr); 1480df8bae1dSRodney W. Grimes cnt -= sizeof(struct in_addr); 1481df8bae1dSRodney W. Grimes optlen -= sizeof(struct in_addr); 1482df8bae1dSRodney W. Grimes cp[IPOPT_OLEN] = optlen; 1483df8bae1dSRodney W. Grimes /* 1484df8bae1dSRodney W. Grimes * Move first hop before start of options. 1485df8bae1dSRodney W. Grimes */ 1486df8bae1dSRodney W. Grimes bcopy((caddr_t)&cp[IPOPT_OFFSET+1], mtod(m, caddr_t), 1487df8bae1dSRodney W. Grimes sizeof(struct in_addr)); 1488df8bae1dSRodney W. Grimes /* 1489df8bae1dSRodney W. Grimes * Then copy rest of options back 1490df8bae1dSRodney W. Grimes * to close up the deleted entry. 1491df8bae1dSRodney W. Grimes */ 1492df8bae1dSRodney W. Grimes ovbcopy((caddr_t)(&cp[IPOPT_OFFSET+1] + 1493df8bae1dSRodney W. Grimes sizeof(struct in_addr)), 1494df8bae1dSRodney W. Grimes (caddr_t)&cp[IPOPT_OFFSET+1], 1495df8bae1dSRodney W. Grimes (unsigned)cnt + sizeof(struct in_addr)); 1496df8bae1dSRodney W. Grimes break; 1497df8bae1dSRodney W. Grimes } 1498df8bae1dSRodney W. Grimes } 1499df8bae1dSRodney W. Grimes if (m->m_len > MAX_IPOPTLEN + sizeof(struct in_addr)) 1500df8bae1dSRodney W. Grimes goto bad; 1501df8bae1dSRodney W. Grimes *pcbopt = m; 1502df8bae1dSRodney W. Grimes return (0); 1503df8bae1dSRodney W. Grimes 1504df8bae1dSRodney W. Grimes bad: 1505df8bae1dSRodney W. Grimes (void)m_free(m); 1506df8bae1dSRodney W. Grimes return (EINVAL); 1507df8bae1dSRodney W. Grimes } 1508df8bae1dSRodney W. Grimes 1509df8bae1dSRodney W. Grimes /* 1510cfe8b629SGarrett Wollman * XXX 1511cfe8b629SGarrett Wollman * The whole multicast option thing needs to be re-thought. 1512cfe8b629SGarrett Wollman * Several of these options are equally applicable to non-multicast 1513cfe8b629SGarrett Wollman * transmission, and one (IP_MULTICAST_TTL) totally duplicates a 1514cfe8b629SGarrett Wollman * standard option (IP_TTL). 1515cfe8b629SGarrett Wollman */ 151633841545SHajimu UMEMOTO 151733841545SHajimu UMEMOTO /* 151833841545SHajimu UMEMOTO * following RFC1724 section 3.3, 0.0.0.0/8 is interpreted as interface index. 151933841545SHajimu UMEMOTO */ 152033841545SHajimu UMEMOTO static struct ifnet * 152133841545SHajimu UMEMOTO ip_multicast_if(a, ifindexp) 152233841545SHajimu UMEMOTO struct in_addr *a; 152333841545SHajimu UMEMOTO int *ifindexp; 152433841545SHajimu UMEMOTO { 152533841545SHajimu UMEMOTO int ifindex; 152633841545SHajimu UMEMOTO struct ifnet *ifp; 152733841545SHajimu UMEMOTO 152833841545SHajimu UMEMOTO if (ifindexp) 152933841545SHajimu UMEMOTO *ifindexp = 0; 153033841545SHajimu UMEMOTO if (ntohl(a->s_addr) >> 24 == 0) { 153133841545SHajimu UMEMOTO ifindex = ntohl(a->s_addr) & 0xffffff; 153233841545SHajimu UMEMOTO if (ifindex < 0 || if_index < ifindex) 153333841545SHajimu UMEMOTO return NULL; 1534f9132cebSJonathan Lemon ifp = ifnet_byindex(ifindex); 153533841545SHajimu UMEMOTO if (ifindexp) 153633841545SHajimu UMEMOTO *ifindexp = ifindex; 153733841545SHajimu UMEMOTO } else { 153833841545SHajimu UMEMOTO INADDR_TO_IFP(*a, ifp); 153933841545SHajimu UMEMOTO } 154033841545SHajimu UMEMOTO return ifp; 154133841545SHajimu UMEMOTO } 154233841545SHajimu UMEMOTO 1543cfe8b629SGarrett Wollman /* 1544df8bae1dSRodney W. Grimes * Set the IP multicast options in response to user setsockopt(). 1545df8bae1dSRodney W. Grimes */ 15460312fbe9SPoul-Henning Kamp static int 1547cfe8b629SGarrett Wollman ip_setmoptions(sopt, imop) 1548cfe8b629SGarrett Wollman struct sockopt *sopt; 1549df8bae1dSRodney W. Grimes struct ip_moptions **imop; 1550df8bae1dSRodney W. Grimes { 1551cfe8b629SGarrett Wollman int error = 0; 1552cfe8b629SGarrett Wollman int i; 1553df8bae1dSRodney W. Grimes struct in_addr addr; 1554cfe8b629SGarrett Wollman struct ip_mreq mreq; 1555cfe8b629SGarrett Wollman struct ifnet *ifp; 1556cfe8b629SGarrett Wollman struct ip_moptions *imo = *imop; 1557df8bae1dSRodney W. Grimes struct route ro; 1558cfe8b629SGarrett Wollman struct sockaddr_in *dst; 155933841545SHajimu UMEMOTO int ifindex; 15609b626c29SGarrett Wollman int s; 1561df8bae1dSRodney W. Grimes 1562df8bae1dSRodney W. Grimes if (imo == NULL) { 1563df8bae1dSRodney W. Grimes /* 1564df8bae1dSRodney W. Grimes * No multicast option buffer attached to the pcb; 1565df8bae1dSRodney W. Grimes * allocate one and initialize to default values. 1566df8bae1dSRodney W. Grimes */ 1567df8bae1dSRodney W. Grimes imo = (struct ip_moptions*)malloc(sizeof(*imo), M_IPMOPTS, 1568df8bae1dSRodney W. Grimes M_WAITOK); 1569df8bae1dSRodney W. Grimes 1570df8bae1dSRodney W. Grimes if (imo == NULL) 1571df8bae1dSRodney W. Grimes return (ENOBUFS); 1572df8bae1dSRodney W. Grimes *imop = imo; 1573df8bae1dSRodney W. Grimes imo->imo_multicast_ifp = NULL; 157433841545SHajimu UMEMOTO imo->imo_multicast_addr.s_addr = INADDR_ANY; 15751c5de19aSGarrett Wollman imo->imo_multicast_vif = -1; 1576df8bae1dSRodney W. Grimes imo->imo_multicast_ttl = IP_DEFAULT_MULTICAST_TTL; 1577df8bae1dSRodney W. Grimes imo->imo_multicast_loop = IP_DEFAULT_MULTICAST_LOOP; 1578df8bae1dSRodney W. Grimes imo->imo_num_memberships = 0; 1579df8bae1dSRodney W. Grimes } 1580df8bae1dSRodney W. Grimes 1581cfe8b629SGarrett Wollman switch (sopt->sopt_name) { 1582f0068c4aSGarrett Wollman /* store an index number for the vif you wanna use in the send */ 1583f0068c4aSGarrett Wollman case IP_MULTICAST_VIF: 1584cfe8b629SGarrett Wollman if (legal_vif_num == 0) { 15855e9ae478SGarrett Wollman error = EOPNOTSUPP; 15865e9ae478SGarrett Wollman break; 15875e9ae478SGarrett Wollman } 1588cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &i, sizeof i, sizeof i); 1589cfe8b629SGarrett Wollman if (error) 1590f0068c4aSGarrett Wollman break; 15911c5de19aSGarrett Wollman if (!legal_vif_num(i) && (i != -1)) { 1592f0068c4aSGarrett Wollman error = EINVAL; 1593f0068c4aSGarrett Wollman break; 1594f0068c4aSGarrett Wollman } 1595f0068c4aSGarrett Wollman imo->imo_multicast_vif = i; 1596f0068c4aSGarrett Wollman break; 1597f0068c4aSGarrett Wollman 1598df8bae1dSRodney W. Grimes case IP_MULTICAST_IF: 1599df8bae1dSRodney W. Grimes /* 1600df8bae1dSRodney W. Grimes * Select the interface for outgoing multicast packets. 1601df8bae1dSRodney W. Grimes */ 1602cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &addr, sizeof addr, sizeof addr); 1603cfe8b629SGarrett Wollman if (error) 1604df8bae1dSRodney W. Grimes break; 1605df8bae1dSRodney W. Grimes /* 1606df8bae1dSRodney W. Grimes * INADDR_ANY is used to remove a previous selection. 1607df8bae1dSRodney W. Grimes * When no interface is selected, a default one is 1608df8bae1dSRodney W. Grimes * chosen every time a multicast packet is sent. 1609df8bae1dSRodney W. Grimes */ 1610df8bae1dSRodney W. Grimes if (addr.s_addr == INADDR_ANY) { 1611df8bae1dSRodney W. Grimes imo->imo_multicast_ifp = NULL; 1612df8bae1dSRodney W. Grimes break; 1613df8bae1dSRodney W. Grimes } 1614df8bae1dSRodney W. Grimes /* 1615df8bae1dSRodney W. Grimes * The selected interface is identified by its local 1616df8bae1dSRodney W. Grimes * IP address. Find the interface and confirm that 1617df8bae1dSRodney W. Grimes * it supports multicasting. 1618df8bae1dSRodney W. Grimes */ 161920e8807cSGarrett Wollman s = splimp(); 162033841545SHajimu UMEMOTO ifp = ip_multicast_if(&addr, &ifindex); 1621df8bae1dSRodney W. Grimes if (ifp == NULL || (ifp->if_flags & IFF_MULTICAST) == 0) { 1622fbc6ab00SBill Fenner splx(s); 1623df8bae1dSRodney W. Grimes error = EADDRNOTAVAIL; 1624df8bae1dSRodney W. Grimes break; 1625df8bae1dSRodney W. Grimes } 1626df8bae1dSRodney W. Grimes imo->imo_multicast_ifp = ifp; 162733841545SHajimu UMEMOTO if (ifindex) 162833841545SHajimu UMEMOTO imo->imo_multicast_addr = addr; 162933841545SHajimu UMEMOTO else 163033841545SHajimu UMEMOTO imo->imo_multicast_addr.s_addr = INADDR_ANY; 16319b626c29SGarrett Wollman splx(s); 1632df8bae1dSRodney W. Grimes break; 1633df8bae1dSRodney W. Grimes 1634df8bae1dSRodney W. Grimes case IP_MULTICAST_TTL: 1635df8bae1dSRodney W. Grimes /* 1636df8bae1dSRodney W. Grimes * Set the IP time-to-live for outgoing multicast packets. 1637cfe8b629SGarrett Wollman * The original multicast API required a char argument, 1638cfe8b629SGarrett Wollman * which is inconsistent with the rest of the socket API. 1639cfe8b629SGarrett Wollman * We allow either a char or an int. 1640df8bae1dSRodney W. Grimes */ 1641cfe8b629SGarrett Wollman if (sopt->sopt_valsize == 1) { 1642cfe8b629SGarrett Wollman u_char ttl; 1643cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &ttl, 1, 1); 1644cfe8b629SGarrett Wollman if (error) 1645df8bae1dSRodney W. Grimes break; 1646cfe8b629SGarrett Wollman imo->imo_multicast_ttl = ttl; 1647cfe8b629SGarrett Wollman } else { 1648cfe8b629SGarrett Wollman u_int ttl; 1649cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &ttl, sizeof ttl, 1650cfe8b629SGarrett Wollman sizeof ttl); 1651cfe8b629SGarrett Wollman if (error) 1652cfe8b629SGarrett Wollman break; 1653cfe8b629SGarrett Wollman if (ttl > 255) 1654cfe8b629SGarrett Wollman error = EINVAL; 1655cfe8b629SGarrett Wollman else 1656cfe8b629SGarrett Wollman imo->imo_multicast_ttl = ttl; 1657df8bae1dSRodney W. Grimes } 1658df8bae1dSRodney W. Grimes break; 1659df8bae1dSRodney W. Grimes 1660df8bae1dSRodney W. Grimes case IP_MULTICAST_LOOP: 1661df8bae1dSRodney W. Grimes /* 1662df8bae1dSRodney W. Grimes * Set the loopback flag for outgoing multicast packets. 1663cfe8b629SGarrett Wollman * Must be zero or one. The original multicast API required a 1664cfe8b629SGarrett Wollman * char argument, which is inconsistent with the rest 1665cfe8b629SGarrett Wollman * of the socket API. We allow either a char or an int. 1666df8bae1dSRodney W. Grimes */ 1667cfe8b629SGarrett Wollman if (sopt->sopt_valsize == 1) { 1668cfe8b629SGarrett Wollman u_char loop; 1669cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &loop, 1, 1); 1670cfe8b629SGarrett Wollman if (error) 1671df8bae1dSRodney W. Grimes break; 1672cfe8b629SGarrett Wollman imo->imo_multicast_loop = !!loop; 1673cfe8b629SGarrett Wollman } else { 1674cfe8b629SGarrett Wollman u_int loop; 1675cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &loop, sizeof loop, 1676cfe8b629SGarrett Wollman sizeof loop); 1677cfe8b629SGarrett Wollman if (error) 1678cfe8b629SGarrett Wollman break; 1679cfe8b629SGarrett Wollman imo->imo_multicast_loop = !!loop; 1680df8bae1dSRodney W. Grimes } 1681df8bae1dSRodney W. Grimes break; 1682df8bae1dSRodney W. Grimes 1683df8bae1dSRodney W. Grimes case IP_ADD_MEMBERSHIP: 1684df8bae1dSRodney W. Grimes /* 1685df8bae1dSRodney W. Grimes * Add a multicast group membership. 1686df8bae1dSRodney W. Grimes * Group must be a valid IP multicast address. 1687df8bae1dSRodney W. Grimes */ 1688cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &mreq, sizeof mreq, sizeof mreq); 1689cfe8b629SGarrett Wollman if (error) 1690df8bae1dSRodney W. Grimes break; 1691cfe8b629SGarrett Wollman 1692cfe8b629SGarrett Wollman if (!IN_MULTICAST(ntohl(mreq.imr_multiaddr.s_addr))) { 1693df8bae1dSRodney W. Grimes error = EINVAL; 1694df8bae1dSRodney W. Grimes break; 1695df8bae1dSRodney W. Grimes } 169620e8807cSGarrett Wollman s = splimp(); 1697df8bae1dSRodney W. Grimes /* 1698df8bae1dSRodney W. Grimes * If no interface address was provided, use the interface of 1699df8bae1dSRodney W. Grimes * the route to the given multicast address. 1700df8bae1dSRodney W. Grimes */ 1701cfe8b629SGarrett Wollman if (mreq.imr_interface.s_addr == INADDR_ANY) { 17021c5de19aSGarrett Wollman bzero((caddr_t)&ro, sizeof(ro)); 1703df8bae1dSRodney W. Grimes dst = (struct sockaddr_in *)&ro.ro_dst; 1704df8bae1dSRodney W. Grimes dst->sin_len = sizeof(*dst); 1705df8bae1dSRodney W. Grimes dst->sin_family = AF_INET; 1706cfe8b629SGarrett Wollman dst->sin_addr = mreq.imr_multiaddr; 1707df8bae1dSRodney W. Grimes rtalloc(&ro); 1708df8bae1dSRodney W. Grimes if (ro.ro_rt == NULL) { 1709df8bae1dSRodney W. Grimes error = EADDRNOTAVAIL; 17109b626c29SGarrett Wollman splx(s); 1711df8bae1dSRodney W. Grimes break; 1712df8bae1dSRodney W. Grimes } 1713df8bae1dSRodney W. Grimes ifp = ro.ro_rt->rt_ifp; 1714df8bae1dSRodney W. Grimes rtfree(ro.ro_rt); 1715df8bae1dSRodney W. Grimes } 1716df8bae1dSRodney W. Grimes else { 171733841545SHajimu UMEMOTO ifp = ip_multicast_if(&mreq.imr_interface, NULL); 1718df8bae1dSRodney W. Grimes } 17199b626c29SGarrett Wollman 1720df8bae1dSRodney W. Grimes /* 1721df8bae1dSRodney W. Grimes * See if we found an interface, and confirm that it 1722df8bae1dSRodney W. Grimes * supports multicast. 1723df8bae1dSRodney W. Grimes */ 1724df8bae1dSRodney W. Grimes if (ifp == NULL || (ifp->if_flags & IFF_MULTICAST) == 0) { 1725df8bae1dSRodney W. Grimes error = EADDRNOTAVAIL; 17269b626c29SGarrett Wollman splx(s); 1727df8bae1dSRodney W. Grimes break; 1728df8bae1dSRodney W. Grimes } 1729df8bae1dSRodney W. Grimes /* 1730df8bae1dSRodney W. Grimes * See if the membership already exists or if all the 1731df8bae1dSRodney W. Grimes * membership slots are full. 1732df8bae1dSRodney W. Grimes */ 1733df8bae1dSRodney W. Grimes for (i = 0; i < imo->imo_num_memberships; ++i) { 1734df8bae1dSRodney W. Grimes if (imo->imo_membership[i]->inm_ifp == ifp && 1735df8bae1dSRodney W. Grimes imo->imo_membership[i]->inm_addr.s_addr 1736cfe8b629SGarrett Wollman == mreq.imr_multiaddr.s_addr) 1737df8bae1dSRodney W. Grimes break; 1738df8bae1dSRodney W. Grimes } 1739df8bae1dSRodney W. Grimes if (i < imo->imo_num_memberships) { 1740df8bae1dSRodney W. Grimes error = EADDRINUSE; 17419b626c29SGarrett Wollman splx(s); 1742df8bae1dSRodney W. Grimes break; 1743df8bae1dSRodney W. Grimes } 1744df8bae1dSRodney W. Grimes if (i == IP_MAX_MEMBERSHIPS) { 1745df8bae1dSRodney W. Grimes error = ETOOMANYREFS; 17469b626c29SGarrett Wollman splx(s); 1747df8bae1dSRodney W. Grimes break; 1748df8bae1dSRodney W. Grimes } 1749df8bae1dSRodney W. Grimes /* 1750df8bae1dSRodney W. Grimes * Everything looks good; add a new record to the multicast 1751df8bae1dSRodney W. Grimes * address list for the given interface. 1752df8bae1dSRodney W. Grimes */ 1753df8bae1dSRodney W. Grimes if ((imo->imo_membership[i] = 1754cfe8b629SGarrett Wollman in_addmulti(&mreq.imr_multiaddr, ifp)) == NULL) { 1755df8bae1dSRodney W. Grimes error = ENOBUFS; 17569b626c29SGarrett Wollman splx(s); 1757df8bae1dSRodney W. Grimes break; 1758df8bae1dSRodney W. Grimes } 1759df8bae1dSRodney W. Grimes ++imo->imo_num_memberships; 17609b626c29SGarrett Wollman splx(s); 1761df8bae1dSRodney W. Grimes break; 1762df8bae1dSRodney W. Grimes 1763df8bae1dSRodney W. Grimes case IP_DROP_MEMBERSHIP: 1764df8bae1dSRodney W. Grimes /* 1765df8bae1dSRodney W. Grimes * Drop a multicast group membership. 1766df8bae1dSRodney W. Grimes * Group must be a valid IP multicast address. 1767df8bae1dSRodney W. Grimes */ 1768cfe8b629SGarrett Wollman error = sooptcopyin(sopt, &mreq, sizeof mreq, sizeof mreq); 1769cfe8b629SGarrett Wollman if (error) 1770df8bae1dSRodney W. Grimes break; 1771cfe8b629SGarrett Wollman 1772cfe8b629SGarrett Wollman if (!IN_MULTICAST(ntohl(mreq.imr_multiaddr.s_addr))) { 1773df8bae1dSRodney W. Grimes error = EINVAL; 1774df8bae1dSRodney W. Grimes break; 1775df8bae1dSRodney W. Grimes } 17769b626c29SGarrett Wollman 177720e8807cSGarrett Wollman s = splimp(); 1778df8bae1dSRodney W. Grimes /* 1779df8bae1dSRodney W. Grimes * If an interface address was specified, get a pointer 1780df8bae1dSRodney W. Grimes * to its ifnet structure. 1781df8bae1dSRodney W. Grimes */ 1782cfe8b629SGarrett Wollman if (mreq.imr_interface.s_addr == INADDR_ANY) 1783df8bae1dSRodney W. Grimes ifp = NULL; 1784df8bae1dSRodney W. Grimes else { 178533841545SHajimu UMEMOTO ifp = ip_multicast_if(&mreq.imr_interface, NULL); 1786df8bae1dSRodney W. Grimes if (ifp == NULL) { 1787df8bae1dSRodney W. Grimes error = EADDRNOTAVAIL; 17889b626c29SGarrett Wollman splx(s); 1789df8bae1dSRodney W. Grimes break; 1790df8bae1dSRodney W. Grimes } 1791df8bae1dSRodney W. Grimes } 1792df8bae1dSRodney W. Grimes /* 1793df8bae1dSRodney W. Grimes * Find the membership in the membership array. 1794df8bae1dSRodney W. Grimes */ 1795df8bae1dSRodney W. Grimes for (i = 0; i < imo->imo_num_memberships; ++i) { 1796df8bae1dSRodney W. Grimes if ((ifp == NULL || 1797df8bae1dSRodney W. Grimes imo->imo_membership[i]->inm_ifp == ifp) && 1798df8bae1dSRodney W. Grimes imo->imo_membership[i]->inm_addr.s_addr == 1799cfe8b629SGarrett Wollman mreq.imr_multiaddr.s_addr) 1800df8bae1dSRodney W. Grimes break; 1801df8bae1dSRodney W. Grimes } 1802df8bae1dSRodney W. Grimes if (i == imo->imo_num_memberships) { 1803df8bae1dSRodney W. Grimes error = EADDRNOTAVAIL; 18049b626c29SGarrett Wollman splx(s); 1805df8bae1dSRodney W. Grimes break; 1806df8bae1dSRodney W. Grimes } 1807df8bae1dSRodney W. Grimes /* 1808df8bae1dSRodney W. Grimes * Give up the multicast address record to which the 1809df8bae1dSRodney W. Grimes * membership points. 1810df8bae1dSRodney W. Grimes */ 1811df8bae1dSRodney W. Grimes in_delmulti(imo->imo_membership[i]); 1812df8bae1dSRodney W. Grimes /* 1813df8bae1dSRodney W. Grimes * Remove the gap in the membership array. 1814df8bae1dSRodney W. Grimes */ 1815df8bae1dSRodney W. Grimes for (++i; i < imo->imo_num_memberships; ++i) 1816df8bae1dSRodney W. Grimes imo->imo_membership[i-1] = imo->imo_membership[i]; 1817df8bae1dSRodney W. Grimes --imo->imo_num_memberships; 18189b626c29SGarrett Wollman splx(s); 1819df8bae1dSRodney W. Grimes break; 1820df8bae1dSRodney W. Grimes 1821df8bae1dSRodney W. Grimes default: 1822df8bae1dSRodney W. Grimes error = EOPNOTSUPP; 1823df8bae1dSRodney W. Grimes break; 1824df8bae1dSRodney W. Grimes } 1825df8bae1dSRodney W. Grimes 1826df8bae1dSRodney W. Grimes /* 1827df8bae1dSRodney W. Grimes * If all options have default values, no need to keep the mbuf. 1828df8bae1dSRodney W. Grimes */ 1829df8bae1dSRodney W. Grimes if (imo->imo_multicast_ifp == NULL && 18301c5de19aSGarrett Wollman imo->imo_multicast_vif == -1 && 1831df8bae1dSRodney W. Grimes imo->imo_multicast_ttl == IP_DEFAULT_MULTICAST_TTL && 1832df8bae1dSRodney W. Grimes imo->imo_multicast_loop == IP_DEFAULT_MULTICAST_LOOP && 1833df8bae1dSRodney W. Grimes imo->imo_num_memberships == 0) { 1834df8bae1dSRodney W. Grimes free(*imop, M_IPMOPTS); 1835df8bae1dSRodney W. Grimes *imop = NULL; 1836df8bae1dSRodney W. Grimes } 1837df8bae1dSRodney W. Grimes 1838df8bae1dSRodney W. Grimes return (error); 1839df8bae1dSRodney W. Grimes } 1840df8bae1dSRodney W. Grimes 1841df8bae1dSRodney W. Grimes /* 1842df8bae1dSRodney W. Grimes * Return the IP multicast options in response to user getsockopt(). 1843df8bae1dSRodney W. Grimes */ 18440312fbe9SPoul-Henning Kamp static int 1845cfe8b629SGarrett Wollman ip_getmoptions(sopt, imo) 1846cfe8b629SGarrett Wollman struct sockopt *sopt; 1847df8bae1dSRodney W. Grimes register struct ip_moptions *imo; 1848df8bae1dSRodney W. Grimes { 1849cfe8b629SGarrett Wollman struct in_addr addr; 1850df8bae1dSRodney W. Grimes struct in_ifaddr *ia; 1851cfe8b629SGarrett Wollman int error, optval; 1852cfe8b629SGarrett Wollman u_char coptval; 1853df8bae1dSRodney W. Grimes 1854cfe8b629SGarrett Wollman error = 0; 1855cfe8b629SGarrett Wollman switch (sopt->sopt_name) { 1856f0068c4aSGarrett Wollman case IP_MULTICAST_VIF: 1857f0068c4aSGarrett Wollman if (imo != NULL) 1858cfe8b629SGarrett Wollman optval = imo->imo_multicast_vif; 1859f0068c4aSGarrett Wollman else 1860cfe8b629SGarrett Wollman optval = -1; 1861cfe8b629SGarrett Wollman error = sooptcopyout(sopt, &optval, sizeof optval); 1862cfe8b629SGarrett Wollman break; 1863f0068c4aSGarrett Wollman 1864df8bae1dSRodney W. Grimes case IP_MULTICAST_IF: 1865df8bae1dSRodney W. Grimes if (imo == NULL || imo->imo_multicast_ifp == NULL) 1866cfe8b629SGarrett Wollman addr.s_addr = INADDR_ANY; 186733841545SHajimu UMEMOTO else if (imo->imo_multicast_addr.s_addr) { 186833841545SHajimu UMEMOTO /* return the value user has set */ 186933841545SHajimu UMEMOTO addr = imo->imo_multicast_addr; 187033841545SHajimu UMEMOTO } else { 1871df8bae1dSRodney W. Grimes IFP_TO_IA(imo->imo_multicast_ifp, ia); 1872cfe8b629SGarrett Wollman addr.s_addr = (ia == NULL) ? INADDR_ANY 1873df8bae1dSRodney W. Grimes : IA_SIN(ia)->sin_addr.s_addr; 1874df8bae1dSRodney W. Grimes } 1875cfe8b629SGarrett Wollman error = sooptcopyout(sopt, &addr, sizeof addr); 1876cfe8b629SGarrett Wollman break; 1877df8bae1dSRodney W. Grimes 1878df8bae1dSRodney W. Grimes case IP_MULTICAST_TTL: 1879cfe8b629SGarrett Wollman if (imo == 0) 1880cfe8b629SGarrett Wollman optval = coptval = IP_DEFAULT_MULTICAST_TTL; 1881cfe8b629SGarrett Wollman else 1882cfe8b629SGarrett Wollman optval = coptval = imo->imo_multicast_ttl; 1883cfe8b629SGarrett Wollman if (sopt->sopt_valsize == 1) 1884cfe8b629SGarrett Wollman error = sooptcopyout(sopt, &coptval, 1); 1885cfe8b629SGarrett Wollman else 1886cfe8b629SGarrett Wollman error = sooptcopyout(sopt, &optval, sizeof optval); 1887cfe8b629SGarrett Wollman break; 1888df8bae1dSRodney W. Grimes 1889df8bae1dSRodney W. Grimes case IP_MULTICAST_LOOP: 1890cfe8b629SGarrett Wollman if (imo == 0) 1891cfe8b629SGarrett Wollman optval = coptval = IP_DEFAULT_MULTICAST_LOOP; 1892cfe8b629SGarrett Wollman else 1893cfe8b629SGarrett Wollman optval = coptval = imo->imo_multicast_loop; 1894cfe8b629SGarrett Wollman if (sopt->sopt_valsize == 1) 1895cfe8b629SGarrett Wollman error = sooptcopyout(sopt, &coptval, 1); 1896cfe8b629SGarrett Wollman else 1897cfe8b629SGarrett Wollman error = sooptcopyout(sopt, &optval, sizeof optval); 1898cfe8b629SGarrett Wollman break; 1899df8bae1dSRodney W. Grimes 1900df8bae1dSRodney W. Grimes default: 1901cfe8b629SGarrett Wollman error = ENOPROTOOPT; 1902cfe8b629SGarrett Wollman break; 1903df8bae1dSRodney W. Grimes } 1904cfe8b629SGarrett Wollman return (error); 1905df8bae1dSRodney W. Grimes } 1906df8bae1dSRodney W. Grimes 1907df8bae1dSRodney W. Grimes /* 1908df8bae1dSRodney W. Grimes * Discard the IP multicast options. 1909df8bae1dSRodney W. Grimes */ 1910df8bae1dSRodney W. Grimes void 1911df8bae1dSRodney W. Grimes ip_freemoptions(imo) 1912df8bae1dSRodney W. Grimes register struct ip_moptions *imo; 1913df8bae1dSRodney W. Grimes { 1914df8bae1dSRodney W. Grimes register int i; 1915df8bae1dSRodney W. Grimes 1916df8bae1dSRodney W. Grimes if (imo != NULL) { 1917df8bae1dSRodney W. Grimes for (i = 0; i < imo->imo_num_memberships; ++i) 1918df8bae1dSRodney W. Grimes in_delmulti(imo->imo_membership[i]); 1919df8bae1dSRodney W. Grimes free(imo, M_IPMOPTS); 1920df8bae1dSRodney W. Grimes } 1921df8bae1dSRodney W. Grimes } 1922df8bae1dSRodney W. Grimes 1923df8bae1dSRodney W. Grimes /* 1924df8bae1dSRodney W. Grimes * Routine called from ip_output() to loop back a copy of an IP multicast 1925df8bae1dSRodney W. Grimes * packet to the input queue of a specified interface. Note that this 1926df8bae1dSRodney W. Grimes * calls the output routine of the loopback "driver", but with an interface 1927f5fea3ddSPaul Traina * pointer that might NOT be a loopback interface -- evil, but easier than 1928f5fea3ddSPaul Traina * replicating that code here. 1929df8bae1dSRodney W. Grimes */ 1930df8bae1dSRodney W. Grimes static void 193186b1d6d2SBill Fenner ip_mloopback(ifp, m, dst, hlen) 1932df8bae1dSRodney W. Grimes struct ifnet *ifp; 1933df8bae1dSRodney W. Grimes register struct mbuf *m; 1934df8bae1dSRodney W. Grimes register struct sockaddr_in *dst; 193586b1d6d2SBill Fenner int hlen; 1936df8bae1dSRodney W. Grimes { 1937df8bae1dSRodney W. Grimes register struct ip *ip; 1938df8bae1dSRodney W. Grimes struct mbuf *copym; 1939df8bae1dSRodney W. Grimes 1940df8bae1dSRodney W. Grimes copym = m_copy(m, 0, M_COPYALL); 194186b1d6d2SBill Fenner if (copym != NULL && (copym->m_flags & M_EXT || copym->m_len < hlen)) 194286b1d6d2SBill Fenner copym = m_pullup(copym, hlen); 1943df8bae1dSRodney W. Grimes if (copym != NULL) { 1944df8bae1dSRodney W. Grimes /* 1945df8bae1dSRodney W. Grimes * We don't bother to fragment if the IP length is greater 1946df8bae1dSRodney W. Grimes * than the interface's MTU. Can this possibly matter? 1947df8bae1dSRodney W. Grimes */ 1948df8bae1dSRodney W. Grimes ip = mtod(copym, struct ip *); 194904287599SRuslan Ermilov HTONS(ip->ip_len); 195004287599SRuslan Ermilov HTONS(ip->ip_off); 1951df8bae1dSRodney W. Grimes ip->ip_sum = 0; 19529c9137eaSGarrett Wollman if (ip->ip_vhl == IP_VHL_BORING) { 19539c9137eaSGarrett Wollman ip->ip_sum = in_cksum_hdr(ip); 19549c9137eaSGarrett Wollman } else { 195586b1d6d2SBill Fenner ip->ip_sum = in_cksum(copym, hlen); 19569c9137eaSGarrett Wollman } 19579c9137eaSGarrett Wollman /* 19589c9137eaSGarrett Wollman * NB: 1959e1596dffSBill Fenner * It's not clear whether there are any lingering 1960e1596dffSBill Fenner * reentrancy problems in other areas which might 1961e1596dffSBill Fenner * be exposed by using ip_input directly (in 1962e1596dffSBill Fenner * particular, everything which modifies the packet 1963e1596dffSBill Fenner * in-place). Yet another option is using the 1964e1596dffSBill Fenner * protosw directly to deliver the looped back 1965e1596dffSBill Fenner * packet. For the moment, we'll err on the side 1966ed7509acSJulian Elischer * of safety by using if_simloop(). 19679c9137eaSGarrett Wollman */ 1968201c2527SJulian Elischer #if 1 /* XXX */ 1969201c2527SJulian Elischer if (dst->sin_family != AF_INET) { 19702b8a366cSJulian Elischer printf("ip_mloopback: bad address family %d\n", 1971201c2527SJulian Elischer dst->sin_family); 1972201c2527SJulian Elischer dst->sin_family = AF_INET; 1973201c2527SJulian Elischer } 1974201c2527SJulian Elischer #endif 1975201c2527SJulian Elischer 19769c9137eaSGarrett Wollman #ifdef notdef 1977e1596dffSBill Fenner copym->m_pkthdr.rcvif = ifp; 1978ed7509acSJulian Elischer ip_input(copym); 19799c9137eaSGarrett Wollman #else 198050c6dc99SJonathan Lemon /* if the checksum hasn't been computed, mark it as valid */ 198150c6dc99SJonathan Lemon if (copym->m_pkthdr.csum_flags & CSUM_DELAY_DATA) { 198250c6dc99SJonathan Lemon copym->m_pkthdr.csum_flags |= 198350c6dc99SJonathan Lemon CSUM_DATA_VALID | CSUM_PSEUDO_HDR; 198450c6dc99SJonathan Lemon copym->m_pkthdr.csum_data = 0xffff; 198550c6dc99SJonathan Lemon } 198606a429a3SArchie Cobbs if_simloop(ifp, copym, dst->sin_family, 0); 19879c9137eaSGarrett Wollman #endif 1988df8bae1dSRodney W. Grimes } 1989df8bae1dSRodney W. Grimes } 1990