dhcp: stop using magic constants; use (htonl(CONST) != a) - it's smaller
[platform/upstream/busybox.git] / networking / udhcp / common.h
1 /* vi: set sw=4 ts=4: */
2 /* common.h
3  *
4  * Russ Dill <Russ.Dill@asu.edu> September 2001
5  * Rewritten by Vladimir Oleynik <dzo@simtreas.ru> (C) 2003
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  */
9
10 #ifndef _COMMON_H
11 #define _COMMON_H
12
13 #include "libbb.h"
14
15 #define DEFAULT_SCRIPT  "/usr/share/udhcpc/default.script"
16
17 extern const uint8_t MAC_BCAST_ADDR[6]; /* six all-ones */
18
19 /*** packet.h ***/
20
21 #include <netinet/udp.h>
22 #include <netinet/ip.h>
23
24 struct dhcpMessage {
25         uint8_t op;
26         uint8_t htype;
27         uint8_t hlen;
28         uint8_t hops;
29         uint32_t xid;
30         uint16_t secs;
31         uint16_t flags;
32         uint32_t ciaddr;
33         uint32_t yiaddr;
34         uint32_t siaddr;
35         uint32_t giaddr;
36         uint8_t chaddr[16];
37         uint8_t sname[64];
38         uint8_t file[128];
39         uint32_t cookie;
40         uint8_t options[308]; /* 312 - cookie */
41 } ATTRIBUTE_PACKED;
42
43 struct udp_dhcp_packet {
44         struct iphdr ip;
45         struct udphdr udp;
46         struct dhcpMessage data;
47 } ATTRIBUTE_PACKED;
48
49 /* Let's see whether compiler understood us right */
50 struct BUG_bad_sizeof_struct_udp_dhcp_packet {
51         char BUG_bad_sizeof_struct_udp_dhcp_packet
52                 [sizeof(struct udp_dhcp_packet) != 576 ? -1 : 1];
53 };
54
55 void udhcp_init_header(struct dhcpMessage *packet, char type);
56 int udhcp_get_packet(struct dhcpMessage *packet, int fd);
57 uint16_t udhcp_checksum(void *addr, int count);
58 int udhcp_raw_packet(struct dhcpMessage *payload,
59                 uint32_t source_ip, int source_port,
60                 uint32_t dest_ip, int dest_port,
61                 const uint8_t *dest_arp, int ifindex);
62 int udhcp_kernel_packet(struct dhcpMessage *payload,
63                 uint32_t source_ip, int source_port,
64                 uint32_t dest_ip, int dest_port);
65
66
67 /**/
68
69 void udhcp_run_script(struct dhcpMessage *packet, const char *name);
70
71 // Still need to clean these up...
72
73 /* from options.h */
74 #define get_option              udhcp_get_option
75 #define end_option              udhcp_end_option
76 #define add_option_string       udhcp_add_option_string
77 #define add_simple_option       udhcp_add_simple_option
78 #define option_lengths          udhcp_option_lengths
79 /* from socket.h */
80 #define listen_socket           udhcp_listen_socket
81 #define read_interface          udhcp_read_interface
82
83 void udhcp_sp_setup(void);
84 int udhcp_sp_fd_set(fd_set *rfds, int extra_fd);
85 int udhcp_sp_read(const fd_set *rfds);
86 int raw_socket(int ifindex);
87 int read_interface(const char *interface, int *ifindex, uint32_t *addr, uint8_t *arp);
88 int listen_socket(/*uint32_t ip,*/ int port, const char *inf);
89 /* Returns 1 if no reply received */
90 int arpping(uint32_t test_ip, uint32_t from_ip, uint8_t *from_mac, const char *interface);
91
92 #if ENABLE_FEATURE_UDHCP_DEBUG
93 # define DEBUG(str, args...) bb_info_msg(str, ## args)
94 #else
95 # define DEBUG(str, args...) do {;} while (0)
96 #endif
97
98 #endif