file.h 2.9 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 29 30 31 32 33
/*
 * 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];
};

/*
 * More than this number of fds: we use a separately allocated fd_set
 */
#define EMBEDDED_FD_SET_SIZE (BITS_PER_BYTE * sizeof(struct embedded_fd_set))

34 35 36 37 38 39
struct fdtable {
	unsigned int max_fds;
	int max_fdset;
	struct file ** fd;      /* current fd array */
	fd_set *close_on_exec;
	fd_set *open_fds;
40 41 42
	struct rcu_head rcu;
	struct files_struct *free_files;
	struct fdtable *next;
43 44
};

L
Linus Torvalds 已提交
45 46 47 48
/*
 * Open file table structure
 */
struct files_struct {
49 50 51
  /*
   * read mostly part
   */
E
Eric Dumazet 已提交
52
	atomic_t count;
53
	struct fdtable *fdt;
54
	struct fdtable fdtab;
55 56 57 58 59 60 61
  /*
   * 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 已提交
62
	struct file * fd_array[NR_OPEN_DEFAULT];
L
Linus Torvalds 已提交
63 64
};

65
#define files_fdtable(files) (rcu_dereference((files)->fdt))
66

L
Linus Torvalds 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
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));
82
struct kmem_cache;
L
Linus Torvalds 已提交
83 84 85 86 87 88 89 90

extern struct file ** alloc_fd_array(int);
extern void free_fd_array(struct file **, int);

extern fd_set *alloc_fdset(int);
extern void free_fdset(fd_set *, int);

extern int expand_files(struct files_struct *, int nr);
91 92
extern void free_fdtable(struct fdtable *fdt);
extern void __init files_defer_init(void);
L
Linus Torvalds 已提交
93 94 95 96

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

99
	if (fd < fdt->max_fds)
100
		file = rcu_dereference(fdt->fd[fd]);
L
Linus Torvalds 已提交
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
	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));

#endif /* __LINUX_FILE_H */