Subversion Repositories HelenOS

Rev

Rev 2770 | Rev 2792 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2770 Rev 2791
1
/*
1
/*
2
 * Copyright (c) 2008 Jakub Jermar
2
 * Copyright (c) 2008 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup fs
29
/** @addtogroup fs
30
 * @{
30
 * @{
31
 */
31
 */
32
 
32
 
33
/**
33
/**
34
 * @file    tmpfs_ops.c
34
 * @file    tmpfs_ops.c
35
 * @brief   Implementation of VFS operations for the TMPFS file system
35
 * @brief   Implementation of VFS operations for the TMPFS file system
36
 *      server.
36
 *      server.
37
 */
37
 */
38
 
38
 
39
#include "tmpfs.h"
39
#include "tmpfs.h"
40
#include "../../vfs/vfs.h"
40
#include "../../vfs/vfs.h"
41
#include <ipc/ipc.h>
41
#include <ipc/ipc.h>
42
#include <async.h>
42
#include <async.h>
43
#include <errno.h>
43
#include <errno.h>
44
#include <atomic.h>
44
#include <atomic.h>
45
#include <stdlib.h>
45
#include <stdlib.h>
46
#include <string.h>
46
#include <string.h>
47
#include <stdio.h>
47
#include <stdio.h>
48
#include <assert.h>
48
#include <assert.h>
49
#include <sys/types.h>
49
#include <sys/types.h>
50
#include <libadt/hash_table.h>
50
#include <libadt/hash_table.h>
51
#include <as.h>
51
#include <as.h>
52
#include <libfs.h>
52
#include <libfs.h>
53
 
53
 
54
#define min(a, b)       ((a) < (b) ? (a) : (b))
54
#define min(a, b)       ((a) < (b) ? (a) : (b))
55
#define max(a, b)       ((a) > (b) ? (a) : (b))
55
#define max(a, b)       ((a) > (b) ? (a) : (b))
56
 
56
 
57
#define DENTRIES_BUCKETS    256
57
#define DENTRIES_BUCKETS    256
58
 
58
 
59
#define NAMES_BUCKETS       4
59
#define NAMES_BUCKETS       4
60
 
60
 
61
/*
61
/*
62
 * For now, we don't distinguish between different dev_handles/instances. All
62
 * For now, we don't distinguish between different dev_handles/instances. All
63
 * requests resolve to the only instance, rooted in the following variable.
63
 * requests resolve to the only instance, rooted in the following variable.
64
 */
64
 */
65
static tmpfs_dentry_t *root;
65
static tmpfs_dentry_t *root;
66
 
66
 
67
/*
67
/*
68
 * Implementation of the libfs interface.
68
 * Implementation of the libfs interface.
69
 */
69
 */
70
 
70
 
71
/* Forward declarations of static functions. */
71
/* Forward declarations of static functions. */
72
static bool tmpfs_match(void *, void *, const char *);
72
static void *tmpfs_match(void *, const char *);
73
static void *tmpfs_node_get(fs_handle_t, dev_handle_t, fs_index_t);
73
static void *tmpfs_node_get(fs_handle_t, dev_handle_t, fs_index_t);
74
static void *tmpfs_create_node(int);
74
static void *tmpfs_create_node(int);
75
static bool tmpfs_link_node(void *, void *, const char *);
75
static bool tmpfs_link_node(void *, void *, const char *);
76
static int tmpfs_unlink_node(void *, void *);
76
static int tmpfs_unlink_node(void *, void *);
77
static void tmpfs_destroy_node(void *);
77
static void tmpfs_destroy_node(void *);
78
 
78
 
79
/* Implementation of helper functions. */
79
/* Implementation of helper functions. */
80
static fs_index_t tmpfs_index_get(void *nodep)
80
static fs_index_t tmpfs_index_get(void *nodep)
81
{
81
{
82
    return ((tmpfs_dentry_t *) nodep)->index;
82
    return ((tmpfs_dentry_t *) nodep)->index;
83
}
83
}
84
 
84
 
85
static size_t tmpfs_size_get(void *nodep)
85
static size_t tmpfs_size_get(void *nodep)
86
{
86
{
87
    return ((tmpfs_dentry_t *) nodep)->size;
87
    return ((tmpfs_dentry_t *) nodep)->size;
88
}
88
}
89
 
89
 
90
static unsigned tmpfs_lnkcnt_get(void *nodep)
90
static unsigned tmpfs_lnkcnt_get(void *nodep)
91
{
91
{
92
    return ((tmpfs_dentry_t *) nodep)->lnkcnt;
92
    return ((tmpfs_dentry_t *) nodep)->lnkcnt;
93
}
93
}
94
 
94
 
95
static void *tmpfs_child_get(void *nodep)
95
static bool tmpfs_has_children(void *nodep)
96
{
96
{
97
    return ((tmpfs_dentry_t *) nodep)->child;
97
    return ((tmpfs_dentry_t *) nodep)->child != NULL;
98
}
-
 
99
 
-
 
100
static void *tmpfs_sibling_get(void *nodep)
-
 
101
{
-
 
102
    return ((tmpfs_dentry_t *) nodep)->sibling;
-
 
103
}
98
}
104
 
