1 /* ----------------------------------------------------------------------- *
3 * Copyright 1998-2007 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 * syslxmod.c - Code to provide a SYSLINUX code set to an installer.
17 #define _XOPEN_SOURCE 500 /* Required on glibc 2.x */
26 #define LDLINUX_MAGIC 0x3eb202fe
45 bs16DriveNumber
= 0x24,
47 bs16BootSignature
= 0x26,
49 bs16VolumeLabel
= 0x2b,
50 bs16FileSysType
= 0x36,
63 bs32BootSignature
= 66,
73 #define bsHeadLen (bsOemName-bsHead)
74 #define bsCode bs32Code /* The common safe choice */
75 #define bsCodeLen (bsSignature-bs32Code)
78 * Access functions for littleendian numbers, possibly misaligned.
80 static inline uint8_t get_8(const unsigned char *p
)
82 return *(const uint8_t *)p
;
85 static inline uint16_t get_16(const unsigned char *p
)
87 #if defined(__i386__) || defined(__x86_64__)
88 /* Littleendian and unaligned-capable */
89 return *(const uint16_t *)p
;
91 return (uint16_t)p
[0] + ((uint16_t)p
[1] << 8);
95 static inline uint32_t get_32(const unsigned char *p
)
97 #if defined(__i386__) || defined(__x86_64__)
98 /* Littleendian and unaligned-capable */
99 return *(const uint32_t *)p
;
101 return (uint32_t)p
[0] + ((uint32_t)p
[1] << 8) +
102 ((uint32_t)p
[2] << 16) + ((uint32_t)p
[3] << 24);
106 static inline void set_16(unsigned char *p
, uint16_t v
)
108 #if defined(__i386__) || defined(__x86_64__)
109 /* Littleendian and unaligned-capable */
113 p
[1] = ((v
>> 8) & 0xff);
117 static inline void set_32(unsigned char *p
, uint32_t v
)
119 #if defined(__i386__) || defined(__x86_64__)
120 /* Littleendian and unaligned-capable */
124 p
[1] = ((v
>> 8) & 0xff);
125 p
[2] = ((v
>> 16) & 0xff);
126 p
[3] = ((v
>> 24) & 0xff);
130 void syslinux_make_bootsect(void *bs
)
132 unsigned char *bootsect
= bs
;
134 memcpy(bootsect
+bsHead
, syslinux_bootsect
+bsHead
, bsHeadLen
);
135 memcpy(bootsect
+bsCode
, syslinux_bootsect
+bsCode
, bsCodeLen
);
139 * Check to see that what we got was indeed an MS-DOS boot sector/superblock;
140 * Return NULL if OK and otherwise an error message;
142 const char *syslinux_check_bootsect(const void *bs
)
146 long long sectors
, fatsectors
, dsectors
;
148 int rootdirents
, clustersize
;
149 const unsigned char *sectbuf
= bs
;
153 /* Must be 0xF0 or 0xF8..0xFF */
154 if ( get_8(sectbuf
+bsMedia
) != 0xF0 &&
155 get_8(sectbuf
+bsMedia
) < 0xF8 )
158 sectorsize
= get_16(sectbuf
+bsBytesPerSec
);
159 if ( sectorsize
== 512 )
161 else if ( sectorsize
== 1024 || sectorsize
== 2048 || sectorsize
== 4096 )
162 return "only 512-byte sectors are supported";
166 clustersize
= get_8(sectbuf
+bsSecPerClust
);
167 if ( clustersize
== 0 || (clustersize
& (clustersize
-1)) )
168 goto invalid
; /* Must be nonzero and a power of 2 */
170 sectors
= get_16(sectbuf
+bsSectors
);
171 sectors
= sectors
? sectors
: get_32(sectbuf
+bsHugeSectors
);
173 dsectors
= sectors
- get_16(sectbuf
+bsResSectors
);
175 fatsectors
= get_16(sectbuf
+bsFATsecs
);
176 fatsectors
= fatsectors
? fatsectors
: get_32(sectbuf
+bs32FATSz32
);
177 fatsectors
*= get_8(sectbuf
+bsFATs
);
178 dsectors
-= fatsectors
;
180 rootdirents
= get_16(sectbuf
+bsRootDirEnts
);
181 dsectors
-= (rootdirents
+sectorsize
/32-1)/sectorsize
;
183 if ( dsectors
< 0 || fatsectors
== 0 )
186 clusters
= dsectors
/clustersize
;
188 if ( clusters
< 0xFFF5 ) {
191 if ( !get_16(sectbuf
+bsFATsecs
) )
194 if ( get_8(sectbuf
+bs16BootSignature
) == 0x29 ) {
195 if ( !memcmp(sectbuf
+bs16FileSysType
, "FAT12 ", 8) ) {
196 if ( clusters
>= 0xFF5 )
197 return "more than 4084 clusters but claims FAT12";
198 } else if ( !memcmp(sectbuf
+bs16FileSysType
, "FAT16 ", 8) ) {
199 if ( clusters
< 0xFF5 )
200 return "less than 4084 clusters but claims FAT16";
201 } else if ( memcmp(sectbuf
+bs16FileSysType
, "FAT ", 8) ) {
202 static char fserr
[] = "filesystem type \"????????\" not supported";
203 memcpy(fserr
+17, sectbuf
+bs16FileSysType
, 8);
207 } else if ( clusters
< 0x0FFFFFF5 ) {
209 /* Moving the FileSysType and BootSignature was a lovely stroke of M$ idiocy */
210 if ( get_8(sectbuf
+bs32BootSignature
) != 0x29 ||
211 memcmp(sectbuf
+bs32FileSysType
, "FAT32 ", 8) )
220 return "this doesn't look like a valid FAT filesystem";
224 * This patches the boot sector and the first sector of ldlinux.sys
225 * based on an ldlinux.sys sector map passed in. Typically this is
226 * handled by writing ldlinux.sys, mapping it, and then overwrite it
227 * with the patched version. If this isn't safe to do because of
228 * an OS which does block reallocation, then overwrite it with
229 * direct access since the location is known.
231 * Return 0 if successful, otherwise -1.
233 int syslinux_patch(const uint32_t *sectors
, int nsectors
,
234 int stupid
, int raid_mode
)
236 unsigned char *patcharea
, *p
;
237 int nsect
= (syslinux_ldlinux_len
+511) >> 9;
241 if ( nsectors
< nsect
)
244 /* Patch in options, as appropriate */
246 /* Access only one sector at a time */
247 set_16(syslinux_bootsect
+0x1FC, 1);
250 i
= get_16(syslinux_bootsect
+0x1FE);
252 set_16(syslinux_bootsect
+i
, 0x18CD); /* INT 18h */
253 set_16(syslinux_bootsect
+0x1FE, 0xAA55);
255 /* First sector need pointer in boot sector */
256 set_32(syslinux_bootsect
+0x1F8, *sectors
++);
259 /* Search for LDLINUX_MAGIC to find the patch area */
260 for ( p
= syslinux_ldlinux
; get_32(p
) != LDLINUX_MAGIC
; p
+= 4 );
263 /* Set up the totals */
264 dw
= syslinux_ldlinux_len
>> 2; /* COMPLETE dwords! */
265 set_16(patcharea
, dw
);
266 set_16(patcharea
+2, nsect
); /* Does not include the first sector! */
268 /* Set the sector pointers */
273 set_32(p
, *sectors
++);
277 /* Now produce a checksum */
278 set_32(patcharea
+4, 0);
280 csum
= LDLINUX_MAGIC
;
281 for ( i
= 0, p
= syslinux_ldlinux
; i
< dw
; i
++, p
+= 4 )
282 csum
-= get_32(p
); /* Negative checksum */
284 set_32(patcharea
+4, csum
);