blob: cf1015abfbf238082c89ae99650bea83c3fb290f [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _LINUX_FS_STRUCT_H
3#define _LINUX_FS_STRUCT_H
4
Jan Blunck6ac08c32008-02-14 19:34:38 -08005#include <linux/path.h>
Nick Pigginc28cc362011-01-07 17:49:53 +11006#include <linux/spinlock.h>
7#include <linux/seqlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9struct fs_struct {
Al Viro498052b2009-03-30 07:20:30 -040010 int users;
Nick Piggin2a4419b2010-08-18 04:37:33 +100011 spinlock_t lock;
Nick Pigginc28cc362011-01-07 17:49:53 +110012 seqcount_t seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 int umask;
Al Viro498052b2009-03-30 07:20:30 -040014 int in_exec;
Al Viro7f2da1e2008-05-10 20:44:54 -040015 struct path root, pwd;
Kees Cook3859a272016-10-28 01:22:25 -070016} __randomize_layout;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Christoph Lameteraa362a82006-12-06 20:32:54 -080018extern struct kmem_cache *fs_cachep;
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020extern void exit_fs(struct task_struct *);
Al Virodcf787f2013-03-01 23:51:07 -050021extern void set_fs_root(struct fs_struct *, const struct path *);
22extern void set_fs_pwd(struct fs_struct *, const struct path *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023extern struct fs_struct *copy_fs_struct(struct fs_struct *);
Al Viro498052b2009-03-30 07:20:30 -040024extern void free_fs_struct(struct fs_struct *);
Al Viro3e93cd62009-03-29 19:00:13 -040025extern int unshare_fs_struct(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Miklos Szeredif7ad3c62010-08-10 11:41:36 +020027static inline void get_fs_root(struct fs_struct *fs, struct path *root)
28{
Nick Piggin2a4419b2010-08-18 04:37:33 +100029 spin_lock(&fs->lock);
Miklos Szeredif7ad3c62010-08-10 11:41:36 +020030 *root = fs->root;
31 path_get(root);
Nick Piggin2a4419b2010-08-18 04:37:33 +100032 spin_unlock(&fs->lock);
Miklos Szeredif7ad3c62010-08-10 11:41:36 +020033}
34
35static inline void get_fs_pwd(struct fs_struct *fs, struct path *pwd)
36{
Nick Piggin2a4419b2010-08-18 04:37:33 +100037 spin_lock(&fs->lock);
Miklos Szeredif7ad3c62010-08-10 11:41:36 +020038 *pwd = fs->pwd;
39 path_get(pwd);
Nick Piggin2a4419b2010-08-18 04:37:33 +100040 spin_unlock(&fs->lock);
Miklos Szeredif7ad3c62010-08-10 11:41:36 +020041}
42
Eric W. Biederman31515272013-03-15 01:45:51 -070043extern bool current_chrooted(void);
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#endif /* _LINUX_FS_STRUCT_H */