99
 
105
static void *tmpfs_root_get(void)
100
static void *tmpfs_root_get(void)
106
{
101
{
107
    return root;
102
    return root;
108
}
103
}
109
 
104
 
110
static char tmpfs_plb_get_char(unsigned pos)
105
static char tmpfs_plb_get_char(unsigned pos)
111
{
106
{
112
    return tmpfs_reg.plb_ro[pos % PLB_SIZE];
107
    return tmpfs_reg.plb_ro[pos % PLB_SIZE];
113
}
108
}
114
 
109
 
115
static bool tmpfs_is_directory(void *nodep)
110
static bool tmpfs_is_directory(void *nodep)
116
{
111
{
117
    return ((tmpfs_dentry_t *) nodep)->type == TMPFS_DIRECTORY;
112
    return ((tmpfs_dentry_t *) nodep)->type == TMPFS_DIRECTORY;
118
}
113
}
119
 
114
 
120
static bool tmpfs_is_file(void *nodep)
115
static bool tmpfs_is_file(void *nodep)
121
{
116
{
122
    return ((tmpfs_dentry_t *) nodep)->type == TMPFS_FILE;
117
    return ((tmpfs_dentry_t *) nodep)->type == TMPFS_FILE;
123
}
118
}
124
 
119
 
125
/** libfs operations */
120
/** libfs operations */
126
libfs_ops_t tmpfs_libfs_ops = {
121
libfs_ops_t tmpfs_libfs_ops = {
127
    .match = tmpfs_match,
122
    .match = tmpfs_match,
128
    .node_get = tmpfs_node_get,
123
    .node_get = tmpfs_node_get,
129
    .create = tmpfs_create_node,
124
    .create = tmpfs_create_node,
130
    .destroy = tmpfs_destroy_node,
125
    .destroy = tmpfs_destroy_node,
131
    .link = tmpfs_link_node,
126
    .link = tmpfs_link_node,
132
    .unlink = tmpfs_unlink_node,
127
    .unlink = tmpfs_unlink_node,
133
    .index_get = tmpfs_index_get,
128
    .index_get = tmpfs_index_get,
134
    .size_get = tmpfs_size_get,
129
    .size_get = tmpfs_size_get,
135
    .lnkcnt_get = tmpfs_lnkcnt_get,
130
    .lnkcnt_get = tmpfs_lnkcnt_get,
136
    .child_get = tmpfs_child_get,
131
    .has_children = tmpfs_has_children,
137
    .sibling_get = tmpfs_sibling_get,
-
 
138
    .root_get = tmpfs_root_get,
132
    .root_get = tmpfs_root_get,
139
    .plb_get_char = tmpfs_plb_get_char,
133
    .plb_get_char = tmpfs_plb_get_char,
140
    .is_directory = tmpfs_is_directory,
134
    .is_directory = tmpfs_is_directory,
141
    .is_file = tmpfs_is_file
135
    .is_file = tmpfs_is_file
142
};
136
};
143
 
137
 
144
/** Hash table of all directory entries. */
138
/** Hash table of all directory entries. */
145
hash_table_t dentries;
139
hash_table_t dentries;
146
 
140
 
147
/* Implementation of hash table interface for the dentries hash table. */
141
/* Implementation of hash table interface for the dentries hash table. */
148
static hash_index_t dentries_hash(unsigned long *key)
142
static hash_index_t dentries_hash(unsigned long *key)
149
{
143
{
150
    return *key % DENTRIES_BUCKETS;
144
    return *key % DENTRIES_BUCKETS;
151
}
145
}
152
 
146
 
153
static int dentries_compare(unsigned long *key, hash_count_t keys,
147
static int dentries_compare(unsigned long *key, hash_count_t keys,
154
    link_t *item)
148
    link_t *item)
155
{
149
{
156
    tmpfs_dentry_t *dentry = hash_table_get_instance(item, tmpfs_dentry_t,
150
    tmpfs_dentry_t *dentry = hash_table_get_instance(item, tmpfs_dentry_t,
157
        dh_link);
151
        dh_link);
158
    return dentry->index == *key;
152
    return dentry->index == *key;
159
}
153
}
160
 
154
 
161
static void dentries_remove_callback(link_t *item)
155
static void dentries_remove_callback(link_t *item)
162
{
156
{
163
}
157
}
164
 
158
 
165
/** TMPFS dentries hash table operations. */
159
/** TMPFS dentries hash table operations. */
166
hash_table_operations_t dentries_ops = {
160
hash_table_operations_t dentries_ops = {
167
    .hash = dentries_hash,
161
    .hash = dentries_hash,
168
    .compare = dentries_compare,
162
    .compare = dentries_compare,
169
    .remove_callback = dentries_remove_callback
163
    .remove_callback = dentries_remove_callback
170
};
164
};
171
 
165
 
172
fs_index_t tmpfs_next_index = 1;
166
fs_index_t tmpfs_next_index = 1;
173
 
