file.h 3.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11
/*
 * Wrapper functions for accessing the file_struct fd array.
 */

#ifndef __LINUX_FILE_H
#define __LINUX_FILE_H

#include <asm/atomic.h>
#include <linux/posix_types.h>
#include <linux/compiler.h>
#include <linux/spinlock.h>
12
#include <linux/rcupdate.h>
13
#include <linux/types.h>
L
Linus Torvalds 已提交
14 15 16 17 18 19 20

/*
 * The default fd array needs to be at least BITS_PER_LONG,
 * as this is the granularity returned by copy_fdset().
 */
#define NR_OPEN_DEFAULT BITS_PER_LONG

21 22 23 24 25 26 27 28
/*
 * The embedded_fd_set is a small fd_set,
 * suitable for most tasks (which open <= BITS_PER_LONG files)
 */
struct embedded_fd_set {
	unsigned long fds_bits[1];
};

29 30 31 32 33
struct fdtable {
	unsigned int max_fds;
	struct file ** fd;      /* current fd array */
	fd_set *close_on_exec;
	fd_set *open_fds;
34 35
	struct rcu_head rcu;
	struct fdtable *next;
36 37
};

L
Linus Torvalds 已提交
38 39 40 41
/*
 * Open file table structure
 */
struct files_struct {
42 43 44
  /*
   * read mostly part
   */
E
Eric Dumazet 已提交
45
	atomic_t count;
46
	struct fdtable *fdt;
47
	struct fdtable fdtab;
48 49 50 51 52 53 54
  /*
   * written part on a separate cache line in SMP
   */
	spinlock_t file_lock ____cacheline_aligned_in_smp;
	int next_fd;
	struct embedded_fd_set close_on_exec_init;
	struct embedded_fd_set open_fds_init;
E
Eric Dumazet 已提交
55
	struct file * fd_array[NR_OPEN_DEFAULT];
L
Linus Torvalds 已提交
56 57
};

58
#define files_fdtable(files) (rcu_dereference((files)->fdt))
59

60 61
extern struct kmem_cache *filp_cachep;

62 63
extern void __fput(struct file *);
extern void fput(struct file *);
64
extern void drop_file_write_access(struct file *file);
L
Linus Torvalds 已提交
65

66 67 68 69 70 71 72 73 74
struct file_operations;
struct vfsmount;
struct dentry;
extern int init_file(struct file *, struct vfsmount *mnt,
		struct dentry *dentry, mode_t mode,
		const struct file_operations *fop);
extern struct file *alloc_file(struct vfsmount *, struct dentry *dentry,
		mode_t mode, const struct file_operations *fop);

L
Linus Torvalds 已提交
75 76 77 78 79 80
static inline void fput_light(struct file *file, int fput_needed)
{
	if (unlikely(fput_needed))
		fput(file);
}

81 82 83
extern struct file *fget(unsigned int fd);
extern struct file *fget_light(unsigned int fd, int *fput_needed);
extern void set_close_on_exec(unsigned int fd, int flag);
L
Linus Torvalds 已提交
84 85
extern void put_filp(struct file *);
extern int get_unused_fd(void);
U
Ulrich Drepper 已提交
86
extern int get_unused_fd_flags(int flags);
87
extern void put_unused_fd(unsigned int fd);
88
struct kmem_cache;
L
Linus Torvalds 已提交
89 90

extern int expand_files(struct files_struct *, int nr);
91
extern void free_fdtable_rcu(struct rcu_head *rcu);
92
extern void __init files_defer_init(void);
L
Linus Torvalds 已提交
93

94 95 96 97 98
static inline void free_fdtable(struct fdtable *fdt)
{
	call_rcu(&fdt->rcu, free_fdtable_rcu);
}

L
Linus Torvalds 已提交
99 100 101
static inline struct file * fcheck_files(struct files_struct *files, unsigned int fd)
{
	struct file * file = NULL;
102
	struct fdtable *fdt = files_fdtable(files);
L
Linus Torvalds 已提交
103

104
	if (fd < fdt->max_fds)
105
		file = rcu_dereference(fdt->fd[fd]);
L
Linus Torvalds 已提交
106 107 108 109 110 111 112 113
	return file;
}

/*
 * Check whether the specified fd has an open file.
 */
#define fcheck(fd)	fcheck_files(current->files, fd)

114
extern void fd_install(unsigned int fd, struct file *file);
L
Linus Torvalds 已提交
115 116 117 118

struct task_struct;

struct files_struct *get_files_struct(struct task_struct *);
119
void put_files_struct(struct files_struct *fs);
120 121
void reset_files_struct(struct files_struct *);
int unshare_files(struct files_struct **);
L
Linus Torvalds 已提交
122

123 124
extern struct kmem_cache *files_cachep;

L
Linus Torvalds 已提交
125
#endif /* __LINUX_FILE_H */