cpio.c 1.56 KB
Newer Older
1 2 3
/* cpio.c - cpio and tar filesystem.  */
/*
 *  GRUB  --  GRand Unified Bootloader
4
 *  Copyright (C) 2007,2008,2009,2013 Free Software Foundation, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 *  This program 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.
 *
 *  This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <grub/misc.h>

22
/* cpio support */
23 24
#define ALIGN_CPIO(x) (ALIGN_UP ((x), 2))
#define	MAGIC       "\xc7\x71"
25
struct head
26
{
27
  grub_uint16_t magic[1];
28 29
  grub_uint16_t dev;
  grub_uint16_t ino;
30
  grub_uint16_t mode[1];
31 32 33 34
  grub_uint16_t uid;
  grub_uint16_t gid;
  grub_uint16_t nlink;
  grub_uint16_t rdev;
35 36 37
  grub_uint16_t mtime[2];
  grub_uint16_t namesize[1];
  grub_uint16_t filesize[2];
38
} GRUB_PACKED;
39

40 41 42 43 44 45 46 47
static inline unsigned long long
read_number (const grub_uint16_t *arr, grub_size_t size)
{
  long long ret = 0;
  while (size--)
    ret = (ret << 16) | grub_le_to_cpu16 (*arr++);
  return ret;
}
48

49
#define FSNAME "cpiofs"
50

51
#include "cpio_common.c"
52

53
GRUB_MOD_INIT (cpio)
54 55 56 57
{
  grub_fs_register (&grub_cpio_fs);
}

58
GRUB_MOD_FINI (cpio)
59 60 61
{
  grub_fs_unregister (&grub_cpio_fs);
}