167
 
174
typedef struct {
168
typedef struct {
175
    char *name;
169
    char *name;
176
    tmpfs_dentry_t *parent;
170
    tmpfs_dentry_t *parent;
177
    link_t link;
171
    link_t link;
178
} tmpfs_name_t;
172
} tmpfs_name_t;
179
 
173
 
180
/* Implementation of hash table interface for the names hash table. */
174
/* Implementation of hash table interface for the names hash table. */
181
static hash_index_t names_hash(unsigned long *key)
175
static hash_index_t names_hash(unsigned long *key)
182
{
176
{
183
    tmpfs_dentry_t *dentry = (tmpfs_dentry_t *) *key;
177
    tmpfs_dentry_t *dentry = (tmpfs_dentry_t *) *key;
184
    return dentry->index % NAMES_BUCKETS;
178
    return dentry->index % NAMES_BUCKETS;
185
}
179
}
186
 
180
 
187
static int names_compare(unsigned long *key, hash_count_t keys, link_t *item)
181
static int names_compare(unsigned long *key, hash_count_t keys, link_t *item)
188
{
182
{
189
    tmpfs_dentry_t *dentry = (tmpfs_dentry_t *) *key;
183
    tmpfs_dentry_t *dentry = (tmpfs_dentry_t *) *key;
190
    tmpfs_name_t *namep = hash_table_get_instance(item, tmpfs_name_t,
184
    tmpfs_name_t *namep = hash_table_get_instance(item, tmpfs_name_t,
191
        link);
185
        link);
192
    return dentry == namep->parent;
186
    return dentry == namep->parent;
193
}
187
}
194
 
188
 
195
static void names_remove_callback(link_t *item)
189
static void names_remove_callback(link_t *item)
196
{
190
{
197
    tmpfs_name_t *namep = hash_table_get_instance(item, tmpfs_name_t,
191
    tmpfs_name_t *namep = hash_table_get_instance(item, tmpfs_name_t,
198
        link);
192
        link);
199
    free(namep->name);
193
    free(namep->name);
200
    free(namep);
194
    free(namep);
201
}
195
}
202
 
196
 
203
/** TMPFS node names hash table operations. */
197
/** TMPFS node names hash table operations. */
204
static hash_table_operations_t names_ops = {
198
static hash_table_operations_t names_ops = {
205
    .hash = names_hash,
199
    .hash = names_hash,
206
    .compare = names_compare,
200
    .compare = names_compare,
207
    .remove_callback = names_remove_callback
201
    .remove_callback = names_remove_callback
208
};
202
};
209
 
203
 
210
static void tmpfs_name_initialize(tmpfs_name_t *namep)
204
static void tmpfs_name_initialize(tmpfs_name_t *namep)
211
{
205
{
212
    namep->name = NULL;
206
    namep->name = NULL;
213
    namep->parent = NULL;
207
    namep->parent = NULL;
214
    link_initialize(&namep->link);
208
    link_initialize(&namep->link);
215
}
209
}
216
 
210
 
217
static bool tmpfs_dentry_initialize(tmpfs_dentry_t *dentry)
211
static bool tmpfs_dentry_initialize(tmpfs_dentry_t *dentry)
218
{
212
{
219
    dentry->index = 0;
213
    dentry->index = 0;
220
    dentry->sibling = NULL;
214
    dentry->sibling = NULL;
221
    dentry->child = NULL;
215
    dentry->child = NULL;
222
    dentry->type = TMPFS_NONE;
216
    dentry->type = TMPFS_NONE;
223
    dentry->lnkcnt = 0;
217
    dentry->lnkcnt = 0;
224
    dentry->size = 0;
218
    dentry->size = 0;
225
    dentry->data = NULL;
219
    dentry->data = NULL;
226
    link_initialize(&dentry->dh_link);
220
    link_initialize(&dentry->dh_link);
227
    return (bool)hash_table_create(&dentry->names, NAMES_BUCKETS, 1,
221
    return (bool)hash_table_create(&dentry->names, NAMES_BUCKETS, 1,
228
        &names_ops);
222
        &names_ops);
229
}
223
}
230
 
224
 
231
static bool tmpfs_init(void)
225
static bool tmpfs_init(void)
232
{
226
{
233
    if (!hash_table_create(&dentries, DENTRIES_BUCKETS, 1, &dentries_ops))
227
    if (!hash_table_create(&dentries, DENTRIES_BUCKETS, 1, &dentries_ops))
234
        return false;
228
        return false;
235
    root = (tmpfs_dentry_t *) tmpfs_create_node(L_DIRECTORY);
229
    root = (tmpfs_dentry_t *) tmpfs_create_node(L_DIRECTORY);
236
    if (!root) {
230
    if (!root) {
237
        hash_table_destroy(&dentries);
231
        hash_table_destroy(&dentries);
238
        return false;
232
        return false;
239
    }
233
    }
240
    root->lnkcnt = 1;
234
    root->lnkcnt = 1;
241
    return true;
235
    return true;
242
}
236
}
243
 
