blob: f47884b7d397ef4c15fc1114e6d049a9482c87f0 [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 Rosenbergf61bc5a2017-02-16 17:55:22 -0800248 sdcardfs_put_lower_path(dentry, &path);
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800249}
250
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800251static int descendant_may_need_fixup(struct sdcardfs_inode_info *info, struct limit_search *limit)
252{
253 if (info->perm == PERM_ROOT)
254 return (limit->flags & BY_USERID)?info->userid == limit->userid:1;
255 if (info->perm == PERM_PRE_ROOT || info->perm == PERM_ANDROID)
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700256 return 1;
257 return 0;
258}
259
260static int needs_fixup(perm_t perm) {
261 if (perm == PERM_ANDROID_DATA || perm == PERM_ANDROID_OBB
262 || perm == PERM_ANDROID_MEDIA)
263 return 1;
264 return 0;
265}
266
Daniel Rosenbergfb4d1912017-03-02 15:11:27 -0800267static void __fixup_perms_recursive(struct dentry *dentry, struct limit_search *limit, int depth)
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800268{
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700269 struct dentry *child;
270 struct sdcardfs_inode_info *info;
Daniel Rosenbergfb4d1912017-03-02 15:11:27 -0800271
272 /*
273 * All paths will terminate their recursion on hitting PERM_ANDROID_OBB,
274 * PERM_ANDROID_MEDIA, or PERM_ANDROID_DATA. This happens at a depth of
275 * at most 3.
276 */
277 WARN(depth > 3, "%s: Max expected depth exceeded!\n", __func__);
278 spin_lock_nested(&dentry->d_lock, depth);
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800279 if (!d_inode(dentry)) {
Daniel Rosenbergfb4d1912017-03-02 15:11:27 -0800280 spin_unlock(&dentry->d_lock);
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700281 return;
282 }
283 info = SDCARDFS_I(d_inode(dentry));
284
285 if (needs_fixup(info->perm)) {
Daniel Rosenberg3adfc032016-12-27 12:36:29 -0800286 list_for_each_entry(child, &dentry->d_subdirs, d_child) {
Daniel Rosenbergfb4d1912017-03-02 15:11:27 -0800287 spin_lock_nested(&child->d_lock, depth + 1);
Daniel Rosenberg721274a2017-03-08 17:20:02 -0800288 if (!(limit->flags & BY_NAME) || qstr_case_eq(&child->d_name, &limit->name)) {
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800289 if (d_inode(child)) {
290 get_derived_permission(dentry, child);
291 fixup_tmp_permissions(d_inode(child));
Daniel Rosenbergfb4d1912017-03-02 15:11:27 -0800292 spin_unlock(&child->d_lock);
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800293 break;
Daniel Rosenberg3adfc032016-12-27 12:36:29 -0800294 }
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800295 }
Daniel Rosenbergfb4d1912017-03-02 15:11:27 -0800296 spin_unlock(&child->d_lock);
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700297 }
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800298 } else if (descendant_may_need_fixup(info, limit)) {
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700299 list_for_each_entry(child, &dentry->d_subdirs, d_child) {
Daniel Rosenbergfb4d1912017-03-02 15:11:27 -0800300 __fixup_perms_recursive(child, limit, depth + 1);
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700301 }
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700302 }
Daniel Rosenbergfb4d1912017-03-02 15:11:27 -0800303 spin_unlock(&dentry->d_lock);
304}
305
306void fixup_perms_recursive(struct dentry *dentry, struct limit_search *limit)
307{
308 __fixup_perms_recursive(dentry, limit, 0);
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700309}
310
Daniel Campello35c9e242015-07-20 16:23:50 -0700311/* main function for updating derived permission */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800312inline void update_derived_permission_lock(struct dentry *dentry)
Daniel Campello35c9e242015-07-20 16:23:50 -0700313{
314 struct dentry *parent;
315
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800316 if(!dentry || !d_inode(dentry)) {
Daniel Campello35c9e242015-07-20 16:23:50 -0700317 printk(KERN_ERR "sdcardfs: %s: invalid dentry\n", __func__);
318 return;
319 }
320 /* FIXME:
321 * 1. need to check whether the dentry is updated or not
322 * 2. remove the root dentry update
323 */
324 if(IS_ROOT(dentry)) {
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800325 //setup_default_pre_root_state(d_inode(dentry));
Daniel Campello35c9e242015-07-20 16:23:50 -0700326 } else {
327 parent = dget_parent(dentry);
328 if(parent) {
329 get_derived_permission(parent, dentry);
330 dput(parent);
331 }
332 }
Daniel Rosenberg90219272016-10-26 20:27:20 -0700333 fixup_tmp_permissions(d_inode(dentry));
Daniel Campello35c9e242015-07-20 16:23:50 -0700334}
335
336int need_graft_path(struct dentry *dentry)
337{
338 int ret = 0;
339 struct dentry *parent = dget_parent(dentry);
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800340 struct sdcardfs_inode_info *parent_info= SDCARDFS_I(d_inode(parent));
Daniel Campello35c9e242015-07-20 16:23:50 -0700341 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dentry->d_sb);
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800342 struct qstr obb = QSTR_LITERAL("obb");
Daniel Campello35c9e242015-07-20 16:23:50 -0700343
344 if(parent_info->perm == PERM_ANDROID &&
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800345 qstr_case_eq(&dentry->d_name, &obb)) {
Daniel Campello35c9e242015-07-20 16:23:50 -0700346
347 /* /Android/obb is the base obbpath of DERIVED_UNIFIED */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800348 if(!(sbi->options.multiuser == false
Daniel Campello35c9e242015-07-20 16:23:50 -0700349 && parent_info->userid == 0)) {
350 ret = 1;
351 }
352 }
353 dput(parent);
354 return ret;
355}
356
357int is_obbpath_invalid(struct dentry *dent)
358{
359 int ret = 0;
360 struct sdcardfs_dentry_info *di = SDCARDFS_D(dent);
361 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dent->d_sb);
362 char *path_buf, *obbpath_s;
Daniel Rosenberge2538da2017-03-10 13:54:30 -0800363 int need_put = 0;
364 struct path lower_path;
Daniel Campello35c9e242015-07-20 16:23:50 -0700365
366 /* check the base obbpath has been changed.
367 * this routine can check an uninitialized obb dentry as well.
368 * regarding the uninitialized obb, refer to the sdcardfs_mkdir() */
369 spin_lock(&di->lock);
370 if(di->orig_path.dentry) {
371 if(!di->lower_path.dentry) {
372 ret = 1;
373 } else {
374 path_get(&di->lower_path);
375 //lower_parent = lock_parent(lower_path->dentry);
376
377 path_buf = kmalloc(PATH_MAX, GFP_ATOMIC);
378 if(!path_buf) {
379 ret = 1;
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800380 printk(KERN_ERR "sdcardfs: fail to allocate path_buf in %s.\n", __func__);
Daniel Campello35c9e242015-07-20 16:23:50 -0700381 } else {
382 obbpath_s = d_path(&di->lower_path, path_buf, PATH_MAX);
383 if (d_unhashed(di->lower_path.dentry) ||
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800384 !str_case_eq(sbi->obbpath_s, obbpath_s)) {
Daniel Campello35c9e242015-07-20 16:23:50 -0700385 ret = 1;
386 }
387 kfree(path_buf);
388 }
389
390 //unlock_dir(lower_parent);
Daniel Rosenberge2538da2017-03-10 13:54:30 -0800391 pathcpy(&lower_path, &di->lower_path);
392 need_put = 1;
Daniel Campello35c9e242015-07-20 16:23:50 -0700393 }
394 }
395 spin_unlock(&di->lock);
Daniel Rosenberge2538da2017-03-10 13:54:30 -0800396 if (need_put)
397 path_put(&lower_path);
Daniel Campello35c9e242015-07-20 16:23:50 -0700398 return ret;
399}
400
401int is_base_obbpath(struct dentry *dentry)
402{
403 int ret = 0;
404 struct dentry *parent = dget_parent(dentry);
Daniel Rosenberg63d20762016-12-01 14:36:29 -0800405 struct sdcardfs_inode_info *parent_info= SDCARDFS_I(d_inode(parent));
Daniel Campello35c9e242015-07-20 16:23:50 -0700406 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dentry->d_sb);
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800407 struct qstr q_obb = QSTR_LITERAL("obb");
Daniel Campello35c9e242015-07-20 16:23:50 -0700408
409 spin_lock(&SDCARDFS_D(dentry)->lock);
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800410 if (sbi->options.multiuser) {
411 if(parent_info->perm == PERM_PRE_ROOT &&
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800412 qstr_case_eq(&dentry->d_name, &q_obb)) {
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800413 ret = 1;
414 }
415 } else if (parent_info->perm == PERM_ANDROID &&
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800416 qstr_case_eq(&dentry->d_name, &q_obb)) {
Daniel Campello35c9e242015-07-20 16:23:50 -0700417 ret = 1;
418 }
Daniel Campello35c9e242015-07-20 16:23:50 -0700419 spin_unlock(&SDCARDFS_D(dentry)->lock);
Daniel Campello35c9e242015-07-20 16:23:50 -0700420 return ret;
421}
422
423/* The lower_path will be stored to the dentry's orig_path
424 * and the base obbpath will be copyed to the lower_path variable.
425 * if an error returned, there's no change in the lower_path
426 * returns: -ERRNO if error (0: no error) */
427int setup_obb_dentry(struct dentry *dentry, struct path *lower_path)
428{
429 int err = 0;
430 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dentry->d_sb);
431 struct path obbpath;
432
433 /* A local obb dentry must have its own orig_path to support rmdir
434 * and mkdir of itself. Usually, we expect that the sbi->obbpath
435 * is avaiable on this stage. */
436 sdcardfs_set_orig_path(dentry, lower_path);
437
438 err = kern_path(sbi->obbpath_s,
439 LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &obbpath);
440
441 if(!err) {
442 /* the obbpath base has been found */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800443 printk(KERN_INFO "sdcardfs: the sbi->obbpath is found\n");
Daniel Campello35c9e242015-07-20 16:23:50 -0700444 pathcpy(lower_path, &obbpath);
445 } else {
446 /* if the sbi->obbpath is not available, we can optionally
447 * setup the lower_path with its orig_path.
448 * but, the current implementation just returns an error
449 * because the sdcard daemon also regards this case as
450 * a lookup fail. */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800451 printk(KERN_INFO "sdcardfs: the sbi->obbpath is not available\n");
Daniel Campello35c9e242015-07-20 16:23:50 -0700452 }
453 return err;
454}
455
456