aboutsummaryrefslogtreecommitdiff
path: root/src/ext/open.c
blob: 0d6399d7c3ee2d0ea5a3a71a5b223bed2e6aaf8c (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
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
/*
 * 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-fuse5/gnunet-fuse/src/ext/mount") | strcmp(path, "/") == 0)
		return 0;

	else if ((fi->flags & 3) != O_RDONLY)
		return -EACCES;


	else return 0;

 }



































/*
static const char *archive_path = "/";
static const char *archive_str = "/Archive\n";

static const char *britney_path = "/Britney Spears";
static const char *britney_str = "Britney Spears\n";

static const char *britney_br_path = "/Britney Spears/Britney";
static const char *britney_br_str = "Britney\n";

static const char *b_br_1_path = "/Britney Spears/Britney/I'm a Slave 4 U";
	static const char *b_br_1_str = "3:23 U\n";


	 if((strcmp(path, archive_path) | strcmp(path, britney_path) | strcmp(path, britney_br_path))==0)
	      //   return -ENOENT;
	 return 0;

	 else if ( (fi->flags & 3) != O_RDONLY )
	 return -EACCES;

	 else  return 0;



*/