1 | /* $Id: vnode_cache.cpp 69500 2017-10-28 15:14:05Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * Shared folders - Haiku Guest Additions, vnode cache header.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2012-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 |
|
---|
18 | /*
|
---|
19 | * This code is based on:
|
---|
20 | *
|
---|
21 | * VirtualBox Guest Additions for Haiku.
|
---|
22 | * Copyright (c) 2011 Mike Smith <mike@scgtrp.net>
|
---|
23 | *
|
---|
24 | * Permission is hereby granted, free of charge, to any person
|
---|
25 | * obtaining a copy of this software and associated documentation
|
---|
26 | * files (the "Software"), to deal in the Software without
|
---|
27 | * restriction, including without limitation the rights to use,
|
---|
28 | * copy, modify, merge, publish, distribute, sublicense, and/or sell
|
---|
29 | * copies of the Software, and to permit persons to whom the
|
---|
30 | * Software is furnished to do so, subject to the following
|
---|
31 | * conditions:
|
---|
32 | *
|
---|
33 | * The above copyright notice and this permission notice shall be
|
---|
34 | * included in all copies or substantial portions of the Software.
|
---|
35 | *
|
---|
36 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
---|
37 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
---|
38 | * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
---|
39 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
---|
40 | * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
---|
41 | * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
---|
42 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
---|
43 | * OTHER DEALINGS IN THE SOFTWARE.
|
---|
44 | */
|
---|
45 |
|
---|
46 | #include "vboxsf.h"
|
---|
47 | #include "OpenHashTable.h"
|
---|
48 |
|
---|
49 | struct HashTableDefinition
|
---|
50 | {
|
---|
51 | typedef uint32 KeyType;
|
---|
52 | typedef vboxsf_vnode ValueType;
|
---|
53 |
|
---|
54 | size_t HashKey(uint32 key) const
|
---|
55 | {
|
---|
56 | return key;
|
---|
57 | }
|
---|
58 |
|
---|
59 | size_t Hash(vboxsf_vnode* value) const
|
---|
60 | {
|
---|
61 | return HashKey(value->vnode);
|
---|
62 | }
|
---|
63 |
|
---|
64 | bool Compare(uint32 key, vboxsf_vnode* value) const
|
---|
65 | {
|
---|
66 | return value->vnode == key;
|
---|
67 | }
|
---|
68 |
|
---|
69 | vboxsf_vnode*& GetLink(vboxsf_vnode* value) const
|
---|
70 | {
|
---|
71 | return value->next;
|
---|
72 | }
|
---|
73 | };
|
---|
74 |
|
---|
75 | static BOpenHashTable<HashTableDefinition> g_cache;
|
---|
76 | static ino_t g_nextVnid = 1;
|
---|
77 | mutex g_vnodeCacheLock;
|
---|
78 |
|
---|
79 |
|
---|
80 | extern "C" status_t vboxsf_new_vnode(PVBSFMAP map, PSHFLSTRING path, PSHFLSTRING name, vboxsf_vnode** p)
|
---|
81 | {
|
---|
82 | vboxsf_vnode* vn = (vboxsf_vnode*)malloc(sizeof(vboxsf_vnode));
|
---|
83 | if (vn == NULL)
|
---|
84 | return B_NO_MEMORY;
|
---|
85 |
|
---|
86 | dprintf("creating new vnode at %p with path=%p (%s)\n", vn, path->String.utf8, path->String.utf8);
|
---|
87 | vn->map = map;
|
---|
88 | vn->path = path;
|
---|
89 | if (name)
|
---|
90 | vn->name = name;
|
---|
91 | else
|
---|
92 | {
|
---|
93 | const char* cname = strrchr((char*)path->String.utf8, '/');
|
---|
94 | if (!cname)
|
---|
95 | vn->name = path; // no slash, assume this *is* the filename
|
---|
96 | else
|
---|
97 | vn->name = make_shflstring(cname);
|
---|
98 | }
|
---|
99 |
|
---|
100 | if (mutex_lock(&g_vnodeCacheLock) < B_OK)
|
---|
101 | {
|
---|
102 | free(vn);
|
---|
103 | return B_ERROR;
|
---|
104 | }
|
---|
105 |
|
---|
106 | vn->vnode = g_nextVnid++;
|
---|
107 | *p = vn;
|
---|
108 | dprintf("vboxsf: allocated %p (path=%p name=%p)\n", vn, vn->path, vn->name);
|
---|
109 | status_t rv = g_cache.Insert(vn);
|
---|
110 |
|
---|
111 | mutex_unlock(&g_vnodeCacheLock);
|
---|
112 |
|
---|
113 | return rv;
|
---|
114 | }
|
---|
115 |
|
---|
116 |
|
---|
117 | extern "C" status_t vboxsf_get_vnode(fs_volume* volume, ino_t id, fs_vnode* vnode,
|
---|
118 | int* _type, uint32* _flags, bool reenter)
|
---|
119 | {
|
---|
120 | vboxsf_vnode* vn = g_cache.Lookup(id);
|
---|
121 | if (vn)
|
---|
122 | {
|
---|
123 | vnode->private_node = vn;
|
---|
124 | return B_OK;
|
---|
125 | }
|
---|
126 | return B_ERROR;
|
---|
127 | }
|
---|
128 |
|
---|
129 |
|
---|
130 | extern "C" status_t vboxsf_put_vnode(fs_volume* volume, fs_vnode* vnode, bool reenter)
|
---|
131 | {
|
---|
132 | g_cache.Remove((vboxsf_vnode*)vnode->private_node);
|
---|
133 | }
|
---|
134 |
|
---|