2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-05-08 08:50:50 +05:30
|
|
|
/* options.h */
|
2009-04-09 18:05:13 +05:30
|
|
|
#ifndef UDHCP_OPTIONS_H
|
|
|
|
#define UDHCP_OPTIONS_H 1
|
2006-05-08 08:50:50 +05:30
|
|
|
|
2009-04-09 18:05:13 +05:30
|
|
|
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
|
2008-05-09 23:29:34 +05:30
|
|
|
|
2006-05-08 08:50:50 +05:30
|
|
|
|
|
|
|
enum {
|
2007-11-23 05:38:54 +05:30
|
|
|
OPTION_IP = 1,
|
2006-05-08 08:50:50 +05:30
|
|
|
OPTION_IP_PAIR,
|
|
|
|
OPTION_STRING,
|
2008-11-06 06:19:59 +05:30
|
|
|
#if ENABLE_FEATURE_UDHCP_RFC3397
|
2007-02-28 02:45:08 +05:30
|
|
|
OPTION_STR1035, /* RFC1035 compressed domain name list */
|
|
|
|
#endif
|
2006-05-08 08:50:50 +05:30
|
|
|
OPTION_BOOLEAN,
|
|
|
|
OPTION_U8,
|
|
|
|
OPTION_U16,
|
|
|
|
OPTION_S16,
|
|
|
|
OPTION_U32,
|
2009-07-03 20:29:59 +05:30
|
|
|
OPTION_S32,
|
2009-07-03 21:44:03 +05:30
|
|
|
OPTION_STATIC_ROUTES,
|
2006-05-08 08:50:50 +05:30
|
|
|
|
2010-03-21 10:45:28 +05:30
|
|
|
OPTION_TYPE_MASK = 0x0f,
|
|
|
|
/* Client requests this option by default */
|
|
|
|
OPTION_REQ = 0x10,
|
|
|
|
/* There can be a list of 1 or more of these */
|
|
|
|
OPTION_LIST = 0x20,
|
|
|
|
};
|
2007-04-07 06:35:47 +05:30
|
|
|
|
2010-03-21 06:52:07 +05:30
|
|
|
/* DHCP option codes (partial list). See RFC 2132 and
|
|
|
|
* http://www.iana.org/assignments/bootp-dhcp-parameters/
|
2010-03-21 05:13:11 +05:30
|
|
|
* Commented out options are handled by common option machinery,
|
|
|
|
* uncommented ones have spacial cases (grep for them to see).
|
|
|
|
*/
|
2009-04-01 18:06:09 +05:30
|
|
|
#define DHCP_PADDING 0x00
|
|
|
|
#define DHCP_SUBNET 0x01
|
2010-03-21 05:13:11 +05:30
|
|
|
//#define DHCP_TIME_OFFSET 0x02 /* (localtime - UTC_time) in seconds. signed */
|
|
|
|
//#define DHCP_ROUTER 0x03
|
|
|
|
//#define DHCP_TIME_SERVER 0x04 /* RFC 868 time server (32-bit, 0 = 1.1.1900) */
|
|
|
|
//#define DHCP_NAME_SERVER 0x05 /* IEN 116 _really_ ancient kind of NS */
|
|
|
|
//#define DHCP_DNS_SERVER 0x06
|
|
|
|
//#define DHCP_LOG_SERVER 0x07 /* port 704 UDP log (not syslog)
|
2010-03-20 11:42:21 +05:30
|
|
|
//#define DHCP_COOKIE_SERVER 0x08 /* "quote of the day" server */
|
2010-03-21 05:13:11 +05:30
|
|
|
//#define DHCP_LPR_SERVER 0x09
|
2010-03-20 22:36:23 +05:30
|
|
|
#define DHCP_HOST_NAME 0x0c /* either client informs server or server gives name to client */
|
2010-03-21 05:13:11 +05:30
|
|
|
//#define DHCP_BOOT_SIZE 0x0d
|
|
|
|
//#define DHCP_DOMAIN_NAME 0x0f /* server gives domain suffix */
|
|
|
|
//#define DHCP_SWAP_SERVER 0x10
|
|
|
|
//#define DHCP_ROOT_PATH 0x11
|
|
|
|
//#define DHCP_IP_TTL 0x17
|
|
|
|
//#define DHCP_MTU 0x1a
|
|
|
|
//#define DHCP_BROADCAST 0x1c
|
|
|
|
//#define DHCP_NIS_DOMAIN 0x28
|
|
|
|
//#define DHCP_NIS_SERVER 0x29
|
|
|
|
//#define DHCP_NTP_SERVER 0x2a
|
|
|
|
//#define DHCP_WINS_SERVER 0x2c
|
2010-03-20 11:42:21 +05:30
|
|
|
#define DHCP_REQUESTED_IP 0x32 /* sent by client if specific IP is wanted */
|
2009-04-01 18:06:09 +05:30
|
|
|
#define DHCP_LEASE_TIME 0x33
|
|
|
|
#define DHCP_OPTION_OVERLOAD 0x34
|
|
|
|
#define DHCP_MESSAGE_TYPE 0x35
|
2010-03-20 11:42:21 +05:30
|
|
|
#define DHCP_SERVER_ID 0x36 /* by default server's IP */
|
2010-03-20 22:36:23 +05:30
|
|
|
#define DHCP_PARAM_REQ 0x37 /* list of options client wants */
|
2010-03-21 05:13:11 +05:30
|
|
|
//#define DHCP_ERR_MESSAGE 0x38 /* error message when sending NAK etc */
|
2009-04-01 18:06:09 +05:30
|
|
|
#define DHCP_MAX_SIZE 0x39
|
2010-03-20 22:36:23 +05:30
|
|
|
#define DHCP_VENDOR 0x3c /* client's vendor (a string) */
|
|
|
|
#define DHCP_CLIENT_ID 0x3d /* by default client's MAC addr, but may be arbitrarily long */
|
2010-03-21 05:13:11 +05:30
|
|
|
//#define DHCP_TFTP_SERVER_NAME 0x42 /* same as 'sname' field */
|
|
|
|
//#define DHCP_BOOT_FILE 0x43 /* same as 'file' field */
|
|
|
|
//#define DHCP_USER_CLASS 0x4d /* RFC 3004. set of LASCII strings. "I am a printer" etc */
|
2010-03-20 22:36:23 +05:30
|
|
|
#define DHCP_FQDN 0x51 /* client asks to update DNS to map its FQDN to its new IP */
|
2010-03-21 05:13:11 +05:30
|
|
|
//#define DHCP_DOMAIN_SEARCH 0x77 /* RFC 3397. set of ASCIZ string, DNS-style compressed */
|
|
|
|
//#define DHCP_STATIC_ROUTES 0x79 /* RFC 3442. (mask,ip,router) tuples */
|
|
|
|
//#define DHCP_WPAD 0xfc /* MSIE's Web Proxy Autodiscovery Protocol */
|
|
|
|
#define DHCP_END 0xff
|
|
|
|
|
2009-04-01 18:06:09 +05:30
|
|
|
/* Offsets in option byte sequence */
|
|
|
|
#define OPT_CODE 0
|
|
|
|
#define OPT_LEN 1
|
|
|
|
#define OPT_DATA 2
|
|
|
|
/* Bits in "overload" option */
|
|
|
|
#define OPTION_FIELD 0
|
|
|
|
#define FILE_FIELD 1
|
|
|
|
#define SNAME_FIELD 2
|
|
|
|
|
2010-03-21 10:45:28 +05:30
|
|
|
/* DHCP_MESSAGE_TYPE values */
|
2009-04-01 18:06:09 +05:30
|
|
|
#define DHCPDISCOVER 1 /* client -> server */
|
|
|
|
#define DHCPOFFER 2 /* client <- server */
|
|
|
|
#define DHCPREQUEST 3 /* client -> server */
|
|
|
|
#define DHCPDECLINE 4 /* client -> server */
|
|
|
|
#define DHCPACK 5 /* client <- server */
|
|
|
|
#define DHCPNAK 6 /* client <- server */
|
|
|
|
#define DHCPRELEASE 7 /* client -> server */
|
|
|
|
#define DHCPINFORM 8 /* client -> server */
|
2010-03-21 10:45:28 +05:30
|
|
|
#define DHCP_MINTYPE DHCPDISCOVER
|
|
|
|
#define DHCP_MAXTYPE DHCPINFORM
|
|
|
|
|
2007-04-07 06:35:47 +05:30
|
|
|
|
2006-05-08 08:50:50 +05:30
|
|
|
struct dhcp_option {
|
2007-11-29 13:47:45 +05:30
|
|
|
uint8_t flags;
|
2006-05-08 08:50:50 +05:30
|
|
|
uint8_t code;
|
|
|
|
};
|
|
|
|
|
2006-11-23 18:27:49 +05:30
|
|
|
extern const struct dhcp_option dhcp_options[];
|
2007-11-29 13:47:45 +05:30
|
|
|
extern const char dhcp_option_strings[];
|
|
|
|
extern const uint8_t dhcp_option_lengths[];
|
2006-05-08 08:50:50 +05:30
|
|
|
|
2009-06-17 15:27:09 +05:30
|
|
|
uint8_t *get_option(struct dhcp_packet *packet, int code) FAST_FUNC;
|
2008-09-26 15:04:59 +05:30
|
|
|
int end_option(uint8_t *optionptr) FAST_FUNC;
|
2010-03-21 05:13:11 +05:30
|
|
|
void add_option_string(uint8_t *optionptr, uint8_t *string) FAST_FUNC;
|
|
|
|
void add_simple_option(uint8_t *optionptr, uint8_t code, uint32_t data) FAST_FUNC;
|
2008-11-06 06:19:59 +05:30
|
|
|
#if ENABLE_FEATURE_UDHCP_RFC3397
|
2008-09-26 15:04:59 +05:30
|
|
|
char *dname_dec(const uint8_t *cstr, int clen, const char *pre) FAST_FUNC;
|
|
|
|
uint8_t *dname_enc(const uint8_t *cstr, int clen, const char *src, int *retlen) FAST_FUNC;
|
2007-02-28 02:45:08 +05:30
|
|
|
#endif
|
2006-05-08 08:50:50 +05:30
|
|
|
|
2009-04-09 18:05:13 +05:30
|
|
|
POP_SAVED_FUNCTION_VISIBILITY
|
2008-05-09 23:29:34 +05:30
|
|
|
|
2006-05-08 08:50:50 +05:30
|
|
|
#endif
|