2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-05-08 08:50:50 +05:30
|
|
|
/* common.h
|
|
|
|
*
|
|
|
|
* Russ Dill <Russ.Dill@asu.edu> September 2001
|
|
|
|
* Rewritten by Vladimir Oleynik <dzo@simtreas.ru> (C) 2003
|
|
|
|
*
|
2006-05-28 06:36:36 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2006-05-08 08:50:50 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _COMMON_H
|
|
|
|
#define _COMMON_H
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2008-05-09 23:29:34 +05:30
|
|
|
#include <netinet/udp.h>
|
|
|
|
#include <netinet/ip.h>
|
|
|
|
|
|
|
|
#if __GNUC_PREREQ(4,1)
|
|
|
|
# pragma GCC visibility push(hidden)
|
|
|
|
#endif
|
2006-11-19 01:21:32 +05:30
|
|
|
|
2008-02-21 03:59:52 +05:30
|
|
|
#define DEFAULT_SCRIPT CONFIG_DHCPC_DEFAULT_SCRIPT
|
2006-11-19 01:21:32 +05:30
|
|
|
|
2007-04-07 06:35:47 +05:30
|
|
|
extern const uint8_t MAC_BCAST_ADDR[6]; /* six all-ones */
|
2006-11-19 01:21:32 +05:30
|
|
|
|
|
|
|
/*** packet.h ***/
|
|
|
|
|
2008-01-26 04:16:34 +05:30
|
|
|
#define DHCP_OPTIONS_BUFSIZE 308
|
2007-11-25 08:45:24 +05:30
|
|
|
|
2006-11-19 01:21:32 +05:30
|
|
|
struct dhcpMessage {
|
|
|
|
uint8_t op;
|
|
|
|
uint8_t htype;
|
|
|
|
uint8_t hlen;
|
|
|
|
uint8_t hops;
|
|
|
|
uint32_t xid;
|
|
|
|
uint16_t secs;
|
|
|
|
uint16_t flags;
|
|
|
|
uint32_t ciaddr;
|
|
|
|
uint32_t yiaddr;
|
|
|
|
uint32_t siaddr;
|
|
|
|
uint32_t giaddr;
|
|
|
|
uint8_t chaddr[16];
|
|
|
|
uint8_t sname[64];
|
|
|
|
uint8_t file[128];
|
|
|
|
uint32_t cookie;
|
2007-11-25 08:45:24 +05:30
|
|
|
uint8_t options[DHCP_OPTIONS_BUFSIZE + CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS];
|
2007-11-23 05:38:54 +05:30
|
|
|
} ATTRIBUTE_PACKED;
|
2006-11-19 01:21:32 +05:30
|
|
|
|
|
|
|
struct udp_dhcp_packet {
|
|
|
|
struct iphdr ip;
|
|
|
|
struct udphdr udp;
|
|
|
|
struct dhcpMessage data;
|
2007-11-23 05:38:54 +05:30
|
|
|
} ATTRIBUTE_PACKED;
|
|
|
|
|
|
|
|
/* Let's see whether compiler understood us right */
|
|
|
|
struct BUG_bad_sizeof_struct_udp_dhcp_packet {
|
|
|
|
char BUG_bad_sizeof_struct_udp_dhcp_packet
|
2007-11-25 08:45:24 +05:30
|
|
|
[(sizeof(struct udp_dhcp_packet) != 576 + CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS) ? -1 : 1];
|
2006-11-19 01:21:32 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
uint16_t udhcp_checksum(void *addr, int count);
|
2007-12-21 02:41:38 +05:30
|
|
|
|
|
|
|
void udhcp_init_header(struct dhcpMessage *packet, char type);
|
|
|
|
|
2008-05-21 12:35:06 +05:30
|
|
|
/*int udhcp_recv_raw_packet(struct dhcpMessage *payload, int fd); - in dhcpc.h */
|
|
|
|
int udhcp_recv_kernel_packet(struct dhcpMessage *packet, int fd);
|
|
|
|
|
2007-12-21 02:41:38 +05:30
|
|
|
int udhcp_send_raw_packet(struct dhcpMessage *payload,
|
2006-11-19 01:21:32 +05:30
|
|
|
uint32_t source_ip, int source_port,
|
2007-04-07 06:35:47 +05:30
|
|
|
uint32_t dest_ip, int dest_port,
|
|
|
|
const uint8_t *dest_arp, int ifindex);
|
2007-12-21 02:41:38 +05:30
|
|
|
int udhcp_send_kernel_packet(struct dhcpMessage *payload,
|
2006-11-19 01:21:32 +05:30
|
|
|
uint32_t source_ip, int source_port,
|
|
|
|
uint32_t dest_ip, int dest_port);
|
|
|
|
|
|
|
|
|
|
|
|
/**/
|
|
|
|
|
|
|
|
void udhcp_run_script(struct dhcpMessage *packet, const char *name);
|
|
|
|
|
|
|
|
// Still need to clean these up...
|
|
|
|
|
|
|
|
/* from options.h */
|
|
|
|
#define get_option udhcp_get_option
|
|
|
|
#define end_option udhcp_end_option
|
|
|
|
#define add_option_string udhcp_add_option_string
|
|
|
|
#define add_simple_option udhcp_add_simple_option
|
|
|
|
/* from socket.h */
|
|
|
|
#define listen_socket udhcp_listen_socket
|
|
|
|
#define read_interface udhcp_read_interface
|
2006-05-08 08:50:50 +05:30
|
|
|
|
2006-11-19 01:21:32 +05:30
|
|
|
void udhcp_sp_setup(void);
|
|
|
|
int udhcp_sp_fd_set(fd_set *rfds, int extra_fd);
|
2007-11-22 06:28:49 +05:30
|
|
|
int udhcp_sp_read(const fd_set *rfds);
|
2006-11-19 01:21:32 +05:30
|
|
|
int raw_socket(int ifindex);
|
2007-01-30 04:21:25 +05:30
|
|
|
int read_interface(const char *interface, int *ifindex, uint32_t *addr, uint8_t *arp);
|
2007-08-18 19:46:39 +05:30
|
|
|
int listen_socket(/*uint32_t ip,*/ int port, const char *inf);
|
2007-07-03 21:17:50 +05:30
|
|
|
/* Returns 1 if no reply received */
|
|
|
|
int arpping(uint32_t test_ip, uint32_t from_ip, uint8_t *from_mac, const char *interface);
|
2006-05-08 08:50:50 +05:30
|
|
|
|
2006-05-28 06:36:36 +05:30
|
|
|
#if ENABLE_FEATURE_UDHCP_DEBUG
|
2008-01-26 04:16:34 +05:30
|
|
|
# define DEBUG(str, args...) bb_info_msg("### " str, ## args)
|
2006-05-08 08:50:50 +05:30
|
|
|
#else
|
2006-11-19 01:21:32 +05:30
|
|
|
# define DEBUG(str, args...) do {;} while (0)
|
2006-05-08 08:50:50 +05:30
|
|
|
#endif
|
|
|
|
|
2008-05-09 23:29:34 +05:30
|
|
|
#if __GNUC_PREREQ(4,1)
|
|
|
|
# pragma GCC visibility pop
|
|
|
|
#endif
|
|
|
|
|
2006-05-08 08:50:50 +05:30
|
|
|
#endif
|