file.h 2.6 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;

L
Linus Torvalds 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
extern void FASTCALL(__fput(struct file *));
extern void FASTCALL(fput(struct file *));

static inline void fput_light(struct file *file, int fput_needed)
{
	if (unlikely(fput_needed))
		fput(file);
}

extern struct file * FASTCALL(fget(unsigned int fd));
extern struct file * FASTCALL(fget_light(unsigned int fd, int *fput_needed));
extern void FASTCALL(set_close_on_exec(unsigned int fd, int flag));
extern void put_filp(struct file *);
extern int get_unused_fd(void);
extern void FASTCALL(put_unused_fd(unsigned int fd));
77
struct kmem_cache;
L
Linus Torvalds 已提交
78 79

extern int expand_files(struct files_struct *, int nr);
80
extern void free_fdtable_rcu(struct rcu_head *rcu);
81
extern void __init files_defer_init(void);
L
Linus Torvalds 已提交
82 83 84 85

static inline struct file * fcheck_files(struct files_struct *files, unsigned int fd)
{
	struct file * file = NULL;
86
	struct fdtable *fdt = files_fdtable(files);
L
Linus Torvalds 已提交
87

88
	if (fd < fdt->max_fds)
89
		file = rcu_dereference(fdt->fd[fd]);
L
Linus Torvalds 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103
	return file;
}

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

extern void FASTCALL(fd_install(unsigned int fd, struct file * file));

struct task_struct;

struct files_struct *get_files_struct(struct task_struct *);
void FASTCALL(put_files_struct(struct files_struct *fs));
104
void reset_files_struct(struct task_struct *, struct files_struct *);
L
Linus Torvalds 已提交
105

106 107
extern struct kmem_cache *files_cachep;

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