2019-06-03 01:57:25 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2019-06-09 07:48:07 +00:00
|
|
|
#include "fat12.h"
|
2019-06-09 12:32:53 +00:00
|
|
|
#include "fat12-internals.h"
|
2019-06-03 01:57:25 +00:00
|
|
|
#include "io.h"
|
|
|
|
|
2019-06-09 12:32:53 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2019-06-09 07:48:07 +00:00
|
|
|
// Create a FAT12 filesystem using the given file descriptor,
|
|
|
|
// with length _bytes_.
|
|
|
|
// It will define a root directory size and padding size so that the file sectors
|
|
|
|
// end up on 4096-byte boundaries.
|
2019-06-12 10:22:12 +00:00
|
|
|
int fat12_mkfs(struct pang_io *io, uint32_t bytes) {
|
2019-06-03 01:57:25 +00:00
|
|
|
uint8_t mbr[512];
|
2019-06-12 10:22:12 +00:00
|
|
|
off_t offset = 0;
|
2019-06-09 07:48:07 +00:00
|
|
|
const uint32_t sector_size = 512;
|
|
|
|
uint32_t cluster_size = 4096 / sector_size; // 4 kiB cluster sizes match flash erase block size
|
2019-06-09 07:51:59 +00:00
|
|
|
if (bytes > 16000000) {
|
2019-06-09 07:48:07 +00:00
|
|
|
// We run out of clusters just below 16 megabytes. Use bigger cluseters.
|
|
|
|
cluster_size = 8192 / sector_size;
|
|
|
|
}
|
|
|
|
const uint32_t reserved_sectors = 1; // The MBR is the only reserved sector
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
// XXX What happens if this is an even multiple of sectors?
|
2019-06-09 07:48:07 +00:00
|
|
|
// Size of FAT (in bytes)
|
2019-06-03 01:57:25 +00:00
|
|
|
uint32_t fat_size = 1 + ((((bytes * 3) / sector_size) / cluster_size) / 2);
|
2019-06-09 07:48:07 +00:00
|
|
|
uint32_t fat_size_sectors = ((fat_size - 1) / sector_size) + 1;
|
|
|
|
|
|
|
|
uint32_t root_directory_sector_count = cluster_size - (fat_size_sectors + reserved_sectors);
|
2019-06-12 10:55:39 +00:00
|
|
|
if (!root_directory_sector_count)
|
|
|
|
root_directory_sector_count = cluster_size;
|
2019-06-09 07:48:07 +00:00
|
|
|
uint32_t root_directory_entry_count = (sector_size / sizeof(struct fat_directory_entry)) * root_directory_sector_count;
|
|
|
|
|
2019-06-09 12:32:53 +00:00
|
|
|
fprintf(stderr, "bytes: %d\n", bytes);
|
|
|
|
fprintf(stderr, "sector_size: %d\n", sector_size);
|
|
|
|
fprintf(stderr, "cluster_size: %d\n", cluster_size);
|
|
|
|
fprintf(stderr, "reserved_sectors: %d\n", reserved_sectors);
|
|
|
|
fprintf(stderr, "fat_size: %d\n", fat_size);
|
|
|
|
fprintf(stderr, "fat_size_sectors: %d\n", fat_size_sectors);
|
|
|
|
fprintf(stderr, "root_directory_sector_count: %d\n", root_directory_sector_count);
|
|
|
|
fprintf(stderr, "root_directory_entry_count: %d\n", root_directory_entry_count);
|
|
|
|
fprintf(stderr, "\n");
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
memset(mbr, 0, sizeof(mbr));
|
|
|
|
|
|
|
|
// jmp instruction
|
|
|
|
mbr[0] = 0xeb;
|
|
|
|
mbr[1] = 0x3c;
|
|
|
|
mbr[2] = 0x90;
|
|
|
|
|
|
|
|
// OEM name
|
|
|
|
memcpy(mbr+3, "Fomu MBR", 8);
|
|
|
|
|
|
|
|
// Bytes per sector (512)
|
|
|
|
fat12_write_u16(mbr + 0x0b, sector_size);
|
|
|
|
|
|
|
|
// Sectors per cluster (8), so cluster is 512 * 8
|
2019-06-09 07:48:07 +00:00
|
|
|
fat12_write_u8(mbr + 0x0d, cluster_size);
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
// Reserved sector count (8 sectors, to pad things to 4096-byte boundaries)
|
2019-06-09 07:48:07 +00:00
|
|
|
fat12_write_u16(mbr + 0x0e, reserved_sectors);
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
// Number of FATs (1)
|
2019-06-09 07:48:07 +00:00
|
|
|
fat12_write_u8(mbr + 0x10, 1);
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
// Maximum number of root directory entries (16)
|
2019-06-09 07:48:07 +00:00
|
|
|
fat12_write_u16(mbr + 0x11, root_directory_entry_count);
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
// Total number of 512-byte sectors
|
|
|
|
fat12_write_u16(mbr + 0x13, bytes / sector_size);
|
|
|
|
|
|
|
|
// Type of media (0xf8 == fixed disk)
|
2019-06-09 07:48:07 +00:00
|
|
|
fat12_write_u8(mbr + 0x15, 0xf8);
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
// Sectors per FAT
|
2019-06-09 07:48:07 +00:00
|
|
|
fat12_write_u16(mbr + 0x16, fat_size_sectors);
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
// Sectors per track
|
|
|
|
fat12_write_u16(mbr + 0x18, 32);
|
|
|
|
|
|
|
|
// Number of heads
|
|
|
|
fat12_write_u16(mbr + 0x1a, 64);
|
|
|
|
|
|
|
|
// Hidden sectors
|
2019-06-09 07:48:07 +00:00
|
|
|
// mbr[0x1c] = 0x00;
|
|
|
|
// mbr[0x1d] = 0x00;
|
|
|
|
// mbr[0x1e] = 0x00;
|
|
|
|
// mbr[0x1f] = 0x00;
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
// Total number of sectors (unused, since we put it in 0x13)
|
2019-06-09 07:48:07 +00:00
|
|
|
// mbr[0x20] = 0;
|
|
|
|
// mbr[0x21] = 0;
|
|
|
|
// mbr[0x22] = 0;
|
|
|
|
// mbr[0x23] = 0;
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
// BIOS drive
|
2019-06-09 07:48:07 +00:00
|
|
|
fat12_write_u8(mbr + 0x24, 0x80);
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
// Unused
|
2019-06-09 07:48:07 +00:00
|
|
|
fat12_write_u8(mbr + 0x25, 0);
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
// Boot signature
|
2019-06-09 07:48:07 +00:00
|
|
|
fat12_write_u8(mbr + 0x26, 0x29);
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
// Serial number
|
2019-06-09 07:48:07 +00:00
|
|
|
fat12_write_u8(mbr + 0x27, 0xf0);
|
|
|
|
fat12_write_u8(mbr + 0x28, 0xb0);
|
|
|
|
fat12_write_u8(mbr + 0x29, 0x00);
|
|
|
|
fat12_write_u8(mbr + 0x2a, 0x07);
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
// Volume Name
|
|
|
|
memcpy(mbr + 0x2b, "Fomu ", 11);
|
|
|
|
|
|
|
|
// Filesystem
|
|
|
|
memcpy(mbr + 0x36, "FAT12 ", 8);
|
|
|
|
|
|
|
|
// Signature
|
2019-06-09 07:48:07 +00:00
|
|
|
fat12_write_u8(mbr + 0xfe, 0x55);
|
|
|
|
fat12_write_u8(mbr + 0xff, 0xaa);
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
// Write MBR to disk
|
2019-06-12 10:22:12 +00:00
|
|
|
if (pang_write(io, offset, mbr, sizeof(mbr)) != sizeof(mbr)) {
|
2019-06-03 01:57:25 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2019-06-12 10:22:12 +00:00
|
|
|
offset += sector_size;
|
2019-06-03 01:57:25 +00:00
|
|
|
|
|
|
|
memset(mbr, 0, sizeof(mbr));
|
|
|
|
|
2019-06-09 07:48:07 +00:00
|
|
|
// The first two clusters in the FAT are reserved
|
2019-06-03 01:57:25 +00:00
|
|
|
fat12_set_cluster(mbr, 0, 0xff8); // 0xff8 instead of 0xfff indicates "Hard Disk"
|
|
|
|
fat12_set_cluster(mbr, 1, 0xfff); // 0xfff is reserved value
|
|
|
|
|
|
|
|
// Root directory is only one cluster
|
2019-06-09 07:48:07 +00:00
|
|
|
// fat12_set_cluster(mbr, 2, 0xfff);
|
2019-06-03 01:57:25 +00:00
|
|
|
|
2019-06-12 10:22:12 +00:00
|
|
|
if (pang_write(io, offset, mbr, sizeof(mbr)) != sizeof(mbr)) {
|
2019-06-03 01:57:25 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2019-06-12 10:22:12 +00:00
|
|
|
offset += sector_size;
|
2019-06-03 01:57:25 +00:00
|
|
|
|
2019-06-09 07:48:07 +00:00
|
|
|
// Fill in the rest of the FAT
|
|
|
|
uint32_t fat_sector;
|
|
|
|
memset(mbr, 0, sizeof(mbr));
|
|
|
|
for (fat_sector = 1; fat_sector < fat_size_sectors; fat_sector++) {
|
2019-06-12 10:22:12 +00:00
|
|
|
if (pang_write(io, offset, mbr, sizeof(mbr)) != sizeof(mbr)) {
|
2019-06-09 07:48:07 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2019-06-12 10:22:12 +00:00
|
|
|
offset += sector_size;
|
2019-06-09 07:48:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fill in the root directory
|
|
|
|
uint32_t root_directory_sector;
|
|
|
|
for (root_directory_sector = 0; root_directory_sector < cluster_size; root_directory_sector++) {
|
2019-06-12 10:22:12 +00:00
|
|
|
if (pang_write(io, offset, mbr, sizeof(mbr)) != sizeof(mbr)) {
|
2019-06-09 07:48:07 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2019-06-12 10:22:12 +00:00
|
|
|
offset += sector_size;
|
2019-06-09 07:48:07 +00:00
|
|
|
}
|
|
|
|
|
2019-06-03 01:57:25 +00:00
|
|
|
return 0;
|
|
|
|
}
|