2005-04-17 06:20:36 +08:00
|
|
|
#ifndef _LINUX_FS_STRUCT_H
|
|
|
|
#define _LINUX_FS_STRUCT_H
|
|
|
|
|
2008-02-15 11:34:38 +08:00
|
|
|
#include <linux/path.h>
|
2011-01-07 14:49:53 +08:00
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/seqlock.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
struct fs_struct {
|
2009-03-30 19:20:30 +08:00
|
|
|
int users;
|
2010-08-18 02:37:33 +08:00
|
|
|
spinlock_t lock;
|
2011-01-07 14:49:53 +08:00
|
|
|
seqcount_t seq;
|
2005-04-17 06:20:36 +08:00
|
|
|
int umask;
|
2009-03-30 19:20:30 +08:00
|
|
|
int in_exec;
|
2008-05-11 08:44:54 +08:00
|
|
|
struct path root, pwd;
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2006-12-07 12:32:54 +08:00
|
|
|
extern struct kmem_cache *fs_cachep;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
extern void exit_fs(struct task_struct *);
|
2013-03-02 12:51:07 +08:00
|
|
|
extern void set_fs_root(struct fs_struct *, const struct path *);
|
|
|
|
extern void set_fs_pwd(struct fs_struct *, const struct path *);
|
2005-04-17 06:20:36 +08:00
|
|
|
extern struct fs_struct *copy_fs_struct(struct fs_struct *);
|
2009-03-30 19:20:30 +08:00
|
|
|
extern void free_fs_struct(struct fs_struct *);
|
2009-03-30 07:00:13 +08:00
|
|
|
extern int unshare_fs_struct(void);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2010-08-10 17:41:36 +08:00
|
|
|
static inline void get_fs_root(struct fs_struct *fs, struct path *root)
|
|
|
|
{
|
2010-08-18 02:37:33 +08:00
|
|
|
spin_lock(&fs->lock);
|
2010-08-10 17:41:36 +08:00
|
|
|
*root = fs->root;
|
|
|
|
path_get(root);
|
2010-08-18 02:37:33 +08:00
|
|
|
spin_unlock(&fs->lock);
|
2010-08-10 17:41:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void get_fs_pwd(struct fs_struct *fs, struct path *pwd)
|
|
|
|
{
|
2010-08-18 02:37:33 +08:00
|
|
|
spin_lock(&fs->lock);
|
2010-08-10 17:41:36 +08:00
|
|
|
*pwd = fs->pwd;
|
|
|
|
path_get(pwd);
|
2010-08-18 02:37:33 +08:00
|
|
|
spin_unlock(&fs->lock);
|
2010-08-10 17:41:36 +08:00
|
|
|
}
|
|
|
|
|
2013-03-15 16:45:51 +08:00
|
|
|
extern bool current_chrooted(void);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif /* _LINUX_FS_STRUCT_H */
|