aboutsummaryrefslogtreecommitdiff
path: root/lib/fuse_i.h
blob: 4d387e2de20641a9044fde7a6a306438da8452ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
    FUSE: Filesystem in Userspace
    Copyright (C) 2001  Miklos Szeredi (mszeredi@inf.bme.hu)

    This program can be distributed under the terms of the GNU LGPL.
    See the file COPYING.LIB.
*/

#include "fuse.h"
#include <stdio.h>
#include <pthread.h>

typedef unsigned long fino_t;

struct node {
    struct node *name_next;
    struct node *ino_next;
    fino_t ino;
    unsigned int generation;
    fino_t parent;
    char *name;
    int mode;
    int rdev;
    int version;
    int open_count;
    int is_hidden;
};

struct fuse {
    int flags;
    int fd;
    struct fuse_operations op;
    struct node **name_table;
    size_t name_table_size;
    struct node **ino_table;
    size_t ino_table_size;
    fino_t ctr;
    unsigned int generation;
    unsigned int hidectr;
    pthread_mutex_t lock;
    int numworker;
    int numavail;
    struct fuse_context *(*getcontext)(struct fuse *);
    struct fuse_context context;
    pthread_key_t context_key;
    volatile int exited;
    int majorver;
    int minorver;
};

struct fuse_dirhandle {
    struct fuse *fuse;
    fino_t dir;
    FILE *fp;
};

struct fuse_cmd {
    char *buf;
    size_t buflen;
};