#ifndef _FS_UDF_UDF_H_
#define _FS_UDF_UDF_H_
#include <sys/queue.h>
#include <sys/rbtree.h>
#include <sys/uio.h>
#include <sys/mutex.h>
#include "udf_osta.h"
#include "ecma167-udf.h"
#include <sys/cdio.h>
#include <sys/bufq.h>
#include <sys/disk.h>
#include <sys/kthread.h>
#include <sys/malloc.h>
#include <miscfs/genfs/genfs_node.h>
extern int udf_verbose;
#define UDF_COMPLETE_DELETE
#define UDF_DEBUG_VOLUMES 0x0000001
#define UDF_DEBUG_LOCKING 0x0000002
#define UDF_DEBUG_NODE 0x0000004
#define UDF_DEBUG_LOOKUP 0x0000008
#define UDF_DEBUG_READDIR 0x0000010
#define UDF_DEBUG_FIDS 0x0000020
#define UDF_DEBUG_DESCRIPTOR 0x0000040
#define UDF_DEBUG_TRANSLATE 0x0000080
#define UDF_DEBUG_STRATEGY 0x0000100
#define UDF_DEBUG_READ 0x0000200
#define UDF_DEBUG_WRITE 0x0000400
#define UDF_DEBUG_CALL 0x0000800
#define UDF_DEBUG_ATTR 0x0001000
#define UDF_DEBUG_EXTATTR 0x0002000
#define UDF_DEBUG_ALLOC 0x0004000
#define UDF_DEBUG_ADWLK 0x0008000
#define UDF_DEBUG_DIRHASH 0x0010000
#define UDF_DEBUG_NOTIMPL 0x0020000
#define UDF_DEBUG_SHEDULE 0x0040000
#define UDF_DEBUG_ECCLINE 0x0080000
#define UDF_DEBUG_SYNC 0x0100000
#define UDF_DEBUG_PARANOIA 0x0200000
#define UDF_DEBUG_PARANOIDADWLK 0x0400000
#define UDF_DEBUG_NODEDUMP 0x0800000
#define UDF_DEBUG_RESERVE 0x1000000
#define UDF_DEBUGGING (0x0000000)
#ifdef UDF_DEBUG
#define DPRINTF(name, arg) { \
if (udf_verbose & UDF_DEBUG_##name) {\
printf arg;\
};\
}
#define DPRINTFIF(name, cond, arg) { \
if (udf_verbose & UDF_DEBUG_##name) { \
if (cond) printf arg;\
};\
}
#else
#define DPRINTF(name, arg) {}
#define DPRINTFIF(name, cond, arg) {}
#endif
VFS_PROTOS(udf);
#define UDF_REGID_DOMAIN 1
#define UDF_REGID_UDF 2
#define UDF_REGID_IMPLEMENTATION 3
#define UDF_REGID_APPLICATION 4
#define UDF_REGID_NAME 99
#define APP_NAME "*NetBSD UDF"
#define APP_VERSION_MAIN 0
#define APP_VERSION_SUB 5
#define IMPL_NAME "*NetBSD kernel UDF"
#define UDF_INODE_HASHBITS 10
#define UDF_INODE_HASHSIZE (1<<UDF_INODE_HASHBITS)
#define UDF_INODE_HASHMASK (UDF_INODE_HASHSIZE - 1)
#define UDF_ECCBUF_HASHBITS 10
#define UDF_ECCBUF_HASHSIZE (1<<UDF_ECCBUF_HASHBITS)
#define UDF_ECCBUF_HASHMASK (UDF_ECCBUF_HASHSIZE -1)
#define UDF_ECCLINE_MAXFREE 5
#define UDF_ECCLINE_MAXBUSY 100
#define UDF_MAX_MAPPINGS (MAXPHYS/DEV_BSIZE)
#define UDF_VAT_CHUNKSIZE (64*1024)
#define UDF_SYMLINKBUFLEN (64*1024)
#define UDF_DISC_SLACK (128)
#define UDF_ISO_VRS_SIZE (32*2048)
#define UDF_MAX_INDIRS_FOLLOW 1024
#define UDF_ANCHORS 4
#define UDF_PARTITIONS 4
#define UDF_PMAPS 5
#define UDF_LVDINT_SEGMENTS 100
#define UDF_LVINT_LOSSAGE 4
#define UDF_MAX_ALLOC_EXTENTS 50
#define UDF_MAXNAMLEN 255
#define UDF_TRANS_ZERO ((uint64_t) -1)
#define UDF_TRANS_UNMAPPED ((uint64_t) -2)
#define UDF_TRANS_INTERN ((uint64_t) -3)
#define UDF_MAX_SECTOR ((uint64_t) -10)
#define UDF_C_ABSOLUTE 0
#define UDF_C_PROCESSED 0
#define UDF_C_USERDATA 1
#define UDF_C_DSCR 2
#define UDF_C_FLOAT_DSCR 3
#define UDF_C_NODE 4
#define UDF_C_FIDS 5
#define UDF_C_METADATA_SBM 6
#define UDF_C_EXTATTRS 7
#define b_udf_c_type b_freelistindex
#define UDF_VTOP_RAWPART UDF_PMAPS
#define UDF_VTOP_TYPE_RAW 0
#define UDF_VTOP_TYPE_UNKNOWN 0
#define UDF_VTOP_TYPE_PHYS 1
#define UDF_VTOP_TYPE_VIRT 2
#define UDF_VTOP_TYPE_SPARABLE 3
#define UDF_VTOP_TYPE_META 4
#define UDF_ALLOC_INVALID 0
#define UDF_ALLOC_SEQUENTIAL 1
#define UDF_ALLOC_VAT 2
#define UDF_ALLOC_SPACEMAP 3
#define UDF_ALLOC_METABITMAP 4
#define UDF_ALLOC_METASEQUENTIAL 5
#define UDF_ALLOC_RELAXEDSEQUENTIAL 6
#define UDF_OPEN_SESSION 0x01
#define UDF_CLOSE_SESSION 0x02
#define UDF_FINALISE_DISC 0x04
#define UDF_WRITE_VAT 0x08
#define UDF_WRITE_LVINT 0x10
#define UDF_WRITE_PART_BITMAPS 0x20
#define UDF_APPENDONLY_LVINT 0x40
#define UDF_WRITE_METAPART_NODES 0x80
#define UDFLOGVOL_BITS "\20\1OPEN_SESSION\2CLOSE_SESSION\3FINALISE_DISC" \
"\4WRITE_VAT\5WRITE_LVINT\6WRITE_PART_BITMAPS" \
"\7APPENDONLY_LVINT\10WRITE_METAPART_NODES"
#define UDF_UPDATE_TRACKINFO 0x01
#define UDF_REMAP_BLOCK 0x02
#define UDFONERROR_BITS "\20\1UPDATE_TRACKINFO\2REMAP_BLOCK"
#define UDF_DIRCOOKIE_DOT 1
MALLOC_DECLARE(M_UDFMNT);
MALLOC_DECLARE(M_UDFVOLD);
MALLOC_DECLARE(M_UDFTEMP);
extern struct pool udf_node_pool;
struct udf_node;
struct udf_strategy;
struct udf_lvintq {
uint32_t start;
uint32_t end;
uint32_t pos;
uint32_t wpos;
};
struct udf_bitmap {
uint8_t *blob;
uint8_t *bits;
uint8_t *pages;
uint32_t max_offset;
uint32_t data_pos;
uint32_t metadata_pos;
};
struct udf_strat_args {
struct udf_mount *ump;
struct udf_node *udf_node;
struct long_ad *icb;
union dscrptr *dscr;
struct buf *nestbuf;
kauth_cred_t cred;
int waitfor;
};
struct udf_strategy {
int (*create_logvol_dscr) (struct udf_strat_args *args);
void (*free_logvol_dscr) (struct udf_strat_args *args);
int (*read_logvol_dscr) (struct udf_strat_args *args);
int (*write_logvol_dscr) (struct udf_strat_args *args);
void (*queuebuf) (struct udf_strat_args *args);
void (*sync_caches) (struct udf_strat_args *args);
void (*discstrat_init) (struct udf_strat_args *args);
void (*discstrat_finish) (struct udf_strat_args *args);
};
extern struct udf_strategy udf_strat_bootstrap;
extern struct udf_strategy udf_strat_sequential;
extern struct udf_strategy udf_strat_direct;
extern struct udf_strategy udf_strat_rmw;
struct udf_mount {
struct mount *vfs_mountp;
struct vnode *devvp;
struct mmc_discinfo discinfo;
struct udf_args mount_args;
kmutex_t logvol_mutex;
struct anchor_vdp *anchors[UDF_ANCHORS];
struct pri_vol_desc *primary_vol;
struct logvol_desc *logical_vol;
struct unalloc_sp_desc *unallocated;
struct impvol_desc *implementation;
struct logvol_int_desc *logvol_integrity;
struct part_desc *partitions[UDF_PARTITIONS];
struct udf_logvol_info *logvol_info;
struct fileset_desc *fileset_desc;
struct udf_lvintq lvint_trace[UDF_LVDINT_SEGMENTS];
int lvopen;
int lvclose;
int vtop[UDF_PMAPS+1];
int vtop_tp[UDF_PMAPS+1];
kmutex_t allocate_mutex;
int lvreadwrite;
int vtop_alloc[UDF_PMAPS+1];
int data_part;
int node_part;
int fids_part;
struct mmc_trackinfo data_track;
struct mmc_trackinfo metadata_track;
uint32_t first_possible_vat_location;
uint32_t last_possible_vat_location;
uint32_t vat_entries;
uint32_t vat_offset;
uint32_t vat_last_free_lb;
uint32_t vat_table_len;
uint32_t vat_table_alloc_len;
uint8_t *vat_table;
uint8_t *vat_pages;
struct udf_node *vat_node;
struct space_bitmap_desc*part_unalloc_dscr[UDF_PARTITIONS];
struct space_bitmap_desc*part_freed_dscr [UDF_PARTITIONS];
struct udf_bitmap part_unalloc_bits[UDF_PARTITIONS];
struct udf_bitmap part_freed_bits [UDF_PARTITIONS];
uint32_t sparable_packet_size;
uint32_t packet_size;
struct udf_sparing_table*sparing_table;
struct udf_node *metadata_node;
struct udf_node *metadatamirror_node;
struct udf_node *metadatabitmap_node;
struct space_bitmap_desc*metadata_unalloc_dscr;
struct udf_bitmap metadata_unalloc_bits;
uint32_t metadata_alloc_unit_size;
uint16_t metadata_alignment_unit_size;
uint8_t metadata_flags;
struct rb_tree udf_node_tree;
int syncing;
kmutex_t sync_lock;
int32_t uncommitted_lbs[UDF_PARTITIONS];
struct long_ad *la_node_ad_cpy;
uint64_t *la_lmapping, *la_pmapping;
STAILQ_HEAD(udfmntpts, udf_mount) all_udf_mntpnts;
struct udf_strategy *strategy;
void *strategy_private;
};
struct udf_node {
struct genfs_node i_gnode;
struct vnode *vnode;
struct udf_mount *ump;
kmutex_t node_mutex;
kcondvar_t node_lock;
char const *lock_fname;
int lock_lineno;
struct rb_node rbnode;
struct file_entry *fe;
struct extfile_entry *efe;
struct alloc_ext_entry *ext[UDF_MAX_ALLOC_EXTENTS];
int num_extensions;
struct long_ad loc;
struct long_ad write_loc;
int needs_indirect;
struct long_ad ext_loc[UDF_MAX_ALLOC_EXTENTS];
struct dirhash *dir_hash;
uint32_t i_flags;
struct lockf *lockf;
uint32_t outstanding_bufs;
uint32_t outstanding_nodedscr;
int32_t uncommitted_lbs;
struct udf_node *extattr;
struct udf_node *streamdir;
struct udf_node *my_parent;
};
#define IN_ACCESS 0x0001
#define IN_CHANGE 0x0002
#define IN_UPDATE 0x0004
#define IN_MODIFY 0x0008
#define IN_MODIFIED 0x0010
#define IN_ACCESSED 0x0020
#define IN_RENAME 0x0040
#define IN_DELETED 0x0080
#define IN_LOCKED 0x0100
#define IN_SYNCED 0x0200
#define IN_CALLBACK_ULK 0x0400
#define IN_NODE_REBUILD 0x0800
#define IN_NO_DELETE 0x1000
#define IN_FLAGBITS \
"\10\1IN_ACCESS\2IN_CHANGE\3IN_UPDATE\4IN_MODIFY\5IN_MODIFIED" \
"\6IN_ACCESSED\7IN_RENAME\10IN_DELETED\11IN_LOCKED\12IN_SYNCED" \
"\13IN_CALLBACK_ULK\14IN_NODE_REBUILD\15IN_NO_DELETE"
#endif