237
 
244
/** Compare one component of path to a directory entry.
238
/** Compare one component of path to a directory entry.
245
 *
239
 *
246
 * @param prnt      Node from which we descended.
240
 * @param parentp   Pointer to node from which we descended.
247
 * @param chld      Node to compare the path component with.
241
 * @param childp    Pointer to node to compare the path component with.
248
 * @param component Array of characters holding component name.
242
 * @param component Array of characters holding component name.
249
 *
243
 *
250
 * @return      True on match, false otherwise.
244
 * @return      True on match, false otherwise.
251
 */
245
 */
-
 
246
static bool
252
bool tmpfs_match(void *prnt, void *chld, const char *component)
247
tmpfs_match_one(tmpfs_dentry_t *parentp, tmpfs_dentry_t *childp,
-
 
248
    const char *component)
253
{
249
{
254
    tmpfs_dentry_t *parentp = (tmpfs_dentry_t *) prnt;
-
 
255
    tmpfs_dentry_t *childp = (tmpfs_dentry_t *) chld;
-
 
256
 
-
 
257
    unsigned long key = (unsigned long) parentp;
250
    unsigned long key = (unsigned long) parentp;
258
    link_t *hlp = hash_table_find(&childp->names, &key);
251
    link_t *hlp = hash_table_find(&childp->names, &key);
259
    assert(hlp);
252
    assert(hlp);
260
    tmpfs_name_t *namep = hash_table_get_instance(hlp, tmpfs_name_t, link);
253
    tmpfs_name_t *namep = hash_table_get_instance(hlp, tmpfs_name_t, link);
261
 
-
 
262
    return !strcmp(namep->name, component);
254
    return !strcmp(namep->name, component);
263
}
255
}
-
 
256
 
-
 
257
void *tmpfs_match(void *prnt, const char *component)
-
 
258
{
-
 
259
    tmpfs_dentry_t *parentp = (tmpfs_dentry_t *) prnt;
-
 
260
    tmpfs_dentry_t *childp = parentp->child;
-
 
261
 
-
 
262
    while (childp && !tmpfs_match_one(parentp, childp, component))
-
 
263
        childp = childp->sibling;
-
 
264
 
-
 
265
    return (void *) childp;
-
 
266
}
264
 
267
 
265
void *
268
void *
266
tmpfs_node_get(fs_handle_t fs_handle, dev_handle_t dev_handle, fs_index_t index)
269
tmpfs_node_get(fs_handle_t fs_handle, dev_handle_t dev_handle, fs_index_t index)
267
{
270
{
268
    unsigned long key = index;
271
    unsigned long key = index;
269
    link_t *lnk = hash_table_find(&dentries, &key);
272
    link_t *lnk = hash_table_find(&dentries, &key);
270
    if (!lnk)
273
    if (!lnk)
271
        return NULL;
274
        return NULL;
272
    return hash_table_get_instance(lnk, tmpfs_dentry_t, dh_link);
275
    return hash_table_get_instance(lnk, tmpfs_dentry_t, dh_link);
273
}
276
}
274
 
277
 
275
void *tmpfs_create_node(int lflag)
278
void *tmpfs_create_node(int lflag)
276
{
279
{
277
    assert((lflag & L_FILE) ^ (lflag & L_DIRECTORY));
280
    assert((lflag & L_FILE) ^ (lflag & L_DIRECTORY));
278
 
281
 
279
    tmpfs_dentry_t *node = malloc(sizeof(tmpfs_dentry_t));
282
    tmpfs_dentry_t *node = malloc(sizeof(tmpfs_dentry_t));
280
    if (!node)
283
    if (!node)
281
        return NULL;
284
        return NULL;
282
 
285
 
283
    if (!tmpfs_dentry_initialize(node)) {
286
    if (!tmpfs_dentry_initialize(node)) {
284
        free(node);
287
        free(node);
285
        return NULL;
288
        return NULL;
286
    }
289
    }
287
    node->index = tmpfs_next_index++;
290
    node->index = tmpfs_next_index++;
288
    if (lflag & L_DIRECTORY)
291
    if (lflag & L_DIRECTORY)
289
        node->type = TMPFS_DIRECTORY;
292
        node->type = TMPFS_DIRECTORY;
290
    else
293
    else
291
        node->type = TMPFS_FILE;
294
        node->type = TMPFS_FILE;
292
 
295
 
293
    /* Insert the new node into the dentry hash table. */
296
    /* Insert the new node into the dentry hash table. */
294
    unsigned long key = node->index;
297
    unsigned long key = node->index;
295
    hash_table_insert(&dentries, &key, &node->dh_link);
298
    hash_table_insert(&dentries, &key, &node->dh_link);
296
    return (void *) node;
299
    return (void *) node;
297
}
300
}
298
 
301
 
