chiark / gitweb /
sd-dhcp-client: --omg-optimized
[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
29 #include "socket-util.h"
30
31 #include "dhcp-internal.h"
32
33 int dhcp_network_bind_raw_socket(int index, union sockaddr_union *link)
34 {
35         int s, one = 1;
36
37         assert(index > 0);
38         assert(link);
39
40         s = socket(AF_PACKET, SOCK_DGRAM | SOCK_CLOEXEC | SOCK_NONBLOCK, 0);
41         if (s < 0)
42                 return -errno;
43
44         link->ll.sll_family = AF_PACKET;
45         link->ll.sll_protocol = htons(ETH_P_IP);
46         link->ll.sll_ifindex =  index;
47         link->ll.sll_halen = ETH_ALEN;
48         memset(link->ll.sll_addr, 0xff, ETH_ALEN);
49
50         if (setsockopt (s, SOL_PACKET, PACKET_AUXDATA, &one, sizeof(one)) < 0)
51                 return -errno;
52
53         if (bind(s, &link->sa, sizeof(link->ll)) < 0) {
54                 safe_close(s);
55                 return -errno;
56         }
57
58         return s;
59 }
60
61 int dhcp_network_bind_udp_socket(int index, be32_t address, uint16_t port)
62 {
63         int s;
64         union sockaddr_union src = {
65                 .in.sin_family = AF_INET,
66                 .in.sin_port = htobe16(port),
67                 .in.sin_addr.s_addr = address,
68         };
69
70         s = socket(AF_INET, SOCK_DGRAM | SOCK_CLOEXEC | SOCK_NONBLOCK, 0);
71         if (s < 0)
72                 return -errno;
73
74         if (bind(s, &src.sa, sizeof(src.in)) < 0) {
75                 safe_close(s);
76                 return -errno;
77         }
78
79         return s;
80 }
81
82 int dhcp_network_send_raw_socket(int s, const union sockaddr_union *link,
83                                  const void *packet, size_t len)
84 {
85         assert(link);
86         assert(packet);
87         assert(len);
88
89         if (sendto(s, packet, len, 0, &link->sa, sizeof(link->ll)) < 0)
90                 return -errno;
91
92         return 0;
93 }
94
95 int dhcp_network_send_udp_socket(int s, be32_t address, uint16_t port,
96                                  const void *packet, size_t len)
97 {
98         union sockaddr_union dest = {
99                 .in.sin_family = AF_INET,
100                 .in.sin_port = htobe16(port),
101                 .in.sin_addr.s_addr = address,
102         };
103
104         if (sendto(s, packet, len, 0, &dest.sa, sizeof(dest.in)) < 0)
105                 return -errno;
106
107         return 0;
108 }