netlink: Break out netlink_client_deliver
[secnet] / netlink.c
CommitLineData
2fe58dfd
SE
1/* User-kernel network link */
2
ff05a229 3/* See RFCs 791, 792, 1123 and 1812 */
2fe58dfd 4
ff05a229
SE
5/* The netlink device is actually a router. Tunnels are unnumbered
6 point-to-point lines (RFC1812 section 2.2.7); the router has a
7 single address (the 'router-id'). */
8
9/* This is where we currently have the anti-spoofing paranoia - before
10 sending a packet to the kernel we check that the tunnel it came
11 over could reasonably have produced it. */
12
13
14/* Points to note from RFC1812 (which may require changes in this
15 file):
16
173.3.4 Maximum Transmission Unit - MTU
18
19 The MTU of each logical interface MUST be configurable within the
20 range of legal MTUs for the interface.
21
22 Many Link Layer protocols define a maximum frame size that may be
23 sent. In such cases, a router MUST NOT allow an MTU to be set which
24 would allow sending of frames larger than those allowed by the Link
25 Layer protocol. However, a router SHOULD be willing to receive a
26 packet as large as the maximum frame size even if that is larger than
27 the MTU.
28
294.2.1 A router SHOULD count datagrams discarded.
30
314.2.2.1 Source route options - we probably should implement processing
32of source routes, even though mostly the security policy will prevent
33their use.
34
355.3.13.4 Source Route Options
36
37 A router MUST implement support for source route options in forwarded
38 packets. A router MAY implement a configuration option that, when
39 enabled, causes all source-routed packets to be discarded. However,
40 such an option MUST NOT be enabled by default.
41
425.3.13.5 Record Route Option
43
44 Routers MUST support the Record Route option in forwarded packets.
45
46 A router MAY provide a configuration option that, if enabled, will
47 cause the router to ignore (i.e., pass through unchanged) Record
48 Route options in forwarded packets. If provided, such an option MUST
49 default to enabling the record-route. This option should not affect
50 the processing of Record Route options in datagrams received by the
51 router itself (in particular, Record Route options in ICMP echo
52 requests will still be processed according to Section [4.3.3.6]).
53
545.3.13.6 Timestamp Option
55
56 Routers MUST support the timestamp option in forwarded packets. A
57 timestamp value MUST follow the rules given [INTRO:2].
58
59 If the flags field = 3 (timestamp and prespecified address), the
60 router MUST add its timestamp if the next prespecified address
61 matches any of the router's IP addresses. It is not necessary that
62 the prespecified address be either the address of the interface on
63 which the packet arrived or the address of the interface over which
64 it will be sent.
65
66
674.2.2.7 Fragmentation: RFC 791 Section 3.2
68
69 Fragmentation, as described in [INTERNET:1], MUST be supported by a
70 router.
71
724.2.2.8 Reassembly: RFC 791 Section 3.2
73
74 As specified in the corresponding section of [INTRO:2], a router MUST
75 support reassembly of datagrams that it delivers to itself.
76
774.2.2.9 Time to Live: RFC 791 Section 3.2
78
79 Note in particular that a router MUST NOT check the TTL of a packet
80 except when forwarding it.
81
82 A router MUST NOT discard a datagram just because it was received
83 with TTL equal to zero or one; if it is to the router and otherwise
84 valid, the router MUST attempt to receive it.
85
86 On messages the router originates, the IP layer MUST provide a means
87 for the transport layer to set the TTL field of every datagram that
88 is sent. When a fixed TTL value is used, it MUST be configurable.
89
90
918.1 The Simple Network Management Protocol - SNMP
928.1.1 SNMP Protocol Elements
93
94 Routers MUST be manageable by SNMP [MGT:3]. The SNMP MUST operate
95 using UDP/IP as its transport and network protocols.
96
97
98*/
2fe58dfd 99
3b83c932 100#include <string.h>
59230b9b
IJ
101#include <assert.h>
102#include <limits.h>
8689b3a9 103#include "secnet.h"
2fe58dfd 104#include "util.h"
7138d0c5 105#include "ipaddr.h"
9d3a4132 106#include "netlink.h"
042a8da9 107#include "process.h"
2fe58dfd 108
ff05a229
SE
109#define ICMP_TYPE_ECHO_REPLY 0
110
111#define ICMP_TYPE_UNREACHABLE 3
112#define ICMP_CODE_NET_UNREACHABLE 0
113#define ICMP_CODE_PROTOCOL_UNREACHABLE 2
114#define ICMP_CODE_FRAGMENTATION_REQUIRED 4
115#define ICMP_CODE_NET_PROHIBITED 13
116
117#define ICMP_TYPE_ECHO_REQUEST 8
118
119#define ICMP_TYPE_TIME_EXCEEDED 11
120#define ICMP_CODE_TTL_EXCEEDED 0
121
4efd681a 122/* Generic IP checksum routine */
1caa23ff 123static inline uint16_t ip_csum(uint8_t *iph,int32_t count)
2fe58dfd 124{
4efd681a
SE
125 register uint32_t sum=0;
126
127 while (count>1) {
128 sum+=ntohs(*(uint16_t *)iph);
129 iph+=2;
130 count-=2;
131 }
132 if(count>0)
133 sum+=*(uint8_t *)iph;
134 while (sum>>16)
135 sum=(sum&0xffff)+(sum>>16);
136 return htons(~sum);
2fe58dfd
SE
137}
138
4efd681a
SE
139#ifdef i386
140/*
141 * This is a version of ip_compute_csum() optimized for IP headers,
142 * which always checksum on 4 octet boundaries.
143 *
144 * By Jorge Cwik <jorge@laser.satlink.net>, adapted for linux by
145 * Arnt Gulbrandsen.
146 */
1caa23ff 147static inline uint16_t ip_fast_csum(uint8_t *iph, int32_t ihl) {
4efd681a
SE
148 uint32_t sum;
149
20d324b6
SE
150 __asm__ __volatile__(
151 "movl (%1), %0 ;\n"
152 "subl $4, %2 ;\n"
153 "jbe 2f ;\n"
154 "addl 4(%1), %0 ;\n"
155 "adcl 8(%1), %0 ;\n"
156 "adcl 12(%1), %0 ;\n"
157"1: adcl 16(%1), %0 ;\n"
158 "lea 4(%1), %1 ;\n"
159 "decl %2 ;\n"
160 "jne 1b ;\n"
161 "adcl $0, %0 ;\n"
162 "movl %0, %2 ;\n"
163 "shrl $16, %0 ;\n"
164 "addw %w2, %w0 ;\n"
165 "adcl $0, %0 ;\n"
166 "notl %0 ;\n"
167"2: ;\n"
4efd681a
SE
168 /* Since the input registers which are loaded with iph and ipl
169 are modified, we must also specify them as outputs, or gcc
170 will assume they contain their original values. */
171 : "=r" (sum), "=r" (iph), "=r" (ihl)
20d324b6
SE
172 : "1" (iph), "2" (ihl)
173 : "memory");
4efd681a
SE
174 return sum;
175}
176#else
1caa23ff 177static inline uint16_t ip_fast_csum(uint8_t *iph, int32_t ihl)
2fe58dfd 178{
1caa23ff 179 assert(ihl < INT_MAX/4);
4efd681a
SE
180 return ip_csum(iph,ihl*4);
181}
182#endif
183
184struct iphdr {
185#if defined (WORDS_BIGENDIAN)
186 uint8_t version:4,
187 ihl:4;
188#else
189 uint8_t ihl:4,
190 version:4;
191#endif
192 uint8_t tos;
193 uint16_t tot_len;
194 uint16_t id;
195 uint16_t frag_off;
196 uint8_t ttl;
197 uint8_t protocol;
198 uint16_t check;
199 uint32_t saddr;
200 uint32_t daddr;
201 /* The options start here. */
202};
203
204struct icmphdr {
205 struct iphdr iph;
206 uint8_t type;
207 uint8_t code;
208 uint16_t check;
209 union {
210 uint32_t unused;
211 struct {
212 uint8_t pointer;
213 uint8_t unused1;
214 uint16_t unused2;
215 } pprob;
216 uint32_t gwaddr;
217 struct {
218 uint16_t id;
219 uint16_t seq;
220 } echo;
221 } d;
222};
223
70dc107b
SE
224static void netlink_packet_deliver(struct netlink *st,
225 struct netlink_client *client,
226 struct buffer_if *buf);
4efd681a 227
ff05a229
SE
228/* XXX RFC1812 4.3.2.5:
229 All other ICMP error messages (Destination Unreachable,
230 Redirect, Time Exceeded, and Parameter Problem) SHOULD have their
231 precedence value set to 6 (INTERNETWORK CONTROL) or 7 (NETWORK
232 CONTROL). The IP Precedence value for these error messages MAY be
233 settable.
234 */
4efd681a
SE
235static struct icmphdr *netlink_icmp_tmpl(struct netlink *st,
236 uint32_t dest,uint16_t len)
237{
238 struct icmphdr *h;
239
240 BUF_ALLOC(&st->icmp,"netlink_icmp_tmpl");
3abd18e8 241 buffer_init(&st->icmp,calculate_max_start_pad());
4efd681a
SE
242 h=buf_append(&st->icmp,sizeof(*h));
243
244 h->iph.version=4;
245 h->iph.ihl=5;
246 h->iph.tos=0;
247 h->iph.tot_len=htons(len+(h->iph.ihl*4)+8);
248 h->iph.id=0;
249 h->iph.frag_off=0;
ff05a229 250 h->iph.ttl=255; /* XXX should be configurable */
4efd681a
SE
251 h->iph.protocol=1;
252 h->iph.saddr=htonl(st->secnet_address);
253 h->iph.daddr=htonl(dest);
254 h->iph.check=0;
255 h->iph.check=ip_fast_csum((uint8_t *)&h->iph,h->iph.ihl);
256 h->check=0;
257 h->d.unused=0;
258
259 return h;
260}
261
262/* Fill in the ICMP checksum field correctly */
263static void netlink_icmp_csum(struct icmphdr *h)
264{
1caa23ff 265 int32_t len;
4efd681a
SE
266
267 len=ntohs(h->iph.tot_len)-(4*h->iph.ihl);
268 h->check=0;
269 h->check=ip_csum(&h->type,len);
270}
271
272/* RFC1122:
273 * An ICMP error message MUST NOT be sent as the result of
274 * receiving:
275 *
276 * * an ICMP error message, or
277 *
278 * * a datagram destined to an IP broadcast or IP multicast
279 * address, or
280 *
281 * * a datagram sent as a link-layer broadcast, or
282 *
283 * * a non-initial fragment, or
284 *
285 * * a datagram whose source address does not define a single
286 * host -- e.g., a zero address, a loopback address, a
287 * broadcast address, a multicast address, or a Class E
288 * address.
289 */
290static bool_t netlink_icmp_may_reply(struct buffer_if *buf)
291{
292 struct iphdr *iph;
8dea8d37 293 struct icmphdr *icmph;
4efd681a
SE
294 uint32_t source;
295
975820aa 296 if (buf->size < (int)sizeof(struct icmphdr)) return False;
4efd681a 297 iph=(struct iphdr *)buf->start;
8dea8d37
SE
298 icmph=(struct icmphdr *)buf->start;
299 if (iph->protocol==1) {
300 switch(icmph->type) {
301 case 3: /* Destination unreachable */
302 case 11: /* Time Exceeded */
303 case 12: /* Parameter Problem */
304 return False;
305 }
306 }
4efd681a
SE
307 /* How do we spot broadcast destination addresses? */
308 if (ntohs(iph->frag_off)&0x1fff) return False; /* Non-initial fragment */
309 source=ntohl(iph->saddr);
310 if (source==0) return False;
311 if ((source&0xff000000)==0x7f000000) return False;
312 /* How do we spot broadcast source addresses? */
313 if ((source&0xf0000000)==0xe0000000) return False; /* Multicast */
314 if ((source&0xf0000000)==0xf0000000) return False; /* Class E */
315 return True;
316}
317
318/* How much of the original IP packet do we include in its ICMP
319 response? The header plus up to 64 bits. */
ff05a229
SE
320
321/* XXX TODO RFC1812:
3224.3.2.3 Original Message Header
323
324 Historically, every ICMP error message has included the Internet
325 header and at least the first 8 data bytes of the datagram that
326 triggered the error. This is no longer adequate, due to the use of
327 IP-in-IP tunneling and other technologies. Therefore, the ICMP
328 datagram SHOULD contain as much of the original datagram as possible
329 without the length of the ICMP datagram exceeding 576 bytes. The
330 returned IP header (and user data) MUST be identical to that which
331 was received, except that the router is not required to undo any
332 modifications to the IP header that are normally performed in
333 forwarding that were performed before the error was detected (e.g.,
334 decrementing the TTL, or updating options). Note that the
335 requirements of Section [4.3.3.5] supersede this requirement in some
336 cases (i.e., for a Parameter Problem message, if the problem is in a
337 modified field, the router must undo the modification). See Section
338 [4.3.3.5]).
339 */
4efd681a
SE
340static uint16_t netlink_icmp_reply_len(struct buffer_if *buf)
341{
975820aa 342 if (buf->size < (int)sizeof(struct iphdr)) return 0;
4efd681a
SE
343 struct iphdr *iph=(struct iphdr *)buf->start;
344 uint16_t hlen,plen;
345
346 hlen=iph->ihl*4;
347 /* We include the first 8 bytes of the packet data, provided they exist */
348 hlen+=8;
349 plen=ntohs(iph->tot_len);
350 return (hlen>plen?plen:hlen);
351}
352
70dc107b
SE
353/* client indicates where the packet we're constructing a response to
354 comes from. NULL indicates the host. */
4efd681a 355static void netlink_icmp_simple(struct netlink *st, struct buffer_if *buf,
70dc107b 356 struct netlink_client *client,
4efd681a
SE
357 uint8_t type, uint8_t code)
358{
4efd681a
SE
359 struct icmphdr *h;
360 uint16_t len;
361
362 if (netlink_icmp_may_reply(buf)) {
975820aa 363 struct iphdr *iph=(struct iphdr *)buf->start;
4efd681a
SE
364 len=netlink_icmp_reply_len(buf);
365 h=netlink_icmp_tmpl(st,ntohl(iph->saddr),len);
366 h->type=type; h->code=code;
367 memcpy(buf_append(&st->icmp,len),buf->start,len);
368 netlink_icmp_csum(h);
70dc107b 369 netlink_packet_deliver(st,NULL,&st->icmp);
4efd681a
SE
370 BUF_ASSERT_FREE(&st->icmp);
371 }
372}
373
374/*
375 * RFC1122: 3.1.2.2 MUST silently discard any IP frame that fails the
376 * checksum.
ff05a229 377 * RFC1812: 4.2.2.5 MUST discard messages containing invalid checksums.
4efd681a
SE
378 *
379 * Is the datagram acceptable?
380 *
381 * 1. Length at least the size of an ip header
382 * 2. Version of 4
383 * 3. Checksums correctly.
384 * 4. Doesn't have a bogus length
385 */
d714da29
IJ
386static bool_t netlink_check(struct netlink *st, struct buffer_if *buf,
387 char *errmsgbuf, int errmsgbuflen)
4efd681a 388{
d714da29
IJ
389#define BAD(...) do{ \
390 snprintf(errmsgbuf,errmsgbuflen,__VA_ARGS__); \
391 return False; \
392 }while(0)
393
975820aa 394 if (buf->size < (int)sizeof(struct iphdr)) BAD("len %"PRIu32"",buf->size);
4efd681a 395 struct iphdr *iph=(struct iphdr *)buf->start;
1caa23ff 396 int32_t len;
4efd681a 397
d714da29
IJ
398 if (iph->ihl < 5) BAD("ihl %u",iph->ihl);
399 if (iph->version != 4) BAD("version %u",iph->version);
400 if (buf->size < iph->ihl*4) BAD("size %"PRId32"<%u*4",buf->size,iph->ihl);
401 if (ip_fast_csum((uint8_t *)iph, iph->ihl)!=0) BAD("csum");
4efd681a
SE
402 len=ntohs(iph->tot_len);
403 /* There should be no padding */
d714da29
IJ
404 if (buf->size!=len) BAD("len %"PRId32"!=%"PRId32,buf->size,len);
405 if (len<(iph->ihl<<2)) BAD("len %"PRId32"<(%u<<2)",len,iph->ihl);
4efd681a
SE
406 /* XXX check that there's no source route specified */
407 return True;
d714da29
IJ
408
409#undef BAD
4efd681a
SE
410}
411
7b6abafa
IJ
412/* Deliver a packet _to_ client; used after we have decided
413 * what to do with it. */
414static void netlink_client_deliver(struct netlink *st,
415 struct netlink_client *client,
416 uint32_t source, uint32_t dest,
417 struct buffer_if *buf)
418{
419 client->deliver(client->dst, buf);
420 client->outcount++;
421}
422
469fd1d9 423/* Deliver a packet. "client" is the _origin_ of the packet, not its
d3fe100d
SE
424 destination, and is NULL for packets from the host and packets
425 generated internally in secnet. */
70dc107b
SE
426static void netlink_packet_deliver(struct netlink *st,
427 struct netlink_client *client,
428 struct buffer_if *buf)
4efd681a 429{
975820aa
IJ
430 if (buf->size < (int)sizeof(struct iphdr)) {
431 Message(M_ERR,"%s: trying to deliver a too-short packet"
432 " from %s!\n",st->name, client?client->name:"(local)");
433 BUF_FREE(buf);
434 return;
435 }
436
4efd681a
SE
437 struct iphdr *iph=(struct iphdr *)buf->start;
438 uint32_t dest=ntohl(iph->daddr);
70dc107b
SE
439 uint32_t source=ntohl(iph->saddr);
440 uint32_t best_quality;
469fd1d9
SE
441 bool_t allow_route=False;
442 bool_t found_allowed=False;
70dc107b
SE
443 int best_match;
444 int i;
2fe58dfd 445
4efd681a 446 BUF_ASSERT_USED(buf);
2fe58dfd 447
4efd681a 448 if (dest==st->secnet_address) {
4f5e39ec 449 Message(M_ERR,"%s: trying to deliver a packet to myself!\n",st->name);
4efd681a 450 BUF_FREE(buf);
2fe58dfd
SE
451 return;
452 }
4efd681a 453
d3fe100d 454 /* Packets from the host (client==NULL) may always be routed. Packets
469fd1d9
SE
455 from clients with the allow_route option will also be routed. */
456 if (!client || (client && (client->options & OPT_ALLOWROUTE)))
457 allow_route=True;
458
459 /* If !allow_route, we check the routing table anyway, and if
460 there's a suitable route with OPT_ALLOWROUTE set we use it. If
461 there's a suitable route, but none with OPT_ALLOWROUTE set then
462 we generate ICMP 'communication with destination network
463 administratively prohibited'. */
464
465 best_quality=0;
466 best_match=-1;
d3fe100d
SE
467 for (i=0; i<st->n_clients; i++) {
468 if (st->routes[i]->up &&
469 ipset_contains_addr(st->routes[i]->networks,dest)) {
469fd1d9
SE
470 /* It's an available route to the correct destination. But is
471 it better than the one we already have? */
472
473 /* If we have already found an allowed route then we don't
474 bother looking at routes we're not allowed to use. If
475 we don't yet have an allowed route we'll consider any. */
476 if (!allow_route && found_allowed) {
d3fe100d 477 if (!(st->routes[i]->options&OPT_ALLOWROUTE)) continue;
70dc107b 478 }
469fd1d9 479
d3fe100d 480 if (st->routes[i]->link_quality>best_quality
469fd1d9 481 || best_quality==0) {
d3fe100d 482 best_quality=st->routes[i]->link_quality;
469fd1d9 483 best_match=i;
d3fe100d 484 if (st->routes[i]->options&OPT_ALLOWROUTE)
469fd1d9
SE
485 found_allowed=True;
486 /* If quality isn't perfect we may wish to
487 consider kicking the tunnel with a 0-length
488 packet to prompt it to perform a key setup.
489 Then it'll eventually decide it's up or
490 down. */
491 /* If quality is perfect and we're allowed to use the
492 route we don't need to search any more. */
493 if (best_quality>=MAXIMUM_LINK_QUALITY &&
494 (allow_route || found_allowed)) break;
4efd681a 495 }
70dc107b 496 }
469fd1d9
SE
497 }
498 if (best_match==-1) {
499 /* The packet's not going down a tunnel. It might (ought to)
500 be for the host. */
794f2398 501 if (ipset_contains_addr(st->networks,dest)) {
469fd1d9
SE
502 st->deliver_to_host(st->dst,buf);
503 st->outcount++;
70dc107b
SE
504 BUF_ASSERT_FREE(buf);
505 } else {
469fd1d9
SE
506 string_t s,d;
507 s=ipaddr_to_string(source);
508 d=ipaddr_to_string(dest);
ff05a229 509 Message(M_DEBUG,"%s: don't know where to deliver packet "
469fd1d9
SE
510 "(s=%s, d=%s)\n", st->name, s, d);
511 free(s); free(d);
ff05a229
SE
512 netlink_icmp_simple(st,buf,client,ICMP_TYPE_UNREACHABLE,
513 ICMP_CODE_NET_UNREACHABLE);
70dc107b 514 BUF_FREE(buf);
2fe58dfd 515 }
469fd1d9
SE
516 } else {
517 if (!allow_route &&
d3fe100d 518 !(st->routes[best_match]->options&OPT_ALLOWROUTE)) {
469fd1d9
SE
519 string_t s,d;
520 s=ipaddr_to_string(source);
521 d=ipaddr_to_string(dest);
522 /* We have a usable route but aren't allowed to use it.
523 Generate ICMP destination unreachable: communication
524 with destination network administratively prohibited */
525 Message(M_NOTICE,"%s: denied forwarding for packet (s=%s, d=%s)\n",
526 st->name,s,d);
527 free(s); free(d);
528
ff05a229
SE
529 netlink_icmp_simple(st,buf,client,ICMP_TYPE_UNREACHABLE,
530 ICMP_CODE_NET_PROHIBITED);
469fd1d9 531 BUF_FREE(buf);
469fd1d9 532 } else {
ea7ec970
SE
533 if (best_quality>0) {
534 /* XXX Fragment if required */
7b6abafa
IJ
535 netlink_client_deliver(st,st->routes[best_match],
536 source,dest,buf);
ea7ec970
SE
537 BUF_ASSERT_FREE(buf);
538 } else {
539 /* Generate ICMP destination unreachable */
540 netlink_icmp_simple(st,buf,client,ICMP_TYPE_UNREACHABLE,
541 ICMP_CODE_NET_UNREACHABLE); /* client==NULL */
542 BUF_FREE(buf);
543 }
469fd1d9 544 }
2fe58dfd 545 }
70dc107b 546 BUF_ASSERT_FREE(buf);
4efd681a
SE
547}
548
70dc107b
SE
549static void netlink_packet_forward(struct netlink *st,
550 struct netlink_client *client,
551 struct buffer_if *buf)
4efd681a 552{
975820aa 553 if (buf->size < (int)sizeof(struct iphdr)) return;
4efd681a
SE
554 struct iphdr *iph=(struct iphdr *)buf->start;
555
556 BUF_ASSERT_USED(buf);
557
558 /* Packet has already been checked */
559 if (iph->ttl<=1) {
560 /* Generate ICMP time exceeded */
ff05a229
SE
561 netlink_icmp_simple(st,buf,client,ICMP_TYPE_TIME_EXCEEDED,
562 ICMP_CODE_TTL_EXCEEDED);
4efd681a
SE
563 BUF_FREE(buf);
564 return;
565 }
566 iph->ttl--;
567 iph->check=0;
568 iph->check=ip_fast_csum((uint8_t *)iph,iph->ihl);
569
70dc107b 570 netlink_packet_deliver(st,client,buf);
4efd681a
SE
571 BUF_ASSERT_FREE(buf);
572}
573
9d3a4132 574/* Deal with packets addressed explicitly to us */
70dc107b
SE
575static void netlink_packet_local(struct netlink *st,
576 struct netlink_client *client,
577 struct buffer_if *buf)
4efd681a
SE
578{
579 struct icmphdr *h;
580
469fd1d9
SE
581 st->localcount++;
582
975820aa
IJ
583 if (buf->size < (int)sizeof(struct icmphdr)) {
584 Message(M_WARNING,"%s: short packet addressed to secnet; "
585 "ignoring it\n",st->name);
586 BUF_FREE(buf);
587 return;
588 }
4efd681a
SE
589 h=(struct icmphdr *)buf->start;
590
591 if ((ntohs(h->iph.frag_off)&0xbfff)!=0) {
9d3a4132
SE
592 Message(M_WARNING,"%s: fragmented packet addressed to secnet; "
593 "ignoring it\n",st->name);
4efd681a
SE
594 BUF_FREE(buf);
595 return;
596 }
597
598 if (h->iph.protocol==1) {
599 /* It's ICMP */
ff05a229 600 if (h->type==ICMP_TYPE_ECHO_REQUEST && h->code==0) {
4efd681a
SE
601 /* ICMP echo-request. Special case: we re-use the buffer
602 to construct the reply. */
ff05a229 603 h->type=ICMP_TYPE_ECHO_REPLY;
4efd681a
SE
604 h->iph.daddr=h->iph.saddr;
605 h->iph.saddr=htonl(st->secnet_address);
ff05a229 606 h->iph.ttl=255;
4efd681a
SE
607 h->iph.check=0;
608 h->iph.check=ip_fast_csum((uint8_t *)h,h->iph.ihl);
609 netlink_icmp_csum(h);
70dc107b 610 netlink_packet_deliver(st,NULL,buf);
4efd681a
SE
611 return;
612 }
613 Message(M_WARNING,"%s: unknown incoming ICMP\n",st->name);
614 } else {
615 /* Send ICMP protocol unreachable */
ff05a229
SE
616 netlink_icmp_simple(st,buf,client,ICMP_TYPE_UNREACHABLE,
617 ICMP_CODE_PROTOCOL_UNREACHABLE);
4efd681a
SE
618 BUF_FREE(buf);
619 return;
620 }
621
622 BUF_FREE(buf);
623}
624
9d3a4132
SE
625/* If cid==NULL packet is from host, otherwise cid specifies which tunnel
626 it came from. */
469fd1d9
SE
627static void netlink_incoming(struct netlink *st, struct netlink_client *client,
628 struct buffer_if *buf)
4efd681a 629{
4efd681a
SE
630 uint32_t source,dest;
631 struct iphdr *iph;
d714da29 632 char errmsgbuf[50];
a28d65a5 633 const char *sourcedesc=client?client->name:"host";
4efd681a
SE
634
635 BUF_ASSERT_USED(buf);
a28d65a5 636
d714da29
IJ
637 if (!netlink_check(st,buf,errmsgbuf,sizeof(errmsgbuf))) {
638 Message(M_WARNING,"%s: bad IP packet from %s: %s\n",
a28d65a5 639 st->name,sourcedesc,
d714da29 640 errmsgbuf);
4efd681a
SE
641 BUF_FREE(buf);
642 return;
643 }
975820aa 644 assert(buf->size >= (int)sizeof(struct icmphdr));
4efd681a
SE
645 iph=(struct iphdr *)buf->start;
646
647 source=ntohl(iph->saddr);
648 dest=ntohl(iph->daddr);
649
d3fe100d
SE
650 /* Check source. If we don't like the source, there's no point
651 generating ICMP because we won't know how to get it to the
652 source of the packet. */
9d3a4132 653 if (client) {
c6f79b17
SE
654 /* Check that the packet source is appropriate for the tunnel
655 it came down */
794f2398 656 if (!ipset_contains_addr(client->networks,source)) {
9d3a4132
SE
657 string_t s,d;
658 s=ipaddr_to_string(source);
659 d=ipaddr_to_string(dest);
660 Message(M_WARNING,"%s: packet from tunnel %s with bad "
661 "source address (s=%s,d=%s)\n",st->name,client->name,s,d);
662 free(s); free(d);
663 BUF_FREE(buf);
664 return;
665 }
666 } else {
c6f79b17
SE
667 /* Check that the packet originates in our configured local
668 network, and hasn't been forwarded from elsewhere or
669 generated with the wrong source address */
794f2398 670 if (!ipset_contains_addr(st->networks,source)) {
9d3a4132
SE
671 string_t s,d;
672 s=ipaddr_to_string(source);
673 d=ipaddr_to_string(dest);
674 Message(M_WARNING,"%s: outgoing packet with bad source address "
675 "(s=%s,d=%s)\n",st->name,s,d);
676 free(s); free(d);
677 BUF_FREE(buf);
678 return;
679 }
4efd681a 680 }
c6f79b17 681
794f2398
SE
682 /* If this is a point-to-point device we don't examine the
683 destination address at all; we blindly send it down our
684 one-and-only registered tunnel, or to the host, depending on
d3fe100d
SE
685 where it came from. It's up to external software to check
686 address validity and generate ICMP, etc. */
c6f79b17
SE
687 if (st->ptp) {
688 if (client) {
469fd1d9 689 st->deliver_to_host(st->dst,buf);
c6f79b17 690 } else {
7b6abafa 691 netlink_client_deliver(st,st->clients,source,dest,buf);
c6f79b17
SE
692 }
693 BUF_ASSERT_FREE(buf);
694 return;
695 }
696
d3fe100d
SE
697 /* st->secnet_address needs checking before matching destination
698 addresses */
2fe58dfd 699 if (dest==st->secnet_address) {
9d3a4132 700 netlink_packet_local(st,client,buf);
4efd681a 701 BUF_ASSERT_FREE(buf);
2fe58dfd
SE
702 return;
703 }
70dc107b 704 netlink_packet_forward(st,client,buf);
4efd681a
SE
705 BUF_ASSERT_FREE(buf);
706}
707
469fd1d9
SE
708static void netlink_inst_incoming(void *sst, struct buffer_if *buf)
709{
710 struct netlink_client *c=sst;
711 struct netlink *st=c->nst;
712
713 netlink_incoming(st,c,buf);
714}
715
716static void netlink_dev_incoming(void *sst, struct buffer_if *buf)
717{
718 struct netlink *st=sst;
719
720 netlink_incoming(st,NULL,buf);
721}
722
d3fe100d 723static void netlink_set_quality(void *sst, uint32_t quality)
4efd681a 724{
d3fe100d
SE
725 struct netlink_client *c=sst;
726 struct netlink *st=c->nst;
4efd681a 727
d3fe100d
SE
728 c->link_quality=quality;
729 c->up=(c->link_quality==LINK_QUALITY_DOWN)?False:True;
730 if (c->options&OPT_SOFTROUTE) {
731 st->set_routes(st->dst,c);
4efd681a 732 }
4efd681a
SE
733}
734
d3fe100d
SE
735static void netlink_output_subnets(struct netlink *st, uint32_t loglevel,
736 struct subnet_list *snets)
4efd681a 737{
1caa23ff 738 int32_t i;
d3fe100d 739 string_t net;
4efd681a 740
d3fe100d
SE
741 for (i=0; i<snets->entries; i++) {
742 net=subnet_to_string(snets->list[i]);
743 Message(loglevel,"%s ",net);
744 free(net);
9d3a4132 745 }
4efd681a
SE
746}
747
042a8da9 748static void netlink_dump_routes(struct netlink *st, bool_t requested)
9d3a4132
SE
749{
750 int i;
751 string_t net;
042a8da9 752 uint32_t c=M_INFO;
9d3a4132 753
042a8da9 754 if (requested) c=M_WARNING;
469fd1d9
SE
755 if (st->ptp) {
756 net=ipaddr_to_string(st->secnet_address);
757 Message(c,"%s: point-to-point (remote end is %s); routes:\n",
758 st->name, net);
9d3a4132 759 free(net);
d3fe100d 760 netlink_output_subnets(st,c,st->clients->subnets);
469fd1d9
SE
761 Message(c,"\n");
762 } else {
763 Message(c,"%s: routing table:\n",st->name);
d3fe100d
SE
764 for (i=0; i<st->n_clients; i++) {
765 netlink_output_subnets(st,c,st->routes[i]->subnets);
ff05a229 766 Message(c,"-> tunnel %s (%s,mtu %d,%s routes,%s,"
ea7ec970 767 "quality %d,use %d,pri %lu)\n",
d3fe100d 768 st->routes[i]->name,
ff05a229
SE
769 st->routes[i]->up?"up":"down",
770 st->routes[i]->mtu,
d3fe100d
SE
771 st->routes[i]->options&OPT_SOFTROUTE?"soft":"hard",
772 st->routes[i]->options&OPT_ALLOWROUTE?"free":"restricted",
d3fe100d 773 st->routes[i]->link_quality,
ea7ec970
SE
774 st->routes[i]->outcount,
775 (unsigned long)st->routes[i]->priority);
469fd1d9
SE
776 }
777 net=ipaddr_to_string(st->secnet_address);
778 Message(c,"%s/32 -> netlink \"%s\" (use %d)\n",
779 net,st->name,st->localcount);
9d3a4132 780 free(net);
794f2398
SE
781 for (i=0; i<st->subnets->entries; i++) {
782 net=subnet_to_string(st->subnets->list[i]);
783 Message(c,"%s ",net);
469fd1d9
SE
784 free(net);
785 }
794f2398
SE
786 if (i>0)
787 Message(c,"-> host (use %d)\n",st->outcount);
9d3a4132
SE
788 }
789}
790
d3fe100d
SE
791/* ap is a pointer to a member of the routes array */
792static int netlink_compare_client_priority(const void *ap, const void *bp)
70dc107b 793{
d3fe100d
SE
794 const struct netlink_client *const*a=ap;
795 const struct netlink_client *const*b=bp;
70dc107b 796
d3fe100d
SE
797 if ((*a)->priority==(*b)->priority) return 0;
798 if ((*a)->priority<(*b)->priority) return 1;
70dc107b
SE
799 return -1;
800}
801
802static void netlink_phase_hook(void *sst, uint32_t new_phase)
803{
804 struct netlink *st=sst;
805 struct netlink_client *c;
1caa23ff 806 int32_t i;
70dc107b
SE
807
808 /* All the networks serviced by the various tunnels should now
809 * have been registered. We build a routing table by sorting the
d3fe100d 810 * clients by priority. */
bb9d0561
IJ
811 st->routes=safe_malloc_ary(sizeof(*st->routes),st->n_clients,
812 "netlink_phase_hook");
70dc107b
SE
813 /* Fill the table */
814 i=0;
59230b9b
IJ
815 for (c=st->clients; c; c=c->next) {
816 assert(i<INT_MAX);
d3fe100d 817 st->routes[i++]=c;
59230b9b 818 }
d3fe100d
SE
819 /* Sort the table in descending order of priority */
820 qsort(st->routes,st->n_clients,sizeof(*st->routes),
821 netlink_compare_client_priority);
9d3a4132 822
042a8da9
SE
823 netlink_dump_routes(st,False);
824}
825
826static void netlink_signal_handler(void *sst, int signum)
827{
828 struct netlink *st=sst;
829 Message(M_INFO,"%s: route dump requested by SIGUSR1\n",st->name);
830 netlink_dump_routes(st,True);
70dc107b
SE
831}
832
1caa23ff 833static void netlink_inst_set_mtu(void *sst, int32_t new_mtu)
d3fe100d
SE
834{
835 struct netlink_client *c=sst;
836
837 c->mtu=new_mtu;
838}
839
469fd1d9 840static void netlink_inst_reg(void *sst, netlink_deliver_fn *deliver,
3abd18e8 841 void *dst)
469fd1d9
SE
842{
843 struct netlink_client *c=sst;
469fd1d9 844
469fd1d9
SE
845 c->deliver=deliver;
846 c->dst=dst;
847}
848
849static struct flagstr netlink_option_table[]={
850 { "soft", OPT_SOFTROUTE },
851 { "allow-route", OPT_ALLOWROUTE },
852 { NULL, 0}
853};
854/* This is the routine that gets called when the closure that's
855 returned by an invocation of a netlink device closure (eg. tun,
856 userv-ipif) is invoked. It's used to create routes and pass in
857 information about them; the closure it returns is used by site
858 code. */
859static closure_t *netlink_inst_create(struct netlink *st,
860 struct cloc loc, dict_t *dict)
861{
862 struct netlink_client *c;
863 string_t name;
794f2398 864 struct ipset *networks;
1caa23ff
IJ
865 uint32_t options,priority;
866 int32_t mtu;
794f2398 867 list_t *l;
469fd1d9
SE
868
869 name=dict_read_string(dict, "name", True, st->name, loc);
870
794f2398
SE
871 l=dict_lookup(dict,"routes");
872 if (!l)
873 cfgfatal(loc,st->name,"required parameter \"routes\" not found\n");
874 networks=string_list_to_ipset(l,loc,st->name,"routes");
469fd1d9
SE
875 options=string_list_to_word(dict_lookup(dict,"options"),
876 netlink_option_table,st->name);
877
d3fe100d
SE
878 priority=dict_read_number(dict,"priority",False,st->name,loc,0);
879 mtu=dict_read_number(dict,"mtu",False,st->name,loc,0);
880
881 if ((options&OPT_SOFTROUTE) && !st->set_routes) {
469fd1d9
SE
882 cfgfatal(loc,st->name,"this netlink device does not support "
883 "soft routes.\n");
884 return NULL;
885 }
886
887 if (options&OPT_SOFTROUTE) {
888 /* XXX for now we assume that soft routes require root privilege;
889 this may not always be true. The device driver can tell us. */
890 require_root_privileges=True;
891 require_root_privileges_explanation="netlink: soft routes";
892 if (st->ptp) {
893 cfgfatal(loc,st->name,"point-to-point netlinks do not support "
894 "soft routes.\n");
895 return NULL;
896 }
897 }
898
794f2398
SE
899 /* Check that nets are a subset of st->remote_networks;
900 refuse to register if they are not. */
901 if (!ipset_is_subset(st->remote_networks,networks)) {
902 cfgfatal(loc,st->name,"routes are not allowed\n");
469fd1d9
SE
903 return NULL;
904 }
905
906 c=safe_malloc(sizeof(*c),"netlink_inst_create");
907 c->cl.description=name;
908 c->cl.type=CL_NETLINK;
909 c->cl.apply=NULL;
910 c->cl.interface=&c->ops;
911 c->ops.st=c;
912 c->ops.reg=netlink_inst_reg;
913 c->ops.deliver=netlink_inst_incoming;
914 c->ops.set_quality=netlink_set_quality;
d3fe100d 915 c->ops.set_mtu=netlink_inst_set_mtu;
469fd1d9
SE
916 c->nst=st;
917
918 c->networks=networks;
794f2398 919 c->subnets=ipset_to_subnet_list(networks);
d3fe100d 920 c->priority=priority;
469fd1d9
SE
921 c->deliver=NULL;
922 c->dst=NULL;
923 c->name=name;
f208b9a9 924 c->link_quality=LINK_QUALITY_UNUSED;
d3fe100d
SE
925 c->mtu=mtu?mtu:st->mtu;
926 c->options=options;
927 c->outcount=0;
928 c->up=False;
929 c->kup=False;
469fd1d9
SE
930 c->next=st->clients;
931 st->clients=c;
59230b9b 932 assert(st->n_clients < INT_MAX);
d3fe100d 933 st->n_clients++;
469fd1d9
SE
934
935 return &c->cl;
936}
937
938static list_t *netlink_inst_apply(closure_t *self, struct cloc loc,
939 dict_t *context, list_t *args)
940{
941 struct netlink *st=self->interface;
942
943 dict_t *dict;
944 item_t *item;
945 closure_t *cl;
946
469fd1d9
SE
947 item=list_elem(args,0);
948 if (!item || item->type!=t_dict) {
949 cfgfatal(loc,st->name,"must have a dictionary argument\n");
950 }
951 dict=item->data.dict;
952
953 cl=netlink_inst_create(st,loc,dict);
954
955 return new_closure(cl);
956}
957
9d3a4132
SE
958netlink_deliver_fn *netlink_init(struct netlink *st,
959 void *dst, struct cloc loc,
fe5e9cc4 960 dict_t *dict, cstring_t description,
d3fe100d 961 netlink_route_fn *set_routes,
9d3a4132 962 netlink_deliver_fn *to_host)
4efd681a 963{
c6f79b17 964 item_t *sa, *ptpa;
794f2398 965 list_t *l;
c6f79b17 966
4efd681a
SE
967 st->dst=dst;
968 st->cl.description=description;
469fd1d9
SE
969 st->cl.type=CL_PURE;
970 st->cl.apply=netlink_inst_apply;
971 st->cl.interface=st;
4efd681a 972 st->clients=NULL;
d3fe100d
SE
973 st->routes=NULL;
974 st->n_clients=0;
975 st->set_routes=set_routes;
4efd681a
SE
976 st->deliver_to_host=to_host;
977
794f2398 978 st->name=dict_read_string(dict,"name",False,description,loc);
4efd681a 979 if (!st->name) st->name=description;
794f2398
SE
980 l=dict_lookup(dict,"networks");
981 if (l)
982 st->networks=string_list_to_ipset(l,loc,st->name,"networks");
983 else {
4f5e39ec
SE
984 struct ipset *empty;
985 empty=ipset_new();
986 st->networks=ipset_complement(empty);
987 ipset_free(empty);
794f2398
SE
988 }
989 l=dict_lookup(dict,"remote-networks");
990 if (l) {
991 st->remote_networks=string_list_to_ipset(l,loc,st->name,
992 "remote-networks");
993 } else {
994 struct ipset *empty;
995 empty=ipset_new();
996 st->remote_networks=ipset_complement(empty);
997 ipset_free(empty);
998 }
999
c6f79b17 1000 sa=dict_find_item(dict,"secnet-address",False,"netlink",loc);
469fd1d9 1001 ptpa=dict_find_item(dict,"ptp-address",False,"netlink",loc);
c6f79b17
SE
1002 if (sa && ptpa) {
1003 cfgfatal(loc,st->name,"you may not specify secnet-address and "
1004 "ptp-address in the same netlink device\n");
1005 }
1006 if (!(sa || ptpa)) {
1007 cfgfatal(loc,st->name,"you must specify secnet-address or "
1008 "ptp-address for this netlink device\n");
1009 }
1010 if (sa) {
794f2398 1011 st->secnet_address=string_item_to_ipaddr(sa,"netlink");
c6f79b17
SE
1012 st->ptp=False;
1013 } else {
794f2398 1014 st->secnet_address=string_item_to_ipaddr(ptpa,"netlink");
c6f79b17
SE
1015 st->ptp=True;
1016 }
d3fe100d
SE
1017 /* To be strictly correct we could subtract secnet_address from
1018 networks here. It shouldn't make any practical difference,
794f2398
SE
1019 though, and will make the route dump look complicated... */
1020 st->subnets=ipset_to_subnet_list(st->networks);
4efd681a
SE
1021 st->mtu=dict_read_number(dict, "mtu", False, "netlink", loc, DEFAULT_MTU);
1022 buffer_new(&st->icmp,ICMP_BUFSIZE);
469fd1d9
SE
1023 st->outcount=0;
1024 st->localcount=0;
70dc107b
SE
1025
1026 add_hook(PHASE_SETUP,netlink_phase_hook,st);
042a8da9 1027 request_signal_notification(SIGUSR1, netlink_signal_handler, st);
4efd681a 1028
469fd1d9
SE
1029 /* If we're point-to-point then we return a CL_NETLINK directly,
1030 rather than a CL_NETLINK_OLD or pure closure (depending on
1031 compatibility). This CL_NETLINK is for our one and only
1032 client. Our cl.apply function is NULL. */
1033 if (st->ptp) {
1034 closure_t *cl;
1035 cl=netlink_inst_create(st,loc,dict);
1036 st->cl=*cl;
1037 }
1038 return netlink_dev_incoming;
2fe58dfd
SE
1039}
1040
9d3a4132 1041/* No connection to the kernel at all... */
2fe58dfd 1042
9d3a4132 1043struct null {
4efd681a 1044 struct netlink nl;
4efd681a 1045};
2fe58dfd 1046
d3fe100d 1047static bool_t null_set_route(void *sst, struct netlink_client *routes)
4efd681a 1048{
9d3a4132 1049 struct null *st=sst;
d3fe100d
SE
1050
1051 if (routes->up!=routes->kup) {
1052 Message(M_INFO,"%s: setting routes for tunnel %s to state %s\n",
1053 st->nl.name,routes->name,
1054 routes->up?"up":"down");
1055 routes->kup=routes->up;
9d3a4132 1056 return True;
2fe58dfd 1057 }
9d3a4132 1058 return False;
2fe58dfd 1059}
9d3a4132 1060
469fd1d9 1061static void null_deliver(void *sst, struct buffer_if *buf)
2fe58dfd
SE
1062{
1063 return;
1064}
1065
1066static list_t *null_apply(closure_t *self, struct cloc loc, dict_t *context,
1067 list_t *args)
1068{
1069 struct null *st;
4efd681a
SE
1070 item_t *item;
1071 dict_t *dict;
2fe58dfd 1072
4efd681a 1073 st=safe_malloc(sizeof(*st),"null_apply");
2fe58dfd 1074
4efd681a
SE
1075 item=list_elem(args,0);
1076 if (!item || item->type!=t_dict)
1077 cfgfatal(loc,"null-netlink","parameter must be a dictionary\n");
1078
1079 dict=item->data.dict;
1080
9d3a4132
SE
1081 netlink_init(&st->nl,st,loc,dict,"null-netlink",null_set_route,
1082 null_deliver);
4efd681a
SE
1083
1084 return new_closure(&st->nl.cl);
2fe58dfd
SE
1085}
1086
2fe58dfd
SE
1087void netlink_module(dict_t *dict)
1088{
4efd681a 1089 add_closure(dict,"null-netlink",null_apply);
2fe58dfd 1090}