1 | /* $Id: vboxfs_vnode.h 69500 2017-10-28 15:14:05Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox File System for Solaris Guests, VNode header.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009-2017 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 | #ifndef ___VBoxFS_node_Solaris_h
|
---|
28 | #define ___VBoxFS_node_Solaris_h
|
---|
29 |
|
---|
30 | #include <sys/t_lock.h>
|
---|
31 | #include <sys/avl.h>
|
---|
32 | #include <vm/seg.h>
|
---|
33 | #include <vm/seg_vn.h>
|
---|
34 |
|
---|
35 | #ifdef __cplusplus
|
---|
36 | extern "C" {
|
---|
37 | #endif
|
---|
38 |
|
---|
39 | /*
|
---|
40 | * sfnode is the file system dependent vnode data for vboxsf.
|
---|
41 | * sfnode's also track all files ever accessed, both open and closed.
|
---|
42 | * It duplicates some of the information in vnode, since it holds
|
---|
43 | * information for files that may have been completely closed.
|
---|
44 | *
|
---|
45 | * The sfnode_t's are stored in an AVL tree sorted by:
|
---|
46 | * sf_sffs, sf_path
|
---|
47 | */
|
---|
48 | typedef struct sfnode {
|
---|
49 | avl_node_t sf_linkage; /* AVL tree linkage */
|
---|
50 | struct sffs_data *sf_sffs; /* containing mounted file system */
|
---|
51 | char *sf_path; /* full pathname to file or dir */
|
---|
52 | uint64_t sf_ino; /* assigned unique ID number */
|
---|
53 | vnode_t *sf_vnode; /* vnode if active */
|
---|
54 | sfp_file_t *sf_file; /* non NULL if open */
|
---|
55 | int sf_flag; /* last opened file-mode. */
|
---|
56 | struct sfnode *sf_parent; /* parent sfnode of this one */
|
---|
57 | uint16_t sf_children; /* number of children sfnodes */
|
---|
58 | uint8_t sf_type; /* VDIR or VREG */
|
---|
59 | uint8_t sf_is_stale; /* this is stale and should be purged */
|
---|
60 | sffs_stat_t sf_stat; /* cached file attrs for this node */
|
---|
61 | uint64_t sf_stat_time; /* last-modified time of sf_stat */
|
---|
62 | sffs_dirents_t *sf_dir_list; /* list of entries for this directory */
|
---|
63 | } sfnode_t;
|
---|
64 |
|
---|
65 | #define VN2SFN(vp) ((sfnode_t *)(vp)->v_data)
|
---|
66 |
|
---|
67 | #ifdef _KERNEL
|
---|
68 | extern int sffs_vnode_init(void);
|
---|
69 | extern void sffs_vnode_fini(void);
|
---|
70 | extern sfnode_t *sfnode_make(struct sffs_data *, char *, vtype_t, sfp_file_t *,
|
---|
71 | sfnode_t *parent, sffs_stat_t *, uint64_t stat_time);
|
---|
72 | extern vnode_t *sfnode_get_vnode(sfnode_t *);
|
---|
73 |
|
---|
74 | /*
|
---|
75 | * Purge all cached information about a shared file system at unmount
|
---|
76 | */
|
---|
77 | extern int sffs_purge(struct sffs_data *);
|
---|
78 |
|
---|
79 | extern kmutex_t sffs_lock;
|
---|
80 | #endif /* _KERNEL */
|
---|
81 |
|
---|
82 | #ifdef __cplusplus
|
---|
83 | }
|
---|
84 | #endif
|
---|
85 |
|
---|
86 | #endif /* !___VBoxFS_node_Solaris_h */
|
---|