chiark / gitweb /
a9a15b4d5adc156b6ef5c17671d7df5eca2f54ee
[elogind.git] / src / libsystemd-network / dhcp-network.c
1 /***
2   This file is part of systemd.
3
4   Copyright (C) 2013 Intel Corporation. All rights reserved.
5
6   systemd is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as published by
8   the Free Software Foundation; either version 2.1 of the License, or
9   (at your option) any later version.
10
11   systemd is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   Lesser General Public License for more details.
15
16   You should have received a copy of the GNU Lesser General Public License
17   along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <errno.h>
21 #include <sys/types.h>
22 #include <sys/socket.h>
23 #include <string.h>
24 #include <linux/if_packet.h>
25 #include <net/ethernet.h>
26 #include <stdio.h>
27 #include <unistd.h>
28 #include <linux/filter.h>
29
30 #include "socket-util.h"
31
32 #include "dhcp-internal.h"
33
34 int dhcp_network_bind_raw_socket(int index, union sockaddr_union *link)
35 {
36         struct sock_filter filter[] = {
37             BPF_STMT(BPF_LD + BPF_W + BPF_LEN, 0),                                 /* A <- packet length */
38             BPF_JUMP(BPF_JMP + BPF_JGE + BPF_K, sizeof(DHCPPacket), 1, 0),         /* packet >= DHCPPacket ? */
39             BPF_STMT(BPF_RET + BPF_K, 0),                                          /* ignore */
40             BPF_STMT(BPF_LD + BPF_B + BPF_ABS, offsetof(DHCPPacket, ip.protocol)), /* A <- IP protocol */
41             BPF_JUMP(BPF_JMP + BPF_JEQ + BPF_K, IPPROTO_UDP, 1, 0),                /* IP protocol == UDP ? */
42             BPF_STMT(BPF_RET + BPF_K, 0),                                          /* ignore */
43             BPF_STMT(BPF_LD + BPF_H + BPF_ABS, offsetof(DHCPPacket, udp.dest)),    /* A <- UDP destination port */
44             BPF_JUMP(BPF_JMP + BPF_JEQ + BPF_K, DHCP_PORT_CLIENT, 1, 0),           /* UDP destination port == DHCP client port ? */
45             BPF_STMT(BPF_RET + BPF_K, 0),                                          /* ignore */
46             BPF_STMT(BPF_RET + BPF_K, 65535),                                      /* return all */
47         };
48         struct sock_fprog fprog = {
49             .len = ELEMENTSOF(filter),
50             .filter = filter
51         };
52         int s, one = 1;
53
54         assert(index > 0);
55         assert(link);
56
57         s = socket(AF_PACKET, SOCK_DGRAM | SOCK_CLOEXEC | SOCK_NONBLOCK, 0);
58         if (s < 0)
59                 return -errno;
60
61         link->ll.sll_family = AF_PACKET;
62         link->ll.sll_protocol = htons(ETH_P_IP);
63         link->ll.sll_ifindex =  index;
64         link->ll.sll_halen = ETH_ALEN;
65         memset(link->ll.sll_addr, 0xff, ETH_ALEN);
66
67         if (setsockopt (s, SOL_PACKET, PACKET_AUXDATA, &one, sizeof(one)) < 0)
68                 return -errno;
69
70         if (setsockopt(s, SOL_SOCKET, SO_ATTACH_FILTER, &fprog, sizeof(fprog)) < 0) {
71                 return -errno;
72         }
73
74         if (bind(s, &link->sa, sizeof(link->ll)) < 0) {
75                 safe_close(s);
76                 return -errno;
77         }
78
79         return s;
80 }
81
82 int dhcp_network_bind_udp_socket(int index, be32_t address, uint16_t port)
83 {
84         int s;
85         union sockaddr_union src = {
86                 .in.sin_family = AF_INET,
87                 .in.sin_port = htobe16(port),
88                 .in.sin_addr.s_addr = address,
89         };
90
91         s = socket(AF_INET, SOCK_DGRAM | SOCK_CLOEXEC | SOCK_NONBLOCK, 0);
92         if (s < 0)
93                 return -errno;
94
95         if (bind(s, &src.sa, sizeof(src.in)) < 0) {
96                 safe_close(s);
97                 return -errno;
98         }
99
100         return s;
101 }
102
103 int dhcp_network_send_raw_socket(int s, const union sockaddr_union *link,
104                                  const void *packet, size_t len)
105 {
106         assert(link);
107         assert(packet);
108         assert(len);
109
110         if (sendto(s, packet, len, 0, &link->sa, sizeof(link->ll)) < 0)
111                 return -errno;
112
113         return 0;
114 }
115
116 int dhcp_network_send_udp_socket(int s, be32_t address, uint16_t port,
117                                  const void *packet, size_t len)
118 {
119         union sockaddr_union dest = {
120                 .in.sin_family = AF_INET,
121                 .in.sin_port = htobe16(port),
122                 .in.sin_addr.s_addr = address,
123         };
124
125         if (sendto(s, packet, len, 0, &dest.sa, sizeof(dest.in)) < 0)
126                 return -errno;
127
128         return 0;
129 }