1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
|
/* -----------------------------------------------------------------------
*
* Copyright 1999-2008 H. Peter Anvin - All Rights Reserved
* Copyright 2009-2011 Intel Corporation; author: H. Peter Anvin
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, Inc., 53 Temple Place Ste 330,
* Boston MA 02111-1307, USA; either version 2 of the License, or
* (at your option) any later version; incorporated herein by reference.
*
* ----------------------------------------------------------------------- */
/*
* pxe.h
*
* PXE opcodes
*
*/
#ifndef PXE_H
#define PXE_H
#include <syslinux/pxe_api.h>
#include "fs.h" /* Mostly for FILENAME_MAX */
/*
* Some basic defines...
*/
#define PKTBUF_SIZE 2048 /* Used mostly by the gPXE backend */
#define is_digit(c) (((c) >= '0') && ((c) <= '9'))
#define BOOTP_OPTION_MAGIC htonl(0x63825363)
#define MAC_MAX 32
/*
* structures
*/
struct pxenv_t {
uint8_t signature[6]; /* PXENV+ */
uint16_t version;
uint8_t length;
uint8_t checksum;
segoff16_t rmentry;
uint32_t pmoffset;
uint16_t pmselector;
uint16_t stackseg;
uint16_t stacksize;
uint16_t bc_codeseg;
uint16_t bc_codesize;
uint16_t bc_dataseg;
uint16_t bc_datasize;
uint16_t undidataseg;
uint16_t undidatasize;
uint16_t undicodeseg;
uint16_t undicodesize;
segoff16_t pxeptr;
} __packed;
struct pxe_t {
uint8_t signature[4]; /* !PXE */
uint8_t structlength;
uint8_t structcksum;
uint8_t structrev;
uint8_t _pad1;
segoff16_t undiromid;
segoff16_t baseromid;
segoff16_t entrypointsp;
segoff16_t entrypointesp;
segoff16_t statuscallout;
uint8_t _pad2;
uint8_t segdesccnt;
uint16_t firstselector;
pxe_segdesc_t seg[7];
} __packed;
enum pxe_segments {
PXE_Seg_Stack = 0,
PXE_Seg_UNDIData = 1,
PXE_Seg_UNDICode = 2,
PXE_Seg_UNDICodeWrite = 3,
PXE_Seg_BC_Data = 4,
PXE_Seg_BC_Code = 5,
PXE_Seg_BC_CodeWrite = 6
};
struct bootp_t {
uint8_t opcode; /* BOOTP/DHCP "opcode" */
uint8_t hardware; /* ARP hreadware type */
uint8_t hardlen; /* Hardware address length */
uint8_t gatehops; /* Used by forwarders */
uint32_t ident; /* Transaction ID */
uint16_t seconds; /* Seconds elapsed */
uint16_t flags; /* Broadcast flags */
uint32_t cip; /* Cient IP */
uint32_t yip; /* "Your" IP */
uint32_t sip; /* Next Server IP */
uint32_t gip; /* Relay agent IP */
uint8_t macaddr[16]; /* Client MAC address */
uint8_t sname[64]; /* Server name (optional) */
char bootfile[128]; /* Boot file name */
uint32_t option_magic; /* Vendor option magic cookie */
uint8_t options[1260]; /* Vendor options */
} __attribute__ ((packed));
struct netconn;
struct netbuf;
/*
* Our inode private information -- this includes the packet buffer!
*/
struct pxe_pvt_inode {
struct netconn *conn; /* lwip network connection */
struct netbuf *buf; /* lwip cached buffer */
uint16_t tftp_remoteport; /* Remote port number */
uint32_t tftp_filepos; /* bytes downloaded (including buffer) */
uint32_t tftp_blksize; /* Block size for this connection(*) */
uint16_t tftp_bytesleft; /* Unclaimed data bytes */
uint16_t tftp_lastpkt; /* Sequence number of last packet (NBO) */
char *tftp_dataptr; /* Pointer to available data */
uint8_t tftp_goteof; /* 1 if the EOF packet received */
uint8_t tftp_unused[3]; /* Currently unused */
char *tftp_pktbuf; /* Packet buffer */
struct inode *ctl; /* Control connection (for FTP) */
void (*fill_buffer)(struct inode *inode);
void (*close)(struct inode *inode);
};
#define PVT(i) ((struct pxe_pvt_inode *)((i)->pvt))
/*
* Network boot information
*/
struct ip_info {
uint32_t ipv4;
uint32_t myip;
uint32_t serverip;
uint32_t gateway;
uint32_t netmask;
};
/*
* Variable externs
*/
extern struct ip_info IPInfo;
extern uint8_t MAC[];
extern char BOOTIFStr[];
extern uint8_t MAC_len;
extern uint8_t MAC_type;
extern uint8_t DHCPMagic;
extern uint32_t RebootTime;
extern char boot_file[];
extern char path_prefix[];
extern char LocalDomain[];
extern char IPOption[];
extern char dot_quad_buf[];
extern uint32_t dns_server[];
extern uint16_t APIVer;
extern far_ptr_t PXEEntry;
extern uint8_t KeepPXE;
extern far_ptr_t InitStack;
extern bool have_uuid;
extern uint8_t uuid_type;
extern uint8_t uuid[];
extern uint16_t BIOS_fbm;
extern const uint8_t TimeoutTable[];
/*
* Compute the suitable gateway for a specific route -- too many
* vendor PXE stacks don't do this correctly...
*/
static inline uint32_t gateway(uint32_t ip)
{
if ((ip ^ IPInfo.myip) & IPInfo.netmask)
return IPInfo.gateway;
else
return 0;
}
/*
* functions
*/
/* pxeisr.inc */
extern uint8_t pxe_irq_vector;
extern void pxe_isr(void);
extern far_ptr_t pxe_irq_chain;
/* isr.c */
void pxe_init_isr(void);
void pxe_cleanup_isr(void);
bool install_irq_vector(uint8_t irq, void (*isr)(void), far_ptr_t *old);
/* pxe.c */
struct url_info;
bool ip_ok(uint32_t);
int pxe_call(int, void *);
extern __lowmem char packet_buf[PKTBUF_SIZE] __aligned(16);
int pxe_getc(struct inode *inode);
void free_socket(struct inode *inode);
/* undiif.c */
int undiif_start(uint32_t ip, uint32_t netmask, uint32_t gw);
void undiif_input(t_PXENV_UNDI_ISR *isr);
/* dhcp_options.c */
void parse_dhcp(int);
/* dnsresolv.c */
uint32_t dns_resolv(const char *);
/* idle.c */
void pxe_idle_init(void);
void pxe_idle_cleanup(void);
/* tftp.c */
void tftp_open(struct url_info *url, struct inode *inode, const char **redir);
/* gpxeurl.c */
void gpxe_open(struct inode *inode, const char *url);
#define GPXE 0
/* http.c */
void http_open(struct url_info *url, struct inode *inode, const char **redir);
/* ftp.c */
void ftp_open(struct url_info *url, struct inode *inode, const char **redir);
/* tcp.c */
void tcp_close_file(struct inode *inode);
void tcp_fill_buffer(struct inode *inode);
#endif /* pxe.h */
|