299
bool tmpfs_link_node(void *prnt, void *chld, const char *nm)
302
bool tmpfs_link_node(void *prnt, void *chld, const char *nm)
300
{
303
{
301
    tmpfs_dentry_t *parentp = (tmpfs_dentry_t *) prnt;
304
    tmpfs_dentry_t *parentp = (tmpfs_dentry_t *) prnt;
302
    tmpfs_dentry_t *childp = (tmpfs_dentry_t *) chld;
305
    tmpfs_dentry_t *childp = (tmpfs_dentry_t *) chld;
303
 
306
 
304
    assert(parentp->type == TMPFS_DIRECTORY);
307
    assert(parentp->type == TMPFS_DIRECTORY);
305
 
308
 
306
    tmpfs_name_t *namep = malloc(sizeof(tmpfs_name_t));
309
    tmpfs_name_t *namep = malloc(sizeof(tmpfs_name_t));
307
    if (!namep)
310
    if (!namep)
308
        return false;
311
        return false;
309
    tmpfs_name_initialize(namep);
312
    tmpfs_name_initialize(namep);
310
    size_t len = strlen(nm);
313
    size_t len = strlen(nm);
311
    namep->name = malloc(len + 1);
314
    namep->name = malloc(len + 1);
312
    if (!namep->name) {
315
    if (!namep->name) {
313
        free(namep);
316
        free(namep);
314
        return false;
317
        return false;
315
    }
318
    }
316
    strcpy(namep->name, nm);
319
    strcpy(namep->name, nm);
317
    namep->parent = parentp;
320
    namep->parent = parentp;
318
   
321
   
319
    childp->lnkcnt++;
322
    childp->lnkcnt++;
320
 
323
 
321
    unsigned long key = (unsigned long) parentp;
324
    unsigned long key = (unsigned long) parentp;
322
    hash_table_insert(&childp->names, &key, &namep->link);
325
    hash_table_insert(&childp->names, &key, &namep->link);
323
 
326
 
324
    /* Insert the new node into the namespace. */
327
    /* Insert the new node into the namespace. */
325
    if (parentp->child) {
328
    if (parentp->child) {
326
        tmpfs_dentry_t *tmp = parentp->child;
329
        tmpfs_dentry_t *tmp = parentp->child;
327
        while (tmp->sibling)
330
        while (tmp->sibling)
328
            tmp = tmp->sibling;
331
            tmp = tmp->sibling;
329
        tmp->sibling = childp;
332
        tmp->sibling = childp;
330
    } else {
333
    } else {
331
        parentp->child = childp;
334
        parentp->child = childp;
332
    }
335
    }
333
 
336
 
334
    return true;
337
    return true;
335
}
338
}
336
 
339
 
337
int tmpfs_unlink_node(void *prnt, void *chld)
340
int tmpfs_unlink_node(void *prnt, void *chld)
338
{
341
{
339
    tmpfs_dentry_t *parentp = (tmpfs_dentry_t *)prnt;
342
    tmpfs_dentry_t *parentp = (tmpfs_dentry_t *)prnt;
340
    tmpfs_dentry_t *childp = (tmpfs_dentry_t *)chld;
343
    tmpfs_dentry_t *childp = (tmpfs_dentry_t *)chld;
341
 
344
 
342
    if (!parentp)
345
    if (!parentp)
343
        return EBUSY;
346
        return EBUSY;
344
 
347
 
345
    if (childp->child)
348
    if (childp->child)
346
        return ENOTEMPTY;
349
        return ENOTEMPTY;
347
 
350
 
348
    if (parentp->child == childp) {
351
    if (parentp->child == childp) {
349
        parentp->child = childp->sibling;
352
        parentp->child = childp->sibling;
350
    } else {
353
    } else {
351
        /* TODO: consider doubly linked list for organizing siblings. */
354
        /* TODO: consider doubly linked list for organizing siblings. */
352
        tmpfs_dentry_t *tmp = parentp->child;
355
        tmpfs_dentry_t *tmp = parentp->child;
353
        while (tmp->sibling != childp)
356
        while (tmp->sibling != childp)
354
            tmp = tmp->sibling;
357
            tmp = tmp->sibling;
355
        tmp->sibling = childp->sibling;
358
        tmp->sibling = childp->sibling;
356
    }
359
    }
357
    childp->sibling = NULL;
360
    childp->sibling = NULL;
358
 
361
 
359
    unsigned long key = (unsigned long) parentp;
362
    unsigned long key = (unsigned long) parentp;
360
    hash_table_remove(&childp->names, &key, 1);
363
    hash_table_remove(&childp->names, &key, 1);
361
 
364
 
362
    childp->lnkcnt--;
365
    childp->lnkcnt--;
363
 
366
 
364
    return EOK;
367
    return EOK;
365
}
368
}
366
 
369
 
