blob: 6219771ed71c3b58454cfdfc1cfd8af8a860c67e [file] [log] [blame]
Daniel Campello35c9e242015-07-20 16:23:50 -07001/*
2 * fs/sdcardfs/sdcardfs.h
3 *
4 * The sdcardfs v2.0
5 * This file system replaces the sdcard daemon on Android
6 * On version 2.0, some of the daemon functions have been ported
7 * to support the multi-user concepts of Android 4.4
8 *
9 * Copyright (c) 2013 Samsung Electronics Co. Ltd
10 * Authors: Daeho Jeong, Woojoong Lee, Seunghwan Hyun,
11 * Sunghwan Yun, Sungjong Seo
12 *
13 * This program has been developed as a stackable file system based on
14 * the WrapFS which written by
15 *
16 * Copyright (c) 1998-2011 Erez Zadok
17 * Copyright (c) 2009 Shrikar Archak
18 * Copyright (c) 2003-2011 Stony Brook University
19 * Copyright (c) 2003-2011 The Research Foundation of SUNY
20 *
21 * This file is dual licensed. It may be redistributed and/or modified
22 * under the terms of the Apache 2.0 License OR version 2 of the GNU
23 * General Public License.
24 */
25
26#ifndef _SDCARDFS_H_
27#define _SDCARDFS_H_
28
29#include <linux/dcache.h>
30#include <linux/file.h>
31#include <linux/fs.h>
Daniel Rosenberg85626b42017-02-24 15:49:45 -080032#include <linux/aio.h>
Daniel Rosenberga56a1052017-05-15 14:03:15 -070033#include <linux/kref.h>
Daniel Campello35c9e242015-07-20 16:23:50 -070034#include <linux/mm.h>
35#include <linux/mount.h>
36#include <linux/namei.h>
37#include <linux/seq_file.h>
38#include <linux/statfs.h>
39#include <linux/fs_stack.h>
40#include <linux/magic.h>
41#include <linux/uaccess.h>
42#include <linux/slab.h>
43#include <linux/sched.h>
44#include <linux/types.h>
45#include <linux/security.h>
46#include <linux/string.h>
Daniel Rosenberg497ac902016-02-03 21:08:21 -080047#include <linux/list.h>
Daniel Campello35c9e242015-07-20 16:23:50 -070048#include "multiuser.h"
49
50/* the file system name */
51#define SDCARDFS_NAME "sdcardfs"
52
53/* sdcardfs root inode number */
54#define SDCARDFS_ROOT_INO 1
55
56/* useful for tracking code reachability */
Daniel Rosenberg77ecf212017-03-16 17:46:13 -070057#define UDBG pr_default("DBG:%s:%s:%d\n", __FILE__, __func__, __LINE__)
Daniel Campello35c9e242015-07-20 16:23:50 -070058
59#define SDCARDFS_DIRENT_SIZE 256
60
61/* temporary static uid settings for development */
62#define AID_ROOT 0 /* uid for accessing /mnt/sdcard & extSdcard */
63#define AID_MEDIA_RW 1023 /* internal media storage write access */
64
65#define AID_SDCARD_RW 1015 /* external storage write access */
66#define AID_SDCARD_R 1028 /* external storage read access */
67#define AID_SDCARD_PICS 1033 /* external storage photos access */
68#define AID_SDCARD_AV 1034 /* external storage audio/video access */
69#define AID_SDCARD_ALL 1035 /* access all users external storage */
Daniel Rosenbergad905252017-01-25 13:48:45 -080070#define AID_MEDIA_OBB 1059 /* obb files */
71
72#define AID_SDCARD_IMAGE 1057
Daniel Campello35c9e242015-07-20 16:23:50 -070073
74#define AID_PACKAGE_INFO 1027
75
Daniel Rosenberg90219272016-10-26 20:27:20 -070076
77/*
78 * Permissions are handled by our permission function.
79 * We don't want anyone who happens to look at our inode value to prematurely
80 * block access, so store more permissive values. These are probably never
81 * used.
82 */
83#define fixup_tmp_permissions(x) \
Daniel Campello35c9e242015-07-20 16:23:50 -070084 do { \
Daniel Rosenberga56a1052017-05-15 14:03:15 -070085 (x)->i_uid = make_kuid(&init_user_ns, \
86 SDCARDFS_I(x)->data->d_uid); \
Daniel Rosenberg90219272016-10-26 20:27:20 -070087 (x)->i_gid = make_kgid(&init_user_ns, AID_SDCARD_RW); \
88 (x)->i_mode = ((x)->i_mode & S_IFMT) | 0775;\
Daniel Campello35c9e242015-07-20 16:23:50 -070089 } while (0)
90
Daniel Rosenberg497ac902016-02-03 21:08:21 -080091/* Android 5.0 support */
Daniel Campello35c9e242015-07-20 16:23:50 -070092
93/* Permission mode for a specific node. Controls how file permissions
Daniel Rosenberg5e024f62017-03-16 17:42:58 -070094 * are derived for children nodes.
95 */
Daniel Campello35c9e242015-07-20 16:23:50 -070096typedef enum {
Daniel Rosenberg5e024f62017-03-16 17:42:58 -070097 /* Nothing special; this node should just inherit from its parent. */
98 PERM_INHERIT,
99 /* This node is one level above a normal root; used for legacy layouts
100 * which use the first level to represent user_id.
101 */
102 PERM_PRE_ROOT,
103 /* This node is "/" */
104 PERM_ROOT,
105 /* This node is "/Android" */
106 PERM_ANDROID,
107 /* This node is "/Android/data" */
108 PERM_ANDROID_DATA,
109 /* This node is "/Android/obb" */
110 PERM_ANDROID_OBB,
111 /* This node is "/Android/media" */
112 PERM_ANDROID_MEDIA,
113 /* This node is "/Android/[data|media|obb]/[package]" */
114 PERM_ANDROID_PACKAGE,
115 /* This node is "/Android/[data|media|obb]/[package]/cache" */
116 PERM_ANDROID_PACKAGE_CACHE,
Daniel Campello35c9e242015-07-20 16:23:50 -0700117} perm_t;
118
Daniel Campello35c9e242015-07-20 16:23:50 -0700119struct sdcardfs_sb_info;
120struct sdcardfs_mount_options;
Daniel Rosenbergad905252017-01-25 13:48:45 -0800121struct sdcardfs_inode_info;
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700122struct sdcardfs_inode_data;
Daniel Campello35c9e242015-07-20 16:23:50 -0700123
124/* Do not directly use this function. Use OVERRIDE_CRED() instead. */
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700125const struct cred *override_fsids(struct sdcardfs_sb_info *sbi,
126 struct sdcardfs_inode_data *data);
Daniel Campello35c9e242015-07-20 16:23:50 -0700127/* Do not directly use this function, use REVERT_CRED() instead. */
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700128void revert_fsids(const struct cred *old_cred);
Daniel Campello35c9e242015-07-20 16:23:50 -0700129
130/* operations vectors defined in specific files */
131extern const struct file_operations sdcardfs_main_fops;
132extern const struct file_operations sdcardfs_dir_fops;
133extern const struct inode_operations sdcardfs_main_iops;
134extern const struct inode_operations sdcardfs_dir_iops;
135extern const struct inode_operations sdcardfs_symlink_iops;
136extern const struct super_operations sdcardfs_sops;
137extern const struct dentry_operations sdcardfs_ci_dops;
138extern const struct address_space_operations sdcardfs_aops, sdcardfs_dummy_aops;
139extern const struct vm_operations_struct sdcardfs_vm_ops;
140
141extern int sdcardfs_init_inode_cache(void);
142extern void sdcardfs_destroy_inode_cache(void);
143extern int sdcardfs_init_dentry_cache(void);
144extern void sdcardfs_destroy_dentry_cache(void);
145extern int new_dentry_private_data(struct dentry *dentry);
146extern void free_dentry_private_data(struct dentry *dentry);
147extern struct dentry *sdcardfs_lookup(struct inode *dir, struct dentry *dentry,
Daniel Campellod1d080c2015-07-20 16:27:37 -0700148 unsigned int flags);
149extern struct inode *sdcardfs_iget(struct super_block *sb,
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800150 struct inode *lower_inode, userid_t id);
Daniel Campello35c9e242015-07-20 16:23:50 -0700151extern int sdcardfs_interpose(struct dentry *dentry, struct super_block *sb,
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800152 struct path *lower_path, userid_t id);
Daniel Campello35c9e242015-07-20 16:23:50 -0700153
154/* file private data */
155struct sdcardfs_file_info {
156 struct file *lower_file;
157 const struct vm_operations_struct *lower_vm_ops;
158};
159
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700160struct sdcardfs_inode_data {
161 struct kref refcount;
162 bool abandoned;
163
Daniel Campello35c9e242015-07-20 16:23:50 -0700164 perm_t perm;
165 userid_t userid;
166 uid_t d_uid;
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800167 bool under_android;
Daniel Rosenbergad905252017-01-25 13:48:45 -0800168 bool under_cache;
169 bool under_obb;
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700170};
171
172/* sdcardfs inode data in memory */
173struct sdcardfs_inode_info {
174 struct inode *lower_inode;
175 /* state derived based on current position in hierarchy */
176 struct sdcardfs_inode_data *data;
177
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700178 /* top folder for ownership */
Daniel Rosenberg47af77b2018-02-01 16:52:22 -0800179 spinlock_t top_lock;
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700180 struct sdcardfs_inode_data *top_data;
Daniel Campello35c9e242015-07-20 16:23:50 -0700181
182 struct inode vfs_inode;
183};
184
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800185
Daniel Campello35c9e242015-07-20 16:23:50 -0700186/* sdcardfs dentry data in memory */
187struct sdcardfs_dentry_info {
188 spinlock_t lock; /* protects lower_path */
189 struct path lower_path;
190 struct path orig_path;
191};
192
193struct sdcardfs_mount_options {
194 uid_t fs_low_uid;
195 gid_t fs_low_gid;
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800196 userid_t fs_user_id;
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800197 bool multiuser;
Daniel Rosenberg7d10e432017-07-19 17:25:07 -0700198 bool gid_derivation;
Daniel Rosenberge12a9c42018-01-18 16:17:16 -0800199 bool default_normal;
Daniel Rosenberg961ef0a2018-10-25 16:25:15 -0700200 bool unshared_obb;
Daniel Campello35c9e242015-07-20 16:23:50 -0700201 unsigned int reserved_mb;
Daniel Rosenberg80af4332018-07-06 16:24:27 -0700202 bool nocache;
Daniel Campello35c9e242015-07-20 16:23:50 -0700203};
204
Daniel Rosenberg317e7702016-10-26 17:36:05 -0700205struct sdcardfs_vfsmount_options {
206 gid_t gid;
207 mode_t mask;
208};
209
210extern int parse_options_remount(struct super_block *sb, char *options, int silent,
211 struct sdcardfs_vfsmount_options *vfsopts);
212
Daniel Campello35c9e242015-07-20 16:23:50 -0700213/* sdcardfs super-block data in memory */
214struct sdcardfs_sb_info {
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800215 struct super_block *sb;
Daniel Campello35c9e242015-07-20 16:23:50 -0700216 struct super_block *lower_sb;
217 /* derived perm policy : some of options have been added
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700218 * to sdcardfs_mount_options (Android 4.4 support)
219 */
Daniel Campello35c9e242015-07-20 16:23:50 -0700220 struct sdcardfs_mount_options options;
221 spinlock_t lock; /* protects obbpath */
222 char *obbpath_s;
223 struct path obbpath;
224 void *pkgl_id;
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800225 struct list_head list;
Daniel Campello35c9e242015-07-20 16:23:50 -0700226};
227
228/*
229 * inode to private data
230 *
231 * Since we use containers and the struct inode is _inside_ the
232 * sdcardfs_inode_info structure, SDCARDFS_I will always (given a non-NULL
233 * inode pointer), return a valid non-NULL pointer.
234 */
235static inline struct sdcardfs_inode_info *SDCARDFS_I(const struct inode *inode)
236{
237 return container_of(inode, struct sdcardfs_inode_info, vfs_inode);
238}
239
240/* dentry to private data */
241#define SDCARDFS_D(dent) ((struct sdcardfs_dentry_info *)(dent)->d_fsdata)
242
243/* superblock to private data */
244#define SDCARDFS_SB(super) ((struct sdcardfs_sb_info *)(super)->s_fs_info)
245
246/* file to private Data */
247#define SDCARDFS_F(file) ((struct sdcardfs_file_info *)((file)->private_data))
248
249/* file to lower file */
250static inline struct file *sdcardfs_lower_file(const struct file *f)
251{
252 return SDCARDFS_F(f)->lower_file;
253}
254
255static inline void sdcardfs_set_lower_file(struct file *f, struct file *val)
256{
257 SDCARDFS_F(f)->lower_file = val;
258}
259
260/* inode to lower inode. */
261static inline struct inode *sdcardfs_lower_inode(const struct inode *i)
262{
263 return SDCARDFS_I(i)->lower_inode;
264}
265
266static inline void sdcardfs_set_lower_inode(struct inode *i, struct inode *val)
267{
268 SDCARDFS_I(i)->lower_inode = val;
269}
270
271/* superblock to lower superblock */
272static inline struct super_block *sdcardfs_lower_super(
273 const struct super_block *sb)
274{
275 return SDCARDFS_SB(sb)->lower_sb;
276}
277
278static inline void sdcardfs_set_lower_super(struct super_block *sb,
279 struct super_block *val)
280{
281 SDCARDFS_SB(sb)->lower_sb = val;
282}
283
284/* path based (dentry/mnt) macros */
285static inline void pathcpy(struct path *dst, const struct path *src)
286{
287 dst->dentry = src->dentry;
288 dst->mnt = src->mnt;
289}
290
291/* sdcardfs_get_pname functions calls path_get()
292 * therefore, the caller must call "proper" path_put functions
293 */
294#define SDCARDFS_DENT_FUNC(pname) \
295static inline void sdcardfs_get_##pname(const struct dentry *dent, \
296 struct path *pname) \
297{ \
298 spin_lock(&SDCARDFS_D(dent)->lock); \
299 pathcpy(pname, &SDCARDFS_D(dent)->pname); \
300 path_get(pname); \
301 spin_unlock(&SDCARDFS_D(dent)->lock); \
302 return; \
303} \
304static inline void sdcardfs_put_##pname(const struct dentry *dent, \
305 struct path *pname) \
306{ \
307 path_put(pname); \
308 return; \
309} \
310static inline void sdcardfs_set_##pname(const struct dentry *dent, \
311 struct path *pname) \
312{ \
313 spin_lock(&SDCARDFS_D(dent)->lock); \
314 pathcpy(&SDCARDFS_D(dent)->pname, pname); \
315 spin_unlock(&SDCARDFS_D(dent)->lock); \
316 return; \
317} \
318static inline void sdcardfs_reset_##pname(const struct dentry *dent) \
319{ \
320 spin_lock(&SDCARDFS_D(dent)->lock); \
321 SDCARDFS_D(dent)->pname.dentry = NULL; \
322 SDCARDFS_D(dent)->pname.mnt = NULL; \
323 spin_unlock(&SDCARDFS_D(dent)->lock); \
324 return; \
325} \
326static inline void sdcardfs_put_reset_##pname(const struct dentry *dent) \
327{ \
328 struct path pname; \
329 spin_lock(&SDCARDFS_D(dent)->lock); \
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700330 if (SDCARDFS_D(dent)->pname.dentry) { \
Daniel Campello35c9e242015-07-20 16:23:50 -0700331 pathcpy(&pname, &SDCARDFS_D(dent)->pname); \
332 SDCARDFS_D(dent)->pname.dentry = NULL; \
333 SDCARDFS_D(dent)->pname.mnt = NULL; \
334 spin_unlock(&SDCARDFS_D(dent)->lock); \
335 path_put(&pname); \
336 } else \
337 spin_unlock(&SDCARDFS_D(dent)->lock); \
338 return; \
339}
340
341SDCARDFS_DENT_FUNC(lower_path)
342SDCARDFS_DENT_FUNC(orig_path)
343
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800344static inline bool sbinfo_has_sdcard_magic(struct sdcardfs_sb_info *sbinfo)
345{
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700346 return sbinfo && sbinfo->sb
347 && sbinfo->sb->s_magic == SDCARDFS_SUPER_MAGIC;
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800348}
349
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700350static inline struct sdcardfs_inode_data *data_get(
351 struct sdcardfs_inode_data *data)
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700352{
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700353 if (data)
354 kref_get(&data->refcount);
355 return data;
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700356}
357
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700358static inline struct sdcardfs_inode_data *top_data_get(
359 struct sdcardfs_inode_info *info)
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700360{
Daniel Rosenberg47af77b2018-02-01 16:52:22 -0800361 struct sdcardfs_inode_data *top_data;
362
363 spin_lock(&info->top_lock);
364 top_data = data_get(info->top_data);
365 spin_unlock(&info->top_lock);
366 return top_data;
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700367}
368
369extern void data_release(struct kref *ref);
370
371static inline void data_put(struct sdcardfs_inode_data *data)
372{
373 kref_put(&data->refcount, data_release);
374}
375
376static inline void release_own_data(struct sdcardfs_inode_info *info)
377{
378 /*
379 * This happens exactly once per inode. At this point, the inode that
380 * originally held this data is about to be freed, and all references
381 * to it are held as a top value, and will likely be released soon.
382 */
383 info->data->abandoned = true;
384 data_put(info->data);
385}
386
387static inline void set_top(struct sdcardfs_inode_info *info,
Daniel Rosenberg47af77b2018-02-01 16:52:22 -0800388 struct sdcardfs_inode_info *top_owner)
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700389{
Daniel Rosenberg47af77b2018-02-01 16:52:22 -0800390 struct sdcardfs_inode_data *old_top;
391 struct sdcardfs_inode_data *new_top = NULL;
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700392
Daniel Rosenberg47af77b2018-02-01 16:52:22 -0800393 if (top_owner)
394 new_top = top_data_get(top_owner);
395
396 spin_lock(&info->top_lock);
397 old_top = info->top_data;
398 info->top_data = new_top;
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700399 if (old_top)
400 data_put(old_top);
Daniel Rosenberg47af77b2018-02-01 16:52:22 -0800401 spin_unlock(&info->top_lock);
Daniel Rosenberg5080d242016-05-18 16:57:10 -0700402}
403
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700404static inline int get_gid(struct vfsmount *mnt,
Daniel Rosenberge12a9c42018-01-18 16:17:16 -0800405 struct super_block *sb,
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700406 struct sdcardfs_inode_data *data)
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700407{
Daniel Rosenberge12a9c42018-01-18 16:17:16 -0800408 struct sdcardfs_vfsmount_options *vfsopts = mnt->data;
409 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(sb);
Daniel Rosenberg90219272016-10-26 20:27:20 -0700410
Daniel Rosenberge12a9c42018-01-18 16:17:16 -0800411 if (vfsopts->gid == AID_SDCARD_RW && !sbi->options.default_normal)
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800412 /* As an optimization, certain trusted system components only run
413 * as owner but operate across all users. Since we're now handing
414 * out the sdcard_rw GID only to trusted apps, we're okay relaxing
415 * the user boundary enforcement for the default view. The UIDs
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700416 * assigned to app directories are still multiuser aware.
417 */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800418 return AID_SDCARD_RW;
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700419 else
Daniel Rosenberge12a9c42018-01-18 16:17:16 -0800420 return multiuser_get_uid(data->userid, vfsopts->gid);
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800421}
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700422
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700423static inline int get_mode(struct vfsmount *mnt,
424 struct sdcardfs_inode_info *info,
425 struct sdcardfs_inode_data *data)
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700426{
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800427 int owner_mode;
428 int filtered_mode;
Daniel Rosenberg90219272016-10-26 20:27:20 -0700429 struct sdcardfs_vfsmount_options *opts = mnt->data;
430 int visible_mode = 0775 & ~opts->mask;
431
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800432
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700433 if (data->perm == PERM_PRE_ROOT) {
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800434 /* Top of multi-user view should always be visible to ensure
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700435 * secondary users can traverse inside.
436 */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800437 visible_mode = 0711;
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700438 } else if (data->under_android) {
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800439 /* Block "other" access to Android directories, since only apps
440 * belonging to a specific user should be in there; we still
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700441 * leave +x open for the default view.
442 */
443 if (opts->gid == AID_SDCARD_RW)
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800444 visible_mode = visible_mode & ~0006;
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700445 else
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800446 visible_mode = visible_mode & ~0007;
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800447 }
448 owner_mode = info->lower_inode->i_mode & 0700;
449 filtered_mode = visible_mode & (owner_mode | (owner_mode >> 3) | (owner_mode >> 6));
450 return filtered_mode;
451}
452
Daniel Campello35c9e242015-07-20 16:23:50 -0700453static inline int has_graft_path(const struct dentry *dent)
454{
455 int ret = 0;
456
457 spin_lock(&SDCARDFS_D(dent)->lock);
458 if (SDCARDFS_D(dent)->orig_path.dentry != NULL)
459 ret = 1;
460 spin_unlock(&SDCARDFS_D(dent)->lock);
461
462 return ret;
463}
464
465static inline void sdcardfs_get_real_lower(const struct dentry *dent,
466 struct path *real_lower)
467{
468 /* in case of a local obb dentry
469 * the orig_path should be returned
470 */
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700471 if (has_graft_path(dent))
Daniel Campello35c9e242015-07-20 16:23:50 -0700472 sdcardfs_get_orig_path(dent, real_lower);
473 else
474 sdcardfs_get_lower_path(dent, real_lower);
475}
476
477static inline void sdcardfs_put_real_lower(const struct dentry *dent,
478 struct path *real_lower)
479{
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700480 if (has_graft_path(dent))
Daniel Campello35c9e242015-07-20 16:23:50 -0700481 sdcardfs_put_orig_path(dent, real_lower);
482 else
483 sdcardfs_put_lower_path(dent, real_lower);
484}
485
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800486extern struct mutex sdcardfs_super_list_lock;
487extern struct list_head sdcardfs_super_list;
488
Daniel Campello35c9e242015-07-20 16:23:50 -0700489/* for packagelist.c */
Daniel Rosenbergfbd34b62016-05-10 13:42:43 -0700490extern appid_t get_appid(const char *app_name);
Daniel Rosenbergad905252017-01-25 13:48:45 -0800491extern appid_t get_ext_gid(const char *app_name);
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800492extern appid_t is_excluded(const char *app_name, userid_t userid);
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800493extern int check_caller_access_to_name(struct inode *parent_node, const struct qstr *name);
Daniel Campello35c9e242015-07-20 16:23:50 -0700494extern int packagelist_init(void);
495extern void packagelist_exit(void);
496
497/* for derived_perm.c */
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800498#define BY_NAME (1 << 0)
499#define BY_USERID (1 << 1)
500struct limit_search {
501 unsigned int flags;
Daniel Rosenberg721274a2017-03-08 17:20:02 -0800502 struct qstr name;
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800503 userid_t userid;
504};
505
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700506extern void setup_derived_state(struct inode *inode, perm_t perm,
Daniel Rosenberg47af77b2018-02-01 16:52:22 -0800507 userid_t userid, uid_t uid);
Daniel Campello35c9e242015-07-20 16:23:50 -0700508extern void get_derived_permission(struct dentry *parent, struct dentry *dentry);
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800509extern void get_derived_permission_new(struct dentry *parent, struct dentry *dentry, const struct qstr *name);
Daniel Rosenbergd8caaf92017-01-22 15:32:49 -0800510extern void fixup_perms_recursive(struct dentry *dentry, struct limit_search *limit);
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800511
512extern void update_derived_permission_lock(struct dentry *dentry);
Daniel Rosenbergad905252017-01-25 13:48:45 -0800513void fixup_lower_ownership(struct dentry *dentry, const char *name);
Daniel Campello35c9e242015-07-20 16:23:50 -0700514extern int need_graft_path(struct dentry *dentry);
515extern int is_base_obbpath(struct dentry *dentry);
516extern int is_obbpath_invalid(struct dentry *dentry);
517extern int setup_obb_dentry(struct dentry *dentry, struct path *lower_path);
518
519/* locking helpers */
520static inline struct dentry *lock_parent(struct dentry *dentry)
521{
522 struct dentry *dir = dget_parent(dentry);
Daniel Rosenberg5e024f62017-03-16 17:42:58 -0700523
Amit Pundirb47e1102016-06-01 21:53:20 +0530524 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
Daniel Campello35c9e242015-07-20 16:23:50 -0700525 return dir;
526}
527
528static inline void unlock_dir(struct dentry *dir)
529{
Amit Pundirb47e1102016-06-01 21:53:20 +0530530 inode_unlock(d_inode(dir));
Daniel Campello35c9e242015-07-20 16:23:50 -0700531 dput(dir);
532}
533
534static inline int prepare_dir(const char *path_s, uid_t uid, gid_t gid, mode_t mode)
535{
536 int err;
537 struct dentry *dent;
538 struct iattr attrs;
Daniel Campellod1d080c2015-07-20 16:27:37 -0700539 struct path parent;
Daniel Campello35c9e242015-07-20 16:23:50 -0700540
Daniel Campellod1d080c2015-07-20 16:27:37 -0700541 dent = kern_path_locked(path_s, &parent);
Daniel Campello35c9e242015-07-20 16:23:50 -0700542 if (IS_ERR(dent)) {
543 err = PTR_ERR(dent);
544 if (err == -EEXIST)
545 err = 0;
546 goto out_unlock;
547 }
548
Daniel Rosenberg1844d9e2016-10-26 16:48:45 -0700549 err = vfs_mkdir2(parent.mnt, d_inode(parent.dentry), dent, mode);
Daniel Campello35c9e242015-07-20 16:23:50 -0700550 if (err) {
551 if (err == -EEXIST)
552 err = 0;
553 goto out_dput;
554 }
555
Daniel Campellod1d080c2015-07-20 16:27:37 -0700556 attrs.ia_uid = make_kuid(&init_user_ns, uid);
557 attrs.ia_gid = make_kgid(&init_user_ns, gid);
Daniel Campello35c9e242015-07-20 16:23:50 -0700558 attrs.ia_valid = ATTR_UID | ATTR_GID;
Amit Pundirb47e1102016-06-01 21:53:20 +0530559 inode_lock(d_inode(dent));
Daniel Rosenberg1844d9e2016-10-26 16:48:45 -0700560 notify_change2(parent.mnt, dent, &attrs, NULL);
Amit Pundirb47e1102016-06-01 21:53:20 +0530561 inode_unlock(d_inode(dent));
Daniel Campello35c9e242015-07-20 16:23:50 -0700562
563out_dput:
564 dput(dent);
565
566out_unlock:
567 /* parent dentry locked by lookup_create */
Amit Pundirb47e1102016-06-01 21:53:20 +0530568 inode_unlock(d_inode(parent.dentry));
Daniel Campellod1d080c2015-07-20 16:27:37 -0700569 path_put(&parent);
Daniel Campello35c9e242015-07-20 16:23:50 -0700570 return err;
571}
572
573/*
574 * Return 1, if a disk has enough free space, otherwise 0.
575 * We assume that any files can not be overwritten.
576 */
577static inline int check_min_free_space(struct dentry *dentry, size_t size, int dir)
578{
579 int err;
580 struct path lower_path;
581 struct kstatfs statfs;
582 u64 avail;
583 struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dentry->d_sb);
584
585 if (sbi->options.reserved_mb) {
586 /* Get fs stat of lower filesystem. */
587 sdcardfs_get_lower_path(dentry, &lower_path);
588 err = vfs_statfs(&lower_path, &statfs);
589 sdcardfs_put_lower_path(dentry, &lower_path);
590
591 if (unlikely(err))
592 return 0;
593
594 /* Invalid statfs informations. */
595 if (unlikely(statfs.f_bsize == 0))
596 return 0;
597
598 /* if you are checking directory, set size to f_bsize. */
599 if (unlikely(dir))
600 size = statfs.f_bsize;
601
602 /* available size */
603 avail = statfs.f_bavail * statfs.f_bsize;
604
605 /* not enough space */
606 if ((u64)size > avail)
607 return 0;
608
609 /* enough space */
610 if ((avail - size) > (sbi->options.reserved_mb * 1024 * 1024))
611 return 1;
612
613 return 0;
614 } else
615 return 1;
616}
617
Daniel Rosenberg90219272016-10-26 20:27:20 -0700618/*
619 * Copies attrs and maintains sdcardfs managed attrs
620 * Since our permission check handles all special permissions, set those to be open
621 */
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800622static inline void sdcardfs_copy_and_fix_attrs(struct inode *dest, const struct inode *src)
623{
Daniel Rosenberg90219272016-10-26 20:27:20 -0700624 dest->i_mode = (src->i_mode & S_IFMT) | S_IRWXU | S_IRWXG |
625 S_IROTH | S_IXOTH; /* 0775 */
Daniel Rosenberga56a1052017-05-15 14:03:15 -0700626 dest->i_uid = make_kuid(&init_user_ns, SDCARDFS_I(dest)->data->d_uid);
Daniel Rosenberg90219272016-10-26 20:27:20 -0700627 dest->i_gid = make_kgid(&init_user_ns, AID_SDCARD_RW);
Daniel Rosenberg497ac902016-02-03 21:08:21 -0800628 dest->i_rdev = src->i_rdev;
629 dest->i_atime = src->i_atime;
630 dest->i_mtime = src->i_mtime;
631 dest->i_ctime = src->i_ctime;
632 dest->i_blkbits = src->i_blkbits;
633 dest->i_flags = src->i_flags;
634 set_nlink(dest, src->i_nlink);
635}
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800636
637static inline bool str_case_eq(const char *s1, const char *s2)
638{
639 return !strcasecmp(s1, s2);
640}
641
Daniel Rosenberg721274a2017-03-08 17:20:02 -0800642static inline bool str_n_case_eq(const char *s1, const char *s2, size_t len)
643{
644 return !strncasecmp(s1, s2, len);
645}
646
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800647static inline bool qstr_case_eq(const struct qstr *q1, const struct qstr *q2)
648{
Ritesh Harjani55a84952018-03-19 15:49:54 +0530649 return q1->len == q2->len && str_n_case_eq(q1->name, q2->name, q2->len);
Daniel Rosenberg5004c5f2017-01-31 20:07:51 -0800650}
651
652#define QSTR_LITERAL(string) QSTR_INIT(string, sizeof(string)-1)
653
Daniel Campello35c9e242015-07-20 16:23:50 -0700654#endif /* not _SDCARDFS_H_ */