-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathelfuse-fuse.h
216 lines (181 loc) · 4.75 KB
/
elfuse-fuse.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/* This file is part of Elfuse. */
/* Elfuse is free software: you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation, either version 3 of the License, or */
/* (at your option) any later version. */
/* Elfuse is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
/* GNU General Public License for more details. */
/* You should have received a copy of the GNU General Public License */
/* along with Elfuse. If not, see <http://www.gnu.org/licenses/>. */
#ifndef ELFUSE_FUSE_H
#define ELFUSE_FUSE_H
#include <pthread.h>
#include <semaphore.h>
extern sem_t request_sem;
extern sem_t init_sem;
extern pthread_t emacs_thread;
/* Init codes */
enum elfuse_init_code_enum {
INIT_DONE,
INIT_ERR_ARGS,
INIT_ERR_MOUNT,
INIT_ERR_CREATE,
INIT_ERR_ALLOC
} elfuse_init_code;
/* CREATE args and results */
struct elfuse_args_create {
const char *path;
};
struct elfuse_results_create {
enum elfuse_results_create_code {
CREATE_FAIL,
CREATE_DONE
} code;
};
/* RENAME args and results */
struct elfuse_args_rename {
const char *oldpath;
const char *newpath;
};
struct elfuse_results_rename {
enum elfuse_results_rename_code {
RENAME_UNKNOWN,
RENAME_DONE
} code;
};
/* GETATTR args and results */
struct elfuse_args_getattr {
const char *path;
};
struct elfuse_results_getattr {
enum elfuse_results_getattr_code {
GETATTR_FILE,
GETATTR_DIR,
GETATTR_UNKNOWN,
} code;
size_t file_size;
};
/* READDIR arsg and results */
struct elfuse_args_readdir {
const char *path;
};
struct elfuse_results_readdir {
char **files;
size_t files_size;
};
/* OPEN args and results */
struct elfuse_args_open {
const char *path;
};
struct elfuse_results_open {
enum elfuse_results_open_code {
OPEN_FOUND,
OPEN_UNKNOWN,
} code;
};
/* OPEN args and results */
struct elfuse_args_release {
const char *path;
};
struct elfuse_results_release {
enum elfuse_results_release_code {
RELEASE_FOUND,
RELEASE_UNKNOWN,
} code;
};
/* READ args and results */
struct elfuse_args_read {
const char *path;
size_t offset;
size_t size;
};
struct elfuse_results_read {
int bytes_read;
char *data;
};
/* WRITE args and results */
struct elfuse_args_write {
const char *path;
const char *buf;
size_t size;
size_t offset;
};
struct elfuse_results_write {
int size;
};
/* TRUNCATE args and results */
struct elfuse_args_truncate {
const char *path;
size_t size;
};
struct elfuse_results_truncate {
enum elfuse_results_truncate_code {
TRUNCATE_DONE,
TRUNCATE_UNKNOWN,
} code;
};
/* UNLINK args and results */
struct elfuse_args_unlink {
const char *path;
};
struct elfuse_results_unlink {
enum elfuse_results_unlink_code {
UNLINK_DONE,
UNLINK_UNKNOWN,
} code;
};
/* A unified data exchange struct. */
struct elfuse_call_state {
enum elfuse_request_state {
/* Nothing is waiting */
WAITING_NONE,
/* Waiting for syscalls to be handled by Elisp */
WAITING_CREATE,
WAITING_RENAME,
WAITING_GETATTR,
WAITING_READDIR,
WAITING_OPEN,
WAITING_RELEASE,
WAITING_READ,
WAITING_WRITE,
WAITING_TRUNCATE,
WAITING_UNLINK,
} request_state;
enum elfuse_response_state {
RESPONSE_SUCCESS,
RESPONSE_UNDEFINED,
RESPONSE_NOTREADY,
RESPONSE_SIGNAL_ERROR,
RESPONSE_UNKNOWN_ERROR,
} response_state;
int response_err_code;
union args {
struct elfuse_args_create create;
struct elfuse_args_rename rename;
struct elfuse_args_getattr getattr;
struct elfuse_args_readdir readdir;
struct elfuse_args_open open;
struct elfuse_args_release release;
struct elfuse_args_read read;
struct elfuse_args_write write;
struct elfuse_args_truncate truncate;
struct elfuse_args_unlink unlink;
} args;
union results {
struct elfuse_results_create create;
struct elfuse_results_rename rename;
struct elfuse_results_getattr getattr;
struct elfuse_results_readdir readdir;
struct elfuse_results_open open;
struct elfuse_results_release release;
struct elfuse_results_read read;
struct elfuse_results_write write;
struct elfuse_results_truncate truncate;
struct elfuse_results_unlink unlink;
} results;
} elfuse_call;
void *
elfuse_fuse_loop(void *mountpath);
#endif //ELFUSE_FUSE_H