367
void tmpfs_destroy_node(void *nodep)
370
void tmpfs_destroy_node(void *nodep)
368
{
371
{
369
    tmpfs_dentry_t *dentry = (tmpfs_dentry_t *) nodep;
372
    tmpfs_dentry_t *dentry = (tmpfs_dentry_t *) nodep;
370
   
373
   
371
    assert(!dentry->lnkcnt);
374
    assert(!dentry->lnkcnt);
372
    assert(!dentry->child);
375
    assert(!dentry->child);
373
    assert(!dentry->sibling);
376
    assert(!dentry->sibling);
374
 
377
 
375
    unsigned long key = dentry->index;
378
    unsigned long key = dentry->index;
376
    hash_table_remove(&dentries, &key, 1);
379
    hash_table_remove(&dentries, &key, 1);
377
 
380
 
378
    hash_table_destroy(&dentry->names);
381
    hash_table_destroy(&dentry->names);
379
 
382
 
380
    if (dentry->type == TMPFS_FILE)
383
    if (dentry->type == TMPFS_FILE)
381
        free(dentry->data);
384
        free(dentry->data);
382
    free(dentry);
385
    free(dentry);
383
}
386
}
384
 
387
 
385
void tmpfs_lookup(ipc_callid_t rid, ipc_call_t *request)
388
void tmpfs_lookup(ipc_callid_t rid, ipc_call_t *request)
386
{
389
{
387
    /* Initialize TMPFS. */
390
    /* Initialize TMPFS. */
388
    if (!root && !tmpfs_init()) {
391
    if (!root && !tmpfs_init()) {
389
        ipc_answer_0(rid, ENOMEM);
392
        ipc_answer_0(rid, ENOMEM);
390
        return;
393
        return;
391
    }
394
    }
392
    libfs_lookup(&tmpfs_libfs_ops, tmpfs_reg.fs_handle, rid, request);
395
    libfs_lookup(&tmpfs_libfs_ops, tmpfs_reg.fs_handle, rid, request);
393
}
396
}
394
 
397
 
395
void tmpfs_read(ipc_callid_t rid, ipc_call_t *request)
398
void tmpfs_read(ipc_callid_t rid, ipc_call_t *request)
396
{
399
{
397
    dev_handle_t dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
400
    dev_handle_t dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
398
    fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request);
401
    fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request);
399
    off_t pos = (off_t)IPC_GET_ARG3(*request);
402
    off_t pos = (off_t)IPC_GET_ARG3(*request);
400
 
403
 
401
    /*
404
    /*
402
     * Lookup the respective dentry.
405
     * Lookup the respective dentry.
403
     */
406
     */
404
    link_t *hlp;
407
    link_t *hlp;
405
    unsigned long key = index;
408
    unsigned long key = index;
406
    hlp = hash_table_find(&dentries, &key);
409
    hlp = hash_table_find(&dentries, &key);
407
    if (!hlp) {
410
    if (!hlp) {
408
        ipc_answer_0(rid, ENOENT);
411
        ipc_answer_0(rid, ENOENT);
409
        return;
412
        return;
410
    }
413
    }
411
    tmpfs_dentry_t *dentry = hash_table_get_instance(hlp, tmpfs_dentry_t,
414
    tmpfs_dentry_t *dentry = hash_table_get_instance(hlp, tmpfs_dentry_t,
412
        dh_link);
415
        dh_link);
413
 
416
 
414
    /*
417
    /*
415
     * Receive the read request.
418
     * Receive the read request.
416
     */
419
     */
417
    ipc_callid_t callid;
420
    ipc_callid_t callid;
418
    size_t len;
421
    size_t len;
419
    if (!ipc_data_read_receive(&callid, &len)) {
422
    if (!ipc_data_read_receive(&callid, &len)) {
420
        ipc_answer_0(callid, EINVAL);  
423
        ipc_answer_0(callid, EINVAL);  
421
        ipc_answer_0(rid, EINVAL);
424
        ipc_answer_0(rid, EINVAL);
422
        return;
425
        return;
423
    }
426
    }
424
 
427
 
425
    size_t bytes;
428
    size_t bytes;
426
    if (dentry->type == TMPFS_FILE) {
429
    if (dentry->type == TMPFS_FILE) {
427
        bytes = max(0, min(dentry->size - pos, len));
430
        bytes = max(0, min(dentry->size - pos, len));
428
        (void) ipc_data_read_finalize(callid, dentry->data + pos,
431
        (void) ipc_data_read_finalize(callid, dentry->data + pos,
429
            bytes);
432
            bytes);
430
    } else {
433
    } else {
431
        int i;
434
        int i;
432
        tmpfs_dentry_t *cur;
435
        tmpfs_dentry_t *cur;
433
       
436
       
434
        assert(dentry->type == TMPFS_DIRECTORY);
437
        assert(dentry->type == TMPFS_DIRECTORY);
435
       
438
       
436
        /*
439
        /*
437
         * Yes, we really use O(n) algorithm here.
440
         * Yes, we really use O(n) algorithm here.
438
         * If it bothers someone, it could be fixed by introducing a
441
         * If it bothers someone, it could be fixed by introducing a
439
         * hash table.
442
         * hash table.
440
         */
443
         */
441
        for (i = 0, cur = dentry->child; i < pos && cur; i++,
444
        for (i = 0, cur = dentry->child; i < pos && cur; i++,
442
            cur = cur->sibling)
445
            cur = cur->sibling)
443
            ;
446
            ;
444
 
447
 
445
        if (!cur) {
448
        if (!cur) {
446
            ipc_answer_0(callid, ENOENT);
449
            ipc_answer_0(callid, ENOENT);
447
            ipc_answer_1(rid, ENOENT, 0);
450
            ipc_answer_1(rid, ENOENT, 0);
448
            return;
451
            return;
449
        }
452
        }
450
 
453
 
451
        unsigned long key = (unsigned long) dentry;
454
        unsigned long key = (unsigned long) dentry;
452
        link_t *hlp = hash_table_find(&cur->names, &key);
455
        link_t *hlp = hash_table_find(&cur->names, &key);
453
        assert(hlp);
456
        assert(hlp);
454
        tmpfs_name_t *namep = hash_table_get_instance(hlp, tmpfs_name_t,
457
        tmpfs_name_t *namep = hash_table_get_instance(hlp, tmpfs_name_t,
455
            link);
458
            link);
456
 
459
 
457
        (void) ipc_data_read_finalize(callid, namep->name,
460
        (void) ipc_data_read_finalize(callid, namep->name,
458
            strlen(namep->name) + 1);
461
            strlen(namep->name) + 1);
459
        bytes = 1;
462
        bytes = 1;
460
    }
463
    }
