1 ;; -----------------------------------------------------------------------
3 ;; Copyright 1994-2008 H. Peter Anvin - All Rights Reserved
5 ;; This program is free software; you can redistribute it and/or modify
6 ;; it under the terms of the GNU General Public License as published by
7 ;; the Free Software Foundation, Inc., 53 Temple Place Ste 330,
8 ;; Boston MA 02111-1307, USA; either version 2 of the License, or
9 ;; (at your option) any later version; incorporated herein by reference.
11 ;; -----------------------------------------------------------------------
14 ; This file should be entered with the config file open (for getc)
17 call parse_config ; Parse configuration file
22 ; Check for an ADV boot-once entry
29 ; We apparently have a boot-once set; clear it and
30 ; then execute the boot-once...
32 ; Save the boot-once data; SI = data, CX = length
38 ; Clear the boot-once data from the ADV
39 xor cx,cx ; Set to zero = delete
48 ; Check whether or not we are supposed to display the boot prompt.
51 cmp word [ForcePrompt],0 ; Force prompt?
53 test byte [KbdFlags],5Bh ; Shift Alt Caps Scroll
54 jz auto_boot ; If neither, default boot
57 cmp word [NoEscape],0 ; If NOESCAPE, no prompt,
58 jne auto_boot ; always run default cmd
63 mov byte [FuncFlag],0 ; <Ctrl-F> not pressed
67 ; get the very first character -- we can either time
68 ; out, or receive a character press at this time. Some dorky BIOSes stuff
69 ; a return in the buffer on bootup, so wipe the keyboard buffer first.
71 clear_buffer: mov ah,11h ; Check for pending char
76 jmp short clear_buffer
78 ; For the first character, both KbdTimeout and
79 ; TotalTimeout apply; after that, only TotalTimeout.
82 mov eax,[TotalTimeout]
89 and dword [ThisKbdTo],0 ; For the next time...
94 got_ascii: cmp al,7Fh ; <DEL> == <BS>
99 cmp di,command_line ; Space must not be first
101 enter_char: test byte [FuncFlag],1
102 jnz ctrl_f ; Keystroke after <Ctrl-F>
103 cmp di,max_cmd_len+command_line ; Check there's space
106 call writechr ; Echo to screen
111 cmp al,'F' & 1Fh ; <Ctrl-F>
114 cmp al,'N' & 1Fh ; <Ctrl-N>
117 cmp al,'U' & 1Fh ; <Ctrl-U>
118 je kill_command ; Kill input line
119 cmp al,'V' & 1Fh ; <Ctrl-V>
121 cmp al,'X' & 1Fh ; <Ctrl-X>
123 cmp al,08h ; Backspace
125 backspace: cmp di,command_line ; Make sure there is anything
126 je get_char ; to erase
127 dec di ; Unstore one character
128 mov si,wipe_char ; and erase it from the screen
142 mov byte [FuncFlag],1
150 je .zero ; <Ctrl-F>0 = F10
151 or al,20h ; Lower case
154 cmp al,'a' ; F10-F12 = <Ctrl-F>A, B, C
168 ; AL = 0 if we get here
182 show_help: ; AX = func key # (0 = F1, 9 = F10, 11 = F12)
183 push di ; Save end-of-cmdline pointer
184 shl ax,FILENAME_MAX_LG2 ; Convert to pointer
187 cmp byte [di+NULLOFFSET],NULLFILE
188 je short fk_nofile ; Undefined F-key
190 jz short fk_nofile ; File not found
196 push di ; Command line write pointer
197 mov si,syslinux_banner
206 ; ... fall through ...
208 ; Write the boot prompt and command line again and
209 ; wait for input. Note that this expects the cursor
210 ; to already have been CRLF'd, and that the old value
211 ; of DI (the command line write pointer) is on the stack.
215 pop di ; Command line write pointer
217 mov byte [di],0 ; Null-terminate command line
219 call cwritestr ; Write command line so far
224 ; Show network info (in the form of the ipappend strings)
228 push di ; Command line write pointer
230 mov si,IPAppends ; See comboot.doc
244 ; Jump here to run the default command line
249 mov cx,(max_cmd_len+4) >> 2
251 jmp short load_kernel
254 ; Jump here when the command line is completed
258 cmp di,command_line ; Did we just hit return?
260 xor al,al ; Store a final null
263 load_kernel: ; Load the kernel now
265 ; First we need to mangle the kernel name the way DOS would...
273 ; Fast-forward to first option (we start over from the beginning, since
274 ; mangle_name doesn't necessarily return a consistent ending state.)
279 clin_is_wsp: and al,al
284 clin_opt_ptr: dec si ; Point to first nonblank
285 mov [CmdOptPtr],si ; Save ptr to first option
287 ; If "allowoptions 0", put a null character here in order to ignore any
288 ; user-specified options.
290 mov ax,[AllowOptions]
297 ; Now check if it is a "virtual kernel"
300 mov esi,[HighMemSize] ; Start from top of memory
307 ; ESI updated on return
309 sub di,cx ; Return to beginning of buf
319 ; We *are* using a "virtual kernel"
323 push word real_mode_seg
326 mov si,VKernelBuf+vk_append
327 mov cx,[VKernelBuf+vk_appendlen]
329 mov [CmdLinePtr],di ; Where to add rest of cmd
333 mov si,VKernelBuf+vk_rname
334 mov cx,FILENAME_MAX ; We need ECX == CX later
338 mov al,[VKernelBuf+vk_ipappend]
341 xor bx,bx ; Try only one version
343 mov al, [VKernelBuf+vk_type]
347 ; Is this a "localboot" pseudo-kernel?
349 cmp byte [VKernelBuf+vk_rname+4], 0
351 cmp byte [VKernelBuf+vk_rname], 0
353 jne get_kernel ; No, it's real, go get it
355 mov ax, [VKernelBuf+vk_rname+1]
364 ; Not a "virtual kernel" - check that's OK and construct the command line
366 cmp word [AllowImplicit],byte 0
382 mov [KernelType], cl ; CL == 0 here
385 ; Find the kernel on disk
387 get_kernel: mov byte [KernelName+FILENAME_MAX],0 ; Zero-terminate filename/extension
388 mov di,KernelName+4*IS_PXELINUX
390 mov cx,FILENAME_MAX-5 ; Need 4 chars + null
391 repne scasb ; Scan for final null
393 dec di ; Point to final null
394 .no_skip: mov [KernelExtPtr],di
396 .search_loop: push bx
397 mov di,KernelName ; Search on disk
401 mov eax,[bx] ; Try a different extension
402 mov si,[KernelExtPtr]
406 cmp bx,exten_table_end
407 jna .search_loop ; allow == case (final case)
408 ; Fall into bad_kernel
410 ; bad_kernel: Kernel image not found
411 ; bad_implicit: The user entered a nonvirtual kernel name, with "implicit 0"
422 call unmangle_name ; Get human form
423 mov si,err_notfound ; Complain about missing kernel
428 jmp abort_load ; Ask user for clue
431 ; on_error: bad kernel, but we have onerror set; CX = OnerrorLen
442 pop di ; <E> di == command_line
443 pop bx ; <D> bx == [OnerrorLen]
444 je bad_kernel.really ; Onerror matches command_line already
445 neg bx ; bx == -[OnerrorLen]
446 lea cx,[max_cmd_len+bx]
447 ; CX == max_cmd_len-[OnerrorLen]
448 mov di,command_line+max_cmd_len-1
449 mov byte [di+1],0 ; Enforce null-termination
452 rep movsb ; Make space in command_line
454 pop cx ; <C> cx == [OnerrorLen]
455 pop di ; <B> di == command_line
456 pop si ; <A> si == Onerror
461 ; kernel_corrupt: Called if the kernel file does not seem healthy
463 kernel_corrupt: mov si,err_notkernel
467 ; Get a key, observing ThisKbdTO and ThisTotalTO -- those are timeouts
468 ; which can be adjusted by the caller based on the corresponding
469 ; master variables; on return they're updated.
471 ; This cheats. If we say "no timeout" we actually get a timeout of
479 push word [BIOS_timer]
483 cmp ax,[BIOS_timer] ; Has the timer advanced?
487 dec dword [ThisKbdTo]
489 dec dword [ThisTotalTo]
494 pop cx ; Discard return address
496 mov si,Ontimeout ; Copy ontimeout command
498 mov cx,[OntimeoutLen] ; if we have one...
509 ; This is it! We have a name (and location on the disk)... let's load
510 ; that sucker!! First we have to decide what kind of file this is; base
511 ; that decision on the file extension. The following extensions are
512 ; recognized; case insensitive:
514 ; .com - COMBOOT image
515 ; .cbt - COMBOOT image
518 ; .0 - PXE bootstrap program (PXELINUX only)
520 ; .bss - Boot sector, but transfer over DOS superblock (SYSLINUX only)
521 ; .img - Floppy image (ISOLINUX only)
523 ; Anything else is assumed to be a Linux kernel.
532 ; Alternate entry point for which the return from
533 ; searchdir is stored in memory. This is used for
534 ; COMBOOT function INT 22h, AX=0016h.
537 mov dx,[Kernel_EAX+2]
545 mov [KernelCNameLen],di
550 mov di,KernelName+4*IS_PXELINUX
556 .one_step: mov ecx,[di-4] ; 4 bytes before end
561 ; At this point, DX:AX contains the size of the kernel, SI contains
562 ; the file handle/cluster pointer, and ECX contains the extension (if any.)
564 movzx di,byte [KernelType]
566 jmp [kerneltype_table+di]
569 or ecx,20202000h ; Force lower case (except dot)
592 ; Otherwise Linux kernel
597 mov si,KernelCName ; Save the config file name, for posterity
605 ; This is an image type we can't deal with
611 %if IS_SYSLINUX || IS_MDSLINUX
614 is_bss_sector equ is_bad_image
619 is_disk_image equ is_bad_image
623 boot_prompt db 'boot: ', 0
624 wipe_char db BS, ' ', BS, 0
625 err_badimage db 'Invalid image type for this media type!', CR, LF, 0
626 err_notfound db 'Could not find kernel image: ',0
627 err_notkernel db CR, LF, 'Invalid or corrupt kernel image.', CR, LF, 0
632 dw is_unknown_filetype ; VK_KERNEL
633 dw is_linux_kernel ; VK_LINUX
634 dw is_bootsector ; VK_BOOT
635 dw is_bss_sector ; VK_BSS
636 dw is_bootsector ; VK_PXE
637 dw is_disk_image ; VK_FDIMAGE
638 dw is_comboot_image ; VK_COMBOOT
639 dw is_com32_image ; VK_COM32
640 dw is_config_file ; VK_CONFIG
644 ThisKbdTo resd 1 ; Temporary holder for KbdTimeout
645 ThisTotalTo resd 1 ; Temporary holder for TotalTimeout
646 KernelExtPtr resw 1 ; During search, final null pointer
647 CmdOptPtr resw 1 ; Pointer to first option on cmd line
648 KbdFlags resb 1 ; Check for keyboard escapes
649 FuncFlag resb 1 ; Escape sequences received from keyboard
650 KernelType resb 1 ; Kernel type, from vkernel, if known
654 ; Linux kernel loading code is common.
656 %include "runkernel.inc"
659 ; COMBOOT-loading code
661 %include "comboot.inc"
663 %include "cmdline.inc"
666 ; Boot sector loading code
668 %include "bootsect.inc"
676 ; Hardware cleanup common code
678 %include "cleanup.inc"