2 ;; -----------------------------------------------------------------------
4 ;; Copyright 1994-2002 H. Peter Anvin - All Rights Reserved
6 ;; This program is free software; you can redistribute it and/or modify
7 ;; it under the terms of the GNU General Public License as published by
8 ;; the Free Software Foundation, Inc., 53 Temple Place Ste 330,
9 ;; Bostom MA 02111-1307, USA; either version 2 of the License, or
10 ;; (at your option) any later version; incorporated herein by reference.
12 ;; -----------------------------------------------------------------------
15 ; This file should be entered with the config file open (for getc)
17 call parse_config ; Parse configuration file
20 ; Check whether or not we are supposed to display the boot prompt.
23 cmp word [ForcePrompt],byte 0 ; Force prompt?
25 test byte [KbdFlags],5Bh ; Caps, Scroll, Shift, Alt
26 jz auto_boot ; If neither, default boot
32 mov byte [FuncFlag],0 ; <Ctrl-F> not pressed
35 ; get the very first character -- we can either time
36 ; out, or receive a character press at this time. Some dorky BIOSes stuff
37 ; a return in the buffer on bootup, so wipe the keyboard buffer first.
39 clear_buffer: mov ah,1 ; Check for pending char
44 jmp short clear_buffer
50 jz get_char ; Timeout == 0 -> no timeout
51 inc cx ; The first loop will happen
52 ; immediately as we don't
53 ; know the appropriate DX value
58 mov dx,[BIOS_timer] ; Get time "of day"
60 cmp dx,ax ; Has the timer advanced?
64 loop time_loop ; If so, decrement counter
68 mov si,Ontimeout ; Copy ontimeout command
69 mov cx,[OntimeoutLen] ; if we have one...
74 get_char_pop: pop eax ; Clear stack
82 got_ascii: cmp al,7Fh ; <DEL> == <BS>
87 cmp di,command_line ; Space must not be first
89 enter_char: test byte [FuncFlag],1
97 .not_ctrl_f: cmp di,max_cmd_len+command_line ; Check there's space
100 call writechr ; Echo to screen
102 not_ascii: mov byte [FuncFlag],0
105 cmp al,06h ; <Ctrl-F>
107 cmp al,15h ; <Ctrl-U>
108 je kill_command ; Kill input line
109 cmp al,16h ; <Ctrl-V>
111 cmp al,08h ; Backspace
113 backspace: cmp di,command_line ; Make sure there is anything
114 je get_char ; to erase
115 dec di ; Unstore one character
116 mov si,wipe_char ; and erase it from the screen
125 mov byte [FuncFlag],1
129 ctrl_f_0: add al,10 ; <Ctrl-F>0 == F10
135 ; AL = 0 if we get here
141 show_help: ; AX = func key # (0 = F1, 9 = F10)
142 push di ; Save end-of-cmdline pointer
143 shl ax,FILENAME_MAX_LG2 ; Convert to pointer
146 cmp byte [di],NULLFILE
147 je short fk_nofile ; Undefined F-key
149 jz short fk_nofile ; File not found
157 push di ; Command line write pointer
158 mov si,syslinux_banner
163 ; ... fall through ...
165 ; Write the boot prompt and command line again and
166 ; wait for input. Note that this expects the cursor
167 ; to already have been CRLF'd, and that the old value
168 ; of DI (the command line write pointer) is on the stack.
172 pop di ; Command line write pointer
174 mov byte [di],0 ; Null-terminate command line
176 call cwritestr ; Write command line so far
182 mov cx,(max_cmd_len+4) >> 2
184 jmp short load_kernel
187 cmp di,command_line ; Did we just hit return?
189 xor al,al ; Store a final null
192 load_kernel: ; Load the kernel now
194 ; First we need to mangle the kernel name the way DOS would...
204 ; Fast-forward to first option (we start over from the beginning, since
205 ; mangle_name doesn't necessarily return a consistent ending state.)
210 clin_is_wsp: and al,al
215 clin_opt_ptr: dec si ; Point to first nonblank
216 mov [CmdOptPtr],si ; Save ptr to first option
218 ; If "allowoptions 0", put a null character here in order to ignore any
219 ; user-specified options.
221 mov ax,[AllowOptions]
228 ; Now check if it is a "virtual kernel"
236 xor si,si ; Point to first vkernel
239 repe cmpsb ; Is this it?
246 ; Not a "virtual kernel" - check that's OK and construct the command line
248 cmp word [AllowImplicit],byte 0
264 ; Find the kernel on disk
266 get_kernel: mov byte [KernelName+FILENAME_MAX],0 ; Zero-terminate filename/extension
267 %if IS_SYSLINUX || IS_MDSLINUX ; SYSLINUX has to deal with DOS mangled names...
268 mov eax,[KernelName+8] ; Save initial extension
269 mov [exten_table_end],eax ; Last case == initial ext.
273 mov cx,FILENAME_MAX-5 ; Need 4 chars + null
274 repne scasb ; Scan for final null
276 dec di ; Point to final null
277 .no_skip: mov [KernelExtPtr],di
280 .search_loop: push bx
281 mov di,KernelName ; Search on disk
285 mov eax,[bx] ; Try a different extension
286 %if IS_SYSLINUX || IS_MDSLINUX
287 mov [KernelName+8],eax
289 mov si,[KernelExtPtr]
294 cmp bx,exten_table_end
295 jna .search_loop ; allow == case (final case)
296 ; Fall into bad_kernel
298 ; bad_kernel: Kernel image not found
299 ; bad_implicit: The user entered a nonvirtual kernel name, with "implicit 0"
310 call unmangle_name ; Get human form
311 mov si,err_notfound ; Complain about missing kernel
316 jmp abort_load ; Ask user for clue
319 ; on_error: bad kernel, but we have onerror set
330 pop di ; <E> di == command_line
331 pop bx ; <D> bx == [OnerrorLen]
332 je bad_kernel.really ; Onerror matches command_line already
333 neg bx ; bx == -[OnerrorLen]
334 lea cx,[max_cmd_len+bx]
335 ; CX == max_cmd_len-[OnerrorLen]
336 mov di,command_line+max_cmd_len-1
337 mov byte [di+1],0 ; Enforce null-termination
340 rep movsb ; Make space in command_line
342 pop cx ; <C> cx == [OnerrorLen]
343 pop di ; <B> di == command_line
344 pop si ; <A> si == Onerror
349 ; vk_found: We *are* using a "virtual kernel"
356 push es ; Restore old DS
359 push word real_mode_seg
362 mov si,VKernelBuf+vk_append
363 mov cx,[VKernelBuf+vk_appendlen]
365 mov [CmdLinePtr],di ; Where to add rest of cmd
367 pop di ; DI -> KernelName
369 mov si,VKernelBuf+vk_rname
370 mov cx,FILENAME_MAX ; We need ECX == CX later
374 mov al,[VKernelBuf+vk_ipappend]
377 xor bx,bx ; Try only one version
379 %if IS_SYSLINUX || IS_MDSLINUX
382 ; Is this a "localboot" pseudo-kernel?
383 cmp byte [VKernelBuf+vk_rname], 0
384 jne get_kernel ; No, it's real, go get it
386 mov ax, [VKernelBuf+vk_rname+1]
391 ; kernel_corrupt: Called if the kernel file does not seem healthy
393 kernel_corrupt: mov si,err_notkernel
396 ; This is it! We have a name (and location on the disk)... let's load
397 ; that sucker!! First we have to decide what kind of file this is; base
398 ; that decision on the file extension. The following extensions are
399 ; recognized; case insensitive:
401 ; .com - COMBOOT image
402 ; .cbt - COMBOOT image
405 ; .0 - PXE bootstrap program (PXELINUX only)
407 ; .bss - Boot sector, but transfer over DOS superblock (SYSLINUX only)
408 ; .img - Floppy image (ISOLINUX only)
410 ; Anything else is assumed to be a Linux kernel.
418 mov [KernelCNameLen],di
421 %if IS_SYSLINUX || IS_MDSLINUX
422 mov ecx,[KernelName+7]
433 .one_step: mov ecx,[di-4] ; 4 bytes before end
439 ; At this point, DX:AX contains the size of the kernel, and SI contains
440 ; the file handle/cluster pointer.
442 or ecx,20202000h ; Force lower case
458 %if IS_SYSLINUX || IS_MDSLINUX
471 ; Otherwise Linux kernel