fcntl.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:12k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/fcntl.c
  3.  *
  4.  *  Copyright (C) 1991, 1992  Linus Torvalds
  5.  */
  6. #include <linux/init.h>
  7. #include <linux/mm.h>
  8. #include <linux/file.h>
  9. #include <linux/dnotify.h>
  10. #include <linux/smp_lock.h>
  11. #include <linux/slab.h>
  12. #include <linux/iobuf.h>
  13. #include <asm/poll.h>
  14. #include <asm/siginfo.h>
  15. #include <asm/uaccess.h>
  16. extern int sock_fcntl (struct file *, unsigned int cmd, unsigned long arg);
  17. extern int fcntl_setlease(unsigned int fd, struct file *filp, long arg);
  18. extern int fcntl_getlease(struct file *filp);
  19. /* Expand files.  Return <0 on error; 0 nothing done; 1 files expanded,
  20.  * we may have blocked. 
  21.  *
  22.  * Should be called with the files->file_lock spinlock held for write.
  23.  */
  24. static int expand_files(struct files_struct *files, int nr)
  25. {
  26. int err, expand = 0;
  27. #ifdef FDSET_DEBUG
  28. printk (KERN_ERR __FUNCTION__ " %d: nr = %dn", current->pid, nr);
  29. #endif
  30. if (nr >= files->max_fdset) {
  31. expand = 1;
  32. if ((err = expand_fdset(files, nr)))
  33. goto out;
  34. }
  35. if (nr >= files->max_fds) {
  36. expand = 1;
  37. if ((err = expand_fd_array(files, nr)))
  38. goto out;
  39. }
  40. err = expand;
  41.  out:
  42. #ifdef FDSET_DEBUG
  43. if (err)
  44. printk (KERN_ERR __FUNCTION__ " %d: return %dn", current->pid, err);
  45. #endif
  46. return err;
  47. }
  48. /*
  49.  * locate_fd finds a free file descriptor in the open_fds fdset,
  50.  * expanding the fd arrays if necessary.  The files write lock will be
  51.  * held on exit to ensure that the fd can be entered atomically.
  52.  */
  53. static int locate_fd(struct files_struct *files, 
  54.     struct file *file, int orig_start)
  55. {
  56. unsigned int newfd;
  57. int error;
  58. int start;
  59. write_lock(&files->file_lock);
  60. error = -EINVAL;
  61. if (orig_start >= current->rlim[RLIMIT_NOFILE].rlim_cur)
  62. goto out;
  63. repeat:
  64. /*
  65.  * Someone might have closed fd's in the range
  66.  * orig_start..files->next_fd
  67.  */
  68. start = orig_start;
  69. if (start < files->next_fd)
  70. start = files->next_fd;
  71. newfd = start;
  72. if (start < files->max_fdset) {
  73. newfd = find_next_zero_bit(files->open_fds->fds_bits,
  74. files->max_fdset, start);
  75. }
  76. error = -EMFILE;
  77. if (newfd >= current->rlim[RLIMIT_NOFILE].rlim_cur)
  78. goto out;
  79. error = expand_files(files, newfd);
  80. if (error < 0)
  81. goto out;
  82. /*
  83.  * If we needed to expand the fs array we
  84.  * might have blocked - try again.
  85.  */
  86. if (error)
  87. goto repeat;
  88. if (start <= files->next_fd)
  89. files->next_fd = newfd + 1;
  90. error = newfd;
  91. out:
  92. return error;
  93. }
  94. static inline void allocate_fd(struct files_struct *files, 
  95. struct file *file, int fd)
  96. {
  97. FD_SET(fd, files->open_fds);
  98. FD_CLR(fd, files->close_on_exec);
  99. write_unlock(&files->file_lock);
  100. fd_install(fd, file);
  101. }
  102. static int dupfd(struct file *file, int start)
  103. {
  104. struct files_struct * files = current->files;
  105. int ret;
  106. ret = locate_fd(files, file, start);
  107. if (ret < 0) 
  108. goto out_putf;
  109. allocate_fd(files, file, ret);
  110. return ret;
  111. out_putf:
  112. write_unlock(&files->file_lock);
  113. fput(file);
  114. return ret;
  115. }
  116. asmlinkage long sys_dup2(unsigned int oldfd, unsigned int newfd)
  117. {
  118. int err = -EBADF;
  119. struct file * file, *tofree;
  120. struct files_struct * files = current->files;
  121. write_lock(&files->file_lock);
  122. if (!(file = fcheck(oldfd)))
  123. goto out_unlock;
  124. err = newfd;
  125. if (newfd == oldfd)
  126. goto out_unlock;
  127. err = -EBADF;
  128. if (newfd >= current->rlim[RLIMIT_NOFILE].rlim_cur)
  129. goto out_unlock;
  130. get_file(file); /* We are now finished with oldfd */
  131. err = expand_files(files, newfd);
  132. if (err < 0)
  133. goto out_fput;
  134. /* To avoid races with open() and dup(), we will mark the fd as
  135.  * in-use in the open-file bitmap throughout the entire dup2()
  136.  * process.  This is quite safe: do_close() uses the fd array
  137.  * entry, not the bitmap, to decide what work needs to be
  138.  * done.  --sct */
  139. /* Doesn't work. open() might be there first. --AV */
  140. /* Yes. It's a race. In user space. Nothing sane to do */
  141. err = -EBUSY;
  142. tofree = files->fd[newfd];
  143. if (!tofree && FD_ISSET(newfd, files->open_fds))
  144. goto out_fput;
  145. files->fd[newfd] = file;
  146. FD_SET(newfd, files->open_fds);
  147. FD_CLR(newfd, files->close_on_exec);
  148. write_unlock(&files->file_lock);
  149. if (tofree)
  150. filp_close(tofree, files);
  151. err = newfd;
  152. out:
  153. return err;
  154. out_unlock:
  155. write_unlock(&files->file_lock);
  156. goto out;
  157. out_fput:
  158. write_unlock(&files->file_lock);
  159. fput(file);
  160. goto out;
  161. }
  162. asmlinkage long sys_dup(unsigned int fildes)
  163. {
  164. int ret = -EBADF;
  165. struct file * file = fget(fildes);
  166. if (file)
  167. ret = dupfd(file, 0);
  168. return ret;
  169. }
  170. #define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | FASYNC | O_DIRECT)
  171. static int setfl(int fd, struct file * filp, unsigned long arg)
  172. {
  173. struct inode * inode = filp->f_dentry->d_inode;
  174. int error;
  175. /*
  176.  * In the case of an append-only file, O_APPEND
  177.  * cannot be cleared
  178.  */
  179. if (!(arg & O_APPEND) && IS_APPEND(inode))
  180. return -EPERM;
  181. /* Did FASYNC state change? */
  182. if ((arg ^ filp->f_flags) & FASYNC) {
  183. if (filp->f_op && filp->f_op->fasync) {
  184. error = filp->f_op->fasync(fd, filp, (arg & FASYNC) != 0);
  185. if (error < 0)
  186. return error;
  187. }
  188. }
  189. if (arg & O_DIRECT) {
  190. /*
  191.  * alloc_kiovec() can sleep and we are only serialized by
  192.  * the big kernel lock here, so abuse the i_sem to serialize
  193.  * this case too. We of course wouldn't need to go deep down
  194.  * to the inode layer, we could stay at the file layer, but
  195.  * we don't want to pay for the memory of a semaphore in each
  196.  * file structure too and we use the inode semaphore that we just
  197.  * pay for anyways.
  198.  */
  199. error = 0;
  200. down(&inode->i_sem);
  201. if (!filp->f_iobuf)
  202. error = alloc_kiovec(1, &filp->f_iobuf);
  203. up(&inode->i_sem);
  204. if (error < 0)
  205. return error;
  206. }
  207. /* required for strict SunOS emulation */
  208. if (O_NONBLOCK != O_NDELAY)
  209.        if (arg & O_NDELAY)
  210.    arg |= O_NONBLOCK;
  211. filp->f_flags = (arg & SETFL_MASK) | (filp->f_flags & ~SETFL_MASK);
  212. return 0;
  213. }
  214. static long do_fcntl(unsigned int fd, unsigned int cmd,
  215.      unsigned long arg, struct file * filp)
  216. {
  217. long err = -EINVAL;
  218. switch (cmd) {
  219. case F_DUPFD:
  220. if (arg < NR_OPEN) {
  221. get_file(filp);
  222. err = dupfd(filp, arg);
  223. }
  224. break;
  225. case F_GETFD:
  226. err = get_close_on_exec(fd);
  227. break;
  228. case F_SETFD:
  229. err = 0;
  230. set_close_on_exec(fd, arg&1);
  231. break;
  232. case F_GETFL:
  233. err = filp->f_flags;
  234. break;
  235. case F_SETFL:
  236. lock_kernel();
  237. err = setfl(fd, filp, arg);
  238. unlock_kernel();
  239. break;
  240. case F_GETLK:
  241. err = fcntl_getlk(fd, (struct flock *) arg);
  242. break;
  243. case F_SETLK:
  244. case F_SETLKW:
  245. err = fcntl_setlk(fd, cmd, (struct flock *) arg);
  246. break;
  247. case F_GETOWN:
  248. /*
  249.  * XXX If f_owner is a process group, the
  250.  * negative return value will get converted
  251.  * into an error.  Oops.  If we keep the
  252.  * current syscall conventions, the only way
  253.  * to fix this will be in libc.
  254.  */
  255. err = filp->f_owner.pid;
  256. break;
  257. case F_SETOWN:
  258. lock_kernel();
  259. filp->f_owner.pid = arg;
  260. filp->f_owner.uid = current->uid;
  261. filp->f_owner.euid = current->euid;
  262. err = 0;
  263. if (S_ISSOCK (filp->f_dentry->d_inode->i_mode))
  264. err = sock_fcntl (filp, F_SETOWN, arg);
  265. unlock_kernel();
  266. break;
  267. case F_GETSIG:
  268. err = filp->f_owner.signum;
  269. break;
  270. case F_SETSIG:
  271. /* arg == 0 restores default behaviour. */
  272. if (arg < 0 || arg > _NSIG) {
  273. break;
  274. }
  275. err = 0;
  276. filp->f_owner.signum = arg;
  277. break;
  278. case F_GETLEASE:
  279. err = fcntl_getlease(filp);
  280. break;
  281. case F_SETLEASE:
  282. err = fcntl_setlease(fd, filp, arg);
  283. break;
  284. case F_NOTIFY:
  285. err = fcntl_dirnotify(fd, filp, arg);
  286. break;
  287. default:
  288. /* sockets need a few special fcntls. */
  289. err = -EINVAL;
  290. if (S_ISSOCK (filp->f_dentry->d_inode->i_mode))
  291. err = sock_fcntl (filp, cmd, arg);
  292. break;
  293. }
  294. return err;
  295. }
  296. asmlinkage long sys_fcntl(unsigned int fd, unsigned int cmd, unsigned long arg)
  297. {
  298. struct file * filp;
  299. long err = -EBADF;
  300. filp = fget(fd);
  301. if (!filp)
  302. goto out;
  303. err = do_fcntl(fd, cmd, arg, filp);
  304.   fput(filp);
  305. out:
  306. return err;
  307. }
  308. #if BITS_PER_LONG == 32
  309. asmlinkage long sys_fcntl64(unsigned int fd, unsigned int cmd, unsigned long arg)
  310. {
  311. struct file * filp;
  312. long err;
  313. err = -EBADF;
  314. filp = fget(fd);
  315. if (!filp)
  316. goto out;
  317. switch (cmd) {
  318. case F_GETLK64:
  319. err = fcntl_getlk64(fd, (struct flock64 *) arg);
  320. break;
  321. case F_SETLK64:
  322. err = fcntl_setlk64(fd, cmd, (struct flock64 *) arg);
  323. break;
  324. case F_SETLKW64:
  325. err = fcntl_setlk64(fd, cmd, (struct flock64 *) arg);
  326. break;
  327. default:
  328. err = do_fcntl(fd, cmd, arg, filp);
  329. break;
  330. }
  331. fput(filp);
  332. out:
  333. return err;
  334. }
  335. #endif
  336. /* Table to convert sigio signal codes into poll band bitmaps */
  337. static long band_table[NSIGPOLL] = {
  338. POLLIN | POLLRDNORM, /* POLL_IN */
  339. POLLOUT | POLLWRNORM | POLLWRBAND, /* POLL_OUT */
  340. POLLIN | POLLRDNORM | POLLMSG, /* POLL_MSG */
  341. POLLERR, /* POLL_ERR */
  342. POLLPRI | POLLRDBAND, /* POLL_PRI */
  343. POLLHUP | POLLERR /* POLL_HUP */
  344. };
  345. static void send_sigio_to_task(struct task_struct *p,
  346.        struct fown_struct *fown, 
  347.        int fd,
  348.        int reason)
  349. {
  350. if ((fown->euid != 0) &&
  351.     (fown->euid ^ p->suid) && (fown->euid ^ p->uid) &&
  352.     (fown->uid ^ p->suid) && (fown->uid ^ p->uid))
  353. return;
  354. switch (fown->signum) {
  355. siginfo_t si;
  356. default:
  357. /* Queue a rt signal with the appropriate fd as its
  358.    value.  We use SI_SIGIO as the source, not 
  359.    SI_KERNEL, since kernel signals always get 
  360.    delivered even if we can't queue.  Failure to
  361.    queue in this case _should_ be reported; we fall
  362.    back to SIGIO in that case. --sct */
  363. si.si_signo = fown->signum;
  364. si.si_errno = 0;
  365.         si.si_code  = reason;
  366. /* Make sure we are called with one of the POLL_*
  367.    reasons, otherwise we could leak kernel stack into
  368.    userspace.  */
  369. if ((reason & __SI_MASK) != __SI_POLL)
  370. BUG();
  371. if (reason - POLL_IN >= NSIGPOLL)
  372. si.si_band  = ~0L;
  373. else
  374. si.si_band = band_table[reason - POLL_IN];
  375. si.si_fd    = fd;
  376. if (!send_sig_info(fown->signum, &si, p))
  377. break;
  378. /* fall-through: fall back on the old plain SIGIO signal */
  379. case 0:
  380. send_sig(SIGIO, p, 1);
  381. }
  382. }
  383. void send_sigio(struct fown_struct *fown, int fd, int band)
  384. {
  385. struct task_struct * p;
  386. int   pid = fown->pid;
  387. read_lock(&tasklist_lock);
  388. if ( (pid > 0) && (p = find_task_by_pid(pid)) ) {
  389. send_sigio_to_task(p, fown, fd, band);
  390. goto out;
  391. }
  392. for_each_task(p) {
  393. int match = p->pid;
  394. if (pid < 0)
  395. match = -p->pgrp;
  396. if (pid != match)
  397. continue;
  398. send_sigio_to_task(p, fown, fd, band);
  399. }
  400. out:
  401. read_unlock(&tasklist_lock);
  402. }
  403. static rwlock_t fasync_lock = RW_LOCK_UNLOCKED;
  404. static kmem_cache_t *fasync_cache;
  405. /*
  406.  * fasync_helper() is used by some character device drivers (mainly mice)
  407.  * to set up the fasync queue. It returns negative on error, 0 if it did
  408.  * no changes and positive if it added/deleted the entry.
  409.  */
  410. int fasync_helper(int fd, struct file * filp, int on, struct fasync_struct **fapp)
  411. {
  412. struct fasync_struct *fa, **fp;
  413. struct fasync_struct *new = NULL;
  414. int result = 0;
  415. if (on) {
  416. new = kmem_cache_alloc(fasync_cache, SLAB_KERNEL);
  417. if (!new)
  418. return -ENOMEM;
  419. }
  420. write_lock_irq(&fasync_lock);
  421. for (fp = fapp; (fa = *fp) != NULL; fp = &fa->fa_next) {
  422. if (fa->fa_file == filp) {
  423. if(on) {
  424. fa->fa_fd = fd;
  425. kmem_cache_free(fasync_cache, new);
  426. } else {
  427. *fp = fa->fa_next;
  428. kmem_cache_free(fasync_cache, fa);
  429. result = 1;
  430. }
  431. goto out;
  432. }
  433. }
  434. if (on) {
  435. new->magic = FASYNC_MAGIC;
  436. new->fa_file = filp;
  437. new->fa_fd = fd;
  438. new->fa_next = *fapp;
  439. *fapp = new;
  440. result = 1;
  441. }
  442. out:
  443. write_unlock_irq(&fasync_lock);
  444. return result;
  445. }
  446. void __kill_fasync(struct fasync_struct *fa, int sig, int band)
  447. {
  448. while (fa) {
  449. struct fown_struct * fown;
  450. if (fa->magic != FASYNC_MAGIC) {
  451. printk(KERN_ERR "kill_fasync: bad magic number in "
  452.        "fasync_struct!n");
  453. return;
  454. }
  455. fown = &fa->fa_file->f_owner;
  456. /* Don't send SIGURG to processes which have not set a
  457.    queued signum: SIGURG has its own default signalling
  458.    mechanism. */
  459. if (fown->pid && !(sig == SIGURG && fown->signum == 0))
  460. send_sigio(fown, fa->fa_fd, band);
  461. fa = fa->fa_next;
  462. }
  463. }
  464. void kill_fasync(struct fasync_struct **fp, int sig, int band)
  465. {
  466. read_lock(&fasync_lock);
  467. __kill_fasync(*fp, sig, band);
  468. read_unlock(&fasync_lock);
  469. }
  470. static int __init fasync_init(void)
  471. {
  472. fasync_cache = kmem_cache_create("fasync_cache",
  473. sizeof(struct fasync_struct), 0, 0, NULL, NULL);
  474. if (!fasync_cache)
  475. panic("cannot create fasync slab cache");
  476. return 0;
  477. }
  478. module_init(fasync_init)