ip_output.c revision 1.39 1 1.39 christos /* $NetBSD: ip_output.c,v 1.39 1997/04/15 00:41:53 christos Exp $ */
2 1.19 cgd
3 1.1 cgd /*
4 1.18 mycroft * Copyright (c) 1982, 1986, 1988, 1990, 1993
5 1.18 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd *
35 1.19 cgd * @(#)ip_output.c 8.3 (Berkeley) 1/21/94
36 1.1 cgd */
37 1.1 cgd
38 1.8 mycroft #include <sys/param.h>
39 1.8 mycroft #include <sys/malloc.h>
40 1.8 mycroft #include <sys/mbuf.h>
41 1.8 mycroft #include <sys/errno.h>
42 1.8 mycroft #include <sys/protosw.h>
43 1.8 mycroft #include <sys/socket.h>
44 1.8 mycroft #include <sys/socketvar.h>
45 1.28 christos #include <sys/systm.h>
46 1.1 cgd
47 1.8 mycroft #include <net/if.h>
48 1.8 mycroft #include <net/route.h>
49 1.38 mrg #include <net/pfil.h>
50 1.1 cgd
51 1.8 mycroft #include <netinet/in.h>
52 1.8 mycroft #include <netinet/in_systm.h>
53 1.8 mycroft #include <netinet/ip.h>
54 1.8 mycroft #include <netinet/in_pcb.h>
55 1.8 mycroft #include <netinet/in_var.h>
56 1.8 mycroft #include <netinet/ip_var.h>
57 1.32 mrg
58 1.1 cgd #ifdef vax
59 1.8 mycroft #include <machine/mtpr.h>
60 1.1 cgd #endif
61 1.1 cgd
62 1.28 christos #include <machine/stdarg.h>
63 1.28 christos
64 1.12 mycroft static struct mbuf *ip_insertoptions __P((struct mbuf *, struct mbuf *, int *));
65 1.12 mycroft static void ip_mloopback
66 1.18 mycroft __P((struct ifnet *, struct mbuf *, struct sockaddr_in *));
67 1.1 cgd
68 1.1 cgd /*
69 1.1 cgd * IP output. The packet in mbuf chain m contains a skeletal IP
70 1.1 cgd * header (with len, off, ttl, proto, tos, src, dst).
71 1.1 cgd * The mbuf chain containing the packet will be freed.
72 1.1 cgd * The mbuf opt, if present, will not be freed.
73 1.1 cgd */
74 1.12 mycroft int
75 1.28 christos #if __STDC__
76 1.28 christos ip_output(struct mbuf *m0, ...)
77 1.28 christos #else
78 1.28 christos ip_output(m0, va_alist)
79 1.1 cgd struct mbuf *m0;
80 1.28 christos va_dcl
81 1.28 christos #endif
82 1.1 cgd {
83 1.1 cgd register struct ip *ip, *mhip;
84 1.1 cgd register struct ifnet *ifp;
85 1.1 cgd register struct mbuf *m = m0;
86 1.1 cgd register int hlen = sizeof (struct ip);
87 1.1 cgd int len, off, error = 0;
88 1.1 cgd struct route iproute;
89 1.1 cgd struct sockaddr_in *dst;
90 1.1 cgd struct in_ifaddr *ia;
91 1.28 christos struct mbuf *opt;
92 1.28 christos struct route *ro;
93 1.28 christos int flags;
94 1.28 christos struct ip_moptions *imo;
95 1.28 christos va_list ap;
96 1.32 mrg #ifdef PFIL_HOOKS
97 1.30 mrg struct packet_filter_hook *pfh;
98 1.30 mrg struct mbuf *m1;
99 1.36 mrg int rv;
100 1.32 mrg #endif /* PFIL_HOOKS */
101 1.28 christos
102 1.28 christos va_start(ap, m0);
103 1.28 christos opt = va_arg(ap, struct mbuf *);
104 1.28 christos ro = va_arg(ap, struct route *);
105 1.28 christos flags = va_arg(ap, int);
106 1.28 christos imo = va_arg(ap, struct ip_moptions *);
107 1.28 christos va_end(ap);
108 1.28 christos
109 1.1 cgd #ifdef DIAGNOSTIC
110 1.1 cgd if ((m->m_flags & M_PKTHDR) == 0)
111 1.1 cgd panic("ip_output no HDR");
112 1.1 cgd #endif
113 1.1 cgd if (opt) {
114 1.1 cgd m = ip_insertoptions(m, opt, &len);
115 1.1 cgd hlen = len;
116 1.1 cgd }
117 1.1 cgd ip = mtod(m, struct ip *);
118 1.1 cgd /*
119 1.1 cgd * Fill in IP header.
120 1.1 cgd */
121 1.18 mycroft if ((flags & (IP_FORWARDING|IP_RAWOUTPUT)) == 0) {
122 1.1 cgd ip->ip_v = IPVERSION;
123 1.1 cgd ip->ip_off &= IP_DF;
124 1.1 cgd ip->ip_id = htons(ip_id++);
125 1.1 cgd ip->ip_hl = hlen >> 2;
126 1.18 mycroft ipstat.ips_localout++;
127 1.1 cgd } else {
128 1.1 cgd hlen = ip->ip_hl << 2;
129 1.1 cgd }
130 1.1 cgd /*
131 1.1 cgd * Route packet.
132 1.1 cgd */
133 1.1 cgd if (ro == 0) {
134 1.1 cgd ro = &iproute;
135 1.1 cgd bzero((caddr_t)ro, sizeof (*ro));
136 1.1 cgd }
137 1.24 mycroft dst = satosin(&ro->ro_dst);
138 1.1 cgd /*
139 1.1 cgd * If there is a cached route,
140 1.1 cgd * check that it is to the same destination
141 1.1 cgd * and is still up. If not, free it and try again.
142 1.1 cgd */
143 1.1 cgd if (ro->ro_rt && ((ro->ro_rt->rt_flags & RTF_UP) == 0 ||
144 1.31 mycroft !in_hosteq(dst->sin_addr, ip->ip_dst))) {
145 1.1 cgd RTFREE(ro->ro_rt);
146 1.1 cgd ro->ro_rt = (struct rtentry *)0;
147 1.1 cgd }
148 1.1 cgd if (ro->ro_rt == 0) {
149 1.1 cgd dst->sin_family = AF_INET;
150 1.1 cgd dst->sin_len = sizeof(*dst);
151 1.1 cgd dst->sin_addr = ip->ip_dst;
152 1.1 cgd }
153 1.1 cgd /*
154 1.1 cgd * If routing to interface only,
155 1.1 cgd * short circuit routing lookup.
156 1.1 cgd */
157 1.1 cgd if (flags & IP_ROUTETOIF) {
158 1.29 mrg if ((ia = ifatoia(ifa_ifwithladdr(sintosa(dst)))) == 0) {
159 1.18 mycroft ipstat.ips_noroute++;
160 1.1 cgd error = ENETUNREACH;
161 1.1 cgd goto bad;
162 1.1 cgd }
163 1.1 cgd ifp = ia->ia_ifp;
164 1.18 mycroft ip->ip_ttl = 1;
165 1.1 cgd } else {
166 1.1 cgd if (ro->ro_rt == 0)
167 1.1 cgd rtalloc(ro);
168 1.1 cgd if (ro->ro_rt == 0) {
169 1.18 mycroft ipstat.ips_noroute++;
170 1.1 cgd error = EHOSTUNREACH;
171 1.1 cgd goto bad;
172 1.1 cgd }
173 1.18 mycroft ia = ifatoia(ro->ro_rt->rt_ifa);
174 1.1 cgd ifp = ro->ro_rt->rt_ifp;
175 1.1 cgd ro->ro_rt->rt_use++;
176 1.1 cgd if (ro->ro_rt->rt_flags & RTF_GATEWAY)
177 1.24 mycroft dst = satosin(ro->ro_rt->rt_gateway);
178 1.1 cgd }
179 1.23 mycroft if (IN_MULTICAST(ip->ip_dst.s_addr)) {
180 1.5 hpeyerl struct in_multi *inm;
181 1.5 hpeyerl
182 1.5 hpeyerl m->m_flags |= M_MCAST;
183 1.5 hpeyerl /*
184 1.5 hpeyerl * IP destination address is multicast. Make sure "dst"
185 1.5 hpeyerl * still points to the address in "ro". (It may have been
186 1.5 hpeyerl * changed to point to a gateway address, above.)
187 1.5 hpeyerl */
188 1.24 mycroft dst = satosin(&ro->ro_dst);
189 1.5 hpeyerl /*
190 1.5 hpeyerl * See if the caller provided any multicast options
191 1.5 hpeyerl */
192 1.13 mycroft if (imo != NULL) {
193 1.5 hpeyerl ip->ip_ttl = imo->imo_multicast_ttl;
194 1.5 hpeyerl if (imo->imo_multicast_ifp != NULL)
195 1.5 hpeyerl ifp = imo->imo_multicast_ifp;
196 1.18 mycroft } else
197 1.5 hpeyerl ip->ip_ttl = IP_DEFAULT_MULTICAST_TTL;
198 1.5 hpeyerl /*
199 1.5 hpeyerl * Confirm that the outgoing interface supports multicast.
200 1.5 hpeyerl */
201 1.5 hpeyerl if ((ifp->if_flags & IFF_MULTICAST) == 0) {
202 1.18 mycroft ipstat.ips_noroute++;
203 1.5 hpeyerl error = ENETUNREACH;
204 1.5 hpeyerl goto bad;
205 1.5 hpeyerl }
206 1.5 hpeyerl /*
207 1.5 hpeyerl * If source address not specified yet, use address
208 1.5 hpeyerl * of outgoing interface.
209 1.5 hpeyerl */
210 1.31 mycroft if (in_nullhost(ip->ip_src)) {
211 1.5 hpeyerl register struct in_ifaddr *ia;
212 1.5 hpeyerl
213 1.26 mycroft for (ia = in_ifaddr.tqh_first; ia; ia = ia->ia_list.tqe_next)
214 1.5 hpeyerl if (ia->ia_ifp == ifp) {
215 1.25 mycroft ip->ip_src = ia->ia_addr.sin_addr;
216 1.5 hpeyerl break;
217 1.5 hpeyerl }
218 1.5 hpeyerl }
219 1.5 hpeyerl
220 1.5 hpeyerl IN_LOOKUP_MULTI(ip->ip_dst, ifp, inm);
221 1.5 hpeyerl if (inm != NULL &&
222 1.5 hpeyerl (imo == NULL || imo->imo_multicast_loop)) {
223 1.5 hpeyerl /*
224 1.11 mycroft * If we belong to the destination multicast group
225 1.5 hpeyerl * on the outgoing interface, and the caller did not
226 1.5 hpeyerl * forbid loopback, loop back a copy.
227 1.5 hpeyerl */
228 1.5 hpeyerl ip_mloopback(ifp, m, dst);
229 1.5 hpeyerl }
230 1.5 hpeyerl #ifdef MROUTING
231 1.18 mycroft else {
232 1.5 hpeyerl /*
233 1.5 hpeyerl * If we are acting as a multicast router, perform
234 1.5 hpeyerl * multicast forwarding as if the packet had just
235 1.5 hpeyerl * arrived on the interface to which we are about
236 1.5 hpeyerl * to send. The multicast forwarding function
237 1.5 hpeyerl * recursively calls this function, using the
238 1.5 hpeyerl * IP_FORWARDING flag to prevent infinite recursion.
239 1.5 hpeyerl *
240 1.5 hpeyerl * Multicasts that are looped back by ip_mloopback(),
241 1.5 hpeyerl * above, will be forwarded by the ip_input() routine,
242 1.5 hpeyerl * if necessary.
243 1.5 hpeyerl */
244 1.18 mycroft extern struct socket *ip_mrouter;
245 1.22 cgd
246 1.18 mycroft if (ip_mrouter && (flags & IP_FORWARDING) == 0) {
247 1.18 mycroft if (ip_mforward(m, ifp) != 0) {
248 1.18 mycroft m_freem(m);
249 1.18 mycroft goto done;
250 1.18 mycroft }
251 1.5 hpeyerl }
252 1.5 hpeyerl }
253 1.5 hpeyerl #endif
254 1.5 hpeyerl /*
255 1.5 hpeyerl * Multicasts with a time-to-live of zero may be looped-
256 1.5 hpeyerl * back, above, but must not be transmitted on a network.
257 1.5 hpeyerl * Also, multicasts addressed to the loopback interface
258 1.5 hpeyerl * are not sent -- the above call to ip_mloopback() will
259 1.5 hpeyerl * loop back a copy if this host actually belongs to the
260 1.5 hpeyerl * destination group on the loopback interface.
261 1.5 hpeyerl */
262 1.20 mycroft if (ip->ip_ttl == 0 || (ifp->if_flags & IFF_LOOPBACK) != 0) {
263 1.5 hpeyerl m_freem(m);
264 1.5 hpeyerl goto done;
265 1.5 hpeyerl }
266 1.5 hpeyerl
267 1.5 hpeyerl goto sendit;
268 1.5 hpeyerl }
269 1.1 cgd #ifndef notdef
270 1.1 cgd /*
271 1.1 cgd * If source address not specified yet, use address
272 1.1 cgd * of outgoing interface.
273 1.1 cgd */
274 1.31 mycroft if (in_nullhost(ip->ip_src))
275 1.25 mycroft ip->ip_src = ia->ia_addr.sin_addr;
276 1.1 cgd #endif
277 1.1 cgd /*
278 1.1 cgd * Look for broadcast address and
279 1.1 cgd * and verify user is allowed to send
280 1.1 cgd * such a packet.
281 1.1 cgd */
282 1.18 mycroft if (in_broadcast(dst->sin_addr, ifp)) {
283 1.1 cgd if ((ifp->if_flags & IFF_BROADCAST) == 0) {
284 1.1 cgd error = EADDRNOTAVAIL;
285 1.1 cgd goto bad;
286 1.1 cgd }
287 1.1 cgd if ((flags & IP_ALLOWBROADCAST) == 0) {
288 1.1 cgd error = EACCES;
289 1.1 cgd goto bad;
290 1.1 cgd }
291 1.1 cgd /* don't allow broadcast messages to be fragmented */
292 1.21 cgd if ((u_int16_t)ip->ip_len > ifp->if_mtu) {
293 1.1 cgd error = EMSGSIZE;
294 1.1 cgd goto bad;
295 1.1 cgd }
296 1.1 cgd m->m_flags |= M_BCAST;
297 1.18 mycroft } else
298 1.18 mycroft m->m_flags &= ~M_BCAST;
299 1.18 mycroft
300 1.32 mrg #ifdef PFIL_HOOKS
301 1.30 mrg /*
302 1.30 mrg * Run through list of hooks for output packets.
303 1.30 mrg */
304 1.30 mrg m1 = m;
305 1.30 mrg for (pfh = pfil_hook_get(PFIL_OUT); pfh; pfh = pfh->pfil_link.le_next)
306 1.30 mrg if (pfh->pfil_func) {
307 1.36 mrg rv = pfh->pfil_func(ip, hlen, ifp, 1, &m1);
308 1.36 mrg if (rv) {
309 1.30 mrg error = EHOSTUNREACH;
310 1.34 veego goto done;
311 1.30 mrg }
312 1.39 christos ip = mtod(m = m1, struct ip *);
313 1.30 mrg }
314 1.32 mrg #endif /* PFIL_HOOKS */
315 1.5 hpeyerl sendit:
316 1.1 cgd /*
317 1.1 cgd * If small enough for interface, can just send directly.
318 1.1 cgd */
319 1.21 cgd if ((u_int16_t)ip->ip_len <= ifp->if_mtu) {
320 1.21 cgd ip->ip_len = htons((u_int16_t)ip->ip_len);
321 1.21 cgd ip->ip_off = htons((u_int16_t)ip->ip_off);
322 1.1 cgd ip->ip_sum = 0;
323 1.1 cgd ip->ip_sum = in_cksum(m, hlen);
324 1.24 mycroft error = (*ifp->if_output)(ifp, m, sintosa(dst), ro->ro_rt);
325 1.1 cgd goto done;
326 1.1 cgd }
327 1.1 cgd /*
328 1.1 cgd * Too large for interface; fragment if possible.
329 1.1 cgd * Must be able to put at least 8 bytes per fragment.
330 1.1 cgd */
331 1.1 cgd if (ip->ip_off & IP_DF) {
332 1.1 cgd error = EMSGSIZE;
333 1.18 mycroft ipstat.ips_cantfrag++;
334 1.1 cgd goto bad;
335 1.1 cgd }
336 1.1 cgd len = (ifp->if_mtu - hlen) &~ 7;
337 1.1 cgd if (len < 8) {
338 1.1 cgd error = EMSGSIZE;
339 1.1 cgd goto bad;
340 1.1 cgd }
341 1.1 cgd
342 1.1 cgd {
343 1.1 cgd int mhlen, firstlen = len;
344 1.1 cgd struct mbuf **mnext = &m->m_nextpkt;
345 1.1 cgd
346 1.1 cgd /*
347 1.1 cgd * Loop through length of segment after first fragment,
348 1.1 cgd * make new header and copy data of each part and link onto chain.
349 1.1 cgd */
350 1.1 cgd m0 = m;
351 1.1 cgd mhlen = sizeof (struct ip);
352 1.21 cgd for (off = hlen + len; off < (u_int16_t)ip->ip_len; off += len) {
353 1.1 cgd MGETHDR(m, M_DONTWAIT, MT_HEADER);
354 1.1 cgd if (m == 0) {
355 1.1 cgd error = ENOBUFS;
356 1.18 mycroft ipstat.ips_odropped++;
357 1.1 cgd goto sendorfree;
358 1.1 cgd }
359 1.22 cgd *mnext = m;
360 1.22 cgd mnext = &m->m_nextpkt;
361 1.1 cgd m->m_data += max_linkhdr;
362 1.1 cgd mhip = mtod(m, struct ip *);
363 1.1 cgd *mhip = *ip;
364 1.1 cgd if (hlen > sizeof (struct ip)) {
365 1.1 cgd mhlen = ip_optcopy(ip, mhip) + sizeof (struct ip);
366 1.1 cgd mhip->ip_hl = mhlen >> 2;
367 1.1 cgd }
368 1.1 cgd m->m_len = mhlen;
369 1.1 cgd mhip->ip_off = ((off - hlen) >> 3) + (ip->ip_off & ~IP_MF);
370 1.1 cgd if (ip->ip_off & IP_MF)
371 1.1 cgd mhip->ip_off |= IP_MF;
372 1.21 cgd if (off + len >= (u_int16_t)ip->ip_len)
373 1.21 cgd len = (u_int16_t)ip->ip_len - off;
374 1.1 cgd else
375 1.1 cgd mhip->ip_off |= IP_MF;
376 1.21 cgd mhip->ip_len = htons((u_int16_t)(len + mhlen));
377 1.1 cgd m->m_next = m_copy(m0, off, len);
378 1.1 cgd if (m->m_next == 0) {
379 1.1 cgd error = ENOBUFS; /* ??? */
380 1.18 mycroft ipstat.ips_odropped++;
381 1.1 cgd goto sendorfree;
382 1.1 cgd }
383 1.1 cgd m->m_pkthdr.len = mhlen + len;
384 1.1 cgd m->m_pkthdr.rcvif = (struct ifnet *)0;
385 1.21 cgd mhip->ip_off = htons((u_int16_t)mhip->ip_off);
386 1.1 cgd mhip->ip_sum = 0;
387 1.1 cgd mhip->ip_sum = in_cksum(m, mhlen);
388 1.1 cgd ipstat.ips_ofragments++;
389 1.1 cgd }
390 1.1 cgd /*
391 1.1 cgd * Update first fragment by trimming what's been copied out
392 1.1 cgd * and updating header, then send each fragment (in order).
393 1.1 cgd */
394 1.1 cgd m = m0;
395 1.21 cgd m_adj(m, hlen + firstlen - (u_int16_t)ip->ip_len);
396 1.1 cgd m->m_pkthdr.len = hlen + firstlen;
397 1.21 cgd ip->ip_len = htons((u_int16_t)m->m_pkthdr.len);
398 1.21 cgd ip->ip_off = htons((u_int16_t)(ip->ip_off | IP_MF));
399 1.1 cgd ip->ip_sum = 0;
400 1.1 cgd ip->ip_sum = in_cksum(m, hlen);
401 1.1 cgd sendorfree:
402 1.1 cgd for (m = m0; m; m = m0) {
403 1.1 cgd m0 = m->m_nextpkt;
404 1.1 cgd m->m_nextpkt = 0;
405 1.1 cgd if (error == 0)
406 1.24 mycroft error = (*ifp->if_output)(ifp, m, sintosa(dst),
407 1.24 mycroft ro->ro_rt);
408 1.1 cgd else
409 1.1 cgd m_freem(m);
410 1.1 cgd }
411 1.18 mycroft
412 1.18 mycroft if (error == 0)
413 1.18 mycroft ipstat.ips_fragmented++;
414 1.1 cgd }
415 1.1 cgd done:
416 1.31 mycroft if (ro == &iproute && (flags & IP_ROUTETOIF) == 0 && ro->ro_rt) {
417 1.1 cgd RTFREE(ro->ro_rt);
418 1.31 mycroft ro->ro_rt = 0;
419 1.31 mycroft }
420 1.1 cgd return (error);
421 1.1 cgd bad:
422 1.33 is m_freem(m);
423 1.1 cgd goto done;
424 1.1 cgd }
425 1.1 cgd
426 1.1 cgd /*
427 1.1 cgd * Insert IP options into preformed packet.
428 1.1 cgd * Adjust IP destination as required for IP source routing,
429 1.1 cgd * as indicated by a non-zero in_addr at the start of the options.
430 1.1 cgd */
431 1.12 mycroft static struct mbuf *
432 1.1 cgd ip_insertoptions(m, opt, phlen)
433 1.1 cgd register struct mbuf *m;
434 1.1 cgd struct mbuf *opt;
435 1.1 cgd int *phlen;
436 1.1 cgd {
437 1.1 cgd register struct ipoption *p = mtod(opt, struct ipoption *);
438 1.1 cgd struct mbuf *n;
439 1.1 cgd register struct ip *ip = mtod(m, struct ip *);
440 1.1 cgd unsigned optlen;
441 1.1 cgd
442 1.1 cgd optlen = opt->m_len - sizeof(p->ipopt_dst);
443 1.21 cgd if (optlen + (u_int16_t)ip->ip_len > IP_MAXPACKET)
444 1.1 cgd return (m); /* XXX should fail */
445 1.31 mycroft if (!in_nullhost(p->ipopt_dst))
446 1.1 cgd ip->ip_dst = p->ipopt_dst;
447 1.1 cgd if (m->m_flags & M_EXT || m->m_data - optlen < m->m_pktdat) {
448 1.1 cgd MGETHDR(n, M_DONTWAIT, MT_HEADER);
449 1.1 cgd if (n == 0)
450 1.1 cgd return (m);
451 1.1 cgd n->m_pkthdr.len = m->m_pkthdr.len + optlen;
452 1.1 cgd m->m_len -= sizeof(struct ip);
453 1.1 cgd m->m_data += sizeof(struct ip);
454 1.1 cgd n->m_next = m;
455 1.1 cgd m = n;
456 1.1 cgd m->m_len = optlen + sizeof(struct ip);
457 1.1 cgd m->m_data += max_linkhdr;
458 1.1 cgd bcopy((caddr_t)ip, mtod(m, caddr_t), sizeof(struct ip));
459 1.1 cgd } else {
460 1.1 cgd m->m_data -= optlen;
461 1.1 cgd m->m_len += optlen;
462 1.1 cgd m->m_pkthdr.len += optlen;
463 1.1 cgd ovbcopy((caddr_t)ip, mtod(m, caddr_t), sizeof(struct ip));
464 1.1 cgd }
465 1.1 cgd ip = mtod(m, struct ip *);
466 1.1 cgd bcopy((caddr_t)p->ipopt_list, (caddr_t)(ip + 1), (unsigned)optlen);
467 1.1 cgd *phlen = sizeof(struct ip) + optlen;
468 1.1 cgd ip->ip_len += optlen;
469 1.1 cgd return (m);
470 1.1 cgd }
471 1.1 cgd
472 1.1 cgd /*
473 1.1 cgd * Copy options from ip to jp,
474 1.1 cgd * omitting those not copied during fragmentation.
475 1.1 cgd */
476 1.12 mycroft int
477 1.1 cgd ip_optcopy(ip, jp)
478 1.1 cgd struct ip *ip, *jp;
479 1.1 cgd {
480 1.1 cgd register u_char *cp, *dp;
481 1.1 cgd int opt, optlen, cnt;
482 1.1 cgd
483 1.1 cgd cp = (u_char *)(ip + 1);
484 1.1 cgd dp = (u_char *)(jp + 1);
485 1.1 cgd cnt = (ip->ip_hl << 2) - sizeof (struct ip);
486 1.1 cgd for (; cnt > 0; cnt -= optlen, cp += optlen) {
487 1.1 cgd opt = cp[0];
488 1.1 cgd if (opt == IPOPT_EOL)
489 1.1 cgd break;
490 1.18 mycroft if (opt == IPOPT_NOP) {
491 1.18 mycroft /* Preserve for IP mcast tunnel's LSRR alignment. */
492 1.18 mycroft *dp++ = IPOPT_NOP;
493 1.1 cgd optlen = 1;
494 1.18 mycroft continue;
495 1.18 mycroft } else
496 1.1 cgd optlen = cp[IPOPT_OLEN];
497 1.1 cgd /* bogus lengths should have been caught by ip_dooptions */
498 1.1 cgd if (optlen > cnt)
499 1.1 cgd optlen = cnt;
500 1.1 cgd if (IPOPT_COPIED(opt)) {
501 1.1 cgd bcopy((caddr_t)cp, (caddr_t)dp, (unsigned)optlen);
502 1.1 cgd dp += optlen;
503 1.1 cgd }
504 1.1 cgd }
505 1.1 cgd for (optlen = dp - (u_char *)(jp+1); optlen & 0x3; optlen++)
506 1.1 cgd *dp++ = IPOPT_EOL;
507 1.1 cgd return (optlen);
508 1.1 cgd }
509 1.1 cgd
510 1.1 cgd /*
511 1.1 cgd * IP socket option processing.
512 1.1 cgd */
513 1.12 mycroft int
514 1.1 cgd ip_ctloutput(op, so, level, optname, mp)
515 1.1 cgd int op;
516 1.1 cgd struct socket *so;
517 1.1 cgd int level, optname;
518 1.1 cgd struct mbuf **mp;
519 1.1 cgd {
520 1.1 cgd register struct inpcb *inp = sotoinpcb(so);
521 1.16 brezak register struct mbuf *m = *mp;
522 1.28 christos register int optval = 0;
523 1.1 cgd int error = 0;
524 1.1 cgd
525 1.18 mycroft if (level != IPPROTO_IP) {
526 1.1 cgd error = EINVAL;
527 1.18 mycroft if (op == PRCO_SETOPT && *mp)
528 1.18 mycroft (void) m_free(*mp);
529 1.18 mycroft } else switch (op) {
530 1.1 cgd
531 1.1 cgd case PRCO_SETOPT:
532 1.1 cgd switch (optname) {
533 1.1 cgd case IP_OPTIONS:
534 1.1 cgd #ifdef notyet
535 1.1 cgd case IP_RETOPTS:
536 1.1 cgd return (ip_pcbopts(optname, &inp->inp_options, m));
537 1.1 cgd #else
538 1.1 cgd return (ip_pcbopts(&inp->inp_options, m));
539 1.1 cgd #endif
540 1.1 cgd
541 1.1 cgd case IP_TOS:
542 1.1 cgd case IP_TTL:
543 1.1 cgd case IP_RECVOPTS:
544 1.1 cgd case IP_RECVRETOPTS:
545 1.1 cgd case IP_RECVDSTADDR:
546 1.37 thorpej case IP_RECVIF:
547 1.27 cgd if (m == NULL || m->m_len != sizeof(int))
548 1.1 cgd error = EINVAL;
549 1.1 cgd else {
550 1.1 cgd optval = *mtod(m, int *);
551 1.1 cgd switch (optname) {
552 1.1 cgd
553 1.1 cgd case IP_TOS:
554 1.1 cgd inp->inp_ip.ip_tos = optval;
555 1.1 cgd break;
556 1.1 cgd
557 1.1 cgd case IP_TTL:
558 1.1 cgd inp->inp_ip.ip_ttl = optval;
559 1.1 cgd break;
560 1.1 cgd #define OPTSET(bit) \
561 1.1 cgd if (optval) \
562 1.1 cgd inp->inp_flags |= bit; \
563 1.1 cgd else \
564 1.1 cgd inp->inp_flags &= ~bit;
565 1.1 cgd
566 1.1 cgd case IP_RECVOPTS:
567 1.1 cgd OPTSET(INP_RECVOPTS);
568 1.1 cgd break;
569 1.1 cgd
570 1.1 cgd case IP_RECVRETOPTS:
571 1.1 cgd OPTSET(INP_RECVRETOPTS);
572 1.1 cgd break;
573 1.1 cgd
574 1.1 cgd case IP_RECVDSTADDR:
575 1.1 cgd OPTSET(INP_RECVDSTADDR);
576 1.1 cgd break;
577 1.37 thorpej
578 1.37 thorpej case IP_RECVIF:
579 1.37 thorpej OPTSET(INP_RECVIF);
580 1.37 thorpej break;
581 1.1 cgd }
582 1.1 cgd }
583 1.1 cgd break;
584 1.1 cgd #undef OPTSET
585 1.18 mycroft
586 1.18 mycroft case IP_MULTICAST_IF:
587 1.18 mycroft case IP_MULTICAST_TTL:
588 1.18 mycroft case IP_MULTICAST_LOOP:
589 1.18 mycroft case IP_ADD_MEMBERSHIP:
590 1.18 mycroft case IP_DROP_MEMBERSHIP:
591 1.18 mycroft error = ip_setmoptions(optname, &inp->inp_moptions, m);
592 1.18 mycroft break;
593 1.1 cgd
594 1.1 cgd default:
595 1.18 mycroft error = ENOPROTOOPT;
596 1.1 cgd break;
597 1.1 cgd }
598 1.1 cgd if (m)
599 1.1 cgd (void)m_free(m);
600 1.1 cgd break;
601 1.1 cgd
602 1.1 cgd case PRCO_GETOPT:
603 1.1 cgd switch (optname) {
604 1.1 cgd case IP_OPTIONS:
605 1.1 cgd case IP_RETOPTS:
606 1.1 cgd *mp = m = m_get(M_WAIT, MT_SOOPTS);
607 1.1 cgd if (inp->inp_options) {
608 1.1 cgd m->m_len = inp->inp_options->m_len;
609 1.1 cgd bcopy(mtod(inp->inp_options, caddr_t),
610 1.1 cgd mtod(m, caddr_t), (unsigned)m->m_len);
611 1.1 cgd } else
612 1.1 cgd m->m_len = 0;
613 1.1 cgd break;
614 1.1 cgd
615 1.1 cgd case IP_TOS:
616 1.1 cgd case IP_TTL:
617 1.1 cgd case IP_RECVOPTS:
618 1.1 cgd case IP_RECVRETOPTS:
619 1.1 cgd case IP_RECVDSTADDR:
620 1.37 thorpej case IP_RECVIF:
621 1.1 cgd *mp = m = m_get(M_WAIT, MT_SOOPTS);
622 1.1 cgd m->m_len = sizeof(int);
623 1.1 cgd switch (optname) {
624 1.1 cgd
625 1.1 cgd case IP_TOS:
626 1.1 cgd optval = inp->inp_ip.ip_tos;
627 1.1 cgd break;
628 1.1 cgd
629 1.1 cgd case IP_TTL:
630 1.1 cgd optval = inp->inp_ip.ip_ttl;
631 1.1 cgd break;
632 1.1 cgd
633 1.1 cgd #define OPTBIT(bit) (inp->inp_flags & bit ? 1 : 0)
634 1.1 cgd
635 1.1 cgd case IP_RECVOPTS:
636 1.1 cgd optval = OPTBIT(INP_RECVOPTS);
637 1.1 cgd break;
638 1.1 cgd
639 1.1 cgd case IP_RECVRETOPTS:
640 1.1 cgd optval = OPTBIT(INP_RECVRETOPTS);
641 1.1 cgd break;
642 1.1 cgd
643 1.1 cgd case IP_RECVDSTADDR:
644 1.1 cgd optval = OPTBIT(INP_RECVDSTADDR);
645 1.37 thorpej break;
646 1.37 thorpej
647 1.37 thorpej case IP_RECVIF:
648 1.37 thorpej optval = OPTBIT(INP_RECVIF);
649 1.1 cgd break;
650 1.1 cgd }
651 1.1 cgd *mtod(m, int *) = optval;
652 1.1 cgd break;
653 1.18 mycroft
654 1.18 mycroft case IP_MULTICAST_IF:
655 1.18 mycroft case IP_MULTICAST_TTL:
656 1.18 mycroft case IP_MULTICAST_LOOP:
657 1.18 mycroft case IP_ADD_MEMBERSHIP:
658 1.18 mycroft case IP_DROP_MEMBERSHIP:
659 1.18 mycroft error = ip_getmoptions(optname, inp->inp_moptions, mp);
660 1.18 mycroft break;
661 1.1 cgd
662 1.1 cgd default:
663 1.18 mycroft error = ENOPROTOOPT;
664 1.1 cgd break;
665 1.1 cgd }
666 1.1 cgd break;
667 1.1 cgd }
668 1.1 cgd return (error);
669 1.1 cgd }
670 1.1 cgd
671 1.1 cgd /*
672 1.1 cgd * Set up IP options in pcb for insertion in output packets.
673 1.1 cgd * Store in mbuf with pointer in pcbopt, adding pseudo-option
674 1.1 cgd * with destination address if source routed.
675 1.1 cgd */
676 1.12 mycroft int
677 1.1 cgd #ifdef notyet
678 1.1 cgd ip_pcbopts(optname, pcbopt, m)
679 1.1 cgd int optname;
680 1.1 cgd #else
681 1.1 cgd ip_pcbopts(pcbopt, m)
682 1.1 cgd #endif
683 1.1 cgd struct mbuf **pcbopt;
684 1.1 cgd register struct mbuf *m;
685 1.1 cgd {
686 1.1 cgd register cnt, optlen;
687 1.1 cgd register u_char *cp;
688 1.1 cgd u_char opt;
689 1.1 cgd
690 1.1 cgd /* turn off any old options */
691 1.1 cgd if (*pcbopt)
692 1.1 cgd (void)m_free(*pcbopt);
693 1.1 cgd *pcbopt = 0;
694 1.1 cgd if (m == (struct mbuf *)0 || m->m_len == 0) {
695 1.1 cgd /*
696 1.1 cgd * Only turning off any previous options.
697 1.1 cgd */
698 1.1 cgd if (m)
699 1.1 cgd (void)m_free(m);
700 1.1 cgd return (0);
701 1.1 cgd }
702 1.1 cgd
703 1.1 cgd #ifndef vax
704 1.21 cgd if (m->m_len % sizeof(int32_t))
705 1.1 cgd goto bad;
706 1.1 cgd #endif
707 1.1 cgd /*
708 1.1 cgd * IP first-hop destination address will be stored before
709 1.1 cgd * actual options; move other options back
710 1.1 cgd * and clear it when none present.
711 1.1 cgd */
712 1.1 cgd if (m->m_data + m->m_len + sizeof(struct in_addr) >= &m->m_dat[MLEN])
713 1.1 cgd goto bad;
714 1.1 cgd cnt = m->m_len;
715 1.1 cgd m->m_len += sizeof(struct in_addr);
716 1.1 cgd cp = mtod(m, u_char *) + sizeof(struct in_addr);
717 1.1 cgd ovbcopy(mtod(m, caddr_t), (caddr_t)cp, (unsigned)cnt);
718 1.1 cgd bzero(mtod(m, caddr_t), sizeof(struct in_addr));
719 1.1 cgd
720 1.1 cgd for (; cnt > 0; cnt -= optlen, cp += optlen) {
721 1.1 cgd opt = cp[IPOPT_OPTVAL];
722 1.1 cgd if (opt == IPOPT_EOL)
723 1.1 cgd break;
724 1.1 cgd if (opt == IPOPT_NOP)
725 1.1 cgd optlen = 1;
726 1.1 cgd else {
727 1.1 cgd optlen = cp[IPOPT_OLEN];
728 1.1 cgd if (optlen <= IPOPT_OLEN || optlen > cnt)
729 1.1 cgd goto bad;
730 1.1 cgd }
731 1.1 cgd switch (opt) {
732 1.1 cgd
733 1.1 cgd default:
734 1.1 cgd break;
735 1.1 cgd
736 1.1 cgd case IPOPT_LSRR:
737 1.1 cgd case IPOPT_SSRR:
738 1.1 cgd /*
739 1.1 cgd * user process specifies route as:
740 1.1 cgd * ->A->B->C->D
741 1.1 cgd * D must be our final destination (but we can't
742 1.1 cgd * check that since we may not have connected yet).
743 1.1 cgd * A is first hop destination, which doesn't appear in
744 1.1 cgd * actual IP option, but is stored before the options.
745 1.1 cgd */
746 1.1 cgd if (optlen < IPOPT_MINOFF - 1 + sizeof(struct in_addr))
747 1.1 cgd goto bad;
748 1.1 cgd m->m_len -= sizeof(struct in_addr);
749 1.1 cgd cnt -= sizeof(struct in_addr);
750 1.1 cgd optlen -= sizeof(struct in_addr);
751 1.1 cgd cp[IPOPT_OLEN] = optlen;
752 1.1 cgd /*
753 1.1 cgd * Move first hop before start of options.
754 1.1 cgd */
755 1.1 cgd bcopy((caddr_t)&cp[IPOPT_OFFSET+1], mtod(m, caddr_t),
756 1.1 cgd sizeof(struct in_addr));
757 1.1 cgd /*
758 1.1 cgd * Then copy rest of options back
759 1.1 cgd * to close up the deleted entry.
760 1.1 cgd */
761 1.1 cgd ovbcopy((caddr_t)(&cp[IPOPT_OFFSET+1] +
762 1.1 cgd sizeof(struct in_addr)),
763 1.1 cgd (caddr_t)&cp[IPOPT_OFFSET+1],
764 1.1 cgd (unsigned)cnt + sizeof(struct in_addr));
765 1.1 cgd break;
766 1.1 cgd }
767 1.1 cgd }
768 1.1 cgd if (m->m_len > MAX_IPOPTLEN + sizeof(struct in_addr))
769 1.1 cgd goto bad;
770 1.1 cgd *pcbopt = m;
771 1.1 cgd return (0);
772 1.1 cgd
773 1.1 cgd bad:
774 1.1 cgd (void)m_free(m);
775 1.1 cgd return (EINVAL);
776 1.1 cgd }
777 1.5 hpeyerl
778 1.5 hpeyerl /*
779 1.5 hpeyerl * Set the IP multicast options in response to user setsockopt().
780 1.5 hpeyerl */
781 1.5 hpeyerl int
782 1.5 hpeyerl ip_setmoptions(optname, imop, m)
783 1.5 hpeyerl int optname;
784 1.5 hpeyerl struct ip_moptions **imop;
785 1.5 hpeyerl struct mbuf *m;
786 1.5 hpeyerl {
787 1.5 hpeyerl register int error = 0;
788 1.5 hpeyerl u_char loop;
789 1.5 hpeyerl register int i;
790 1.5 hpeyerl struct in_addr addr;
791 1.5 hpeyerl register struct ip_mreq *mreq;
792 1.5 hpeyerl register struct ifnet *ifp;
793 1.5 hpeyerl register struct ip_moptions *imo = *imop;
794 1.5 hpeyerl struct route ro;
795 1.5 hpeyerl register struct sockaddr_in *dst;
796 1.5 hpeyerl
797 1.5 hpeyerl if (imo == NULL) {
798 1.5 hpeyerl /*
799 1.5 hpeyerl * No multicast option buffer attached to the pcb;
800 1.5 hpeyerl * allocate one and initialize to default values.
801 1.5 hpeyerl */
802 1.22 cgd imo = (struct ip_moptions *)malloc(sizeof(*imo), M_IPMOPTS,
803 1.5 hpeyerl M_WAITOK);
804 1.5 hpeyerl
805 1.5 hpeyerl if (imo == NULL)
806 1.5 hpeyerl return (ENOBUFS);
807 1.5 hpeyerl *imop = imo;
808 1.5 hpeyerl imo->imo_multicast_ifp = NULL;
809 1.5 hpeyerl imo->imo_multicast_ttl = IP_DEFAULT_MULTICAST_TTL;
810 1.5 hpeyerl imo->imo_multicast_loop = IP_DEFAULT_MULTICAST_LOOP;
811 1.5 hpeyerl imo->imo_num_memberships = 0;
812 1.5 hpeyerl }
813 1.5 hpeyerl
814 1.5 hpeyerl switch (optname) {
815 1.5 hpeyerl
816 1.5 hpeyerl case IP_MULTICAST_IF:
817 1.5 hpeyerl /*
818 1.5 hpeyerl * Select the interface for outgoing multicast packets.
819 1.5 hpeyerl */
820 1.5 hpeyerl if (m == NULL || m->m_len != sizeof(struct in_addr)) {
821 1.5 hpeyerl error = EINVAL;
822 1.5 hpeyerl break;
823 1.5 hpeyerl }
824 1.5 hpeyerl addr = *(mtod(m, struct in_addr *));
825 1.5 hpeyerl /*
826 1.5 hpeyerl * INADDR_ANY is used to remove a previous selection.
827 1.11 mycroft * When no interface is selected, a default one is
828 1.5 hpeyerl * chosen every time a multicast packet is sent.
829 1.5 hpeyerl */
830 1.31 mycroft if (in_nullhost(addr)) {
831 1.5 hpeyerl imo->imo_multicast_ifp = NULL;
832 1.5 hpeyerl break;
833 1.5 hpeyerl }
834 1.5 hpeyerl /*
835 1.5 hpeyerl * The selected interface is identified by its local
836 1.5 hpeyerl * IP address. Find the interface and confirm that
837 1.11 mycroft * it supports multicasting.
838 1.5 hpeyerl */
839 1.5 hpeyerl INADDR_TO_IFP(addr, ifp);
840 1.5 hpeyerl if (ifp == NULL || (ifp->if_flags & IFF_MULTICAST) == 0) {
841 1.5 hpeyerl error = EADDRNOTAVAIL;
842 1.5 hpeyerl break;
843 1.5 hpeyerl }
844 1.5 hpeyerl imo->imo_multicast_ifp = ifp;
845 1.5 hpeyerl break;
846 1.5 hpeyerl
847 1.5 hpeyerl case IP_MULTICAST_TTL:
848 1.5 hpeyerl /*
849 1.5 hpeyerl * Set the IP time-to-live for outgoing multicast packets.
850 1.5 hpeyerl */
851 1.5 hpeyerl if (m == NULL || m->m_len != 1) {
852 1.5 hpeyerl error = EINVAL;
853 1.5 hpeyerl break;
854 1.5 hpeyerl }
855 1.5 hpeyerl imo->imo_multicast_ttl = *(mtod(m, u_char *));
856 1.5 hpeyerl break;
857 1.11 mycroft
858 1.5 hpeyerl case IP_MULTICAST_LOOP:
859 1.5 hpeyerl /*
860 1.5 hpeyerl * Set the loopback flag for outgoing multicast packets.
861 1.5 hpeyerl * Must be zero or one.
862 1.5 hpeyerl */
863 1.5 hpeyerl if (m == NULL || m->m_len != 1 ||
864 1.5 hpeyerl (loop = *(mtod(m, u_char *))) > 1) {
865 1.5 hpeyerl error = EINVAL;
866 1.5 hpeyerl break;
867 1.11 mycroft }
868 1.5 hpeyerl imo->imo_multicast_loop = loop;
869 1.5 hpeyerl break;
870 1.5 hpeyerl
871 1.5 hpeyerl case IP_ADD_MEMBERSHIP:
872 1.5 hpeyerl /*
873 1.5 hpeyerl * Add a multicast group membership.
874 1.5 hpeyerl * Group must be a valid IP multicast address.
875 1.5 hpeyerl */
876 1.5 hpeyerl if (m == NULL || m->m_len != sizeof(struct ip_mreq)) {
877 1.5 hpeyerl error = EINVAL;
878 1.5 hpeyerl break;
879 1.5 hpeyerl }
880 1.5 hpeyerl mreq = mtod(m, struct ip_mreq *);
881 1.23 mycroft if (!IN_MULTICAST(mreq->imr_multiaddr.s_addr)) {
882 1.5 hpeyerl error = EINVAL;
883 1.5 hpeyerl break;
884 1.5 hpeyerl }
885 1.5 hpeyerl /*
886 1.5 hpeyerl * If no interface address was provided, use the interface of
887 1.5 hpeyerl * the route to the given multicast address.
888 1.5 hpeyerl */
889 1.31 mycroft if (in_nullhost(mreq->imr_interface)) {
890 1.5 hpeyerl ro.ro_rt = NULL;
891 1.24 mycroft dst = satosin(&ro.ro_dst);
892 1.5 hpeyerl dst->sin_len = sizeof(*dst);
893 1.5 hpeyerl dst->sin_family = AF_INET;
894 1.5 hpeyerl dst->sin_addr = mreq->imr_multiaddr;
895 1.5 hpeyerl rtalloc(&ro);
896 1.5 hpeyerl if (ro.ro_rt == NULL) {
897 1.5 hpeyerl error = EADDRNOTAVAIL;
898 1.5 hpeyerl break;
899 1.5 hpeyerl }
900 1.5 hpeyerl ifp = ro.ro_rt->rt_ifp;
901 1.5 hpeyerl rtfree(ro.ro_rt);
902 1.23 mycroft } else {
903 1.5 hpeyerl INADDR_TO_IFP(mreq->imr_interface, ifp);
904 1.5 hpeyerl }
905 1.5 hpeyerl /*
906 1.5 hpeyerl * See if we found an interface, and confirm that it
907 1.5 hpeyerl * supports multicast.
908 1.5 hpeyerl */
909 1.11 mycroft if (ifp == NULL || (ifp->if_flags & IFF_MULTICAST) == 0) {
910 1.5 hpeyerl error = EADDRNOTAVAIL;
911 1.5 hpeyerl break;
912 1.5 hpeyerl }
913 1.5 hpeyerl /*
914 1.5 hpeyerl * See if the membership already exists or if all the
915 1.5 hpeyerl * membership slots are full.
916 1.11 mycroft */
917 1.5 hpeyerl for (i = 0; i < imo->imo_num_memberships; ++i) {
918 1.5 hpeyerl if (imo->imo_membership[i]->inm_ifp == ifp &&
919 1.31 mycroft in_hosteq(imo->imo_membership[i]->inm_addr,
920 1.31 mycroft mreq->imr_multiaddr))
921 1.5 hpeyerl break;
922 1.11 mycroft }
923 1.5 hpeyerl if (i < imo->imo_num_memberships) {
924 1.5 hpeyerl error = EADDRINUSE;
925 1.5 hpeyerl break;
926 1.5 hpeyerl }
927 1.5 hpeyerl if (i == IP_MAX_MEMBERSHIPS) {
928 1.11 mycroft error = ETOOMANYREFS;
929 1.5 hpeyerl break;
930 1.5 hpeyerl }
931 1.5 hpeyerl /*
932 1.5 hpeyerl * Everything looks good; add a new record to the multicast
933 1.5 hpeyerl * address list for the given interface.
934 1.5 hpeyerl */
935 1.5 hpeyerl if ((imo->imo_membership[i] =
936 1.5 hpeyerl in_addmulti(&mreq->imr_multiaddr, ifp)) == NULL) {
937 1.5 hpeyerl error = ENOBUFS;
938 1.5 hpeyerl break;
939 1.5 hpeyerl }
940 1.5 hpeyerl ++imo->imo_num_memberships;
941 1.5 hpeyerl break;
942 1.5 hpeyerl
943 1.5 hpeyerl case IP_DROP_MEMBERSHIP:
944 1.5 hpeyerl /*
945 1.5 hpeyerl * Drop a multicast group membership.
946 1.5 hpeyerl * Group must be a valid IP multicast address.
947 1.5 hpeyerl */
948 1.5 hpeyerl if (m == NULL || m->m_len != sizeof(struct ip_mreq)) {
949 1.5 hpeyerl error = EINVAL;
950 1.5 hpeyerl break;
951 1.5 hpeyerl }
952 1.5 hpeyerl mreq = mtod(m, struct ip_mreq *);
953 1.23 mycroft if (!IN_MULTICAST(mreq->imr_multiaddr.s_addr)) {
954 1.5 hpeyerl error = EINVAL;
955 1.5 hpeyerl break;
956 1.5 hpeyerl }
957 1.5 hpeyerl /*
958 1.5 hpeyerl * If an interface address was specified, get a pointer
959 1.5 hpeyerl * to its ifnet structure.
960 1.5 hpeyerl */
961 1.31 mycroft if (in_nullhost(mreq->imr_interface))
962 1.5 hpeyerl ifp = NULL;
963 1.5 hpeyerl else {
964 1.5 hpeyerl INADDR_TO_IFP(mreq->imr_interface, ifp);
965 1.5 hpeyerl if (ifp == NULL) {
966 1.5 hpeyerl error = EADDRNOTAVAIL;
967 1.5 hpeyerl break;
968 1.5 hpeyerl }
969 1.5 hpeyerl }
970 1.5 hpeyerl /*
971 1.5 hpeyerl * Find the membership in the membership array.
972 1.5 hpeyerl */
973 1.5 hpeyerl for (i = 0; i < imo->imo_num_memberships; ++i) {
974 1.5 hpeyerl if ((ifp == NULL ||
975 1.5 hpeyerl imo->imo_membership[i]->inm_ifp == ifp) &&
976 1.31 mycroft in_hosteq(imo->imo_membership[i]->inm_addr,
977 1.31 mycroft mreq->imr_multiaddr))
978 1.5 hpeyerl break;
979 1.5 hpeyerl }
980 1.5 hpeyerl if (i == imo->imo_num_memberships) {
981 1.5 hpeyerl error = EADDRNOTAVAIL;
982 1.5 hpeyerl break;
983 1.5 hpeyerl }
984 1.5 hpeyerl /*
985 1.5 hpeyerl * Give up the multicast address record to which the
986 1.5 hpeyerl * membership points.
987 1.5 hpeyerl */
988 1.11 mycroft in_delmulti(imo->imo_membership[i]);
989 1.5 hpeyerl /*
990 1.5 hpeyerl * Remove the gap in the membership array.
991 1.5 hpeyerl */
992 1.5 hpeyerl for (++i; i < imo->imo_num_memberships; ++i)
993 1.5 hpeyerl imo->imo_membership[i-1] = imo->imo_membership[i];
994 1.5 hpeyerl --imo->imo_num_memberships;
995 1.5 hpeyerl break;
996 1.5 hpeyerl
997 1.5 hpeyerl default:
998 1.5 hpeyerl error = EOPNOTSUPP;
999 1.5 hpeyerl break;
1000 1.5 hpeyerl }
1001 1.5 hpeyerl
1002 1.5 hpeyerl /*
1003 1.5 hpeyerl * If all options have default values, no need to keep the mbuf.
1004 1.5 hpeyerl */
1005 1.5 hpeyerl if (imo->imo_multicast_ifp == NULL &&
1006 1.5 hpeyerl imo->imo_multicast_ttl == IP_DEFAULT_MULTICAST_TTL &&
1007 1.5 hpeyerl imo->imo_multicast_loop == IP_DEFAULT_MULTICAST_LOOP &&
1008 1.5 hpeyerl imo->imo_num_memberships == 0) {
1009 1.5 hpeyerl free(*imop, M_IPMOPTS);
1010 1.5 hpeyerl *imop = NULL;
1011 1.5 hpeyerl }
1012 1.5 hpeyerl
1013 1.5 hpeyerl return (error);
1014 1.5 hpeyerl }
1015 1.5 hpeyerl
1016 1.5 hpeyerl /*
1017 1.5 hpeyerl * Return the IP multicast options in response to user getsockopt().
1018 1.5 hpeyerl */
1019 1.5 hpeyerl int
1020 1.5 hpeyerl ip_getmoptions(optname, imo, mp)
1021 1.5 hpeyerl int optname;
1022 1.5 hpeyerl register struct ip_moptions *imo;
1023 1.5 hpeyerl register struct mbuf **mp;
1024 1.5 hpeyerl {
1025 1.5 hpeyerl u_char *ttl;
1026 1.5 hpeyerl u_char *loop;
1027 1.5 hpeyerl struct in_addr *addr;
1028 1.5 hpeyerl struct in_ifaddr *ia;
1029 1.5 hpeyerl
1030 1.5 hpeyerl *mp = m_get(M_WAIT, MT_SOOPTS);
1031 1.5 hpeyerl
1032 1.5 hpeyerl switch (optname) {
1033 1.5 hpeyerl
1034 1.5 hpeyerl case IP_MULTICAST_IF:
1035 1.5 hpeyerl addr = mtod(*mp, struct in_addr *);
1036 1.5 hpeyerl (*mp)->m_len = sizeof(struct in_addr);
1037 1.5 hpeyerl if (imo == NULL || imo->imo_multicast_ifp == NULL)
1038 1.31 mycroft *addr = zeroin_addr;
1039 1.5 hpeyerl else {
1040 1.5 hpeyerl IFP_TO_IA(imo->imo_multicast_ifp, ia);
1041 1.31 mycroft *addr = ia ? ia->ia_addr.sin_addr : zeroin_addr;
1042 1.5 hpeyerl }
1043 1.5 hpeyerl return (0);
1044 1.5 hpeyerl
1045 1.5 hpeyerl case IP_MULTICAST_TTL:
1046 1.5 hpeyerl ttl = mtod(*mp, u_char *);
1047 1.5 hpeyerl (*mp)->m_len = 1;
1048 1.31 mycroft *ttl = imo ? imo->imo_multicast_ttl
1049 1.31 mycroft : IP_DEFAULT_MULTICAST_TTL;
1050 1.5 hpeyerl return (0);
1051 1.5 hpeyerl
1052 1.5 hpeyerl case IP_MULTICAST_LOOP:
1053 1.5 hpeyerl loop = mtod(*mp, u_char *);
1054 1.5 hpeyerl (*mp)->m_len = 1;
1055 1.31 mycroft *loop = imo ? imo->imo_multicast_loop
1056 1.31 mycroft : IP_DEFAULT_MULTICAST_LOOP;
1057 1.5 hpeyerl return (0);
1058 1.5 hpeyerl
1059 1.5 hpeyerl default:
1060 1.5 hpeyerl return (EOPNOTSUPP);
1061 1.5 hpeyerl }
1062 1.5 hpeyerl }
1063 1.5 hpeyerl
1064 1.5 hpeyerl /*
1065 1.5 hpeyerl * Discard the IP multicast options.
1066 1.5 hpeyerl */
1067 1.5 hpeyerl void
1068 1.5 hpeyerl ip_freemoptions(imo)
1069 1.5 hpeyerl register struct ip_moptions *imo;
1070 1.5 hpeyerl {
1071 1.5 hpeyerl register int i;
1072 1.5 hpeyerl
1073 1.5 hpeyerl if (imo != NULL) {
1074 1.5 hpeyerl for (i = 0; i < imo->imo_num_memberships; ++i)
1075 1.5 hpeyerl in_delmulti(imo->imo_membership[i]);
1076 1.5 hpeyerl free(imo, M_IPMOPTS);
1077 1.5 hpeyerl }
1078 1.5 hpeyerl }
1079 1.5 hpeyerl
1080 1.5 hpeyerl /*
1081 1.5 hpeyerl * Routine called from ip_output() to loop back a copy of an IP multicast
1082 1.5 hpeyerl * packet to the input queue of a specified interface. Note that this
1083 1.5 hpeyerl * calls the output routine of the loopback "driver", but with an interface
1084 1.5 hpeyerl * pointer that might NOT be &loif -- easier than replicating that code here.
1085 1.5 hpeyerl */
1086 1.12 mycroft static void
1087 1.5 hpeyerl ip_mloopback(ifp, m, dst)
1088 1.5 hpeyerl struct ifnet *ifp;
1089 1.5 hpeyerl register struct mbuf *m;
1090 1.5 hpeyerl register struct sockaddr_in *dst;
1091 1.5 hpeyerl {
1092 1.5 hpeyerl register struct ip *ip;
1093 1.5 hpeyerl struct mbuf *copym;
1094 1.5 hpeyerl
1095 1.5 hpeyerl copym = m_copy(m, 0, M_COPYALL);
1096 1.5 hpeyerl if (copym != NULL) {
1097 1.5 hpeyerl /*
1098 1.5 hpeyerl * We don't bother to fragment if the IP length is greater
1099 1.5 hpeyerl * than the interface's MTU. Can this possibly matter?
1100 1.5 hpeyerl */
1101 1.5 hpeyerl ip = mtod(copym, struct ip *);
1102 1.21 cgd ip->ip_len = htons((u_int16_t)ip->ip_len);
1103 1.21 cgd ip->ip_off = htons((u_int16_t)ip->ip_off);
1104 1.5 hpeyerl ip->ip_sum = 0;
1105 1.5 hpeyerl ip->ip_sum = in_cksum(copym, ip->ip_hl << 2);
1106 1.24 mycroft (void) looutput(ifp, copym, sintosa(dst), NULL);
1107 1.5 hpeyerl }
1108 1.5 hpeyerl }
1109