Home | History | Annotate | Line # | Download | only in hfs
hfs.h revision 1.2.6.1
      1  1.2.6.1    mjf /*	$NetBSD: hfs.h,v 1.2.6.1 2007/07/11 20:09:21 mjf Exp $	*/
      2      1.1  dillo 
      3      1.1  dillo /*-
      4      1.1  dillo  * Copyright (c) 2005, 2007 The NetBSD Foundation, Inc.
      5      1.1  dillo  * All rights reserved.
      6      1.1  dillo  *
      7      1.1  dillo  * This code is derived from software contributed to The NetBSD Foundation
      8      1.1  dillo  * by Yevgeny Binder and Dieter Baron.
      9      1.1  dillo  *
     10      1.1  dillo  * Redistribution and use in source and binary forms, with or without
     11      1.1  dillo  * modification, are permitted provided that the following conditions
     12      1.1  dillo  * are met:
     13      1.1  dillo  * 1. Redistributions of source code must retain the above copyright
     14      1.1  dillo  *    notice, this list of conditions and the following disclaimer.
     15      1.1  dillo  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1  dillo  *    notice, this list of conditions and the following disclaimer in the
     17      1.1  dillo  *    documentation and/or other materials provided with the distribution.
     18      1.1  dillo  *
     19      1.1  dillo  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20      1.1  dillo  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21      1.1  dillo  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22      1.1  dillo  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23      1.1  dillo  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24      1.1  dillo  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25      1.1  dillo  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26      1.1  dillo  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27      1.1  dillo  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28      1.1  dillo  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29      1.1  dillo  * POSSIBILITY OF SUCH DAMAGE.
     30      1.1  dillo  */
     31      1.1  dillo 
     32      1.2  dillo #ifndef _FS_HFS_HFS_H_
     33      1.2  dillo #define _FS_HFS_HFS_H_
     34      1.1  dillo 
     35      1.1  dillo #include <sys/vnode.h>
     36      1.1  dillo #include <sys/mount.h>
     37      1.1  dillo 
     38      1.1  dillo #include <miscfs/genfs/genfs_node.h>
     39      1.1  dillo 
     40      1.1  dillo /* XXX remove before release */
     41      1.2  dillo /*#define HFS_DEBUG*/
     42      1.1  dillo 
     43      1.2  dillo #ifdef HFS_DEBUG
     44      1.1  dillo 	#if defined(_KERNEL) && !defined(_LKM)
     45      1.1  dillo 		#include "opt_ddb.h"
     46      1.1  dillo 	#endif /* defined(_KERNEL_) && !defined(_LKM) */
     47      1.2  dillo #endif /* HFS_DEBUG */
     48      1.1  dillo 
     49      1.2  dillo #include <fs/hfs/libhfs.h>
     50      1.1  dillo 
     51      1.1  dillo /* XXX: make these mount options */
     52      1.2  dillo #define HFS_DEFAULT_UID	0
     53      1.2  dillo #define HFS_DEFAULT_GID	0
     54      1.2  dillo #define HFS_DEFAULT_DIR_MODE	0755
     55      1.2  dillo #define HFS_DEFAULT_FILE_MODE	0755
     56      1.1  dillo 
     57      1.2  dillo MALLOC_DECLARE(M_HFSMNT);	/* defined in hfs_vfsops.c */
     58      1.1  dillo 
     59      1.2  dillo struct hfs_args {
     60      1.1  dillo 	char *fspec;		/* block special device to mount */
     61      1.1  dillo };
     62      1.1  dillo 
     63      1.2  dillo struct hfsmount {
     64      1.1  dillo 	struct mount *hm_mountp;	/* filesystem vfs structure */
     65      1.1  dillo 	dev_t hm_dev;				/* device mounted */
     66      1.1  dillo 	struct vnode *hm_devvp;		/* block device mounted vnode */
     67      1.2  dillo 	hfs_volume hm_vol;			/* essential volume information */
     68      1.1  dillo };
     69      1.1  dillo 
     70      1.2  dillo struct hfsnode {
     71      1.1  dillo 	struct genfs_node h_gnode;
     72      1.2  dillo 	LIST_ENTRY(hfsnode) h_hash;/* hash chain */
     73      1.1  dillo 	struct vnode *h_vnode;		/* vnode associated with this hnode */
     74      1.2  dillo 	struct hfsmount *h_hmp;	/* mount point associated with this hnode */
     75      1.1  dillo 	struct vnode *h_devvp;		/* vnode for block I/O */
     76      1.1  dillo 	dev_t	h_dev;				/* device associated with this hnode */
     77      1.1  dillo 
     78      1.1  dillo 	union {
     79      1.2  dillo 		hfs_file_record_t		file;
     80      1.2  dillo 		hfs_folder_record_t	folder;
     81      1.1  dillo 		struct {
     82      1.1  dillo 			int16_t			rec_type;
     83      1.1  dillo 			uint16_t		flags;
     84      1.1  dillo 			uint32_t		valence;
     85      1.2  dillo 			hfs_cnid_t		cnid;
     86      1.1  dillo 		}; /* convenience for accessing common record info */
     87      1.1  dillo 	} h_rec; /* catalog record for this hnode */
     88      1.1  dillo 
     89      1.1  dillo 	/*
     90      1.1  dillo 	 * We cache this vnode's parent CNID here upon vnode creation (i.e., during
     91      1.2  dillo 	 * hfs_vop_vget()) for quick access without needing to search the catalog.
     92      1.1  dillo 	 * Note, however, that this value must also be updated whenever this file
     93      1.1  dillo 	 * is moved.
     94      1.1  dillo 	 */
     95      1.2  dillo 	hfs_cnid_t		h_parent;
     96      1.1  dillo 
     97      1.1  dillo 	uint8_t h_fork;
     98      1.1  dillo 
     99      1.1  dillo 	long	dummy;	/* FOR DEVELOPMENT ONLY */
    100      1.1  dillo };
    101      1.1  dillo 
    102      1.1  dillo typedef struct {
    103      1.1  dillo 	struct vnode* devvp; /* vnode for device I/O */
    104      1.1  dillo 	size_t devblksz; /* device block size (NOT HFS+ allocation block size)*/
    105      1.2  dillo } hfs_libcb_data; /* custom data used in hfs_volume.cbdata */
    106      1.1  dillo 
    107      1.1  dillo typedef struct {
    108      1.1  dillo 	kauth_cred_t cred;
    109      1.1  dillo 	struct lwp *l;
    110      1.1  dillo 	struct vnode *devvp;
    111      1.2  dillo } hfs_libcb_argsopen;
    112      1.1  dillo 
    113      1.1  dillo typedef struct {
    114      1.1  dillo 	struct lwp *l;
    115      1.2  dillo } hfs_libcb_argsclose;
    116      1.1  dillo 
    117      1.1  dillo typedef struct {
    118      1.1  dillo 	kauth_cred_t cred;
    119      1.1  dillo 	struct lwp *l;
    120      1.2  dillo } hfs_libcb_argsread;
    121      1.1  dillo 
    122      1.1  dillo /*
    123      1.1  dillo  * Convenience macros
    124      1.1  dillo  */
    125      1.1  dillo 
    126      1.2  dillo /* Convert mount ptr to hfsmount ptr. */
    127      1.2  dillo #define VFSTOHFS(mp)    ((struct hfsmount *)((mp)->mnt_data))
    128      1.1  dillo 
    129      1.1  dillo /* Convert between vnode ptrs and hfsnode ptrs. */
    130      1.2  dillo #define VTOH(vp)    ((struct hfsnode *)(vp)->v_data)
    131      1.1  dillo #define	HTOV(hp)	((hp)->h_vnode)
    132      1.1  dillo 
    133      1.1  dillo /* Get volume's allocation block size given a vnode ptr */
    134      1.2  dillo #define HFS_BLOCKSIZE(vp)    (VTOH(vp)->h_hmp->hm_vol.vh.block_size)
    135      1.1  dillo 
    136      1.1  dillo 
    137      1.1  dillo /* Convert special device major/minor */
    138      1.2  dillo #define HFS_CONVERT_RDEV(x)	makedev((x)>>24, (x)&0xffffff)
    139      1.1  dillo 
    140      1.1  dillo /*
    141      1.1  dillo  * Global variables
    142      1.1  dillo  */
    143      1.1  dillo 
    144      1.2  dillo extern const struct vnodeopv_desc hfs_vnodeop_opv_desc;
    145      1.2  dillo extern const struct vnodeopv_desc hfs_specop_opv_desc;
    146      1.2  dillo extern const struct vnodeopv_desc hfs_fifoop_opv_desc;
    147      1.2  dillo extern int (**hfs_specop_p) (void *);
    148      1.2  dillo extern int (**hfs_fifoop_p) (void *);
    149      1.1  dillo 
    150      1.1  dillo 
    151      1.1  dillo /*
    152      1.1  dillo  * Function prototypes
    153      1.1  dillo  */
    154      1.1  dillo 
    155      1.2  dillo /* hfs_nhash.c */
    156      1.2  dillo void hfs_nhashinit (void);
    157      1.2  dillo void hfs_nhashdone (void);
    158      1.2  dillo struct vnode *hfs_nhashget (dev_t, hfs_cnid_t, uint8_t, int);
    159      1.2  dillo void hfs_nhashinsert (struct hfsnode *);
    160      1.2  dillo void hfs_nhashremove (struct hfsnode *);
    161      1.1  dillo 
    162      1.2  dillo /* hfs_subr.c */
    163      1.2  dillo void hfs_vinit (struct mount *, int (**)(void *), int (**)(void *),
    164      1.1  dillo 		 struct vnode **);
    165      1.2  dillo int hfs_pread(struct vnode*, void*, size_t, uint64_t, uint64_t, kauth_cred_t);
    166      1.2  dillo char* hfs_unicode_to_ascii(const unichar_t*, uint8_t, char*);
    167      1.2  dillo unichar_t* hfs_ascii_to_unicode(const char*, uint8_t, unichar_t*);
    168      1.2  dillo 
    169      1.2  dillo void hfs_time_to_timespec(uint32_t, struct timespec *);
    170      1.2  dillo enum vtype hfs_catalog_keyed_record_vtype(const hfs_catalog_keyed_record_t *);
    171      1.2  dillo 
    172      1.2  dillo void hfs_libcb_error(const char*, const char*, int, va_list);
    173      1.2  dillo void* hfs_libcb_malloc(size_t, hfs_callback_args*);
    174      1.2  dillo void* hfs_libcb_realloc(void*, size_t, hfs_callback_args*);
    175      1.2  dillo void hfs_libcb_free(void*, hfs_callback_args*);
    176  1.2.6.1    mjf int hfs_libcb_opendev(hfs_volume*, const char*, hfs_callback_args*);
    177      1.2  dillo void hfs_libcb_closedev(hfs_volume*, hfs_callback_args*);
    178      1.2  dillo int hfs_libcb_read(hfs_volume*, void*, uint64_t, uint64_t,
    179      1.2  dillo 	hfs_callback_args*);
    180      1.1  dillo 
    181      1.1  dillo uint16_t be16tohp(void**);
    182      1.1  dillo uint32_t be32tohp(void**);
    183      1.1  dillo uint64_t be64tohp(void**);
    184      1.1  dillo 
    185      1.1  dillo 
    186      1.2  dillo /* hfs_vfsops.c */
    187      1.2  dillo int hfs_mount (struct mount *, const char *, void *, struct nameidata *,
    188      1.1  dillo 	struct lwp *);
    189  1.2.6.1    mjf int hfs_mountfs (struct vnode *, struct mount *, struct lwp *, const char *);
    190      1.2  dillo int hfs_start (struct mount *, int, struct lwp *);
    191      1.2  dillo int hfs_unmount (struct mount *, int, struct lwp *);
    192      1.2  dillo int hfs_root (struct mount *, struct vnode **);
    193      1.2  dillo int hfs_quotactl (struct mount *, int, uid_t, void *, struct lwp *);
    194      1.2  dillo int hfs_statvfs (struct mount *, struct statvfs *, struct lwp *);
    195      1.2  dillo int hfs_sync (struct mount *, int, kauth_cred_t , struct lwp *);
    196      1.2  dillo int hfs_vget (struct mount *, ino_t, struct vnode **);
    197      1.2  dillo int hfs_vget_internal(struct mount *, ino_t, uint8_t, struct vnode **);
    198      1.2  dillo int hfs_fhtovp (struct mount *, struct fid *, struct vnode **);
    199      1.2  dillo int hfs_vptofh (struct vnode *, struct fid *, size_t *);
    200      1.2  dillo void hfs_init (void);
    201      1.2  dillo void hfs_reinit (void);
    202      1.2  dillo void hfs_done (void);
    203      1.2  dillo int hfs_mountroot (void);
    204      1.2  dillo int hfs_extattrctl (struct mount *, int, struct vnode *, int, const char *,
    205      1.1  dillo 		     struct lwp *);
    206      1.1  dillo 
    207      1.2  dillo /* hfs_vnops.c */
    208      1.2  dillo extern int (**hfs_vnodeop_p) (void *);
    209      1.1  dillo 
    210      1.2  dillo #endif /* !_FS_HFS_HFS_H_ */
    211