ip_input.c revision 1.1 1 1.1 cgd /*
2 1.1 cgd * Copyright (c) 1982, 1986, 1988 Regents of the University of California.
3 1.1 cgd * All rights reserved.
4 1.1 cgd *
5 1.1 cgd * Redistribution and use in source and binary forms, with or without
6 1.1 cgd * modification, are permitted provided that the following conditions
7 1.1 cgd * are met:
8 1.1 cgd * 1. Redistributions of source code must retain the above copyright
9 1.1 cgd * notice, this list of conditions and the following disclaimer.
10 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer in the
12 1.1 cgd * documentation and/or other materials provided with the distribution.
13 1.1 cgd * 3. All advertising materials mentioning features or use of this software
14 1.1 cgd * must display the following acknowledgement:
15 1.1 cgd * This product includes software developed by the University of
16 1.1 cgd * California, Berkeley and its contributors.
17 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
18 1.1 cgd * may be used to endorse or promote products derived from this software
19 1.1 cgd * without specific prior written permission.
20 1.1 cgd *
21 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.1 cgd * SUCH DAMAGE.
32 1.1 cgd *
33 1.1 cgd * @(#)ip_input.c 7.19 (Berkeley) 5/25/91
34 1.1 cgd */
35 1.1 cgd
36 1.1 cgd #include "param.h"
37 1.1 cgd #include "systm.h"
38 1.1 cgd #include "malloc.h"
39 1.1 cgd #include "mbuf.h"
40 1.1 cgd #include "domain.h"
41 1.1 cgd #include "protosw.h"
42 1.1 cgd #include "socket.h"
43 1.1 cgd #include "errno.h"
44 1.1 cgd #include "time.h"
45 1.1 cgd #include "kernel.h"
46 1.1 cgd
47 1.1 cgd #include "../net/if.h"
48 1.1 cgd #include "../net/route.h"
49 1.1 cgd
50 1.1 cgd #include "in.h"
51 1.1 cgd #include "in_systm.h"
52 1.1 cgd #include "ip.h"
53 1.1 cgd #include "in_pcb.h"
54 1.1 cgd #include "in_var.h"
55 1.1 cgd #include "ip_var.h"
56 1.1 cgd #include "ip_icmp.h"
57 1.1 cgd
58 1.1 cgd #ifndef IPFORWARDING
59 1.1 cgd #ifdef GATEWAY
60 1.1 cgd #define IPFORWARDING 1 /* forward IP packets not for us */
61 1.1 cgd #else /* GATEWAY */
62 1.1 cgd #define IPFORWARDING 0 /* don't forward IP packets not for us */
63 1.1 cgd #endif /* GATEWAY */
64 1.1 cgd #endif /* IPFORWARDING */
65 1.1 cgd #ifndef IPSENDREDIRECTS
66 1.1 cgd #define IPSENDREDIRECTS 1
67 1.1 cgd #endif
68 1.1 cgd int ipforwarding = IPFORWARDING;
69 1.1 cgd int ipsendredirects = IPSENDREDIRECTS;
70 1.1 cgd #ifdef DIAGNOSTIC
71 1.1 cgd int ipprintfs = 0;
72 1.1 cgd #endif
73 1.1 cgd
74 1.1 cgd extern struct domain inetdomain;
75 1.1 cgd extern struct protosw inetsw[];
76 1.1 cgd u_char ip_protox[IPPROTO_MAX];
77 1.1 cgd int ipqmaxlen = IFQ_MAXLEN;
78 1.1 cgd struct in_ifaddr *in_ifaddr; /* first inet address */
79 1.1 cgd
80 1.1 cgd /*
81 1.1 cgd * We need to save the IP options in case a protocol wants to respond
82 1.1 cgd * to an incoming packet over the same route if the packet got here
83 1.1 cgd * using IP source routing. This allows connection establishment and
84 1.1 cgd * maintenance when the remote end is on a network that is not known
85 1.1 cgd * to us.
86 1.1 cgd */
87 1.1 cgd int ip_nhops = 0;
88 1.1 cgd static struct ip_srcrt {
89 1.1 cgd struct in_addr dst; /* final destination */
90 1.1 cgd char nop; /* one NOP to align */
91 1.1 cgd char srcopt[IPOPT_OFFSET + 1]; /* OPTVAL, OLEN and OFFSET */
92 1.1 cgd struct in_addr route[MAX_IPOPTLEN/sizeof(struct in_addr)];
93 1.1 cgd } ip_srcrt;
94 1.1 cgd
95 1.1 cgd #ifdef GATEWAY
96 1.1 cgd extern int if_index;
97 1.1 cgd u_long *ip_ifmatrix;
98 1.1 cgd #endif
99 1.1 cgd
100 1.1 cgd /*
101 1.1 cgd * IP initialization: fill in IP protocol switch table.
102 1.1 cgd * All protocols not implemented in kernel go to raw IP protocol handler.
103 1.1 cgd */
104 1.1 cgd ip_init()
105 1.1 cgd {
106 1.1 cgd register struct protosw *pr;
107 1.1 cgd register int i;
108 1.1 cgd
109 1.1 cgd pr = pffindproto(PF_INET, IPPROTO_RAW, SOCK_RAW);
110 1.1 cgd if (pr == 0)
111 1.1 cgd panic("ip_init");
112 1.1 cgd for (i = 0; i < IPPROTO_MAX; i++)
113 1.1 cgd ip_protox[i] = pr - inetsw;
114 1.1 cgd for (pr = inetdomain.dom_protosw;
115 1.1 cgd pr < inetdomain.dom_protoswNPROTOSW; pr++)
116 1.1 cgd if (pr->pr_domain->dom_family == PF_INET &&
117 1.1 cgd pr->pr_protocol && pr->pr_protocol != IPPROTO_RAW)
118 1.1 cgd ip_protox[pr->pr_protocol] = pr - inetsw;
119 1.1 cgd ipq.next = ipq.prev = &ipq;
120 1.1 cgd ip_id = time.tv_sec & 0xffff;
121 1.1 cgd ipintrq.ifq_maxlen = ipqmaxlen;
122 1.1 cgd #ifdef GATEWAY
123 1.1 cgd i = (if_index + 1) * (if_index + 1) * sizeof (u_long);
124 1.1 cgd if ((ip_ifmatrix = (u_long *) malloc(i, M_RTABLE, M_WAITOK)) == 0)
125 1.1 cgd panic("no memory for ip_ifmatrix");
126 1.1 cgd #endif
127 1.1 cgd }
128 1.1 cgd
129 1.1 cgd struct ip *ip_reass();
130 1.1 cgd struct sockaddr_in ipaddr = { sizeof(ipaddr), AF_INET };
131 1.1 cgd struct route ipforward_rt;
132 1.1 cgd
133 1.1 cgd /*
134 1.1 cgd * Ip input routine. Checksum and byte swap header. If fragmented
135 1.1 cgd * try to reassemble. Process options. Pass to next level.
136 1.1 cgd */
137 1.1 cgd ipintr()
138 1.1 cgd {
139 1.1 cgd register struct ip *ip;
140 1.1 cgd register struct mbuf *m;
141 1.1 cgd register struct ipq *fp;
142 1.1 cgd register struct in_ifaddr *ia;
143 1.1 cgd int hlen, s;
144 1.1 cgd
145 1.1 cgd next:
146 1.1 cgd /*
147 1.1 cgd * Get next datagram off input queue and get IP header
148 1.1 cgd * in first mbuf.
149 1.1 cgd */
150 1.1 cgd s = splimp();
151 1.1 cgd IF_DEQUEUE(&ipintrq, m);
152 1.1 cgd splx(s);
153 1.1 cgd if (m == 0)
154 1.1 cgd return;
155 1.1 cgd #ifdef DIAGNOSTIC
156 1.1 cgd if ((m->m_flags & M_PKTHDR) == 0)
157 1.1 cgd panic("ipintr no HDR");
158 1.1 cgd #endif
159 1.1 cgd /*
160 1.1 cgd * If no IP addresses have been set yet but the interfaces
161 1.1 cgd * are receiving, can't do anything with incoming packets yet.
162 1.1 cgd */
163 1.1 cgd if (in_ifaddr == NULL)
164 1.1 cgd goto bad;
165 1.1 cgd ipstat.ips_total++;
166 1.1 cgd if (m->m_len < sizeof (struct ip) &&
167 1.1 cgd (m = m_pullup(m, sizeof (struct ip))) == 0) {
168 1.1 cgd ipstat.ips_toosmall++;
169 1.1 cgd goto next;
170 1.1 cgd }
171 1.1 cgd ip = mtod(m, struct ip *);
172 1.1 cgd hlen = ip->ip_hl << 2;
173 1.1 cgd if (hlen < sizeof(struct ip)) { /* minimum header length */
174 1.1 cgd ipstat.ips_badhlen++;
175 1.1 cgd goto bad;
176 1.1 cgd }
177 1.1 cgd if (hlen > m->m_len) {
178 1.1 cgd if ((m = m_pullup(m, hlen)) == 0) {
179 1.1 cgd ipstat.ips_badhlen++;
180 1.1 cgd goto next;
181 1.1 cgd }
182 1.1 cgd ip = mtod(m, struct ip *);
183 1.1 cgd }
184 1.1 cgd if (ip->ip_sum = in_cksum(m, hlen)) {
185 1.1 cgd ipstat.ips_badsum++;
186 1.1 cgd goto bad;
187 1.1 cgd }
188 1.1 cgd
189 1.1 cgd /*
190 1.1 cgd * Convert fields to host representation.
191 1.1 cgd */
192 1.1 cgd NTOHS(ip->ip_len);
193 1.1 cgd if (ip->ip_len < hlen) {
194 1.1 cgd ipstat.ips_badlen++;
195 1.1 cgd goto bad;
196 1.1 cgd }
197 1.1 cgd NTOHS(ip->ip_id);
198 1.1 cgd NTOHS(ip->ip_off);
199 1.1 cgd
200 1.1 cgd /*
201 1.1 cgd * Check that the amount of data in the buffers
202 1.1 cgd * is as at least much as the IP header would have us expect.
203 1.1 cgd * Trim mbufs if longer than we expect.
204 1.1 cgd * Drop packet if shorter than we expect.
205 1.1 cgd */
206 1.1 cgd if (m->m_pkthdr.len < ip->ip_len) {
207 1.1 cgd ipstat.ips_tooshort++;
208 1.1 cgd goto bad;
209 1.1 cgd }
210 1.1 cgd if (m->m_pkthdr.len > ip->ip_len) {
211 1.1 cgd if (m->m_len == m->m_pkthdr.len) {
212 1.1 cgd m->m_len = ip->ip_len;
213 1.1 cgd m->m_pkthdr.len = ip->ip_len;
214 1.1 cgd } else
215 1.1 cgd m_adj(m, ip->ip_len - m->m_pkthdr.len);
216 1.1 cgd }
217 1.1 cgd
218 1.1 cgd /*
219 1.1 cgd * Process options and, if not destined for us,
220 1.1 cgd * ship it on. ip_dooptions returns 1 when an
221 1.1 cgd * error was detected (causing an icmp message
222 1.1 cgd * to be sent and the original packet to be freed).
223 1.1 cgd */
224 1.1 cgd ip_nhops = 0; /* for source routed packets */
225 1.1 cgd if (hlen > sizeof (struct ip) && ip_dooptions(m))
226 1.1 cgd goto next;
227 1.1 cgd
228 1.1 cgd /*
229 1.1 cgd * Check our list of addresses, to see if the packet is for us.
230 1.1 cgd */
231 1.1 cgd for (ia = in_ifaddr; ia; ia = ia->ia_next) {
232 1.1 cgd #define satosin(sa) ((struct sockaddr_in *)(sa))
233 1.1 cgd
234 1.1 cgd if (IA_SIN(ia)->sin_addr.s_addr == ip->ip_dst.s_addr)
235 1.1 cgd goto ours;
236 1.1 cgd if (
237 1.1 cgd #ifdef DIRECTED_BROADCAST
238 1.1 cgd ia->ia_ifp == m->m_pkthdr.rcvif &&
239 1.1 cgd #endif
240 1.1 cgd (ia->ia_ifp->if_flags & IFF_BROADCAST)) {
241 1.1 cgd u_long t;
242 1.1 cgd
243 1.1 cgd if (satosin(&ia->ia_broadaddr)->sin_addr.s_addr ==
244 1.1 cgd ip->ip_dst.s_addr)
245 1.1 cgd goto ours;
246 1.1 cgd if (ip->ip_dst.s_addr == ia->ia_netbroadcast.s_addr)
247 1.1 cgd goto ours;
248 1.1 cgd /*
249 1.1 cgd * Look for all-0's host part (old broadcast addr),
250 1.1 cgd * either for subnet or net.
251 1.1 cgd */
252 1.1 cgd t = ntohl(ip->ip_dst.s_addr);
253 1.1 cgd if (t == ia->ia_subnet)
254 1.1 cgd goto ours;
255 1.1 cgd if (t == ia->ia_net)
256 1.1 cgd goto ours;
257 1.1 cgd }
258 1.1 cgd }
259 1.1 cgd if (ip->ip_dst.s_addr == (u_long)INADDR_BROADCAST)
260 1.1 cgd goto ours;
261 1.1 cgd if (ip->ip_dst.s_addr == INADDR_ANY)
262 1.1 cgd goto ours;
263 1.1 cgd
264 1.1 cgd /*
265 1.1 cgd * Not for us; forward if possible and desirable.
266 1.1 cgd */
267 1.1 cgd if (ipforwarding == 0) {
268 1.1 cgd ipstat.ips_cantforward++;
269 1.1 cgd m_freem(m);
270 1.1 cgd } else
271 1.1 cgd ip_forward(m, 0);
272 1.1 cgd goto next;
273 1.1 cgd
274 1.1 cgd ours:
275 1.1 cgd /*
276 1.1 cgd * If offset or IP_MF are set, must reassemble.
277 1.1 cgd * Otherwise, nothing need be done.
278 1.1 cgd * (We could look in the reassembly queue to see
279 1.1 cgd * if the packet was previously fragmented,
280 1.1 cgd * but it's not worth the time; just let them time out.)
281 1.1 cgd */
282 1.1 cgd if (ip->ip_off &~ IP_DF) {
283 1.1 cgd if (m->m_flags & M_EXT) { /* XXX */
284 1.1 cgd if ((m = m_pullup(m, sizeof (struct ip))) == 0) {
285 1.1 cgd ipstat.ips_toosmall++;
286 1.1 cgd goto next;
287 1.1 cgd }
288 1.1 cgd ip = mtod(m, struct ip *);
289 1.1 cgd }
290 1.1 cgd /*
291 1.1 cgd * Look for queue of fragments
292 1.1 cgd * of this datagram.
293 1.1 cgd */
294 1.1 cgd for (fp = ipq.next; fp != &ipq; fp = fp->next)
295 1.1 cgd if (ip->ip_id == fp->ipq_id &&
296 1.1 cgd ip->ip_src.s_addr == fp->ipq_src.s_addr &&
297 1.1 cgd ip->ip_dst.s_addr == fp->ipq_dst.s_addr &&
298 1.1 cgd ip->ip_p == fp->ipq_p)
299 1.1 cgd goto found;
300 1.1 cgd fp = 0;
301 1.1 cgd found:
302 1.1 cgd
303 1.1 cgd /*
304 1.1 cgd * Adjust ip_len to not reflect header,
305 1.1 cgd * set ip_mff if more fragments are expected,
306 1.1 cgd * convert offset of this to bytes.
307 1.1 cgd */
308 1.1 cgd ip->ip_len -= hlen;
309 1.1 cgd ((struct ipasfrag *)ip)->ipf_mff = 0;
310 1.1 cgd if (ip->ip_off & IP_MF)
311 1.1 cgd ((struct ipasfrag *)ip)->ipf_mff = 1;
312 1.1 cgd ip->ip_off <<= 3;
313 1.1 cgd
314 1.1 cgd /*
315 1.1 cgd * If datagram marked as having more fragments
316 1.1 cgd * or if this is not the first fragment,
317 1.1 cgd * attempt reassembly; if it succeeds, proceed.
318 1.1 cgd */
319 1.1 cgd if (((struct ipasfrag *)ip)->ipf_mff || ip->ip_off) {
320 1.1 cgd ipstat.ips_fragments++;
321 1.1 cgd ip = ip_reass((struct ipasfrag *)ip, fp);
322 1.1 cgd if (ip == 0)
323 1.1 cgd goto next;
324 1.1 cgd else
325 1.1 cgd ipstat.ips_reassembled++;
326 1.1 cgd m = dtom(ip);
327 1.1 cgd } else
328 1.1 cgd if (fp)
329 1.1 cgd ip_freef(fp);
330 1.1 cgd } else
331 1.1 cgd ip->ip_len -= hlen;
332 1.1 cgd
333 1.1 cgd /*
334 1.1 cgd * Switch out to protocol's input routine.
335 1.1 cgd */
336 1.1 cgd ipstat.ips_delivered++;
337 1.1 cgd (*inetsw[ip_protox[ip->ip_p]].pr_input)(m, hlen);
338 1.1 cgd goto next;
339 1.1 cgd bad:
340 1.1 cgd m_freem(m);
341 1.1 cgd goto next;
342 1.1 cgd }
343 1.1 cgd
344 1.1 cgd /*
345 1.1 cgd * Take incoming datagram fragment and try to
346 1.1 cgd * reassemble it into whole datagram. If a chain for
347 1.1 cgd * reassembly of this datagram already exists, then it
348 1.1 cgd * is given as fp; otherwise have to make a chain.
349 1.1 cgd */
350 1.1 cgd struct ip *
351 1.1 cgd ip_reass(ip, fp)
352 1.1 cgd register struct ipasfrag *ip;
353 1.1 cgd register struct ipq *fp;
354 1.1 cgd {
355 1.1 cgd register struct mbuf *m = dtom(ip);
356 1.1 cgd register struct ipasfrag *q;
357 1.1 cgd struct mbuf *t;
358 1.1 cgd int hlen = ip->ip_hl << 2;
359 1.1 cgd int i, next;
360 1.1 cgd
361 1.1 cgd /*
362 1.1 cgd * Presence of header sizes in mbufs
363 1.1 cgd * would confuse code below.
364 1.1 cgd */
365 1.1 cgd m->m_data += hlen;
366 1.1 cgd m->m_len -= hlen;
367 1.1 cgd
368 1.1 cgd /*
369 1.1 cgd * If first fragment to arrive, create a reassembly queue.
370 1.1 cgd */
371 1.1 cgd if (fp == 0) {
372 1.1 cgd if ((t = m_get(M_DONTWAIT, MT_FTABLE)) == NULL)
373 1.1 cgd goto dropfrag;
374 1.1 cgd fp = mtod(t, struct ipq *);
375 1.1 cgd insque(fp, &ipq);
376 1.1 cgd fp->ipq_ttl = IPFRAGTTL;
377 1.1 cgd fp->ipq_p = ip->ip_p;
378 1.1 cgd fp->ipq_id = ip->ip_id;
379 1.1 cgd fp->ipq_next = fp->ipq_prev = (struct ipasfrag *)fp;
380 1.1 cgd fp->ipq_src = ((struct ip *)ip)->ip_src;
381 1.1 cgd fp->ipq_dst = ((struct ip *)ip)->ip_dst;
382 1.1 cgd q = (struct ipasfrag *)fp;
383 1.1 cgd goto insert;
384 1.1 cgd }
385 1.1 cgd
386 1.1 cgd /*
387 1.1 cgd * Find a segment which begins after this one does.
388 1.1 cgd */
389 1.1 cgd for (q = fp->ipq_next; q != (struct ipasfrag *)fp; q = q->ipf_next)
390 1.1 cgd if (q->ip_off > ip->ip_off)
391 1.1 cgd break;
392 1.1 cgd
393 1.1 cgd /*
394 1.1 cgd * If there is a preceding segment, it may provide some of
395 1.1 cgd * our data already. If so, drop the data from the incoming
396 1.1 cgd * segment. If it provides all of our data, drop us.
397 1.1 cgd */
398 1.1 cgd if (q->ipf_prev != (struct ipasfrag *)fp) {
399 1.1 cgd i = q->ipf_prev->ip_off + q->ipf_prev->ip_len - ip->ip_off;
400 1.1 cgd if (i > 0) {
401 1.1 cgd if (i >= ip->ip_len)
402 1.1 cgd goto dropfrag;
403 1.1 cgd m_adj(dtom(ip), i);
404 1.1 cgd ip->ip_off += i;
405 1.1 cgd ip->ip_len -= i;
406 1.1 cgd }
407 1.1 cgd }
408 1.1 cgd
409 1.1 cgd /*
410 1.1 cgd * While we overlap succeeding segments trim them or,
411 1.1 cgd * if they are completely covered, dequeue them.
412 1.1 cgd */
413 1.1 cgd while (q != (struct ipasfrag *)fp && ip->ip_off + ip->ip_len > q->ip_off) {
414 1.1 cgd i = (ip->ip_off + ip->ip_len) - q->ip_off;
415 1.1 cgd if (i < q->ip_len) {
416 1.1 cgd q->ip_len -= i;
417 1.1 cgd q->ip_off += i;
418 1.1 cgd m_adj(dtom(q), i);
419 1.1 cgd break;
420 1.1 cgd }
421 1.1 cgd q = q->ipf_next;
422 1.1 cgd m_freem(dtom(q->ipf_prev));
423 1.1 cgd ip_deq(q->ipf_prev);
424 1.1 cgd }
425 1.1 cgd
426 1.1 cgd insert:
427 1.1 cgd /*
428 1.1 cgd * Stick new segment in its place;
429 1.1 cgd * check for complete reassembly.
430 1.1 cgd */
431 1.1 cgd ip_enq(ip, q->ipf_prev);
432 1.1 cgd next = 0;
433 1.1 cgd for (q = fp->ipq_next; q != (struct ipasfrag *)fp; q = q->ipf_next) {
434 1.1 cgd if (q->ip_off != next)
435 1.1 cgd return (0);
436 1.1 cgd next += q->ip_len;
437 1.1 cgd }
438 1.1 cgd if (q->ipf_prev->ipf_mff)
439 1.1 cgd return (0);
440 1.1 cgd
441 1.1 cgd /*
442 1.1 cgd * Reassembly is complete; concatenate fragments.
443 1.1 cgd */
444 1.1 cgd q = fp->ipq_next;
445 1.1 cgd m = dtom(q);
446 1.1 cgd t = m->m_next;
447 1.1 cgd m->m_next = 0;
448 1.1 cgd m_cat(m, t);
449 1.1 cgd q = q->ipf_next;
450 1.1 cgd while (q != (struct ipasfrag *)fp) {
451 1.1 cgd t = dtom(q);
452 1.1 cgd q = q->ipf_next;
453 1.1 cgd m_cat(m, t);
454 1.1 cgd }
455 1.1 cgd
456 1.1 cgd /*
457 1.1 cgd * Create header for new ip packet by
458 1.1 cgd * modifying header of first packet;
459 1.1 cgd * dequeue and discard fragment reassembly header.
460 1.1 cgd * Make header visible.
461 1.1 cgd */
462 1.1 cgd ip = fp->ipq_next;
463 1.1 cgd ip->ip_len = next;
464 1.1 cgd ((struct ip *)ip)->ip_src = fp->ipq_src;
465 1.1 cgd ((struct ip *)ip)->ip_dst = fp->ipq_dst;
466 1.1 cgd remque(fp);
467 1.1 cgd (void) m_free(dtom(fp));
468 1.1 cgd m = dtom(ip);
469 1.1 cgd m->m_len += (ip->ip_hl << 2);
470 1.1 cgd m->m_data -= (ip->ip_hl << 2);
471 1.1 cgd /* some debugging cruft by sklower, below, will go away soon */
472 1.1 cgd if (m->m_flags & M_PKTHDR) { /* XXX this should be done elsewhere */
473 1.1 cgd register int plen = 0;
474 1.1 cgd for (t = m; m; m = m->m_next)
475 1.1 cgd plen += m->m_len;
476 1.1 cgd t->m_pkthdr.len = plen;
477 1.1 cgd }
478 1.1 cgd return ((struct ip *)ip);
479 1.1 cgd
480 1.1 cgd dropfrag:
481 1.1 cgd ipstat.ips_fragdropped++;
482 1.1 cgd m_freem(m);
483 1.1 cgd return (0);
484 1.1 cgd }
485 1.1 cgd
486 1.1 cgd /*
487 1.1 cgd * Free a fragment reassembly header and all
488 1.1 cgd * associated datagrams.
489 1.1 cgd */
490 1.1 cgd ip_freef(fp)
491 1.1 cgd struct ipq *fp;
492 1.1 cgd {
493 1.1 cgd register struct ipasfrag *q, *p;
494 1.1 cgd
495 1.1 cgd for (q = fp->ipq_next; q != (struct ipasfrag *)fp; q = p) {
496 1.1 cgd p = q->ipf_next;
497 1.1 cgd ip_deq(q);
498 1.1 cgd m_freem(dtom(q));
499 1.1 cgd }
500 1.1 cgd remque(fp);
501 1.1 cgd (void) m_free(dtom(fp));
502 1.1 cgd }
503 1.1 cgd
504 1.1 cgd /*
505 1.1 cgd * Put an ip fragment on a reassembly chain.
506 1.1 cgd * Like insque, but pointers in middle of structure.
507 1.1 cgd */
508 1.1 cgd ip_enq(p, prev)
509 1.1 cgd register struct ipasfrag *p, *prev;
510 1.1 cgd {
511 1.1 cgd
512 1.1 cgd p->ipf_prev = prev;
513 1.1 cgd p->ipf_next = prev->ipf_next;
514 1.1 cgd prev->ipf_next->ipf_prev = p;
515 1.1 cgd prev->ipf_next = p;
516 1.1 cgd }
517 1.1 cgd
518 1.1 cgd /*
519 1.1 cgd * To ip_enq as remque is to insque.
520 1.1 cgd */
521 1.1 cgd ip_deq(p)
522 1.1 cgd register struct ipasfrag *p;
523 1.1 cgd {
524 1.1 cgd
525 1.1 cgd p->ipf_prev->ipf_next = p->ipf_next;
526 1.1 cgd p->ipf_next->ipf_prev = p->ipf_prev;
527 1.1 cgd }
528 1.1 cgd
529 1.1 cgd /*
530 1.1 cgd * IP timer processing;
531 1.1 cgd * if a timer expires on a reassembly
532 1.1 cgd * queue, discard it.
533 1.1 cgd */
534 1.1 cgd ip_slowtimo()
535 1.1 cgd {
536 1.1 cgd register struct ipq *fp;
537 1.1 cgd int s = splnet();
538 1.1 cgd
539 1.1 cgd fp = ipq.next;
540 1.1 cgd if (fp == 0) {
541 1.1 cgd splx(s);
542 1.1 cgd return;
543 1.1 cgd }
544 1.1 cgd while (fp != &ipq) {
545 1.1 cgd --fp->ipq_ttl;
546 1.1 cgd fp = fp->next;
547 1.1 cgd if (fp->prev->ipq_ttl == 0) {
548 1.1 cgd ipstat.ips_fragtimeout++;
549 1.1 cgd ip_freef(fp->prev);
550 1.1 cgd }
551 1.1 cgd }
552 1.1 cgd splx(s);
553 1.1 cgd }
554 1.1 cgd
555 1.1 cgd /*
556 1.1 cgd * Drain off all datagram fragments.
557 1.1 cgd */
558 1.1 cgd ip_drain()
559 1.1 cgd {
560 1.1 cgd
561 1.1 cgd while (ipq.next != &ipq) {
562 1.1 cgd ipstat.ips_fragdropped++;
563 1.1 cgd ip_freef(ipq.next);
564 1.1 cgd }
565 1.1 cgd }
566 1.1 cgd
567 1.1 cgd extern struct in_ifaddr *ifptoia();
568 1.1 cgd struct in_ifaddr *ip_rtaddr();
569 1.1 cgd
570 1.1 cgd /*
571 1.1 cgd * Do option processing on a datagram,
572 1.1 cgd * possibly discarding it if bad options are encountered,
573 1.1 cgd * or forwarding it if source-routed.
574 1.1 cgd * Returns 1 if packet has been forwarded/freed,
575 1.1 cgd * 0 if the packet should be processed further.
576 1.1 cgd */
577 1.1 cgd ip_dooptions(m)
578 1.1 cgd struct mbuf *m;
579 1.1 cgd {
580 1.1 cgd register struct ip *ip = mtod(m, struct ip *);
581 1.1 cgd register u_char *cp;
582 1.1 cgd register struct ip_timestamp *ipt;
583 1.1 cgd register struct in_ifaddr *ia;
584 1.1 cgd int opt, optlen, cnt, off, code, type = ICMP_PARAMPROB, forward = 0;
585 1.1 cgd struct in_addr *sin;
586 1.1 cgd n_time ntime;
587 1.1 cgd
588 1.1 cgd cp = (u_char *)(ip + 1);
589 1.1 cgd cnt = (ip->ip_hl << 2) - sizeof (struct ip);
590 1.1 cgd for (; cnt > 0; cnt -= optlen, cp += optlen) {
591 1.1 cgd opt = cp[IPOPT_OPTVAL];
592 1.1 cgd if (opt == IPOPT_EOL)
593 1.1 cgd break;
594 1.1 cgd if (opt == IPOPT_NOP)
595 1.1 cgd optlen = 1;
596 1.1 cgd else {
597 1.1 cgd optlen = cp[IPOPT_OLEN];
598 1.1 cgd if (optlen <= 0 || optlen > cnt) {
599 1.1 cgd code = &cp[IPOPT_OLEN] - (u_char *)ip;
600 1.1 cgd goto bad;
601 1.1 cgd }
602 1.1 cgd }
603 1.1 cgd switch (opt) {
604 1.1 cgd
605 1.1 cgd default:
606 1.1 cgd break;
607 1.1 cgd
608 1.1 cgd /*
609 1.1 cgd * Source routing with record.
610 1.1 cgd * Find interface with current destination address.
611 1.1 cgd * If none on this machine then drop if strictly routed,
612 1.1 cgd * or do nothing if loosely routed.
613 1.1 cgd * Record interface address and bring up next address
614 1.1 cgd * component. If strictly routed make sure next
615 1.1 cgd * address is on directly accessible net.
616 1.1 cgd */
617 1.1 cgd case IPOPT_LSRR:
618 1.1 cgd case IPOPT_SSRR:
619 1.1 cgd if ((off = cp[IPOPT_OFFSET]) < IPOPT_MINOFF) {
620 1.1 cgd code = &cp[IPOPT_OFFSET] - (u_char *)ip;
621 1.1 cgd goto bad;
622 1.1 cgd }
623 1.1 cgd ipaddr.sin_addr = ip->ip_dst;
624 1.1 cgd ia = (struct in_ifaddr *)
625 1.1 cgd ifa_ifwithaddr((struct sockaddr *)&ipaddr);
626 1.1 cgd if (ia == 0) {
627 1.1 cgd if (opt == IPOPT_SSRR) {
628 1.1 cgd type = ICMP_UNREACH;
629 1.1 cgd code = ICMP_UNREACH_SRCFAIL;
630 1.1 cgd goto bad;
631 1.1 cgd }
632 1.1 cgd /*
633 1.1 cgd * Loose routing, and not at next destination
634 1.1 cgd * yet; nothing to do except forward.
635 1.1 cgd */
636 1.1 cgd break;
637 1.1 cgd }
638 1.1 cgd off--; /* 0 origin */
639 1.1 cgd if (off > optlen - sizeof(struct in_addr)) {
640 1.1 cgd /*
641 1.1 cgd * End of source route. Should be for us.
642 1.1 cgd */
643 1.1 cgd save_rte(cp, ip->ip_src);
644 1.1 cgd break;
645 1.1 cgd }
646 1.1 cgd /*
647 1.1 cgd * locate outgoing interface
648 1.1 cgd */
649 1.1 cgd bcopy((caddr_t)(cp + off), (caddr_t)&ipaddr.sin_addr,
650 1.1 cgd sizeof(ipaddr.sin_addr));
651 1.1 cgd if (opt == IPOPT_SSRR) {
652 1.1 cgd #define INA struct in_ifaddr *
653 1.1 cgd #define SA struct sockaddr *
654 1.1 cgd if ((ia = (INA)ifa_ifwithdstaddr((SA)&ipaddr)) == 0)
655 1.1 cgd ia = in_iaonnetof(in_netof(ipaddr.sin_addr));
656 1.1 cgd } else
657 1.1 cgd ia = ip_rtaddr(ipaddr.sin_addr);
658 1.1 cgd if (ia == 0) {
659 1.1 cgd type = ICMP_UNREACH;
660 1.1 cgd code = ICMP_UNREACH_SRCFAIL;
661 1.1 cgd goto bad;
662 1.1 cgd }
663 1.1 cgd ip->ip_dst = ipaddr.sin_addr;
664 1.1 cgd bcopy((caddr_t)&(IA_SIN(ia)->sin_addr),
665 1.1 cgd (caddr_t)(cp + off), sizeof(struct in_addr));
666 1.1 cgd cp[IPOPT_OFFSET] += sizeof(struct in_addr);
667 1.1 cgd forward = 1;
668 1.1 cgd break;
669 1.1 cgd
670 1.1 cgd case IPOPT_RR:
671 1.1 cgd if ((off = cp[IPOPT_OFFSET]) < IPOPT_MINOFF) {
672 1.1 cgd code = &cp[IPOPT_OFFSET] - (u_char *)ip;
673 1.1 cgd goto bad;
674 1.1 cgd }
675 1.1 cgd /*
676 1.1 cgd * If no space remains, ignore.
677 1.1 cgd */
678 1.1 cgd off--; /* 0 origin */
679 1.1 cgd if (off > optlen - sizeof(struct in_addr))
680 1.1 cgd break;
681 1.1 cgd bcopy((caddr_t)(&ip->ip_dst), (caddr_t)&ipaddr.sin_addr,
682 1.1 cgd sizeof(ipaddr.sin_addr));
683 1.1 cgd /*
684 1.1 cgd * locate outgoing interface; if we're the destination,
685 1.1 cgd * use the incoming interface (should be same).
686 1.1 cgd */
687 1.1 cgd if ((ia = (INA)ifa_ifwithaddr((SA)&ipaddr)) == 0 &&
688 1.1 cgd (ia = ip_rtaddr(ipaddr.sin_addr)) == 0) {
689 1.1 cgd type = ICMP_UNREACH;
690 1.1 cgd code = ICMP_UNREACH_HOST;
691 1.1 cgd goto bad;
692 1.1 cgd }
693 1.1 cgd bcopy((caddr_t)&(IA_SIN(ia)->sin_addr),
694 1.1 cgd (caddr_t)(cp + off), sizeof(struct in_addr));
695 1.1 cgd cp[IPOPT_OFFSET] += sizeof(struct in_addr);
696 1.1 cgd break;
697 1.1 cgd
698 1.1 cgd case IPOPT_TS:
699 1.1 cgd code = cp - (u_char *)ip;
700 1.1 cgd ipt = (struct ip_timestamp *)cp;
701 1.1 cgd if (ipt->ipt_len < 5)
702 1.1 cgd goto bad;
703 1.1 cgd if (ipt->ipt_ptr > ipt->ipt_len - sizeof (long)) {
704 1.1 cgd if (++ipt->ipt_oflw == 0)
705 1.1 cgd goto bad;
706 1.1 cgd break;
707 1.1 cgd }
708 1.1 cgd sin = (struct in_addr *)(cp + ipt->ipt_ptr - 1);
709 1.1 cgd switch (ipt->ipt_flg) {
710 1.1 cgd
711 1.1 cgd case IPOPT_TS_TSONLY:
712 1.1 cgd break;
713 1.1 cgd
714 1.1 cgd case IPOPT_TS_TSANDADDR:
715 1.1 cgd if (ipt->ipt_ptr + sizeof(n_time) +
716 1.1 cgd sizeof(struct in_addr) > ipt->ipt_len)
717 1.1 cgd goto bad;
718 1.1 cgd ia = ifptoia(m->m_pkthdr.rcvif);
719 1.1 cgd bcopy((caddr_t)&IA_SIN(ia)->sin_addr,
720 1.1 cgd (caddr_t)sin, sizeof(struct in_addr));
721 1.1 cgd ipt->ipt_ptr += sizeof(struct in_addr);
722 1.1 cgd break;
723 1.1 cgd
724 1.1 cgd case IPOPT_TS_PRESPEC:
725 1.1 cgd if (ipt->ipt_ptr + sizeof(n_time) +
726 1.1 cgd sizeof(struct in_addr) > ipt->ipt_len)
727 1.1 cgd goto bad;
728 1.1 cgd bcopy((caddr_t)sin, (caddr_t)&ipaddr.sin_addr,
729 1.1 cgd sizeof(struct in_addr));
730 1.1 cgd if (ifa_ifwithaddr((SA)&ipaddr) == 0)
731 1.1 cgd continue;
732 1.1 cgd ipt->ipt_ptr += sizeof(struct in_addr);
733 1.1 cgd break;
734 1.1 cgd
735 1.1 cgd default:
736 1.1 cgd goto bad;
737 1.1 cgd }
738 1.1 cgd ntime = iptime();
739 1.1 cgd bcopy((caddr_t)&ntime, (caddr_t)cp + ipt->ipt_ptr - 1,
740 1.1 cgd sizeof(n_time));
741 1.1 cgd ipt->ipt_ptr += sizeof(n_time);
742 1.1 cgd }
743 1.1 cgd }
744 1.1 cgd if (forward) {
745 1.1 cgd ip_forward(m, 1);
746 1.1 cgd return (1);
747 1.1 cgd } else
748 1.1 cgd return (0);
749 1.1 cgd bad:
750 1.1 cgd icmp_error(m, type, code);
751 1.1 cgd return (1);
752 1.1 cgd }
753 1.1 cgd
754 1.1 cgd /*
755 1.1 cgd * Given address of next destination (final or next hop),
756 1.1 cgd * return internet address info of interface to be used to get there.
757 1.1 cgd */
758 1.1 cgd struct in_ifaddr *
759 1.1 cgd ip_rtaddr(dst)
760 1.1 cgd struct in_addr dst;
761 1.1 cgd {
762 1.1 cgd register struct sockaddr_in *sin;
763 1.1 cgd
764 1.1 cgd sin = (struct sockaddr_in *) &ipforward_rt.ro_dst;
765 1.1 cgd
766 1.1 cgd if (ipforward_rt.ro_rt == 0 || dst.s_addr != sin->sin_addr.s_addr) {
767 1.1 cgd if (ipforward_rt.ro_rt) {
768 1.1 cgd RTFREE(ipforward_rt.ro_rt);
769 1.1 cgd ipforward_rt.ro_rt = 0;
770 1.1 cgd }
771 1.1 cgd sin->sin_family = AF_INET;
772 1.1 cgd sin->sin_len = sizeof(*sin);
773 1.1 cgd sin->sin_addr = dst;
774 1.1 cgd
775 1.1 cgd rtalloc(&ipforward_rt);
776 1.1 cgd }
777 1.1 cgd if (ipforward_rt.ro_rt == 0)
778 1.1 cgd return ((struct in_ifaddr *)0);
779 1.1 cgd return ((struct in_ifaddr *) ipforward_rt.ro_rt->rt_ifa);
780 1.1 cgd }
781 1.1 cgd
782 1.1 cgd /*
783 1.1 cgd * Save incoming source route for use in replies,
784 1.1 cgd * to be picked up later by ip_srcroute if the receiver is interested.
785 1.1 cgd */
786 1.1 cgd save_rte(option, dst)
787 1.1 cgd u_char *option;
788 1.1 cgd struct in_addr dst;
789 1.1 cgd {
790 1.1 cgd unsigned olen;
791 1.1 cgd
792 1.1 cgd olen = option[IPOPT_OLEN];
793 1.1 cgd #ifdef DIAGNOSTIC
794 1.1 cgd if (ipprintfs)
795 1.1 cgd printf("save_rte: olen %d\n", olen);
796 1.1 cgd #endif
797 1.1 cgd if (olen > sizeof(ip_srcrt) - (1 + sizeof(dst)))
798 1.1 cgd return;
799 1.1 cgd bcopy((caddr_t)option, (caddr_t)ip_srcrt.srcopt, olen);
800 1.1 cgd ip_nhops = (olen - IPOPT_OFFSET - 1) / sizeof(struct in_addr);
801 1.1 cgd ip_srcrt.dst = dst;
802 1.1 cgd }
803 1.1 cgd
804 1.1 cgd /*
805 1.1 cgd * Retrieve incoming source route for use in replies,
806 1.1 cgd * in the same form used by setsockopt.
807 1.1 cgd * The first hop is placed before the options, will be removed later.
808 1.1 cgd */
809 1.1 cgd struct mbuf *
810 1.1 cgd ip_srcroute()
811 1.1 cgd {
812 1.1 cgd register struct in_addr *p, *q;
813 1.1 cgd register struct mbuf *m;
814 1.1 cgd
815 1.1 cgd if (ip_nhops == 0)
816 1.1 cgd return ((struct mbuf *)0);
817 1.1 cgd m = m_get(M_DONTWAIT, MT_SOOPTS);
818 1.1 cgd if (m == 0)
819 1.1 cgd return ((struct mbuf *)0);
820 1.1 cgd
821 1.1 cgd #define OPTSIZ (sizeof(ip_srcrt.nop) + sizeof(ip_srcrt.srcopt))
822 1.1 cgd
823 1.1 cgd /* length is (nhops+1)*sizeof(addr) + sizeof(nop + srcrt header) */
824 1.1 cgd m->m_len = ip_nhops * sizeof(struct in_addr) + sizeof(struct in_addr) +
825 1.1 cgd OPTSIZ;
826 1.1 cgd #ifdef DIAGNOSTIC
827 1.1 cgd if (ipprintfs)
828 1.1 cgd printf("ip_srcroute: nhops %d mlen %d", ip_nhops, m->m_len);
829 1.1 cgd #endif
830 1.1 cgd
831 1.1 cgd /*
832 1.1 cgd * First save first hop for return route
833 1.1 cgd */
834 1.1 cgd p = &ip_srcrt.route[ip_nhops - 1];
835 1.1 cgd *(mtod(m, struct in_addr *)) = *p--;
836 1.1 cgd #ifdef DIAGNOSTIC
837 1.1 cgd if (ipprintfs)
838 1.1 cgd printf(" hops %lx", ntohl(mtod(m, struct in_addr *)->s_addr));
839 1.1 cgd #endif
840 1.1 cgd
841 1.1 cgd /*
842 1.1 cgd * Copy option fields and padding (nop) to mbuf.
843 1.1 cgd */
844 1.1 cgd ip_srcrt.nop = IPOPT_NOP;
845 1.1 cgd ip_srcrt.srcopt[IPOPT_OFFSET] = IPOPT_MINOFF;
846 1.1 cgd bcopy((caddr_t)&ip_srcrt.nop,
847 1.1 cgd mtod(m, caddr_t) + sizeof(struct in_addr), OPTSIZ);
848 1.1 cgd q = (struct in_addr *)(mtod(m, caddr_t) +
849 1.1 cgd sizeof(struct in_addr) + OPTSIZ);
850 1.1 cgd #undef OPTSIZ
851 1.1 cgd /*
852 1.1 cgd * Record return path as an IP source route,
853 1.1 cgd * reversing the path (pointers are now aligned).
854 1.1 cgd */
855 1.1 cgd while (p >= ip_srcrt.route) {
856 1.1 cgd #ifdef DIAGNOSTIC
857 1.1 cgd if (ipprintfs)
858 1.1 cgd printf(" %lx", ntohl(q->s_addr));
859 1.1 cgd #endif
860 1.1 cgd *q++ = *p--;
861 1.1 cgd }
862 1.1 cgd /*
863 1.1 cgd * Last hop goes to final destination.
864 1.1 cgd */
865 1.1 cgd *q = ip_srcrt.dst;
866 1.1 cgd #ifdef DIAGNOSTIC
867 1.1 cgd if (ipprintfs)
868 1.1 cgd printf(" %lx\n", ntohl(q->s_addr));
869 1.1 cgd #endif
870 1.1 cgd return (m);
871 1.1 cgd }
872 1.1 cgd
873 1.1 cgd /*
874 1.1 cgd * Strip out IP options, at higher
875 1.1 cgd * level protocol in the kernel.
876 1.1 cgd * Second argument is buffer to which options
877 1.1 cgd * will be moved, and return value is their length.
878 1.1 cgd * XXX should be deleted; last arg currently ignored.
879 1.1 cgd */
880 1.1 cgd ip_stripoptions(m, mopt)
881 1.1 cgd register struct mbuf *m;
882 1.1 cgd struct mbuf *mopt;
883 1.1 cgd {
884 1.1 cgd register int i;
885 1.1 cgd struct ip *ip = mtod(m, struct ip *);
886 1.1 cgd register caddr_t opts;
887 1.1 cgd int olen;
888 1.1 cgd
889 1.1 cgd olen = (ip->ip_hl<<2) - sizeof (struct ip);
890 1.1 cgd opts = (caddr_t)(ip + 1);
891 1.1 cgd i = m->m_len - (sizeof (struct ip) + olen);
892 1.1 cgd bcopy(opts + olen, opts, (unsigned)i);
893 1.1 cgd m->m_len -= olen;
894 1.1 cgd if (m->m_flags & M_PKTHDR)
895 1.1 cgd m->m_pkthdr.len -= olen;
896 1.1 cgd ip->ip_hl = sizeof(struct ip) >> 2;
897 1.1 cgd }
898 1.1 cgd
899 1.1 cgd u_char inetctlerrmap[PRC_NCMDS] = {
900 1.1 cgd 0, 0, 0, 0,
901 1.1 cgd 0, EMSGSIZE, EHOSTDOWN, EHOSTUNREACH,
902 1.1 cgd EHOSTUNREACH, EHOSTUNREACH, ECONNREFUSED, ECONNREFUSED,
903 1.1 cgd EMSGSIZE, EHOSTUNREACH, 0, 0,
904 1.1 cgd 0, 0, 0, 0,
905 1.1 cgd ENOPROTOOPT
906 1.1 cgd };
907 1.1 cgd
908 1.1 cgd /*
909 1.1 cgd * Forward a packet. If some error occurs return the sender
910 1.1 cgd * an icmp packet. Note we can't always generate a meaningful
911 1.1 cgd * icmp message because icmp doesn't have a large enough repertoire
912 1.1 cgd * of codes and types.
913 1.1 cgd *
914 1.1 cgd * If not forwarding, just drop the packet. This could be confusing
915 1.1 cgd * if ipforwarding was zero but some routing protocol was advancing
916 1.1 cgd * us as a gateway to somewhere. However, we must let the routing
917 1.1 cgd * protocol deal with that.
918 1.1 cgd *
919 1.1 cgd * The srcrt parameter indicates whether the packet is being forwarded
920 1.1 cgd * via a source route.
921 1.1 cgd */
922 1.1 cgd ip_forward(m, srcrt)
923 1.1 cgd struct mbuf *m;
924 1.1 cgd int srcrt;
925 1.1 cgd {
926 1.1 cgd register struct ip *ip = mtod(m, struct ip *);
927 1.1 cgd register struct sockaddr_in *sin;
928 1.1 cgd register struct rtentry *rt;
929 1.1 cgd int error, type = 0, code;
930 1.1 cgd struct mbuf *mcopy;
931 1.1 cgd struct in_addr dest;
932 1.1 cgd
933 1.1 cgd dest.s_addr = 0;
934 1.1 cgd #ifdef DIAGNOSTIC
935 1.1 cgd if (ipprintfs)
936 1.1 cgd printf("forward: src %x dst %x ttl %x\n", ip->ip_src,
937 1.1 cgd ip->ip_dst, ip->ip_ttl);
938 1.1 cgd #endif
939 1.1 cgd if (m->m_flags & M_BCAST || in_canforward(ip->ip_dst) == 0) {
940 1.1 cgd ipstat.ips_cantforward++;
941 1.1 cgd m_freem(m);
942 1.1 cgd return;
943 1.1 cgd }
944 1.1 cgd HTONS(ip->ip_id);
945 1.1 cgd if (ip->ip_ttl <= IPTTLDEC) {
946 1.1 cgd icmp_error(m, ICMP_TIMXCEED, ICMP_TIMXCEED_INTRANS, dest);
947 1.1 cgd return;
948 1.1 cgd }
949 1.1 cgd ip->ip_ttl -= IPTTLDEC;
950 1.1 cgd
951 1.1 cgd sin = (struct sockaddr_in *)&ipforward_rt.ro_dst;
952 1.1 cgd if ((rt = ipforward_rt.ro_rt) == 0 ||
953 1.1 cgd ip->ip_dst.s_addr != sin->sin_addr.s_addr) {
954 1.1 cgd if (ipforward_rt.ro_rt) {
955 1.1 cgd RTFREE(ipforward_rt.ro_rt);
956 1.1 cgd ipforward_rt.ro_rt = 0;
957 1.1 cgd }
958 1.1 cgd sin->sin_family = AF_INET;
959 1.1 cgd sin->sin_len = sizeof(*sin);
960 1.1 cgd sin->sin_addr = ip->ip_dst;
961 1.1 cgd
962 1.1 cgd rtalloc(&ipforward_rt);
963 1.1 cgd if (ipforward_rt.ro_rt == 0) {
964 1.1 cgd icmp_error(m, ICMP_UNREACH, ICMP_UNREACH_HOST, dest);
965 1.1 cgd return;
966 1.1 cgd }
967 1.1 cgd rt = ipforward_rt.ro_rt;
968 1.1 cgd }
969 1.1 cgd
970 1.1 cgd /*
971 1.1 cgd * Save at most 64 bytes of the packet in case
972 1.1 cgd * we need to generate an ICMP message to the src.
973 1.1 cgd */
974 1.1 cgd mcopy = m_copy(m, 0, imin((int)ip->ip_len, 64));
975 1.1 cgd
976 1.1 cgd #ifdef GATEWAY
977 1.1 cgd ip_ifmatrix[rt->rt_ifp->if_index +
978 1.1 cgd if_index * m->m_pkthdr.rcvif->if_index]++;
979 1.1 cgd #endif
980 1.1 cgd /*
981 1.1 cgd * If forwarding packet using same interface that it came in on,
982 1.1 cgd * perhaps should send a redirect to sender to shortcut a hop.
983 1.1 cgd * Only send redirect if source is sending directly to us,
984 1.1 cgd * and if packet was not source routed (or has any options).
985 1.1 cgd * Also, don't send redirect if forwarding using a default route
986 1.1 cgd * or a route modified by a redirect.
987 1.1 cgd */
988 1.1 cgd #define satosin(sa) ((struct sockaddr_in *)(sa))
989 1.1 cgd if (rt->rt_ifp == m->m_pkthdr.rcvif &&
990 1.1 cgd (rt->rt_flags & (RTF_DYNAMIC|RTF_MODIFIED)) == 0 &&
991 1.1 cgd satosin(rt_key(rt))->sin_addr.s_addr != 0 &&
992 1.1 cgd ipsendredirects && !srcrt) {
993 1.1 cgd struct in_ifaddr *ia;
994 1.1 cgd u_long src = ntohl(ip->ip_src.s_addr);
995 1.1 cgd u_long dst = ntohl(ip->ip_dst.s_addr);
996 1.1 cgd
997 1.1 cgd if ((ia = ifptoia(m->m_pkthdr.rcvif)) &&
998 1.1 cgd (src & ia->ia_subnetmask) == ia->ia_subnet) {
999 1.1 cgd if (rt->rt_flags & RTF_GATEWAY)
1000 1.1 cgd dest = satosin(rt->rt_gateway)->sin_addr;
1001 1.1 cgd else
1002 1.1 cgd dest = ip->ip_dst;
1003 1.1 cgd /*
1004 1.1 cgd * If the destination is reached by a route to host,
1005 1.1 cgd * is on a subnet of a local net, or is directly
1006 1.1 cgd * on the attached net (!), use host redirect.
1007 1.1 cgd * (We may be the correct first hop for other subnets.)
1008 1.1 cgd */
1009 1.1 cgd #define RTA(rt) ((struct in_ifaddr *)(rt->rt_ifa))
1010 1.1 cgd type = ICMP_REDIRECT;
1011 1.1 cgd if ((rt->rt_flags & RTF_HOST) ||
1012 1.1 cgd (rt->rt_flags & RTF_GATEWAY) == 0)
1013 1.1 cgd code = ICMP_REDIRECT_HOST;
1014 1.1 cgd else if (RTA(rt)->ia_subnetmask != RTA(rt)->ia_netmask &&
1015 1.1 cgd (dst & RTA(rt)->ia_netmask) == RTA(rt)->ia_net)
1016 1.1 cgd code = ICMP_REDIRECT_HOST;
1017 1.1 cgd else
1018 1.1 cgd code = ICMP_REDIRECT_NET;
1019 1.1 cgd #ifdef DIAGNOSTIC
1020 1.1 cgd if (ipprintfs)
1021 1.1 cgd printf("redirect (%d) to %x\n", code, dest.s_addr);
1022 1.1 cgd #endif
1023 1.1 cgd }
1024 1.1 cgd }
1025 1.1 cgd
1026 1.1 cgd error = ip_output(m, (struct mbuf *)0, &ipforward_rt, IP_FORWARDING);
1027 1.1 cgd if (error)
1028 1.1 cgd ipstat.ips_cantforward++;
1029 1.1 cgd else {
1030 1.1 cgd ipstat.ips_forward++;
1031 1.1 cgd if (type)
1032 1.1 cgd ipstat.ips_redirectsent++;
1033 1.1 cgd else {
1034 1.1 cgd if (mcopy)
1035 1.1 cgd m_freem(mcopy);
1036 1.1 cgd return;
1037 1.1 cgd }
1038 1.1 cgd }
1039 1.1 cgd if (mcopy == NULL)
1040 1.1 cgd return;
1041 1.1 cgd switch (error) {
1042 1.1 cgd
1043 1.1 cgd case 0: /* forwarded, but need redirect */
1044 1.1 cgd /* type, code set above */
1045 1.1 cgd break;
1046 1.1 cgd
1047 1.1 cgd case ENETUNREACH: /* shouldn't happen, checked above */
1048 1.1 cgd case EHOSTUNREACH:
1049 1.1 cgd case ENETDOWN:
1050 1.1 cgd case EHOSTDOWN:
1051 1.1 cgd default:
1052 1.1 cgd type = ICMP_UNREACH;
1053 1.1 cgd code = ICMP_UNREACH_HOST;
1054 1.1 cgd break;
1055 1.1 cgd
1056 1.1 cgd case EMSGSIZE:
1057 1.1 cgd type = ICMP_UNREACH;
1058 1.1 cgd code = ICMP_UNREACH_NEEDFRAG;
1059 1.1 cgd ipstat.ips_cantfrag++;
1060 1.1 cgd break;
1061 1.1 cgd
1062 1.1 cgd case ENOBUFS:
1063 1.1 cgd type = ICMP_SOURCEQUENCH;
1064 1.1 cgd code = 0;
1065 1.1 cgd break;
1066 1.1 cgd }
1067 1.1 cgd icmp_error(mcopy, type, code, dest);
1068 1.1 cgd }
1069