2 * Copyright (C) 2008 Daniel Verkamp <daniel@drv.nu>.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 * SYSLINUX COMBOOT (16-bit) image format
26 FILE_LICENCE ( GPL2_OR_LATER
);
37 #include <gpxe/uaccess.h>
38 #include <gpxe/image.h>
39 #include <gpxe/segment.h>
40 #include <gpxe/init.h>
41 #include <gpxe/features.h>
43 FEATURE ( FEATURE_IMAGE
, "COMBOOT", DHCP_EB_FEATURE_COMBOOT
, 1 );
45 struct image_type comboot_image_type
__image_type ( PROBE_NORMAL
);
48 * COMBOOT PSP, copied to offset 0 of code segment
51 /** INT 20 instruction, executed if COMBOOT image returns with RET */
53 /** Segment of first non-free paragraph of memory */
54 uint16_t first_non_free_para
;
57 /** Offset in PSP of command line */
58 #define COMBOOT_PSP_CMDLINE_OFFSET 0x81
60 /** Maximum length of command line in PSP
61 * (127 bytes minus space and CR) */
62 #define COMBOOT_MAX_CMDLINE_LEN 125
66 * Copy command line to PSP
68 * @v image COMBOOT image
70 static void comboot_copy_cmdline ( struct image
* image
, userptr_t seg_userptr
) {
71 const char *cmdline
= ( image
->cmdline
? image
->cmdline
: "" );
72 int cmdline_len
= strlen ( cmdline
);
73 if( cmdline_len
> COMBOOT_MAX_CMDLINE_LEN
)
74 cmdline_len
= COMBOOT_MAX_CMDLINE_LEN
;
75 uint8_t len_byte
= cmdline_len
;
76 char spc
= ' ', cr
= '\r';
78 /* Copy length to byte before command line */
79 copy_to_user ( seg_userptr
, COMBOOT_PSP_CMDLINE_OFFSET
- 1,
82 /* Command line starts with space */
83 copy_to_user ( seg_userptr
,
84 COMBOOT_PSP_CMDLINE_OFFSET
,
87 /* Copy command line */
88 copy_to_user ( seg_userptr
,
89 COMBOOT_PSP_CMDLINE_OFFSET
+ 1,
90 cmdline
, cmdline_len
);
92 /* Command line ends with CR */
93 copy_to_user ( seg_userptr
,
94 COMBOOT_PSP_CMDLINE_OFFSET
+ cmdline_len
+ 1,
101 * @v image COMBOOT image
102 * @v seg_userptr segment to initialize
104 static void comboot_init_psp ( struct image
* image
, userptr_t seg_userptr
) {
105 struct comboot_psp psp
;
109 /* INT 20h instruction, byte order reversed */
112 /* get_fbms() returns BIOS free base memory counter, which is in
113 * kilobytes; x * 1024 / 16 == x * 64 == x << 6 */
114 psp
.first_non_free_para
= get_fbms() << 6;
116 DBGC ( image
, "COMBOOT %p: first non-free paragraph = 0x%x\n",
117 image
, psp
.first_non_free_para
);
119 /* Copy the PSP to offset 0 of segment.
120 * The rest of the PSP was already zeroed by
121 * comboot_prepare_segment. */
122 copy_to_user ( seg_userptr
, 0, &psp
, sizeof( psp
) );
124 /* Copy the command line to the PSP */
125 comboot_copy_cmdline ( image
, seg_userptr
);
129 * Execute COMBOOT image
131 * @v image COMBOOT image
132 * @ret rc Return status code
134 static int comboot_exec ( struct image
*image
) {
135 userptr_t seg_userptr
= real_to_user ( COMBOOT_PSP_SEG
, 0 );
138 state
= rmsetjmp ( comboot_return
);
141 case 0: /* First time through; invoke COMBOOT program */
144 comboot_init_psp ( image
, seg_userptr
);
146 /* Hook COMBOOT API interrupts */
147 hook_comboot_interrupts();
149 DBGC ( image
, "executing 16-bit COMBOOT image at %4x:0100\n",
152 /* Unregister image, so that a "boot" command doesn't
153 * throw us into an execution loop. We never
154 * reregister ourselves; COMBOOT images expect to be
157 unregister_image ( image
);
159 /* Store stack segment at 0x38 and stack pointer at 0x3A
160 * in the PSP and jump to the image */
161 __asm__
__volatile__ (
162 REAL_CODE ( /* Save return address with segment on old stack */
166 /* Set DS=ES=segment with image */
169 /* Set SS:SP to new stack (end of image segment) */
175 /* Zero registers (some COM files assume GP regs are 0) */
176 "xorw %%ax, %%ax\n\t"
177 "xorw %%bx, %%bx\n\t"
178 "xorw %%cx, %%cx\n\t"
179 "xorw %%dx, %%dx\n\t"
180 "xorw %%si, %%si\n\t"
181 "xorw %%di, %%di\n\t"
182 "xorw %%bp, %%bp\n\t"
184 : : "r" ( COMBOOT_PSP_SEG
) : "eax" );
185 DBGC ( image
, "COMBOOT %p: returned\n", image
);
189 DBGC ( image
, "COMBOOT %p: exited\n", image
);
192 case COMBOOT_EXIT_RUN_KERNEL
:
193 DBGC ( image
, "COMBOOT %p: exited to run kernel %p\n",
194 image
, comboot_replacement_image
);
195 image
->replacement
= comboot_replacement_image
;
196 comboot_replacement_image
= NULL
;
197 image_autoload ( image
->replacement
);
200 case COMBOOT_EXIT_COMMAND
:
201 DBGC ( image
, "COMBOOT %p: exited after executing command\n",
210 unhook_comboot_interrupts();
211 comboot_force_text_mode();
217 * Check image name extension
219 * @v image COMBOOT image
220 * @ret rc Return status code
222 static int comboot_identify ( struct image
*image
) {
225 ext
= strrchr( image
->name
, '.' );
228 DBGC ( image
, "COMBOOT %p: no extension\n",
235 if ( strcasecmp( ext
, "com" ) && strcasecmp( ext
, "cbt" ) ) {
236 DBGC ( image
, "COMBOOT %p: unrecognized extension %s\n",
245 * Load COMBOOT image into memory, preparing a segment and returning it
246 * @v image COMBOOT image
247 * @ret rc Return status code
249 static int comboot_prepare_segment ( struct image
*image
)
251 userptr_t seg_userptr
;
252 size_t filesz
, memsz
;
255 /* Load image in segment */
256 seg_userptr
= real_to_user ( COMBOOT_PSP_SEG
, 0 );
258 /* Allow etra 0x100 bytes before image for PSP */
259 filesz
= image
->len
+ 0x100;
261 /* Ensure the entire 64k segment is free */
264 /* Prepare, verify, and load the real-mode segment */
265 if ( ( rc
= prep_segment ( seg_userptr
, filesz
, memsz
) ) != 0 ) {
266 DBGC ( image
, "COMBOOT %p: could not prepare segment: %s\n",
267 image
, strerror ( rc
) );
272 memset_user ( seg_userptr
, 0, 0, 0x100 );
274 /* Copy image to segment:0100 */
275 memcpy_user ( seg_userptr
, 0x100, image
->data
, 0, image
->len
);
281 * Load COMBOOT image into memory
283 * @v image COMBOOT image
284 * @ret rc Return status code
286 static int comboot_load ( struct image
*image
) {
289 DBGC ( image
, "COMBOOT %p: name '%s'\n",
290 image
, image
->name
);
292 /* Check if this is a COMBOOT image */
293 if ( ( rc
= comboot_identify ( image
) ) != 0 ) {
298 /* This is a 16-bit COMBOOT image, valid or otherwise */
300 image
->type
= &comboot_image_type
;
302 /* Sanity check for filesize */
303 if( image
->len
>= 0xFF00 ) {
304 DBGC( image
, "COMBOOT %p: image too large\n",
309 /* Prepare segment and load image */
310 if ( ( rc
= comboot_prepare_segment ( image
) ) != 0 ) {
317 /** SYSLINUX COMBOOT (16-bit) image type */
318 struct image_type comboot_image_type
__image_type ( PROBE_NORMAL
) = {
320 .load
= comboot_load
,
321 .exec
= comboot_exec
,