2018-12-30 12:47:27 +00:00
|
|
|
//! *catar* binary format definition
|
|
|
|
//!
|
|
|
|
//! Please note the all values are stored in little endian ordering.
|
|
|
|
//!
|
|
|
|
//! The Archive contains a list of items. Each item starts with a
|
|
|
|
//! `CaFormatHeader`, followed by the item data.
|
|
|
|
|
2018-12-27 08:22:23 +00:00
|
|
|
use failure::*;
|
2019-01-07 18:07:03 +00:00
|
|
|
use endian_trait::Endian;
|
2018-12-27 08:22:23 +00:00
|
|
|
|
2018-12-30 16:32:52 +00:00
|
|
|
use siphasher::sip::SipHasher24;
|
|
|
|
|
2018-12-28 08:55:26 +00:00
|
|
|
pub const CA_FORMAT_ENTRY: u64 = 0x1396fabcea5bbb51;
|
|
|
|
pub const CA_FORMAT_FILENAME: u64 = 0x6dbb6ebcb3161f0b;
|
|
|
|
pub const CA_FORMAT_SYMLINK: u64 = 0x664a6fb6830e0d6c;
|
2018-12-28 09:44:12 +00:00
|
|
|
pub const CA_FORMAT_PAYLOAD: u64 = 0x8b9e1d93d6dcffc9;
|
|
|
|
|
2018-12-28 08:55:26 +00:00
|
|
|
pub const CA_FORMAT_GOODBYE: u64 = 0xdfd35c5e8327c403;
|
2018-12-27 08:22:23 +00:00
|
|
|
/* The end marker used in the GOODBYE object */
|
2018-12-28 08:55:26 +00:00
|
|
|
pub const CA_FORMAT_GOODBYE_TAIL_MARKER: u64 = 0x57446fa533702943;
|
2018-12-27 08:22:23 +00:00
|
|
|
|
2019-01-11 08:20:10 +00:00
|
|
|
|
|
|
|
// Feature flags
|
|
|
|
|
2019-01-11 09:44:57 +00:00
|
|
|
/// restrict UIDs toö 16 bit
|
|
|
|
pub const CA_FORMAT_WITH_16BIT_UIDS: u64 = 0x1;
|
|
|
|
/// assume UIDs are 32 bit
|
|
|
|
pub const CA_FORMAT_WITH_32BIT_UIDS: u64 = 0x2;
|
|
|
|
/// include user and group name
|
|
|
|
pub const CA_FORMAT_WITH_USER_NAMES: u64 = 0x4;
|
|
|
|
pub const CA_FORMAT_WITH_SEC_TIME: u64 = 0x8;
|
|
|
|
pub const CA_FORMAT_WITH_USEC_TIME: u64 = 0x10;
|
|
|
|
pub const CA_FORMAT_WITH_NSEC_TIME: u64 = 0x20;
|
|
|
|
/// FAT-style 2s time granularity
|
|
|
|
pub const CA_FORMAT_WITH_2SEC_TIME: u64 = 0x40;
|
|
|
|
pub const CA_FORMAT_WITH_READ_ONLY: u64 = 0x80;
|
|
|
|
pub const CA_FORMAT_WITH_PERMISSIONS: u64 = 0x100;
|
|
|
|
/// include symbolik links
|
|
|
|
pub const CA_FORMAT_WITH_SYMLINKS: u64 = 0x200;
|
|
|
|
/// include device nodes
|
|
|
|
pub const CA_FORMAT_WITH_DEVICE_NODES: u64 = 0x400;
|
|
|
|
/// include FIFOs
|
|
|
|
pub const CA_FORMAT_WITH_FIFOS: u64 = 0x800;
|
|
|
|
/// include Sockets
|
|
|
|
pub const CA_FORMAT_WITH_SOCKETS: u64 = 0x1000;
|
|
|
|
|
2019-01-11 09:01:51 +00:00
|
|
|
/// DOS file flag `HIDDEN`
|
2019-01-11 08:20:10 +00:00
|
|
|
pub const CA_FORMAT_WITH_FLAG_HIDDEN: u64 = 0x2000;
|
2019-01-11 09:01:51 +00:00
|
|
|
/// DOS file flag `SYSTEM`
|
2019-01-11 08:20:10 +00:00
|
|
|
pub const CA_FORMAT_WITH_FLAG_SYSTEM: u64 = 0x4000;
|
2019-01-11 09:01:51 +00:00
|
|
|
/// DOS file flag `ARCHIVE`
|
2019-01-11 08:20:10 +00:00
|
|
|
pub const CA_FORMAT_WITH_FLAG_ARCHIVE: u64 = 0x8000;
|
|
|
|
|
2019-01-11 09:01:51 +00:00
|
|
|
// chattr() flags#
|
|
|
|
/// Linux file attribute `APPEND`
|
2019-01-11 08:20:10 +00:00
|
|
|
pub const CA_FORMAT_WITH_FLAG_APPEND: u64 = 0x10000;
|
2019-01-11 09:01:51 +00:00
|
|
|
/// Linux file attribute `NOATIME`
|
2019-01-11 08:20:10 +00:00
|
|
|
pub const CA_FORMAT_WITH_FLAG_NOATIME: u64 = 0x20000;
|
2019-01-11 09:01:51 +00:00
|
|
|
/// Linux file attribute `COMPR`
|
2019-01-11 08:20:10 +00:00
|
|
|
pub const CA_FORMAT_WITH_FLAG_COMPR: u64 = 0x40000;
|
2019-01-11 09:01:51 +00:00
|
|
|
/// Linux file attribute `NOCOW`
|
2019-01-11 08:20:10 +00:00
|
|
|
pub const CA_FORMAT_WITH_FLAG_NOCOW: u64 = 0x80000;
|
2019-01-11 09:01:51 +00:00
|
|
|
/// Linux file attribute `NODUMP`
|
2019-01-11 08:20:10 +00:00
|
|
|
pub const CA_FORMAT_WITH_FLAG_NODUMP: u64 = 0x100000;
|
2019-01-11 09:01:51 +00:00
|
|
|
/// Linux file attribute `DIRSYNC`
|
2019-01-11 08:20:10 +00:00
|
|
|
pub const CA_FORMAT_WITH_FLAG_DIRSYNC: u64 = 0x200000;
|
2019-01-11 09:01:51 +00:00
|
|
|
/// Linux file attribute `IMMUTABLE`
|
2019-01-11 08:20:10 +00:00
|
|
|
pub const CA_FORMAT_WITH_FLAG_IMMUTABLE: u64 = 0x400000;
|
2019-01-11 09:01:51 +00:00
|
|
|
/// Linux file attribute `SYNC`
|
2019-01-11 08:20:10 +00:00
|
|
|
pub const CA_FORMAT_WITH_FLAG_SYNC: u64 = 0x800000;
|
2019-01-11 09:01:51 +00:00
|
|
|
/// Linux file attribute `NOCOMP`
|
2019-01-11 08:20:10 +00:00
|
|
|
pub const CA_FORMAT_WITH_FLAG_NOCOMP: u64 = 0x1000000;
|
2019-01-11 09:01:51 +00:00
|
|
|
/// Linux file attribute `PROJINHERIT`
|
2019-01-11 08:20:10 +00:00
|
|
|
pub const CA_FORMAT_WITH_FLAG_PROJINHERIT: u64 = 0x2000000;
|
|
|
|
|
2018-12-28 13:26:05 +00:00
|
|
|
pub const CA_FORMAT_FEATURE_FLAGS_MAX: u64 = 0xb000_0001_ffef_fe26; // fixme: ?
|
|
|
|
|
2019-01-11 09:01:51 +00:00
|
|
|
#[derive(Endian)]
|
2018-12-27 08:22:23 +00:00
|
|
|
#[repr(C)]
|
|
|
|
pub struct CaFormatHeader {
|
2018-12-30 12:47:27 +00:00
|
|
|
/// The size of the item, including the size of `CaFormatHeader`.
|
2018-12-28 08:55:26 +00:00
|
|
|
pub size: u64,
|
2018-12-30 12:47:27 +00:00
|
|
|
/// The item type (see `CA_FORMAT_` constants).
|
2018-12-28 08:55:26 +00:00
|
|
|
pub htype: u64,
|
2018-12-27 08:22:23 +00:00
|
|
|
}
|
|
|
|
|
2019-01-11 09:01:51 +00:00
|
|
|
#[derive(Endian)]
|
2018-12-27 08:22:23 +00:00
|
|
|
#[repr(C)]
|
|
|
|
pub struct CaFormatEntry {
|
2018-12-28 08:55:26 +00:00
|
|
|
pub feature_flags: u64,
|
|
|
|
pub mode: u64,
|
|
|
|
pub flags: u64,
|
|
|
|
pub uid: u64,
|
|
|
|
pub gid: u64,
|
|
|
|
pub mtime: u64,
|
2018-12-27 08:22:23 +00:00
|
|
|
}
|
|
|
|
|
2019-01-07 18:07:03 +00:00
|
|
|
#[derive(Endian)]
|
2018-12-27 08:22:23 +00:00
|
|
|
#[repr(C)]
|
|
|
|
pub struct CaFormatGoodbyeItem {
|
2018-12-30 12:47:27 +00:00
|
|
|
/// The offset from the start of the GOODBYE object to the start
|
|
|
|
/// of the matching directory item (point to a FILENAME). The last
|
|
|
|
/// GOODBYE item points to the start of the matching ENTRY
|
2019-01-06 16:27:22 +00:00
|
|
|
/// object.
|
2018-12-28 08:55:26 +00:00
|
|
|
pub offset: u64,
|
2018-12-30 12:47:27 +00:00
|
|
|
/// The overall size of the directory item. The last GOODBYE item
|
|
|
|
/// repeats the size of the GOODBYE item.
|
2018-12-28 08:55:26 +00:00
|
|
|
pub size: u64,
|
2018-12-30 12:47:27 +00:00
|
|
|
/// SipHash24 of the directory item name. The last GOODBYE item
|
|
|
|
/// uses the special hash value `CA_FORMAT_GOODBYE_TAIL_MARKER`.
|
2018-12-28 08:55:26 +00:00
|
|
|
pub hash: u64,
|
2018-12-27 08:22:23 +00:00
|
|
|
}
|
|
|
|
|
2018-12-30 16:32:52 +00:00
|
|
|
|
|
|
|
/// Helper function to extract file names from binary archive.
|
|
|
|
pub fn read_os_string(buffer: &[u8]) -> std::ffi::OsString {
|
2018-12-27 08:22:23 +00:00
|
|
|
let len = buffer.len();
|
|
|
|
|
|
|
|
use std::os::unix::ffi::OsStrExt;
|
|
|
|
|
|
|
|
let name = if len > 0 && buffer[len-1] == 0 {
|
|
|
|
std::ffi::OsStr::from_bytes(&buffer[0..len-1])
|
|
|
|
} else {
|
|
|
|
std::ffi::OsStr::from_bytes(&buffer)
|
|
|
|
};
|
|
|
|
|
|
|
|
name.into()
|
|
|
|
}
|
2018-12-30 16:32:52 +00:00
|
|
|
|
|
|
|
/// Create SipHash values for goodby tables.
|
|
|
|
//pub fn compute_goodbye_hash(name: &std::ffi::CStr) -> u64 {
|
|
|
|
pub fn compute_goodbye_hash(name: &[u8]) -> u64 {
|
|
|
|
|
|
|
|
use std::hash::Hasher;
|
|
|
|
let mut hasher = SipHasher24::new_with_keys(0x8574442b0f1d84b3, 0x2736ed30d1c22ec1);
|
|
|
|
hasher.write(name);
|
|
|
|
hasher.finish()
|
|
|
|
}
|
2019-01-07 18:07:03 +00:00
|
|
|
|
|
|
|
pub fn check_ca_header<T>(head: &CaFormatHeader, htype: u64) -> Result<(), Error> {
|
|
|
|
if head.htype != htype {
|
|
|
|
bail!("got wrong header type ({:016x} != {:016x}", head.htype, htype);
|
|
|
|
}
|
|
|
|
if head.size != (std::mem::size_of::<T>() + std::mem::size_of::<CaFormatHeader>()) as u64 {
|
|
|
|
bail!("got wrong header size for type {:016x}", htype);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2019-01-11 08:20:10 +00:00
|
|
|
|
|
|
|
// form /usr/include/linux/fs.h
|
|
|
|
const FS_APPEND_FL: u32 = 0x00000020;
|
|
|
|
const FS_NOATIME_FL: u32 = 0x00000080;
|
|
|
|
const FS_COMPR_FL: u32 = 0x00000004;
|
|
|
|
const FS_NOCOW_FL: u32 = 0x00800000;
|
|
|
|
const FS_NODUMP_FL: u32 = 0x00000040;
|
|
|
|
const FS_DIRSYNC_FL: u32 = 0x00010000;
|
|
|
|
const FS_IMMUTABLE_FL: u32 = 0x00000010;
|
|
|
|
const FS_SYNC_FL: u32 = 0x00000008;
|
|
|
|
const FS_NOCOMP_FL: u32 = 0x00000400;
|
|
|
|
const FS_PROJINHERIT_FL: u32 = 0x20000000;
|
|
|
|
|
|
|
|
static CHATTR_MAP: [(u64, u32); 10] = [
|
|
|
|
( CA_FORMAT_WITH_FLAG_APPEND, FS_APPEND_FL ),
|
|
|
|
( CA_FORMAT_WITH_FLAG_NOATIME, FS_NOATIME_FL ),
|
|
|
|
( CA_FORMAT_WITH_FLAG_COMPR, FS_COMPR_FL ),
|
|
|
|
( CA_FORMAT_WITH_FLAG_NOCOW, FS_NOCOW_FL ),
|
|
|
|
( CA_FORMAT_WITH_FLAG_NODUMP, FS_NODUMP_FL ),
|
|
|
|
( CA_FORMAT_WITH_FLAG_DIRSYNC, FS_DIRSYNC_FL ),
|
|
|
|
( CA_FORMAT_WITH_FLAG_IMMUTABLE, FS_IMMUTABLE_FL ),
|
|
|
|
( CA_FORMAT_WITH_FLAG_SYNC, FS_SYNC_FL ),
|
|
|
|
( CA_FORMAT_WITH_FLAG_NOCOMP, FS_NOCOMP_FL ),
|
|
|
|
( CA_FORMAT_WITH_FLAG_PROJINHERIT, FS_PROJINHERIT_FL ),
|
|
|
|
];
|
|
|
|
|
|
|
|
pub fn ca_feature_flags_from_chattr(attr: u32) -> u64 {
|
|
|
|
|
|
|
|
let mut flags = 0u64;
|
|
|
|
|
|
|
|
for (ca_flag, fs_flag) in &CHATTR_MAP {
|
|
|
|
if (attr & fs_flag) != 0 { flags = flags | ca_flag; }
|
|
|
|
}
|
|
|
|
|
|
|
|
flags
|
|
|
|
}
|
2019-01-11 09:18:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// from /usr/include/linux/msdos_fs.h
|
|
|
|
const ATTR_HIDDEN: u32 = 2;
|
|
|
|
const ATTR_SYS: u32 = 4;
|
|
|
|
const ATTR_ARCH: u32 = 32;
|
|
|
|
|
|
|
|
static FAT_ATTR_MAP: [(u64, u32); 3] = [
|
|
|
|
( CA_FORMAT_WITH_FLAG_HIDDEN, ATTR_HIDDEN ),
|
|
|
|
( CA_FORMAT_WITH_FLAG_SYSTEM, ATTR_SYS ),
|
|
|
|
( CA_FORMAT_WITH_FLAG_ARCHIVE, ATTR_ARCH ),
|
|
|
|
];
|
|
|
|
|
|
|
|
pub fn ca_feature_flags_from_fat_attr(attr: u32) -> u64 {
|
|
|
|
|
|
|
|
let mut flags = 0u64;
|
|
|
|
|
|
|
|
for (ca_flag, fs_flag) in &FAT_ATTR_MAP {
|
|
|
|
if (attr & fs_flag) != 0 { flags = flags | ca_flag; }
|
|
|
|
}
|
|
|
|
|
|
|
|
flags
|
|
|
|
}
|