461
 
464
 
462
    /*
465
    /*
463
     * Answer the VFS_READ call.
466
     * Answer the VFS_READ call.
464
     */
467
     */
465
    ipc_answer_1(rid, EOK, bytes);
468
    ipc_answer_1(rid, EOK, bytes);
466
}
469
}
467
 
470
 
468
void tmpfs_write(ipc_callid_t rid, ipc_call_t *request)
471
void tmpfs_write(ipc_callid_t rid, ipc_call_t *request)
469
{
472
{
470
    dev_handle_t dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
473
    dev_handle_t dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
471
    fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request);
474
    fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request);
472
    off_t pos = (off_t)IPC_GET_ARG3(*request);
475
    off_t pos = (off_t)IPC_GET_ARG3(*request);
473
 
476
 
474
    /*
477
    /*
475
     * Lookup the respective dentry.
478
     * Lookup the respective dentry.
476
     */
479
     */
477
    link_t *hlp;
480
    link_t *hlp;
478
    unsigned long key = index;
481
    unsigned long key = index;
479
    hlp = hash_table_find(&dentries, &key);
482
    hlp = hash_table_find(&dentries, &key);
480
    if (!hlp) {
483
    if (!hlp) {
481
        ipc_answer_0(rid, ENOENT);
484
        ipc_answer_0(rid, ENOENT);
482
        return;
485
        return;
483
    }
486
    }
484
    tmpfs_dentry_t *dentry = hash_table_get_instance(hlp, tmpfs_dentry_t,
487
    tmpfs_dentry_t *dentry = hash_table_get_instance(hlp, tmpfs_dentry_t,
485
        dh_link);
488
        dh_link);
486
 
489
 
487
    /*
490
    /*
488
     * Receive the write request.
491
     * Receive the write request.
489
     */
492
     */
490
    ipc_callid_t callid;
493
    ipc_callid_t callid;
491
    size_t len;
494
    size_t len;
492
    if (!ipc_data_write_receive(&callid, &len)) {
495
    if (!ipc_data_write_receive(&callid, &len)) {
493
        ipc_answer_0(callid, EINVAL);  
496
        ipc_answer_0(callid, EINVAL);  
494
        ipc_answer_0(rid, EINVAL);
497
        ipc_answer_0(rid, EINVAL);
495
        return;
498
        return;
496
    }
499
    }
497
 
500
 
498
    /*
501
    /*
499
     * Check whether the file needs to grow.
502
     * Check whether the file needs to grow.
500
     */
503
     */
501
    if (pos + len <= dentry->size) {
504
    if (pos + len <= dentry->size) {
502
        /* The file size is not changing. */
505
        /* The file size is not changing. */
503
        (void) ipc_data_write_finalize(callid, dentry->data + pos, len);
506
        (void) ipc_data_write_finalize(callid, dentry->data + pos, len);
504
        ipc_answer_2(rid, EOK, len, dentry->size);
507
        ipc_answer_2(rid, EOK, len, dentry->size);
505
        return;
508
        return;
506
    }
509
    }
507
    size_t delta = (pos + len) - dentry->size;
510
    size_t delta = (pos + len) - dentry->size;
508
    /*
511
    /*
509
     * At this point, we are deliberately extremely straightforward and
512
     * At this point, we are deliberately extremely straightforward and
510
     * simply realloc the contents of the file on every write that grows the
513
     * simply realloc the contents of the file on every write that grows the
511
     * file. In the end, the situation might not be as bad as it may look:
514
     * file. In the end, the situation might not be as bad as it may look:
512
     * our heap allocator can save us and just grow the block whenever
515
     * our heap allocator can save us and just grow the block whenever
513
     * possible.
516
     * possible.
514
     */
517
     */
515
    void *newdata = realloc(dentry->data, dentry->size + delta);
518
    void *newdata = realloc(dentry->data, dentry->size + delta);
