diff options
-rw-r--r-- | src/libsystemd-network/dhcp-client-internal.h | 2 | ||||
-rw-r--r-- | src/libsystemd-network/dhcp-internal.h | 50 | ||||
-rw-r--r-- | src/libsystemd-network/dhcp-lease-internal.h | 3 | ||||
-rw-r--r-- | src/libsystemd-network/dhcp-option.c | 3 | ||||
-rw-r--r-- | src/libsystemd-network/dhcp-option.h | 46 | ||||
-rw-r--r-- | src/libsystemd-network/dhcp-packet.c | 4 | ||||
-rw-r--r-- | src/libsystemd-network/dhcp-packet.h | 31 | ||||
-rw-r--r-- | src/libsystemd-network/dhcp-protocol.h | 2 | ||||
-rw-r--r-- | src/libsystemd-network/dhcp-server-internal.h | 2 | ||||
-rw-r--r-- | src/libsystemd-network/sd-dhcp-client.c | 5 | ||||
-rw-r--r-- | src/libsystemd-network/sd-dhcp-lease.c | 4 | ||||
-rw-r--r-- | src/libsystemd-network/sd-dhcp-server.c | 3 | ||||
-rw-r--r-- | src/libsystemd-network/test-dhcp-client.c | 4 | ||||
-rw-r--r-- | src/libsystemd-network/test-dhcp-option.c | 5 | ||||
-rw-r--r-- | src/network/networkd-dhcp-common.c | 2 |
15 files changed, 98 insertions, 68 deletions
diff --git a/src/libsystemd-network/dhcp-client-internal.h b/src/libsystemd-network/dhcp-client-internal.h index cb8e3c3325..28ce80cbf2 100644 --- a/src/libsystemd-network/dhcp-client-internal.h +++ b/src/libsystemd-network/dhcp-client-internal.h @@ -26,8 +26,6 @@ const char *dhcp_state_to_string(DHCPState s) _const_; typedef struct sd_dhcp_client sd_dhcp_client; -extern const struct hash_ops dhcp_option_hash_ops; - int dhcp_client_set_state_callback( sd_dhcp_client *client, sd_dhcp_client_callback_t cb, diff --git a/src/libsystemd-network/dhcp-internal.h b/src/libsystemd-network/dhcp-internal.h deleted file mode 100644 index ba6090b982..0000000000 --- a/src/libsystemd-network/dhcp-internal.h +++ /dev/null @@ -1,50 +0,0 @@ -/* SPDX-License-Identifier: LGPL-2.1-or-later */ -#pragma once - -/*** - Copyright © 2013 Intel Corporation. All rights reserved. -***/ - -#include <stdint.h> - -#include "sd-dhcp-client.h" - -#include "dhcp-client-internal.h" -#include "dhcp-protocol.h" - -typedef struct sd_dhcp_option { - unsigned n_ref; - - uint8_t option; - void *data; - size_t length; -} sd_dhcp_option; - -typedef struct DHCPServerData { - struct in_addr *addr; - size_t size; -} DHCPServerData; - -int dhcp_option_append(DHCPMessage *message, size_t size, size_t *offset, uint8_t overload, - uint8_t code, size_t optlen, const void *optval); -int dhcp_option_find_option(uint8_t *options, size_t length, uint8_t wanted_code, size_t *ret_offset); -int dhcp_option_remove_option(uint8_t *options, size_t buflen, uint8_t option_code); - -typedef int (*dhcp_option_callback_t)(uint8_t code, uint8_t len, - const void *option, void *userdata); - -int dhcp_option_parse(DHCPMessage *message, size_t len, dhcp_option_callback_t cb, void *userdata, char **ret_error_message); - -int dhcp_option_parse_string(const uint8_t *option, size_t len, char **ret); - -int dhcp_message_init(DHCPMessage *message, uint8_t op, uint32_t xid, - uint8_t type, uint16_t arp_type, uint8_t hlen, const uint8_t *chaddr, - size_t optlen, size_t *optoffset); - -uint16_t dhcp_packet_checksum(uint8_t *buf, size_t len); - -void dhcp_packet_append_ip_headers(DHCPPacket *packet, be32_t source_addr, - uint16_t source, be32_t destination_addr, - uint16_t destination, uint16_t len, int ip_service_type); - -int dhcp_packet_verify_headers(DHCPPacket *packet, size_t len, bool checksum, uint16_t port); diff --git a/src/libsystemd-network/dhcp-lease-internal.h b/src/libsystemd-network/dhcp-lease-internal.h index 54facc9c65..ce1342e9fd 100644 --- a/src/libsystemd-network/dhcp-lease-internal.h +++ b/src/libsystemd-network/dhcp-lease-internal.h @@ -8,8 +8,7 @@ #include "sd-dhcp-client.h" #include "alloc-util.h" -#include "dhcp-internal.h" -#include "dhcp-protocol.h" +#include "dhcp-option.h" #include "list.h" #include "time-util.h" diff --git a/src/libsystemd-network/dhcp-option.c b/src/libsystemd-network/dhcp-option.c index b60c7b443e..5e216c5139 100644 --- a/src/libsystemd-network/dhcp-option.c +++ b/src/libsystemd-network/dhcp-option.c @@ -8,9 +8,10 @@ #include <stdio.h> #include "alloc-util.h" -#include "dhcp-internal.h" +#include "dhcp-option.h" #include "dhcp-server-internal.h" #include "memory-util.h" +#include "ordered-set.h" #include "strv.h" #include "utf8.h" diff --git a/src/libsystemd-network/dhcp-option.h b/src/libsystemd-network/dhcp-option.h new file mode 100644 index 0000000000..425f5b5016 --- /dev/null +++ b/src/libsystemd-network/dhcp-option.h @@ -0,0 +1,46 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +#pragma once + +#include <stdint.h> + +#include "sd-dhcp-option.h" + +#include "dhcp-protocol.h" +#include "hash-funcs.h" + +struct sd_dhcp_option { + unsigned n_ref; + + uint8_t option; + void *data; + size_t length; +}; + +extern const struct hash_ops dhcp_option_hash_ops; + +typedef struct DHCPServerData { + struct in_addr *addr; + size_t size; +} DHCPServerData; + +int dhcp_option_append( + DHCPMessage *message, + size_t size, + size_t *offset, + uint8_t overload, + uint8_t code, + size_t optlen, + const void *optval); +int dhcp_option_find_option(uint8_t *options, size_t length, uint8_t wanted_code, size_t *ret_offset); +int dhcp_option_remove_option(uint8_t *options, size_t buflen, uint8_t option_code); + +typedef int (*dhcp_option_callback_t)(uint8_t code, uint8_t len, const void *option, void *userdata); + +int dhcp_option_parse( + DHCPMessage *message, + size_t len, + dhcp_option_callback_t cb, + void *userdata, + char **ret_error_message); + +int dhcp_option_parse_string(const uint8_t *option, size_t len, char **ret); diff --git a/src/libsystemd-network/dhcp-packet.c b/src/libsystemd-network/dhcp-packet.c index b2efd5246d..78eb36c733 100644 --- a/src/libsystemd-network/dhcp-packet.c +++ b/src/libsystemd-network/dhcp-packet.c @@ -8,8 +8,8 @@ #include <net/if_arp.h> #include <string.h> -#include "dhcp-internal.h" -#include "dhcp-protocol.h" +#include "dhcp-option.h" +#include "dhcp-packet.h" #include "memory-util.h" #define DHCP_CLIENT_MIN_OPTIONS_SIZE 312 diff --git a/src/libsystemd-network/dhcp-packet.h b/src/libsystemd-network/dhcp-packet.h new file mode 100644 index 0000000000..751321b92f --- /dev/null +++ b/src/libsystemd-network/dhcp-packet.h @@ -0,0 +1,31 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +#pragma once + +#include <stdbool.h> +#include <stdint.h> + +#include "dhcp-protocol.h" + +int dhcp_message_init( + DHCPMessage *message, + uint8_t op, + uint32_t xid, + uint8_t type, + uint16_t arp_type, + uint8_t hlen, + const uint8_t *chaddr, + size_t optlen, + size_t *optoffset); + +uint16_t dhcp_packet_checksum(uint8_t *buf, size_t len); + +void dhcp_packet_append_ip_headers( + DHCPPacket *packet, + be32_t source_addr, + uint16_t source, + be32_t destination_addr, + uint16_t destination, + uint16_t len, + int ip_service_type); + +int dhcp_packet_verify_headers(DHCPPacket *packet, size_t len, bool checksum, uint16_t port); diff --git a/src/libsystemd-network/dhcp-protocol.h b/src/libsystemd-network/dhcp-protocol.h index 34ab933360..d7bb203aab 100644 --- a/src/libsystemd-network/dhcp-protocol.h +++ b/src/libsystemd-network/dhcp-protocol.h @@ -9,6 +9,8 @@ #include <netinet/udp.h> #include <stdint.h> +#include "sd-dhcp-protocol.h" + #include "macro.h" #include "sparse-endian.h" #include "time-util.h" diff --git a/src/libsystemd-network/dhcp-server-internal.h b/src/libsystemd-network/dhcp-server-internal.h index ae61cd8479..1879b5b159 100644 --- a/src/libsystemd-network/dhcp-server-internal.h +++ b/src/libsystemd-network/dhcp-server-internal.h @@ -8,7 +8,7 @@ #include "sd-dhcp-server.h" #include "sd-event.h" -#include "dhcp-internal.h" +#include "dhcp-option.h" #include "network-common.h" #include "ordered-set.h" #include "time-util.h" diff --git a/src/libsystemd-network/sd-dhcp-client.c b/src/libsystemd-network/sd-dhcp-client.c index dc61470afc..bc73e87b95 100644 --- a/src/libsystemd-network/sd-dhcp-client.c +++ b/src/libsystemd-network/sd-dhcp-client.c @@ -15,11 +15,12 @@ #include "alloc-util.h" #include "device-util.h" +#include "dhcp-client-internal.h" #include "dhcp-identifier.h" -#include "dhcp-internal.h" #include "dhcp-lease-internal.h" #include "dhcp-network.h" -#include "dhcp-protocol.h" +#include "dhcp-option.h" +#include "dhcp-packet.h" #include "dns-domain.h" #include "ether-addr-util.h" #include "event-util.h" diff --git a/src/libsystemd-network/sd-dhcp-lease.c b/src/libsystemd-network/sd-dhcp-lease.c index d82ab938f7..e0e8e81750 100644 --- a/src/libsystemd-network/sd-dhcp-lease.c +++ b/src/libsystemd-network/sd-dhcp-lease.c @@ -13,9 +13,8 @@ #include "sd-dhcp-lease.h" #include "alloc-util.h" -#include "dhcp-internal.h" #include "dhcp-lease-internal.h" -#include "dhcp-protocol.h" +#include "dhcp-option.h" #include "dns-domain.h" #include "env-file.h" #include "fd-util.h" @@ -24,6 +23,7 @@ #include "hexdecoct.h" #include "hostname-util.h" #include "in-addr-util.h" +#include "network-common.h" #include "network-internal.h" #include "parse-util.h" #include "stdio-util.h" diff --git a/src/libsystemd-network/sd-dhcp-server.c b/src/libsystemd-network/sd-dhcp-server.c index 814021a2ca..54a659766d 100644 --- a/src/libsystemd-network/sd-dhcp-server.c +++ b/src/libsystemd-network/sd-dhcp-server.c @@ -10,8 +10,9 @@ #include "sd-id128.h" #include "alloc-util.h" -#include "dhcp-internal.h" #include "dhcp-network.h" +#include "dhcp-option.h" +#include "dhcp-packet.h" #include "dhcp-server-internal.h" #include "dns-domain.h" #include "fd-util.h" diff --git a/src/libsystemd-network/test-dhcp-client.c b/src/libsystemd-network/test-dhcp-client.c index f8baf2d46d..e3f148daf5 100644 --- a/src/libsystemd-network/test-dhcp-client.c +++ b/src/libsystemd-network/test-dhcp-client.c @@ -18,9 +18,9 @@ #include "alloc-util.h" #include "dhcp-identifier.h" -#include "dhcp-internal.h" #include "dhcp-network.h" -#include "dhcp-protocol.h" +#include "dhcp-option.h" +#include "dhcp-packet.h" #include "ether-addr-util.h" #include "fd-util.h" #include "random-util.h" diff --git a/src/libsystemd-network/test-dhcp-option.c b/src/libsystemd-network/test-dhcp-option.c index 82c5cdb67a..47d799348f 100644 --- a/src/libsystemd-network/test-dhcp-option.c +++ b/src/libsystemd-network/test-dhcp-option.c @@ -7,8 +7,9 @@ #include <string.h> #include "alloc-util.h" -#include "dhcp-internal.h" -#include "dhcp-protocol.h" +#include "dhcp-option.h" +#include "dhcp-packet.h" +#include "ether-addr-util.h" #include "macro.h" #include "memory-util.h" diff --git a/src/network/networkd-dhcp-common.c b/src/network/networkd-dhcp-common.c index ff0ee717c5..cfc7a388e8 100644 --- a/src/network/networkd-dhcp-common.c +++ b/src/network/networkd-dhcp-common.c @@ -6,7 +6,7 @@ #include "bus-error.h" #include "bus-locator.h" #include "dhcp-identifier.h" -#include "dhcp-client-internal.h" +#include "dhcp-option.h" #include "dhcp6-internal.h" #include "escape.h" #include "hexdecoct.h" |