]> git.proxmox.com Git - systemd.git/blame - src/libsystemd-network/dhcp-internal.h
bump version to 252.11-pve1
[systemd.git] / src / libsystemd-network / dhcp-internal.h
CommitLineData
a032b68d 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
60f067b4
JS
2#pragma once
3
4/***
b012e921 5 Copyright © 2013 Intel Corporation. All rights reserved.
60f067b4
JS
6***/
7
60f067b4 8#include <linux/if_packet.h>
5eef597e 9#include <net/ethernet.h>
db2df898 10#include <stdint.h>
60f067b4 11
e842803a 12#include "sd-dhcp-client.h"
db2df898 13
60f067b4 14#include "dhcp-protocol.h"
086111aa 15#include "ether-addr-util.h"
ea0999c9 16#include "network-common.h"
db2df898 17#include "socket-util.h"
60f067b4 18
e1f67bc7
MB
19typedef struct sd_dhcp_option {
20 unsigned n_ref;
21
22 uint8_t option;
23 void *data;
24 size_t length;
25} sd_dhcp_option;
26
a10f5d05
MB
27typedef struct DHCPServerData {
28 struct in_addr *addr;
29 size_t size;
30} DHCPServerData;
31
e1f67bc7
MB
32extern const struct hash_ops dhcp_option_hash_ops;
33
8b3d4ff0
MB
34typedef struct sd_dhcp_client sd_dhcp_client;
35
086111aa
LB
36int dhcp_network_bind_raw_socket(
37 int ifindex,
38 union sockaddr_union *link,
39 uint32_t xid,
40 const struct hw_addr_data *hw_addr,
41 const struct hw_addr_data *bcast_addr,
42 uint16_t arp_type,
43 uint16_t port);
e1f67bc7 44int dhcp_network_bind_udp_socket(int ifindex, be32_t address, uint16_t port, int ip_service_type);
60f067b4
JS
45int dhcp_network_send_raw_socket(int s, const union sockaddr_union *link,
46 const void *packet, size_t len);
47int dhcp_network_send_udp_socket(int s, be32_t address, uint16_t port,
48 const void *packet, size_t len);
49
50int dhcp_option_append(DHCPMessage *message, size_t size, size_t *offset, uint8_t overload,
51 uint8_t code, size_t optlen, const void *optval);
8b3d4ff0
MB
52int dhcp_option_find_option(uint8_t *options, size_t length, uint8_t wanted_code, size_t *ret_offset);
53int dhcp_option_remove_option(uint8_t *options, size_t buflen, uint8_t option_code);
60f067b4 54
aa27b158 55typedef int (*dhcp_option_callback_t)(uint8_t code, uint8_t len,
d9dfd233 56 const void *option, void *userdata);
60f067b4 57
aa27b158 58int dhcp_option_parse(DHCPMessage *message, size_t len, dhcp_option_callback_t cb, void *userdata, char **error_message);
60f067b4 59
5eef597e 60int dhcp_message_init(DHCPMessage *message, uint8_t op, uint32_t xid,
f5caa8fa
MB
61 uint8_t type, uint16_t arp_type, uint8_t hlen, const uint8_t *chaddr,
62 size_t optlen, size_t *optoffset);
60f067b4 63
e842803a 64uint16_t dhcp_packet_checksum(uint8_t *buf, size_t len);
60f067b4
JS
65
66void dhcp_packet_append_ip_headers(DHCPPacket *packet, be32_t source_addr,
67 uint16_t source, be32_t destination_addr,
e1f67bc7 68 uint16_t destination, uint16_t len, int ip_service_type);
60f067b4 69
2897b343 70int dhcp_packet_verify_headers(DHCPPacket *packet, size_t len, bool checksum, uint16_t port);
60f067b4 71
8b3d4ff0
MB
72void dhcp_client_set_test_mode(sd_dhcp_client *client, bool test_mode);
73
e842803a
MB
74/* If we are invoking callbacks of a dhcp-client, ensure unreffing the
75 * client from the callback doesn't destroy the object we are working
76 * on */
77#define DHCP_CLIENT_DONT_DESTROY(client) \
4c89c718 78 _cleanup_(sd_dhcp_client_unrefp) _unused_ sd_dhcp_client *_dont_destroy_##client = sd_dhcp_client_ref(client)
e842803a 79
8b3d4ff0
MB
80#define log_dhcp_client_errno(client, error, fmt, ...) \
81 log_interface_prefix_full_errno( \
82 "DHCPv4 client: ", \
ea0999c9 83 sd_dhcp_client, client, \
8b3d4ff0
MB
84 error, fmt, ##__VA_ARGS__)
85#define log_dhcp_client(client, fmt, ...) \
86 log_interface_prefix_full_errno_zerook( \
87 "DHCPv4 client: ", \
ea0999c9 88 sd_dhcp_client, client, \
8b3d4ff0 89 0, fmt, ##__VA_ARGS__)