-
Notifications
You must be signed in to change notification settings - Fork 8
/
shfs_btable.h
220 lines (191 loc) · 6.06 KB
/
shfs_btable.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/*
* Simple hash filesystem (SHFS)
*
* Authors: Simon Kuenzer <[email protected]>
*
*
* Copyright (c) 2013-2017, NEC Europe Ltd., NEC Corporation All rights reserved.
*
* 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.
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT HOLDER 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.
*
*/
#ifndef _SHFS_BTABLE_H_
#define _SHFS_BTABLE_H_
/*
* This file implements the hash-table based file table.
* It basically provides wrappers of htable.c/.h for SHFS.
*/
#ifdef __SHFS_TOOLS__
#include <semaphore.h>
#include <assert.h>
#define ASSERT assert
#else
#include <target/sys.h>
#endif
#include "shfs_defs.h"
#include "htable.h"
#ifdef SHFS_STATS
#include "shfs_stats_data.h"
#endif
#ifndef CACHELINE_SIZE
#define CACHELINE_SIZE 64
#endif
/*
* Bucket entry that points to
* the depending hentry (SHFS Hash Table Entry)
*/
struct shfs_bentry {
chk_t hentry_htchunk; /* relative chunk:offfset addres to entry in SHFS htable */
off_t hentry_htoffset;
#ifndef __SHFS_TOOLS__
struct shfs_hentry *hentry; /* reference to buffered entry in cache */
uint32_t refcount;
sem_t updatelock; /* lock is helt as long the file is opened */
int update; /* is set when a entry update is ongoing */
#ifdef SHFS_STATS
struct shfs_el_stats hstats;
#endif /* SHFS_STATS */
void *cookie; /* shfs_fio: upper layer software can attach cookies to open files */
#ifdef __KERNEL__
/* Inode number allocated for this file */
int ino;
#endif
#endif
};
#define shfs_alloc_btable(nb_bkts, ent_per_bkt, hlen) \
alloc_htable((nb_bkts), (ent_per_bkt), (hlen), sizeof(struct shfs_bentry), CACHELINE_SIZE);
#define shfs_free_btable(bt) \
free_htable((bt))
/**
* Does a lookup for a bucket entry by its hash value
*/
static inline struct shfs_bentry *shfs_btable_lookup(struct htable *bt, hash512_t h) {
struct htable_el *el;
el = htable_lookup(bt, h);
if (el)
return (struct shfs_bentry *) el->private;
return NULL;
}
#ifdef SHFS_OPENBYNAME
/*
* Unfortunately, opening by name ends up in an
* expensive search algorithm: O(n^2)
*/
static inline struct shfs_bentry *shfs_btable_lookup_byname(struct htable *bt,
void **htchunks,
const char *name)
{
struct htable_el *el;
struct shfs_bentry *bentry;
struct shfs_hentry *hentry;
size_t name_len;
name_len = strlen(name);
foreach_htable_el(bt, el) {
bentry = el->private;
hentry = (struct shfs_hentry *)
(((uint8_t *) (htchunks[bentry->hentry_htchunk]))
+ bentry->hentry_htoffset);
if (name_len > sizeof(hentry->name))
continue;
if (strncmp(name, hentry->name, sizeof(hentry->name)) == 0) {
/* we found it - hooray! */
return bentry;
}
}
return NULL;
}
#endif
/**
* Searches and allocates an according bucket entry for a given hash value
*/
static inline struct shfs_bentry *shfs_btable_addentry(struct htable *bt, hash512_t h) {
struct htable_el *el;
el = htable_add(bt, h);
if (el)
return (struct shfs_bentry *) el->private;
return NULL;
}
#if (!defined(__MINIOS__) && !defined(__KERNEL__))
/**
* Deletes an entry from table
*/
static void shfs_btable_rmentry(struct htable *bt, hash512_t h) {
struct htable_el *el;
el = htable_lookup(bt, h);
if (el)
htable_rm(bt, el);
}
#endif
/**
* This function is intended to be used during (re-)mount time.
* It is intended to load a hash table from a device:
* It picks a bucket entry by its total index of the hash table,
* replaces its hash value and (re-)links the element to the end of the table list.
* The functions returns the according shfs_bentry so that this data structure
* can be filled-in/updated with further meta data
*/
static inline struct shfs_bentry *shfs_btable_feed(struct htable *bt, uint64_t ent_idx, hash512_t h) {
uint32_t bkt_idx;
uint32_t el_idx_bkt;
struct htable_bkt *b;
struct htable_el *el;
/* TODO: Check for overflows */
bkt_idx = (uint32_t) (ent_idx / (uint64_t) bt->el_per_bkt);
el_idx_bkt = (uint32_t) (ent_idx % (uint64_t) bt->el_per_bkt);
ASSERT(bkt_idx < bt->nb_bkts);
/* entry found */
b = bt->b[bkt_idx];
el = _htable_bkt_el(b, el_idx_bkt);
/* check if a previous entry was there -> if yes, unlink it */
if (!hash_is_zero(b->h[el_idx_bkt], bt->hlen)) {
if (el->prev)
el->prev->next = el->next;
else
bt->head = el->next;
if (el->next)
el->next->prev = el->prev;
else
bt->tail = el->prev;
}
/* replace hash value */
hash_copy(b->h[el_idx_bkt], h, bt->hlen);
/* link the new element to the list, (if it is not empty) */
if (!hash_is_zero(h, bt->hlen)) {
if (!bt->head) {
bt->head = el;
bt->tail = el;
el->prev = NULL;
el->next = NULL;
} else {
bt->tail->next = el;
el->prev = bt->tail;
el->next = NULL;
bt->tail = el;
}
}
return (struct shfs_bentry *) el->private;
}
#endif /* _SHFS_BTABLE_H_ */