From: Yu Watanabe Date: Fri, 20 Oct 2023 16:27:52 +0000 (+0900) Subject: dhcp: split dhcp-internal.h into two X-Git-Tag: v255-rc1~173^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F29652%2Fhead;p=thirdparty%2Fsystemd.git dhcp: split dhcp-internal.h into two --- diff --git a/src/libsystemd-network/dhcp-client-internal.h b/src/libsystemd-network/dhcp-client-internal.h index cb8e3c33258..28ce80cbf22 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 ba6090b982b..00000000000 --- 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 - -#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 54facc9c658..ce1342e9fdd 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 b60c7b443e4..5e216c5139c 100644 --- a/src/libsystemd-network/dhcp-option.c +++ b/src/libsystemd-network/dhcp-option.c @@ -8,9 +8,10 @@ #include #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 00000000000..425f5b50162 --- /dev/null +++ b/src/libsystemd-network/dhcp-option.h @@ -0,0 +1,46 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +#pragma once + +#include + +#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 b2efd5246df..78eb36c7337 100644 --- a/src/libsystemd-network/dhcp-packet.c +++ b/src/libsystemd-network/dhcp-packet.c @@ -8,8 +8,8 @@ #include #include -#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 00000000000..751321b92f6 --- /dev/null +++ b/src/libsystemd-network/dhcp-packet.h @@ -0,0 +1,31 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ +#pragma once + +#include +#include + +#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 34ab9333606..d7bb203aaba 100644 --- a/src/libsystemd-network/dhcp-protocol.h +++ b/src/libsystemd-network/dhcp-protocol.h @@ -9,6 +9,8 @@ #include #include +#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 ae61cd84799..1879b5b159f 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 dc61470afc9..bc73e87b95b 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 d82ab938f73..e0e8e817505 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 814021a2caf..54a659766d3 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 f8baf2d46d9..e3f148daf5d 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 82c5cdb67a9..47d799348f9 100644 --- a/src/libsystemd-network/test-dhcp-option.c +++ b/src/libsystemd-network/test-dhcp-option.c @@ -7,8 +7,9 @@ #include #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 ff0ee717c5d..cfc7a388e8f 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"