blob: 1cf9a02b24bc1a2fc2d14b999d27beeb81d9f1ce [file] [log] [blame]
wdenkefee1702002-07-20 20:14:13 +00001/*
2 * Copied from LiMon - BOOTP.
3 *
4 * Copyright 1994, 1995, 2000 Neil Russell.
5 * (See License)
6 * Copyright 2000 Paolo Scaffardi
7 */
8
9#ifndef __BOOTP_H__
10#define __BOOTP_H__
11
12#ifndef __NET_H__
Joe Hershberger3090b7e32012-05-15 08:59:06 +000013#include <net.h>
wdenkefee1702002-07-20 20:14:13 +000014#endif /* __NET_H__ */
15
16/**********************************************************************/
17
18/*
19 * BOOTP header.
20 */
Jon Loeliger643d1ab2007-07-09 17:45:14 -050021#if defined(CONFIG_CMD_DHCP)
Joe Hershberger3090b7e32012-05-15 08:59:06 +000022/* Minimum DHCP Options size per RFC2131 - results in 576 byte pkt */
23#define OPT_SIZE 312
24#if defined(CONFIG_BOOTP_VENDOREX)
25extern u8 *dhcp_vendorex_prep(u8 *e); /*rtn new e after add own opts. */
26extern u8 *dhcp_vendorex_proc(u8 *e); /*rtn next e if mine,else NULL */
27#endif
wdenkefee1702002-07-20 20:14:13 +000028#else
29#define OPT_SIZE 64
30#endif
31
Joe Hershberger3090b7e32012-05-15 08:59:06 +000032struct Bootp_t {
33 uchar bp_op; /* Operation */
wdenkefee1702002-07-20 20:14:13 +000034# define OP_BOOTREQUEST 1
35# define OP_BOOTREPLY 2
Joe Hershberger3090b7e32012-05-15 08:59:06 +000036 uchar bp_htype; /* Hardware type */
wdenkefee1702002-07-20 20:14:13 +000037# define HWT_ETHER 1
Joe Hershberger3090b7e32012-05-15 08:59:06 +000038 uchar bp_hlen; /* Hardware address length */
wdenkefee1702002-07-20 20:14:13 +000039# define HWL_ETHER 6
Joe Hershberger3090b7e32012-05-15 08:59:06 +000040 uchar bp_hops; /* Hop count (gateway thing) */
41 ulong bp_id; /* Transaction ID */
42 ushort bp_secs; /* Seconds since boot */
43 ushort bp_spare1; /* Alignment */
44 IPaddr_t bp_ciaddr; /* Client IP address */
45 IPaddr_t bp_yiaddr; /* Your (client) IP address */
46 IPaddr_t bp_siaddr; /* Server IP address */
47 IPaddr_t bp_giaddr; /* Gateway IP address */
48 uchar bp_chaddr[16]; /* Client hardware address */
49 char bp_sname[64]; /* Server host name */
50 char bp_file[128]; /* Boot file name */
51 char bp_vend[OPT_SIZE]; /* Vendor information */
52};
wdenkefee1702002-07-20 20:14:13 +000053
Joe Hershberger3090b7e32012-05-15 08:59:06 +000054#define BOOTP_HDR_SIZE sizeof(struct Bootp_t)
Joe Hershberger594c26f2012-05-23 07:58:04 +000055#define BOOTP_SIZE (ETHER_HDR_SIZE + IP_UDP_HDR_SIZE + BOOTP_HDR_SIZE)
wdenkefee1702002-07-20 20:14:13 +000056
57/**********************************************************************/
58/*
59 * Global functions and variables.
60 */
61
62/* bootp.c */
Joe Hershberger3090b7e32012-05-15 08:59:06 +000063extern ulong BootpID; /* ID of cur BOOTP request */
64extern char BootFile[128]; /* Boot file name */
wdenkefee1702002-07-20 20:14:13 +000065extern int BootpTry;
wdenkefee1702002-07-20 20:14:13 +000066
67
68/* Send a BOOTP request */
Joe Hershberger3090b7e32012-05-15 08:59:06 +000069extern void BootpRequest(void);
wdenkefee1702002-07-20 20:14:13 +000070
71/****************** DHCP Support *********************/
72extern void DhcpRequest(void);
73
74/* DHCP States */
75typedef enum { INIT,
76 INIT_REBOOT,
77 REBOOTING,
78 SELECTING,
79 REQUESTING,
80 REBINDING,
81 BOUND,
82 RENEWING } dhcp_state_t;
83
84#define DHCP_DISCOVER 1
85#define DHCP_OFFER 2
86#define DHCP_REQUEST 3
87#define DHCP_DECLINE 4
88#define DHCP_ACK 5
89#define DHCP_NAK 6
90#define DHCP_RELEASE 7
91
Bartlomiej Sieka49f3bdb2008-10-01 15:26:28 +020092#define SELECT_TIMEOUT 3000UL /* Milliseconds to wait for offers */
wdenkefee1702002-07-20 20:14:13 +000093
94/**********************************************************************/
95
96#endif /* __BOOTP_H__ */