Move udhcp to new NOMMU helpers.
[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 "busybox.h"
14
15 #define DEFAULT_SCRIPT  "/usr/share/udhcpc/default.script"
16
17 #define COMBINED_BINARY
18
19
20 /*** packet.h ***/
21
22 #include <netinet/udp.h>
23 #include <netinet/ip.h>
24
25 struct dhcpMessage {
26         uint8_t op;
27         uint8_t htype;
28         uint8_t hlen;
29         uint8_t hops;
30         uint32_t xid;
31         uint16_t secs;
32         uint16_t flags;
33         uint32_t ciaddr;
34         uint32_t yiaddr;
35         uint32_t siaddr;
36         uint32_t giaddr;
37         uint8_t chaddr[16];
38         uint8_t sname[64];
39         uint8_t file[128];
40         uint32_t cookie;
41         uint8_t options[308]; /* 312 - cookie */
42 };
43
44 struct udp_dhcp_packet {
45         struct iphdr ip;
46         struct udphdr udp;
47         struct dhcpMessage data;
48 };
49
50 void udhcp_init_header(struct dhcpMessage *packet, char type);
51 int udhcp_get_packet(struct dhcpMessage *packet, int fd);
52 uint16_t udhcp_checksum(void *addr, int count);
53 int udhcp_raw_packet(struct dhcpMessage *payload,
54                 uint32_t source_ip, int source_port,
55                 uint32_t dest_ip, int dest_port, uint8_t *dest_arp, int ifindex);
56 int udhcp_kernel_packet(struct dhcpMessage *payload,
57                 uint32_t source_ip, int source_port,
58                 uint32_t dest_ip, int dest_port);
59
60
61 /**/
62
63 void udhcp_make_pidfile(const char *pidfile);
64
65 void udhcp_run_script(struct dhcpMessage *packet, const char *name);
66
67 // Still need to clean these up...
68
69 /* from options.h */
70 #define get_option              udhcp_get_option
71 #define end_option              udhcp_end_option
72 #define add_option_string       udhcp_add_option_string
73 #define add_simple_option       udhcp_add_simple_option
74 #define option_lengths          udhcp_option_lengths
75 /* from socket.h */
76 #define listen_socket           udhcp_listen_socket
77 #define read_interface          udhcp_read_interface
78 /* from dhcpc.h */
79 #define client_config           udhcp_client_config
80 /* from dhcpd.h */
81 #define server_config           udhcp_server_config
82
83 long uptime(void);
84 void udhcp_sp_setup(void);
85 int udhcp_sp_fd_set(fd_set *rfds, int extra_fd);
86 int udhcp_sp_read(fd_set *rfds);
87 int raw_socket(int ifindex);
88 int read_interface(const char *interface, int *ifindex, uint32_t *addr, uint8_t *arp);
89 int listen_socket(uint32_t ip, int port, const char *inf);
90 int arpping(uint32_t yiaddr, uint32_t ip, uint8_t *arp, 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