1 ; -*- fundamental -*- (asm-mode sucks)
3 ; ****************************************************************************
7 ; A program to boot Linux kernels off an MS-DOS formatted floppy disk. This
8 ; functionality is good to have for installation floppies, where it may
9 ; be hard to find a functional Linux system to run LILO off.
11 ; This program allows manipulation of the disk to take place entirely
12 ; from MS-LOSS, and can be especially useful in conjunction with the
15 ; Copyright (C) 1994-2005 H. Peter Anvin
17 ; This program is free software; you can redistribute it and/or modify
18 ; it under the terms of the GNU General Public License as published by
19 ; the Free Software Foundation, Inc., 53 Temple Place Ste 330,
20 ; Boston MA 02111-1307, USA; either version 2 of the License, or
21 ; (at your option) any later version; incorporated herein by reference.
23 ; ****************************************************************************
32 %include "tracers.inc"
35 ; Some semi-configurable constants... change on your own risk.
38 FILENAME_MAX_LG2
equ 4 ; log2(Max filename size Including final null)
39 FILENAME_MAX
equ 11 ; Max mangled filename size
40 NULLFILE
equ ' ' ; First char space == null filename
41 NULLOFFSET
equ 0 ; Position in which to look
42 retry_count
equ 16 ; How patient are we with the disk?
43 %assign HIGHMEM_SLOP
0 ; Avoid this much memory near the top
44 LDLINUX_MAGIC
equ 0x3eb202fe ; A random number to identify ourselves with
46 MAX_OPEN_LG2
equ 6 ; log2(Max number of open files)
47 MAX_OPEN
equ (1 << MAX_OPEN_LG2
)
50 SECTOR_SIZE
equ (1 << SECTOR_SHIFT
)
53 ; This is what we need to do when idle
63 ; The following structure is used for "virtual kernels"; i.e. LILO-style
64 ; option labels. The options we permit here are `kernel' and `append
65 ; Since there is no room in the bottom 64K for all of these, we
66 ; stick them at vk_seg:0000 and copy them down before we need them.
69 vk_vname: resb FILENAME_MAX
; Virtual name **MUST BE FIRST!**
70 vk_rname: resb FILENAME_MAX
; Real name
73 vk_append: resb max_cmd_len
+1 ; Command line
75 vk_end: equ $
; Should be <= vk_size
79 ; Segment assignments in the bottom 640K
80 ; Stick to the low 512K in case we're using something like M-systems flash
81 ; which load a driver into low RAM (evil!!)
83 ; 0000h - main code/data segment (and BIOS segment)
85 real_mode_seg
equ 4000h
86 cache_seg
equ 3000h ; 64K area for metadata cache
87 vk_seg
equ 2000h ; Virtual kernels
88 xfer_buf_seg
equ 1000h ; Bounce buffer for I/O to high mem
89 comboot_seg
equ real_mode_seg
; COMBOOT image loading zone
92 ; File structure. This holds the information for each currently open file.
95 file_sector resd
1 ; Sector pointer (0 = structure free)
96 file_left resd
1 ; Number of sectors left
100 %if
(open_file_t_size
& (open_file_t_size
-1))
101 %error
"open_file_t is not a power of 2"
105 ; ---------------------------------------------------------------------------
107 ; ---------------------------------------------------------------------------
110 ; Memory below this point is reserved for the BIOS and the MBR
113 trackbufsize
equ 8192
114 trackbuf resb trackbufsize
; Track buffer goes here
115 getcbuf resb trackbufsize
121 ; Expanded superblock
123 resq
16 ; The first 16 bytes expanded 8 times
124 FAT resd
1 ; Location of (first) FAT
125 RootDirArea resd
1 ; Location of root directory area
126 RootDir resd
1 ; Location of root directory proper
127 DataArea resd
1 ; Location of data area
128 RootDirSize resd
1 ; Root dir size in sectors
129 TotalSectors resd
1 ; Total number of sectors
130 EndSector resd
1 ; Location of filesystem end
131 ClustSize resd
1 ; Bytes/cluster
132 ClustMask resd
1 ; Sectors/cluster - 1
133 CopySuper resb
1 ; Distinguish .bs versus .bss
134 DriveNumber resb
1 ; BIOS drive number
135 ClustShift resb
1 ; Shift count for sectors/cluster
136 ClustByteShift resb
1 ; Shift count for bytes/cluster
138 alignb open_file_t_size
139 Files resb MAX_OPEN
*open_file_t_size
142 ; Constants for the xfer_buf_seg
144 ; The xfer_buf_seg is also used to store message file buffers. We
145 ; need two trackbuffers (text and graphics), plus a work buffer
146 ; for the graphics decompressor.
148 xbs_textbuf
equ 0 ; Also hard-coded, do not change
149 xbs_vgabuf
equ trackbufsize
150 xbs_vgatmpbuf
equ 2*trackbufsize
155 ; Some of the things that have to be saved very early are saved
156 ; "close" to the initial stack pointer offset, in order to
157 ; reduce the code size...
159 StackBuf
equ $
-44-32 ; Start the stack here (grow down - 4K)
160 PartInfo
equ StackBuf
; Saved partition table entry
161 FloppyTable
equ PartInfo
+16 ; Floppy info table (must follow PartInfo)
162 OrigFDCTabPtr
equ StackBuf
-4 ; The high dword on the stack
165 ; Primary entry point. Tempting as though it may be, we can't put the
166 ; initial "cli" here; the jmp opcode in the first byte is part of the
167 ; "magic number" (using the term very loosely) for the DOS superblock.
170 jmp short start
; 2 bytes
173 ; "Superblock" follows -- it's in the boot sector, so it's already
174 ; loaded and ready for us
176 bsOemName
db 'SYSLINUX' ; The SYS command sets this, so...
178 ; These are the fields we actually care about. We end up expanding them
179 ; all to dword size early in the code, so generate labels for both
180 ; the expanded and unexpanded versions.
183 bx %+ %1 equ SuperInfo
+($
-superblock
)*8+4
188 bx %+ %1 equ SuperInfo
+($
-superblock
)*8
193 bx %+ %1 equ $
; no expansion for dwords
208 superinfo_size
equ ($
-superblock
)-1 ; How much to expand
212 ; This is as far as FAT12/16 and FAT32 are consistent
214 zb
54 ; FAT12/16 need 26 more bytes,
215 ; FAT32 need 54 more bytes
216 superblock_len
equ $
-superblock
218 SecPerClust
equ bxSecPerClust
220 ; Note we don't check the constraints above now; we did that at install
224 cli ; No interrupts yet, please
231 mov sp,StackBuf
; Just below BSS
234 ; DS:SI may contain a partition table entry. Preserve it for us.
236 mov cx,8 ; Save partition info
240 mov ds,ax ; Now we can initialize DS...
243 ; Now sautee the BIOS floppy info block to that it will support decent-
244 ; size transfers; the floppy block is 11 bytes and is stored in the
245 ; INT 1Eh vector (brilliant waste of resources, eh?)
247 ; Of course, if BIOSes had been properly programmed, we wouldn't have
248 ; had to waste precious space with this code.
251 lfs si,[bx] ; FS:SI -> original fdctab
252 push fs ; Save on stack in case we need to bail
255 ; Save the old fdctab even if hard disk so the stack layout
256 ; is the same. The instructions above do not change the flags
257 mov [DriveNumber
],dl ; Save drive number in DL
258 and dl,dl ; If floppy disk (00-7F), assume no
263 mov cl,6 ; 12 bytes (CX == 0)
264 ; es:di -> FloppyTable already
265 ; This should be safe to do now, interrupts are off...
266 mov [bx],di ; FloppyTable
267 mov [bx+2],ax ; Segment 0
268 fs rep movsw ; Faster to move words
269 mov cl,[bsSecPerTrack
] ; Patch the sector count
272 int 13h ; Some BIOSes need this
274 jmp short not_harddisk
276 ; The drive number and possibly partition information was passed to us
277 ; by the BIOS or previous boot loader (MBR). Current "best practice" is to
278 ; trust that rather than what the superblock contains.
280 ; Would it be better to zero out bsHidden if we don't have a partition table?
282 ; Note: di points to beyond the end of PartInfo
285 test byte [di-16],7Fh
; Sanity check: "active flag" should
286 jnz no_partition
; be 00 or 80
287 mov eax,[di-8] ; Partition offset (dword)
291 ; Get disk drive parameters (don't trust the superblock.) Don't do this for
292 ; floppy drives -- INT 13:08 on floppy drives will (may?) return info about
293 ; what the *drive* supports, not about the *media*. Fortunately floppy disks
294 ; tend to have a fixed, well-defined geometry which is stored in the superblock.
296 ; DL == drive # still
303 inc dx ; Contains # of heads - 1
306 mov [bsSecPerTrack
],cx
310 ; Ready to enable interrupts, captain
315 ; Do we have EBIOS (EDD)?
319 mov ah,41h ; EDD existence query
325 test cl,1 ; Extended disk access functionality set
328 ; We have EDD support...
330 mov byte [getlinsec.
jmp+1],(getlinsec_ebios
-(getlinsec.
jmp+2))
334 ; Load the first sector of LDLINUX.SYS; this used to be all proper
335 ; with parsing the superblock and root directory; it doesn't fit
336 ; together with EBIOS support, unfortunately.
338 mov eax,[FirstSector
] ; Sector start
339 mov bx,ldlinux_sys
; Where to load it
342 ; Some modicum of integrity checking
343 cmp dword [ldlinux_magic
+4],LDLINUX_MAGIC^HEXDATE
350 ; getonesec: get one disk sector
353 mov bp,1 ; One sector
357 ; getlinsec: load a sequence of BP floppy sector given by the linear sector
358 ; number in EAX into the buffer at ES:BX. We try to optimize
359 ; by loading up to a whole track at a time, but the user
360 ; is responsible for not crossing a 64K boundary.
361 ; (Yes, BP is weird for a count, but it was available...)
363 ; On return, BX points to the first byte after the transferred
366 ; This routine assumes CS == DS, and trashes most registers.
368 ; Stylistic note: use "xchg" instead of "mov" when the source is a register
369 ; that is dead from that point; this saves space. However, please keep
370 ; the order to dst,src to keep things sane.
373 add eax,[bsHidden
] ; Add partition offset
374 xor edx,edx ; Zero-extend LBA (eventually allow 64 bits)
376 .
jmp: jmp strict
short getlinsec_cbios
381 ; getlinsec implementation for EBIOS (EDD)
385 push bp ; Sectors left
387 call maxtrans
; Enforce maximum transfer size
388 movzx edi,bp ; Sectors we are about to read
405 mov ah,42h ; Extended Read
409 lea sp,[si+16] ; Remove DAPA
412 add eax,edi ; Advance sector pointer
413 sub bp,di ; Sectors left
414 shl di,SECTOR_SHIFT
; 512-byte sectors
415 add bx,di ; Advance buffer pointer
422 ; Some systems seem to get "stuck" in an error state when
423 ; using EBIOS. Doesn't happen when using CBIOS, which is
424 ; good, since some other systems get timeout failures
425 ; waiting for the floppy disk to spin up.
427 pushad ; Try resetting the device
432 loop .retry
; CX-- and jump if not zero
434 ;shr word [MaxTransfer],1 ; Reduce the transfer size
437 ; Total failure. Try falling back to CBIOS.
438 mov byte [getlinsec.
jmp+1],(getlinsec_cbios
-(getlinsec.
jmp+2))
439 ;mov byte [MaxTransfer],63 ; Max possibe CBIOS transfer
442 ; ... fall through ...
447 ; getlinsec implementation for legacy CBIOS
456 movzx esi,word [bsSecPerTrack
]
457 movzx edi,word [bsHeads
]
459 ; Dividing by sectors to get (track,sector): we may have
460 ; up to 2^18 tracks, so we need to use 32-bit arithmetric.
464 xchg cx,dx ; CX <- sector index (0-based)
467 div edi ; Convert track to head/cyl
469 ; We should test this, but it doesn't fit...
474 ; Now we have AX = cyl, DX = head, CX = sector (0-based),
475 ; BP = sectors to transfer, SI = bsSecPerTrack,
476 ; ES:BX = data target
479 call maxtrans
; Enforce maximum transfer size
481 ; Must not cross track boundaries, so BP <= SI-CX
488 shl ah,6 ; Because IBM was STOOPID
489 ; and thought 8 bits were enough
490 ; then thought 10 bits were enough...
491 inc cx ; Sector numbers are 1-based, sigh
496 xchg ax,bp ; Sector to transfer count
497 mov ah,02h ; Read sectors
505 movzx ecx,al ; ECX <- sectors transferred
506 shl ax,SECTOR_SHIFT
; Convert sectors in AL to bytes in AX
521 xchg ax,bp ; Sectors transferred <- 0
522 shr word [MaxTransfer
],1
524 ; Fall through to disk_error
527 ; kaboom: write a message and bail out.
533 mov sp,StackBuf
-4 ; Reset stack
534 mov ds,si ; Reset data segment
535 pop dword [fdctab
] ; Restore FDC table
536 .
patch: ; When we have full code, intercept here
539 ; Write error message, this assumes screen page 0
543 mov ah,0Eh
; Write to screen as TTY
544 mov bx,0007h ; Attribute
549 int 16h ; Wait for keypress
550 int 19h ; And try once more to boot...
551 .
norge: jmp short .norge
; If int 19h returned; this is the end
554 ; Truncate BP to MaxTransfer
563 ; Error message on failure
565 bailmsg: db 'Boot error', 0Dh, 0Ah, 0
567 ; This fails if the boot sector overflows
570 FirstSector
dd 0xDEADBEEF ; Location of sector 1
571 MaxTransfer
dw 0x007F ; Max transfer size
572 bootsignature
dw 0AA55h
575 ; ===========================================================================
577 ; ===========================================================================
578 ; Start of LDLINUX.SYS
579 ; ===========================================================================
583 syslinux_banner
db 0Dh, 0Ah
589 db version_str
, ' ', date
, ' ', 0
590 db 0Dh, 0Ah, 1Ah ; EOF if we "type" this in DOS
593 ldlinux_magic
dd LDLINUX_MAGIC
594 dd LDLINUX_MAGIC^HEXDATE
597 ; This area is patched by the installer. It is found by looking for
598 ; LDLINUX_MAGIC, plus 8 bytes.
601 LDLDwords
dw 0 ; Total dwords starting at ldlinux_sys
602 LDLSectors
dw 0 ; Number of sectors - (bootsec+this sec)
603 CheckSum
dd 0 ; Checksum starting at ldlinux_sys
604 ; value = LDLINUX_MAGIC - [sum of dwords]
606 ; Space for up to 64 sectors, the theoretical maximum
607 SectorPtrs times
64 dd 0
611 ; Note that some BIOSes are buggy and run the boot sector at 07C0:0000
612 ; instead of 0000:7C00 and the like. We don't want to add anything
613 ; more to the boot sector, so it is written to not assume a fixed
614 ; value in CS, but we don't want to deal with that anymore from now
621 ; Tell the user we got this far
623 mov si,syslinux_banner
627 ; Tell the user if we're using EBIOS or CBIOS
631 cmp byte [getlinsec.
jmp+1],(getlinsec_ebios
-(getlinsec.
jmp+2))
639 %define HAVE_BIOSNAME
1
644 ; Now we read the rest of LDLINUX.SYS. Don't bother loading the first
645 ; sector again, though.
649 mov bx,7C00h
+2*SECTOR_SIZE
; Where we start loading
655 lodsd ; First sector of this chunk
663 inc edx ; Next linear sector
664 cmp [si],edx ; Does it match
665 jnz .chunk_ready
; If not, this is it
666 add si,4 ; If so, add sector to chunk
667 jmp short .make_chunk
678 ; All loaded up, verify that we got what we needed.
679 ; Note: the checksum field is embedded in the checksum region, so
680 ; by the time we get to the end it should all cancel out.
685 mov edx,-LDLINUX_MAGIC
691 and edx,edx ; Should be zero
692 jz all_read
; We're cool, go for it!
695 ; Uh-oh, something went bad...
697 mov si,checksumerr_msg
702 ; -----------------------------------------------------------------------------
703 ; Subroutines that have to be in the first sector
704 ; -----------------------------------------------------------------------------
708 ; writestr: write a null-terminated string to the console
709 ; This assumes we're on page 0. This is only used for early
710 ; messages, so it should be OK.
716 mov ah,0Eh
; Write to screen as TTY
717 mov bx,0007h ; Attribute
723 ; getlinsecsr: save registers, call getlinsec, restore registers
731 ; Checksum error message
733 checksumerr_msg
db ' Load error - ', 0 ; Boot failed appended
738 cbios_name
db 'CBIOS', 0
739 ebios_name
db 'EBIOS', 0
746 cmp word [Debug_Magic
],0D00Dh
751 rl_checkpt
equ $
; Must be <= 8000h
753 rl_checkpt_off
equ ($
-$$
)
755 %if rl_checkpt_off
> 400h
756 %error
"Sector 1 overflow"
760 ; ----------------------------------------------------------------------------
761 ; End of code and data that have to be in the first sector
762 ; ----------------------------------------------------------------------------
766 ; Let the user (and programmer!) know we got this far. This used to be
767 ; in Sector 1, but makes a lot more sense here.
774 ; Insane hack to expand the superblock to dwords
780 mov cx,superinfo_size
784 stosd ; Store expanded word
786 stosd ; Store expanded byte
790 ; Compute some information about this filesystem.
793 ; First, generate the map of regions
798 mov edx,[bsHugeSectors
]
800 mov [TotalSectors
],edx
805 mov eax,[bxResSectors
]
806 mov [FAT
],eax ; Beginning of FAT
810 mov edx,[bootsec
+36] ; FAT32 BPB_FATsz32
814 mov [RootDirArea
],eax ; Beginning of root directory
815 mov [RootDir
],eax ; For FAT12/16 == root dir location
817 mov edx,[bxRootDirEnts
]
818 add dx,SECTOR_SIZE
/32-1
819 shr dx,SECTOR_SHIFT
-5
820 mov [RootDirSize
],edx
822 mov [DataArea
],eax ; Beginning of data area
824 ; Next, generate a cluster size shift count and mask
825 mov eax,[bxSecPerClust
]
830 mov [ClustByteShift
],cl
839 ; FAT12, FAT16 or FAT28^H^H32? This computation is fscking ridiculous.
844 shr eax,cl ; cl == ClustShift
845 mov cl,nextcluster_fat12
-(nextcluster
+2)
846 cmp eax,4085 ; FAT12 limit
848 mov cl,nextcluster_fat16
-(nextcluster
+2)
849 cmp eax,65525 ; FAT16 limit
852 ; FAT32, root directory is a cluster chain
855 mov eax,[bootsec
+44] ; Root directory cluster
860 mov cl,nextcluster_fat28
-(nextcluster
+2)
862 mov byte [nextcluster
+1],cl
865 ; Common initialization code
867 %include "cpuinit.inc"
871 ; Clear Files structures
874 mov cx,(MAX_OPEN
*open_file_t_size
)/4
879 ; Initialize the metadata cache
884 ; Now, everything is "up and running"... patch kaboom for more
885 ; verbosity and using the full screen system
888 mov dword [kaboom.patch
],0e9h
+((kaboom2
-(kaboom.patch
+3)) << 8)
891 ; Now we're all set to start with our *real* business. First load the
892 ; configuration file (if any) and parse it.
894 ; In previous versions I avoided using 32-bit registers because of a
895 ; rumour some BIOSes clobbered the upper half of 32-bit registers at
896 ; random. I figure, though, that if there are any of those still left
897 ; they probably won't be trying to install Linux on them...
899 ; The code is still ripe with 16-bitisms, though. Not worth the hassle
900 ; to take'm out. In fact, we may want to put them back if we're going
901 ; to boot ELKS at some point.
905 ; Load configuration file
912 ; Now we have the config file open. Parse the config file and
913 ; run the user interface.
918 ; Linux kernel loading code is common.
920 %include "runkernel.inc"
923 ; COMBOOT-loading code
925 %include "comboot.inc"
927 %include "cmdline.inc"
930 ; Boot sector loading code
932 %include "bootsect.inc"
940 ; allocate_file: Allocate a file structure
953 .
check: cmp dword [bx], byte 0
955 add bx,open_file_t_size
; ZF = 0
957 ; ZF = 0 if we fell out of the loop
963 ; Search the root directory for a pre-mangled filename in DS:DI.
965 ; NOTE: This file considers finding a zero-length file an
966 ; error. This is so we don't have to deal with that special
967 ; case elsewhere in the program (most loops have the test
973 ; DX:AX = file length in bytes
989 mov eax,[RootDir
] ; First root directory sector
993 ; GS:SI now points to this sector
995 mov cx,SECTOR_SIZE
/32 ; 32 == directory entry size
998 jz .failure
; Hit directory high water mark
1012 jnc .scansector
; CF is set if we're at end
1014 ; If we get here, we failed
1021 xor eax,eax ; ZF <- 1
1024 mov eax,[gs:si+28] ; File size
1025 add eax,SECTOR_SIZE
-1
1026 shr eax,SECTOR_SHIFT
1027 jz .failure
; Zero-length file
1031 mov dx,[gs:si+20] ; High cluster word
1033 mov dx,[gs:si+26] ; Low cluster word
1037 mov [bx],edx ; Starting sector
1039 mov eax,[gs:si+28] ; File length again
1040 mov dx,[gs:si+30] ; 16-bitism, sigh
1042 and eax,eax ; ZF <- 0
1051 ; writechr: Write a single character in AL to the console without
1052 ; mangling any registers; handle video pages correctly.
1055 call write_serial
; write to serial port if needed
1057 test byte [cs:DisplayCon
], 01h
1061 mov bl,07h ; attribute
1062 mov bh,[cs:BIOS_page
] ; current page
1071 ; kaboom2: once everything is loaded, replace the part of kaboom
1072 ; starting with "kaboom.patch" with this part
1075 mov si,err_bootfailed
1079 int 19h ; And try once more to boot...
1080 .
norge: jmp short .norge
; If int 19h returned; this is the end
1083 ; mangle_name: Mangle a DOS filename pointed to by DS:SI into a buffer pointed
1084 ; to by ES:DI; ends on encountering any whitespace
1088 mov cx,11 ; # of bytes to write
1091 cmp al,' ' ; If control or space, end
1093 cmp al,'.' ; Period -> space-fill
1100 jmp short mn_not_lower
1101 mn_is_period: mov al,' ' ; We need to space-fill
1102 mn_period_loop: cmp cx,3 ; If <= 3 characters left
1103 jbe mn_loop
; Just ignore it
1104 stosb ; Otherwise, write a period
1105 loop mn_period_loop
; Dec CX and (always) jump
1106 mn_not_uslower: cmp al,ucase_low
1110 mov bx,ucase_tab
-ucase_low
1113 loop mn_loop
; Don't continue if too long
1115 mov al,' ' ; Space-fill name
1116 rep stosb ; Doesn't do anything if CX=0
1120 ; Upper-case table for extended characters; this is technically code page 865,
1121 ; but code page 437 users will probably not miss not being able to use the
1122 ; cent sign in kernel images too much :-)
1124 ; The table only covers the range 129 to 164; the rest we can deal with.
1128 ucase_tab
db 154, 144, 'A', 142, 'A', 143, 128, 'EEEIII'
1129 db 142, 143, 144, 146, 146, 'O', 153, 'OUUY', 153, 154
1130 db 157, 156, 157, 158, 159, 'AIOU', 165
1133 ; unmangle_name: Does the opposite of mangle_name; converts a DOS-mangled
1134 ; filename to the conventional representation. This is needed
1135 ; for the BOOT_IMAGE= parameter for the kernel.
1136 ; NOTE: A 13-byte buffer is mandatory, even if the string is
1137 ; known to be shorter.
1139 ; DS:SI -> input mangled file name
1140 ; ES:DI -> output buffer
1142 ; On return, DI points to the first byte after the output name,
1143 ; which is set to a null byte.
1146 push si ; Save pointer to original name
1154 mov bp,di ; Position of last nonblank+1
1155 un_cb_space: loop un_copy_body
1157 mov al,'.' ; Don't save
1166 un_ce_space: loop un_copy_ext
1173 ; lower_case: Lower case a character in AL
1182 lc_1: cmp al,lcase_low
1187 mov bx,lcase_tab
-lcase_low
1193 ; getfssec_edx: Get multiple sectors from a file
1195 ; This routine makes sure the subtransfers do not cross a 64K boundary,
1196 ; and will correct the situation if it does, UNLESS *sectors* cross
1200 ; EDX -> Current sector number
1201 ; CX -> Sector count (0FFFFh = until end of file)
1202 ; Must not exceed the ES segment
1203 ; Returns EDX=0, CF=1 on EOF (not necessarily error)
1204 ; All arguments are advanced to reflect data read.
1210 xor ebp,ebp ; Fragment sector count
1211 push edx ; Starting sector pointer
1219 add ax,bx ; Now AX = how far into 64K block we are
1220 not ax ; Bytes left in 64K block
1222 shr eax,SECTOR_SHIFT
; Sectors left in 64K block
1224 jnb .do_read
; Unless there is at least 1 more sector room...
1225 mov eax,edx ; Current sector
1226 inc edx ; Predict it's the linearly next sector
1229 cmp edx,eax ; Did it match?
1232 pop eax ; Starting sector pointer
1234 lea eax,[eax+ebp-1] ; This is the last sector actually read
1236 add bx,bp ; Adjust buffer pointer
1252 ; getfssec: Get multiple sectors from a file
1254 ; Same as above, except SI is a pointer to a open_file_t
1257 ; DS:SI -> Pointer to open_file_t
1258 ; CX -> Sector count (0FFFFh = until end of file)
1259 ; Must not exceed the ES segment
1260 ; Returns CF=1 on EOF (not necessarily error)
1261 ; All arguments are advanced to reflect data read.
1279 ; nextcluster: Advance a cluster pointer in EDI to the next cluster
1280 ; pointed at in the FAT tables. CF=0 on return if end of file.
1283 jmp strict
short nextcluster_fat28
; This gets patched
1293 pushf ; Save the shifted-out LSB (=CF)
1322 ; FAT16 decoding routine.
1329 shr eax,SECTOR_SHIFT
-1
1334 movzx edi,word [gs:si+bx]
1341 ; FAT28 ("FAT32") decoding routine.
1348 shr eax,SECTOR_SHIFT
-2
1354 mov edi,dword [gs:si+bx]
1355 and edi,0FFFFFFFh
; 28 bits only
1363 ; nextsector: Given a sector in EAX on input, return the next sector
1364 ; of the same filesystem object, which may be the root
1365 ; directory or a cluster chain. Returns EOF.
1385 test edi,[ClustMask
]
1388 ; It's not the final sector in a cluster
1393 push gs ; nextcluster trashes gs
1400 ; Now EDI contains the cluster number
1403 jc .exit
; There isn't anything else...
1405 ; New cluster number now in EDI
1407 shl edi,cl ; CF <- 0, unless something is very wrong
1418 ; getfatsector: Check for a particular sector (in EAX) in the FAT cache,
1419 ; and return a pointer in GS:SI, loading it if needed.
1424 add eax,[FAT
] ; FAT starting address
1427 ; -----------------------------------------------------------------------------
1429 ; -----------------------------------------------------------------------------
1431 %include "getc.inc" ; getc et al
1432 %include "conio.inc" ; Console I/O
1433 %include "writestr.inc" ; String output
1434 %include "parseconfig.inc" ; High-level config file handling
1435 %include "parsecmd.inc" ; Low-level config file handling
1436 %include "bcopy32.inc" ; 32-bit bcopy
1437 %include "loadhigh.inc" ; Load a file into high memory
1438 %include "font.inc" ; VGA font stuff
1439 %include "graphics.inc" ; VGA graphics
1440 %include "highmem.inc" ; High memory sizing
1441 %include "strcpy.inc" ; strcpy()
1442 %include "cache.inc" ; Metadata disk cache
1444 ; -----------------------------------------------------------------------------
1445 ; Begin data section
1446 ; -----------------------------------------------------------------------------
1450 ; Lower-case table for codepage 865
1454 lcase_tab
db 135, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138
1455 db 139, 140, 141, 132, 134, 130, 145, 145, 147, 148, 149
1456 db 150, 151, 152, 148, 129, 155, 156, 155, 158, 159, 160
1457 db 161, 162, 163, 164, 164
1459 copyright_str
db ' Copyright (C) 1994-', year
, ' H. Peter Anvin'
1461 boot_prompt
db 'boot: ', 0
1462 wipe_char
db BS
, ' ', BS
, 0
1463 err_notfound
db 'Could not find kernel image: ',0
1464 err_notkernel
db CR
, LF
, 'Invalid or corrupt kernel image.', CR
, LF
, 0
1465 err_noram
db 'It appears your computer has less than '
1467 db 'K of low ("DOS")'
1469 db 'RAM. Linux needs at least this amount to boot. If you get'
1471 db 'this message in error, hold down the Ctrl key while'
1473 db 'booting, and I will take your word for it.', CR
, LF
, 0
1474 err_badcfg
db 'Unknown keyword in syslinux.cfg.', CR
, LF
, 0
1475 err_noparm
db 'Missing parameter in syslinux.cfg.', CR
, LF
, 0
1476 err_noinitrd
db CR
, LF
, 'Could not find ramdisk image: ', 0
1477 err_nohighmem
db 'Not enough memory to load specified kernel.', CR
, LF
, 0
1478 err_highload
db CR
, LF
, 'Kernel transfer failure.', CR
, LF
, 0
1479 err_oldkernel
db 'Cannot load a ramdisk with an old kernel image.'
1481 err_notdos
db ': attempted DOS system call', CR
, LF
, 0
1482 err_comlarge
db 'COMBOOT image too large.', CR
, LF
, 0
1483 err_a20
db CR
, LF
, 'A20 gate not responding!', CR
, LF
, 0
1484 err_bootfailed
db CR
, LF
, 'Boot failed: please change disks and press '
1485 db 'a key to continue.', CR
, LF
, 0
1486 ready_msg
db 'Ready.', CR
, LF
, 0
1487 crlfloading_msg
db CR
, LF
1488 loading_msg
db 'Loading ', 0
1491 aborted_msg
db ' aborted.' ; Fall through to crlf_msg!
1494 crff_msg
db CR
, FF
, 0
1495 syslinux_cfg
db 'SYSLINUXCFG' ; Mangled form
1496 ConfigName
db 'syslinux.cfg',0 ; Unmangled form
1498 manifest
db 'MANIFEST '
1501 ; Command line options we'd like to take a look at
1503 ; mem= and vga= are handled as normal 32-bit integer values
1504 initrd_cmd
db 'initrd='
1505 initrd_cmd_len
equ 7
1508 ; Config file keyword table
1510 %include "keywords.inc"
1513 ; Extensions to search for (in *forward* order).
1515 exten_table: db 'CBT',0 ; COMBOOT (specific)
1516 db 'BSS',0 ; Boot Sector (add superblock)
1517 db 'BS ',0 ; Boot Sector
1518 db 'COM',0 ; COMBOOT (same as DOS)
1521 dd 0, 0 ; Need 8 null bytes here
1524 ; Misc initialized (data) variables
1526 %ifdef debug
; This code for debugging only
1527 debug_magic
dw 0D00Dh
; Debug code sentinel
1531 BufSafe
dw trackbufsize
/SECTOR_SIZE
; Clusters we can load into trackbuf
1532 BufSafeSec
dw trackbufsize
/SECTOR_SIZE
; = how many sectors?
1533 BufSafeBytes
dw trackbufsize
; = how many bytes?
1534 EndOfGetCBuf
dw getcbuf
+trackbufsize
; = getcbuf+BufSafeBytes
1536 %if
( trackbufsize
% SECTOR_SIZE
) != 0
1537 %error trackbufsize must be a multiple of SECTOR_SIZE