1 ; -*- fundamental -*- (asm-mode sucks)
2 ; ****************************************************************************
6 ; A program to boot Linux kernels off a TFTP server using the Intel PXE
7 ; network booting API. It is based on the SYSLINUX boot loader for
10 ; Copyright 1994-2008 H. Peter Anvin - All Rights Reserved
12 ; This program is free software; you can redistribute it and/or modify
13 ; it under the terms of the GNU General Public License as published by
14 ; the Free Software Foundation, Inc., 53 Temple Place Ste 330,
15 ; Boston MA 02111-1307, USA; either version 2 of the License, or
16 ; (at your option) any later version; incorporated herein by reference.
18 ; ****************************************************************************
25 ; Some semi-configurable constants... change on your own risk.
28 FILENAME_MAX_LG2
equ 7 ; log2(Max filename size Including final null)
29 FILENAME_MAX
equ (1 << FILENAME_MAX_LG2
)
30 NULLFILE
equ 0 ; Zero byte == null file name
31 NULLOFFSET
equ 4 ; Position in which to look
32 REBOOT_TIME
equ 5*60 ; If failure, time until full reset
33 %assign HIGHMEM_SLOP
128*1024 ; Avoid this much memory near the top
34 MAX_OPEN_LG2
equ 5 ; log2(Max number of open sockets)
35 MAX_OPEN
equ (1 << MAX_OPEN_LG2
)
36 PKTBUF_SIZE
equ (65536/MAX_OPEN
) ; Per-socket packet buffer size
37 TFTP_PORT
equ htons
(69) ; Default TFTP port
38 PKT_RETRY
equ 6 ; Packet transmit retry count
39 PKT_TIMEOUT
equ 12 ; Initial timeout, timer ticks @ 55 ms
40 ; Desired TFTP block size
41 ; For Ethernet MTU is normally 1500. Unfortunately there seems to
42 ; be a fair number of networks with "substandard" MTUs which break.
43 ; The code assumes TFTP_LARGEBLK <= 2K.
45 TFTP_LARGEBLK
equ (TFTP_MTU
-20-8-4) ; MTU - IP hdr - UDP hdr - TFTP hdr
46 ; Standard TFTP block size
47 TFTP_BLOCKSIZE_LG2
equ 9 ; log2(bytes/block)
48 TFTP_BLOCKSIZE
equ (1 << TFTP_BLOCKSIZE_LG2
)
49 %assign USE_PXE_PROVIDED_STACK
1 ; Use stack provided by PXE?
51 SECTOR_SHIFT
equ TFTP_BLOCKSIZE_LG2
52 SECTOR_SIZE
equ TFTP_BLOCKSIZE
55 ; This is what we need to do when idle
56 ; *** This is disabled because some PXE stacks wait for unacceptably
57 ; *** long if there are no packets receivable.
59 %define HAVE_IDLE
0 ; idle is not a noop
78 ; TFTP operation codes
80 TFTP_RRQ
equ htons
(1) ; Read request
81 TFTP_WRQ
equ htons
(2) ; Write request
82 TFTP_DATA
equ htons
(3) ; Data packet
83 TFTP_ACK
equ htons
(4) ; ACK packet
84 TFTP_ERROR
equ htons
(5) ; ERROR packet
85 TFTP_OACK
equ htons
(6) ; OACK packet
90 TFTP_EUNDEF
equ htons
(0) ; Unspecified error
91 TFTP_ENOTFOUND
equ htons
(1) ; File not found
92 TFTP_EACCESS
equ htons
(2) ; Access violation
93 TFTP_ENOSPACE
equ htons
(3) ; Disk full
94 TFTP_EBADOP
equ htons
(4) ; Invalid TFTP operation
95 TFTP_EBADID
equ htons
(5) ; Unknown transfer
96 TFTP_EEXISTS
equ htons
(6) ; File exists
97 TFTP_ENOUSER
equ htons
(7) ; No such user
98 TFTP_EOPTNEG
equ htons
(8) ; Option negotiation failure
101 ; The following structure is used for "virtual kernels"; i.e. LILO-style
102 ; option labels. The options we permit here are `kernel' and `append
103 ; Since there is no room in the bottom 64K for all of these, we
104 ; stick them in high memory and copy them down before we need them.
107 vk_vname: resb FILENAME_MAX
; Virtual name **MUST BE FIRST!**
108 vk_rname: resb FILENAME_MAX
; Real name
109 vk_ipappend: resb
1 ; "IPAPPEND" flag
110 vk_type: resb
1 ; Type of file
113 vk_append: resb max_cmd_len
+1 ; Command line
115 vk_end: equ $
; Should be <= vk_size
119 ; Segment assignments in the bottom 640K
120 ; 0000h - main code/data segment (and BIOS segment)
122 real_mode_seg
equ 3000h
123 pktbuf_seg
equ 2000h ; Packet buffers segments
124 xfer_buf_seg
equ 1000h ; Bounce buffer for I/O to high mem
125 comboot_seg
equ real_mode_seg
; COMBOOT image loading zone
128 ; BOOTP/DHCP packet pattern
132 .opcode resb
1 ; BOOTP/DHCP "opcode"
133 .hardware resb
1 ; ARP hardware type
134 .hardlen resb
1 ; Hardware address length
135 .gatehops resb
1 ; Used by forwarders
136 .ident resd
1 ; Transaction ID
137 .seconds resw
1 ; Seconds elapsed
138 .flags resw
1 ; Broadcast flags
139 .cip resd
1 ; Client IP
140 .yip resd
1 ; "Your" IP
141 .sip resd
1 ; Next server IP
142 .gip resd
1 ; Relay agent IP
143 .macaddr resb
16 ; Client MAC address
144 .sname resb
64 ; Server name (optional)
145 .bootfile resb
128 ; Boot file name
146 .option_magic resd
1 ; Vendor option magic cookie
147 .options resb
1260 ; Vendor options
150 BOOTP_OPTION_MAGIC
equ htonl
(0x63825363) ; See RFC 2132
153 ; TFTP connection data structure. Each one of these corresponds to a local
154 ; UDP port. The size of this structure must be a power of 2.
155 ; HBO = host byte order; NBO = network byte order
156 ; (*) = written by options negotiation code, must be dword sized
159 tftp_localport resw
1 ; Local port number (0 = not in use)
160 tftp_remoteport resw
1 ; Remote port number
161 tftp_remoteip resd
1 ; Remote IP address
162 tftp_filepos resd
1 ; Bytes downloaded (including buffer)
163 tftp_filesize resd
1 ; Total file size(*)
164 tftp_blksize resd
1 ; Block size for this connection(*)
165 tftp_bytesleft resw
1 ; Unclaimed data bytes
166 tftp_lastpkt resw
1 ; Sequence number of last packet (NBO)
167 tftp_dataptr resw
1 ; Pointer to available data
168 resw
2 ; Currently unusued
169 ; At end since it should not be zeroed on socked close
170 tftp_pktbuf resw
1 ; Packet buffer offset
173 %if
(open_file_t_size
& (open_file_t_size
-1))
174 %error
"open_file_t is not a power of 2"
178 ; ---------------------------------------------------------------------------
180 ; ---------------------------------------------------------------------------
183 ; Memory below this point is reserved for the BIOS and the MBR
186 trackbufsize
equ 8192
187 trackbuf resb trackbufsize
; Track buffer goes here
190 alignb open_file_t_size
191 Files resb MAX_OPEN
*open_file_t_size
194 BootFile resb
256 ; Boot file from DHCP packet
195 PathPrefix resb
256 ; Path prefix derived from boot file
196 DotQuadBuf resb
16 ; Buffer for dotted-quad IP address
197 IPOption resb
80 ; ip= option buffer
198 InitStack resd
1 ; Pointer to reset stack (SS:SP)
199 PXEStack resd
1 ; Saved stack during PXE call
203 RebootTime resd
1 ; Reboot timeout, if set by option
204 StrucPtr resd
1 ; Pointer to PXENV+ or !PXE structure
205 APIVer resw
1 ; PXE API version found
206 IPOptionLen resw
1 ; Length of IPOption
207 IdleTimer resw
1 ; Time to check for ARP?
208 LocalBootType resw
1 ; Local boot return code
209 PktTimeout resw
1 ; Timeout for current packet
210 RealBaseMem resw
1 ; Amount of DOS memory after freeing
211 OverLoad resb
1 ; Set if DHCP packet uses "overloading"
212 DHCPMagic resb
1 ; PXELINUX magic flags
214 ; The relative position of these fields matter!
215 MAC_MAX
equ 32 ; Handle hardware addresses this long
216 MACLen resb
1 ; MAC address len
217 MACType resb
1 ; MAC address type
218 MAC resb MAC_MAX
+1 ; Actual MAC address
219 BOOTIFStr resb
7 ; Space for "BOOTIF="
220 MACStr resb
3*(MAC_MAX
+1) ; MAC address as a string
222 ; The relative position of these fields matter!
223 UUIDType resb
1 ; Type byte from DHCP option
224 UUID resb
16 ; UUID, from the PXE stack
225 UUIDNull resb
1 ; dhcp_copyoption zero-terminates
228 ; PXE packets which don't need static initialization
231 pxe_unload_stack_pkt:
232 .
status: resw
1 ; Status
233 .
reserved: resw
10 ; Reserved
234 pxe_unload_stack_pkt_len
equ $
-pxe_unload_stack_pkt
237 ; BOOTP/DHCP packet buffer
241 packet_buf resb
2048 ; Transfer packet
242 packet_buf_size
equ $
-packet_buf
246 ; PXELINUX needs more BSS than the other derivatives;
247 ; therefore we relocate it from 7C00h on startup.
249 StackBuf
equ $
; Base of stack if we use our own
252 ; Primary entry point.
256 pushfd ; Paranoia... in case of return to PXE
257 pushad ; ... save as much state as possible
268 %if TEXT_START
!= 0x7c00
269 ; This is uglier than it should be, but works around
270 ; some NASM 0.98.38 bugs.
271 mov di,section..bcopy32.start
272 add di,__bcopy_size
-4
273 lea si,[di-(TEXT_START
-7C00h
)]
274 lea cx,[di-(TEXT_START
-4)]
276 std ; Overlapping areas, copy backwards
280 jmp 0:_start1
; Canonicalize address
283 les bx,[bp+48] ; ES:BX -> !PXE or PXENV+ structure
285 ; That is all pushed onto the PXE stack. Save the pointer
286 ; to it and switch to an internal stack.
290 %if USE_PXE_PROVIDED_STACK
291 ; Apparently some platforms go bonkers if we
292 ; set up our own stack...
300 sti ; Stack set up and ready
304 ; Initialize screen (if we're using one)
306 push es ; Save ES -> PXE entry structure
310 pop es ; Restore ES -> PXE entry structure
312 ; Tell the user we got this far
314 mov si,syslinux_banner
321 ; Assume API version 2.1, in case we find the !PXE structure without
322 ; finding the PXENV+ structure. This should really look at the Base
323 ; Code ROM ID structure in have_pxe, but this is adequate for now --
324 ; if we have !PXE, we have to be 2.1 or higher, and we don't care
325 ; about higher versions than that.
327 mov word [APIVer
],0201h
330 ; Now we need to find the !PXE structure. It's *supposed* to be pointed
331 ; to by SS:[SP+4], but support INT 1Ah, AX=5650h method as well.
332 ; FIX: ES:BX should point to the PXENV+ structure on entry as well.
333 ; We should make that the second test, and not trash ES:BX...
335 cmp dword [es:bx], '!PXE'
338 ; Uh-oh, not there... try plan B
340 %if USE_PXE_PROVIDED_STACK
== 0
343 int 1Ah ; May trash regs
344 %if USE_PXE_PROVIDED_STACK
== 0
352 ; Okay, that gave us the PXENV+ structure, find !PXE
353 ; structure from that (if available)
354 cmp dword [es:bx], 'PXEN'
356 cmp word [es:bx+4], 'V+'
359 ; Nothing there either. Last-ditch: scan memory
360 call memory_scan_for_pxe_struct
; !PXE scan
362 call memory_scan_for_pxenv_struct
; PXENV+ scan
365 no_pxe: mov si,err_nopxe
383 cmp ax,0201h ; API version 2.1 or higher
387 les bx,[es:bx+28h] ; !PXE structure pointer
388 cmp dword [es:bx],'!PXE'
391 ; Nope, !PXE structure missing despite API 2.1+, or at least
392 ; the pointer is missing. Do a last-ditch attempt to find it.
393 call memory_scan_for_pxe_struct
396 ; Otherwise, no dice, use PXENV+ structure
400 old_api: ; Need to use a PXENV+ structure
401 mov si,using_pxenv_msg
404 mov eax,[es:bx+0Ah] ; PXE RM API
412 mov si,undi_data_len_msg
422 mov si,undi_code_len_msg
428 ; Compute base memory size from PXENV+ structure
430 movzx eax,word [es:bx+20h] ; UNDI data seg
431 cmp ax,[es:bx+24h] ; UNDI code seg
441 shr eax,10 ; Convert to kilobytes
444 mov si,pxenventry_msg
446 mov ax,[PXENVEntry
+2]
467 mov si,undi_data_len_msg
477 mov si,undi_code_len_msg
483 ; Compute base memory size from !PXE structure
510 pop es ; Restore CS == DS == ES
513 ; Network-specific initialization
516 mov [LocalDomain
],al ; No LocalDomain received
519 ; The DHCP client identifiers are best gotten from the DHCPREQUEST
520 ; packet (query info 1).
524 call pxe_get_cached_info
527 ; We don't use flags from the request packet, so
528 ; this is a good time to initialize DHCPMagic...
529 ; Initialize it to 1 meaning we will accept options found;
530 ; in earlier versions of PXELINUX bit 0 was used to indicate
531 ; we have found option 208 with the appropriate magic number;
532 ; we no longer require that, but MAY want to re-introduce
533 ; it in the future for vendor encapsulated options.
534 mov byte [DHCPMagic
],1
537 ; Now attempt to get the BOOTP/DHCP packet that brought us life (and an IP
538 ; address). This lives in the DHCPACK packet (query info 2).
542 call pxe_get_cached_info
543 call parse_dhcp
; Parse DHCP packet
545 ; Save away MAC address (assume this is in query info 2. If this
546 ; turns out to be problematic it might be better getting it from
547 ; the query info 1 packet.)
550 movzx cx,byte [trackbuf
+bootp.hardlen
]
553 xor cx,cx ; Bad hardware address length
556 mov al,[trackbuf
+bootp.hardware
]
558 mov si,trackbuf
+bootp.macaddr
562 ; Enable this if we really need to zero-pad this field...
563 ; mov cx,MAC+MAC_MAX+1
569 ; Now, get the boot file and other info. This lives in the CACHED_REPLY
570 ; packet (query info 3).
573 call pxe_get_cached_info
574 call parse_dhcp
; Parse DHCP packet
577 ; Generate the bootif string, and the hardware-based config string.
582 mov cx,bootif_str_len
585 movzx cx,byte [MACLen
]
590 mov cl,1 ; CH == 0 already
596 mov [di-1],cl ; Null-terminate and strip final dash
598 ; Generate ip= option
608 call gendotquad
; This takes network byte order input
610 xchg ah,al ; Convert to host byte order
611 ror eax,16 ; (BSWAP doesn't work on 386)
628 ; Check to see if we got any PXELINUX-specific DHCP options; in particular,
629 ; if we didn't get the magic enable, do not recognize any other options.
632 test byte [DHCPMagic
], 1 ; If we didn't get the magic enable...
634 mov byte [DHCPMagic
], 0 ; If not, kill all other options
639 ; Initialize UDP stack
643 mov [pxe_udp_open_pkt.sip
],eax
644 mov di,pxe_udp_open_pkt
645 mov bx,PXENV_UDP_OPEN
648 cmp word [pxe_udp_open_pkt.status
], byte 0
650 .
failed: mov si,err_udpinit
656 ; Common initialization code
658 %include "cpuinit.inc"
661 ; Now we're all set to start with our *real* business. First load the
662 ; configuration file (if any) and parse it.
664 ; In previous versions I avoided using 32-bit registers because of a
665 ; rumour some BIOSes clobbered the upper half of 32-bit registers at
666 ; random. I figure, though, that if there are any of those still left
667 ; they probably won't be trying to install Linux on them...
669 ; The code is still ripe with 16-bitisms, though. Not worth the hassle
670 ; to take'm out. In fact, we may want to put them back if we're going
671 ; to boot ELKS at some point.
675 ; Store standard filename prefix
677 prefix: test byte [DHCPMagic
], 04h ; Did we get a path prefix option
686 lea si,[di-2] ; Skip final null!
689 cmp al,'.' ; Count . or - as alphanum
701 .
alnum: loop .find_alnum
703 .
notalnum: mov byte [si+2],0 ; Zero-terminate after delimiter
706 mov si,tftpprefix_msg
713 ; Load configuration file
718 ; Begin looking for configuration file
721 test byte [DHCPMagic
], 02h
724 ; We got a DHCP option, try it first
734 ; Have to guess config file name...
736 ; Try loading by UUID.
737 cmp byte [HaveUUID
],0
752 mov [di-1],cl ; Remove last dash and zero-terminate
758 ; Try loading by MAC address
766 ; Nope, try hexadecimal IP prefixes...
770 call uchexbytes
; Convert to hex string
772 mov cx,8 ; Up to 8 attempts
774 mov byte [di],0 ; Zero-terminate string
777 dec di ; Drop one character
780 ; Final attempt: "default" string
781 mov si,default_str
; "default" string
799 mov di,KernelName
; Borrow this buffer for mangled name
809 ; Linux kernel loading code is common. However, we need to define
810 ; a couple of helper macros...
813 ; Handle "ipappend" option
814 %define HAVE_SPECIAL_APPEND
815 %macro SPECIAL_APPEND
0
816 test byte [IPAppend
],01h ; ip=
824 test byte [IPAppend
],02h
828 mov byte [es:di-1],' ' ; Replace null with space
833 %define HAVE_UNLOAD_PREP
839 ; Now we have the config file open. Parse the config file and
840 ; run the user interface.
845 ; Boot to the local disk by returning the appropriate PXE magic.
846 ; AX contains the appropriate return code.
853 mov [LocalBootType
],ax
857 ; Restore the environment we were called with
864 mov ax,[cs:LocalBootType
]
871 ; kaboom: write a message and bail out. Wait for quite a while,
872 ; or a user keypress, then do a hard reboot.
875 RESET_STACK_AND_SEGS
AX
876 .
patch: mov si,bailmsg
877 call writestr
; Returns with AL = 0
878 .
drain: call pollchar
885 and al,09h ; Magic+Timeout
893 .
wait2: mov dx,[BIOS_timer
]
894 .
wait3: call pollchar
905 mov word [BIOS_magic
],0 ; Cold reboot
906 jmp 0F000h:0FFF0h
; Reset vector address
909 ; memory_scan_for_pxe_struct:
911 ; If none of the standard methods find the !PXE structure, look for it
912 ; by scanning memory.
915 ; CF = 0, ES:BX -> !PXE structure
916 ; Otherwise CF = 1, all registers saved
918 memory_scan_for_pxe_struct:
925 mov ax,[BIOS_fbm
] ; Starting segment
926 shl ax,(10-4) ; Kilobytes -> paragraphs
927 ; mov ax,01000h ; Start to look here
928 dec ax ; To skip inc ax
931 cmp ax,0A000h
; End of memory
940 movzx cx,byte [es:4] ; Length of structure
941 cmp cl,08h ; Minimum length
950 jnz .mismatch
; Checksum must == 0
953 mov [bp+8],bx ; Save BX into stack frame (will be == 0)
961 .
not_found: mov si,notfound_msg
969 ; memory_scan_for_pxenv_struct:
971 ; If none of the standard methods find the PXENV+ structure, look for it
972 ; by scanning memory.
975 ; CF = 0, ES:BX -> PXENV+ structure
976 ; Otherwise CF = 1, all registers saved
978 memory_scan_for_pxenv_struct:
980 mov si,trymempxenv_msg
982 ; mov ax,[BIOS_fbm] ; Starting segment
983 ; shl ax,(10-4) ; Kilobytes -> paragraphs
984 mov ax,01000h ; Start to look here
985 dec ax ; To skip inc ax
988 cmp ax,0A000h
; End of memory
997 movzx cx,byte [es:8] ; Length of structure
998 cmp cl,26h ; Minimum length
1006 jnz .mismatch
; Checksum must == 0
1008 mov [bp+8],bx ; Save BX into stack frame
1014 .
not_found: mov si,notfound_msg
1022 ; Deallocates a file structure (pointer in SI)
1025 ; XXX: We should check to see if this file is still open on the server
1026 ; side and send a courtesy ERROR packet to the server.
1031 mov word [si],0 ; Not in use
1037 ; Open a TFTP connection to the server
1040 ; DS:DI = mangled filename
1043 ; SI = socket pointer
1044 ; DX:AX = file length in bytes
1059 call allocate_socket
1062 mov ax,PKT_RETRY
; Retry counter
1063 mov word [PktTimeout
],PKT_TIMEOUT
; Initial timeout
1065 .
sendreq: push ax ; [bp-2] - Retry counter
1066 push si ; [bp-4] - File name
1069 mov [pxe_udp_write_pkt.buffer
],di
1071 mov ax,TFTP_RRQ
; TFTP opcode
1074 lodsd ; EAX <- server override (if any)
1076 jnz .noprefix
; No prefix, and we have the server
1078 push si ; Add common prefix
1084 mov eax,[ServerIP
] ; Get default server
1087 call strcpy
; Filename
1089 mov [bx+tftp_remoteip
],eax
1091 push bx ; [bp-6] - TFTP block
1093 push bx ; [bp-8] - TID (local port no)
1095 mov [pxe_udp_write_pkt.status
],byte 0
1096 mov [pxe_udp_write_pkt.sip
],eax
1097 ; Now figure out the gateway
1103 mov [pxe_udp_write_pkt.gip
],eax
1104 mov [pxe_udp_write_pkt.lport
],bx
1106 mov [pxe_udp_write_pkt.rport
],ax
1108 mov cx,tftp_tail_len
1110 sub di,packet_buf
; Get packet size
1111 mov [pxe_udp_write_pkt.buffersize
],di
1113 mov di,pxe_udp_write_pkt
1114 mov bx,PXENV_UDP_WRITE
1117 cmp word [pxe_udp_write_pkt.status
],byte 0
1121 ; Danger, Will Robinson! We need to support timeout
1122 ; and retry lest we just lost a packet...
1125 ; Packet transmitted OK, now we need to receive
1126 .
getpacket: push word [PktTimeout
] ; [bp-10]
1127 push word [BIOS_timer
] ; [bp-12]
1129 .
pkt_loop: mov bx,[bp-8] ; TID
1131 mov word [pxe_udp_read_pkt.status
],0
1132 mov [pxe_udp_read_pkt.buffer
],di
1133 mov [pxe_udp_read_pkt.buffer
+2],ds
1134 mov word [pxe_udp_read_pkt.buffersize
],packet_buf_size
1136 mov [pxe_udp_read_pkt.dip
],eax
1137 mov [pxe_udp_read_pkt.lport
],bx
1138 mov di,pxe_udp_read_pkt
1139 mov bx,PXENV_UDP_READ
1142 jz .got_packet
; Wait for packet
1148 dec word [bp-10] ; Timeout
1150 pop ax ; Adjust stack
1152 shl word [PktTimeout
],1 ; Exponential backoff
1156 mov si,[bp-6] ; TFTP pointer
1159 mov eax,[si+tftp_remoteip
]
1160 cmp [pxe_udp_read_pkt.sip
],eax ; This is technically not to the TFTP spec?
1163 ; Got packet - reset timeout
1164 mov word [PktTimeout
],PKT_TIMEOUT
1166 pop ax ; Adjust stack
1169 mov ax,[pxe_udp_read_pkt.rport
]
1170 mov [si+tftp_remoteport
],ax
1172 ; filesize <- -1 == unknown
1173 mov dword [si+tftp_filesize
], -1
1174 ; Default blksize unless blksize option negotiated
1175 mov word [si+tftp_blksize
], TFTP_BLOCKSIZE
1177 mov cx,[pxe_udp_read_pkt.buffersize
]
1178 sub cx,2 ; CX <- bytes after opcode
1179 jb .failure
; Garbled reply
1185 je .bailnow
; ERROR reply: don't try again
1190 ; Now we need to parse the OACK packet to get the transfer
1191 ; size. SI -> first byte of options; CX -> byte count
1193 jcxz .no_tsize
; No options acked
1197 .
opt_name_loop: lodsb
1200 or al,20h ; Convert to lowercase
1203 ; We ran out, and no final null
1205 .
got_opt_name: ; si -> option value
1206 dec cx ; bytes left in pkt
1207 jz .err_reply
; Option w/o value
1209 ; Parse option pointed to by bx; guaranteed to be
1213 mov si,bx ; -> option name
1214 mov bx,tftp_opt_table
1219 mov di,[bx] ; Option pointer
1220 mov cx,[bx+2] ; Option len
1224 je .get_value
; OK, known option
1230 jmp .err_reply
; Non-negotiated option returned
1232 .
get_value: pop si ; si -> option value
1233 pop cx ; cx -> bytes left in pkt
1234 mov bx,[bx+4] ; Pointer to data target
1235 add bx,[bp-6] ; TFTP socket pointer
1243 ja .err_reply
; Not a decimal digit
1248 ; Ran out before final null, accept anyway
1253 jnz .get_opt_name
; Not end of packet
1260 pop si ; We want the packet ptr in SI
1262 mov eax,[si+tftp_filesize
]
1266 shr edx,16 ; DX:AX == EAX
1268 and eax,eax ; Set ZF depending on file size
1270 pop bp ; Junk (retry counter)
1271 jz .error_si
; ZF = 1 need to free the socket
1280 .
err_reply: ; Option negotiation error. Send ERROR reply.
1281 ; ServerIP and gateway are already programmed in
1283 mov ax,[si+tftp_remoteport
]
1284 mov word [pxe_udp_write_pkt.rport
],ax
1285 mov word [pxe_udp_write_pkt.buffer
],tftp_opt_err
1286 mov word [pxe_udp_write_pkt.buffersize
],tftp_opt_err_len
1287 mov di,pxe_udp_write_pkt
1288 mov bx,PXENV_UDP_WRITE
1291 ; Write an error message and explode
1296 .
bailnow: mov word [bp-2],1 ; Immediate error - no retry
1298 .
failure: pop bx ; Junk
1302 dec ax ; Retry counter
1303 jnz .sendreq
; Try again
1305 .
error: mov si,bx ; Socket pointer
1306 .
error_si: ; Socket pointer already in SI
1307 call free_socket
; ZF <- 1, SI <- 0
1311 ; allocate_socket: Allocate a local UDP port structure
1315 ; BX = socket pointer
1323 .
check: cmp word [bx], byte 0
1325 add bx,open_file_t_size
1330 ; Allocate a socket number. Socket numbers are made
1331 ; guaranteed unique by including the socket slot number
1332 ; (inverted, because we use the loop counter cx); add a
1333 ; counter value to keep the numbers from being likely to
1334 ; get immediately reused.
1336 ; The NextSocket variable also contains the top two bits
1337 ; set. This generates a value in the range 49152 to
1344 and ax,((1 << (13-MAX_OPEN_LG2
))-1) |
0xC000
1346 shl cx,13-MAX_OPEN_LG2
1348 xchg ch,cl ; Convert to network byte order
1349 mov [bx],cx ; Socket in use
1355 ; Free socket: socket in SI; return SI = 0, ZF = 1 for convenience
1363 mov cx,tftp_pktbuf
>> 1 ; tftp_pktbuf is not cleared
1372 ; Read a dot-quad pathname in DS:SI and output an IP
1373 ; address in EAX, with SI pointing to the first
1374 ; nonmatching character.
1376 ; Return CF=1 on error.
1378 ; No segment assumptions permitted.
1392 aad ; AL += 10 * AH; AH = 0;
1407 loop .realerror
; If CX := 1 then we're done
1413 dec si ; CF unchanged!
1417 ; mangle_name: Mangle a filename pointed to by DS:SI into a buffer pointed
1418 ; to by ES:DI; ends on encountering any whitespace.
1421 ; This verifies that a filename is < FILENAME_MAX characters
1422 ; and doesn't contain whitespace, and zero-pads the output buffer,
1423 ; so "repe cmpsb" can do a compare.
1425 ; The first four bytes of the manged name is the IP address of
1426 ; the download host.
1428 ; No segment assumptions permitted.
1433 mov eax,[cs:ServerIP
]
1435 je .noip
; Null filename?!?!
1436 cmp word [si],'::' ; Leading ::?
1446 ; We have a :: prefix of some sort, it could be either
1447 ; a DNS name or a dot-quad IP address. Try the dot-quad
1471 pop cx ; Adjust stack
1472 inc si ; Skip double colon
1476 stosd ; Save IP address prefix
1477 mov cx,FILENAME_MAX
-5
1481 cmp al,' ' ; If control or space, end
1486 inc cx ; At least one null byte
1487 xor ax,ax ; Zero-fill name
1488 rep stosb ; Doesn't do anything if CX=0
1493 ; unmangle_name: Does the opposite of mangle_name; converts a DOS-mangled
1494 ; filename to the conventional representation. This is needed
1495 ; for the BOOT_IMAGE= parameter for the kernel.
1497 ; NOTE: The output buffer needs to be able to hold an
1498 ; expanded IP address.
1500 ; DS:SI -> input mangled file name
1501 ; ES:DI -> output buffer
1503 ; On return, DI points to the first byte after the output name,
1504 ; which is set to a null byte.
1516 dec di ; Point to final null byte
1523 ; This is the main PXENV+/!PXE entry point, using the PXENV+
1524 ; calling convention. This is a separate local routine so
1525 ; we can hook special things from it if necessary. In particular,
1526 ; some PXE stacks seem to not like being invoked from anything but
1527 ; the initial stack, so humour it.
1531 %if USE_PXE_PROVIDED_STACK
== 0
1532 mov [cs:PXEStack
],sp
1533 mov [cs:PXEStack
+2],ss
1534 lss sp,[cs:InitStack
]
1536 .
jump: call 0:pxe_thunk
; Default to calling the thunk
1537 %if USE_PXE_PROVIDED_STACK
== 0
1538 lss sp,[cs:PXEStack
]
1540 cld ; Make sure DF <- 0
1543 ; Must be after function def due to NASM bug
1544 PXENVEntry
equ pxenv.jump
+1
1549 ; Convert from the PXENV+ calling convention (BX, ES, DI) to the !PXE
1550 ; calling convention (using the stack.)
1552 ; This is called as a far routine so that we can just stick it into
1553 ; the PXENVEntry variable.
1561 cmc ; Set CF unless ax == 0
1564 ; Must be after function def due to NASM bug
1565 PXEEntry
equ pxe_thunk.jump
+1
1568 ; getfssec: Get multiple clusters from a file, given the starting cluster.
1570 ; In this case, get multiple blocks from a specific TCP connection.
1574 ; SI -> TFTP socket pointer
1575 ; CX -> 512-byte block count; 0FFFFh = until end of file
1577 ; SI -> TFTP socket pointer (or 0 on EOF)
1588 shl ecx,TFTP_BLOCKSIZE_LG2
; Convert to bytes
1589 jz .hit_eof
; Nothing to do?
1594 movzx eax,word [bx+tftp_bytesleft
]
1598 jcxz .need_packet
; No bytes available?
1601 mov ax,cx ; EAX<31:16> == ECX<31:16> == 0
1602 mov si,[bx+tftp_dataptr
]
1603 sub [bx+tftp_bytesleft
],cx
1604 fs rep movsb ; Copy from packet buffer
1605 mov [bx+tftp_dataptr
],si
1616 ; Is there anything left of this?
1617 mov eax,[si+tftp_filesize
]
1618 sub eax,[si+tftp_filepos
]
1619 jnz .bytes_left
; CF <- 0
1621 cmp [si+tftp_bytesleft
],ax
1622 jnz .bytes_left
; CF <- 0
1624 ; The socket is closed and the buffer drained
1625 ; Close socket structure and re-init for next user
1632 ; No data in buffer, check to see if we can get a packet...
1636 mov eax,[bx+tftp_filesize
]
1637 cmp eax,[bx+tftp_filepos
]
1638 je .hit_eof
; Already EOF'd; socket already closed
1650 ; Get a fresh packet; expects fs -> pktbuf_seg and ds:si -> socket structure
1657 ; Start by ACKing the previous packet; this should cause the
1658 ; next packet to be sent.
1660 mov word [PktTimeout
],PKT_TIMEOUT
1662 .
send_ack: push cx ; <D> Retry count
1664 mov ax,[si+tftp_lastpkt
]
1665 call ack_packet
; Send ACK
1667 ; We used to test the error code here, but sometimes
1668 ; PXE would return negative status even though we really
1669 ; did send the ACK. Now, just treat a failed send as
1670 ; a normally lost packet, and let it time out in due
1673 .
send_ok: ; Now wait for packet.
1674 mov dx,[BIOS_timer
] ; Get current time
1677 .
wait_data: push cx ; <E> Timeout
1678 push dx ; <F> Old time
1680 mov bx,[si+tftp_pktbuf
]
1681 mov [pxe_udp_read_pkt.buffer
],bx
1682 mov [pxe_udp_read_pkt.buffer
+2],fs
1683 mov [pxe_udp_read_pkt.buffersize
],word PKTBUF_SIZE
1684 mov eax,[si+tftp_remoteip
]
1685 mov [pxe_udp_read_pkt.sip
],eax
1687 mov [pxe_udp_read_pkt.dip
],eax
1688 mov ax,[si+tftp_remoteport
]
1689 mov [pxe_udp_read_pkt.rport
],ax
1690 mov ax,[si+tftp_localport
]
1691 mov [pxe_udp_read_pkt.lport
],ax
1692 mov di,pxe_udp_read_pkt
1693 mov bx,PXENV_UDP_READ
1700 ; No packet, or receive failure
1702 pop ax ; <F> Old time
1703 pop cx ; <E> Timeout
1704 cmp ax,dx ; Same time -> don't advance timeout
1705 je .wait_data
; Same clock tick
1706 loop .wait_data
; Decrease timeout
1708 pop cx ; <D> Didn't get any, send another ACK
1709 shl word [PktTimeout
],1 ; Exponential backoff
1711 jmp kaboom
; Forget it...
1713 .
recv_ok: pop dx ; <F>
1716 cmp word [pxe_udp_read_pkt.buffersize
],byte 4
1717 jb .wait_data
; Bad size for a DATA packet
1719 mov bx,[si+tftp_pktbuf
]
1720 cmp word [fs:bx],TFTP_DATA
; Not a data packet?
1721 jne .wait_data
; Then wait for something else
1723 mov ax,[si+tftp_lastpkt
]
1724 xchg ah,al ; Host byte order
1725 inc ax ; Which packet are we waiting for?
1726 xchg ah,al ; Network byte order
1730 ; Wrong packet, ACK the packet and then try again
1731 ; This is presumably because the ACK got lost,
1732 ; so the server just resent the previous packet
1735 jmp .send_ok
; Reset timeout
1737 .
right_packet: ; It's the packet we want. We're also EOF if the size < blocksize
1739 pop cx ; <D> Don't need the retry count anymore
1741 mov [si+tftp_lastpkt
],ax ; Update last packet number
1743 movzx ecx,word [pxe_udp_read_pkt.buffersize
]
1744 sub cx,byte 4 ; Skip TFTP header
1746 ; If this is a zero-length block, don't mess with the pointers,
1747 ; since we may have just set up the previous block that way
1750 ; Set pointer to data block
1751 lea ax,[bx+4] ; Data past TFTP header
1752 mov [si+tftp_dataptr
],ax
1754 add [si+tftp_filepos
],ecx
1755 mov [si+tftp_bytesleft
],cx
1757 cmp cx,[si+tftp_blksize
] ; Is it a full block?
1758 jb .last_block
; If so, it's not EOF
1760 ; If we had the exact right number of bytes, always get
1761 ; one more packet to get the (zero-byte) EOF packet and
1763 mov eax,[si+tftp_filepos
]
1764 cmp [si+tftp_filesize
],eax
1770 .
last_block: ; Last block - ACK packet immediately
1774 ; Make sure we know we are at end of file
1775 mov eax,[si+tftp_filepos
]
1776 mov [si+tftp_filesize
],eax
1783 ; Send ACK packet. This is a common operation and so is worth canning.
1787 ; AX = Packet # to ack (network byte order)
1790 ; All registers preserved
1792 ; This function uses the pxe_udp_write_pkt but not the packet_buf.
1796 mov [ack_packet_buf
+2],ax ; Packet number to ack
1798 mov [pxe_udp_write_pkt.lport
],ax
1799 mov ax,[si+tftp_remoteport
]
1800 mov [pxe_udp_write_pkt.rport
],ax
1801 mov eax,[si+tftp_remoteip
]
1802 mov [pxe_udp_write_pkt.sip
],eax
1808 mov [pxe_udp_write_pkt.gip
],eax
1809 mov [pxe_udp_write_pkt.buffer
],word ack_packet_buf
1810 mov [pxe_udp_write_pkt.buffersize
], word 4
1811 mov di,pxe_udp_write_pkt
1812 mov bx,PXENV_UDP_WRITE
1814 cmp ax,byte 0 ; ZF = 1 if write OK
1821 ; This function unloads the PXE and UNDI stacks and unclaims
1825 test byte [KeepPXE
],01h ; Should we keep PXE around?
1835 mov si,new_api_unload
1836 cmp byte [APIVer
+1],2 ; Major API version >= 2?
1838 mov si,old_api_unload
1841 .
call_loop: xor ax,ax
1846 mov di,pxe_unload_stack_pkt
1849 mov cx,pxe_unload_stack_pkt_len
>> 1
1854 mov ax,word [pxe_unload_stack_pkt.status
]
1855 cmp ax,PXENV_STATUS_SUCCESS
1862 mov dx,[RealBaseMem
]
1863 cmp dx,[BIOS_fbm
] ; Sanity check
1867 ; Check that PXE actually unhooked the INT 1Ah chain
1868 movzx eax,word [4*0x1a]
1869 movzx ecx,word [4*0x1a+2]
1873 cmp ax,dx ; Not in range
1887 mov si,cant_free_msg
1903 ; We want to keep PXE around, but still we should reset
1904 ; it to the standard bootup configuration
1909 mov bx,PXENV_UDP_CLOSE
1910 mov di,pxe_udp_close_pkt
1918 ; Take an IP address (in network byte order) in EAX and
1919 ; output a dotted quad string to ES:DI.
1920 ; DI points to terminal null at end of string on exit.
1929 jb .lt10
; If so, skip first 2 digits
1932 jb .lt100
; If so, skip first digit
1935 ; Now AH = 100-digit; AL = remainder
1942 ; Now AH = 10-digit; AL = remainder
1953 ror eax,8 ; Move next char into LSB
1961 ; uchexbytes/lchexbytes
1963 ; Take a number of bytes in memory and convert to upper/lower-case
1967 ; DS:SI = input bytes
1968 ; ES:DI = output buffer
1969 ; CX = number of bytes
1971 ; DS:SI = first byte after
1972 ; ES:DI = first byte after
2004 ; pxe_get_cached_info
2006 ; Get a DHCP packet from the PXE stack into the trackbuf.
2013 ; Assumes CS == DS == ES.
2015 pxe_get_cached_info:
2017 mov di,pxe_bootp_query_pkt
2026 stosw ; Buffer offset
2028 stosw ; Buffer segment
2030 pop di ; DI -> parameter set
2031 mov bx,PXENV_GET_CACHED_INFO
2038 mov cx,[pxe_bootp_query_pkt.buffersize
]
2042 mov si,err_pxefailed
2048 ; Tests an IP address in EAX for validity; return with ZF=1 for bad.
2049 ; We used to refuse class E, but class E addresses are likely to become
2050 ; assignable unicast addresses in the near future.
2054 cmp eax,-1 ; Refuse the all-ones address
2056 and al,al ; Refuse network zero
2058 cmp al,127 ; Refuse loopback
2061 cmp al,224 ; Refuse class D
2069 ; Parse a DHCP packet. This includes dealing with "overloaded"
2070 ; option fields (see RFC 2132, section 9.3)
2072 ; This should fill in the following global variables, if the
2073 ; information is present:
2075 ; MyIP - client IP address
2076 ; ServerIP - boot server IP address
2077 ; Netmask - network mask
2078 ; Gateway - default gateway router IP
2079 ; BootFile - boot file name
2080 ; DNSServers - DNS server IPs
2081 ; LocalDomain - Local domain name
2082 ; MACLen, MAC - Client identifier, if MACLen == 0
2084 ; This assumes the DHCP packet is in "trackbuf" and the length
2085 ; of the packet in in CX on entry.
2089 mov byte [OverLoad
],0 ; Assume no overload
2090 mov eax, [trackbuf
+bootp.yip
]
2095 mov eax, [trackbuf
+bootp.sip
]
2101 sub cx, bootp.options
2103 mov si, trackbuf
+bootp.option_magic
2105 cmp eax, BOOTP_OPTION_MAGIC
2107 call parse_dhcp_options
2109 mov si, trackbuf
+bootp.bootfile
2110 test byte [OverLoad
],1
2113 call parse_dhcp_options
2114 jmp short .parsed_file
2117 jz .parsed_file
; No bootfile name
2122 stosb ; Null-terminate
2124 mov si, trackbuf
+bootp.sname
2125 test byte [OverLoad
],2
2128 call parse_dhcp_options
2133 ; Parse a sequence of DHCP options, pointed to by DS:SI; the field
2134 ; size is CX -- some DHCP servers leave option fields unterminated
2135 ; in violation of the spec.
2137 ; For parse_some_dhcp_options, DH contains the minimum value for
2138 ; the option to recognize -- this is used to restrict parsing to
2139 ; PXELINUX-specific options only.
2144 parse_some_dhcp_options:
2151 jz .done
; Last byte; must be PAD, END or malformed
2152 cmp al, 0 ; PAD option
2154 cmp al,255 ; END option
2157 ; Anything else will have a length field
2158 mov dl,al ; DL <- option number
2160 lodsb ; AX <- option length
2162 sub cx,ax ; Decrement bytes left counter
2163 jb .done
; Malformed option: length > field size
2165 cmp dl,dh ; Is the option value valid?
2168 mov bx,dhcp_option_list
2170 cmp bx,dhcp_option_list_end
2182 ; Unknown option. Skip to the next one.
2202 ; Parse individual DHCP options. SI points to the option data and
2203 ; AX to the option length. DL contains the option number.
2204 ; All registers are saved around the routine.
2219 cmp cl,DNS_MAX_SERVERS
2221 mov cl,DNS_MAX_SERVERS
2225 mov [LastDNSServer
],di
2228 dopt
16, local_domain
2232 xchg [bx],al ; Zero-terminate option
2234 call dns_mangle
; Convert to DNS label set
2235 mov [bx],al ; Restore ending byte
2238 dopt
43, vendor_encaps
2239 mov dh,208 ; Only recognize PXELINUX options
2240 mov cx,ax ; Length of option = max bytes to parse
2241 call parse_some_dhcp_options
; Parse recursive structure
2244 dopt
52, option_overload
2251 cmp dword [ServerIP
],0
2252 jne .skip
; Already have a next server IP
2258 dopt
61, client_identifier
2259 cmp ax,MAC_MAX
; Too long?
2261 cmp ax,2 ; Too short?
2263 cmp [MACLen
],ah ; Only do this if MACLen == 0
2266 lodsb ; Client identifier type
2269 jne .skip
; Client identifier is not a MAC
2276 dopt
67, bootfile_name
2280 dopt
97, uuid_client_identifier
2281 cmp ax,17 ; type byte + 16 bytes UUID
2283 mov dl,[si] ; Must have type 0 == UUID
2284 or dl,[HaveUUID
] ; Capture only the first instance
2286 mov byte [HaveUUID
],1 ; Got UUID
2291 dopt
209, pxelinux_configfile
2293 or byte [DHCPMagic
],2 ; Got config file
2296 dopt
210, pxelinux_pathprefix
2298 or byte [DHCPMagic
],4 ; Got path prefix
2301 dopt
211, pxelinux_reboottime
2305 xchg bl,bh ; Convert to host byte order
2308 mov [RebootTime
],ebx
2309 or byte [DHCPMagic
],8 ; Got RebootTime
2312 ; Common code for copying an option verbatim
2313 ; Copies the option into ES:DI and null-terminates it.
2314 ; Returns with AX=0 and SI past the option.
2316 xchg cx,ax ; CX <- option length
2318 xchg cx,ax ; AX <- 0
2319 stosb ; Null-terminate
2323 dhcp_option_list_end:
2328 uuid_dashes
db 4,2,2,2,6,0 ; Bytes per UUID dashed section
2334 ; Generate an ip=<client-ip>:<boot-server-ip>:<gw-ip>:<netmask>
2335 ; option into IPOption based on a DHCP packet in trackbuf.
2336 ; Assumes CS == DS == ES.
2357 call gendotquad
; Zero-terminates its output
2359 mov [IPOptionLen
],di
2364 ; Call the receive loop while idle. This is done mostly so we can respond to
2365 ; ARP messages, but perhaps in the future this can be used to do network
2368 ; hpa sez: people using automatic control on the serial port get very
2369 ; unhappy if we poll for ARP too often (the PXE stack is pretty slow,
2370 ; typically.) Therefore, only poll if at least 4 BIOS timer ticks have
2371 ; passed since the last poll, and reset this when a character is
2372 ; received (RESET_IDLE).
2378 mov ax,[cs:BIOS_timer
]
2379 mov [cs:IdleTimer
],ax
2385 mov ax,[cs:BIOS_timer
]
2386 sub ax,[cs:IdleTimer
]
2398 mov [pxe_udp_read_pkt.status
],al ; 0
2399 mov [pxe_udp_read_pkt.buffer
],di
2400 mov [pxe_udp_read_pkt.buffer
+2],ds
2401 mov word [pxe_udp_read_pkt.buffersize
],packet_buf_size
2403 mov [pxe_udp_read_pkt.dip
],eax
2404 mov word [pxe_udp_read_pkt.lport
],htons
(9) ; discard port
2405 mov di,pxe_udp_read_pkt
2406 mov bx,PXENV_UDP_READ
2417 ; -----------------------------------------------------------------------------
2419 ; -----------------------------------------------------------------------------
2421 %include "getc.inc" ; getc et al
2422 %include "conio.inc" ; Console I/O
2423 %include "writestr.inc" ; String output
2424 writestr
equ cwritestr
2425 %include "writehex.inc" ; Hexadecimal output
2426 %include "configinit.inc" ; Initialize configuration
2427 %include "parseconfig.inc" ; High-level config file handling
2428 %include "parsecmd.inc" ; Low-level config file handling
2429 %include "bcopy32.inc" ; 32-bit bcopy
2430 %include "loadhigh.inc" ; Load a file into high memory
2431 %include "font.inc" ; VGA font stuff
2432 %include "graphics.inc" ; VGA graphics
2433 %include "highmem.inc" ; High memory sizing
2434 %include "strcpy.inc" ; strcpy()
2435 %include "rawcon.inc" ; Console I/O w/o using the console functions
2436 %include "dnsresolv.inc" ; DNS resolver
2437 %include "adv.inc" ; Auxillary Data Vector
2439 ; -----------------------------------------------------------------------------
2440 ; Begin data section
2441 ; -----------------------------------------------------------------------------
2445 copyright_str
db ' Copyright (C) 1994-', year
, ' H. Peter Anvin'
2447 err_bootfailed
db CR
, LF
, 'Boot failed: press a key to retry, or wait for reset...', CR
, LF
, 0
2448 bailmsg
equ err_bootfailed
2449 err_nopxe
db "No !PXE or PXENV+ API found; we're dead...", CR
, LF
, 0
2450 err_pxefailed
db 'PXE API call failed, error ', 0
2451 err_udpinit
db 'Failed to initialize UDP stack', CR
, LF
, 0
2452 err_noconfig
db 'Unable to locate configuration file', CR
, LF
, 0
2453 err_oldtftp
db 'TFTP server does not support the tsize option', CR
, LF
, 0
2454 found_pxenv
db 'Found PXENV+ structure', CR
, LF
, 0
2455 using_pxenv_msg
db 'Old PXE API detected, using PXENV+ structure', CR
, LF
, 0
2456 apiver_str
db 'PXE API version is ',0
2457 pxeentry_msg
db 'PXE entry point found (we hope) at ', 0
2458 pxenventry_msg
db 'PXENV entry point found (we hope) at ', 0
2459 trymempxe_msg
db 'Scanning memory for !PXE structure... ', 0
2460 trymempxenv_msg
db 'Scanning memory for PXENV+ structure... ', 0
2461 undi_data_msg
db 'UNDI data segment at: ',0
2462 undi_data_len_msg
db 'UNDI data segment size: ',0
2463 undi_code_msg
db 'UNDI code segment at: ',0
2464 undi_code_len_msg
db 'UNDI code segment size: ',0
2465 cant_free_msg
db 'Failed to free base memory, error ', 0
2466 notfound_msg
db 'not found', CR
, LF
, 0
2467 myipaddr_msg
db 'My IP address seems to be ',0
2468 tftpprefix_msg
db 'TFTP prefix: ', 0
2469 localboot_msg
db 'Booting from local disk...', CR
, LF
, 0
2470 trying_msg
db 'Trying to load: ', 0
2471 fourbs_msg
db BS
, BS
, BS
, BS
, 0
2472 default_str
db 'default', 0
2473 syslinux_banner
db CR
, LF
, 'PXELINUX ', version_str
, ' ', date
, ' ', 0
2474 cfgprefix
db 'pxelinux.cfg/' ; No final null!
2475 cfgprefix_len
equ ($
-cfgprefix
)
2478 ; Command line options we'd like to take a look at
2480 ; mem= and vga= are handled as normal 32-bit integer values
2481 initrd_cmd
db 'initrd='
2482 initrd_cmd_len
equ $
-initrd_cmd
2484 ; This one we make ourselves
2485 bootif_str
db 'BOOTIF='
2486 bootif_str_len
equ $
-bootif_str
2488 ; Config file keyword table
2490 %include "keywords.inc"
2493 ; Extensions to search for (in *forward* order).
2494 ; (.bs and .bss are disabled for PXELINUX, since they are not supported)
2497 exten_table: db '.cbt' ; COMBOOT (specific)
2498 db '.0', 0, 0 ; PXE bootstrap program
2499 db '.com' ; COMBOOT (same as DOS)
2502 dd 0, 0 ; Need 8 null bytes here
2505 ; PXE unload sequences
2509 db PXENV_UNDI_SHUTDOWN
2510 db PXENV_UNLOAD_STACK
2515 db PXENV_UNDI_SHUTDOWN
2516 db PXENV_UNLOAD_STACK
2517 db PXENV_UNDI_CLEANUP
2521 ; PXE query packets partially filled in
2524 pxe_bootp_query_pkt:
2525 .
status: resw
1 ; Status
2526 .
packettype: resw
1 ; Boot server packet type
2527 .
buffersize: resw
1 ; Packet size
2528 .
buffer: resw
2 ; seg:off of buffer
2529 .
bufferlimit: resw
1 ; Unused
2533 .
status: dw 0 ; Status
2534 .
sip: dd 0 ; Source (our) IP
2537 .
status: dw 0 ; Status
2540 .
status: dw 0 ; Status
2541 .
sip: dd 0 ; Server IP
2542 .
gip: dd 0 ; Gateway IP
2543 .
lport: dw 0 ; Local port
2544 .
rport: dw 0 ; Remote port
2545 .
buffersize: dw 0 ; Size of packet
2546 .
buffer: dw 0, 0 ; seg:off of buffer
2549 .
status: dw 0 ; Status
2550 .
sip: dd 0 ; Source IP
2551 .
dip: dd 0 ; Destination (our) IP
2552 .
rport: dw 0 ; Remote port
2553 .
lport: dw 0 ; Local port
2554 .
buffersize: dw 0 ; Max packet size
2555 .
buffer: dw 0, 0 ; seg:off of buffer
2558 ; Misc initialized (data) variables
2561 BaseStack
dd StackBuf
; ESP of base stack
2562 dw 0 ; SS of base stack
2563 NextSocket
dw 49152 ; Counter for allocating socket numbers
2564 KeepPXE
db 0 ; Should PXE be kept around?
2569 tftp_tail
db 'octet', 0 ; Octet mode
2570 tsize_str
db 'tsize' ,0 ; Request size
2571 tsize_len
equ ($
-tsize_str
)
2573 blksize_str
db 'blksize', 0 ; Request large blocks
2574 blksize_len
equ ($
-blksize_str
)
2575 asciidec TFTP_LARGEBLK
2577 tftp_tail_len
equ ($
-tftp_tail
)
2581 ; Options negotiation parsing table (string pointer, string len, offset
2582 ; into socket structure)
2585 dw tsize_str
, tsize_len
, tftp_filesize
2586 dw blksize_str
, blksize_len
, tftp_blksize
2587 tftp_opts
equ ($
-tftp_opt_table
)/6
2590 ; Error packet to return on options negotiation error
2592 tftp_opt_err
dw TFTP_ERROR
; ERROR packet
2593 dw TFTP_EOPTNEG
; ERROR 8: bad options
2594 db 'tsize option required', 0 ; Error message
2595 tftp_opt_err_len
equ ($
-tftp_opt_err
)
2598 ack_packet_buf: dw TFTP_ACK
, 0 ; TFTP ACK packet
2601 ; IP information (initialized to "unknown" values)
2602 MyIP
dd 0 ; My IP address
2603 ServerIP
dd 0 ; IP address of boot server
2604 Netmask
dd 0 ; Netmask of this subnet
2605 Gateway
dd 0 ; Default router
2606 ServerPort
dw TFTP_PORT
; TFTP server port
2609 ; Variables that are uninitialized in SYSLINUX but initialized here
2612 BufSafe
dw trackbufsize
/TFTP_BLOCKSIZE
; Clusters we can load into trackbuf
2613 BufSafeBytes
dw trackbufsize
; = how many bytes?
2615 %if
( trackbufsize
% TFTP_BLOCKSIZE
) != 0
2616 %error trackbufsize must be a multiple of TFTP_BLOCKSIZE