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