516
    if (!newdata) {
519
    if (!newdata) {
517
        ipc_answer_0(callid, ENOMEM);
520
        ipc_answer_0(callid, ENOMEM);
518
        ipc_answer_2(rid, EOK, 0, dentry->size);
521
        ipc_answer_2(rid, EOK, 0, dentry->size);
519
        return;
522
        return;
520
    }
523
    }
521
    /* Clear any newly allocated memory in order to emulate gaps. */
524
    /* Clear any newly allocated memory in order to emulate gaps. */
522
    memset(newdata + dentry->size, 0, delta);
525
    memset(newdata + dentry->size, 0, delta);
523
    dentry->size += delta;
526
    dentry->size += delta;
524
    dentry->data = newdata;
527
    dentry->data = newdata;
525
    (void) ipc_data_write_finalize(callid, dentry->data + pos, len);
528
    (void) ipc_data_write_finalize(callid, dentry->data + pos, len);
526
    ipc_answer_2(rid, EOK, len, dentry->size);
529
    ipc_answer_2(rid, EOK, len, dentry->size);
527
}
530
}
528
 
531
 
529
void tmpfs_truncate(ipc_callid_t rid, ipc_call_t *request)
532
void tmpfs_truncate(ipc_callid_t rid, ipc_call_t *request)
530
{
533
{
531
    dev_handle_t dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
534
    dev_handle_t dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
532
    fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request);
535
    fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request);
533
    size_t size = (off_t)IPC_GET_ARG3(*request);
536
    size_t size = (off_t)IPC_GET_ARG3(*request);
534
 
537
 
535
    /*
538
    /*
536
     * Lookup the respective dentry.
539
     * Lookup the respective dentry.
537
     */
540
     */
538
    link_t *hlp;
541
    link_t *hlp;
539
    unsigned long key = index;
542
    unsigned long key = index;
540
    hlp = hash_table_find(&dentries, &key);
543
    hlp = hash_table_find(&dentries, &key);
541
    if (!hlp) {
544
    if (!hlp) {
542
        ipc_answer_0(rid, ENOENT);
545
        ipc_answer_0(rid, ENOENT);
543
        return;
546
        return;
544
    }
547
    }
545
    tmpfs_dentry_t *dentry = hash_table_get_instance(hlp, tmpfs_dentry_t,
548
    tmpfs_dentry_t *dentry = hash_table_get_instance(hlp, tmpfs_dentry_t,
546
        dh_link);
549
        dh_link);
547
 
550
 
548
    if (size == dentry->size) {
551
    if (size == dentry->size) {
549
        ipc_answer_0(rid, EOK);
552
        ipc_answer_0(rid, EOK);
550
        return;
553
        return;
551
    }
554
    }
552
 
555
 
553
    void *newdata = realloc(dentry->data, size);
556
    void *newdata = realloc(dentry->data, size);
554
    if (!newdata) {
557
    if (!newdata) {
555
        ipc_answer_0(rid, ENOMEM);
558
        ipc_answer_0(rid, ENOMEM);
556
        return;
559
        return;
557
    }
560
    }
558
    if (size > dentry->size) {
561
    if (size > dentry->size) {
559
        size_t delta = size - dentry->size;
562
        size_t delta = size - dentry->size;
560
        memset(newdata + dentry->size, 0, delta);
563
        memset(newdata + dentry->size, 0, delta);
561
    }
564
    }
562
    dentry->size = size;
565
    dentry->size = size;
563
    dentry->data = newdata;
566
    dentry->data = newdata;
564
    ipc_answer_0(rid, EOK);
567
    ipc_answer_0(rid, EOK);
565
}
568
}
566
 
569
 
567
void tmpfs_destroy(ipc_callid_t rid, ipc_call_t *request)
570
void tmpfs_destroy(ipc_callid_t rid, ipc_call_t *request)
568
{
571
{
569
    dev_handle_t dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
572
    dev_handle_t dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
570
    fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request);
573
    fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request);
571
 
574
 
572
    link_t *hlp;
575
    link_t *hlp;
573
    unsigned long key = index;
576
    unsigned long key = index;
574
    hlp = hash_table_find(&dentries, &key);
577
    hlp = hash_table_find(&dentries, &key);
575
    if (!hlp) {
578
    if (!hlp) {
576
        ipc_answer_0(rid, ENOENT);
579
        ipc_answer_0(rid, ENOENT);
577
        return;
580
        return;
578
    }
581
    }
579
    tmpfs_dentry_t *dentry = hash_table_get_instance(hlp, tmpfs_dentry_t,
582
    tmpfs_dentry_t *dentry = hash_table_get_instance(hlp, tmpfs_dentry_t,
580
        dh_link);
583
        dh_link);
581
    tmpfs_destroy_node(dentry);
584
    tmpfs_destroy_node(dentry);
582
    ipc_answer_0(rid, EOK);
585
    ipc_answer_0(rid, EOK);
583
}
586
}
584
 
587
 
585
/**
588
/**
586
 * @}
589
 * @}
587
 */
590
 */
588
 
591