-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathytfs.c
419 lines (322 loc) · 10 KB
/
ytfs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
#define FUSE_USE_VERSION 26
#define _GNU_SOURCE
#define DEBUG
#include <dirent.h>
#include <fcntl.h>
#include <Python.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef DEBUG
#include <syslog.h>
#endif
#include "dirfiller.h"
#include "utility.h"
#include "ytfs.h"
char bin_path[PATH_MAX];
char fs_path[PATH_MAX];
static PGconn *ytfs_db;
static struct fuse_operations ytfs_oper = {
.getattr = ytfs_getattr,
.unlink = ytfs_unlink,
.truncate = ytfs_truncate,
.open = ytfs_open,
.read = ytfs_read,
.write = ytfs_write,
.release = ytfs_release,
.readdir = ytfs_readdir,
.init = ytfs_init,
.destroy = ytfs_destroy,
.create = ytfs_create,
.fgetattr = ytfs_fgetattr,
.utimens = ytfs_utimens,
};
int ytfs_getattr( const char *path, struct stat *stbuf )
{
int checksum_success;
char fpath[PATH_MAX], checksum[32], extension[PATH_MAX];
struct stat realstat;
memset( stbuf, 0, sizeof( struct stat ) );
if( is_valid_folder( path ) )
{
stbuf->st_mode = S_IFDIR | 0777;
stbuf->st_nlink = 2;
stbuf->st_uid = getuid();
stbuf->st_gid = getgid();
}
else if( is_valid_file( path ) )
{
checksum_success = get_checksum_and_extension( ytfs_db, checksum, extension, path );
if( checksum_success < 0 )
return -ENOENT;
full_fs_path( fpath, "/" );
strcat( fpath, checksum );
strcat( fpath, extension );
if( !lstat( fpath, &realstat ) )
memcpy( stbuf, &realstat, sizeof( realstat ) );
else
{
stbuf->st_mode = S_IFREG | 0777;
stbuf->st_nlink = 1;
stbuf->st_uid = getuid();
stbuf->st_gid = getgid();
stbuf->st_size = get_file_size( ytfs_db, path );
stbuf->st_blksize = 4096;
if( stbuf->st_size < 0 )
stbuf->st_size = 0;
}
}
else
return -ENOENT;
return 0;
}
int ytfs_unlink( const char *path )
{
int checksum_success, py_ret;
char fpath[PATH_MAX], checksum[32], extension[PATH_MAX];
char *pyargs[1];
if( is_valid_file( path ) )
{
checksum_success = get_checksum_and_extension( ytfs_db, checksum, extension, path );
if( checksum_success < 0 )
return -ENOENT;
full_fs_path( fpath, "/" );
strcat( fpath, checksum );
strcat( fpath, extension );
pyargs[0] = checksum;
py_ret = python( "delete_file.py", 1, pyargs );
if( !py_ret )
unlink( fpath );
else
return -ENOENT;
return 0;
}
else
return -ENOENT;
}
int ytfs_truncate( const char *path, off_t newsize )
{
int retval, checksum_success;
char fpath[PATH_MAX], checksum[32], extension[PATH_MAX];
if( is_valid_file( path ) )
{
checksum_success = get_checksum_and_extension( ytfs_db, checksum, extension, path );
if( checksum_success < 0 )
return -ENOENT;
full_fs_path( fpath, "/" );
strcat( fpath, checksum );
strcat( fpath, extension );
}
else
full_fs_path( fpath, path );
retval = truncate( fpath, newsize );
if( retval < 0 )
retval = error( "ytfs_truncate" );
return retval;
}
int ytfs_open( const char *path, struct fuse_file_info *fi )
{
static char oldpath[PATH_MAX], newpath[PATH_MAX], checksum[32], extension[PATH_MAX];
int retval = 0;
int fd, checksum_success;
char fpath[PATH_MAX];
char *pyargs[2];
if( is_valid_file( path ) )
{
strcpy( oldpath, newpath );
strcpy( newpath, path );
full_fs_path( fpath, "/" );
if( strcmp( oldpath, newpath ) )
{
pyargs[0] = fpath;
pyargs[1] = (char *)path;
syslog( LOG_NOTICE, "Arg 0: %s ; Arg 1: %s", pyargs[0], pyargs[1] );
python( "download_file.py", 2, pyargs );
checksum_success = get_checksum_and_extension( ytfs_db, checksum, extension, path );
if( checksum_success < 0 )
return -ENOENT;
}
strcat( fpath, checksum );
strcat( fpath, extension );
fd = open( fpath, fi->flags );
if( fd < 0 )
retval = error( "ytfs_open" );
}
else
{
full_fs_path( fpath, path );
fd = open( fpath, fi->flags );
if( fd < 0 )
retval = error( "ytfs_open" );
}
fi->fh = fd;
return retval;
}
int ytfs_read( const char *path, char *buf, size_t size, off_t offset, struct fuse_file_info *fi )
{
int retval = pread( fi->fh, buf, size, offset );
if( retval < 0 )
retval = error( "ytfs_read" );
return retval;
}
int ytfs_write( const char *path, const char *buf, size_t size, off_t offset, struct fuse_file_info *fi )
{
int ext;
char fpath[PATH_MAX], realname[PATH_MAX], hash[32];
char *hashed_name;
char *pyargs[1];
int retval = pwrite( fi->fh, buf, size, offset );
if( retval < 0 )
retval = error( "ytfs_write" );
else if( retval < 4096 )
{
full_fs_path( fpath, path );
ext = last_index_of( path, '.' );
hashed_name = malloc( strlen( path + ext ) + 32 );
md5( fpath, hash );
sprintf( hashed_name, "/%s%s", hash, path + ext );
full_fs_path( realname, hashed_name );
free( hashed_name );
rename( fpath, realname );
fchmod( fi->fh, 0777 );
pyargs[0] = realname;
python( "sync_file.py", 1, pyargs );
}
return retval;
}
int ytfs_release( const char *path, struct fuse_file_info *fi )
{
return close( fi->fh );
}
int ytfs_opendir( const char *path, struct fuse_file_info *fi )
{
int retval = 0;
DIR *dp;
char fpath[PATH_MAX];
full_fs_path( fpath, path );
dp = opendir( fpath );
if( !dp )
retval = error( "ytfs_opendir" );
fi->fh = (intptr_t)dp;
return retval;
}
int ytfs_readdir( const char *path, void *buf, fuse_fill_dir_t filler, off_t offset, struct fuse_file_info *fi )
{
char *path_dup = strdup( path );
char *subdir = strtok( path_dup, "/" );
char *album, *artist, *decade;
filler( buf, ".", NULL, 0 );
filler( buf, "..", NULL, 0 );
if( !strcmp( path, "/" ) )
filler_root( buf, filler );
else
{
if( !strcmp( subdir, "Albums" ) )
{
album = strtok( NULL, "/" );
if( album )
filler_tracks_in_album( ytfs_db, album, buf, filler );
else
filler_all_albums( ytfs_db, buf, filler );
}
else if( !strcmp( subdir, "Artists" ) )
{
artist = strtok( NULL, "/" );
if( artist )
{
album = strtok( NULL, "/" );
if( album )
filler_tracks_in_album( ytfs_db, album, buf, filler );
else
filler_albums_from_artist( ytfs_db, artist, buf, filler );
}
else
filler_all_artists( ytfs_db, buf, filler );
}
else if( !strcmp( subdir, "Decades" ) )
{
decade = strtok( NULL, "/" );
if( decade )
{
album = strtok( NULL, "/" );
if( album )
filler_tracks_in_album( ytfs_db, album, buf, filler );
else
filler_albums_from_decade( ytfs_db, decade, buf, filler );
}
else
filler_all_decades( ytfs_db, buf, filler );
}
else
return -ENOENT;
}
return 0;
}
void* ytfs_init( struct fuse_conn_info *conn )
{
#ifdef DEBUG
openlog( "ytfs_log", LOG_PID | LOG_CONS, LOG_USER );
syslog( LOG_NOTICE, "YTFS initialized!" );
#endif
ytfs_db = PQconnectdb( "host=database.stephencodes.com dbname=media_solution user=postgres password=yellowboots" );
Py_Initialize();
printf( "test" );
return NULL;
}
void ytfs_destroy( void *args )
{
Py_Finalize();
PQfinish( ytfs_db );
#ifdef DEBUG
syslog( LOG_NOTICE, "YTFS terminated!" );
closelog();
#endif
}
int ytfs_create( const char *path, mode_t mode, struct fuse_file_info *fi )
{
int retval = 0;
int fd;
char fpath[PATH_MAX];
full_fs_path( fpath, path );
fd = creat( fpath, mode );
if( fd < 0 )
retval = error( "ytfs_create" );
fi->fh = fd;
return retval;
}
int ytfs_fgetattr( const char *path, struct stat *statbuf, struct fuse_file_info *fi )
{
int retval;
if( !strcmp( path, "/" ) )
return ytfs_getattr( path, statbuf );
retval = fstat( fi->fh, statbuf );
if( retval < 0 )
retval = error( "ytfs_fgetattr" );
return retval;
}
int ytfs_utimens( const char *path, const struct timespec tv[2] )
{
int retval, checksum_success;
char fpath[PATH_MAX], checksum[32], extension[PATH_MAX];
checksum_success = get_checksum_and_extension( ytfs_db, checksum, extension, path );
if( checksum_success < 0 )
return -ENOENT;
full_fs_path( fpath, "/" );
strcat( fpath, checksum );
strcat( fpath, extension );
retval = utimensat( 0, (const char *)full_fs_path, tv, 0 );
if( retval < 0 )
retval = error( "ytfs_utimens" );
return retval;
}
int main( int argc, char *argv[] )
{
int real_path_term;
// Get the full path of the folder the binary is in
realpath( argv[0], bin_path );
real_path_term = last_index_of( bin_path, '/' );
bin_path[real_path_term] = '\0';
// Get the full path of the mount point
realpath( argv[2], fs_path );
return fuse_main( argc - 1, argv, &ytfs_oper, NULL );
}