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 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
|
;-----------------------------------------------------------------------------
; ElTorito.asm
;
; El Torito Bootable CD-ROM driver which does not reset the CD-ROM drive upon
; loading, but instead accesses the drive through BIOS system calls
;
; MIT License
;
; (c) 2000 by Gary Tong
; (c) 2001-2009 by Bart Lagerweij
;
; Permission is hereby granted, free of charge, to any person obtaining a copy
; of this software and associated documentation files (the "Software"), to deal
; in the Software without restriction, including without limitation the rights
; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
; copies of the Software, and to permit persons to whom the Software is
; furnished to do so, subject to the following conditions:
;
; The above copyright notice and this permission notice shall be included in
; all copies or substantial portions of the Software.
;
; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
; THE SOFTWARE.
;
;-----------------------------------------------------------------------------
; To assemble and link, use these commands with NASM 2.x:
; nasm -Ox -f bin -o eltorito.sys eltorito.asm
; To enable Trace markers uncomment the line below
; DEBUG_TRACERS=1
; To enable debug info uncomment the line below
; DEBUG=1
%ifdef DEBUG_TRACERS
%macro TRACER 1
call debug_tracer
db %1
%endmacro
%else
%macro TRACER 1
%endmacro
%endif ; DEBUG_TRACERS
%define Ver '1.5'
%define CR 0DH, 0Ah
RPolyH equ 0EDB8h
RPolyL equ 08320h
section .text align=16
org 0
;=============================================================================
Cdrom:
NextDriver dd -1 ;-+
Attributes dw 0C800h ; |
Pointers dw Strategy ; |
dw Commands ; | MSCDEX requires this
DeviceName db 'ELTORITO' ; | data in these locations
dw 0 ; |
DriveLetter db 0 ; |
NumUnitsSupp db 1 ;-+
DriverName db 'El-Torito CD-ROM Device Driver',0
align 4, db 0
ReqHdrLoc dd 0
XferAddr dd 0
Checksum dd -1
DriveNumber db 0
ReadBytes db 0 ;0 --> 2048 bytes/sector
;1 --> 1024 bytes/sector
;2 --> 512 bytes/sector
Routines dw Init ;Init ;0
dw Unsupported ;MediaCheck ;1
dw Unsupported ;BuildBPB ;2
dw IoctlInput ;IoctlInput ;3
dw Unsupported ;Input ;4
dw Unsupported ;NonDesInput ;5
dw Unsupported ;InputStatus ;6
dw Unsupported ;InputFlush ;7
dw Unsupported ;Output ;8
dw Unsupported ;OutputVerify ;9
dw Unsupported ;OutputStatus ;10
dw Unsupported ;OutputFlush ;11
dw IoctlOutput ;IoctlOutput ;12
dw DoNothing ;DeviceOpen ;13
dw DoNothing ;DeviceClose ;14
dw ReadL ;ReadL ;128
IoctlICtrl dw Raddr ;Raddr ;0
dw Unsupported ;LocHead ;1
dw Unsupported ;(Reserved) ;2
dw Unsupported ;ErrStat ;3
dw Unsupported ;AudInfo ;4
dw DrvBytes ;DrvBytes ;5
dw DevStat ;DevStat ;6
dw SectSize ;SectSize ;7
dw VolSize ;VolSize ;8
dw MedChng ;MedChng ;9
SpecPkt times 19 db 0 ; offset 77h in 1.4
times 13 db 0 ; unknown extra 00s in 1.4
Greeting db 'El-Torito Bootable CD-ROM Driver for Dos v',Ver,', http://www.nu2.nu/eltorito/',CR
db ' (c) 2000 by Gary Tong',CR
db ' (c) 2001-2002 by Bart Lagerweij',CR,0
DblSpace db ' ',0
;=============================================================================
Strategy:
mov word [cs:ReqHdrLoc],bx
mov word [cs:ReqHdrLoc+2],es
retf
;=============================================================================
Commands:
push ax
push bx
push cx
push dx
push si
push di
push bp
; pushad
push ds
push es
TRACER 'C'
cld ;Clear direction
sti ;Enable interrupts
mov ax, cs ;ds=cs
mov ds, ax
les bx,[ReqHdrLoc] ;seg:offset ptr into es:bx
xor ax,ax
mov al,[es:bx+2] ;Get Command code
%ifdef DEBUG
call print_hex8
%endif
cmp al,15
jb Mult2 ;If 0-14
cmp al,128
jb UnknownCmd ;If 15-127
cmp al,129
jb ShiftDown ;If 128
UnknownCmd: mov al,121 ;8 = Unsupported (Reserved)
ShiftDown: sub al,113 ;128 --> 15, 121 --> 8
Mult2: shl al,1 ;Convert into offset (*2)
mov di,Routines
add di,ax
call word [di] ;Execute desired command
or ax,100h ;Set Return Status's Done bit
lds bx,[ReqHdrLoc] ;seg:offset ptr into ds:bx
mov [bx+3],ax ;Save Status
%ifdef DEBUG
cmp byte [cs:buffer+2048], 96h
je buffer_ok
mov al, '!'
call print_char
jmp $
buffer_ok:
%endif
TRACER 'c'
pop es
pop ds
; popad
pop bp
pop di
pop si
pop dx
pop cx
pop bx
pop ax
retf
;=============================================================================
Unsupported: ;Unsupported Command
mov ax,8003h ;Set Status Error bit,
TRACER 'U'
TRACER 'C'
retn ; Error 3 = Unknown Command
;=============================================================================
IoctlInput: ;IOCTL Input Routine
mov di,[es:bx+14] ;es:bx --> Request Header
mov es,[es:bx+16] ;Get Xfer Address into es:di
xor ax,ax ;Get Control Block Code
mov al,[es:di]
%ifdef DEBUG
TRACER 'I'
TRACER 'O'
call print_hex8
%endif
cmp al,10
jb UnkIoctlI ;If 0-9
mov al,2 ;Map to Unsupported
UnkIoctlI: shl al,1 ;Convert into offset (*2)
mov si,IoctlICtrl
add si,ax
call word [si] ;Execute desired command
retn
;=============================================================================
Raddr: ;Return Device Header Address
TRACER 'A'
mov word [es:di+1],0
mov [es:di+3],cs
xor ax, ax ;Set Return Status = success
TRACER 'a'
retn
;=============================================================================
DrvBytes: ;Read Drive Bytes
TRACER 'B'
push di ;Save original Xfer Addr
add di,2 ;Point to 1st dest byte
mov si,Greeting ;Point to Greeting
DrvB: movsb ;Copy over a byte
cmp byte [si],13 ;Is next char a CR?
jne DrvB ;Loop if not
sub di,2 ;Get #bytes copied into ax
mov ax,di
pop di ;Retrieve original Xfer Addr
sub ax,di
mov byte [es:di+1],al ;and save it
mov ax,0 ;Set Return Status = success
TRACER 'b'
retn
;=============================================================================
DevStat: ;Return Device Status
TRACER 'D'
mov word [es:di+1],202h ;Door closed
mov word [es:di+3],0 ;Door unlocked
;Supports only cooked reading
;Read only
;Data read only
;No interleaving
;No prefetching
;No audio channel manipulation
;Supports both HSG and Redbook
; addressing modes
xor ax, ax ;Set Return Status = success
TRACER 'd'
retn
;=============================================================================
SectSize: ;Return Sector Size
TRACER 'S'
mov word [es:di+2],2048
mov ax,0 ;Set Return Status = success
TRACER 's'
retn
;=============================================================================
VolSize: ;Return Volume Size
TRACER 'V'
call PriVolDesc ;Get and Check Primary Volume
; Descriptor
mov ax,800Fh ;Assume Invalid Disk Change
jc VolExit ;If Read Failure
mov ax,word [Buffer+80] ;Read Successful
mov word [es:di+1],ax ;Copy over Volume Size
mov ax,word [Buffer+82]
mov word [es:di+3],ax
mov ax,0 ;Set Return Status = success
VolExit:
TRACER 'v'
retn
;=============================================================================
MedChng: ;Return Media Changed Status
TRACER 'M'
call PriVolDesc ;Get and Check Primary Volume
; Descriptor
mov byte [es:di+1],-1 ;Assume Media Changed
mov ax,800Fh ; and Invalid Disk Change
jc MedExit ;If Media Changed or Bad
mov byte [es:di+1],1 ;Media has not changed
mov ax,0 ;Set Return Status = success
MedExit:
TRACER 'm'
retn
;=============================================================================
PriVolDesc: ;Get and Check Primary Volume
; Descriptor
TRACER 'P'
mov ax,cs ;Set ds:si --> SpecPkt
mov ds,ax
mov cx, 5
PriVolAgain:
mov byte [SpecPkt],16 ;SpecPkt Size
mov byte [SpecPkt+1],0 ;Reserved
mov word [SpecPkt+2],1 ;Transfer one 2048-byte sector
push cx
mov cl,byte [ReadBytes] ;Multiply by 4 if reading 512
shl word [SpecPkt+2],cl ; bytes at a time
pop cx
mov word [SpecPkt+6],cs ;Into our Buffer
mov word [SpecPkt+4], Buffer
mov word [SpecPkt+8],16 ;From CD Sector 16
mov word [SpecPkt+10],0
mov word [SpecPkt+12],0
mov word [SpecPkt+14],0
mov si, SpecPkt
mov dl, [DriveNumber]
mov ah, 42h ;Extended Read
int 13h
jnc PriVolPass ;If success
; TRACER '1'
; read error
loop PriVolAgain
TRACER '2'
; read retries exhausted
; flow into below
jmp PriReadErr
PriVolPass:
mov si,Buffer ;Point input to Buffer
mov ax,-1 ;Init Checksum registers
mov bx,ax ; bx,ax = 0FFFFFFFFh
jc PriNew ;If Read Failure
push di ;Read Successful,
; so Calculate Checksum
mov di,1024 ;Init Word counter
PriWord: mov dx,[cs:si] ;Grab next word from buffer
mov cx,16 ;Init bit counter
PriBit: shr dx,1 ;Shift everything right 1 bit
rcr bx,1
rcr ax,1
jnc NoMult ;If a zero shifted out
xor bx,RPolyH ;A one shifted out, so XOR
xor ax,RPolyL ; Checksum with RPoly
NoMult:
loop PriBit
add si,2 ;Inc Word Pointer
dec di
ja PriWord
TRACER '3'
pop di ;Checksum calculation complete
cmp bx,[Checksum+2] ;Has Checksum changed?
jne PriNew ;If Checksum Changed
cmp ax,[Checksum]
jne PriNew ;If Checksum Changed
clc ;Checksum not changed, CF=0
mov ax,0 ;Status = success
jmp PriOld
PriReadErr:
mov WORD [Checksum+2],bx ;Save New Checksum
mov [Checksum],ax ; or 0FFFFFFFFh if bad read
stc ;Checksum change, CF=1
mov ax, 800bh ;Status = read fault
jmp PriOld
PriNew: mov WORD [Checksum+2],bx ;Save New Checksum
mov [Checksum],ax ; or 0FFFFFFFFh if bad read
stc ;Checksum Changed, CF=1
mov ax,800Fh ;Status = Invalid Media Change
PriOld:
TRACER 'p'
retn
;=============================================================================
IoctlOutput: ;IOCTL Output Routine
TRACER 'O'
mov di,[es:bx+14] ;es:bx --> Request Header
mov es,[es:bx+16] ;Get Xfer Address into es:di
xor ax,ax ;Get Control Block Code
mov al,[es:di]
cmp al,2
jne UnkIoctlO ;If not 2 (ResetDrv)
call DoNothing ;Reset Drive
jmp IoctlODone
UnkIoctlO:
call Unsupported ;Unsupported command
IoctlODone:
TRACER 'o'
retn
;=============================================================================
DoNothing: ;Do Nothing Command
mov ax,0 ;Set Return Status = success
retn
;=============================================================================
ReadL: ;Read Long Command
TRACER 'R'
mov ax,cs ;Set ds=cs
mov ds,ax
;es:bx --> Request Header
cmp byte [es:bx+24],0 ;Check Data Read Mode
jne ReadLErr ;If Cooked Mode
cmp byte [es:bx+13],2 ;Check Addressing Mode
jb ReadLOK ;If HSG or Redbook Mode
ReadLErr:
TRACER '8'
mov ax,8003h ;Set Return Status = Unknown
jmp ReadLExit ; Command Error and exit
ReadLOK:
mov ax,[es:bx+20] ;Get Starting Sector Number,
mov dx,[es:bx+22] ; Assume HSG Addressing Mode
cmp byte [es:bx+13],0 ;Check Addressing Mode again
je ReadLHSG ;If HSG Addressing Mode
TRACER '7'
;Using Redbook Addressing Mode. Convert to HSG format
mov al,dl ;Get Minutes
mov dl,60
mul dl ;ax = Minutes * 60
add al,byte [es:bx+21] ;Add in Seconds
adc ah,0
mov dx,75 ;dx:ax =
mul dx ; ((Min * 60) + Sec) * 75
add al,byte [es:bx+20] ;Add in Frames
adc ah,0
adc dx,0
sub ax,150 ;Subtract 2-Second offset
sbb dx,0 ;dx:ax = HSG Starting Sector
ReadLHSG:
mov word [SpecPkt+8], ax ;Store Starting
mov word [SpecPkt+10], dx ; Sector Number
mov word [SpecPkt+12], 0 ; (HSG Format)
mov word [SpecPkt+14], 0
mov ax,[es:bx+14] ;Get Transfer Address
mov word [SpecPkt+4],ax
mov ax,[es:bx+16]
mov word [SpecPkt+6],ax
mov byte [SpecPkt],16 ;Size of Disk Address Packet
mov byte [SpecPkt+1],0 ;Reserved
mov cx, 5
ReadLAgain:
mov ax,[es:bx+18] ;Get number of sectors to read
mov word [SpecPkt+2],ax
cmp ax, 3FFFh ;Too large?
ja ReadLBad ;If yes
push cx
mov cl,byte [ReadBytes] ;Multiply by 4 if reading 512
shl word [SpecPkt+2],cl ; bytes at a time
pop cx
%ifdef DEBUG
push ax
push cx
push si
mov cx, 16
mov si,SpecPkt
ReadDump: mov al, ' '
call print_char
mov al, byte [si] ;Hexdump a SpecPkt byte
call print_hex8
inc si ;Point to next byte
loop ReadDump
pop si
pop cx
pop ax
%endif
mov si,SpecPkt
mov dl,[DriveNumber]
mov ah,42h ;Extended Read
int 13h
jnc ReadLGd ;If success
;hang:
; jmp hang
; TRACER '1'
loop ReadLAgain
TRACER '2'
jmp short ReadLBad
ReadLGd:
TRACER '3'
xor ax, ax ;Status 0 = success
jmp short ReadLExit
ReadLBad:
TRACER '9'
mov ax, 800Bh ;Set Read Fault Error
; flow into ReadLExit
ReadLExit:
TRACER 'r'
retn
%ifdef DEBUG_TRACERS
debug_tracer: pushad
pushfd
mov al, '['
mov ah,0Eh ;BIOS video teletype output
xor bh, bh
int 10h ;Print it
mov bp,sp
mov bx,[bp+9*4] ; Get return address
mov al,[cs:bx] ; Get data byte
inc word [bp+9*4] ; Return to after data byte
mov ah,0Eh ;BIOS video teletype output
xor bh, bh
int 10h ;Print it
mov al, ']'
mov ah,0Eh ;BIOS video teletype output
xor bh, bh
int 10h ;Print it
popfd
popad
retn
%endif
;-----------------------------------------------------------------------------
; PRINT_HEX4
;-----------------------------------------------------------------------------
; print a 4 bits integer in hex
;
; Input:
; AL - 4 bits integer to print (low)
;
; Output: None
;
; Registers destroyed: None
;
print_hex4:
push ax
and al, 0fh ; we only need the first nibble
cmp al, 10
jae hex_A_F
add al, '0'
jmp hex_0_9
hex_A_F:
add al, 'A'-10
hex_0_9:
call print_char
pop ax
retn
;-----------------------------------------------------------------------------
; print_hex8
;-----------------------------------------------------------------------------
; print a 8 bits integer in hex
;
; Input:
; AL - 8 bits integer to print
;
; Output: None
;
; Registers destroyed: None
;
print_hex8:
push ax
push bx
mov ah, al
shr al, 4
call print_hex4
mov al, ah
and al, 0fh
call print_hex4
pop bx
pop ax
retn
;=============================================================================
; print_hex16 - print a 16 bits integer in hex
;
; Input:
; AX - 16 bits integer to print
;
; Output: None
;
; Registers destroyed: None
;=============================================================================
print_hex16:
push ax
push bx
push cx
mov cx, 4
print_hex16_loop:
rol ax, 4
call print_hex4
loop print_hex16_loop
pop cx
pop bx
pop ax
retn
;=============================================================================
; print_hex32 - print a 32 bits integer in hex
;
; Input:
; EAX - 32 bits integer to print
;
; Output: None
;
; Registers destroyed: None
;=============================================================================
print_hex32:
push eax
push bx
push cx
mov cx, 8
print_hex32_loop:
rol eax, 4
call print_hex4
loop print_hex32_loop
pop cx
pop bx
pop eax
retn
;=============================================================================
; print_string - print string at current cursor location
;
; Input:
; DS:SI - ASCIIZ string to print
;
; Output: None
;
; Registers destroyed: None
;=============================================================================
print_string:
push ax
push si
print_string_again:
mov al, [si]
or al, al
jz print_string_exit
call print_char
inc si
jmp print_string_again
print_string_exit:
pop si
pop ax
retn
;-----------------------------------------------------------------------------
; PRINT_CHAR
;-----------------------------------------------------------------------------
; Print's a character at current cursor position
;
; Input:
; AL - Character to print
;
; Output: None
;
; Registers destroyed: None
;
print_char:
push ax
push bx
mov ah,0Eh ;BIOS video teletype output
xor bh, bh
int 10h ;Print it
print_char_exit:
pop bx
pop ax
retn
;=============================================================================
;This space is used as a 2048-byte read buffer plus one test byte.
;The 96h data is used for testing the number of bytes returned by an Extended
; CD-ROM sector read
align 16, db 0
Buffer times 2049 db 96h
;=============================================================================
Init: ;Initialization Routine
TRACER 'I'
mov ax,cs ;ds=cs
mov ds,ax
%ifdef DEBUG
; print CS value (load segment)
call print_hex16
%endif
mov si, Greeting ;Display Greeting
call print_string
mov ax,Unsupported ;Init is executed only once
mov [Routines],ax
mov ax, 5400h
int 13h ; Get diskemu status
jc FindBoot ; If CF=1 no diskemu loaded
mov [DriveNumber], cl ; Store drive number
call keyflag
and al, 8 ; alt key ?
jz extread
mov si, DrvNumMsg ; Display "drive number="
call print_string
mov al, [DriveNumber]
call print_hex8
mov si, LineEnd ; CR/LF
call print_string
jmp extread
; Diskemu is not loaded
; so loop to find drive number
; *** start of 1.4 changes ***
; ??? mov dl, 0ffh ;Start at Drive 0xff
; *** FindBoot at c47 in 1.4, at c0c in 1.3 ***
FindBoot: call ScanDrives ; call new helper in 1.4
jnc FoundBoot ; ded*df3
; mov si,offset SpecPkt ;Locate booted CD-ROM drive
; mov [SpecPkt],0 ;Clear 1st byte of SpecPkt
; mov ax,4B01h ;Get Bootable CD-ROM Status
; int 13h
; jnc FindPass ;If booted CD found
;
; Carry is not cleared in buggy Dell BIOSes,
; so I'm checking packet size byte
; some bogus bioses (Dell Inspiron 2500) returns packet size 0xff when failed
; Dell Dimension XPsT returns packet size 0x14 when OK
; cmp [SpecPkt], 0
; jne FoundBoot
; cmp [SpecPkt], 13h ; anything between 13h and 20h should be OK
; jb FindFail
; cmp [SpecPkt], 20h
; ja FindFail
; jmp short FoundBoot
;
; FindFail:
; dec dl ;Next drive
; cmp dl, 80h
; jae FindBoot ;Check from ffh..80h
; *** end of 1.4 changes ***
mov si,NoBootCD ;No booted CD found,
call print_string
jmp NoEndAddr ;Do not install driver
FoundBoot:
; mov dl, [SpecPkt+2] ; 1.4 change
; *** next line at c57 in 1.4, at c3d in 1.3 ***
mov [DriveNumber],dl ;Booted CD-ROM found,
; so save Drive #
call keyflag
and al, 8 ; alt key ?
jz extread
mov si, CDStat
call print_string
mov si, SpecPkt ;Point to returned CD SpecPkt
mov cx, 19 ; containing 19 bytes
StatDump: mov al, ' ' ;Print a space
call print_char
mov al, byte [si] ;Hexdump a SpecPkt byte
call print_hex8
inc si ;Point to next byte
loop StatDump
mov si, LineEnd ;Print a CR/LF
call print_string
extread:
;See how many CD Sector bytes are returned by an Extended Read
mov byte [SpecPkt],16 ;SpecPkt Size
mov byte [SpecPkt+1],0 ;Reserved
mov word [SpecPkt+2],1 ;Transfer one sector
mov word [SpecPkt+6],cs ;Into our Buffer
mov word [SpecPkt+4],Buffer
mov word [SpecPkt+8],16 ;From CD Sector 16
mov word [SpecPkt+10],0
mov word [SpecPkt+12],0
mov word [SpecPkt+14],0
mov si, SpecPkt ;Set ds:si --> SpecPkt
mov dl, [DriveNumber]
mov ah, 42h ;Extended Read
int 13h
jnc SecSize ;If success
mov ah, 42h ;Always make 2 read attempts
int 13h
;How many bytes did we get?
SecSize: std ;Count down
mov ax,cs ;Point to end of Buffer
mov es,ax
mov di,Buffer+2047 ;Find end of read data
mov si,Buffer+2048
mov cx,2049
repe cmpsb ;cx = number of bytes read
cld ;Restore count direction to up
mov si,CDBytes ;Display number of bytes read
call print_string
mov al, [DriveNumber]
call print_hex8
mov si,CDBytesA ;Remainder A of message
call print_string
mov al,ch ;Hex-dump cx
and al,0Fh ;Second nibble
call print_hex8 ; (don't need the First)
mov al,cl
call print_hex8 ; (don't need the First)
mov si,CDBytesB ;Remainder B of message
call print_string
cmp cx,2048 ;Did we read 2048 bytes?
je ParseParm ;If yes <-- O.K.
mov byte [ReadBytes],1
cmp cx,1024 ;Did we read 1024 bytes?
je ParseParm ;If yes <-- O.K.
mov byte [ReadBytes],2
cmp cx,512 ;Did we read 512 bytes?
jne NoEndAddr ;If not, do not load driver
ParseParm: mov bx,word [cs:ReqHdrLoc] ;Parse command line
mov es,word [cs:ReqHdrLoc+2] ; parameters
mov si,[es:bx+18] ;Get BPB array ptr into DS:SI
mov ds,[es:bx+20]
FindParm: inc si
FindParm1: cmp byte [si],0Dh ;CR? (End of parameters)
je EndOfParms
cmp byte [si],0Ah ;LF?
je EndOfParms
cmp byte [si],'/' ;A parameter?
jne FindParm
inc si
cmp byte [si],'D' ;Device Name parameter?
jne FindParm1
inc si
cmp byte [si],':'
jne FindParm1
;bbb
push si
mov si, DevName ;Device Name is at ds:si
push ds ;Keep ptr to Device Name
mov ax, cs
mov ds, ax
call print_string
pop ds ;Retrieve Device Name ptr
pop si
mov cx, 8 ;Get next 8 chars
inc si ; = Device Name
mov ax, cs
mov es, ax
mov di, DeviceName
NextChar: cmp byte [si],' '
ja AboveSpace
mov ax,cs ;Pad end of Device Name with
mov ds,ax ; spaces if necessary
mov si,DblSpace ;A space
AboveSpace: mov al, [si]
call print_char
movsb ;ds:[si] --> es:[di]
loop NextChar
mov si,LineEnd
mov ax,cs
mov ds,ax
call print_string
mov ax,Init-2 ;Last byte of driver to keep
jmp EndAddr ;Install driver
EndOfParms:
mov ax, cs ; Restore segment registers (fix)
mov ds, ax
mov es, ax
mov si,NoDevName ;No Device Name Found
call print_string
NoEndAddr: mov ax,0 ;Do not install driver
EndAddr: mov es,[ReqHdrLoc+2] ;Write End Address
mov bx,[ReqHdrLoc]
mov [es:bx+14],ax
mov [es:bx+16],cs
mov bx,ax ;Hold onto install status
mov si, DrvInst ;Display driver install status
call print_string
mov si, DrvInst1 ;Assume driver installed
cmp bx,0 ;Was driver installed?
jne DrvStatus ;If yes
mov si, NoDrvInst ;Driver not installed
DrvStatus: call print_string
mov ax,0 ;Set Return Status = success
cmp bx,0 ;Was INIT successful?
jne InitStat ;If yes
mov ax,800Ch ;Status = General Failure
InitStat:
push ax ;Save Return Status
call keyflag
and al, 8 ; alt key ?
jz InitExit
WaitHere:
mov si, WaitMsg ;Display Halted message
call print_string
AltWait:
call keyflag
and al, 8 ; Alt key?
jnz AltWait ; Pressed? yes -> wait
InitExit:
pop ax ;Retrieve Return Status
TRACER 'i'
retn ;That's it for Init!
; *** start 1.4 changes at ded ***
SpecGo: mov si,SpecPkt
int 13h
retn
ScanDrives: push ax ; at df3 in 1.4
push si
mov dl, 7fh ;Start at Drive 0x80
NextDrv: inc dl
clc
mov ax,4B01h ;Get Bootable CD-ROM Status
mov BYTE [SpecPkt],0 ;Clear 1st byte of SpecPkt
call SpecGo
; Carry is not cleared in buggy Dell BIOSes,
; so I'm checking packet size byte
; some bogus bioses (Dell Inspiron 2500) returns packet size 0xff when failed
; Dell Dimension XPsT returns packet size 0x14 when OK
cmp BYTE [SpecPkt], 13h ; anything between 13h and 20h should be OK
jb FindFail
cmp BYTE [SpecPkt], 20h
ja FindFail ; in 1.4 at e16
jmp short SendFound ; in 1.4 at e26
FindFail: cmp dl, 0ffh
je SendFail ; Check from 80h..ffh
jmp short NextDrv ;Next drive
SendFail: xor dl,dl
stc
jmp short ThingDone
SendFound: mov dl, [SpecPkt+2]
clc
ThingDone: pop si
pop ax
retn
; *** end 1.4 changes ***
;=============================================================================
;------------------------------------------------------------
; keyboard flags - return keyboard flags in AL
; bit 3 = ALT key
keyflag: ; at dbc in 1.3, at e2e in 1.4
push bx
mov ah, 2
int 16h
pop bx
retn
;=============================================================================
DrvNumMsg db ' Diskemxx.bin returned drive number=', 0
NoBootCD db ' No booted CD-ROM found.',CR,0
CDStat db ' INT 13h / AX=4B01h Specification Packet for '
db 'Booted CD-ROM:',CR,' ', 0
CDBytes db ' Drive ', 0
CDBytesA db ' returns ', 0
CDBytesB db 'h bytes per Sector.',CR,0
DevName db ' Device Name: ', 0
NoDevName db ' No Device Name found. '
db 'Usage: device=eltorito.sys /D:<DevName>',CR,0
DrvInst db ' Driver ', 0
NoDrvInst db 7,'not ' ;7 = Ctrl-G = Beep
DrvInst1 db 'installed',CR,0
WaitMsg db ' Alt pressed, waiting...', CR, 0
;ContMsg db ' Continuing...'
LineEnd db CR,0
;=============================================================================
|