blob: 9408a5477adab9590dfd40ec450445752127887a [file] [log] [blame]
Daniel Campello35c9e242015-07-20 16:23:50 -07001/*
2 * fs/sdcardfs/derived_perm.c
3 *
4 * Copyright (c) 2013 Samsung Electronics Co. Ltd
5 * Authors: Daeho Jeong, Woojoong Lee, Seunghwan Hyun,
6 * Sunghwan Yun, Sungjong Seo
7 *
8 * This program has been developed as a stackable file system based on
9 * the WrapFS which written by
10 *
11 * Copyright (c) 1998-2011 Erez Zadok
12 * Copyright (c) 2009 Shrikar Archak
13 * Copyright (c) 2003-2011 Stony Brook University
14 * Copyright (c) 2003-2011 The Research Foundation of SUNY
15 *
16 * This file is dual licensed. It may be redistributed and/or modified
17 * under the terms of the Apache 2.0 License OR version 2 of the GNU
18 * General Public License.
19 */
20
21#include "sdcardfs.h"
22
23/* copy derived state from parent inode */
24static void inherit_derived_state(struct inode *parent, struct inode *child)
25{
26 struct sdcardfs_inode_info *pi = SDCARDFS_I(parent);
27 struct sdcardfs_inode_info *ci = SDCARDFS_I(child);
28
29 ci->perm = PERM_INHERIT;
30 ci->userid = pi->userid;
31 ci->d_uid = pi->d_uid;
Daniel Rosenberg497ac902016-02-03 21:08:21 -080032 ci->under_android = pi->under_android;
Daniel Rosenberg5080d242016-05-18 16:57:10 -070033 set_top(ci, pi->top);
Daniel Campello35c9e242015-07-20 16:23:50 -070034}
35
36/* helper function for derived state */
Daniel Rosenberg5080d242016-05-18 16:57:10 -070037void setup_derived_state(struct inode *inode, perm_t perm, userid_t userid,
38 uid_t uid, bool under_android, struct inode *top)
Daniel Campello35c9e242015-07-20 16:23:50 -070039{
40 struct sdcardfs_inode_info *info = SDCARDFS_I(inode);
41
42 info->perm = perm;
43 info->userid = userid;
44 info->d_uid = uid;
Daniel Rosenberg497ac902016-02-03 21:08:21 -080045 info->under_android = under_android;
Daniel Rosenberg5080d242016-05-18 16:57:10 -070046 set_top(info, top);
Daniel Campello35c9e242015-07-20 16:23:50 -070047}
48
Daniel Rosenberg497ac902016-02-03 21:08:21 -080049/* While renaming, there is a point where we want the path from dentry, but the name from newdentry */
50void get_derived_permission_new(struct dentry *parent, struct dentry *dentry, struct dentry *newdentry)
Daniel Campello35c9e242015-07-20 16:23:50 -070051{
Daniel Rosenberg63d20762016-12-01 14:36:29 -080052 struct sdcardfs_inode_info *info = SDCARDFS_I(d_inode(dentry));
53 struct sdcardfs_inode_info *parent_info= SDCARDFS_I(d_inode(parent));
Daniel Campello35c9e242015-07-20 16:23:50 -070054 appid_t appid;
55
56 /* By default, each inode inherits from its parent.
57 * the properties are maintained on its private fields
58 * because the inode attributes will be modified with that of
59 * its lower inode.
60 * The derived state will be updated on the last
61 * stage of each system call by fix_derived_permission(inode).
62 */
63
Daniel Rosenberg63d20762016-12-01 14:36:29 -080064 inherit_derived_state(d_inode(parent), d_inode(dentry));
Daniel Campello35c9e242015-07-20 16:23:50 -070065
Daniel Campello35c9e242015-07-20 16:23:50 -070066 /* Derive custom permissions based on parent and current node */
67 switch (parent_info->perm) {
68 case PERM_INHERIT:
69 /* Already inherited above */
70 break;
Daniel Rosenberg497ac902016-02-03 21:08:21 -080071 case PERM_PRE_ROOT:
Daniel Campello35c9e242015-07-20 16:23:50 -070072 /* Legacy internal layout places users at top level */
73 info->perm = PERM_ROOT;
Daniel Rosenberg497ac902016-02-03 21:08:21 -080074 info->userid = simple_strtoul(newdentry->d_name.name, NULL, 10);
Daniel Rosenberg5080d242016-05-18 16:57:10 -070075 set_top(info, &info->vfs_inode);
Daniel Campello35c9e242015-07-20 16:23:50 -070076 break;
77 case PERM_ROOT:
78 /* Assume masked off by default. */
Daniel Rosenberg497ac902016-02-03 21:08:21 -080079 if (!strcasecmp(newdentry->d_name.name, "Android")) {
Daniel Campello35c9e242015-07-20 16:23:50 -070080 /* App-specific directories inside; let anyone traverse */
81 info->perm = PERM_ANDROID;
Daniel Rosenberg497ac902016-02-03 21:08:21 -080082 info->under_android = true;
Daniel Rosenberg5080d242016-05-18 16:57:10 -070083 set_top(info, &info->vfs_inode);
Daniel Campello35c9e242015-07-20 16:23:50 -070084 }
85 break;
86 case PERM_ANDROID:
Daniel Rosenberg497ac902016-02-03 21:08:21 -080087 if (!strcasecmp(newdentry->d_name.name, "data")) {
Daniel Campello35c9e242015-07-20 16:23:50 -070088 /* App-specific directories inside; let anyone traverse */
89 info->perm = PERM_ANDROID_DATA;
Daniel Rosenberg5080d242016-05-18 16:57:10 -070090 set_top(info, &info->vfs_inode);
Daniel Rosenberg497ac902016-02-03 21:08:21 -080091 } else if (!strcasecmp(newdentry->d_name.name, "obb")) {
Daniel Campello35c9e242015-07-20 16:23:50 -070092 /* App-specific directories inside; let anyone traverse */
93 info->perm = PERM_ANDROID_OBB;
Daniel Rosenberg5080d242016-05-18 16:57:10 -070094 set_top(info, &info->vfs_inode);
Daniel Campello35c9e242015-07-20 16:23:50 -070095 /* Single OBB directory is always shared */
Daniel Rosenberg497ac902016-02-03 21:08:21 -080096 } else if (!strcasecmp(newdentry->d_name.name, "media")) {
97 /* App-specific directories inside; let anyone traverse */
98 info->perm = PERM_ANDROID_MEDIA;
Daniel Rosenberg5080d242016-05-18 16:57:10 -070099 set_top(info, &info->vfs_inode);
Daniel Campello35c9e242015-07-20 16:23:50 -0700100 }
101 break;
Daniel Campello35c9e242015-07-20 16:23:50 -0700102 case PERM_ANDROID_DATA:
103 case PERM_ANDROID_OBB:
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800104 case PERM_ANDROID_MEDIA:
Daniel Rosenbergfbd34b62016-05-10 13:42:43 -0700105 appid = get_appid(newdentry->d_name.name);
Daniel Campello35c9e242015-07-20 16:23:50 -0700106 if (appid != 0) {
107 info->d_uid = multiuser_get_uid(parent_info->userid, appid);
108 }
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700109 set_top(info, &info->vfs_inode);
Daniel Campello35c9e242015-07-20 16:23:50 -0700110 break;
111 }
112}
113
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800114void get_derived_permission(struct dentry *parent, struct dentry *dentry)
115{
116 get_derived_permission_new(parent, dentry, dentry);
117}
118
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700119static int descendant_may_need_fixup(perm_t perm) {
120 if (perm == PERM_PRE_ROOT || perm == PERM_ROOT || perm == PERM_ANDROID)
121 return 1;
122 return 0;
123}
124
125static int needs_fixup(perm_t perm) {
126 if (perm == PERM_ANDROID_DATA || perm == PERM_ANDROID_OBB
127 || perm == PERM_ANDROID_MEDIA)
128 return 1;
129 return 0;
130}
131
132void fixup_perms_recursive(struct dentry *dentry, const char* name, size_t len) {
133 struct dentry *child;
134 struct sdcardfs_inode_info *info;
135 if (!dget(dentry))
136 return;
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800137 if (!d_inode(dentry)) {
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700138 dput(dentry);
139 return;
140 }
141 info = SDCARDFS_I(d_inode(dentry));
142
143 if (needs_fixup(info->perm)) {
Daniel Rosenberg3adfc032016-12-27 12:36:29 -0800144 spin_lock(&dentry->d_lock);
145 list_for_each_entry(child, &dentry->d_subdirs, d_child) {
146 dget(child);
147 if (!strncasecmp(child->d_name.name, name, len)) {
148 if (child->d_inode) {
149 get_derived_permission(dentry, child);
150 fixup_tmp_permissions(child->d_inode);
151 dput(child);
152 break;
153 }
154 }
155 dput(child);
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700156 }
Daniel Rosenberg3adfc032016-12-27 12:36:29 -0800157 spin_unlock(&dentry->d_lock);
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700158 } else if (descendant_may_need_fixup(info->perm)) {
Daniel Rosenberg3adfc032016-12-27 12:36:29 -0800159 spin_lock(&dentry->d_lock);
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700160 list_for_each_entry(child, &dentry->d_subdirs, d_child) {
161 fixup_perms_recursive(child, name, len);
162 }
Daniel Rosenberg3adfc032016-12-27 12:36:29 -0800163 spin_unlock(&dentry->d_lock);
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700164 }
165 dput(dentry);
166}
167
168void fixup_top_recursive(struct dentry *parent) {
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800169 struct dentry *dentry;
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700170 struct sdcardfs_inode_info *info;
171 if (!d_inode(parent))
172 return;
173 info = SDCARDFS_I(d_inode(parent));
Daniel Rosenbergcb1b9452016-08-16 15:19:26 -0700174 spin_lock(&parent->d_lock);
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800175 list_for_each_entry(dentry, &parent->d_subdirs, d_child) {
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700176 if (d_inode(dentry)) {
177 if (SDCARDFS_I(d_inode(parent))->top != SDCARDFS_I(d_inode(dentry))->top) {
178 get_derived_permission(parent, dentry);
Daniel Rosenberg90219272016-10-26 20:27:20 -0700179 fixup_tmp_permissions(d_inode(dentry));
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700180 fixup_top_recursive(dentry);
181 }
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800182 }
183 }
Daniel Rosenbergcb1b9452016-08-16 15:19:26 -0700184 spin_unlock(&parent->d_lock);
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800185}
186
Daniel Campello35c9e242015-07-20 16:23:50 -0700187/* main function for updating derived permission */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800188inline void update_derived_permission_lock(struct dentry *dentry)
Daniel Campello35c9e242015-07-20 16:23:50 -0700189{
190 struct dentry *parent;
191
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800192 if(!dentry || !d_inode(dentry)) {
Daniel Campello35c9e242015-07-20 16:23:50 -0700193 printk(KERN_ERR "sdcardfs: %s: invalid dentry\n", __func__);
194 return;
195 }
196 /* FIXME:
197 * 1. need to check whether the dentry is updated or not
198 * 2. remove the root dentry update
199 */
200 if(IS_ROOT(dentry)) {
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800201 //setup_default_pre_root_state(d_inode(dentry));
Daniel Campello35c9e242015-07-20 16:23:50 -0700202 } else {
203 parent = dget_parent(dentry);
204 if(parent) {
205 get_derived_permission(parent, dentry);
206 dput(parent);
207 }
208 }
Daniel Rosenberg90219272016-10-26 20:27:20 -0700209 fixup_tmp_permissions(d_inode(dentry));
Daniel Campello35c9e242015-07-20 16:23:50 -0700210}
211
212int need_graft_path(struct dentry *dentry)
213{
214 int ret = 0;
215 struct dentry *parent = dget_parent(dentry);
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800216 struct sdcardfs_inode_info *parent_info= SDCARDFS_I(d_inode(parent));
Daniel Campello35c9e242015-07-20 16:23:50 -0700217 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dentry->d_sb);
218
219 if(parent_info->perm == PERM_ANDROID &&
220 !strcasecmp(dentry->d_name.name, "obb")) {
221
222 /* /Android/obb is the base obbpath of DERIVED_UNIFIED */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800223 if(!(sbi->options.multiuser == false
Daniel Campello35c9e242015-07-20 16:23:50 -0700224 && parent_info->userid == 0)) {
225 ret = 1;
226 }
227 }
228 dput(parent);
229 return ret;
230}
231
232int is_obbpath_invalid(struct dentry *dent)
233{
234 int ret = 0;
235 struct sdcardfs_dentry_info *di = SDCARDFS_D(dent);
236 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dent->d_sb);
237 char *path_buf, *obbpath_s;
238
239 /* check the base obbpath has been changed.
240 * this routine can check an uninitialized obb dentry as well.
241 * regarding the uninitialized obb, refer to the sdcardfs_mkdir() */
242 spin_lock(&di->lock);
243 if(di->orig_path.dentry) {
244 if(!di->lower_path.dentry) {
245 ret = 1;
246 } else {
247 path_get(&di->lower_path);
248 //lower_parent = lock_parent(lower_path->dentry);
249
250 path_buf = kmalloc(PATH_MAX, GFP_ATOMIC);
251 if(!path_buf) {
252 ret = 1;
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800253 printk(KERN_ERR "sdcardfs: fail to allocate path_buf in %s.\n", __func__);
Daniel Campello35c9e242015-07-20 16:23:50 -0700254 } else {
255 obbpath_s = d_path(&di->lower_path, path_buf, PATH_MAX);
256 if (d_unhashed(di->lower_path.dentry) ||
257 strcasecmp(sbi->obbpath_s, obbpath_s)) {
258 ret = 1;
259 }
260 kfree(path_buf);
261 }
262
263 //unlock_dir(lower_parent);
264 path_put(&di->lower_path);
265 }
266 }
267 spin_unlock(&di->lock);
268 return ret;
269}
270
271int is_base_obbpath(struct dentry *dentry)
272{
273 int ret = 0;
274 struct dentry *parent = dget_parent(dentry);
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800275 struct sdcardfs_inode_info *parent_info= SDCARDFS_I(d_inode(parent));
Daniel Campello35c9e242015-07-20 16:23:50 -0700276 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dentry->d_sb);
277
278 spin_lock(&SDCARDFS_D(dentry)->lock);
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800279 if (sbi->options.multiuser) {
280 if(parent_info->perm == PERM_PRE_ROOT &&
281 !strcasecmp(dentry->d_name.name, "obb")) {
282 ret = 1;
283 }
284 } else if (parent_info->perm == PERM_ANDROID &&
Daniel Campello35c9e242015-07-20 16:23:50 -0700285 !strcasecmp(dentry->d_name.name, "obb")) {
286 ret = 1;
287 }
Daniel Campello35c9e242015-07-20 16:23:50 -0700288 spin_unlock(&SDCARDFS_D(dentry)->lock);
Daniel Campello35c9e242015-07-20 16:23:50 -0700289 return ret;
290}
291
292/* The lower_path will be stored to the dentry's orig_path
293 * and the base obbpath will be copyed to the lower_path variable.
294 * if an error returned, there's no change in the lower_path
295 * returns: -ERRNO if error (0: no error) */
296int setup_obb_dentry(struct dentry *dentry, struct path *lower_path)
297{
298 int err = 0;
299 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dentry->d_sb);
300 struct path obbpath;
301
302 /* A local obb dentry must have its own orig_path to support rmdir
303 * and mkdir of itself. Usually, we expect that the sbi->obbpath
304 * is avaiable on this stage. */
305 sdcardfs_set_orig_path(dentry, lower_path);
306
307 err = kern_path(sbi->obbpath_s,
308 LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &obbpath);
309
310 if(!err) {
311 /* the obbpath base has been found */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800312 printk(KERN_INFO "sdcardfs: the sbi->obbpath is found\n");
Daniel Campello35c9e242015-07-20 16:23:50 -0700313 pathcpy(lower_path, &obbpath);
314 } else {
315 /* if the sbi->obbpath is not available, we can optionally
316 * setup the lower_path with its orig_path.
317 * but, the current implementation just returns an error
318 * because the sdcard daemon also regards this case as
319 * a lookup fail. */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800320 printk(KERN_INFO "sdcardfs: the sbi->obbpath is not available\n");
Daniel Campello35c9e242015-07-20 16:23:50 -0700321 }
322 return err;
323}
324
325