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
|
/*
* linux.c
* Detection of Linux file systems and boot codes
*
* Copyright (c) 2003 Christoph Pfisterer
*
* 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.
*/
#include "global.h"
/*
* ext2/ext3 file system
*/
void detect_ext23(SECTION *section, int level)
{
unsigned char *buf;
char s[256];
u4 blocksize;
u8 blockcount;
if (get_buffer(section, 1024, 1024, (void **)&buf) < 1024)
return;
if (get_le_short(buf + 56) == 0xEF53) {
if (get_le_long(buf + 96) & 0x0008) /* JOURNAL_DEV flag */
print_line(level, "Ext3 external journal");
else if (get_le_long(buf + 92) & 0x0004) /* HAS_JOURNAL flag */
print_line(level, "Ext3 file system");
else
print_line(level, "Ext2 file system");
get_string(buf + 120, 16, s);
if (s[0])
print_line(level + 1, "Volume name \"%s\"", s);
format_uuid(buf + 104, s);
print_line(level + 1, "UUID %s", s);
get_string(buf + 136, 64, s);
if (s[0])
print_line(level + 1, "Last mounted at \"%s\"", s);
blocksize = 1024 << get_le_long(buf + 24);
blockcount = get_le_long(buf + 4);
format_blocky_size(s, blockcount, blocksize, "blocks", NULL);
print_line(level + 1, "Volume size %s", s);
/* 76 4 s_rev_level */
/* 62 2 s_minor_rev_level */
/* 72 4 s_creator_os */
/* 92 3x4 s_feature_compat, s_feature_incompat, s_feature_ro_compat */
}
}
/*
* ReiserFS file system
*/
void detect_reiser(SECTION *section, int level)
{
unsigned char *buf;
int i, at, newformat;
int offsets[3] = { 8, 64, -1 };
char s[256];
u8 blockcount;
u4 blocksize;
for (i = 0; offsets[i] >= 0; i++) {
at = offsets[i];
if (get_buffer(section, at * 1024, 1024, (void **)&buf) < 1024)
continue;
/* check signature */
if (memcmp(buf + 52, "ReIsErFs", 8) == 0) {
print_line(level, "ReiserFS file system (old 3.5 format, standard journal, starts at %d KiB)", at);
newformat = 0;
} else if (memcmp(buf + 52, "ReIsEr2Fs", 9) == 0) {
print_line(level, "ReiserFS file system (new 3.6 format, standard journal, starts at %d KiB)", at);
newformat = 1;
} else if (memcmp(buf + 52, "ReIsEr3Fs", 9) == 0) {
newformat = get_le_short(buf + 72);
if (newformat == 0) {
print_line(level, "ReiserFS file system (old 3.5 format, non-standard journal, starts at %d KiB)", at);
} else if (newformat == 2) {
print_line(level, "ReiserFS file system (new 3.6 format, non-standard journal, starts at %d KiB)", at);
newformat = 1;
} else {
print_line(level, "ReiserFS file system (v3 magic, but unknown version %d, starts at %d KiB)", newformat, at);
continue;
}
} else
continue;
/* get data */
blockcount = get_le_long(buf);
blocksize = get_le_short(buf + 44);
/* for new format only:
hashtype = get_le_long(buf + 64);
*/
/* get label */
get_string(buf + 100, 16, s);
if (s[0])
print_line(level + 1, "Volume name \"%s\"", s);
format_uuid(buf + 84, s);
print_line(level + 1, "UUID %s", s);
/* print size */
format_blocky_size(s, blockcount, blocksize, "blocks", NULL);
print_line(level + 1, "Volume size %s", s);
/* TODO: print hash code */
}
}
/*
* Linux RAID persistent superblock
*/
static char *levels[] = {
"Multipath",
"\'HSM\'",
"\'translucent\'",
"Linear",
"RAID0",
"RAID1",
NULL, NULL,
"RAID4(?)",
"RAID5"
};
void detect_linux_raid(SECTION *section, int level)
{
unsigned char *buf;
u8 pos;
int rlevel, nr_disks, raid_disks, spare;
u1 uuid[16];
char s[256];
/* don't do this if:
* - the size is unknown (0)
* - the size is too small for the calculation
* - it is inefficient to read from the end of the source
*/
if (section->size < 65536 || section->source->sequential)
return;
/* get RAID superblock from the end of the device */
pos = (section->size & ~65535) - 65536;
if (get_buffer(section, pos, 4096, (void **)&buf) < 4096)
return;
/* signature */
if (get_le_long(buf) != 0xa92b4efc)
return;
print_line(level, "Linux RAID disk, version %lu.%lu.%lu",
get_le_long(buf + 4), get_le_long(buf + 8),
get_le_long(buf + 12));
/* get some data */
rlevel = (int)(long)get_le_long(buf + 28); /* is signed, actually */
nr_disks = get_le_long(buf + 36);
raid_disks = get_le_long(buf + 40);
spare = nr_disks - raid_disks;
/* find the name for the personality in the table */
if (rlevel < -4 || rlevel > 5 || levels[rlevel+4] == NULL) {
print_line(level + 1, "Unknown RAID level %d using %d regular %d spare disks",
rlevel, raid_disks, spare);
} else {
print_line(level + 1, "%s set using %d regular %d spare disks",
levels[rlevel+4], raid_disks, spare);
}
/* get the UUID */
memcpy(uuid, buf + 5*4, 4);
memcpy(uuid + 4, buf + 13*4, 3*4);
format_uuid(uuid, s);
print_line(level + 1, "RAID set UUID %s", s);
}
/*
* Linux LVM
*/
void detect_linux_lvm(SECTION *section, int level)
{
unsigned char *buf;
char s[256];
u8 pe_size, pe_count, pe_start;
if (get_buffer(section, 0, 1024, (void **)&buf) < 1024)
return;
/* signature */
if (buf[0] != 'H' || buf[1] != 'M')
return;
/* helpful sanity check... */
if (get_le_long(buf + 36) == 0 || get_le_long(buf + 40) == 0)
return;
print_line(level, "Linux LVM volume, version %d",
(int)get_le_short(buf + 2));
/* volume group name */
get_string(buf + 172, 128, s);
print_line(level + 1, "Volume group name \"%s\"", s);
/* "UUID" of this physical volume */
get_string(buf + 0x2c, 128, s);
print_line(level + 1, "PV \"UUID\" %s", s);
/* volume size */
pe_size = get_le_long(buf + 452);
pe_count = get_le_long(buf + 456);
format_blocky_size(s, pe_count, pe_size * 512, "PEs", NULL);
print_line(level + 1, "Useable size %s", s);
/* first PE starts after the declared length of the PE tables */
pe_start = get_le_long(buf + 36) + get_le_long(buf + 40);
/* try to detect from first PE */
if (pe_start > 0) {
analyze_recursive(section, level + 1,
pe_start, 0, 0);
/* TODO: elaborate on this by reading the PE allocation map */
}
}
/*
* Linux swap area
*/
void detect_linux_swap(SECTION *section, int level)
{
int i, en, pagesize;
unsigned char *buf;
u4 version, pages;
char s[256];
int pagesizes[] = { 4096, 8192, 0 };
for (i = 0; pagesizes[i]; i++) {
pagesize = pagesizes[i];
if (get_buffer(section, pagesize - 512, 512, (void **)&buf) != 512)
break; /* assumes page sizes increase through the loop */
if (memcmp((char *)buf + 512 - 10, "SWAP-SPACE", 10) == 0) {
print_line(level, "Linux swap, version 1, %d KiB pages",
pagesize >> 10);
}
if (memcmp((char *)buf + 512 - 10, "SWAPSPACE2", 10) == 0) {
if (get_buffer(section, 1024, 512, (void **)&buf) != 512)
break; /* really shouldn't happen */
for (en = 0; en < 2; en++) {
version = get_ve_long(en, buf);
if (version >= 1 && version < 10)
break;
}
if (en < 2) {
print_line(level, "Linux swap, version 2, subversion %d, %d KiB pages, %s",
(int)version, pagesize >> 10, get_ve_name(en));
if (version == 1) {
pages = get_ve_long(en, buf + 4) - 1;
format_blocky_size(s, pages, pagesize, "pages", NULL);
print_line(level + 1, "Swap size %s", s);
}
} else {
print_line(level, "Linux swap, version 2, illegal subversion, %d KiB pages",
pagesize >> 10);
}
}
}
}
/*
* various file systems
*/
void detect_linux_misc(SECTION *section, int level)
{
int magic, fill, off, en;
unsigned char *buf;
char s[256];
u8 size, blocks, blocksize;
fill = get_buffer(section, 0, 2048, (void **)&buf);
if (fill < 512)
return;
/* minix file system */
if (fill >= 2048) {
int version = 0, namesize = 14;
magic = get_le_short(buf + 1024 + 16);
if (magic == 0x137F)
version = 1;
if (magic == 0x138F) {
version = 1;
namesize = 30;
}
if (magic == 0x2468)
version = 2;
if (magic == 0x2478) {
version = 2;
namesize = 30;
}
if (version) {
print_line(level, "Minix file system (v%d, %d chars)",
version, namesize);
if (version == 1)
blocks = get_le_short(buf + 1024 + 2);
else
blocks = get_le_long(buf + 1024 + 20);
blocks = (blocks - get_le_short(buf + 1024 + 8))
<< get_le_short(buf + 1024 + 10);
format_blocky_size(s, blocks, 1024, "blocks", NULL);
print_line(level + 1, "Volume size %s", s);
}
}
/* Linux romfs */
if (memcmp(buf, "-rom1fs-", 8) == 0) {
size = get_be_long(buf + 8);
print_line(level, "Linux romfs");
print_line(level+1, "Volume name \"%.300s\"", (char *)(buf + 16));
format_size_verbose(s, size);
print_line(level+1, "Volume size %s", s);
}
/* Linux cramfs */
for (off = 0; off <= 512; off += 512) {
if (fill < off + 512)
break;
for (en = 0; en < 2; en++) {
if (get_ve_long(en, buf + off) == 0x28cd3d45) {
print_line(level, "Linux cramfs, starts sector %d, %s",
off >> 9, get_ve_name(en));
get_string(buf + off + 48, 16, s);
print_line(level + 1, "Volume name \"%s\"", s);
size = get_ve_long(en, buf + off + 4);
blocks = get_ve_long(en, buf + off + 40);
format_size_verbose(s, size);
print_line(level + 1, "Compressed size %s", s);
format_blocky_size(s, blocks, 4096, "blocks", " -assumed-");
print_line(level + 1, "Data size %s", s);
}
}
}
/* Linux squashfs */
for (en = 0; en < 2; en++) {
if (get_ve_long(en, buf) == 0x73717368) {
int major, minor;
major = get_ve_short(en, buf + 28);
minor = get_ve_short(en, buf + 30);
print_line(level, "Linux squashfs, version %d.%d, %s",
major, minor, get_ve_name(en));
size = get_ve_long(en, buf + 8);
blocksize = get_ve_short(en, buf + 32);
format_size_verbose(s, size);
print_line(level + 1, "Compressed size %s", s);
format_size(s, blocksize);
print_line(level + 1, "Block size %s", s);
}
}
}
/*
* various boot code signatures
*/
void detect_linux_loader(SECTION *section, int level)
{
int fill, executable, id;
unsigned char *buf;
if (section->flags & FLAG_IN_DISKLABEL)
return;
fill = get_buffer(section, 0, 2048, (void **)&buf);
if (fill < 512)
return;
executable = (get_le_short(buf + 510) == 0xaa55) ? 1 : 0;
/* boot sector stuff */
if (executable && memcmp(buf + 2, "LILO", 4) == 0)
print_line(level, "LILO boot code");
if (executable && memcmp(buf + 3, "SYSLINUX", 8) == 0)
print_line(level, "SYSLINUX boot code");
if (fill >= 1024 && find_memory(buf, 1024, "ISOLINUX", 8) >= 0)
print_line(level, "ISOLINUX boot code");
/* we know GRUB a little better now... */
if (executable &&
find_memory(buf, 512, "Geom\0Hard Disk\0Read\0 Error\0", 27) >= 0) {
if (buf[0x3e] == 3) {
print_line(level, "GRUB boot code, compat version %d.%d, boot drive 0x%02x",
(int)buf[0x3e], (int)buf[0x3f], (int)buf[0x40]);
} else if (executable && buf[0x1bc] == 2 && buf[0x1bd] <= 2) {
id = buf[0x3e];
if (id == 0x10) {
print_line(level, "GRUB boot code, compat version %d.%d, normal version",
(int)buf[0x1bc], (int)buf[0x1bd]);
} else if (id == 0x20) {
print_line(level, "GRUB boot code, compat version %d.%d, LBA version",
(int)buf[0x1bc], (int)buf[0x1bd]);
} else {
print_line(level, "GRUB boot code, compat version %d.%d",
(int)buf[0x1bc], (int)buf[0x1bd]);
}
} else {
print_line(level, "GRUB boot code, unknown compat version %d",
buf[0x3e]);
}
}
/* Linux kernel loader */
if (fill >= 1024 && memcmp((char *)buf + 512 + 2, "HdrS", 4) == 0) {
print_line(level, "Linux kernel build-in loader");
}
/* Debian install floppy splitter */
/* (not exactly boot code, but should be detected before gzip/tar */
if (memcmp(buf, "Floppy split ", 13) == 0) {
char *name = (char *)buf + 32;
char *number = (char *)buf + 164;
char *total = (char *)buf + 172;
print_line(level, "Debian floppy split, name \"%s\", disk %s of %s",
name, number, total);
}
}
/* EOF */
|