aboutsummaryrefslogtreecommitdiff
path: root/src/fuse/open.c
blob: 6a067e2060ff1b1823896f8583ee8f96da6cd906 (plain) (blame)
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
/*
 * open.c - FUSE open function
 *
 *  Created on: Mar 14, 2012
 *      Author: mg
 *
 *  File open operation
 *
 * No creation (O_CREAT, O_EXCL) and by default also no
 * truncation (O_TRUNC) flags will be passed to open(). If an
 * application specifies O_TRUNC, fuse first calls truncate()
 * and then open(). Only if 'atomic_o_trunc' has been
 * specified and kernel version is 2.6.24 or later, O_TRUNC is
 * passed on to open.
 *
 * Unless the 'default_permissions' mount option is given,
 * open should check if the operation is permitted for the
 * given flags. Optionally open may also return an arbitrary
 * filehandle in the fuse_file_info structure, which will be
 * passed to all file operations.
 *
 * Changed in version 2.2
 */

//#include <string.h>
//#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fuse.h>
#include <gnunet-fuse.h>



int gn_open(const char *path, struct fuse_file_info *fi)
{


	//if (strcmp(path, "/home/mg/gnunet-fuse2/gnunet-fuse/src/ext/monti") == 0)
	//	return 0;
//
//	else if ((fi->flags & 3) != O_RDONLY)
//		return -EACCES;


//	else return 0;


/*
 * when user is allowed to open, return 0
 */
	return 0;
 }