blob: 6689bf3c61b0ff21fd928551b117ea37a8125741 [file] [log] [blame]
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi2e6b6f22004-07-07 19:19:53 +00003 Copyright (C) 2001-2004 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00004
Miklos Szeredi8b39a9f2002-10-25 12:41:16 +00005 This program can be distributed under the terms of the GNU LGPL.
6 See the file COPYING.LIB
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00007*/
8
Miklos Szeredicb264512004-06-23 18:52:50 +00009#include <config.h>
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000010#include "fuse_i.h"
11#include <linux/fuse.h>
12
13#include <string.h>
Miklos Szeredi97c61e92001-11-07 12:09:43 +000014#include <stdlib.h>
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000015#include <unistd.h>
Miklos Szeredi97c61e92001-11-07 12:09:43 +000016#include <limits.h>
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000017#include <errno.h>
Miklos Szeredi019b4e92001-12-26 18:08:09 +000018#include <sys/param.h>
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000019
Miklos Szeredi97c61e92001-11-07 12:09:43 +000020#define FUSE_MAX_PATH 4096
Miklos Szeredi6bf8b682002-10-28 08:49:39 +000021#define PARAM(inarg) (((char *)(inarg)) + sizeof(*inarg))
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000022
Miklos Szeredi254d5ed2004-03-02 11:11:24 +000023#define ENTRY_REVALIDATE_TIME 1 /* sec */
24#define ATTR_REVALIDATE_TIME 1 /* sec */
25
Miklos Szeredic8ba2372002-12-10 12:26:00 +000026static const char *opname(enum fuse_opcode opcode)
27{
Miklos Szeredi7eafcce2004-06-19 22:42:38 +000028 switch (opcode) {
Miklos Szeredi3ed84232004-03-30 15:17:26 +000029 case FUSE_LOOKUP: return "LOOKUP";
30 case FUSE_FORGET: return "FORGET";
31 case FUSE_GETATTR: return "GETATTR";
32 case FUSE_SETATTR: return "SETATTR";
33 case FUSE_READLINK: return "READLINK";
34 case FUSE_SYMLINK: return "SYMLINK";
35 case FUSE_GETDIR: return "GETDIR";
36 case FUSE_MKNOD: return "MKNOD";
37 case FUSE_MKDIR: return "MKDIR";
38 case FUSE_UNLINK: return "UNLINK";
39 case FUSE_RMDIR: return "RMDIR";
40 case FUSE_RENAME: return "RENAME";
41 case FUSE_LINK: return "LINK";
42 case FUSE_OPEN: return "OPEN";
43 case FUSE_READ: return "READ";
44 case FUSE_WRITE: return "WRITE";
45 case FUSE_STATFS: return "STATFS";
Miklos Szeredi99f20742004-05-19 08:01:10 +000046 case FUSE_FLUSH: return "FLUSH";
Miklos Szeredi3ed84232004-03-30 15:17:26 +000047 case FUSE_RELEASE: return "RELEASE";
48 case FUSE_FSYNC: return "FSYNC";
49 case FUSE_SETXATTR: return "SETXATTR";
50 case FUSE_GETXATTR: return "GETXATTR";
51 case FUSE_LISTXATTR: return "LISTXATTR";
52 case FUSE_REMOVEXATTR: return "REMOVEXATTR";
Miklos Szeredi99f20742004-05-19 08:01:10 +000053 default: return "???";
Miklos Szeredic8ba2372002-12-10 12:26:00 +000054 }
55}
56
Miklos Szeredi99ddf0e2001-11-25 17:19:59 +000057
58static inline void dec_avail(struct fuse *f)
59{
60 pthread_mutex_lock(&f->lock);
61 f->numavail --;
62 pthread_mutex_unlock(&f->lock);
63}
64
Miklos Szeredi97c61e92001-11-07 12:09:43 +000065static struct node *__get_node(struct fuse *f, fino_t ino)
Miklos Szeredia181e612001-11-06 12:03:23 +000066{
Miklos Szeredi97c61e92001-11-07 12:09:43 +000067 size_t hash = ino % f->ino_table_size;
68 struct node *node;
69
Miklos Szeredi7eafcce2004-06-19 22:42:38 +000070 for (node = f->ino_table[hash]; node != NULL; node = node->ino_next)
71 if (node->ino == ino)
Miklos Szeredi97c61e92001-11-07 12:09:43 +000072 return node;
73
74 return NULL;
Miklos Szeredia181e612001-11-06 12:03:23 +000075}
76
Miklos Szeredi97c61e92001-11-07 12:09:43 +000077static struct node *get_node(struct fuse *f, fino_t ino)
Miklos Szeredia181e612001-11-06 12:03:23 +000078{
Miklos Szeredi97c61e92001-11-07 12:09:43 +000079 struct node *node = __get_node(f, ino);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +000080 if (node != NULL)
Miklos Szeredi97c61e92001-11-07 12:09:43 +000081 return node;
82
83 fprintf(stderr, "fuse internal error: inode %lu not found\n", ino);
84 abort();
Miklos Szeredia181e612001-11-06 12:03:23 +000085}
86
Miklos Szeredi76f65782004-02-19 16:55:40 +000087static void hash_ino(struct fuse *f, struct node *node)
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000088{
Miklos Szeredi76f65782004-02-19 16:55:40 +000089 size_t hash = node->ino % f->ino_table_size;
Miklos Szeredi97c61e92001-11-07 12:09:43 +000090 node->ino_next = f->ino_table[hash];
91 f->ino_table[hash] = node;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000092}
93
Miklos Szeredi97c61e92001-11-07 12:09:43 +000094static void unhash_ino(struct fuse *f, struct node *node)
Miklos Szeredi85c74fc2001-10-28 19:44:14 +000095{
Miklos Szeredi97c61e92001-11-07 12:09:43 +000096 size_t hash = node->ino % f->ino_table_size;
97 struct node **nodep = &f->ino_table[hash];
98
Miklos Szeredi7eafcce2004-06-19 22:42:38 +000099 for (; *nodep != NULL; nodep = &(*nodep)->ino_next)
100 if (*nodep == node) {
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000101 *nodep = node->ino_next;
102 return;
103 }
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000104}
105
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000106static fino_t next_ino(struct fuse *f)
107{
Miklos Szeredi76f65782004-02-19 16:55:40 +0000108 do {
109 f->ctr++;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000110 if (!f->ctr)
Miklos Szeredi76f65782004-02-19 16:55:40 +0000111 f->generation ++;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000112 } while (f->ctr == 0 || __get_node(f, f->ctr) != NULL);
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000113 return f->ctr;
114}
115
116static void free_node(struct node *node)
117{
118 free(node->name);
119 free(node);
120}
121
122static unsigned int name_hash(struct fuse *f, fino_t parent, const char *name)
123{
124 unsigned int hash = *name;
125
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000126 if (hash)
127 for (name += 1; *name != '\0'; name++)
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000128 hash = (hash << 5) - hash + *name;
129
130 return (hash + parent) % f->name_table_size;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000131}
132
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000133static struct node *__lookup_node(struct fuse *f, fino_t parent,
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000134 const char *name)
135{
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000136 size_t hash = name_hash(f, parent, name);
137 struct node *node;
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000138
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000139 for (node = f->name_table[hash]; node != NULL; node = node->name_next)
140 if (node->parent == parent && strcmp(node->name, name) == 0)
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000141 return node;
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000142
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000143 return NULL;
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000144}
145
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000146static struct node *lookup_node(struct fuse *f, fino_t parent,
147 const char *name)
148{
149 struct node *node;
150
151 pthread_mutex_lock(&f->lock);
152 node = __lookup_node(f, parent, name);
153 pthread_mutex_unlock(&f->lock);
154 if (node != NULL)
155 return node;
156
157 fprintf(stderr, "fuse internal error: node %lu/%s not found\n", parent,
158 name);
159 abort();
160}
161
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000162static void hash_name(struct fuse *f, struct node *node, fino_t parent,
Miklos Szeredia181e612001-11-06 12:03:23 +0000163 const char *name)
Miklos Szeredi5e183482001-10-31 14:52:35 +0000164{
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000165 size_t hash = name_hash(f, parent, name);
Miklos Szeredia181e612001-11-06 12:03:23 +0000166 node->parent = parent;
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000167 node->name = strdup(name);
168 node->name_next = f->name_table[hash];
169 f->name_table[hash] = node;
Miklos Szeredi5e183482001-10-31 14:52:35 +0000170}
171
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000172static void unhash_name(struct fuse *f, struct node *node)
Miklos Szeredia181e612001-11-06 12:03:23 +0000173{
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000174 if (node->name != NULL) {
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000175 size_t hash = name_hash(f, node->parent, node->name);
176 struct node **nodep = &f->name_table[hash];
177
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000178 for (; *nodep != NULL; nodep = &(*nodep)->name_next)
179 if (*nodep == node) {
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000180 *nodep = node->name_next;
181 node->name_next = NULL;
182 free(node->name);
183 node->name = NULL;
184 node->parent = 0;
185 return;
186 }
187 fprintf(stderr, "fuse internal error: unable to unhash node: %lu\n",
188 node->ino);
189 abort();
Miklos Szeredia181e612001-11-06 12:03:23 +0000190 }
191}
192
Miklos Szeredi76f65782004-02-19 16:55:40 +0000193static struct node *find_node(struct fuse *f, fino_t parent, char *name,
194 struct fuse_attr *attr, int version)
Miklos Szeredi5e183482001-10-31 14:52:35 +0000195{
196 struct node *node;
Miklos Szeredia181e612001-11-06 12:03:23 +0000197 int mode = attr->mode & S_IFMT;
198 int rdev = 0;
199
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000200 if (S_ISCHR(mode) || S_ISBLK(mode))
Miklos Szeredia181e612001-11-06 12:03:23 +0000201 rdev = attr->rdev;
Miklos Szeredi5e183482001-10-31 14:52:35 +0000202
Miklos Szeredia181e612001-11-06 12:03:23 +0000203 pthread_mutex_lock(&f->lock);
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000204 node = __lookup_node(f, parent, name);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000205 if (node != NULL) {
206 if (node->mode == mode && node->rdev == rdev)
Miklos Szeredia181e612001-11-06 12:03:23 +0000207 goto out;
208
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000209 unhash_name(f, node);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000210 }
211
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000212 node = (struct node *) calloc(1, sizeof(struct node));
Miklos Szeredia181e612001-11-06 12:03:23 +0000213 node->mode = mode;
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000214 node->rdev = rdev;
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000215 node->open_count = 0;
216 node->is_hidden = 0;
Miklos Szeredi76f65782004-02-19 16:55:40 +0000217 node->ino = next_ino(f);
218 node->generation = f->generation;
219 hash_ino(f, node);
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000220 hash_name(f, node, parent, name);
Miklos Szeredia181e612001-11-06 12:03:23 +0000221
222 out:
223 node->version = version;
224 pthread_mutex_unlock(&f->lock);
Miklos Szeredi76f65782004-02-19 16:55:40 +0000225 return node;
Miklos Szeredi5e183482001-10-31 14:52:35 +0000226}
227
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000228static char *add_name(char *buf, char *s, const char *name)
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000229{
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000230 size_t len = strlen(name);
231 s -= len;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000232 if (s <= buf) {
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000233 fprintf(stderr, "fuse: path too long: ...%s\n", s + len);
234 return NULL;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000235 }
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000236 strncpy(s, name, len);
237 s--;
238 *s = '/';
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000239
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000240 return s;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000241}
242
Miklos Szeredia181e612001-11-06 12:03:23 +0000243static char *get_path_name(struct fuse *f, fino_t ino, const char *name)
Miklos Szeredib483c932001-10-29 14:57:57 +0000244{
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000245 char buf[FUSE_MAX_PATH];
246 char *s = buf + FUSE_MAX_PATH - 1;
247 struct node *node;
Miklos Szeredi5e183482001-10-31 14:52:35 +0000248
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000249 *s = '\0';
Miklos Szeredia181e612001-11-06 12:03:23 +0000250
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000251 if (name != NULL) {
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000252 s = add_name(buf, s, name);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000253 if (s == NULL)
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000254 return NULL;
255 }
256
257 pthread_mutex_lock(&f->lock);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000258 for (node = get_node(f, ino); node->ino != FUSE_ROOT_INO;
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000259 node = get_node(f, node->parent)) {
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000260 if (node->name == NULL) {
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000261 s = NULL;
262 break;
263 }
264
265 s = add_name(buf, s, node->name);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000266 if (s == NULL)
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000267 break;
268 }
269 pthread_mutex_unlock(&f->lock);
270
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000271 if (s == NULL)
Miklos Szeredi5e183482001-10-31 14:52:35 +0000272 return NULL;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000273 else if (*s == '\0')
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000274 return strdup("/");
275 else
276 return strdup(s);
277}
Miklos Szeredia181e612001-11-06 12:03:23 +0000278
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000279static char *get_path(struct fuse *f, fino_t ino)
280{
281 return get_path_name(f, ino, NULL);
Miklos Szeredib483c932001-10-29 14:57:57 +0000282}
283
Miklos Szeredia181e612001-11-06 12:03:23 +0000284static void destroy_node(struct fuse *f, fino_t ino, int version)
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000285{
Miklos Szeredia181e612001-11-06 12:03:23 +0000286 struct node *node;
287
288 pthread_mutex_lock(&f->lock);
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000289 node = get_node(f, ino);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000290 if (node->version == version && ino != FUSE_ROOT_INO) {
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000291 unhash_name(f, node);
292 unhash_ino(f, node);
Miklos Szeredia181e612001-11-06 12:03:23 +0000293 free_node(node);
294 }
295 pthread_mutex_unlock(&f->lock);
296
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000297}
298
Miklos Szeredi5e183482001-10-31 14:52:35 +0000299static void remove_node(struct fuse *f, fino_t dir, const char *name)
300{
Miklos Szeredia181e612001-11-06 12:03:23 +0000301 struct node *node;
302
303 pthread_mutex_lock(&f->lock);
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000304 node = __lookup_node(f, dir, name);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000305 if (node == NULL) {
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000306 fprintf(stderr, "fuse internal error: unable to remove node %lu/%s\n",
307 dir, name);
308 abort();
309 }
310 unhash_name(f, node);
Miklos Szeredia181e612001-11-06 12:03:23 +0000311 pthread_mutex_unlock(&f->lock);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000312}
313
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000314static int rename_node(struct fuse *f, fino_t olddir, const char *oldname,
315 fino_t newdir, const char *newname, int hide)
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000316{
Miklos Szeredia181e612001-11-06 12:03:23 +0000317 struct node *node;
318 struct node *newnode;
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000319 int err = 0;
Miklos Szeredia181e612001-11-06 12:03:23 +0000320
321 pthread_mutex_lock(&f->lock);
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000322 node = __lookup_node(f, olddir, oldname);
323 newnode = __lookup_node(f, newdir, newname);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000324 if (node == NULL) {
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000325 fprintf(stderr, "fuse internal error: unable to rename node %lu/%s\n",
326 olddir, oldname);
327 abort();
328 }
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000329
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000330 if (newnode != NULL) {
331 if (hide) {
332 fprintf(stderr, "fuse: hidden file got created during hiding\n");
333 err = -1;
334 goto out;
335 }
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000336 unhash_name(f, newnode);
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000337 }
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000338
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000339 unhash_name(f, node);
340 hash_name(f, node, newdir, newname);
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000341 if (hide)
342 node->is_hidden = 1;
343
344 out:
Miklos Szeredia181e612001-11-06 12:03:23 +0000345 pthread_mutex_unlock(&f->lock);
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000346 return err;
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000347}
348
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000349static void convert_stat(struct stat *stbuf, struct fuse_attr *attr)
350{
Miklos Szeredib5958612004-02-20 14:10:49 +0000351 attr->mode = stbuf->st_mode;
352 attr->nlink = stbuf->st_nlink;
353 attr->uid = stbuf->st_uid;
354 attr->gid = stbuf->st_gid;
355 attr->rdev = stbuf->st_rdev;
356 attr->size = stbuf->st_size;
357 attr->blocks = stbuf->st_blocks;
358 attr->atime = stbuf->st_atime;
Miklos Szeredib5958612004-02-20 14:10:49 +0000359 attr->mtime = stbuf->st_mtime;
Miklos Szeredib5958612004-02-20 14:10:49 +0000360 attr->ctime = stbuf->st_ctime;
Miklos Szeredicb264512004-06-23 18:52:50 +0000361#ifdef HAVE_STRUCT_STAT_ST_ATIM
362 attr->atimensec = stbuf->st_atim.tv_nsec;
363 attr->mtimensec = stbuf->st_mtim.tv_nsec;
Miklos Szeredib5958612004-02-20 14:10:49 +0000364 attr->ctimensec = stbuf->st_ctim.tv_nsec;
Miklos Szeredicb264512004-06-23 18:52:50 +0000365#endif
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000366}
367
Miklos Szeredia181e612001-11-06 12:03:23 +0000368static int fill_dir(struct fuse_dirhandle *dh, char *name, int type)
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000369{
370 struct fuse_dirent dirent;
371 size_t reclen;
372 size_t res;
373
Miklos Szeredi43696432001-11-18 19:15:05 +0000374 dirent.ino = (unsigned long) -1;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000375 dirent.namelen = strlen(name);
376 strncpy(dirent.name, name, sizeof(dirent.name));
377 dirent.type = type;
378 reclen = FUSE_DIRENT_SIZE(&dirent);
379 res = fwrite(&dirent, reclen, 1, dh->fp);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000380 if (res == 0) {
Miklos Szeredi96249982001-11-21 12:21:19 +0000381 perror("fuse: writing directory file");
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000382 return -EIO;
383 }
384 return 0;
385}
386
Miklos Szeredi73798f92004-07-12 15:55:11 +0000387static int send_reply_raw(struct fuse *f, char *outbuf, size_t outsize,
388 int locked)
Miklos Szeredi43696432001-11-18 19:15:05 +0000389{
390 int res;
391
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000392 if ((f->flags & FUSE_DEBUG)) {
Miklos Szeredi43696432001-11-18 19:15:05 +0000393 struct fuse_out_header *out = (struct fuse_out_header *) outbuf;
394 printf(" unique: %i, error: %i (%s), outsize: %i\n", out->unique,
395 out->error, strerror(-out->error), outsize);
396 fflush(stdout);
397 }
Miklos Szeredi99ddf0e2001-11-25 17:19:59 +0000398
Miklos Szeredi4e71c9f2004-02-09 12:05:14 +0000399 /* This needs to be done before the reply, otherwise the scheduler
400 could play tricks with us, and only let the counter be increased
Miklos Szeredi99ddf0e2001-11-25 17:19:59 +0000401 long after the operation is done */
Miklos Szeredi73798f92004-07-12 15:55:11 +0000402 if (!locked)
403 pthread_mutex_lock(&f->lock);
404 f->numavail ++;
405 if (!locked)
406 pthread_mutex_unlock(&f->lock);
Miklos Szeredi99ddf0e2001-11-25 17:19:59 +0000407
Miklos Szeredi43696432001-11-18 19:15:05 +0000408 res = write(f->fd, outbuf, outsize);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000409 if (res == -1) {
Miklos Szeredi43696432001-11-18 19:15:05 +0000410 /* ENOENT means the operation was interrupted */
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000411 if (!f->exited && errno != ENOENT)
Miklos Szeredi96249982001-11-21 12:21:19 +0000412 perror("fuse: writing device");
Miklos Szeredi40b9a5a2002-12-10 16:09:02 +0000413 return -errno;
Miklos Szeredi43696432001-11-18 19:15:05 +0000414 }
Miklos Szeredi40b9a5a2002-12-10 16:09:02 +0000415 return 0;
Miklos Szeredi43696432001-11-18 19:15:05 +0000416}
417
Miklos Szeredi73798f92004-07-12 15:55:11 +0000418static int __send_reply(struct fuse *f, struct fuse_in_header *in, int error,
419 void *arg, size_t argsize, int locked)
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000420{
Miklos Szeredi40b9a5a2002-12-10 16:09:02 +0000421 int res;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000422 char *outbuf;
423 size_t outsize;
424 struct fuse_out_header *out;
425
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000426 if (error <= -1000 || error > 0) {
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000427 fprintf(stderr, "fuse: bad error value: %i\n", error);
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000428 error = -ERANGE;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000429 }
430
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000431 if (error)
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000432 argsize = 0;
433
434 outsize = sizeof(struct fuse_out_header) + argsize;
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000435 outbuf = (char *) malloc(outsize);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000436 out = (struct fuse_out_header *) outbuf;
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000437 memset(out, 0, sizeof(struct fuse_out_header));
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000438 out->unique = in->unique;
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000439 out->error = error;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000440 if (argsize != 0)
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000441 memcpy(outbuf + sizeof(struct fuse_out_header), arg, argsize);
442
Miklos Szeredi73798f92004-07-12 15:55:11 +0000443 res = send_reply_raw(f, outbuf, outsize, locked);
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000444 free(outbuf);
Miklos Szeredi40b9a5a2002-12-10 16:09:02 +0000445
446 return res;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000447}
448
Miklos Szeredi73798f92004-07-12 15:55:11 +0000449static int send_reply(struct fuse *f, struct fuse_in_header *in, int error,
450 void *arg, size_t argsize)
451{
452 return __send_reply(f, in, error, arg, argsize, 0);
453}
454
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000455static int is_open(struct fuse *f, fino_t dir, const char *name)
456{
457 struct node *node;
458 int isopen = 0;
459 pthread_mutex_lock(&f->lock);
460 node = __lookup_node(f, dir, name);
461 if (node && node->open_count > 0)
462 isopen = 1;
463 pthread_mutex_unlock(&f->lock);
464 return isopen;
465}
466
467static char *hidden_name(struct fuse *f, fino_t dir, const char *oldname,
468 char *newname, size_t bufsize)
469{
470 struct stat buf;
471 struct node *node;
472 struct node *newnode;
473 char *newpath;
474 int res;
475 int failctr = 10;
476
477 if (!f->op.getattr)
478 return NULL;
479
480 do {
481 node = lookup_node(f, dir, oldname);
482 pthread_mutex_lock(&f->lock);
483 do {
484 f->hidectr ++;
485 snprintf(newname, bufsize, ".fuse_hidden%08x%08x",
486 (unsigned int) node->ino, f->hidectr);
487 newnode = __lookup_node(f, dir, newname);
488 } while(newnode);
489 pthread_mutex_unlock(&f->lock);
490
491 newpath = get_path_name(f, dir, newname);
492 if (!newpath)
493 break;
494
495 res = f->op.getattr(newpath, &buf);
496 if (res != 0)
497 break;
498 free(newpath);
499 newpath = NULL;
500 } while(--failctr);
501
502 return newpath;
503}
504
505static int hide_node(struct fuse *f, const char *oldpath, fino_t dir,
506 const char *oldname)
507{
508 char newname[64];
509 char *newpath;
510 int err = -1;
511
512 if (!f->op.rename || !f->op.unlink)
513 return -EBUSY;
514
515 newpath = hidden_name(f, dir, oldname, newname, sizeof(newname));
516 if (newpath) {
517 err = f->op.rename(oldpath, newpath);
518 if (!err)
519 err = rename_node(f, dir, oldname, dir, newname, 1);
520 free(newpath);
521 }
522 if (err)
523 return -EBUSY;
524
525 return 0;
526}
527
Miklos Szeredi76f65782004-02-19 16:55:40 +0000528static int lookup_path(struct fuse *f, fino_t ino, int version, char *name,
Miklos Szeredi254d5ed2004-03-02 11:11:24 +0000529 const char *path, struct fuse_entry_out *arg)
Miklos Szeredi76f65782004-02-19 16:55:40 +0000530{
531 int res;
532 struct stat buf;
533
534 res = f->op.getattr(path, &buf);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000535 if (res == 0) {
Miklos Szeredi76f65782004-02-19 16:55:40 +0000536 struct node *node;
537
Miklos Szeredi254d5ed2004-03-02 11:11:24 +0000538 memset(arg, 0, sizeof(struct fuse_entry_out));
Miklos Szeredi76f65782004-02-19 16:55:40 +0000539 convert_stat(&buf, &arg->attr);
540 node = find_node(f, ino, name, &arg->attr, version);
541 arg->ino = node->ino;
542 arg->generation = node->generation;
Miklos Szeredi254d5ed2004-03-02 11:11:24 +0000543 arg->entry_valid = ENTRY_REVALIDATE_TIME;
544 arg->entry_valid_nsec = 0;
545 arg->attr_valid = ATTR_REVALIDATE_TIME;
546 arg->attr_valid_nsec = 0;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000547 if (f->flags & FUSE_DEBUG) {
Miklos Szeredi76f65782004-02-19 16:55:40 +0000548 printf(" INO: %li\n", arg->ino);
549 fflush(stdout);
550 }
551 }
552 return res;
553}
554
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000555static void do_lookup(struct fuse *f, struct fuse_in_header *in, char *name)
556{
557 int res;
Miklos Szeredi2778f6c2004-06-21 09:45:30 +0000558 int res2;
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000559 char *path;
Miklos Szeredi254d5ed2004-03-02 11:11:24 +0000560 struct fuse_entry_out arg;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000561
Miklos Szeredi5e183482001-10-31 14:52:35 +0000562 res = -ENOENT;
Miklos Szeredia181e612001-11-06 12:03:23 +0000563 path = get_path_name(f, in->ino, name);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000564 if (path != NULL) {
565 if (f->flags & FUSE_DEBUG) {
Miklos Szeredi6ebe2342002-01-06 21:44:16 +0000566 printf("LOOKUP %s\n", path);
567 fflush(stdout);
568 }
Miklos Szeredi5e183482001-10-31 14:52:35 +0000569 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000570 if (f->op.getattr)
Miklos Szeredi76f65782004-02-19 16:55:40 +0000571 res = lookup_path(f, in->ino, in->unique, name, path, &arg);
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000572 free(path);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000573 }
Miklos Szeredi2778f6c2004-06-21 09:45:30 +0000574 res2 = send_reply(f, in, res, &arg, sizeof(arg));
575 if (res == 0 && res2 == -ENOENT)
576 destroy_node(f, arg.ino, in->unique);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000577}
578
Miklos Szeredia181e612001-11-06 12:03:23 +0000579static void do_forget(struct fuse *f, struct fuse_in_header *in,
580 struct fuse_forget_in *arg)
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000581{
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000582 if (f->flags & FUSE_DEBUG) {
Miklos Szeredi43696432001-11-18 19:15:05 +0000583 printf("FORGET %li/%i\n", in->ino, arg->version);
584 fflush(stdout);
585 }
Miklos Szeredia181e612001-11-06 12:03:23 +0000586 destroy_node(f, in->ino, arg->version);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000587}
588
589static void do_getattr(struct fuse *f, struct fuse_in_header *in)
590{
591 int res;
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000592 char *path;
593 struct stat buf;
Miklos Szeredi254d5ed2004-03-02 11:11:24 +0000594 struct fuse_attr_out arg;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000595
Miklos Szeredi5e183482001-10-31 14:52:35 +0000596 res = -ENOENT;
Miklos Szeredia181e612001-11-06 12:03:23 +0000597 path = get_path(f, in->ino);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000598 if (path != NULL) {
Miklos Szeredi5e183482001-10-31 14:52:35 +0000599 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000600 if (f->op.getattr)
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000601 res = f->op.getattr(path, &buf);
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000602 free(path);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000603 }
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000604
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000605 if (res == 0) {
Miklos Szeredi254d5ed2004-03-02 11:11:24 +0000606 memset(&arg, 0, sizeof(struct fuse_attr_out));
607 arg.attr_valid = ATTR_REVALIDATE_TIME;
608 arg.attr_valid_nsec = 0;
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000609 convert_stat(&buf, &arg.attr);
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000610 }
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000611
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000612 send_reply(f, in, res, &arg, sizeof(arg));
613}
614
Miklos Szeredi680a69a2001-11-16 13:31:14 +0000615static int do_chmod(struct fuse *f, const char *path, struct fuse_attr *attr)
Miklos Szeredif3ea83b2001-11-07 14:55:16 +0000616{
617 int res;
618
619 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000620 if (f->op.chmod)
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000621 res = f->op.chmod(path, attr->mode);
Miklos Szeredif3ea83b2001-11-07 14:55:16 +0000622
623 return res;
624}
625
Miklos Szeredi680a69a2001-11-16 13:31:14 +0000626static int do_chown(struct fuse *f, const char *path, struct fuse_attr *attr,
Miklos Szeredi2e50d432001-12-20 12:17:25 +0000627 int valid)
Miklos Szeredif3ea83b2001-11-07 14:55:16 +0000628{
629 int res;
630 uid_t uid = (valid & FATTR_UID) ? attr->uid : (uid_t) -1;
631 gid_t gid = (valid & FATTR_GID) ? attr->gid : (gid_t) -1;
632
633 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000634 if (f->op.chown)
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000635 res = f->op.chown(path, uid, gid);
Miklos Szeredif3ea83b2001-11-07 14:55:16 +0000636
637 return res;
638}
639
Miklos Szeredi680a69a2001-11-16 13:31:14 +0000640static int do_truncate(struct fuse *f, const char *path,
641 struct fuse_attr *attr)
Miklos Szeredif3ea83b2001-11-07 14:55:16 +0000642{
643 int res;
644
645 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000646 if (f->op.truncate)
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000647 res = f->op.truncate(path, attr->size);
Miklos Szeredif3ea83b2001-11-07 14:55:16 +0000648
649 return res;
650}
651
Miklos Szeredi680a69a2001-11-16 13:31:14 +0000652static int do_utime(struct fuse *f, const char *path, struct fuse_attr *attr)
Miklos Szeredif3ea83b2001-11-07 14:55:16 +0000653{
654 int res;
655 struct utimbuf buf;
656 buf.actime = attr->atime;
657 buf.modtime = attr->mtime;
658 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000659 if (f->op.utime)
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000660 res = f->op.utime(path, &buf);
Miklos Szeredif3ea83b2001-11-07 14:55:16 +0000661
662 return res;
663}
664
Miklos Szeredi5e183482001-10-31 14:52:35 +0000665static void do_setattr(struct fuse *f, struct fuse_in_header *in,
666 struct fuse_setattr_in *arg)
667{
668 int res;
669 char *path;
670 int valid = arg->valid;
671 struct fuse_attr *attr = &arg->attr;
Miklos Szeredi254d5ed2004-03-02 11:11:24 +0000672 struct fuse_attr_out outarg;
Miklos Szeredi5e183482001-10-31 14:52:35 +0000673
674 res = -ENOENT;
Miklos Szeredia181e612001-11-06 12:03:23 +0000675 path = get_path(f, in->ino);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000676 if (path != NULL) {
Miklos Szeredif3ea83b2001-11-07 14:55:16 +0000677 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000678 if (f->op.getattr) {
Miklos Szeredif3ea83b2001-11-07 14:55:16 +0000679 res = 0;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000680 if (!res && (valid & FATTR_MODE))
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000681 res = do_chmod(f, path, attr);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000682 if (!res && (valid & (FATTR_UID | FATTR_GID)))
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000683 res = do_chown(f, path, attr, valid);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000684 if (!res && (valid & FATTR_SIZE))
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000685 res = do_truncate(f, path, attr);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000686 if (!res && (valid & (FATTR_ATIME | FATTR_MTIME)) ==
Miklos Szeredib5958612004-02-20 14:10:49 +0000687 (FATTR_ATIME | FATTR_MTIME))
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000688 res = do_utime(f, path, attr);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000689 if (!res) {
Miklos Szeredif3ea83b2001-11-07 14:55:16 +0000690 struct stat buf;
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000691 res = f->op.getattr(path, &buf);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000692 if (!res) {
Miklos Szeredi254d5ed2004-03-02 11:11:24 +0000693 memset(&outarg, 0, sizeof(struct fuse_attr_out));
694 outarg.attr_valid = ATTR_REVALIDATE_TIME;
695 outarg.attr_valid_nsec = 0;
Miklos Szeredif3ea83b2001-11-07 14:55:16 +0000696 convert_stat(&buf, &outarg.attr);
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000697 }
Miklos Szeredia181e612001-11-06 12:03:23 +0000698 }
Miklos Szeredi5e183482001-10-31 14:52:35 +0000699 }
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000700 free(path);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000701 }
Miklos Szeredia181e612001-11-06 12:03:23 +0000702 send_reply(f, in, res, &outarg, sizeof(outarg));
Miklos Szeredi5e183482001-10-31 14:52:35 +0000703}
704
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000705static void do_readlink(struct fuse *f, struct fuse_in_header *in)
706{
707 int res;
708 char link[PATH_MAX + 1];
Miklos Szeredib483c932001-10-29 14:57:57 +0000709 char *path;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000710
Miklos Szeredi5e183482001-10-31 14:52:35 +0000711 res = -ENOENT;
Miklos Szeredia181e612001-11-06 12:03:23 +0000712 path = get_path(f, in->ino);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000713 if (path != NULL) {
Miklos Szeredi5e183482001-10-31 14:52:35 +0000714 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000715 if (f->op.readlink)
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000716 res = f->op.readlink(path, link, sizeof(link));
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000717 free(path);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000718 }
Miklos Szeredi2df1c042001-11-06 15:07:17 +0000719 link[PATH_MAX] = '\0';
Miklos Szeredi4b2bef42002-01-09 12:23:27 +0000720 send_reply(f, in, res, link, res == 0 ? strlen(link) : 0);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000721}
722
723static void do_getdir(struct fuse *f, struct fuse_in_header *in)
724{
725 int res;
726 struct fuse_getdir_out arg;
Miklos Szeredia181e612001-11-06 12:03:23 +0000727 struct fuse_dirhandle dh;
Miklos Szeredib483c932001-10-29 14:57:57 +0000728 char *path;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000729
Miklos Szeredib483c932001-10-29 14:57:57 +0000730 dh.fuse = f;
731 dh.fp = tmpfile();
732 dh.dir = in->ino;
Miklos Szeredi5e183482001-10-31 14:52:35 +0000733 res = -ENOENT;
Miklos Szeredia181e612001-11-06 12:03:23 +0000734 path = get_path(f, in->ino);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000735 if (path != NULL) {
Miklos Szeredi5e183482001-10-31 14:52:35 +0000736 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000737 if (f->op.getdir)
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000738 res = f->op.getdir(path, &dh, (fuse_dirfil_t) fill_dir);
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000739 free(path);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000740 }
Miklos Szeredib483c932001-10-29 14:57:57 +0000741 fflush(dh.fp);
Miklos Szeredi0f48a262002-12-05 14:23:01 +0000742
743 memset(&arg, 0, sizeof(struct fuse_getdir_out));
Miklos Szeredib483c932001-10-29 14:57:57 +0000744 arg.fd = fileno(dh.fp);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000745 send_reply(f, in, res, &arg, sizeof(arg));
Miklos Szeredib483c932001-10-29 14:57:57 +0000746 fclose(dh.fp);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +0000747}
748
Miklos Szeredib483c932001-10-29 14:57:57 +0000749static void do_mknod(struct fuse *f, struct fuse_in_header *in,
750 struct fuse_mknod_in *inarg)
751{
752 int res;
Miklos Szeredi2778f6c2004-06-21 09:45:30 +0000753 int res2;
Miklos Szeredib483c932001-10-29 14:57:57 +0000754 char *path;
Miklos Szeredi76f65782004-02-19 16:55:40 +0000755 char *name = PARAM(inarg);
Miklos Szeredi254d5ed2004-03-02 11:11:24 +0000756 struct fuse_entry_out outarg;
Miklos Szeredib483c932001-10-29 14:57:57 +0000757
Miklos Szeredi5e183482001-10-31 14:52:35 +0000758 res = -ENOENT;
Miklos Szeredi76f65782004-02-19 16:55:40 +0000759 path = get_path_name(f, in->ino, name);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000760 if (path != NULL) {
761 if (f->flags & FUSE_DEBUG) {
Miklos Szeredi76f65782004-02-19 16:55:40 +0000762 printf("MKNOD %s\n", path);
763 fflush(stdout);
764 }
Miklos Szeredi5e183482001-10-31 14:52:35 +0000765 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000766 if (f->op.mknod && f->op.getattr) {
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000767 res = f->op.mknod(path, inarg->mode, inarg->rdev);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000768 if (res == 0)
Miklos Szeredi76f65782004-02-19 16:55:40 +0000769 res = lookup_path(f, in->ino, in->unique, name, path, &outarg);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000770 }
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000771 free(path);
Miklos Szeredib483c932001-10-29 14:57:57 +0000772 }
Miklos Szeredi2778f6c2004-06-21 09:45:30 +0000773 res2 = send_reply(f, in, res, &outarg, sizeof(outarg));
774 if (res == 0 && res2 == -ENOENT)
775 destroy_node(f, outarg.ino, in->unique);
Miklos Szeredib483c932001-10-29 14:57:57 +0000776}
777
778static void do_mkdir(struct fuse *f, struct fuse_in_header *in,
779 struct fuse_mkdir_in *inarg)
780{
781 int res;
Miklos Szeredi2778f6c2004-06-21 09:45:30 +0000782 int res2;
Miklos Szeredib483c932001-10-29 14:57:57 +0000783 char *path;
Miklos Szeredi76f65782004-02-19 16:55:40 +0000784 char *name = PARAM(inarg);
Miklos Szeredi254d5ed2004-03-02 11:11:24 +0000785 struct fuse_entry_out outarg;
Miklos Szeredib483c932001-10-29 14:57:57 +0000786
Miklos Szeredi5e183482001-10-31 14:52:35 +0000787 res = -ENOENT;
Miklos Szeredi76f65782004-02-19 16:55:40 +0000788 path = get_path_name(f, in->ino, name);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000789 if (path != NULL) {
790 if (f->flags & FUSE_DEBUG) {
Miklos Szeredi76f65782004-02-19 16:55:40 +0000791 printf("MKDIR %s\n", path);
792 fflush(stdout);
793 }
Miklos Szeredi5e183482001-10-31 14:52:35 +0000794 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000795 if (f->op.mkdir && f->op.getattr) {
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000796 res = f->op.mkdir(path, inarg->mode);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000797 if (res == 0)
Miklos Szeredi76f65782004-02-19 16:55:40 +0000798 res = lookup_path(f, in->ino, in->unique, name, path, &outarg);
799 }
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000800 free(path);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000801 }
Miklos Szeredi2778f6c2004-06-21 09:45:30 +0000802 res2 = send_reply(f, in, res, &outarg, sizeof(outarg));
803 if (res == 0 && res2 == -ENOENT)
804 destroy_node(f, outarg.ino, in->unique);
Miklos Szeredib483c932001-10-29 14:57:57 +0000805}
806
Miklos Szeredib5958612004-02-20 14:10:49 +0000807static void do_unlink(struct fuse *f, struct fuse_in_header *in, char *name)
Miklos Szeredib483c932001-10-29 14:57:57 +0000808{
809 int res;
810 char *path;
811
Miklos Szeredi5e183482001-10-31 14:52:35 +0000812 res = -ENOENT;
Miklos Szeredia181e612001-11-06 12:03:23 +0000813 path = get_path_name(f, in->ino, name);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000814 if (path != NULL) {
Miklos Szeredi5e183482001-10-31 14:52:35 +0000815 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000816 if (f->op.unlink) {
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000817 if (is_open(f, in->ino, name))
818 res = hide_node(f, path, in->ino, name);
819 else {
820 res = f->op.unlink(path);
821 if (res == 0)
822 remove_node(f, in->ino, name);
823 }
Miklos Szeredi5e183482001-10-31 14:52:35 +0000824 }
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000825 free(path);
Miklos Szeredib483c932001-10-29 14:57:57 +0000826 }
Miklos Szeredib5958612004-02-20 14:10:49 +0000827 send_reply(f, in, res, NULL, 0);
828}
829
830static void do_rmdir(struct fuse *f, struct fuse_in_header *in, char *name)
831{
832 int res;
833 char *path;
834
835 res = -ENOENT;
836 path = get_path_name(f, in->ino, name);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000837 if (path != NULL) {
Miklos Szeredib5958612004-02-20 14:10:49 +0000838 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000839 if (f->op.rmdir) {
Miklos Szeredib5958612004-02-20 14:10:49 +0000840 res = f->op.rmdir(path);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000841 if (res == 0)
Miklos Szeredib5958612004-02-20 14:10:49 +0000842 remove_node(f, in->ino, name);
843 }
844 free(path);
845 }
Miklos Szeredib483c932001-10-29 14:57:57 +0000846 send_reply(f, in, res, NULL, 0);
847}
848
849static void do_symlink(struct fuse *f, struct fuse_in_header *in, char *name,
850 char *link)
851{
852 int res;
Miklos Szeredi2778f6c2004-06-21 09:45:30 +0000853 int res2;
Miklos Szeredib483c932001-10-29 14:57:57 +0000854 char *path;
Miklos Szeredi254d5ed2004-03-02 11:11:24 +0000855 struct fuse_entry_out outarg;
Miklos Szeredib483c932001-10-29 14:57:57 +0000856
Miklos Szeredi5e183482001-10-31 14:52:35 +0000857 res = -ENOENT;
Miklos Szeredia181e612001-11-06 12:03:23 +0000858 path = get_path_name(f, in->ino, name);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000859 if (path != NULL) {
860 if (f->flags & FUSE_DEBUG) {
Miklos Szeredi76f65782004-02-19 16:55:40 +0000861 printf("SYMLINK %s\n", path);
862 fflush(stdout);
863 }
Miklos Szeredi5e183482001-10-31 14:52:35 +0000864 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000865 if (f->op.symlink && f->op.getattr) {
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000866 res = f->op.symlink(link, path);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000867 if (res == 0)
Miklos Szeredi76f65782004-02-19 16:55:40 +0000868 res = lookup_path(f, in->ino, in->unique, name, path, &outarg);
869 }
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000870 free(path);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000871 }
Miklos Szeredi2778f6c2004-06-21 09:45:30 +0000872 res2 = send_reply(f, in, res, &outarg, sizeof(outarg));
873 if (res == 0 && res2 == -ENOENT)
874 destroy_node(f, outarg.ino, in->unique);
875
Miklos Szeredib483c932001-10-29 14:57:57 +0000876}
877
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000878static void do_rename(struct fuse *f, struct fuse_in_header *in,
879 struct fuse_rename_in *inarg)
880{
881 int res;
882 fino_t olddir = in->ino;
883 fino_t newdir = inarg->newdir;
Miklos Szeredi6bf8b682002-10-28 08:49:39 +0000884 char *oldname = PARAM(inarg);
885 char *newname = oldname + strlen(oldname) + 1;
Miklos Szeredi5e183482001-10-31 14:52:35 +0000886 char *oldpath;
887 char *newpath;
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000888
Miklos Szeredi5e183482001-10-31 14:52:35 +0000889 res = -ENOENT;
Miklos Szeredia181e612001-11-06 12:03:23 +0000890 oldpath = get_path_name(f, olddir, oldname);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000891 if (oldpath != NULL) {
Miklos Szeredia181e612001-11-06 12:03:23 +0000892 newpath = get_path_name(f, newdir, newname);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000893 if (newpath != NULL) {
Miklos Szeredi5e183482001-10-31 14:52:35 +0000894 res = -ENOSYS;
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000895 if (f->op.rename) {
896 res = 0;
897 if (is_open(f, newdir, newname))
898 res = hide_node(f, newpath, newdir, newname);
899 if (res == 0) {
900 res = f->op.rename(oldpath, newpath);
901 if (res == 0)
902 rename_node(f, olddir, oldname, newdir, newname, 0);
903 }
904 }
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000905 free(newpath);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000906 }
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000907 free(oldpath);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000908 }
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000909 send_reply(f, in, res, NULL, 0);
910}
911
912static void do_link(struct fuse *f, struct fuse_in_header *in,
Miklos Szeredi5e183482001-10-31 14:52:35 +0000913 struct fuse_link_in *arg)
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000914{
915 int res;
Miklos Szeredi2778f6c2004-06-21 09:45:30 +0000916 int res2;
Miklos Szeredi5e183482001-10-31 14:52:35 +0000917 char *oldpath;
918 char *newpath;
Miklos Szeredi76f65782004-02-19 16:55:40 +0000919 char *name = PARAM(arg);
Miklos Szeredi254d5ed2004-03-02 11:11:24 +0000920 struct fuse_entry_out outarg;
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000921
Miklos Szeredi5e183482001-10-31 14:52:35 +0000922 res = -ENOENT;
Miklos Szeredia181e612001-11-06 12:03:23 +0000923 oldpath = get_path(f, in->ino);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000924 if (oldpath != NULL) {
Miklos Szeredi76f65782004-02-19 16:55:40 +0000925 newpath = get_path_name(f, arg->newdir, name);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000926 if (newpath != NULL) {
927 if (f->flags & FUSE_DEBUG) {
Miklos Szeredi76f65782004-02-19 16:55:40 +0000928 printf("LINK %s\n", newpath);
929 fflush(stdout);
930 }
Miklos Szeredi5e183482001-10-31 14:52:35 +0000931 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000932 if (f->op.link && f->op.getattr) {
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000933 res = f->op.link(oldpath, newpath);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000934 if (res == 0)
Miklos Szeredi76f65782004-02-19 16:55:40 +0000935 res = lookup_path(f, arg->newdir, in->unique, name,
936 newpath, &outarg);
937 }
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000938 free(newpath);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000939 }
Miklos Szeredi97c61e92001-11-07 12:09:43 +0000940 free(oldpath);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000941 }
Miklos Szeredi2778f6c2004-06-21 09:45:30 +0000942 res2 = send_reply(f, in, res, &outarg, sizeof(outarg));
943 if (res == 0 && res2 == -ENOENT)
944 destroy_node(f, outarg.ino, in->unique);
Miklos Szeredi19dff1b2001-10-30 15:06:52 +0000945}
946
Miklos Szeredi5e183482001-10-31 14:52:35 +0000947static void do_open(struct fuse *f, struct fuse_in_header *in,
948 struct fuse_open_in *arg)
949{
950 int res;
951 char *path;
952
953 res = -ENOENT;
Miklos Szeredia181e612001-11-06 12:03:23 +0000954 path = get_path(f, in->ino);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000955 if (path != NULL) {
Miklos Szeredi5e183482001-10-31 14:52:35 +0000956 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000957 if (f->op.open)
Miklos Szeredi0a7077f2001-11-11 18:20:17 +0000958 res = f->op.open(path, arg->flags);
Miklos Szeredi40b9a5a2002-12-10 16:09:02 +0000959 }
Miklos Szeredi73798f92004-07-12 15:55:11 +0000960 if (res == 0) {
961 int res2;
962
963 /* If the request is interrupted the lock must be held until
964 the cancellation is finished. Otherwise there could be
965 races with rename/unlink, against which the kernel can't
966 protect */
967 pthread_mutex_lock(&f->lock);
968 res2 = __send_reply(f, in, res, NULL, 0, 1);
Miklos Szeredi1ea9c962004-06-24 21:00:00 +0000969 if(res2 == -ENOENT) {
970 /* The open syscall was interrupted, so it must be cancelled */
971 if(f->op.release)
972 f->op.release(path, arg->flags);
Miklos Szeredi73798f92004-07-12 15:55:11 +0000973 } else
974 get_node(f, in->ino)->open_count ++;
975 pthread_mutex_unlock(&f->lock);
976
977 } else
978 send_reply(f, in, res, NULL, 0);
979
Miklos Szeredi9a31cca2004-06-26 21:11:25 +0000980 if (path)
981 free(path);
Miklos Szeredi5e183482001-10-31 14:52:35 +0000982}
983
Miklos Szeredie2e4ac22004-05-18 08:45:28 +0000984static void do_flush(struct fuse *f, struct fuse_in_header *in)
985{
986 char *path;
987 int res;
988
989 res = -ENOENT;
990 path = get_path(f, in->ino);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000991 if (path != NULL) {
Miklos Szeredie2e4ac22004-05-18 08:45:28 +0000992 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +0000993 if (f->op.flush)
Miklos Szeredie2e4ac22004-05-18 08:45:28 +0000994 res = f->op.flush(path);
995 free(path);
996 }
997 send_reply(f, in, res, NULL, 0);
998}
999
Miklos Szeredi9478e862002-12-11 09:50:26 +00001000static void do_release(struct fuse *f, struct fuse_in_header *in,
1001 struct fuse_open_in *arg)
Miklos Szeredic8ba2372002-12-10 12:26:00 +00001002{
Miklos Szeredi1ea9c962004-06-24 21:00:00 +00001003 struct node *node;
1004 char *path;
Miklos Szeredic8ba2372002-12-10 12:26:00 +00001005
Miklos Szeredi1ea9c962004-06-24 21:00:00 +00001006 pthread_mutex_lock(&f->lock);
1007 node = get_node(f, in->ino);
1008 --node->open_count;
1009 pthread_mutex_unlock(&f->lock);
1010
1011 path = get_path(f, in->ino);
1012 if (path != NULL) {
1013 if (f->op.release)
Miklos Szeredib3210582004-06-23 13:54:33 +00001014 f->op.release(path, arg->flags);
Miklos Szeredi1ea9c962004-06-24 21:00:00 +00001015
1016 if(node->is_hidden && node->open_count == 0)
1017 /* can now clean up this hidden file */
1018 f->op.unlink(path);
1019
1020 free(path);
Miklos Szeredic8ba2372002-12-10 12:26:00 +00001021 }
Miklos Szeredi556d03d2004-06-30 11:13:41 +00001022 send_reply(f, in, 0, NULL, 0);
Miklos Szeredic8ba2372002-12-10 12:26:00 +00001023}
1024
Miklos Szeredi5e183482001-10-31 14:52:35 +00001025static void do_read(struct fuse *f, struct fuse_in_header *in,
1026 struct fuse_read_in *arg)
1027{
1028 int res;
1029 char *path;
Miklos Szeredi43696432001-11-18 19:15:05 +00001030 char *outbuf = (char *) malloc(sizeof(struct fuse_out_header) + arg->size);
1031 struct fuse_out_header *out = (struct fuse_out_header *) outbuf;
1032 char *buf = outbuf + sizeof(struct fuse_out_header);
Miklos Szeredi5e183482001-10-31 14:52:35 +00001033 size_t size;
Miklos Szeredi43696432001-11-18 19:15:05 +00001034 size_t outsize;
Miklos Szeredi5e183482001-10-31 14:52:35 +00001035
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001036 res = -ENOENT;
Miklos Szeredia181e612001-11-06 12:03:23 +00001037 path = get_path(f, in->ino);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001038 if (path != NULL) {
1039 if (f->flags & FUSE_DEBUG) {
Miklos Szeredi6ebe2342002-01-06 21:44:16 +00001040 printf("READ %u bytes from %llu\n", arg->size, arg->offset);
1041 fflush(stdout);
1042 }
1043
Miklos Szeredi5e183482001-10-31 14:52:35 +00001044 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001045 if (f->op.read)
Miklos Szeredi0a7077f2001-11-11 18:20:17 +00001046 res = f->op.read(path, buf, arg->size, arg->offset);
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001047 free(path);
Miklos Szeredi5e183482001-10-31 14:52:35 +00001048 }
1049
1050 size = 0;
Miklos Szeredi25385bb2004-07-06 22:27:36 +00001051 if (res >= 0) {
Miklos Szeredi5e183482001-10-31 14:52:35 +00001052 size = res;
1053 res = 0;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001054 if (f->flags & FUSE_DEBUG) {
Miklos Szeredi6ebe2342002-01-06 21:44:16 +00001055 printf(" READ %u bytes\n", size);
1056 fflush(stdout);
1057 }
Miklos Szeredi5e183482001-10-31 14:52:35 +00001058 }
Miklos Szeredi0f48a262002-12-05 14:23:01 +00001059 memset(out, 0, sizeof(struct fuse_out_header));
Miklos Szeredi43696432001-11-18 19:15:05 +00001060 out->unique = in->unique;
1061 out->error = res;
1062 outsize = sizeof(struct fuse_out_header) + size;
1063
Miklos Szeredi73798f92004-07-12 15:55:11 +00001064 send_reply_raw(f, outbuf, outsize, 0);
Miklos Szeredi43696432001-11-18 19:15:05 +00001065 free(outbuf);
Miklos Szeredi5e183482001-10-31 14:52:35 +00001066}
Miklos Szeredib483c932001-10-29 14:57:57 +00001067
Miklos Szeredia181e612001-11-06 12:03:23 +00001068static void do_write(struct fuse *f, struct fuse_in_header *in,
1069 struct fuse_write_in *arg)
1070{
1071 int res;
1072 char *path;
Miklos Szerediad051c32004-07-02 09:22:50 +00001073 struct fuse_write_out outarg;
Miklos Szeredia181e612001-11-06 12:03:23 +00001074
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001075 res = -ENOENT;
Miklos Szeredia181e612001-11-06 12:03:23 +00001076 path = get_path(f, in->ino);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001077 if (path != NULL) {
1078 if (f->flags & FUSE_DEBUG) {
Miklos Szeredi6ebe2342002-01-06 21:44:16 +00001079 printf("WRITE %u bytes to %llu\n", arg->size, arg->offset);
1080 fflush(stdout);
1081 }
1082
Miklos Szeredia181e612001-11-06 12:03:23 +00001083 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001084 if (f->op.write)
Miklos Szeredi6bf8b682002-10-28 08:49:39 +00001085 res = f->op.write(path, PARAM(arg), arg->size, arg->offset);
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001086 free(path);
Miklos Szeredia181e612001-11-06 12:03:23 +00001087 }
1088
Miklos Szerediad051c32004-07-02 09:22:50 +00001089 if (res >= 0) {
1090 outarg.size = res;
1091 res = 0;
Miklos Szeredia181e612001-11-06 12:03:23 +00001092 }
1093
Miklos Szerediad051c32004-07-02 09:22:50 +00001094 send_reply(f, in, res, &outarg, sizeof(outarg));
Miklos Szeredia181e612001-11-06 12:03:23 +00001095}
1096
Miklos Szeredi77f39942004-03-25 11:17:52 +00001097static int default_statfs(struct statfs *buf)
1098{
1099 buf->f_namelen = 255;
1100 buf->f_bsize = 512;
1101 return 0;
1102}
1103
Miklos Szeredi18e75e42004-02-19 14:23:27 +00001104static void convert_statfs(struct statfs *statfs, struct fuse_kstatfs *kstatfs)
1105{
1106 kstatfs->bsize = statfs->f_bsize;
1107 kstatfs->blocks = statfs->f_blocks;
1108 kstatfs->bfree = statfs->f_bfree;
1109 kstatfs->bavail = statfs->f_bavail;
1110 kstatfs->files = statfs->f_files;
1111 kstatfs->ffree = statfs->f_ffree;
1112 kstatfs->namelen = statfs->f_namelen;
1113}
1114
Mark Glinesd84b39a2002-01-07 16:32:02 +00001115static void do_statfs(struct fuse *f, struct fuse_in_header *in)
1116{
1117 int res;
Mark Glinesd84b39a2002-01-07 16:32:02 +00001118 struct fuse_statfs_out arg;
Miklos Szeredi18e75e42004-02-19 14:23:27 +00001119 struct statfs buf;
Mark Glinesd84b39a2002-01-07 16:32:02 +00001120
Miklos Szeredi77f39942004-03-25 11:17:52 +00001121 memset(&buf, 0, sizeof(struct statfs));
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001122 if (f->op.statfs)
Miklos Szeredi18e75e42004-02-19 14:23:27 +00001123 res = f->op.statfs("/", &buf);
Miklos Szeredi77f39942004-03-25 11:17:52 +00001124 else
1125 res = default_statfs(&buf);
1126
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001127 if (res == 0)
Miklos Szeredi77f39942004-03-25 11:17:52 +00001128 convert_statfs(&buf, &arg.st);
Miklos Szeredi4b2bef42002-01-09 12:23:27 +00001129
Mark Glinesd84b39a2002-01-07 16:32:02 +00001130 send_reply(f, in, res, &arg, sizeof(arg));
1131}
1132
Miklos Szeredi5e43f2c2003-12-12 14:06:41 +00001133static void do_fsync(struct fuse *f, struct fuse_in_header *in,
1134 struct fuse_fsync_in *inarg)
1135{
1136 int res;
1137 char *path;
1138
1139 res = -ENOENT;
1140 path = get_path(f, in->ino);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001141 if (path != NULL) {
Miklos Szeredi63b8c1c2004-06-03 14:45:04 +00001142 res = -ENOSYS;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001143 if (f->op.fsync)
Miklos Szeredi5e43f2c2003-12-12 14:06:41 +00001144 res = f->op.fsync(path, inarg->datasync);
1145 free(path);
1146 }
1147 send_reply(f, in, res, NULL, 0);
1148}
1149
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001150static void do_setxattr(struct fuse *f, struct fuse_in_header *in,
1151 struct fuse_setxattr_in *arg)
1152{
1153 int res;
1154 char *path;
1155 char *name = PARAM(arg);
1156 unsigned char *value = name + strlen(name) + 1;
1157
1158 res = -ENOENT;
1159 path = get_path(f, in->ino);
1160 if (path != NULL) {
Miklos Szeredi63b8c1c2004-06-03 14:45:04 +00001161 res = -ENOSYS;
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001162 if (f->op.setxattr)
1163 res = f->op.setxattr(path, name, value, arg->size, arg->flags);
1164 free(path);
1165 }
1166 send_reply(f, in, res, NULL, 0);
1167}
1168
Miklos Szeredi03cebae2004-03-31 10:19:18 +00001169static int common_getxattr(struct fuse *f, struct fuse_in_header *in,
1170 const char *name, char *value, size_t size)
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001171{
1172 int res;
1173 char *path;
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001174
1175 res = -ENOENT;
1176 path = get_path(f, in->ino);
1177 if (path != NULL) {
Miklos Szeredi63b8c1c2004-06-03 14:45:04 +00001178 res = -ENOSYS;
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001179 if (f->op.getxattr)
Miklos Szeredi03cebae2004-03-31 10:19:18 +00001180 res = f->op.getxattr(path, name, value, size);
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001181 free(path);
1182 }
Miklos Szeredi03cebae2004-03-31 10:19:18 +00001183 return res;
1184}
1185
1186static void do_getxattr_read(struct fuse *f, struct fuse_in_header *in,
1187 const char *name, size_t size)
1188{
1189 int res;
1190 char *outbuf = (char *) malloc(sizeof(struct fuse_out_header) + size);
1191 struct fuse_out_header *out = (struct fuse_out_header *) outbuf;
1192 char *value = outbuf + sizeof(struct fuse_out_header);
1193
1194 res = common_getxattr(f, in, name, value, size);
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001195 size = 0;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001196 if (res > 0) {
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001197 size = res;
1198 res = 0;
1199 }
1200 memset(out, 0, sizeof(struct fuse_out_header));
1201 out->unique = in->unique;
1202 out->error = res;
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001203
Miklos Szeredi73798f92004-07-12 15:55:11 +00001204 send_reply_raw(f, outbuf, sizeof(struct fuse_out_header) + size, 0);
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001205 free(outbuf);
1206}
1207
Miklos Szeredi03cebae2004-03-31 10:19:18 +00001208static void do_getxattr_size(struct fuse *f, struct fuse_in_header *in,
1209 const char *name)
1210{
1211 int res;
1212 struct fuse_getxattr_out arg;
1213
1214 res = common_getxattr(f, in, name, NULL, 0);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001215 if (res >= 0) {
Miklos Szeredi03cebae2004-03-31 10:19:18 +00001216 arg.size = res;
1217 res = 0;
1218 }
1219 send_reply(f, in, res, &arg, sizeof(arg));
1220}
1221
1222static void do_getxattr(struct fuse *f, struct fuse_in_header *in,
1223 struct fuse_getxattr_in *arg)
1224{
1225 char *name = PARAM(arg);
1226
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001227 if (arg->size)
Miklos Szeredi03cebae2004-03-31 10:19:18 +00001228 do_getxattr_read(f, in, name, arg->size);
1229 else
1230 do_getxattr_size(f, in, name);
1231}
1232
1233static int common_listxattr(struct fuse *f, struct fuse_in_header *in,
1234 char *list, size_t size)
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001235{
1236 int res;
1237 char *path;
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001238
1239 res = -ENOENT;
1240 path = get_path(f, in->ino);
1241 if (path != NULL) {
Miklos Szeredi63b8c1c2004-06-03 14:45:04 +00001242 res = -ENOSYS;
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001243 if (f->op.listxattr)
Miklos Szeredi03cebae2004-03-31 10:19:18 +00001244 res = f->op.listxattr(path, list, size);
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001245 free(path);
1246 }
Miklos Szeredi03cebae2004-03-31 10:19:18 +00001247 return res;
1248}
1249
1250static void do_listxattr_read(struct fuse *f, struct fuse_in_header *in,
1251 size_t size)
1252{
1253 int res;
1254 char *outbuf = (char *) malloc(sizeof(struct fuse_out_header) + size);
1255 struct fuse_out_header *out = (struct fuse_out_header *) outbuf;
1256 char *list = outbuf + sizeof(struct fuse_out_header);
1257
1258 res = common_listxattr(f, in, list, size);
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001259 size = 0;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001260 if (res > 0) {
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001261 size = res;
1262 res = 0;
1263 }
1264 memset(out, 0, sizeof(struct fuse_out_header));
1265 out->unique = in->unique;
1266 out->error = res;
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001267
Miklos Szeredi73798f92004-07-12 15:55:11 +00001268 send_reply_raw(f, outbuf, sizeof(struct fuse_out_header) + size, 0);
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001269 free(outbuf);
1270}
1271
Miklos Szeredi03cebae2004-03-31 10:19:18 +00001272static void do_listxattr_size(struct fuse *f, struct fuse_in_header *in)
1273{
1274 int res;
1275 struct fuse_getxattr_out arg;
1276
1277 res = common_listxattr(f, in, NULL, 0);
1278 if (res >= 0) {
1279 arg.size = res;
1280 res = 0;
1281 }
1282 send_reply(f, in, res, &arg, sizeof(arg));
1283}
1284
1285static void do_listxattr(struct fuse *f, struct fuse_in_header *in,
1286 struct fuse_getxattr_in *arg)
1287{
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001288 if (arg->size)
Miklos Szeredi03cebae2004-03-31 10:19:18 +00001289 do_listxattr_read(f, in, arg->size);
1290 else
1291 do_listxattr_size(f, in);
1292}
1293
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001294static void do_removexattr(struct fuse *f, struct fuse_in_header *in,
1295 char *name)
1296{
1297 int res;
1298 char *path;
1299
1300 res = -ENOENT;
1301 path = get_path(f, in->ino);
1302 if (path != NULL) {
Miklos Szeredi63b8c1c2004-06-03 14:45:04 +00001303 res = -ENOSYS;
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001304 if (f->op.removexattr)
1305 res = f->op.removexattr(path, name);
1306 free(path);
1307 }
1308 send_reply(f, in, res, NULL, 0);
1309}
1310
1311
Miklos Szeredi43696432001-11-18 19:15:05 +00001312static void free_cmd(struct fuse_cmd *cmd)
1313{
1314 free(cmd->buf);
1315 free(cmd);
1316}
1317
Miklos Szeredifff56ab2001-11-16 10:12:59 +00001318void __fuse_process_cmd(struct fuse *f, struct fuse_cmd *cmd)
Miklos Szeredia181e612001-11-06 12:03:23 +00001319{
Miklos Szeredia181e612001-11-06 12:03:23 +00001320 struct fuse_in_header *in = (struct fuse_in_header *) cmd->buf;
1321 void *inarg = cmd->buf + sizeof(struct fuse_in_header);
1322 size_t argsize;
Miklos Szeredife25def2001-12-20 15:38:05 +00001323 struct fuse_context *ctx = fuse_get_context(f);
Miklos Szeredia181e612001-11-06 12:03:23 +00001324
Miklos Szeredi99ddf0e2001-11-25 17:19:59 +00001325 dec_avail(f);
Miklos Szeredi33232032001-11-19 17:55:51 +00001326
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001327 if ((f->flags & FUSE_DEBUG)) {
Miklos Szeredic8ba2372002-12-10 12:26:00 +00001328 printf("unique: %i, opcode: %s (%i), ino: %li, insize: %i\n",
1329 in->unique, opname(in->opcode), in->opcode, in->ino,
1330 cmd->buflen);
Miklos Szeredic0938ea2001-11-07 12:35:06 +00001331 fflush(stdout);
1332 }
Miklos Szeredife25def2001-12-20 15:38:05 +00001333
1334 ctx->uid = in->uid;
1335 ctx->gid = in->gid;
Miklos Szeredia181e612001-11-06 12:03:23 +00001336
1337 argsize = cmd->buflen - sizeof(struct fuse_in_header);
1338
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001339 switch (in->opcode) {
Miklos Szeredia181e612001-11-06 12:03:23 +00001340 case FUSE_LOOKUP:
1341 do_lookup(f, in, (char *) inarg);
1342 break;
1343
Miklos Szeredia181e612001-11-06 12:03:23 +00001344 case FUSE_GETATTR:
1345 do_getattr(f, in);
1346 break;
1347
1348 case FUSE_SETATTR:
1349 do_setattr(f, in, (struct fuse_setattr_in *) inarg);
1350 break;
1351
1352 case FUSE_READLINK:
1353 do_readlink(f, in);
1354 break;
1355
1356 case FUSE_GETDIR:
1357 do_getdir(f, in);
1358 break;
1359
1360 case FUSE_MKNOD:
1361 do_mknod(f, in, (struct fuse_mknod_in *) inarg);
1362 break;
1363
1364 case FUSE_MKDIR:
1365 do_mkdir(f, in, (struct fuse_mkdir_in *) inarg);
1366 break;
1367
1368 case FUSE_UNLINK:
Miklos Szeredib5958612004-02-20 14:10:49 +00001369 do_unlink(f, in, (char *) inarg);
1370 break;
1371
Miklos Szeredia181e612001-11-06 12:03:23 +00001372 case FUSE_RMDIR:
Miklos Szeredib5958612004-02-20 14:10:49 +00001373 do_rmdir(f, in, (char *) inarg);
Miklos Szeredia181e612001-11-06 12:03:23 +00001374 break;
1375
1376 case FUSE_SYMLINK:
1377 do_symlink(f, in, (char *) inarg,
1378 ((char *) inarg) + strlen((char *) inarg) + 1);
1379 break;
1380
1381 case FUSE_RENAME:
1382 do_rename(f, in, (struct fuse_rename_in *) inarg);
1383 break;
1384
1385 case FUSE_LINK:
1386 do_link(f, in, (struct fuse_link_in *) inarg);
1387 break;
1388
1389 case FUSE_OPEN:
1390 do_open(f, in, (struct fuse_open_in *) inarg);
1391 break;
1392
Miklos Szeredie2e4ac22004-05-18 08:45:28 +00001393 case FUSE_FLUSH:
1394 do_flush(f, in);
1395 break;
1396
Miklos Szeredi9478e862002-12-11 09:50:26 +00001397 case FUSE_RELEASE:
1398 do_release(f, in, (struct fuse_open_in *) inarg);
1399 break;
1400
Miklos Szeredia181e612001-11-06 12:03:23 +00001401 case FUSE_READ:
1402 do_read(f, in, (struct fuse_read_in *) inarg);
1403 break;
1404
1405 case FUSE_WRITE:
1406 do_write(f, in, (struct fuse_write_in *) inarg);
1407 break;
1408
Mark Glinesd84b39a2002-01-07 16:32:02 +00001409 case FUSE_STATFS:
1410 do_statfs(f, in);
1411 break;
1412
Miklos Szeredi5e43f2c2003-12-12 14:06:41 +00001413 case FUSE_FSYNC:
1414 do_fsync(f, in, (struct fuse_fsync_in *) inarg);
1415 break;
1416
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001417 case FUSE_SETXATTR:
1418 do_setxattr(f, in, (struct fuse_setxattr_in *) inarg);
1419 break;
1420
1421 case FUSE_GETXATTR:
Miklos Szeredi03cebae2004-03-31 10:19:18 +00001422 do_getxattr(f, in, (struct fuse_getxattr_in *) inarg);
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001423 break;
1424
1425 case FUSE_LISTXATTR:
Miklos Szeredi03cebae2004-03-31 10:19:18 +00001426 do_listxattr(f, in, (struct fuse_getxattr_in *) inarg);
Miklos Szeredi3ed84232004-03-30 15:17:26 +00001427 break;
1428
1429 case FUSE_REMOVEXATTR:
1430 do_removexattr(f, in, (char *) inarg);
1431 break;
1432
Miklos Szeredia181e612001-11-06 12:03:23 +00001433 default:
Miklos Szeredi43696432001-11-18 19:15:05 +00001434 send_reply(f, in, -ENOSYS, NULL, 0);
Miklos Szeredia181e612001-11-06 12:03:23 +00001435 }
Miklos Szeredi43696432001-11-18 19:15:05 +00001436
1437 free_cmd(cmd);
Miklos Szeredia181e612001-11-06 12:03:23 +00001438}
1439
Miklos Szeredi65cf7c72004-06-30 11:34:56 +00001440int __fuse_exited(struct fuse* f)
1441{
1442 return f->exited;
1443}
1444
Miklos Szeredifff56ab2001-11-16 10:12:59 +00001445struct fuse_cmd *__fuse_read_cmd(struct fuse *f)
Miklos Szeredi2df1c042001-11-06 15:07:17 +00001446{
Miklos Szeredifff56ab2001-11-16 10:12:59 +00001447 ssize_t res;
Miklos Szeredifff56ab2001-11-16 10:12:59 +00001448 struct fuse_cmd *cmd;
Miklos Szeredi99ddf0e2001-11-25 17:19:59 +00001449 struct fuse_in_header *in;
1450 void *inarg;
Miklos Szeredifff56ab2001-11-16 10:12:59 +00001451
Miklos Szeredi43696432001-11-18 19:15:05 +00001452 cmd = (struct fuse_cmd *) malloc(sizeof(struct fuse_cmd));
1453 cmd->buf = (char *) malloc(FUSE_MAX_IN);
Miklos Szeredi99ddf0e2001-11-25 17:19:59 +00001454 in = (struct fuse_in_header *) cmd->buf;
1455 inarg = cmd->buf + sizeof(struct fuse_in_header);
Miklos Szeredi43696432001-11-18 19:15:05 +00001456
Miklos Szeredi65cf7c72004-06-30 11:34:56 +00001457 res = read(f->fd, cmd->buf, FUSE_MAX_IN);
1458 if (res == -1) {
1459 free_cmd(cmd);
1460 if (__fuse_exited(f) || errno == EINTR)
Miklos Szeredi99ddf0e2001-11-25 17:19:59 +00001461 return NULL;
Miklos Szeredi99ddf0e2001-11-25 17:19:59 +00001462
Miklos Szeredi65cf7c72004-06-30 11:34:56 +00001463 /* ENODEV means we got unmounted, so we silenty return failure */
1464 if (errno != ENODEV) {
1465 /* BAD... This will happen again */
1466 perror("fuse: reading device");
1467 }
1468
1469 fuse_exit(f);
1470 return NULL;
1471 }
1472 if ((size_t) res < sizeof(struct fuse_in_header)) {
1473 free_cmd(cmd);
1474 /* Cannot happen */
1475 fprintf(stderr, "short read on fuse device\n");
1476 fuse_exit(f);
1477 return NULL;
1478 }
1479 cmd->buflen = res;
1480
1481 /* Forget is special, it can be done without messing with threads. */
1482 if (in->opcode == FUSE_FORGET) {
1483 do_forget(f, in, (struct fuse_forget_in *) inarg);
1484 free_cmd(cmd);
1485 return NULL;
1486 }
Miklos Szeredi99ddf0e2001-11-25 17:19:59 +00001487
Miklos Szeredifff56ab2001-11-16 10:12:59 +00001488 return cmd;
Miklos Szeredi2df1c042001-11-06 15:07:17 +00001489}
1490
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00001491void fuse_loop(struct fuse *f)
1492{
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001493 if (f == NULL)
Miklos Szeredic40748a2004-02-20 16:38:45 +00001494 return;
1495
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001496 while (1) {
Miklos Szeredi0f48a262002-12-05 14:23:01 +00001497 struct fuse_cmd *cmd;
1498
Miklos Szeredi65cf7c72004-06-30 11:34:56 +00001499 if (__fuse_exited(f))
Miklos Szeredi0f48a262002-12-05 14:23:01 +00001500 return;
1501
1502 cmd = __fuse_read_cmd(f);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001503 if (cmd == NULL)
Miklos Szeredi0f48a262002-12-05 14:23:01 +00001504 continue;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00001505
Miklos Szeredifff56ab2001-11-16 10:12:59 +00001506 __fuse_process_cmd(f, cmd);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00001507 }
1508}
1509
Miklos Szeredi0f48a262002-12-05 14:23:01 +00001510void fuse_exit(struct fuse *f)
1511{
1512 f->exited = 1;
1513}
1514
Miklos Szeredi2e50d432001-12-20 12:17:25 +00001515struct fuse_context *fuse_get_context(struct fuse *f)
1516{
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001517 if (f->getcontext)
Miklos Szeredi2e50d432001-12-20 12:17:25 +00001518 return f->getcontext(f);
1519 else
1520 return &f->context;
1521}
1522
Miklos Szeredic40748a2004-02-20 16:38:45 +00001523static int check_version(struct fuse *f)
1524{
1525 int res;
1526 FILE *vf = fopen(FUSE_VERSION_FILE, "r");
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001527 if (vf == NULL) {
Miklos Szeredic40748a2004-02-20 16:38:45 +00001528 fprintf(stderr, "fuse: kernel interface too old, need >= %i.%i\n",
1529 FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
1530 return -1;
1531 }
1532 res = fscanf(vf, "%i.%i", &f->majorver, &f->minorver);
1533 fclose(vf);
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001534 if (res != 2) {
Miklos Szeredic40748a2004-02-20 16:38:45 +00001535 fprintf(stderr, "fuse: error reading %s\n", FUSE_VERSION_FILE);
1536 return -1;
1537 }
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001538 if (f->majorver != FUSE_KERNEL_VERSION) {
Miklos Szeredic40748a2004-02-20 16:38:45 +00001539 fprintf(stderr, "fuse: bad kernel interface major version: needs %i\n",
1540 FUSE_KERNEL_VERSION);
1541 return -1;
1542 }
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001543 if (f->minorver < FUSE_KERNEL_MINOR_VERSION) {
Miklos Szeredic40748a2004-02-20 16:38:45 +00001544 fprintf(stderr, "fuse: kernel interface too old: need >= %i.%i",
1545 FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
1546 return -1;
1547 }
1548
1549 return 0;
1550}
1551
Miklos Szeredi2e50d432001-12-20 12:17:25 +00001552struct fuse *fuse_new(int fd, int flags, const struct fuse_operations *op)
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00001553{
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001554 struct fuse *f;
1555 struct node *root;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00001556
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001557 f = (struct fuse *) calloc(1, sizeof(struct fuse));
Miklos Szeredi2df1c042001-11-06 15:07:17 +00001558
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001559 if (check_version(f) == -1) {
Miklos Szeredic40748a2004-02-20 16:38:45 +00001560 free(f);
1561 return NULL;
1562 }
1563
Miklos Szeredia181e612001-11-06 12:03:23 +00001564 f->flags = flags;
Miklos Szeredi8cffdb92001-11-09 14:49:18 +00001565 f->fd = fd;
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001566 f->ctr = 0;
Miklos Szeredi76f65782004-02-19 16:55:40 +00001567 f->generation = 0;
Miklos Szeredifff56ab2001-11-16 10:12:59 +00001568 /* FIXME: Dynamic hash table */
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001569 f->name_table_size = 14057;
1570 f->name_table = (struct node **)
1571 calloc(1, sizeof(struct node *) * f->name_table_size);
1572 f->ino_table_size = 14057;
1573 f->ino_table = (struct node **)
1574 calloc(1, sizeof(struct node *) * f->ino_table_size);
Miklos Szeredia181e612001-11-06 12:03:23 +00001575 pthread_mutex_init(&f->lock, NULL);
Miklos Szeredi33232032001-11-19 17:55:51 +00001576 f->numworker = 0;
1577 f->numavail = 0;
Miklos Szeredi2e50d432001-12-20 12:17:25 +00001578 f->op = *op;
1579 f->getcontext = NULL;
1580 f->context.uid = 0;
1581 f->context.gid = 0;
Miklos Szeredi0f48a262002-12-05 14:23:01 +00001582 f->exited = 0;
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00001583
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001584 root = (struct node *) calloc(1, sizeof(struct node));
Miklos Szeredi8cffdb92001-11-09 14:49:18 +00001585 root->mode = 0;
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001586 root->rdev = 0;
1587 root->name = strdup("/");
1588 root->parent = 0;
Miklos Szeredi76f65782004-02-19 16:55:40 +00001589 root->ino = FUSE_ROOT_INO;
1590 root->generation = 0;
1591 hash_ino(f, root);
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001592
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00001593 return f;
1594}
1595
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00001596void fuse_destroy(struct fuse *f)
1597{
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001598 size_t i;
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001599 for (i = 0; i < f->ino_table_size; i++) {
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001600 struct node *node;
Miklos Szeredi1ea9c962004-06-24 21:00:00 +00001601
1602 for (node = f->ino_table[i]; node != NULL; node = node->ino_next) {
1603 if (node->is_hidden) {
1604 char *path = get_path(f, node->ino);
1605 if (path)
1606 f->op.unlink(path);
1607 }
1608 }
1609 }
1610 for (i = 0; i < f->ino_table_size; i++) {
1611 struct node *node;
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001612 struct node *next;
Miklos Szeredi1ea9c962004-06-24 21:00:00 +00001613
Miklos Szeredi7eafcce2004-06-19 22:42:38 +00001614 for (node = f->ino_table[i]; node != NULL; node = next) {
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001615 next = node->ino_next;
1616 free_node(node);
1617 }
1618 }
1619 free(f->ino_table);
1620 free(f->name_table);
Miklos Szeredia181e612001-11-06 12:03:23 +00001621 pthread_mutex_destroy(&f->lock);
Miklos Szeredi97c61e92001-11-07 12:09:43 +00001622 free(f);
Miklos Szeredi85c74fc2001-10-28 19:44:14 +00001623}