• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
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>
32 #include <linux/aio.h>
33 #include <linux/kref.h>
34 #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>
47 #include <linux/list.h>
48 #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 */
57 #define UDBG pr_default("DBG:%s:%s:%d\n", __FILE__, __func__, __LINE__)
58 
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 */
70 #define AID_MEDIA_OBB     1059  /* obb files */
71 
72 #define AID_SDCARD_IMAGE  1057
73 
74 #define AID_PACKAGE_INFO  1027
75 
76 
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)	\
84 	do {						\
85 		(x)->i_uid = SDCARDFS_I(x)->data->d_uid;	\
86 		(x)->i_gid = AID_SDCARD_RW;	\
87 		(x)->i_mode = ((x)->i_mode & S_IFMT) | 0775;\
88 	} while (0)
89 
90 /* OVERRIDE_CRED() and REVERT_CRED()
91  *	OVERRIDE_CRED()
92  *		backup original task->cred
93  *		and modifies task->cred->fsuid/fsgid to specified value.
94  *	REVERT_CRED()
95  *		restore original task->cred->fsuid/fsgid.
96  * These two macro should be used in pair, and OVERRIDE_CRED() should be
97  * placed at the beginning of a function, right after variable declaration.
98  */
99 #define OVERRIDE_CRED(sdcardfs_sbi, saved_cred, info)		\
100 	do {	\
101 		saved_cred = override_fsids(sdcardfs_sbi, info->data);	\
102 		if (!saved_cred)	\
103 			return -ENOMEM;	\
104 	} while (0)
105 
106 #define OVERRIDE_CRED_PTR(sdcardfs_sbi, saved_cred, info)	\
107 	do {	\
108 		saved_cred = override_fsids(sdcardfs_sbi, info->data);	\
109 		if (!saved_cred)	\
110 			return ERR_PTR(-ENOMEM);	\
111 	} while (0)
112 
113 #define REVERT_CRED(saved_cred)	revert_fsids(saved_cred)
114 
115 /* Android 5.0 support */
116 
117 /* Permission mode for a specific node. Controls how file permissions
118  * are derived for children nodes.
119  */
120 typedef enum {
121 	/* Nothing special; this node should just inherit from its parent. */
122 	PERM_INHERIT,
123 	/* This node is one level above a normal root; used for legacy layouts
124 	 * which use the first level to represent user_id.
125 	 */
126 	PERM_PRE_ROOT,
127 	/* This node is "/" */
128 	PERM_ROOT,
129 	/* This node is "/Android" */
130 	PERM_ANDROID,
131 	/* This node is "/Android/data" */
132 	PERM_ANDROID_DATA,
133 	/* This node is "/Android/obb" */
134 	PERM_ANDROID_OBB,
135 	/* This node is "/Android/media" */
136 	PERM_ANDROID_MEDIA,
137 	/* This node is "/Android/[data|media|obb]/[package]" */
138 	PERM_ANDROID_PACKAGE,
139 	/* This node is "/Android/[data|media|obb]/[package]/cache" */
140 	PERM_ANDROID_PACKAGE_CACHE,
141 } perm_t;
142 
143 struct sdcardfs_sb_info;
144 struct sdcardfs_mount_options;
145 struct sdcardfs_inode_info;
146 struct sdcardfs_inode_data;
147 
148 /* Do not directly use this function. Use OVERRIDE_CRED() instead. */
149 const struct cred *override_fsids(struct sdcardfs_sb_info *sbi,
150 			struct sdcardfs_inode_data *data);
151 /* Do not directly use this function, use REVERT_CRED() instead. */
152 void revert_fsids(const struct cred *old_cred);
153 
154 /* operations vectors defined in specific files */
155 extern const struct file_operations sdcardfs_main_fops;
156 extern const struct file_operations sdcardfs_dir_fops;
157 extern const struct inode_operations sdcardfs_main_iops;
158 extern const struct inode_operations sdcardfs_dir_iops;
159 extern const struct inode_operations sdcardfs_symlink_iops;
160 extern const struct super_operations sdcardfs_sops;
161 extern const struct dentry_operations sdcardfs_ci_dops;
162 extern const struct address_space_operations sdcardfs_aops, sdcardfs_dummy_aops;
163 extern const struct vm_operations_struct sdcardfs_vm_ops;
164 
165 extern int sdcardfs_init_inode_cache(void);
166 extern void sdcardfs_destroy_inode_cache(void);
167 extern int sdcardfs_init_dentry_cache(void);
168 extern void sdcardfs_destroy_dentry_cache(void);
169 extern int new_dentry_private_data(struct dentry *dentry);
170 extern void free_dentry_private_data(struct dentry *dentry);
171 extern struct dentry *sdcardfs_lookup(struct inode *dir, struct dentry *dentry,
172 				unsigned int flags);
173 extern struct inode *sdcardfs_iget(struct super_block *sb,
174 				 struct inode *lower_inode, userid_t id);
175 extern int sdcardfs_interpose(struct dentry *dentry, struct super_block *sb,
176 			    struct path *lower_path, userid_t id);
177 
178 /* file private data */
179 struct sdcardfs_file_info {
180 	struct file *lower_file;
181 	const struct vm_operations_struct *lower_vm_ops;
182 };
183 
184 struct sdcardfs_inode_data {
185 	struct kref refcount;
186 	bool abandoned;
187 
188 	perm_t perm;
189 	userid_t userid;
190 	uid_t d_uid;
191 	bool under_android;
192 	bool under_cache;
193 	bool under_obb;
194 };
195 
196 /* sdcardfs inode data in memory */
197 struct sdcardfs_inode_info {
198 	struct inode *lower_inode;
199 	/* state derived based on current position in hierarchy */
200 	struct sdcardfs_inode_data *data;
201 
202 	/* top folder for ownership */
203 	struct sdcardfs_inode_data *top_data;
204 
205 	struct inode vfs_inode;
206 };
207 
208 
209 /* sdcardfs dentry data in memory */
210 struct sdcardfs_dentry_info {
211 	spinlock_t lock;	/* protects lower_path */
212 	struct path lower_path;
213 	struct path orig_path;
214 };
215 
216 struct sdcardfs_mount_options {
217 	uid_t fs_low_uid;
218 	gid_t fs_low_gid;
219 	userid_t fs_user_id;
220 	bool multiuser;
221 	bool gid_derivation;
222 	unsigned int reserved_mb;
223 };
224 
225 struct sdcardfs_vfsmount_options {
226 	gid_t gid;
227 	mode_t mask;
228 };
229 
230 extern int parse_options_remount(struct super_block *sb, char *options, int silent,
231 		struct sdcardfs_vfsmount_options *vfsopts);
232 
233 /* sdcardfs super-block data in memory */
234 struct sdcardfs_sb_info {
235 	struct super_block *sb;
236 	struct super_block *lower_sb;
237 	/* derived perm policy : some of options have been added
238 	 * to sdcardfs_mount_options (Android 4.4 support)
239 	 */
240 	struct sdcardfs_mount_options options;
241 	spinlock_t lock;	/* protects obbpath */
242 	char *obbpath_s;
243 	struct path obbpath;
244 	void *pkgl_id;
245 	struct list_head list;
246 };
247 
248 /*
249  * inode to private data
250  *
251  * Since we use containers and the struct inode is _inside_ the
252  * sdcardfs_inode_info structure, SDCARDFS_I will always (given a non-NULL
253  * inode pointer), return a valid non-NULL pointer.
254  */
SDCARDFS_I(const struct inode * inode)255 static inline struct sdcardfs_inode_info *SDCARDFS_I(const struct inode *inode)
256 {
257 	return container_of(inode, struct sdcardfs_inode_info, vfs_inode);
258 }
259 
260 /* dentry to private data */
261 #define SDCARDFS_D(dent) ((struct sdcardfs_dentry_info *)(dent)->d_fsdata)
262 
263 /* superblock to private data */
264 #define SDCARDFS_SB(super) ((struct sdcardfs_sb_info *)(super)->s_fs_info)
265 
266 /* file to private Data */
267 #define SDCARDFS_F(file) ((struct sdcardfs_file_info *)((file)->private_data))
268 
269 /* file to lower file */
sdcardfs_lower_file(const struct file * f)270 static inline struct file *sdcardfs_lower_file(const struct file *f)
271 {
272 	return SDCARDFS_F(f)->lower_file;
273 }
274 
sdcardfs_set_lower_file(struct file * f,struct file * val)275 static inline void sdcardfs_set_lower_file(struct file *f, struct file *val)
276 {
277 	SDCARDFS_F(f)->lower_file = val;
278 }
279 
280 /* inode to lower inode. */
sdcardfs_lower_inode(const struct inode * i)281 static inline struct inode *sdcardfs_lower_inode(const struct inode *i)
282 {
283 	return SDCARDFS_I(i)->lower_inode;
284 }
285 
sdcardfs_set_lower_inode(struct inode * i,struct inode * val)286 static inline void sdcardfs_set_lower_inode(struct inode *i, struct inode *val)
287 {
288 	SDCARDFS_I(i)->lower_inode = val;
289 }
290 
291 /* superblock to lower superblock */
sdcardfs_lower_super(const struct super_block * sb)292 static inline struct super_block *sdcardfs_lower_super(
293 	const struct super_block *sb)
294 {
295 	return SDCARDFS_SB(sb)->lower_sb;
296 }
297 
sdcardfs_set_lower_super(struct super_block * sb,struct super_block * val)298 static inline void sdcardfs_set_lower_super(struct super_block *sb,
299 					  struct super_block *val)
300 {
301 	SDCARDFS_SB(sb)->lower_sb = val;
302 }
303 
304 /* path based (dentry/mnt) macros */
pathcpy(struct path * dst,const struct path * src)305 static inline void pathcpy(struct path *dst, const struct path *src)
306 {
307 	dst->dentry = src->dentry;
308 	dst->mnt = src->mnt;
309 }
310 
311 /* sdcardfs_get_pname functions calls path_get()
312  * therefore, the caller must call "proper" path_put functions
313  */
314 #define SDCARDFS_DENT_FUNC(pname) \
315 static inline void sdcardfs_get_##pname(const struct dentry *dent, \
316 					struct path *pname) \
317 { \
318 	spin_lock(&SDCARDFS_D(dent)->lock); \
319 	pathcpy(pname, &SDCARDFS_D(dent)->pname); \
320 	path_get(pname); \
321 	spin_unlock(&SDCARDFS_D(dent)->lock); \
322 	return; \
323 } \
324 static inline void sdcardfs_put_##pname(const struct dentry *dent, \
325 					struct path *pname) \
326 { \
327 	path_put(pname); \
328 	return; \
329 } \
330 static inline void sdcardfs_set_##pname(const struct dentry *dent, \
331 					struct path *pname) \
332 { \
333 	spin_lock(&SDCARDFS_D(dent)->lock); \
334 	pathcpy(&SDCARDFS_D(dent)->pname, pname); \
335 	spin_unlock(&SDCARDFS_D(dent)->lock); \
336 	return; \
337 } \
338 static inline void sdcardfs_reset_##pname(const struct dentry *dent) \
339 { \
340 	spin_lock(&SDCARDFS_D(dent)->lock); \
341 	SDCARDFS_D(dent)->pname.dentry = NULL; \
342 	SDCARDFS_D(dent)->pname.mnt = NULL; \
343 	spin_unlock(&SDCARDFS_D(dent)->lock); \
344 	return; \
345 } \
346 static inline void sdcardfs_put_reset_##pname(const struct dentry *dent) \
347 { \
348 	struct path pname; \
349 	spin_lock(&SDCARDFS_D(dent)->lock); \
350 	if (SDCARDFS_D(dent)->pname.dentry) { \
351 		pathcpy(&pname, &SDCARDFS_D(dent)->pname); \
352 		SDCARDFS_D(dent)->pname.dentry = NULL; \
353 		SDCARDFS_D(dent)->pname.mnt = NULL; \
354 		spin_unlock(&SDCARDFS_D(dent)->lock); \
355 		path_put(&pname); \
356 	} else \
357 		spin_unlock(&SDCARDFS_D(dent)->lock); \
358 	return; \
359 }
360 
361 SDCARDFS_DENT_FUNC(lower_path)
SDCARDFS_DENT_FUNC(orig_path)362 SDCARDFS_DENT_FUNC(orig_path)
363 
364 static inline bool sbinfo_has_sdcard_magic(struct sdcardfs_sb_info *sbinfo)
365 {
366 	return sbinfo && sbinfo->sb
367 			&& sbinfo->sb->s_magic == SDCARDFS_SUPER_MAGIC;
368 }
369 
data_get(struct sdcardfs_inode_data * data)370 static inline struct sdcardfs_inode_data *data_get(
371 		struct sdcardfs_inode_data *data)
372 {
373 	if (data)
374 		kref_get(&data->refcount);
375 	return data;
376 }
377 
top_data_get(struct sdcardfs_inode_info * info)378 static inline struct sdcardfs_inode_data *top_data_get(
379 		struct sdcardfs_inode_info *info)
380 {
381 	return data_get(info->top_data);
382 }
383 
384 extern void data_release(struct kref *ref);
385 
data_put(struct sdcardfs_inode_data * data)386 static inline void data_put(struct sdcardfs_inode_data *data)
387 {
388 	kref_put(&data->refcount, data_release);
389 }
390 
release_own_data(struct sdcardfs_inode_info * info)391 static inline void release_own_data(struct sdcardfs_inode_info *info)
392 {
393 	/*
394 	 * This happens exactly once per inode. At this point, the inode that
395 	 * originally held this data is about to be freed, and all references
396 	 * to it are held as a top value, and will likely be released soon.
397 	 */
398 	info->data->abandoned = true;
399 	data_put(info->data);
400 }
401 
set_top(struct sdcardfs_inode_info * info,struct sdcardfs_inode_data * top)402 static inline void set_top(struct sdcardfs_inode_info *info,
403 			struct sdcardfs_inode_data *top)
404 {
405 	struct sdcardfs_inode_data *old_top = info->top_data;
406 
407 	if (top)
408 		data_get(top);
409 	info->top_data = top;
410 	if (old_top)
411 		data_put(old_top);
412 }
413 
get_gid(struct vfsmount * mnt,struct sdcardfs_inode_data * data)414 static inline int get_gid(struct vfsmount *mnt,
415 		struct sdcardfs_inode_data *data)
416 {
417 	struct sdcardfs_vfsmount_options *opts = mnt->data;
418 
419 	if (opts->gid == AID_SDCARD_RW)
420 		/* As an optimization, certain trusted system components only run
421 		 * as owner but operate across all users. Since we're now handing
422 		 * out the sdcard_rw GID only to trusted apps, we're okay relaxing
423 		 * the user boundary enforcement for the default view. The UIDs
424 		 * assigned to app directories are still multiuser aware.
425 		 */
426 		return AID_SDCARD_RW;
427 	else
428 		return multiuser_get_uid(data->userid, opts->gid);
429 }
430 
get_mode(struct vfsmount * mnt,struct sdcardfs_inode_info * info,struct sdcardfs_inode_data * data)431 static inline int get_mode(struct vfsmount *mnt,
432 		struct sdcardfs_inode_info *info,
433 		struct sdcardfs_inode_data *data)
434 {
435 	int owner_mode;
436 	int filtered_mode;
437 	struct sdcardfs_vfsmount_options *opts = mnt->data;
438 	int visible_mode = 0775 & ~opts->mask;
439 
440 
441 	if (data->perm == PERM_PRE_ROOT) {
442 		/* Top of multi-user view should always be visible to ensure
443 		* secondary users can traverse inside.
444 		*/
445 		visible_mode = 0711;
446 	} else if (data->under_android) {
447 		/* Block "other" access to Android directories, since only apps
448 		* belonging to a specific user should be in there; we still
449 		* leave +x open for the default view.
450 		*/
451 		if (opts->gid == AID_SDCARD_RW)
452 			visible_mode = visible_mode & ~0006;
453 		else
454 			visible_mode = visible_mode & ~0007;
455 	}
456 	owner_mode = info->lower_inode->i_mode & 0700;
457 	filtered_mode = visible_mode & (owner_mode | (owner_mode >> 3) | (owner_mode >> 6));
458 	return filtered_mode;
459 }
460 
has_graft_path(const struct dentry * dent)461 static inline int has_graft_path(const struct dentry *dent)
462 {
463 	int ret = 0;
464 
465 	spin_lock(&SDCARDFS_D(dent)->lock);
466 	if (SDCARDFS_D(dent)->orig_path.dentry != NULL)
467 		ret = 1;
468 	spin_unlock(&SDCARDFS_D(dent)->lock);
469 
470 	return ret;
471 }
472 
sdcardfs_get_real_lower(const struct dentry * dent,struct path * real_lower)473 static inline void sdcardfs_get_real_lower(const struct dentry *dent,
474 						struct path *real_lower)
475 {
476 	/* in case of a local obb dentry
477 	 * the orig_path should be returned
478 	 */
479 	if (has_graft_path(dent))
480 		sdcardfs_get_orig_path(dent, real_lower);
481 	else
482 		sdcardfs_get_lower_path(dent, real_lower);
483 }
484 
sdcardfs_put_real_lower(const struct dentry * dent,struct path * real_lower)485 static inline void sdcardfs_put_real_lower(const struct dentry *dent,
486 						struct path *real_lower)
487 {
488 	if (has_graft_path(dent))
489 		sdcardfs_put_orig_path(dent, real_lower);
490 	else
491 		sdcardfs_put_lower_path(dent, real_lower);
492 }
493 
494 extern struct mutex sdcardfs_super_list_lock;
495 extern struct list_head sdcardfs_super_list;
496 
497 /* for packagelist.c */
498 extern appid_t get_appid(const char *app_name);
499 extern appid_t get_ext_gid(const char *app_name);
500 extern appid_t is_excluded(const char *app_name, userid_t userid);
501 extern int check_caller_access_to_name(struct inode *parent_node, const struct qstr *name);
502 extern int packagelist_init(void);
503 extern void packagelist_exit(void);
504 
505 /* for derived_perm.c */
506 #define BY_NAME		(1 << 0)
507 #define BY_USERID	(1 << 1)
508 struct limit_search {
509 	unsigned int flags;
510 	struct qstr name;
511 	userid_t userid;
512 };
513 
514 extern void setup_derived_state(struct inode *inode, perm_t perm,
515 		userid_t userid, uid_t uid, bool under_android,
516 		struct sdcardfs_inode_data *top);
517 extern void get_derived_permission(struct dentry *parent, struct dentry *dentry);
518 extern void get_derived_permission_new(struct dentry *parent, struct dentry *dentry, const struct qstr *name);
519 extern void fixup_perms_recursive(struct dentry *dentry, struct limit_search *limit);
520 
521 extern void update_derived_permission_lock(struct dentry *dentry);
522 void fixup_lower_ownership(struct dentry *dentry, const char *name);
523 extern int need_graft_path(struct dentry *dentry);
524 extern int is_base_obbpath(struct dentry *dentry);
525 extern int is_obbpath_invalid(struct dentry *dentry);
526 extern int setup_obb_dentry(struct dentry *dentry, struct path *lower_path);
527 
528 /* locking helpers */
lock_parent(struct dentry * dentry)529 static inline struct dentry *lock_parent(struct dentry *dentry)
530 {
531 	struct dentry *dir = dget_parent(dentry);
532 
533 	mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
534 	return dir;
535 }
536 
unlock_dir(struct dentry * dir)537 static inline void unlock_dir(struct dentry *dir)
538 {
539 	mutex_unlock(&dir->d_inode->i_mutex);
540 	dput(dir);
541 }
542 
prepare_dir(const char * path_s,uid_t uid,gid_t gid,mode_t mode)543 static inline int prepare_dir(const char *path_s, uid_t uid, gid_t gid, mode_t mode)
544 {
545 	int err;
546 	struct dentry *dent;
547 	struct iattr attrs;
548 	struct path parent;
549 
550 	dent = kern_path_locked(path_s, &parent);
551 	if (IS_ERR(dent)) {
552 		err = PTR_ERR(dent);
553 		if (err == -EEXIST)
554 			err = 0;
555 		goto out_unlock;
556 	}
557 
558 	err = vfs_mkdir2(parent.mnt, parent.dentry->d_inode, dent, mode);
559 	if (err) {
560 		if (err == -EEXIST)
561 			err = 0;
562 		goto out_dput;
563 	}
564 
565 	attrs.ia_uid = uid;
566 	attrs.ia_gid = gid;
567 	attrs.ia_valid = ATTR_UID | ATTR_GID;
568 	mutex_lock(&dent->d_inode->i_mutex);
569 	notify_change2(parent.mnt, dent, &attrs);
570 	mutex_unlock(&dent->d_inode->i_mutex);
571 
572 out_dput:
573 	dput(dent);
574 
575 out_unlock:
576 	/* parent dentry locked by lookup_create */
577 	mutex_unlock(&parent.dentry->d_inode->i_mutex);
578 	path_put(&parent);
579 	return err;
580 }
581 
582 /*
583  * Return 1, if a disk has enough free space, otherwise 0.
584  * We assume that any files can not be overwritten.
585  */
check_min_free_space(struct dentry * dentry,size_t size,int dir)586 static inline int check_min_free_space(struct dentry *dentry, size_t size, int dir)
587 {
588 	int err;
589 	struct path lower_path;
590 	struct kstatfs statfs;
591 	u64 avail;
592 	struct sdcardfs_sb_info *sbi = SDCARDFS_SB(dentry->d_sb);
593 
594 	if (sbi->options.reserved_mb) {
595 		/* Get fs stat of lower filesystem. */
596 		sdcardfs_get_lower_path(dentry, &lower_path);
597 		err = vfs_statfs(&lower_path, &statfs);
598 		sdcardfs_put_lower_path(dentry, &lower_path);
599 
600 		if (unlikely(err))
601 			return 0;
602 
603 		/* Invalid statfs informations. */
604 		if (unlikely(statfs.f_bsize == 0))
605 			return 0;
606 
607 		/* if you are checking directory, set size to f_bsize. */
608 		if (unlikely(dir))
609 			size = statfs.f_bsize;
610 
611 		/* available size */
612 		avail = statfs.f_bavail * statfs.f_bsize;
613 
614 		/* not enough space */
615 		if ((u64)size > avail)
616 			return 0;
617 
618 		/* enough space */
619 		if ((avail - size) > (sbi->options.reserved_mb * 1024 * 1024))
620 			return 1;
621 
622 		return 0;
623 	} else
624 		return 1;
625 }
626 
627 /*
628  * Copies attrs and maintains sdcardfs managed attrs
629  * Since our permission check handles all special permissions, set those to be open
630  */
sdcardfs_copy_and_fix_attrs(struct inode * dest,const struct inode * src)631 static inline void sdcardfs_copy_and_fix_attrs(struct inode *dest, const struct inode *src)
632 {
633 
634 	dest->i_mode = (src->i_mode  & S_IFMT) | S_IRWXU | S_IRWXG |
635 			S_IROTH | S_IXOTH; /* 0775 */
636 	dest->i_uid = SDCARDFS_I(dest)->data->d_uid;
637 	dest->i_gid = AID_SDCARD_RW;
638 	dest->i_rdev = src->i_rdev;
639 	dest->i_atime = src->i_atime;
640 	dest->i_mtime = src->i_mtime;
641 	dest->i_ctime = src->i_ctime;
642 	dest->i_blkbits = src->i_blkbits;
643 	dest->i_flags = src->i_flags;
644 	set_nlink(dest, src->i_nlink);
645 }
646 
str_case_eq(const char * s1,const char * s2)647 static inline bool str_case_eq(const char *s1, const char *s2)
648 {
649 	return !strcasecmp(s1, s2);
650 }
651 
str_n_case_eq(const char * s1,const char * s2,size_t len)652 static inline bool str_n_case_eq(const char *s1, const char *s2, size_t len)
653 {
654 	return !strncasecmp(s1, s2, len);
655 }
656 
qstr_case_eq(const struct qstr * q1,const struct qstr * q2)657 static inline bool qstr_case_eq(const struct qstr *q1, const struct qstr *q2)
658 {
659 	return q1->len == q2->len && str_case_eq(q1->name, q2->name);
660 }
661 
662 #define QSTR_LITERAL(string) QSTR_INIT(string, sizeof(string)-1)
663 
664 #endif	/* not _SDCARDFS_H_ */
665