[systemd-devel] [PATCH 11/28] dhcp: Add function for sending a raw packet
Patrik Flykt
patrik.flykt at linux.intel.com
Wed Nov 13 13:22:39 PST 2013
Open a packet socket, create a link level header, send packet and
close socket. Adding it to a separate file makes testing of the
DHCP sending much easier, as the test program can supply any socket
to the DHCP client code.
---
src/dhcp/internal.h | 2 ++
src/dhcp/network.c | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 65 insertions(+)
create mode 100644 src/dhcp/network.c
diff --git a/src/dhcp/internal.h b/src/dhcp/internal.h
index 65a3bb3..92bd2a1 100644
--- a/src/dhcp/internal.h
+++ b/src/dhcp/internal.h
@@ -25,6 +25,8 @@
#include "protocol.h"
+int __dhcp_network_send_raw_packet(int index, void *packet, int len);
+
int __dhcp_option_append(uint8_t **buf, int *buflen, uint8_t code,
uint8_t optlen, void *optval);
diff --git a/src/dhcp/network.c b/src/dhcp/network.c
new file mode 100644
index 0000000..623251d
--- /dev/null
+++ b/src/dhcp/network.c
@@ -0,0 +1,63 @@
+/***
+ This file is part of systemd.
+
+ Copyright (C) 2013 Intel Corporation. All rights reserved.
+
+ systemd is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation; either version 2.1 of the License, or
+ (at your option) any later version.
+
+ systemd is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with systemd; If not, see <http://www.gnu.org/licenses/>.
+***/
+
+#include <errno.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <string.h>
+#include <linux/if_packet.h>
+#include <net/ethernet.h>
+#include <stdio.h>
+#include <unistd.h>
+
+#include "internal.h"
+
+int __dhcp_network_send_raw_packet(int index, void *packet, int len)
+{
+ int err, s;
+ struct sockaddr_ll link;
+
+ err = 0;
+
+ s = socket(AF_PACKET, SOCK_DGRAM | SOCK_CLOEXEC, htons(ETH_P_IP));
+ if (s < 0)
+ return -errno;
+
+ memset(&link, 0, sizeof(link));
+
+ link.sll_family = AF_PACKET;
+ link.sll_protocol = htons(ETH_P_IP);
+ link.sll_ifindex = index;
+ link.sll_halen = ETH_ALEN;
+ memset(&link.sll_addr, 0xff, ETH_ALEN);
+
+ if (bind(s, (struct sockaddr *)&link, sizeof(link)) < 0) {
+ err = -errno;
+ close(s);
+ return err;
+ }
+
+ if (sendto(s, packet, len, 0, (struct sockaddr *)&link,
+ sizeof(link)) < 0)
+ err = -errno;
+
+ close(s);
+
+ return err;
+}
--
1.7.10.4
More information about the systemd-devel
mailing list