1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258 |
- /* iso9660.c - iso9660 implementation with extensions:
- SUSP, Rock Ridge. */
- /*
- * GRUB -- GRand Unified Bootloader
- * Copyright (C) 2004,2005,2006,2007,2008,2009,2010 Free Software Foundation, Inc.
- *
- * GRUB is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * GRUB is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
- */
- #include <grub/err.h>
- #include <grub/file.h>
- #include <grub/mm.h>
- #include <grub/misc.h>
- #include <grub/disk.h>
- #include <grub/dl.h>
- #include <grub/types.h>
- #include <grub/fshelp.h>
- #include <grub/charset.h>
- #include <grub/datetime.h>
- #include <grub/safemath.h>
- GRUB_MOD_LICENSE ("GPLv3+");
- #define GRUB_ISO9660_FSTYPE_DIR 0040000
- #define GRUB_ISO9660_FSTYPE_REG 0100000
- #define GRUB_ISO9660_FSTYPE_SYMLINK 0120000
- #define GRUB_ISO9660_FSTYPE_MASK 0170000
- #define GRUB_ISO9660_LOG2_BLKSZ 2
- #define GRUB_ISO9660_BLKSZ 2048
- #define GRUB_ISO9660_RR_DOT 2
- #define GRUB_ISO9660_RR_DOTDOT 4
- #define GRUB_ISO9660_VOLDESC_BOOT 0
- #define GRUB_ISO9660_VOLDESC_PRIMARY 1
- #define GRUB_ISO9660_VOLDESC_SUPP 2
- #define GRUB_ISO9660_VOLDESC_PART 3
- #define GRUB_ISO9660_VOLDESC_END 255
- #define GRUB_ISO9660_SUSP_HEADER_SZ 4
- #define GRUB_ISO9660_MAX_CE_HOPS 100000
- /* The head of a volume descriptor. */
- struct grub_iso9660_voldesc
- {
- grub_uint8_t type;
- grub_uint8_t magic[5];
- grub_uint8_t version;
- } GRUB_PACKED;
- struct grub_iso9660_date2
- {
- grub_uint8_t year;
- grub_uint8_t month;
- grub_uint8_t day;
- grub_uint8_t hour;
- grub_uint8_t minute;
- grub_uint8_t second;
- grub_uint8_t offset;
- } GRUB_PACKED;
- /* A directory entry. */
- struct grub_iso9660_dir
- {
- grub_uint8_t len;
- grub_uint8_t ext_sectors;
- grub_uint32_t first_sector;
- grub_uint32_t first_sector_be;
- grub_uint32_t size;
- grub_uint32_t size_be;
- struct grub_iso9660_date2 mtime;
- grub_uint8_t flags;
- grub_uint8_t unused2[6];
- #define MAX_NAMELEN 255
- grub_uint8_t namelen;
- } GRUB_PACKED;
- struct grub_iso9660_date
- {
- grub_uint8_t year[4];
- grub_uint8_t month[2];
- grub_uint8_t day[2];
- grub_uint8_t hour[2];
- grub_uint8_t minute[2];
- grub_uint8_t second[2];
- grub_uint8_t hundredth[2];
- grub_uint8_t offset;
- } GRUB_PACKED;
- /* The primary volume descriptor. Only little endian is used. */
- struct grub_iso9660_primary_voldesc
- {
- struct grub_iso9660_voldesc voldesc;
- grub_uint8_t unused1[33];
- grub_uint8_t volname[32];
- grub_uint8_t unused2[16];
- grub_uint8_t escape[32];
- grub_uint8_t unused3[12];
- grub_uint32_t path_table_size;
- grub_uint8_t unused4[4];
- grub_uint32_t path_table;
- grub_uint8_t unused5[12];
- struct grub_iso9660_dir rootdir;
- grub_uint8_t unused6[624];
- struct grub_iso9660_date created;
- struct grub_iso9660_date modified;
- } GRUB_PACKED;
- /* A single entry in the path table. */
- struct grub_iso9660_path
- {
- grub_uint8_t len;
- grub_uint8_t sectors;
- grub_uint32_t first_sector;
- grub_uint16_t parentdir;
- grub_uint8_t name[0];
- } GRUB_PACKED;
- /* An entry in the System Usage area of the directory entry. */
- struct grub_iso9660_susp_entry
- {
- grub_uint8_t sig[2];
- grub_uint8_t len;
- grub_uint8_t version;
- grub_uint8_t data[0];
- } GRUB_PACKED;
- /* The CE entry. This is used to describe the next block where data
- can be found. */
- struct grub_iso9660_susp_ce
- {
- struct grub_iso9660_susp_entry entry;
- grub_uint32_t blk;
- grub_uint32_t blk_be;
- grub_uint32_t off;
- grub_uint32_t off_be;
- grub_uint32_t len;
- grub_uint32_t len_be;
- } GRUB_PACKED;
- struct grub_iso9660_data
- {
- struct grub_iso9660_primary_voldesc voldesc;
- grub_disk_t disk;
- int rockridge;
- int susp_skip;
- int joliet;
- struct grub_fshelp_node *node;
- };
- struct grub_fshelp_node
- {
- struct grub_iso9660_data *data;
- grub_size_t have_dirents, alloc_dirents;
- int have_symlink;
- struct grub_iso9660_dir dirents[8];
- char symlink[0];
- };
- enum
- {
- FLAG_TYPE_PLAIN = 0,
- FLAG_TYPE_DIR = 2,
- FLAG_TYPE = 3,
- FLAG_MORE_EXTENTS = 0x80
- };
- static grub_dl_t my_mod;
- static grub_err_t
- iso9660_to_unixtime (const struct grub_iso9660_date *i, grub_int64_t *nix)
- {
- struct grub_datetime datetime;
- if (! i->year[0] && ! i->year[1]
- && ! i->year[2] && ! i->year[3]
- && ! i->month[0] && ! i->month[1]
- && ! i->day[0] && ! i->day[1]
- && ! i->hour[0] && ! i->hour[1]
- && ! i->minute[0] && ! i->minute[1]
- && ! i->second[0] && ! i->second[1]
- && ! i->hundredth[0] && ! i->hundredth[1])
- return grub_error (GRUB_ERR_BAD_NUMBER, "empty date");
- datetime.year = (i->year[0] - '0') * 1000 + (i->year[1] - '0') * 100
- + (i->year[2] - '0') * 10 + (i->year[3] - '0');
- datetime.month = (i->month[0] - '0') * 10 + (i->month[1] - '0');
- datetime.day = (i->day[0] - '0') * 10 + (i->day[1] - '0');
- datetime.hour = (i->hour[0] - '0') * 10 + (i->hour[1] - '0');
- datetime.minute = (i->minute[0] - '0') * 10 + (i->minute[1] - '0');
- datetime.second = (i->second[0] - '0') * 10 + (i->second[1] - '0');
- if (!grub_datetime2unixtime (&datetime, nix))
- return grub_error (GRUB_ERR_BAD_NUMBER, "incorrect date");
- *nix -= i->offset * 60 * 15;
- return GRUB_ERR_NONE;
- }
- static int
- iso9660_to_unixtime2 (const struct grub_iso9660_date2 *i, grub_int64_t *nix)
- {
- struct grub_datetime datetime;
- datetime.year = i->year + 1900;
- datetime.month = i->month;
- datetime.day = i->day;
- datetime.hour = i->hour;
- datetime.minute = i->minute;
- datetime.second = i->second;
- if (!grub_datetime2unixtime (&datetime, nix))
- return 0;
- *nix -= i->offset * 60 * 15;
- return 1;
- }
- static grub_err_t
- read_node (grub_fshelp_node_t node, grub_off_t off, grub_size_t len, char *buf)
- {
- grub_size_t i = 0;
- while (len > 0)
- {
- grub_size_t toread;
- grub_err_t err;
- while (i < node->have_dirents
- && off >= grub_le_to_cpu32 (node->dirents[i].size))
- {
- off -= grub_le_to_cpu32 (node->dirents[i].size);
- i++;
- }
- if (i == node->have_dirents)
- return grub_error (GRUB_ERR_OUT_OF_RANGE, "read out of range");
- toread = grub_le_to_cpu32 (node->dirents[i].size);
- if (toread > len)
- toread = len;
- err = grub_disk_read (node->data->disk,
- ((grub_disk_addr_t) grub_le_to_cpu32 (node->dirents[i].first_sector)) << GRUB_ISO9660_LOG2_BLKSZ,
- off, toread, buf);
- if (err)
- return err;
- len -= toread;
- off += toread;
- buf += toread;
- }
- return GRUB_ERR_NONE;
- }
- /* Iterate over the susp entries, starting with block SUA_BLOCK on the
- offset SUA_POS with a size of SUA_SIZE bytes. Hook is called for
- every entry. */
- static grub_err_t
- grub_iso9660_susp_iterate (grub_fshelp_node_t node, grub_off_t off,
- grub_ssize_t sua_size,
- grub_err_t (*hook)
- (struct grub_iso9660_susp_entry *entry, void *hook_arg),
- void *hook_arg)
- {
- char *sua;
- struct grub_iso9660_susp_entry *entry;
- grub_err_t err;
- int ce_counter = 0;
- grub_ssize_t ce_sua_size = 0;
- grub_off_t ce_off;
- grub_disk_addr_t ce_block;
- if (sua_size <= 0)
- return GRUB_ERR_NONE;
- if (sua_size < GRUB_ISO9660_SUSP_HEADER_SZ)
- return grub_error (GRUB_ERR_BAD_FS, "invalid susp entry size");
- sua = grub_malloc (sua_size);
- if (!sua)
- return grub_errno;
- /* Load a part of the System Usage Area. */
- err = read_node (node, off, sua_size, sua);
- if (err)
- {
- grub_free (sua);
- return err;
- }
- entry = (struct grub_iso9660_susp_entry *) sua;
- next_susp_area:
- while (entry->len > 0)
- {
- /* Ensure the entry is within System Use Area. */
- if ((char *) entry + entry->len > (sua + sua_size))
- break;
- /* The last entry. */
- if (grub_strncmp ((char *) entry->sig, "ST", 2) == 0)
- break;
- /* Additional entries are stored elsewhere. */
- if (grub_strncmp ((char *) entry->sig, "CE", 2) == 0)
- {
- struct grub_iso9660_susp_ce *ce;
- if (ce_sua_size > 0)
- {
- grub_free (sua);
- return grub_error (GRUB_ERR_BAD_FS,
- "more than one CE entry in SUSP area");
- }
- /* Buffer CE parameters for use after the end of this loop. */
- ce = (struct grub_iso9660_susp_ce *) entry;
- ce_sua_size = grub_le_to_cpu32 (ce->len);
- ce_off = grub_le_to_cpu32 (ce->off);
- ce_block = grub_le_to_cpu32 (ce->blk) << GRUB_ISO9660_LOG2_BLKSZ;
- }
- else if (hook (entry, hook_arg))
- {
- grub_free (sua);
- return 0;
- }
- entry = (struct grub_iso9660_susp_entry *) ((char *) entry + entry->len);
- if (((sua + sua_size) - (char *) entry) < GRUB_ISO9660_SUSP_HEADER_SZ)
- break;
- }
- if (ce_sua_size > 0)
- {
- /* Load the next System Use Area by buffered CE entry parameters. */
- if (++ce_counter > GRUB_ISO9660_MAX_CE_HOPS)
- {
- grub_free (sua);
- return grub_error (GRUB_ERR_BAD_FS, "suspecting endless CE loop");
- }
- if (ce_sua_size < GRUB_ISO9660_SUSP_HEADER_SZ)
- {
- grub_free (sua);
- return grub_error (GRUB_ERR_BAD_FS, "invalid continuation area in CE entry");
- }
- grub_free (sua);
- sua = grub_malloc (ce_sua_size);
- if (!sua)
- return grub_errno;
- err = grub_disk_read (node->data->disk, ce_block, ce_off, ce_sua_size, sua);
- if (err)
- {
- grub_free (sua);
- return err;
- }
- entry = (struct grub_iso9660_susp_entry *) sua;
- sua_size = ce_sua_size;
- ce_sua_size = 0;
- goto next_susp_area;
- }
- grub_free (sua);
- return 0;
- }
- static char *
- grub_iso9660_convert_string (grub_uint8_t *us, int len)
- {
- char *p;
- int i;
- grub_uint16_t t[MAX_NAMELEN / 2 + 1];
- p = grub_calloc (len, GRUB_MAX_UTF8_PER_UTF16 + 1);
- if (! p)
- return NULL;
- for (i=0; i<len; i++)
- t[i] = grub_be_to_cpu16 (grub_get_unaligned16 (us + 2 * i));
- *grub_utf16_to_utf8 ((grub_uint8_t *) p, t, len) = '\0';
- return p;
- }
- static grub_err_t
- susp_iterate_set_rockridge (struct grub_iso9660_susp_entry *susp_entry,
- void *_data)
- {
- struct grub_iso9660_data *data = _data;
- /* The "ER" entry is used to detect extensions. The
- `IEEE_P1285' extension means Rock ridge. */
- if (grub_strncmp ((char *) susp_entry->sig, "ER", 2) == 0)
- {
- data->rockridge = 1;
- return 1;
- }
- return 0;
- }
- static grub_err_t
- set_rockridge (struct grub_iso9660_data *data)
- {
- int sua_pos;
- int sua_size;
- char *sua;
- struct grub_iso9660_dir rootdir;
- struct grub_iso9660_susp_entry *entry;
- data->rockridge = 0;
- /* Read the system use area and test it to see if SUSP is
- supported. */
- if (grub_disk_read (data->disk,
- (grub_le_to_cpu32 (data->voldesc.rootdir.first_sector)
- << GRUB_ISO9660_LOG2_BLKSZ), 0,
- sizeof (rootdir), (char *) &rootdir))
- return grub_error (GRUB_ERR_BAD_FS, "not a ISO9660 filesystem");
- sua_pos = (sizeof (rootdir) + rootdir.namelen
- + (rootdir.namelen % 2) - 1);
- sua_size = rootdir.len - sua_pos;
- if (!sua_size)
- return GRUB_ERR_NONE;
- if (sua_size < GRUB_ISO9660_SUSP_HEADER_SZ)
- return grub_error (GRUB_ERR_BAD_FS, "invalid rock ridge entry size");
- sua = grub_malloc (sua_size);
- if (! sua)
- return grub_errno;
- if (grub_disk_read (data->disk,
- (grub_le_to_cpu32 (data->voldesc.rootdir.first_sector)
- << GRUB_ISO9660_LOG2_BLKSZ), sua_pos,
- sua_size, sua))
- {
- grub_free (sua);
- return grub_error (GRUB_ERR_BAD_FS, "not a ISO9660 filesystem");
- }
- entry = (struct grub_iso9660_susp_entry *) sua;
- /* Test if the SUSP protocol is used on this filesystem. */
- if (grub_strncmp ((char *) entry->sig, "SP", 2) == 0)
- {
- struct grub_fshelp_node rootnode;
- rootnode.data = data;
- rootnode.alloc_dirents = ARRAY_SIZE (rootnode.dirents);
- rootnode.have_dirents = 1;
- rootnode.have_symlink = 0;
- rootnode.dirents[0] = data->voldesc.rootdir;
- /* The size of SP (version 1) is fixed to 7. */
- if (sua_size < 7 || entry->len < 7)
- {
- grub_free (sua);
- return grub_error (GRUB_ERR_BAD_FS, "corrupted rock ridge entry");
- }
- /*
- * The 2nd data byte stored how many bytes are skipped every time
- * to get to the SUA (System Usage Area).
- */
- data->susp_skip = entry->data[2];
- entry = (struct grub_iso9660_susp_entry *) ((char *) entry + entry->len);
- /* Iterate over the entries in the SUA area to detect
- extensions. */
- if (grub_iso9660_susp_iterate (&rootnode,
- sua_pos, sua_size, susp_iterate_set_rockridge,
- data))
- {
- grub_free (sua);
- return grub_errno;
- }
- }
- grub_free (sua);
- return GRUB_ERR_NONE;
- }
- static struct grub_iso9660_data *
- grub_iso9660_mount (grub_disk_t disk)
- {
- struct grub_iso9660_data *data = 0;
- struct grub_iso9660_primary_voldesc voldesc;
- int block;
- data = grub_zalloc (sizeof (struct grub_iso9660_data));
- if (! data)
- return 0;
- data->disk = disk;
- block = 16;
- do
- {
- int copy_voldesc = 0;
- /* Read the superblock. */
- if (grub_disk_read (disk, block << GRUB_ISO9660_LOG2_BLKSZ, 0,
- sizeof (struct grub_iso9660_primary_voldesc),
- (char *) &voldesc))
- {
- grub_error (GRUB_ERR_BAD_FS, "not a ISO9660 filesystem");
- goto fail;
- }
- if (grub_strncmp ((char *) voldesc.voldesc.magic, "CD001", 5) != 0)
- {
- grub_error (GRUB_ERR_BAD_FS, "not a ISO9660 filesystem");
- goto fail;
- }
- if (voldesc.voldesc.type == GRUB_ISO9660_VOLDESC_PRIMARY)
- copy_voldesc = 1;
- else if (!data->rockridge
- && (voldesc.voldesc.type == GRUB_ISO9660_VOLDESC_SUPP)
- && (voldesc.escape[0] == 0x25) && (voldesc.escape[1] == 0x2f)
- &&
- ((voldesc.escape[2] == 0x40) || /* UCS-2 Level 1. */
- (voldesc.escape[2] == 0x43) || /* UCS-2 Level 2. */
- (voldesc.escape[2] == 0x45))) /* UCS-2 Level 3. */
- {
- copy_voldesc = 1;
- data->joliet = 1;
- }
- if (copy_voldesc)
- {
- grub_memcpy((char *) &data->voldesc, (char *) &voldesc,
- sizeof (struct grub_iso9660_primary_voldesc));
- if (set_rockridge (data))
- goto fail;
- }
- block++;
- } while (voldesc.voldesc.type != GRUB_ISO9660_VOLDESC_END);
- return data;
- fail:
- grub_free (data);
- return 0;
- }
- static char *
- grub_iso9660_read_symlink (grub_fshelp_node_t node)
- {
- return node->have_symlink
- ? grub_strdup (node->symlink
- + (node->have_dirents) * sizeof (node->dirents[0])
- - sizeof (node->dirents)) : grub_strdup ("");
- }
- static grub_off_t
- get_node_size (grub_fshelp_node_t node)
- {
- grub_off_t ret = 0;
- grub_size_t i;
- for (i = 0; i < node->have_dirents; i++)
- ret += grub_le_to_cpu32 (node->dirents[i].size);
- return ret;
- }
- struct iterate_dir_ctx
- {
- char *filename;
- int filename_alloc;
- enum grub_fshelp_filetype type;
- char *symlink;
- int was_continue;
- };
- /* Extend the symlink. */
- static void
- add_part (struct iterate_dir_ctx *ctx,
- const char *part,
- int len2)
- {
- int size = ctx->symlink ? grub_strlen (ctx->symlink) : 0;
- grub_size_t sz;
- char *new;
- if (grub_add (size, len2, &sz) ||
- grub_add (sz, 1, &sz))
- return;
- new = grub_realloc (ctx->symlink, sz);
- if (!new)
- {
- grub_free (ctx->symlink);
- ctx->symlink = NULL;
- return;
- }
- ctx->symlink = new;
- grub_memcpy (ctx->symlink + size, part, len2);
- ctx->symlink[size + len2] = 0;
- }
- static grub_err_t
- susp_iterate_dir (struct grub_iso9660_susp_entry *entry,
- void *_ctx)
- {
- struct iterate_dir_ctx *ctx = _ctx;
- /* The filename in the rock ridge entry. */
- if (grub_strncmp ("NM", (char *) entry->sig, 2) == 0)
- {
- /* The flags are stored at the data position 0, here the
- filename type is stored. */
- /* FIXME: Fix this slightly improper cast. */
- if (entry->data[0] & GRUB_ISO9660_RR_DOT)
- ctx->filename = (char *) ".";
- else if (entry->data[0] & GRUB_ISO9660_RR_DOTDOT)
- ctx->filename = (char *) "..";
- else if (entry->len >= 5)
- {
- grub_size_t off = 0, csize = 1;
- char *old;
- grub_size_t sz;
- csize = entry->len - 5;
- old = ctx->filename;
- if (ctx->filename_alloc)
- {
- off = grub_strlen (ctx->filename);
- if (grub_add (csize, off, &sz) ||
- grub_add (sz, 1, &sz))
- return GRUB_ERR_OUT_OF_RANGE;
- ctx->filename = grub_realloc (ctx->filename, sz);
- }
- else
- {
- off = 0;
- if (grub_add (csize, 1, &sz))
- return GRUB_ERR_OUT_OF_RANGE;
- ctx->filename = grub_zalloc (sz);
- }
- if (!ctx->filename)
- {
- ctx->filename = old;
- return grub_errno;
- }
- ctx->filename_alloc = 1;
- grub_memcpy (ctx->filename + off, (char *) &entry->data[1], csize);
- ctx->filename[off + csize] = '\0';
- }
- }
- /* The mode information (st_mode). */
- else if (grub_strncmp ((char *) entry->sig, "PX", 2) == 0)
- {
- /* At position 0 of the PX record the st_mode information is
- stored (little-endian). */
- grub_uint32_t mode = ((entry->data[0] + (entry->data[1] << 8))
- & GRUB_ISO9660_FSTYPE_MASK);
- switch (mode)
- {
- case GRUB_ISO9660_FSTYPE_DIR:
- ctx->type = GRUB_FSHELP_DIR;
- break;
- case GRUB_ISO9660_FSTYPE_REG:
- ctx->type = GRUB_FSHELP_REG;
- break;
- case GRUB_ISO9660_FSTYPE_SYMLINK:
- ctx->type = GRUB_FSHELP_SYMLINK;
- break;
- default:
- ctx->type = GRUB_FSHELP_UNKNOWN;
- }
- }
- else if (grub_strncmp ("SL", (char *) entry->sig, 2) == 0)
- {
- unsigned int pos = 1;
- unsigned int csize;
- /* The symlink is not stored as a POSIX symlink, translate it. */
- while ((pos + GRUB_ISO9660_SUSP_HEADER_SZ + 1) < entry->len)
- {
- /*
- * entry->len is GRUB_ISO9660_SUSP_HEADER_SZ + 1 (the FLAGS) +
- * length of the "Component Area". The length of a component
- * record is 2 (pos and pos + 1) plus the "Component Content",
- * of which starts at pos + 2. entry->data[pos] is the
- * "Component Flags"; entry->data[pos + 1] is the length
- * of the component.
- */
- csize = entry->data[pos + 1] + 2;
- if (GRUB_ISO9660_SUSP_HEADER_SZ + 1 + csize > entry->len)
- break;
- /* The current position is the `Component Flag'. */
- switch (entry->data[pos] & 30)
- {
- case 0:
- {
- /* The data on pos + 2 is the actual data, pos + 1
- is the length. Both are part of the `Component
- Record'. */
- if (ctx->symlink && !ctx->was_continue)
- {
- add_part (ctx, "/", 1);
- if (grub_errno)
- return grub_errno;
- }
- add_part (ctx, (char *) &entry->data[pos + 2],
- entry->data[pos + 1]);
- ctx->was_continue = (entry->data[pos] & 1);
- break;
- }
- case 2:
- add_part (ctx, "./", 2);
- break;
- case 4:
- add_part (ctx, "../", 3);
- break;
- case 8:
- add_part (ctx, "/", 1);
- break;
- }
- /* Check if grub_realloc() failed in add_part(). */
- if (grub_errno)
- return grub_errno;
- /* In pos + 1 the length of the `Component Record' is
- stored. */
- pos += entry->data[pos + 1] + 2;
- }
- /* Check if `grub_realloc' failed. */
- if (grub_errno)
- return grub_errno;
- }
- return 0;
- }
- static int
- grub_iso9660_iterate_dir (grub_fshelp_node_t dir,
- grub_fshelp_iterate_dir_hook_t hook, void *hook_data)
- {
- struct grub_iso9660_dir dirent;
- grub_off_t offset = 0;
- grub_off_t len;
- struct iterate_dir_ctx ctx;
- len = get_node_size (dir);
- for (; offset < len; offset += dirent.len)
- {
- ctx.symlink = 0;
- ctx.was_continue = 0;
- if (read_node (dir, offset, sizeof (dirent), (char *) &dirent))
- return 0;
- /* The end of the block, skip to the next one. */
- if (!dirent.len)
- {
- offset = (offset / GRUB_ISO9660_BLKSZ + 1) * GRUB_ISO9660_BLKSZ;
- continue;
- }
- {
- char name[MAX_NAMELEN + 1];
- int nameoffset = offset + sizeof (dirent);
- struct grub_fshelp_node *node;
- int sua_off = (sizeof (dirent) + dirent.namelen + 1
- - (dirent.namelen % 2));
- int sua_size = dirent.len - sua_off;
- sua_off += offset + dir->data->susp_skip;
- ctx.filename = 0;
- ctx.filename_alloc = 0;
- ctx.type = GRUB_FSHELP_UNKNOWN;
- if (dir->data->rockridge
- && grub_iso9660_susp_iterate (dir, sua_off, sua_size,
- susp_iterate_dir, &ctx))
- return 0;
- /* Read the name. */
- if (read_node (dir, nameoffset, dirent.namelen, (char *) name))
- return 0;
- node = grub_malloc (sizeof (struct grub_fshelp_node));
- if (!node)
- return 0;
- node->alloc_dirents = ARRAY_SIZE (node->dirents);
- node->have_dirents = 1;
- /* Setup a new node. */
- node->data = dir->data;
- node->have_symlink = 0;
- /* If the filetype was not stored using rockridge, use
- whatever is stored in the iso9660 filesystem. */
- if (ctx.type == GRUB_FSHELP_UNKNOWN)
- {
- if ((dirent.flags & FLAG_TYPE) == FLAG_TYPE_DIR)
- ctx.type = GRUB_FSHELP_DIR;
- else
- ctx.type = GRUB_FSHELP_REG;
- }
- /* . and .. */
- if (!ctx.filename && dirent.namelen == 1 && name[0] == 0)
- ctx.filename = (char *) ".";
- if (!ctx.filename && dirent.namelen == 1 && name[0] == 1)
- ctx.filename = (char *) "..";
- /* The filename was not stored in a rock ridge entry. Read it
- from the iso9660 filesystem. */
- if (!dir->data->joliet && !ctx.filename)
- {
- char *ptr;
- name[dirent.namelen] = '\0';
- ctx.filename = grub_strrchr (name, ';');
- if (ctx.filename)
- *ctx.filename = '\0';
- /* ISO9660 names are not case-preserving. */
- ctx.type |= GRUB_FSHELP_CASE_INSENSITIVE;
- for (ptr = name; *ptr; ptr++)
- *ptr = grub_tolower (*ptr);
- if (ptr != name && *(ptr - 1) == '.')
- *(ptr - 1) = 0;
- ctx.filename = name;
- }
- if (dir->data->joliet && !ctx.filename)
- {
- char *semicolon;
- ctx.filename = grub_iso9660_convert_string
- ((grub_uint8_t *) name, dirent.namelen >> 1);
- semicolon = grub_strrchr (ctx.filename, ';');
- if (semicolon)
- *semicolon = '\0';
- ctx.filename_alloc = 1;
- }
- node->dirents[0] = dirent;
- while (dirent.flags & FLAG_MORE_EXTENTS)
- {
- offset += dirent.len;
- /* offset should within the dir's len. */
- if (offset > len)
- {
- if (ctx.filename_alloc)
- grub_free (ctx.filename);
- grub_free (node);
- return 0;
- }
- if (read_node (dir, offset, sizeof (dirent), (char *) &dirent))
- {
- if (ctx.filename_alloc)
- grub_free (ctx.filename);
- grub_free (node);
- return 0;
- }
- /*
- * It is either the end of block or zero-padded sector,
- * skip to the next block.
- */
- if (!dirent.len)
- {
- offset = (offset / GRUB_ISO9660_BLKSZ + 1) * GRUB_ISO9660_BLKSZ;
- dirent.flags |= FLAG_MORE_EXTENTS;
- continue;
- }
- if (node->have_dirents >= node->alloc_dirents)
- {
- struct grub_fshelp_node *new_node;
- grub_size_t sz;
- if (grub_mul (node->alloc_dirents, 2, &node->alloc_dirents) ||
- grub_sub (node->alloc_dirents, ARRAY_SIZE (node->dirents), &sz) ||
- grub_mul (sz, sizeof (node->dirents[0]), &sz) ||
- grub_add (sz, sizeof (struct grub_fshelp_node), &sz))
- goto fail_0;
- new_node = grub_realloc (node, sz);
- if (!new_node)
- {
- fail_0:
- if (ctx.filename_alloc)
- grub_free (ctx.filename);
- grub_free (node);
- return 0;
- }
- node = new_node;
- }
- node->dirents[node->have_dirents++] = dirent;
- }
- if (ctx.symlink)
- {
- if ((node->alloc_dirents - node->have_dirents)
- * sizeof (node->dirents[0]) < grub_strlen (ctx.symlink) + 1)
- {
- struct grub_fshelp_node *new_node;
- grub_size_t sz;
- if (grub_sub (node->alloc_dirents, ARRAY_SIZE (node->dirents), &sz) ||
- grub_mul (sz, sizeof (node->dirents[0]), &sz) ||
- grub_add (sz, sizeof (struct grub_fshelp_node) + 1, &sz) ||
- grub_add (sz, grub_strlen (ctx.symlink), &sz))
- goto fail_1;
- new_node = grub_realloc (node, sz);
- if (!new_node)
- {
- fail_1:
- if (ctx.filename_alloc)
- grub_free (ctx.filename);
- grub_free (node);
- return 0;
- }
- node = new_node;
- }
- node->have_symlink = 1;
- grub_strcpy (node->symlink
- + node->have_dirents * sizeof (node->dirents[0])
- - sizeof (node->dirents), ctx.symlink);
- grub_free (ctx.symlink);
- ctx.symlink = 0;
- ctx.was_continue = 0;
- }
- if (hook (ctx.filename, ctx.type, node, hook_data))
- {
- if (ctx.filename_alloc)
- grub_free (ctx.filename);
- return 1;
- }
- if (ctx.filename_alloc)
- grub_free (ctx.filename);
- }
- }
- return 0;
- }
- /* Context for grub_iso9660_dir. */
- struct grub_iso9660_dir_ctx
- {
- grub_fs_dir_hook_t hook;
- void *hook_data;
- };
- /* Helper for grub_iso9660_dir. */
- static int
- grub_iso9660_dir_iter (const char *filename,
- enum grub_fshelp_filetype filetype,
- grub_fshelp_node_t node, void *data)
- {
- struct grub_iso9660_dir_ctx *ctx = data;
- struct grub_dirhook_info info;
- grub_memset (&info, 0, sizeof (info));
- info.dir = ((filetype & GRUB_FSHELP_TYPE_MASK) == GRUB_FSHELP_DIR);
- info.mtimeset = !!iso9660_to_unixtime2 (&node->dirents[0].mtime, &info.mtime);
- grub_free (node);
- return ctx->hook (filename, &info, ctx->hook_data);
- }
- static grub_err_t
- grub_iso9660_dir (grub_device_t device, const char *path,
- grub_fs_dir_hook_t hook, void *hook_data)
- {
- struct grub_iso9660_dir_ctx ctx = { hook, hook_data };
- struct grub_iso9660_data *data = 0;
- struct grub_fshelp_node rootnode;
- struct grub_fshelp_node *foundnode;
- grub_dl_ref (my_mod);
- data = grub_iso9660_mount (device->disk);
- if (! data)
- goto fail;
- rootnode.data = data;
- rootnode.alloc_dirents = 0;
- rootnode.have_dirents = 1;
- rootnode.have_symlink = 0;
- rootnode.dirents[0] = data->voldesc.rootdir;
- /* Use the fshelp function to traverse the path. */
- if (grub_fshelp_find_file (path, &rootnode,
- &foundnode,
- grub_iso9660_iterate_dir,
- grub_iso9660_read_symlink,
- GRUB_FSHELP_DIR))
- goto fail;
- /* List the files in the directory. */
- grub_iso9660_iterate_dir (foundnode, grub_iso9660_dir_iter, &ctx);
- if (foundnode != &rootnode)
- grub_free (foundnode);
- fail:
- grub_free (data);
- grub_dl_unref (my_mod);
- return grub_errno;
- }
- /* Open a file named NAME and initialize FILE. */
- static grub_err_t
- grub_iso9660_open (struct grub_file *file, const char *name)
- {
- struct grub_iso9660_data *data;
- struct grub_fshelp_node rootnode;
- struct grub_fshelp_node *foundnode;
- grub_dl_ref (my_mod);
- data = grub_iso9660_mount (file->device->disk);
- if (!data)
- goto fail;
- rootnode.data = data;
- rootnode.alloc_dirents = 0;
- rootnode.have_dirents = 1;
- rootnode.have_symlink = 0;
- rootnode.dirents[0] = data->voldesc.rootdir;
- /* Use the fshelp function to traverse the path. */
- if (grub_fshelp_find_file (name, &rootnode,
- &foundnode,
- grub_iso9660_iterate_dir,
- grub_iso9660_read_symlink,
- GRUB_FSHELP_REG))
- goto fail;
- data->node = foundnode;
- file->data = data;
- file->size = get_node_size (foundnode);
- file->offset = 0;
- return 0;
- fail:
- grub_dl_unref (my_mod);
- grub_free (data);
- return grub_errno;
- }
- static grub_ssize_t
- grub_iso9660_read (grub_file_t file, char *buf, grub_size_t len)
- {
- struct grub_iso9660_data *data =
- (struct grub_iso9660_data *) file->data;
- grub_err_t err;
- /* XXX: The file is stored in as a single extent. */
- data->disk->read_hook = file->read_hook;
- data->disk->read_hook_data = file->read_hook_data;
- err = read_node (data->node, file->offset, len, buf);
- data->disk->read_hook = NULL;
- if (err || grub_errno)
- return -1;
- return len;
- }
- static grub_err_t
- grub_iso9660_close (grub_file_t file)
- {
- struct grub_iso9660_data *data =
- (struct grub_iso9660_data *) file->data;
- grub_free (data->node);
- grub_free (data);
- grub_dl_unref (my_mod);
- return GRUB_ERR_NONE;
- }
- static grub_err_t
- grub_iso9660_label (grub_device_t device, char **label)
- {
- struct grub_iso9660_data *data;
- data = grub_iso9660_mount (device->disk);
- if (data)
- {
- if (data->joliet)
- *label = grub_iso9660_convert_string (data->voldesc.volname, 16);
- else
- *label = grub_strndup ((char *) data->voldesc.volname, 32);
- if (*label)
- {
- char *ptr;
- for (ptr = *label; *ptr;ptr++);
- ptr--;
- while (ptr >= *label && *ptr == ' ')
- *ptr-- = 0;
- }
- grub_free (data);
- }
- else
- *label = 0;
- return grub_errno;
- }
- static grub_err_t
- grub_iso9660_uuid (grub_device_t device, char **uuid)
- {
- struct grub_iso9660_data *data;
- grub_disk_t disk = device->disk;
- grub_dl_ref (my_mod);
- data = grub_iso9660_mount (disk);
- if (data)
- {
- if (! data->voldesc.modified.year[0] && ! data->voldesc.modified.year[1]
- && ! data->voldesc.modified.year[2] && ! data->voldesc.modified.year[3]
- && ! data->voldesc.modified.month[0] && ! data->voldesc.modified.month[1]
- && ! data->voldesc.modified.day[0] && ! data->voldesc.modified.day[1]
- && ! data->voldesc.modified.hour[0] && ! data->voldesc.modified.hour[1]
- && ! data->voldesc.modified.minute[0] && ! data->voldesc.modified.minute[1]
- && ! data->voldesc.modified.second[0] && ! data->voldesc.modified.second[1]
- && ! data->voldesc.modified.hundredth[0] && ! data->voldesc.modified.hundredth[1])
- {
- grub_error (GRUB_ERR_BAD_NUMBER, "no creation date in filesystem to generate UUID");
- *uuid = NULL;
- }
- else
- {
- *uuid = grub_xasprintf ("%c%c%c%c-%c%c-%c%c-%c%c-%c%c-%c%c-%c%c",
- data->voldesc.modified.year[0],
- data->voldesc.modified.year[1],
- data->voldesc.modified.year[2],
- data->voldesc.modified.year[3],
- data->voldesc.modified.month[0],
- data->voldesc.modified.month[1],
- data->voldesc.modified.day[0],
- data->voldesc.modified.day[1],
- data->voldesc.modified.hour[0],
- data->voldesc.modified.hour[1],
- data->voldesc.modified.minute[0],
- data->voldesc.modified.minute[1],
- data->voldesc.modified.second[0],
- data->voldesc.modified.second[1],
- data->voldesc.modified.hundredth[0],
- data->voldesc.modified.hundredth[1]);
- }
- }
- else
- *uuid = NULL;
- grub_dl_unref (my_mod);
- grub_free (data);
- return grub_errno;
- }
- /* Get writing time of filesystem. */
- static grub_err_t
- grub_iso9660_mtime (grub_device_t device, grub_int64_t *timebuf)
- {
- struct grub_iso9660_data *data;
- grub_disk_t disk = device->disk;
- grub_err_t err;
- grub_dl_ref (my_mod);
- data = grub_iso9660_mount (disk);
- if (!data)
- {
- grub_dl_unref (my_mod);
- return grub_errno;
- }
- err = iso9660_to_unixtime (&data->voldesc.modified, timebuf);
- grub_dl_unref (my_mod);
- grub_free (data);
- return err;
- }
- static struct grub_fs grub_iso9660_fs =
- {
- .name = "iso9660",
- .fs_dir = grub_iso9660_dir,
- .fs_open = grub_iso9660_open,
- .fs_read = grub_iso9660_read,
- .fs_close = grub_iso9660_close,
- .fs_label = grub_iso9660_label,
- .fs_uuid = grub_iso9660_uuid,
- .fs_mtime = grub_iso9660_mtime,
- #ifdef GRUB_UTIL
- .reserved_first_sector = 1,
- .blocklist_install = 1,
- #endif
- .next = 0
- };
- GRUB_MOD_INIT(iso9660)
- {
- grub_fs_register (&grub_iso9660_fs);
- my_mod = mod;
- }
- GRUB_MOD_FINI(iso9660)
- {
- grub_fs_unregister (&grub_iso9660_fs);
- }
|