blob: 4b3801885959361152e59f28bcb1969ecae4a1e6 [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 Rosenbergad905252017-01-25 13:48:45 -080033 ci->under_cache = pi->under_cache;
34 ci->under_obb = pi->under_obb;
Daniel Rosenberg5080d242016-05-18 16:57:10 -070035 set_top(ci, pi->top);
Daniel Campello35c9e242015-07-20 16:23:50 -070036}
37
38/* helper function for derived state */
Daniel Rosenberg5080d242016-05-18 16:57:10 -070039void setup_derived_state(struct inode *inode, perm_t perm, userid_t userid,
40 uid_t uid, bool under_android, struct inode *top)
Daniel Campello35c9e242015-07-20 16:23:50 -070041{
42 struct sdcardfs_inode_info *info = SDCARDFS_I(inode);
43
44 info->perm = perm;
45 info->userid = userid;
46 info->d_uid = uid;
Daniel Rosenberg497ac902016-02-03 21:08:21 -080047 info->under_android = under_android;
Daniel Rosenbergad905252017-01-25 13:48:45 -080048 info->under_cache = false;
49 info->under_obb = false;
Daniel Rosenberg5080d242016-05-18 16:57:10 -070050 set_top(info, top);
Daniel Campello35c9e242015-07-20 16:23:50 -070051}
52
Daniel Rosenberg497ac902016-02-03 21:08:21 -080053/* While renaming, there is a point where we want the path from dentry, but the name from newdentry */
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -080054void get_derived_permission_new(struct dentry *parent, struct dentry *dentry, const struct qstr *name)
Daniel Campello35c9e242015-07-20 16:23:50 -070055{
Daniel Rosenberg63d20762016-12-01 14:36:29 -080056 struct sdcardfs_inode_info *info = SDCARDFS_I(d_inode(dentry));
57 struct sdcardfs_inode_info *parent_info= SDCARDFS_I(d_inode(parent));
Daniel Campello35c9e242015-07-20 16:23:50 -070058 appid_t appid;
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -080059 struct qstr q_Android = QSTR_LITERAL("Android");
60 struct qstr q_data = QSTR_LITERAL("data");
61 struct qstr q_obb = QSTR_LITERAL("obb");
62 struct qstr q_media = QSTR_LITERAL("media");
63 struct qstr q_cache = QSTR_LITERAL("cache");
Daniel Campello35c9e242015-07-20 16:23:50 -070064
65 /* By default, each inode inherits from its parent.
66 * the properties are maintained on its private fields
67 * because the inode attributes will be modified with that of
68 * its lower inode.
Daniel Rosenbergad905252017-01-25 13:48:45 -080069 * These values are used by our custom permission call instead
70 * of using the inode permissions.
Daniel Campello35c9e242015-07-20 16:23:50 -070071 */
72
Daniel Rosenberg63d20762016-12-01 14:36:29 -080073 inherit_derived_state(d_inode(parent), d_inode(dentry));
Daniel Campello35c9e242015-07-20 16:23:50 -070074
Daniel Rosenbergad905252017-01-25 13:48:45 -080075 /* Files don't get special labels */
76 if (!S_ISDIR(d_inode(dentry)->i_mode))
77 return;
Daniel Campello35c9e242015-07-20 16:23:50 -070078 /* Derive custom permissions based on parent and current node */
79 switch (parent_info->perm) {
Daniel Rosenbergad905252017-01-25 13:48:45 -080080 case PERM_INHERIT:
81 case PERM_ANDROID_PACKAGE_CACHE:
82 /* Already inherited above */
83 break;
84 case PERM_PRE_ROOT:
85 /* Legacy internal layout places users at top level */
86 info->perm = PERM_ROOT;
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -080087 info->userid = simple_strtoul(name->name, NULL, 10);
Daniel Rosenbergad905252017-01-25 13:48:45 -080088 set_top(info, &info->vfs_inode);
89 break;
90 case PERM_ROOT:
91 /* Assume masked off by default. */
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -080092 if (qstr_case_eq(name, &q_Android)) {
Daniel Rosenbergad905252017-01-25 13:48:45 -080093 /* App-specific directories inside; let anyone traverse */
94 info->perm = PERM_ANDROID;
95 info->under_android = true;
Daniel Rosenberg5080d242016-05-18 16:57:10 -070096 set_top(info, &info->vfs_inode);
Daniel Rosenbergad905252017-01-25 13:48:45 -080097 }
98 break;
99 case PERM_ANDROID:
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800100 if (qstr_case_eq(name, &q_data)) {
Daniel Rosenbergad905252017-01-25 13:48:45 -0800101 /* App-specific directories inside; let anyone traverse */
102 info->perm = PERM_ANDROID_DATA;
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700103 set_top(info, &info->vfs_inode);
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800104 } else if (qstr_case_eq(name, &q_obb)) {
Daniel Rosenbergad905252017-01-25 13:48:45 -0800105 /* App-specific directories inside; let anyone traverse */
106 info->perm = PERM_ANDROID_OBB;
107 info->under_obb = true;
108 set_top(info, &info->vfs_inode);
109 /* Single OBB directory is always shared */
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800110 } else if (qstr_case_eq(name, &q_media)) {
Daniel Rosenbergad905252017-01-25 13:48:45 -0800111 /* App-specific directories inside; let anyone traverse */
112 info->perm = PERM_ANDROID_MEDIA;
113 set_top(info, &info->vfs_inode);
114 }
115 break;
116 case PERM_ANDROID_OBB:
117 case PERM_ANDROID_DATA:
118 case PERM_ANDROID_MEDIA:
119 info->perm = PERM_ANDROID_PACKAGE;
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800120 appid = get_appid(name->name);
121 if (appid != 0 && !is_excluded(name->name, parent_info->userid)) {
Daniel Rosenbergad905252017-01-25 13:48:45 -0800122 info->d_uid = multiuser_get_uid(parent_info->userid, appid);
123 }
124 set_top(info, &info->vfs_inode);
125 break;
126 case PERM_ANDROID_PACKAGE:
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800127 if (qstr_case_eq(name, &q_cache)) {
Daniel Rosenbergad905252017-01-25 13:48:45 -0800128 info->perm = PERM_ANDROID_PACKAGE_CACHE;
129 info->under_cache = true;
130 }
131 break;
Daniel Campello35c9e242015-07-20 16:23:50 -0700132 }
133}
134
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800135void get_derived_permission(struct dentry *parent, struct dentry *dentry)
136{
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800137 get_derived_permission_new(parent, dentry, &dentry->d_name);
Daniel Rosenbergad905252017-01-25 13:48:45 -0800138}
139
140static appid_t get_type(const char *name)
141{
142 const char *ext = strrchr(name, '.');
143 appid_t id;
144
145 if (ext && ext[0]) {
146 ext = &ext[1];
147 id = get_ext_gid(ext);
148 return id?:AID_MEDIA_RW;
149 }
150 return AID_MEDIA_RW;
151}
152
153void fixup_lower_ownership(struct dentry *dentry, const char *name)
154{
155 struct path path;
156 struct inode *inode;
157 struct inode *delegated_inode = NULL;
158 int error;
159 struct sdcardfs_inode_info *info;
160 struct sdcardfs_inode_info *info_top;
161 perm_t perm;
162 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dentry->d_sb);
163 uid_t uid = sbi->options.fs_low_uid;
164 gid_t gid = sbi->options.fs_low_gid;
165 struct iattr newattrs;
166
167 info = SDCARDFS_I(d_inode(dentry));
168 perm = info->perm;
169 if (info->under_obb) {
170 perm = PERM_ANDROID_OBB;
171 } else if (info->under_cache) {
172 perm = PERM_ANDROID_PACKAGE_CACHE;
173 } else if (perm == PERM_INHERIT) {
174 info_top = SDCARDFS_I(grab_top(info));
175 perm = info_top->perm;
176 release_top(info);
177 }
178
179 switch (perm) {
180 case PERM_ROOT:
181 case PERM_ANDROID:
182 case PERM_ANDROID_DATA:
183 case PERM_ANDROID_MEDIA:
184 case PERM_ANDROID_PACKAGE:
185 case PERM_ANDROID_PACKAGE_CACHE:
186 uid = multiuser_get_uid(info->userid, uid);
187 break;
188 case PERM_ANDROID_OBB:
189 uid = AID_MEDIA_OBB;
190 break;
191 case PERM_PRE_ROOT:
192 default:
193 break;
194 }
195 switch (perm) {
196 case PERM_ROOT:
197 case PERM_ANDROID:
198 case PERM_ANDROID_DATA:
199 case PERM_ANDROID_MEDIA:
200 if (S_ISDIR(d_inode(dentry)->i_mode))
201 gid = multiuser_get_uid(info->userid, AID_MEDIA_RW);
202 else
203 gid = multiuser_get_uid(info->userid, get_type(name));
204 break;
205 case PERM_ANDROID_OBB:
206 gid = AID_MEDIA_OBB;
207 break;
208 case PERM_ANDROID_PACKAGE:
209 if (info->d_uid != 0)
210 gid = multiuser_get_ext_gid(info->userid, info->d_uid);
211 else
212 gid = multiuser_get_uid(info->userid, uid);
213 break;
214 case PERM_ANDROID_PACKAGE_CACHE:
215 if (info->d_uid != 0)
216 gid = multiuser_get_cache_gid(info->userid, info->d_uid);
217 else
218 gid = multiuser_get_uid(info->userid, uid);
219 break;
220 case PERM_PRE_ROOT:
221 default:
222 break;
223 }
224
225 sdcardfs_get_lower_path(dentry, &path);
226 inode = d_inode(path.dentry);
227 if (d_inode(path.dentry)->i_gid.val != gid || d_inode(path.dentry)->i_uid.val != uid) {
228retry_deleg:
229 newattrs.ia_valid = ATTR_GID | ATTR_UID | ATTR_FORCE;
230 newattrs.ia_uid = make_kuid(current_user_ns(), uid);
231 newattrs.ia_gid = make_kgid(current_user_ns(), gid);
232 if (!S_ISDIR(inode->i_mode))
233 newattrs.ia_valid |=
234 ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
235 inode_lock(inode);
236 error = security_path_chown(&path, newattrs.ia_uid, newattrs.ia_gid);
237 if (!error)
238 error = notify_change2(path.mnt, path.dentry, &newattrs, &delegated_inode);
239 inode_unlock(inode);
240 if (delegated_inode) {
241 error = break_deleg_wait(&delegated_inode);
242 if (!error)
243 goto retry_deleg;
244 }
245 if (error)
246 pr_err("sdcardfs: Failed to touch up lower fs gid/uid.\n");
247 }
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800248}
249
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800250static int descendant_may_need_fixup(struct sdcardfs_inode_info *info, struct limit_search *limit)
251{
252 if (info->perm == PERM_ROOT)
253 return (limit->flags & BY_USERID)?info->userid == limit->userid:1;
254 if (info->perm == PERM_PRE_ROOT || info->perm == PERM_ANDROID)
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700255 return 1;
256 return 0;
257}
258
259static int needs_fixup(perm_t perm) {
260 if (perm == PERM_ANDROID_DATA || perm == PERM_ANDROID_OBB
261 || perm == PERM_ANDROID_MEDIA)
262 return 1;
263 return 0;
264}
265
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800266void fixup_perms_recursive(struct dentry *dentry, struct limit_search *limit)
267{
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700268 struct dentry *child;
269 struct sdcardfs_inode_info *info;
270 if (!dget(dentry))
271 return;
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800272 if (!d_inode(dentry)) {
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700273 dput(dentry);
274 return;
275 }
276 info = SDCARDFS_I(d_inode(dentry));
277
278 if (needs_fixup(info->perm)) {
Daniel Rosenberg3adfc032016-12-27 12:36:29 -0800279 spin_lock(&dentry->d_lock);
280 list_for_each_entry(child, &dentry->d_subdirs, d_child) {
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800281 dget(child);
282 if (!(limit->flags & BY_NAME) || !strncasecmp(child->d_name.name, limit->name, limit->length)) {
283 if (d_inode(child)) {
284 get_derived_permission(dentry, child);
285 fixup_tmp_permissions(d_inode(child));
286 dput(child);
287 break;
Daniel Rosenberg3adfc032016-12-27 12:36:29 -0800288 }
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800289 }
290 dput(child);
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700291 }
Daniel Rosenberg3adfc032016-12-27 12:36:29 -0800292 spin_unlock(&dentry->d_lock);
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800293 } else if (descendant_may_need_fixup(info, limit)) {
Daniel Rosenberg3adfc032016-12-27 12:36:29 -0800294 spin_lock(&dentry->d_lock);
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700295 list_for_each_entry(child, &dentry->d_subdirs, d_child) {
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800296 fixup_perms_recursive(child, limit);
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700297 }
Daniel Rosenberg3adfc032016-12-27 12:36:29 -0800298 spin_unlock(&dentry->d_lock);
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700299 }
300 dput(dentry);
301}
302
Daniel Rosenbergad905252017-01-25 13:48:45 -0800303void drop_recursive(struct dentry *parent)
304{
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800305 struct dentry *dentry;
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700306 struct sdcardfs_inode_info *info;
307 if (!d_inode(parent))
308 return;
309 info = SDCARDFS_I(d_inode(parent));
Daniel Rosenbergcb1b9452016-08-16 15:19:26 -0700310 spin_lock(&parent->d_lock);
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800311 list_for_each_entry(dentry, &parent->d_subdirs, d_child) {
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700312 if (d_inode(dentry)) {
313 if (SDCARDFS_I(d_inode(parent))->top != SDCARDFS_I(d_inode(dentry))->top) {
Daniel Rosenbergad905252017-01-25 13:48:45 -0800314 drop_recursive(dentry);
315 d_drop(dentry);
316 }
317 }
318 }
319 spin_unlock(&parent->d_lock);
320}
321
322void fixup_top_recursive(struct dentry *parent)
323{
324 struct dentry *dentry;
325 struct sdcardfs_inode_info *info;
326
327 if (!d_inode(parent))
328 return;
329 info = SDCARDFS_I(d_inode(parent));
330 spin_lock(&parent->d_lock);
331 list_for_each_entry(dentry, &parent->d_subdirs, d_child) {
332 if (d_inode(dentry)) {
333 if (SDCARDFS_I(d_inode(parent))->top != SDCARDFS_I(d_inode(dentry))->top) {
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700334 get_derived_permission(parent, dentry);
Daniel Rosenberg90219272016-10-26 20:27:20 -0700335 fixup_tmp_permissions(d_inode(dentry));
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700336 fixup_top_recursive(dentry);
337 }
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800338 }
339 }
Daniel Rosenbergcb1b9452016-08-16 15:19:26 -0700340 spin_unlock(&parent->d_lock);
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800341}
342
Daniel Campello35c9e242015-07-20 16:23:50 -0700343/* main function for updating derived permission */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800344inline void update_derived_permission_lock(struct dentry *dentry)
Daniel Campello35c9e242015-07-20 16:23:50 -0700345{
346 struct dentry *parent;
347
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800348 if(!dentry || !d_inode(dentry)) {
Daniel Campello35c9e242015-07-20 16:23:50 -0700349 printk(KERN_ERR "sdcardfs: %s: invalid dentry\n", __func__);
350 return;
351 }
352 /* FIXME:
353 * 1. need to check whether the dentry is updated or not
354 * 2. remove the root dentry update
355 */
356 if(IS_ROOT(dentry)) {
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800357 //setup_default_pre_root_state(d_inode(dentry));
Daniel Campello35c9e242015-07-20 16:23:50 -0700358 } else {
359 parent = dget_parent(dentry);
360 if(parent) {
361 get_derived_permission(parent, dentry);
362 dput(parent);
363 }
364 }
Daniel Rosenberg90219272016-10-26 20:27:20 -0700365 fixup_tmp_permissions(d_inode(dentry));
Daniel Campello35c9e242015-07-20 16:23:50 -0700366}
367
368int need_graft_path(struct dentry *dentry)
369{
370 int ret = 0;
371 struct dentry *parent = dget_parent(dentry);
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800372 struct sdcardfs_inode_info *parent_info= SDCARDFS_I(d_inode(parent));
Daniel Campello35c9e242015-07-20 16:23:50 -0700373 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dentry->d_sb);
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800374 struct qstr obb = QSTR_LITERAL("obb");
Daniel Campello35c9e242015-07-20 16:23:50 -0700375
376 if(parent_info->perm == PERM_ANDROID &&
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800377 qstr_case_eq(&dentry->d_name, &obb)) {
Daniel Campello35c9e242015-07-20 16:23:50 -0700378
379 /* /Android/obb is the base obbpath of DERIVED_UNIFIED */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800380 if(!(sbi->options.multiuser == false
Daniel Campello35c9e242015-07-20 16:23:50 -0700381 && parent_info->userid == 0)) {
382 ret = 1;
383 }
384 }
385 dput(parent);
386 return ret;
387}
388
389int is_obbpath_invalid(struct dentry *dent)
390{
391 int ret = 0;
392 struct sdcardfs_dentry_info *di = SDCARDFS_D(dent);
393 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dent->d_sb);
394 char *path_buf, *obbpath_s;
395
396 /* check the base obbpath has been changed.
397 * this routine can check an uninitialized obb dentry as well.
398 * regarding the uninitialized obb, refer to the sdcardfs_mkdir() */
399 spin_lock(&di->lock);
400 if(di->orig_path.dentry) {
401 if(!di->lower_path.dentry) {
402 ret = 1;
403 } else {
404 path_get(&di->lower_path);
405 //lower_parent = lock_parent(lower_path->dentry);
406
407 path_buf = kmalloc(PATH_MAX, GFP_ATOMIC);
408 if(!path_buf) {
409 ret = 1;
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800410 printk(KERN_ERR "sdcardfs: fail to allocate path_buf in %s.\n", __func__);
Daniel Campello35c9e242015-07-20 16:23:50 -0700411 } else {
412 obbpath_s = d_path(&di->lower_path, path_buf, PATH_MAX);
413 if (d_unhashed(di->lower_path.dentry) ||
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800414 !str_case_eq(sbi->obbpath_s, obbpath_s)) {
Daniel Campello35c9e242015-07-20 16:23:50 -0700415 ret = 1;
416 }
417 kfree(path_buf);
418 }
419
420 //unlock_dir(lower_parent);
421 path_put(&di->lower_path);
422 }
423 }
424 spin_unlock(&di->lock);
425 return ret;
426}
427
428int is_base_obbpath(struct dentry *dentry)
429{
430 int ret = 0;
431 struct dentry *parent = dget_parent(dentry);
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800432 struct sdcardfs_inode_info *parent_info= SDCARDFS_I(d_inode(parent));
Daniel Campello35c9e242015-07-20 16:23:50 -0700433 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dentry->d_sb);
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800434 struct qstr q_obb = QSTR_LITERAL("obb");
Daniel Campello35c9e242015-07-20 16:23:50 -0700435
436 spin_lock(&SDCARDFS_D(dentry)->lock);
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800437 if (sbi->options.multiuser) {
438 if(parent_info->perm == PERM_PRE_ROOT &&
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800439 qstr_case_eq(&dentry->d_name, &q_obb)) {
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800440 ret = 1;
441 }
442 } else if (parent_info->perm == PERM_ANDROID &&
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800443 qstr_case_eq(&dentry->d_name, &q_obb)) {
Daniel Campello35c9e242015-07-20 16:23:50 -0700444 ret = 1;
445 }
Daniel Campello35c9e242015-07-20 16:23:50 -0700446 spin_unlock(&SDCARDFS_D(dentry)->lock);
Daniel Campello35c9e242015-07-20 16:23:50 -0700447 return ret;
448}
449
450/* The lower_path will be stored to the dentry's orig_path
451 * and the base obbpath will be copyed to the lower_path variable.
452 * if an error returned, there's no change in the lower_path
453 * returns: -ERRNO if error (0: no error) */
454int setup_obb_dentry(struct dentry *dentry, struct path *lower_path)
455{
456 int err = 0;
457 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dentry->d_sb);
458 struct path obbpath;
459
460 /* A local obb dentry must have its own orig_path to support rmdir
461 * and mkdir of itself. Usually, we expect that the sbi->obbpath
462 * is avaiable on this stage. */
463 sdcardfs_set_orig_path(dentry, lower_path);
464
465 err = kern_path(sbi->obbpath_s,
466 LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &obbpath);
467
468 if(!err) {
469 /* the obbpath base has been found */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800470 printk(KERN_INFO "sdcardfs: the sbi->obbpath is found\n");
Daniel Campello35c9e242015-07-20 16:23:50 -0700471 pathcpy(lower_path, &obbpath);
472 } else {
473 /* if the sbi->obbpath is not available, we can optionally
474 * setup the lower_path with its orig_path.
475 * but, the current implementation just returns an error
476 * because the sdcard daemon also regards this case as
477 * a lookup fail. */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800478 printk(KERN_INFO "sdcardfs: the sbi->obbpath is not available\n");
Daniel Campello35c9e242015-07-20 16:23:50 -0700479 }
480 return err;
481}
482
483