2008-09-04 02:57:46 +04:00
|
|
|
/* $NetBSD: hfs.h,v 1.7 2008/09/03 22:57:46 gmcgarry Exp $ */
|
2007-03-06 03:10:34 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2005, 2007 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Yevgeny Binder and Dieter Baron.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2007-03-06 14:28:44 +03:00
|
|
|
#ifndef _FS_HFS_HFS_H_
|
|
|
|
#define _FS_HFS_HFS_H_
|
2007-03-06 03:10:34 +03:00
|
|
|
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
|
|
|
|
#include <miscfs/genfs/genfs_node.h>
|
|
|
|
|
|
|
|
/* XXX remove before release */
|
2007-03-06 14:28:44 +03:00
|
|
|
/*#define HFS_DEBUG*/
|
2007-03-06 03:10:34 +03:00
|
|
|
|
2007-03-06 14:28:44 +03:00
|
|
|
#ifdef HFS_DEBUG
|
2007-03-06 03:10:34 +03:00
|
|
|
#if defined(_KERNEL) && !defined(_LKM)
|
|
|
|
#include "opt_ddb.h"
|
|
|
|
#endif /* defined(_KERNEL_) && !defined(_LKM) */
|
2007-03-06 14:28:44 +03:00
|
|
|
#endif /* HFS_DEBUG */
|
2007-03-06 03:10:34 +03:00
|
|
|
|
2007-03-06 14:28:44 +03:00
|
|
|
#include <fs/hfs/libhfs.h>
|
2007-03-06 03:10:34 +03:00
|
|
|
|
|
|
|
/* XXX: make these mount options */
|
2007-03-06 14:28:44 +03:00
|
|
|
#define HFS_DEFAULT_UID 0
|
|
|
|
#define HFS_DEFAULT_GID 0
|
|
|
|
#define HFS_DEFAULT_DIR_MODE 0755
|
|
|
|
#define HFS_DEFAULT_FILE_MODE 0755
|
2007-03-06 03:10:34 +03:00
|
|
|
|
2007-03-06 14:28:44 +03:00
|
|
|
struct hfs_args {
|
2007-03-06 03:10:34 +03:00
|
|
|
char *fspec; /* block special device to mount */
|
|
|
|
};
|
|
|
|
|
2007-03-06 14:28:44 +03:00
|
|
|
struct hfsmount {
|
2007-03-06 03:10:34 +03:00
|
|
|
struct mount *hm_mountp; /* filesystem vfs structure */
|
|
|
|
dev_t hm_dev; /* device mounted */
|
|
|
|
struct vnode *hm_devvp; /* block device mounted vnode */
|
2007-03-06 14:28:44 +03:00
|
|
|
hfs_volume hm_vol; /* essential volume information */
|
2007-03-06 03:10:34 +03:00
|
|
|
};
|
|
|
|
|
2007-03-06 14:28:44 +03:00
|
|
|
struct hfsnode {
|
2007-03-06 03:10:34 +03:00
|
|
|
struct genfs_node h_gnode;
|
2007-03-06 14:28:44 +03:00
|
|
|
LIST_ENTRY(hfsnode) h_hash;/* hash chain */
|
2007-03-06 03:10:34 +03:00
|
|
|
struct vnode *h_vnode; /* vnode associated with this hnode */
|
2007-03-06 14:28:44 +03:00
|
|
|
struct hfsmount *h_hmp; /* mount point associated with this hnode */
|
2007-03-06 03:10:34 +03:00
|
|
|
struct vnode *h_devvp; /* vnode for block I/O */
|
|
|
|
dev_t h_dev; /* device associated with this hnode */
|
|
|
|
|
|
|
|
union {
|
2007-03-06 14:28:44 +03:00
|
|
|
hfs_file_record_t file;
|
|
|
|
hfs_folder_record_t folder;
|
2007-03-06 03:10:34 +03:00
|
|
|
struct {
|
|
|
|
int16_t rec_type;
|
|
|
|
uint16_t flags;
|
|
|
|
uint32_t valence;
|
2007-03-06 14:28:44 +03:00
|
|
|
hfs_cnid_t cnid;
|
2008-09-04 02:57:46 +04:00
|
|
|
} u; /* convenience for accessing common record info */
|
2007-03-06 03:10:34 +03:00
|
|
|
} h_rec; /* catalog record for this hnode */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We cache this vnode's parent CNID here upon vnode creation (i.e., during
|
2007-03-06 14:28:44 +03:00
|
|
|
* hfs_vop_vget()) for quick access without needing to search the catalog.
|
2007-03-06 03:10:34 +03:00
|
|
|
* Note, however, that this value must also be updated whenever this file
|
|
|
|
* is moved.
|
|
|
|
*/
|
2007-03-06 14:28:44 +03:00
|
|
|
hfs_cnid_t h_parent;
|
2007-03-06 03:10:34 +03:00
|
|
|
|
|
|
|
uint8_t h_fork;
|
|
|
|
|
|
|
|
long dummy; /* FOR DEVELOPMENT ONLY */
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
struct vnode* devvp; /* vnode for device I/O */
|
|
|
|
size_t devblksz; /* device block size (NOT HFS+ allocation block size)*/
|
2007-03-06 14:28:44 +03:00
|
|
|
} hfs_libcb_data; /* custom data used in hfs_volume.cbdata */
|
2007-03-06 03:10:34 +03:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
kauth_cred_t cred;
|
|
|
|
struct lwp *l;
|
|
|
|
struct vnode *devvp;
|
2007-03-06 14:28:44 +03:00
|
|
|
} hfs_libcb_argsopen;
|
2007-03-06 03:10:34 +03:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
struct lwp *l;
|
2007-03-06 14:28:44 +03:00
|
|
|
} hfs_libcb_argsclose;
|
2007-03-06 03:10:34 +03:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
kauth_cred_t cred;
|
|
|
|
struct lwp *l;
|
2007-03-06 14:28:44 +03:00
|
|
|
} hfs_libcb_argsread;
|
2007-03-06 03:10:34 +03:00
|
|
|
|
2007-08-08 13:21:34 +04:00
|
|
|
#ifdef _KERNEL
|
|
|
|
|
|
|
|
MALLOC_DECLARE(M_HFSMNT); /* defined in hfs_vfsops.c */
|
|
|
|
|
2007-03-06 03:10:34 +03:00
|
|
|
/*
|
|
|
|
* Convenience macros
|
|
|
|
*/
|
|
|
|
|
2007-03-06 14:28:44 +03:00
|
|
|
/* Convert mount ptr to hfsmount ptr. */
|
|
|
|
#define VFSTOHFS(mp) ((struct hfsmount *)((mp)->mnt_data))
|
2007-03-06 03:10:34 +03:00
|
|
|
|
|
|
|
/* Convert between vnode ptrs and hfsnode ptrs. */
|
2007-03-06 14:28:44 +03:00
|
|
|
#define VTOH(vp) ((struct hfsnode *)(vp)->v_data)
|
2007-03-06 03:10:34 +03:00
|
|
|
#define HTOV(hp) ((hp)->h_vnode)
|
|
|
|
|
|
|
|
/* Get volume's allocation block size given a vnode ptr */
|
2007-03-06 14:28:44 +03:00
|
|
|
#define HFS_BLOCKSIZE(vp) (VTOH(vp)->h_hmp->hm_vol.vh.block_size)
|
2007-03-06 03:10:34 +03:00
|
|
|
|
|
|
|
|
|
|
|
/* Convert special device major/minor */
|
2007-03-06 14:28:44 +03:00
|
|
|
#define HFS_CONVERT_RDEV(x) makedev((x)>>24, (x)&0xffffff)
|
2007-03-06 03:10:34 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Global variables
|
|
|
|
*/
|
|
|
|
|
2007-03-06 14:28:44 +03:00
|
|
|
extern const struct vnodeopv_desc hfs_vnodeop_opv_desc;
|
|
|
|
extern const struct vnodeopv_desc hfs_specop_opv_desc;
|
|
|
|
extern const struct vnodeopv_desc hfs_fifoop_opv_desc;
|
|
|
|
extern int (**hfs_specop_p) (void *);
|
|
|
|
extern int (**hfs_fifoop_p) (void *);
|
2007-03-06 03:10:34 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function prototypes
|
|
|
|
*/
|
|
|
|
|
2007-03-06 14:28:44 +03:00
|
|
|
/* hfs_nhash.c */
|
|
|
|
void hfs_nhashinit (void);
|
|
|
|
void hfs_nhashdone (void);
|
|
|
|
struct vnode *hfs_nhashget (dev_t, hfs_cnid_t, uint8_t, int);
|
|
|
|
void hfs_nhashinsert (struct hfsnode *);
|
|
|
|
void hfs_nhashremove (struct hfsnode *);
|
2007-03-06 03:10:34 +03:00
|
|
|
|
2007-03-06 14:28:44 +03:00
|
|
|
/* hfs_subr.c */
|
|
|
|
void hfs_vinit (struct mount *, int (**)(void *), int (**)(void *),
|
2007-03-06 03:10:34 +03:00
|
|
|
struct vnode **);
|
2007-03-06 14:28:44 +03:00
|
|
|
int hfs_pread(struct vnode*, void*, size_t, uint64_t, uint64_t, kauth_cred_t);
|
|
|
|
char* hfs_unicode_to_ascii(const unichar_t*, uint8_t, char*);
|
|
|
|
unichar_t* hfs_ascii_to_unicode(const char*, uint8_t, unichar_t*);
|
|
|
|
|
|
|
|
void hfs_time_to_timespec(uint32_t, struct timespec *);
|
|
|
|
enum vtype hfs_catalog_keyed_record_vtype(const hfs_catalog_keyed_record_t *);
|
|
|
|
|
|
|
|
void hfs_libcb_error(const char*, const char*, int, va_list);
|
|
|
|
void* hfs_libcb_malloc(size_t, hfs_callback_args*);
|
|
|
|
void* hfs_libcb_realloc(void*, size_t, hfs_callback_args*);
|
|
|
|
void hfs_libcb_free(void*, hfs_callback_args*);
|
2007-03-22 16:21:27 +03:00
|
|
|
int hfs_libcb_opendev(hfs_volume*, const char*, hfs_callback_args*);
|
2007-03-06 14:28:44 +03:00
|
|
|
void hfs_libcb_closedev(hfs_volume*, hfs_callback_args*);
|
|
|
|
int hfs_libcb_read(hfs_volume*, void*, uint64_t, uint64_t,
|
|
|
|
hfs_callback_args*);
|
2007-03-06 03:10:34 +03:00
|
|
|
|
|
|
|
uint16_t be16tohp(void**);
|
|
|
|
uint32_t be32tohp(void**);
|
|
|
|
uint64_t be64tohp(void**);
|
|
|
|
|
|
|
|
|
2007-03-06 14:28:44 +03:00
|
|
|
/* hfs_vfsops.c */
|
2007-08-01 01:14:15 +04:00
|
|
|
VFS_PROTOS(hfs);
|
|
|
|
|
2007-03-22 16:21:27 +03:00
|
|
|
int hfs_mountfs (struct vnode *, struct mount *, struct lwp *, const char *);
|
2007-03-06 14:28:44 +03:00
|
|
|
int hfs_vget_internal(struct mount *, ino_t, uint8_t, struct vnode **);
|
2007-03-06 03:10:34 +03:00
|
|
|
|
2007-03-06 14:28:44 +03:00
|
|
|
/* hfs_vnops.c */
|
|
|
|
extern int (**hfs_vnodeop_p) (void *);
|
2007-03-06 03:10:34 +03:00
|
|
|
|
2007-08-08 13:21:34 +04:00
|
|
|
#endif /* _KERNEL */
|
|
|
|
|
2007-03-06 14:28:44 +03:00
|
|
|
#endif /* !_FS_HFS_HFS_H_ */
|