dquot.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:38k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Implementation of the diskquota system for the LINUX operating
  3.  * system. QUOTA is implemented using the BSD system call interface as
  4.  * the means of communication with the user level. Currently only the
  5.  * ext2 filesystem has support for disk quotas. Other filesystems may
  6.  * be added in the future. This file contains the generic routines
  7.  * called by the different filesystems on allocation of an inode or
  8.  * block. These routines take care of the administration needed to
  9.  * have a consistent diskquota tracking system. The ideas of both
  10.  * user and group quotas are based on the Melbourne quota system as
  11.  * used on BSD derived systems. The internal implementation is 
  12.  * based on one of the several variants of the LINUX inode-subsystem
  13.  * with added complexity of the diskquota system.
  14.  * 
  15.  * Version: $Id: dquot.c,v 6.3 1996/11/17 18:35:34 mvw Exp mvw $
  16.  * 
  17.  * Author: Marco van Wieringen <mvw@planets.elm.net>
  18.  *
  19.  * Fixes:   Dmitry Gorodchanin <pgmdsg@ibi.com>, 11 Feb 96
  20.  *
  21.  * Revised list management to avoid races
  22.  * -- Bill Hawes, <whawes@star.net>, 9/98
  23.  *
  24.  * Fixed races in dquot_transfer(), dqget() and dquot_alloc_...().
  25.  * As the consequence the locking was moved from dquot_decr_...(),
  26.  * dquot_incr_...() to calling functions.
  27.  * invalidate_dquots() now writes modified dquots.
  28.  * Serialized quota_off() and quota_on() for mount point.
  29.  * Fixed a few bugs in grow_dquots().
  30.  * Fixed deadlock in write_dquot() - we no longer account quotas on
  31.  * quota files
  32.  * remove_dquot_ref() moved to inode.c - it now traverses through inodes
  33.  * add_dquot_ref() restarts after blocking
  34.  * Added check for bogus uid and fixed check for group in quotactl.
  35.  * Jan Kara, <jack@suse.cz>, sponsored by SuSE CR, 10-11/99
  36.  *
  37.  * Used struct list_head instead of own list struct
  38.  * Invalidation of dquots with dq_count > 0 no longer possible
  39.  * Improved free_dquots list management
  40.  * Quota and i_blocks are now updated in one place to avoid races
  41.  * Warnings are now delayed so we won't block in critical section
  42.  * Write updated not to require dquot lock
  43.  * Jan Kara, <jack@suse.cz>, 9/2000
  44.  *
  45.  * Added dynamic quota structure allocation
  46.  * Jan Kara <jack@suse.cz> 12/2000
  47.  *
  48.  * (C) Copyright 1994 - 1997 Marco van Wieringen 
  49.  */
  50. #include <linux/errno.h>
  51. #include <linux/kernel.h>
  52. #include <linux/fs.h>
  53. #include <linux/sched.h>
  54. #include <linux/types.h>
  55. #include <linux/string.h>
  56. #include <linux/fcntl.h>
  57. #include <linux/stat.h>
  58. #include <linux/tty.h>
  59. #include <linux/file.h>
  60. #include <linux/slab.h>
  61. #include <linux/smp_lock.h>
  62. #include <linux/init.h>
  63. #include <asm/uaccess.h>
  64. #define __DQUOT_VERSION__ "dquot_6.4.0"
  65. int nr_dquots, nr_free_dquots;
  66. static char *quotatypes[] = INITQFNAMES;
  67. static inline struct quota_mount_options *sb_dqopt(struct super_block *sb)
  68. {
  69. return &sb->s_dquot;
  70. }
  71. /*
  72.  * Dquot List Management:
  73.  * The quota code uses three lists for dquot management: the inuse_list,
  74.  * free_dquots, and dquot_hash[] array. A single dquot structure may be
  75.  * on all three lists, depending on its current state.
  76.  *
  77.  * All dquots are placed to the end of inuse_list when first created, and this
  78.  * list is used for the sync and invalidate operations, which must look
  79.  * at every dquot.
  80.  *
  81.  * Unused dquots (dq_count == 0) are added to the free_dquots list when
  82.  * freed, and this list is searched whenever we need an available dquot.
  83.  * Dquots are removed from the list as soon as they are used again, and
  84.  * nr_free_dquots gives the number of dquots on the list. When dquot is
  85.  * invalidated it's completely released from memory.
  86.  *
  87.  * Dquots with a specific identity (device, type and id) are placed on
  88.  * one of the dquot_hash[] hash chains. The provides an efficient search
  89.  * mechanism to locate a specific dquot.
  90.  */
  91. /*
  92.  * Note that any operation which operates on dquot data (ie. dq_dqb) mustn't
  93.  * block while it's updating/reading it. Otherwise races would occur.
  94.  *
  95.  * Locked dquots might not be referenced in inodes - operations like
  96.  * add_dquot_space() does dqduplicate() and would complain. Currently
  97.  * dquot it locked only once in its existence - when it's being read
  98.  * to memory on first dqget() and at that time it can't be referenced
  99.  * from inode. Write operations on dquots don't hold dquot lock as they
  100.  * copy data to internal buffers before writing anyway and copying as well
  101.  * as any data update should be atomic. Also nobody can change used
  102.  * entries in dquot structure as this is done only when quota is destroyed
  103.  * and invalidate_dquots() waits for dquot to have dq_count == 0.
  104.  */
  105. static LIST_HEAD(inuse_list);
  106. static LIST_HEAD(free_dquots);
  107. static struct list_head dquot_hash[NR_DQHASH];
  108. static struct dqstats dqstats;
  109. static void dqput(struct dquot *);
  110. static struct dquot *dqduplicate(struct dquot *);
  111. static inline char is_enabled(struct quota_mount_options *dqopt, short type)
  112. {
  113. switch (type) {
  114. case USRQUOTA:
  115. return((dqopt->flags & DQUOT_USR_ENABLED) != 0);
  116. case GRPQUOTA:
  117. return((dqopt->flags & DQUOT_GRP_ENABLED) != 0);
  118. }
  119. return(0);
  120. }
  121. static inline char sb_has_quota_enabled(struct super_block *sb, short type)
  122. {
  123. return is_enabled(sb_dqopt(sb), type);
  124. }
  125. static inline int const hashfn(kdev_t dev, unsigned int id, short type)
  126. {
  127. return((HASHDEV(dev) ^ id) * (MAXQUOTAS - type)) % NR_DQHASH;
  128. }
  129. static inline void insert_dquot_hash(struct dquot *dquot)
  130. {
  131. struct list_head *head = dquot_hash + hashfn(dquot->dq_dev, dquot->dq_id, dquot->dq_type);
  132. list_add(&dquot->dq_hash, head);
  133. }
  134. static inline void remove_dquot_hash(struct dquot *dquot)
  135. {
  136. list_del(&dquot->dq_hash);
  137. INIT_LIST_HEAD(&dquot->dq_hash);
  138. }
  139. static inline struct dquot *find_dquot(unsigned int hashent, kdev_t dev, unsigned int id, short type)
  140. {
  141. struct list_head *head;
  142. struct dquot *dquot;
  143. for (head = dquot_hash[hashent].next; head != dquot_hash+hashent; head = head->next) {
  144. dquot = list_entry(head, struct dquot, dq_hash);
  145. if (dquot->dq_dev == dev && dquot->dq_id == id && dquot->dq_type == type)
  146. return dquot;
  147. }
  148. return NODQUOT;
  149. }
  150. /* Add a dquot to the head of the free list */
  151. static inline void put_dquot_head(struct dquot *dquot)
  152. {
  153. list_add(&dquot->dq_free, &free_dquots);
  154. nr_free_dquots++;
  155. }
  156. /* Add a dquot to the tail of the free list */
  157. static inline void put_dquot_last(struct dquot *dquot)
  158. {
  159. list_add(&dquot->dq_free, free_dquots.prev);
  160. nr_free_dquots++;
  161. }
  162. /* Move dquot to the head of free list (it must be already on it) */
  163. static inline void move_dquot_head(struct dquot *dquot)
  164. {
  165. list_del(&dquot->dq_free);
  166. list_add(&dquot->dq_free, &free_dquots);
  167. }
  168. static inline void remove_free_dquot(struct dquot *dquot)
  169. {
  170. if (list_empty(&dquot->dq_free))
  171. return;
  172. list_del(&dquot->dq_free);
  173. INIT_LIST_HEAD(&dquot->dq_free);
  174. nr_free_dquots--;
  175. }
  176. static inline void put_inuse(struct dquot *dquot)
  177. {
  178. /* We add to the back of inuse list so we don't have to restart
  179.  * when traversing this list and we block */
  180. list_add(&dquot->dq_inuse, inuse_list.prev);
  181. nr_dquots++;
  182. }
  183. static inline void remove_inuse(struct dquot *dquot)
  184. {
  185. nr_dquots--;
  186. list_del(&dquot->dq_inuse);
  187. }
  188. static void __wait_on_dquot(struct dquot *dquot)
  189. {
  190. DECLARE_WAITQUEUE(wait, current);
  191. add_wait_queue(&dquot->dq_wait_lock, &wait);
  192. repeat:
  193. set_current_state(TASK_UNINTERRUPTIBLE);
  194. if (dquot->dq_flags & DQ_LOCKED) {
  195. schedule();
  196. goto repeat;
  197. }
  198. remove_wait_queue(&dquot->dq_wait_lock, &wait);
  199. current->state = TASK_RUNNING;
  200. }
  201. static inline void wait_on_dquot(struct dquot *dquot)
  202. {
  203. if (dquot->dq_flags & DQ_LOCKED)
  204. __wait_on_dquot(dquot);
  205. }
  206. static inline void lock_dquot(struct dquot *dquot)
  207. {
  208. wait_on_dquot(dquot);
  209. dquot->dq_flags |= DQ_LOCKED;
  210. }
  211. static inline void unlock_dquot(struct dquot *dquot)
  212. {
  213. dquot->dq_flags &= ~DQ_LOCKED;
  214. wake_up(&dquot->dq_wait_lock);
  215. }
  216. static void __wait_dquot_unused(struct dquot *dquot)
  217. {
  218. DECLARE_WAITQUEUE(wait, current);
  219. add_wait_queue(&dquot->dq_wait_free, &wait);
  220. repeat:
  221. set_current_state(TASK_UNINTERRUPTIBLE);
  222. if (dquot->dq_count) {
  223. schedule();
  224. goto repeat;
  225. }
  226. remove_wait_queue(&dquot->dq_wait_free, &wait);
  227. current->state = TASK_RUNNING;
  228. }
  229. /*
  230.  * We don't have to be afraid of deadlocks as we never have quotas on quota files...
  231.  */
  232. static void write_dquot(struct dquot *dquot)
  233. {
  234. short type = dquot->dq_type;
  235. struct file *filp;
  236. mm_segment_t fs;
  237. loff_t offset;
  238. ssize_t ret;
  239. struct semaphore *sem = &dquot->dq_sb->s_dquot.dqio_sem;
  240. struct dqblk dqbuf;
  241. down(sem);
  242. filp = dquot->dq_sb->s_dquot.files[type];
  243. offset = dqoff(dquot->dq_id);
  244. fs = get_fs();
  245. set_fs(KERNEL_DS);
  246. /*
  247.  * Note: clear the DQ_MOD flag unconditionally,
  248.  * so we don't loop forever on failure.
  249.  */
  250. memcpy(&dqbuf, &dquot->dq_dqb, sizeof(struct dqblk));
  251. dquot->dq_flags &= ~DQ_MOD;
  252. ret = 0;
  253. if (filp)
  254. ret = filp->f_op->write(filp, (char *)&dqbuf, 
  255. sizeof(struct dqblk), &offset);
  256. if (ret != sizeof(struct dqblk))
  257. printk(KERN_WARNING "VFS: dquota write failed on dev %sn",
  258. kdevname(dquot->dq_dev));
  259. set_fs(fs);
  260. up(sem);
  261. dqstats.writes++;
  262. }
  263. static void read_dquot(struct dquot *dquot)
  264. {
  265. short type = dquot->dq_type;
  266. struct file *filp;
  267. mm_segment_t fs;
  268. loff_t offset;
  269. filp = dquot->dq_sb->s_dquot.files[type];
  270. if (filp == (struct file *)NULL)
  271. return;
  272. lock_dquot(dquot);
  273. if (!dquot->dq_sb) /* Invalidated quota? */
  274. goto out_lock;
  275. /* Now we are sure filp is valid - the dquot isn't invalidated */
  276. down(&dquot->dq_sb->s_dquot.dqio_sem);
  277. offset = dqoff(dquot->dq_id);
  278. fs = get_fs();
  279. set_fs(KERNEL_DS);
  280. filp->f_op->read(filp, (char *)&dquot->dq_dqb, sizeof(struct dqblk), &offset);
  281. up(&dquot->dq_sb->s_dquot.dqio_sem);
  282. set_fs(fs);
  283. if (dquot->dq_bhardlimit == 0 && dquot->dq_bsoftlimit == 0 &&
  284.     dquot->dq_ihardlimit == 0 && dquot->dq_isoftlimit == 0)
  285. dquot->dq_flags |= DQ_FAKE;
  286. dqstats.reads++;
  287. out_lock:
  288. unlock_dquot(dquot);
  289. }
  290. /* Invalidate all dquots on the list, wait for all users. Note that this function is called
  291.  * after quota is disabled so no new quota might be created. As we only insert to the end of
  292.  * inuse list, we don't have to restart searching... */
  293. static void invalidate_dquots(struct super_block *sb, short type)
  294. {
  295. struct dquot *dquot;
  296. struct list_head *head;
  297. restart:
  298. for (head = inuse_list.next; head != &inuse_list; head = head->next) {
  299. dquot = list_entry(head, struct dquot, dq_inuse);
  300. if (dquot->dq_sb != sb)
  301. continue;
  302. if (dquot->dq_type != type)
  303. continue;
  304. dquot->dq_flags |= DQ_INVAL;
  305. if (dquot->dq_count)
  306. /*
  307.  *  Wait for any users of quota. As we have already cleared the flags in
  308.  *  superblock and cleared all pointers from inodes we are assured
  309.  *  that there will be no new users of this quota.
  310.  */
  311. __wait_dquot_unused(dquot);
  312. /* Quota now have no users and it has been written on last dqput() */
  313. remove_dquot_hash(dquot);
  314. remove_free_dquot(dquot);
  315. remove_inuse(dquot);
  316. kmem_cache_free(dquot_cachep, dquot);
  317. goto restart;
  318. }
  319. }
  320. int sync_dquots(kdev_t dev, short type)
  321. {
  322. struct list_head *head;
  323. struct dquot *dquot;
  324. lock_kernel();
  325. restart:
  326. for (head = inuse_list.next; head != &inuse_list; head = head->next) {
  327. dquot = list_entry(head, struct dquot, dq_inuse);
  328. if (dev && dquot->dq_dev != dev)
  329. continue;
  330.                 if (type != -1 && dquot->dq_type != type)
  331. continue;
  332. if (!dquot->dq_sb) /* Invalidated? */
  333. continue;
  334. if (!(dquot->dq_flags & (DQ_MOD | DQ_LOCKED)))
  335. continue;
  336. /* Raise use count so quota won't be invalidated. We can't use dqduplicate() as it does too many tests */
  337. dquot->dq_count++;
  338. if (dquot->dq_flags & DQ_LOCKED)
  339. wait_on_dquot(dquot);
  340. if (dquot->dq_flags & DQ_MOD)
  341. write_dquot(dquot);
  342. dqput(dquot);
  343. goto restart;
  344. }
  345. dqstats.syncs++;
  346. unlock_kernel();
  347. return 0;
  348. }
  349. /* Free unused dquots from cache */
  350. static void prune_dqcache(int count)
  351. {
  352. struct list_head *head;
  353. struct dquot *dquot;
  354. head = free_dquots.prev;
  355. while (head != &free_dquots && count) {
  356. dquot = list_entry(head, struct dquot, dq_free);
  357. remove_dquot_hash(dquot);
  358. remove_free_dquot(dquot);
  359. remove_inuse(dquot);
  360. kmem_cache_free(dquot_cachep, dquot);
  361. count--;
  362. head = free_dquots.prev;
  363. }
  364. }
  365. int shrink_dqcache_memory(int priority, unsigned int gfp_mask)
  366. {
  367. lock_kernel();
  368. prune_dqcache(nr_free_dquots / (priority + 1));
  369. unlock_kernel();
  370. kmem_cache_shrink(dquot_cachep);
  371. return 0;
  372. }
  373. /* NOTE: If you change this function please check whether dqput_blocks() works right... */
  374. static void dqput(struct dquot *dquot)
  375. {
  376. if (!dquot)
  377. return;
  378. if (!dquot->dq_count) {
  379. printk("VFS: dqput: trying to free free dquotn");
  380. printk("VFS: device %s, dquot of %s %dn",
  381. kdevname(dquot->dq_dev), quotatypes[dquot->dq_type],
  382. dquot->dq_id);
  383. return;
  384. }
  385. dqstats.drops++;
  386. we_slept:
  387. if (dquot->dq_count > 1) {
  388. /* We have more than one user... We can simply decrement use count */
  389. dquot->dq_count--;
  390. return;
  391. }
  392. if (dquot->dq_flags & DQ_MOD) {
  393. write_dquot(dquot);
  394. goto we_slept;
  395. }
  396. /* sanity check */
  397. if (!list_empty(&dquot->dq_free)) {
  398. printk(KERN_ERR "dqput: dquot already on free list??n");
  399. dquot->dq_count--; /* J.K. Just decrementing use count seems safer... */
  400. return;
  401. }
  402. dquot->dq_count--;
  403. /* If dquot is going to be invalidated invalidate_dquots() is going to free it so */
  404. if (!(dquot->dq_flags & DQ_INVAL))
  405. put_dquot_last(dquot); /* Place at end of LRU free queue */
  406. wake_up(&dquot->dq_wait_free);
  407. }
  408. static struct dquot *get_empty_dquot(void)
  409. {
  410. struct dquot *dquot;
  411. dquot = kmem_cache_alloc(dquot_cachep, SLAB_KERNEL);
  412. if(!dquot)
  413. return NODQUOT;
  414. memset((caddr_t)dquot, 0, sizeof(struct dquot));
  415. init_waitqueue_head(&dquot->dq_wait_free);
  416. init_waitqueue_head(&dquot->dq_wait_lock);
  417. INIT_LIST_HEAD(&dquot->dq_free);
  418. INIT_LIST_HEAD(&dquot->dq_inuse);
  419. INIT_LIST_HEAD(&dquot->dq_hash);
  420. dquot->dq_count = 1;
  421. /* all dquots go on the inuse_list */
  422. put_inuse(dquot);
  423. return dquot;
  424. }
  425. static struct dquot *dqget(struct super_block *sb, unsigned int id, short type)
  426. {
  427. unsigned int hashent = hashfn(sb->s_dev, id, type);
  428. struct dquot *dquot, *empty = NODQUOT;
  429. struct quota_mount_options *dqopt = sb_dqopt(sb);
  430. we_slept:
  431.         if (!is_enabled(dqopt, type)) {
  432. if (empty)
  433. dqput(empty);
  434.                 return NODQUOT;
  435. }
  436. if ((dquot = find_dquot(hashent, sb->s_dev, id, type)) == NODQUOT) {
  437. if (empty == NODQUOT) {
  438. if ((empty = get_empty_dquot()) == NODQUOT)
  439. schedule(); /* Try to wait for a moment... */
  440. goto we_slept;
  441. }
  442. dquot = empty;
  443.          dquot->dq_id = id;
  444.          dquot->dq_type = type;
  445.          dquot->dq_dev = sb->s_dev;
  446.          dquot->dq_sb = sb;
  447. /* hash it first so it can be found */
  448. insert_dquot_hash(dquot);
  449.          read_dquot(dquot);
  450. } else {
  451. if (!dquot->dq_count++)
  452. remove_free_dquot(dquot);
  453. dqstats.cache_hits++;
  454. wait_on_dquot(dquot);
  455. if (empty)
  456. dqput(empty);
  457. }
  458. if (!dquot->dq_sb) { /* Has somebody invalidated entry under us? */
  459. printk(KERN_ERR "VFS: dqget(): Quota invalidated in dqget()!n");
  460. dqput(dquot);
  461. return NODQUOT;
  462. }
  463. dquot->dq_referenced++;
  464. dqstats.lookups++;
  465. return dquot;
  466. }
  467. static struct dquot *dqduplicate(struct dquot *dquot)
  468. {
  469. if (dquot == NODQUOT)
  470. return NODQUOT;
  471. dquot->dq_count++;
  472. if (!dquot->dq_sb) {
  473. printk(KERN_ERR "VFS: dqduplicate(): Invalidated quota to be duplicated!n");
  474. dquot->dq_count--;
  475. return NODQUOT;
  476. }
  477. if (dquot->dq_flags & DQ_LOCKED)
  478. printk(KERN_ERR "VFS: dqduplicate(): Locked quota to be duplicated!n");
  479. dquot->dq_referenced++;
  480. dqstats.lookups++;
  481. return dquot;
  482. }
  483. static int dqinit_needed(struct inode *inode, short type)
  484. {
  485. int cnt;
  486. if (IS_NOQUOTA(inode))
  487. return 0;
  488. if (type != -1)
  489. return inode->i_dquot[type] == NODQUOT;
  490. for (cnt = 0; cnt < MAXQUOTAS; cnt++)
  491. if (inode->i_dquot[cnt] == NODQUOT)
  492. return 1;
  493. return 0;
  494. }
  495. static void add_dquot_ref(struct super_block *sb, short type)
  496. {
  497. struct list_head *p;
  498. if (!sb->dq_op)
  499. return; /* nothing to do */
  500. restart:
  501. file_list_lock();
  502. for (p = sb->s_files.next; p != &sb->s_files; p = p->next) {
  503. struct file *filp = list_entry(p, struct file, f_list);
  504. struct inode *inode = filp->f_dentry->d_inode;
  505. if (filp->f_mode & FMODE_WRITE && dqinit_needed(inode, type)) {
  506. struct vfsmount *mnt = mntget(filp->f_vfsmnt);
  507. struct dentry *dentry = dget(filp->f_dentry);
  508. file_list_unlock();
  509. sb->dq_op->initialize(inode, type);
  510. dput(dentry);
  511. mntput(mnt);
  512. /* As we may have blocked we had better restart... */
  513. goto restart;
  514. }
  515. }
  516. file_list_unlock();
  517. }
  518. /* Return 0 if dqput() won't block (note that 1 doesn't necessarily mean blocking) */
  519. static inline int dqput_blocks(struct dquot *dquot)
  520. {
  521. if (dquot->dq_count == 1)
  522. return 1;
  523. return 0;
  524. }
  525. /* Remove references to dquots from inode - add dquot to list for freeing if needed */
  526. int remove_inode_dquot_ref(struct inode *inode, short type, struct list_head *tofree_head)
  527. {
  528. struct dquot *dquot = inode->i_dquot[type];
  529. int cnt;
  530. inode->i_dquot[type] = NODQUOT;
  531. /* any other quota in use? */
  532. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  533. if (inode->i_dquot[cnt] != NODQUOT)
  534. goto put_it;
  535. }
  536. inode->i_flags &= ~S_QUOTA;
  537. put_it:
  538. if (dquot != NODQUOT) {
  539. if (dqput_blocks(dquot)) {
  540. if (dquot->dq_count != 1)
  541. printk(KERN_WARNING "VFS: Adding dquot with dq_count %d to dispose list.n", dquot->dq_count);
  542. list_add(&dquot->dq_free, tofree_head); /* As dquot must have currently users it can't be on the free list... */
  543. return 1;
  544. }
  545. else
  546. dqput(dquot);   /* We have guaranteed we won't block */
  547. }
  548. return 0;
  549. }
  550. /* Free list of dquots - called from inode.c */
  551. void put_dquot_list(struct list_head *tofree_head)
  552. {
  553. struct list_head *act_head;
  554. struct dquot *dquot;
  555. lock_kernel();
  556. act_head = tofree_head->next;
  557. /* So now we have dquots on the list... Just free them */
  558. while (act_head != tofree_head) {
  559. dquot = list_entry(act_head, struct dquot, dq_free);
  560. act_head = act_head->next;
  561. list_del(&dquot->dq_free); /* Remove dquot from the list so we won't have problems... */
  562. INIT_LIST_HEAD(&dquot->dq_free);
  563. dqput(dquot);
  564. }
  565. unlock_kernel();
  566. }
  567. static inline void dquot_incr_inodes(struct dquot *dquot, unsigned long number)
  568. {
  569. dquot->dq_curinodes += number;
  570. dquot->dq_flags |= DQ_MOD;
  571. }
  572. static inline void dquot_incr_blocks(struct dquot *dquot, unsigned long number)
  573. {
  574. dquot->dq_curblocks += number;
  575. dquot->dq_flags |= DQ_MOD;
  576. }
  577. static inline void dquot_decr_inodes(struct dquot *dquot, unsigned long number)
  578. {
  579. if (dquot->dq_curinodes > number)
  580. dquot->dq_curinodes -= number;
  581. else
  582. dquot->dq_curinodes = 0;
  583. if (dquot->dq_curinodes < dquot->dq_isoftlimit)
  584. dquot->dq_itime = (time_t) 0;
  585. dquot->dq_flags &= ~DQ_INODES;
  586. dquot->dq_flags |= DQ_MOD;
  587. }
  588. static inline void dquot_decr_blocks(struct dquot *dquot, unsigned long number)
  589. {
  590. if (dquot->dq_curblocks > number)
  591. dquot->dq_curblocks -= number;
  592. else
  593. dquot->dq_curblocks = 0;
  594. if (dquot->dq_curblocks < dquot->dq_bsoftlimit)
  595. dquot->dq_btime = (time_t) 0;
  596. dquot->dq_flags &= ~DQ_BLKS;
  597. dquot->dq_flags |= DQ_MOD;
  598. }
  599. static inline int need_print_warning(struct dquot *dquot, int flag)
  600. {
  601. switch (dquot->dq_type) {
  602. case USRQUOTA:
  603. return current->fsuid == dquot->dq_id && !(dquot->dq_flags & flag);
  604. case GRPQUOTA:
  605. return in_group_p(dquot->dq_id) && !(dquot->dq_flags & flag);
  606. }
  607. return 0;
  608. }
  609. /* Values of warnings */
  610. #define NOWARN 0
  611. #define IHARDWARN 1
  612. #define ISOFTLONGWARN 2
  613. #define ISOFTWARN 3
  614. #define BHARDWARN 4
  615. #define BSOFTLONGWARN 5
  616. #define BSOFTWARN 6
  617. /* Print warning to user which exceeded quota */
  618. static void print_warning(struct dquot *dquot, const char warntype)
  619. {
  620. char *msg = NULL;
  621. int flag = (warntype == BHARDWARN || warntype == BSOFTLONGWARN) ? DQ_BLKS :
  622.   ((warntype == IHARDWARN || warntype == ISOFTLONGWARN) ? DQ_INODES : 0);
  623. if (!need_print_warning(dquot, flag))
  624. return;
  625. dquot->dq_flags |= flag;
  626. tty_write_message(current->tty, (char *)bdevname(dquot->dq_sb->s_dev));
  627. if (warntype == ISOFTWARN || warntype == BSOFTWARN)
  628. tty_write_message(current->tty, ": warning, ");
  629. else
  630. tty_write_message(current->tty, ": write failed, ");
  631. tty_write_message(current->tty, quotatypes[dquot->dq_type]);
  632. switch (warntype) {
  633. case IHARDWARN:
  634. msg = " file limit reached.n";
  635. break;
  636. case ISOFTLONGWARN:
  637. msg = " file quota exceeded too long.n";
  638. break;
  639. case ISOFTWARN:
  640. msg = " file quota exceeded.n";
  641. break;
  642. case BHARDWARN:
  643. msg = " block limit reached.n";
  644. break;
  645. case BSOFTLONGWARN:
  646. msg = " block quota exceeded too long.n";
  647. break;
  648. case BSOFTWARN:
  649. msg = " block quota exceeded.n";
  650. break;
  651. }
  652. tty_write_message(current->tty, msg);
  653. }
  654. static inline void flush_warnings(struct dquot **dquots, char *warntype)
  655. {
  656. int i;
  657. for (i = 0; i < MAXQUOTAS; i++)
  658. if (dquots[i] != NODQUOT && warntype[i] != NOWARN)
  659. print_warning(dquots[i], warntype[i]);
  660. }
  661. static inline char ignore_hardlimit(struct dquot *dquot)
  662. {
  663. return capable(CAP_SYS_RESOURCE) && !dquot->dq_sb->s_dquot.rsquash[dquot->dq_type];
  664. }
  665. static int check_idq(struct dquot *dquot, ulong inodes, char *warntype)
  666. {
  667. *warntype = NOWARN;
  668. if (inodes <= 0 || dquot->dq_flags & DQ_FAKE)
  669. return QUOTA_OK;
  670. if (dquot->dq_ihardlimit &&
  671.    (dquot->dq_curinodes + inodes) > dquot->dq_ihardlimit &&
  672.             !ignore_hardlimit(dquot)) {
  673. *warntype = IHARDWARN;
  674. return NO_QUOTA;
  675. }
  676. if (dquot->dq_isoftlimit &&
  677.    (dquot->dq_curinodes + inodes) > dquot->dq_isoftlimit &&
  678.     dquot->dq_itime && CURRENT_TIME >= dquot->dq_itime &&
  679.             !ignore_hardlimit(dquot)) {
  680. *warntype = ISOFTLONGWARN;
  681. return NO_QUOTA;
  682. }
  683. if (dquot->dq_isoftlimit &&
  684.    (dquot->dq_curinodes + inodes) > dquot->dq_isoftlimit &&
  685.     dquot->dq_itime == 0) {
  686. *warntype = ISOFTWARN;
  687. dquot->dq_itime = CURRENT_TIME + dquot->dq_sb->s_dquot.inode_expire[dquot->dq_type];
  688. }
  689. return QUOTA_OK;
  690. }
  691. static int check_bdq(struct dquot *dquot, ulong blocks, char prealloc, char *warntype)
  692. {
  693. *warntype = 0;
  694. if (blocks <= 0 || dquot->dq_flags & DQ_FAKE)
  695. return QUOTA_OK;
  696. if (dquot->dq_bhardlimit &&
  697.    (dquot->dq_curblocks + blocks) > dquot->dq_bhardlimit &&
  698.             !ignore_hardlimit(dquot)) {
  699. if (!prealloc)
  700. *warntype = BHARDWARN;
  701. return NO_QUOTA;
  702. }
  703. if (dquot->dq_bsoftlimit &&
  704.    (dquot->dq_curblocks + blocks) > dquot->dq_bsoftlimit &&
  705.     dquot->dq_btime && CURRENT_TIME >= dquot->dq_btime &&
  706.             !ignore_hardlimit(dquot)) {
  707. if (!prealloc)
  708. *warntype = BSOFTLONGWARN;
  709. return NO_QUOTA;
  710. }
  711. if (dquot->dq_bsoftlimit &&
  712.    (dquot->dq_curblocks + blocks) > dquot->dq_bsoftlimit &&
  713.     dquot->dq_btime == 0) {
  714. if (!prealloc) {
  715. *warntype = BSOFTWARN;
  716. dquot->dq_btime = CURRENT_TIME + dquot->dq_sb->s_dquot.block_expire[dquot->dq_type];
  717. }
  718. else
  719. /*
  720.  * We don't allow preallocation to exceed softlimit so exceeding will
  721.  * be always printed
  722.  */
  723. return NO_QUOTA;
  724. }
  725. return QUOTA_OK;
  726. }
  727. /*
  728.  * Initialize a dquot-struct with new quota info. This is used by the
  729.  * system call interface functions.
  730.  */ 
  731. static int set_dqblk(struct super_block *sb, int id, short type, int flags, struct dqblk *dqblk)
  732. {
  733. struct dquot *dquot;
  734. int error = -EFAULT;
  735. struct dqblk dq_dqblk;
  736. if (copy_from_user(&dq_dqblk, dqblk, sizeof(struct dqblk)))
  737. return error;
  738. if (sb && (dquot = dqget(sb, id, type)) != NODQUOT) {
  739. /* We can't block while changing quota structure... */
  740. if (id > 0 && ((flags & SET_QUOTA) || (flags & SET_QLIMIT))) {
  741. dquot->dq_bhardlimit = dq_dqblk.dqb_bhardlimit;
  742. dquot->dq_bsoftlimit = dq_dqblk.dqb_bsoftlimit;
  743. dquot->dq_ihardlimit = dq_dqblk.dqb_ihardlimit;
  744. dquot->dq_isoftlimit = dq_dqblk.dqb_isoftlimit;
  745. }
  746. if ((flags & SET_QUOTA) || (flags & SET_USE)) {
  747. if (dquot->dq_isoftlimit &&
  748.     dquot->dq_curinodes < dquot->dq_isoftlimit &&
  749.     dq_dqblk.dqb_curinodes >= dquot->dq_isoftlimit)
  750. dquot->dq_itime = CURRENT_TIME + dquot->dq_sb->s_dquot.inode_expire[type];
  751. dquot->dq_curinodes = dq_dqblk.dqb_curinodes;
  752. if (dquot->dq_curinodes < dquot->dq_isoftlimit)
  753. dquot->dq_flags &= ~DQ_INODES;
  754. if (dquot->dq_bsoftlimit &&
  755.     dquot->dq_curblocks < dquot->dq_bsoftlimit &&
  756.     dq_dqblk.dqb_curblocks >= dquot->dq_bsoftlimit)
  757. dquot->dq_btime = CURRENT_TIME + dquot->dq_sb->s_dquot.block_expire[type];
  758. dquot->dq_curblocks = dq_dqblk.dqb_curblocks;
  759. if (dquot->dq_curblocks < dquot->dq_bsoftlimit)
  760. dquot->dq_flags &= ~DQ_BLKS;
  761. }
  762. if (id == 0) {
  763. dquot->dq_sb->s_dquot.block_expire[type] = dquot->dq_btime = dq_dqblk.dqb_btime;
  764. dquot->dq_sb->s_dquot.inode_expire[type] = dquot->dq_itime = dq_dqblk.dqb_itime;
  765. }
  766. if (dq_dqblk.dqb_bhardlimit == 0 && dq_dqblk.dqb_bsoftlimit == 0 &&
  767.     dq_dqblk.dqb_ihardlimit == 0 && dq_dqblk.dqb_isoftlimit == 0)
  768. dquot->dq_flags |= DQ_FAKE;
  769. else
  770. dquot->dq_flags &= ~DQ_FAKE;
  771. dquot->dq_flags |= DQ_MOD;
  772. dqput(dquot);
  773. }
  774. return 0;
  775. }
  776. static int get_quota(struct super_block *sb, int id, short type, struct dqblk *dqblk)
  777. {
  778. struct dquot *dquot;
  779. struct dqblk data;
  780. int error = -ESRCH;
  781. if (!sb || !sb_has_quota_enabled(sb, type))
  782. goto out;
  783. dquot = dqget(sb, id, type);
  784. if (dquot == NODQUOT)
  785. goto out;
  786. memcpy(&data, &dquot->dq_dqb, sizeof(struct dqblk));        /* We copy data to preserve them from changing */
  787. dqput(dquot);
  788. error = -EFAULT;
  789. if (dqblk && !copy_to_user(dqblk, &data, sizeof(struct dqblk)))
  790. error = 0;
  791. out:
  792. return error;
  793. }
  794. static int get_stats(caddr_t addr)
  795. {
  796. int error = -EFAULT;
  797. struct dqstats stats;
  798. dqstats.allocated_dquots = nr_dquots;
  799. dqstats.free_dquots = nr_free_dquots;
  800. /* make a copy, in case we page-fault in user space */
  801. memcpy(&stats, &dqstats, sizeof(struct dqstats));
  802. if (!copy_to_user(addr, &stats, sizeof(struct dqstats)))
  803. error = 0;
  804. return error;
  805. }
  806. static int quota_root_squash(struct super_block *sb, short type, int *addr)
  807. {
  808. int new_value, error;
  809. if (!sb)
  810. return(-ENODEV);
  811. error = -EFAULT;
  812. if (!copy_from_user(&new_value, addr, sizeof(int))) {
  813. sb_dqopt(sb)->rsquash[type] = new_value;
  814. error = 0;
  815. }
  816. return error;
  817. }
  818. #if 0 /* We are not going to support filesystems without i_blocks... */
  819. /*
  820.  * This is a simple algorithm that calculates the size of a file in blocks.
  821.  * This is only used on filesystems that do not have an i_blocks count.
  822.  */
  823. static u_long isize_to_blocks(loff_t isize, size_t blksize_bits)
  824. {
  825. u_long blocks;
  826. u_long indirect;
  827. if (!blksize_bits)
  828. blksize_bits = BLOCK_SIZE_BITS;
  829. blocks = (isize >> blksize_bits) + ((isize & ~((1 << blksize_bits)-1)) ? 1 : 0);
  830. if (blocks > 10) {
  831. indirect = ((blocks - 11) >> 8) + 1; /* single indirect blocks */
  832. if (blocks > (10 + 256)) {
  833. indirect += ((blocks - 267) >> 16) + 1; /* double indirect blocks */
  834. if (blocks > (10 + 256 + (256 << 8)))
  835. indirect++; /* triple indirect blocks */
  836. }
  837. blocks += indirect;
  838. }
  839. return blocks;
  840. }
  841. #endif
  842. /*
  843.  * Externally referenced functions through dquot_operations in inode.
  844.  *
  845.  * Note: this is a blocking operation.
  846.  */
  847. void dquot_initialize(struct inode *inode, short type)
  848. {
  849. struct dquot *dquot[MAXQUOTAS];
  850. unsigned int id = 0;
  851. short cnt;
  852. if (IS_NOQUOTA(inode))
  853. return;
  854. /* Build list of quotas to initialize... We can block here */
  855. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  856. dquot[cnt] = NODQUOT;
  857. if (type != -1 && cnt != type)
  858. continue;
  859. if (!sb_has_quota_enabled(inode->i_sb, cnt))
  860. continue;
  861. if (inode->i_dquot[cnt] == NODQUOT) {
  862. switch (cnt) {
  863. case USRQUOTA:
  864. id = inode->i_uid;
  865. break;
  866. case GRPQUOTA:
  867. id = inode->i_gid;
  868. break;
  869. }
  870. dquot[cnt] = dqget(inode->i_sb, id, cnt);
  871. }
  872. }
  873. /* NOBLOCK START: Here we shouldn't block */
  874. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  875. if (dquot[cnt] == NODQUOT || !sb_has_quota_enabled(inode->i_sb, cnt) || inode->i_dquot[cnt] != NODQUOT)
  876. continue;
  877. inode->i_dquot[cnt] = dquot[cnt];
  878. dquot[cnt] = NODQUOT;
  879. inode->i_flags |= S_QUOTA;
  880. }
  881. /* NOBLOCK END */
  882. /* Put quotas which we didn't use */
  883. for (cnt = 0; cnt < MAXQUOTAS; cnt++)
  884. if (dquot[cnt] != NODQUOT)
  885. dqput(dquot[cnt]);
  886. }
  887. /*
  888.  * Release all quota for the specified inode.
  889.  *
  890.  * Note: this is a blocking operation.
  891.  */
  892. void dquot_drop(struct inode *inode)
  893. {
  894. struct dquot *dquot;
  895. short cnt;
  896. inode->i_flags &= ~S_QUOTA;
  897. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  898. if (inode->i_dquot[cnt] == NODQUOT)
  899. continue;
  900. dquot = inode->i_dquot[cnt];
  901. inode->i_dquot[cnt] = NODQUOT;
  902. dqput(dquot);
  903. }
  904. }
  905. /*
  906.  * This operation can block, but only after everything is updated
  907.  */
  908. int dquot_alloc_block(struct inode *inode, unsigned long number, char warn)
  909. {
  910. int cnt, ret = NO_QUOTA;
  911. struct dquot *dquot[MAXQUOTAS];
  912. char warntype[MAXQUOTAS];
  913. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  914. dquot[cnt] = NODQUOT;
  915. warntype[cnt] = NOWARN;
  916. }
  917. /* NOBLOCK Start */
  918. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  919. dquot[cnt] = dqduplicate(inode->i_dquot[cnt]);
  920. if (dquot[cnt] == NODQUOT)
  921. continue;
  922. if (check_bdq(dquot[cnt], number, warn, warntype+cnt) == NO_QUOTA)
  923. goto warn_put_all;
  924. }
  925. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  926. if (dquot[cnt] == NODQUOT)
  927. continue;
  928. dquot_incr_blocks(dquot[cnt], number);
  929. }
  930. inode->i_blocks += number << (BLOCK_SIZE_BITS - 9);
  931. /* NOBLOCK End */
  932. ret = QUOTA_OK;
  933. warn_put_all:
  934. flush_warnings(dquot, warntype);
  935. for (cnt = 0; cnt < MAXQUOTAS; cnt++)
  936. if (dquot[cnt] != NODQUOT)
  937. dqput(dquot[cnt]);
  938. return ret;
  939. }
  940. /*
  941.  * This operation can block, but only after everything is updated
  942.  */
  943. int dquot_alloc_inode(const struct inode *inode, unsigned long number)
  944. {
  945. int cnt, ret = NO_QUOTA;
  946. struct dquot *dquot[MAXQUOTAS];
  947. char warntype[MAXQUOTAS];
  948. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  949. dquot[cnt] = NODQUOT;
  950. warntype[cnt] = NOWARN;
  951. }
  952. /* NOBLOCK Start */
  953. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  954. dquot[cnt] = dqduplicate(inode -> i_dquot[cnt]);
  955. if (dquot[cnt] == NODQUOT)
  956. continue;
  957. if (check_idq(dquot[cnt], number, warntype+cnt) == NO_QUOTA)
  958. goto warn_put_all;
  959. }
  960. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  961. if (dquot[cnt] == NODQUOT)
  962. continue;
  963. dquot_incr_inodes(dquot[cnt], number);
  964. }
  965. /* NOBLOCK End */
  966. ret = QUOTA_OK;
  967. warn_put_all:
  968. flush_warnings(dquot, warntype);
  969. for (cnt = 0; cnt < MAXQUOTAS; cnt++)
  970. if (dquot[cnt] != NODQUOT)
  971. dqput(dquot[cnt]);
  972. return ret;
  973. }
  974. /*
  975.  * This is a non-blocking operation.
  976.  */
  977. void dquot_free_block(struct inode *inode, unsigned long number)
  978. {
  979. unsigned short cnt;
  980. struct dquot *dquot;
  981. /* NOBLOCK Start */
  982. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  983. dquot = dqduplicate(inode->i_dquot[cnt]);
  984. if (dquot == NODQUOT)
  985. continue;
  986. dquot_decr_blocks(dquot, number);
  987. dqput(dquot);
  988. }
  989. inode->i_blocks -= number << (BLOCK_SIZE_BITS - 9);
  990. /* NOBLOCK End */
  991. }
  992. /*
  993.  * This is a non-blocking operation.
  994.  */
  995. void dquot_free_inode(const struct inode *inode, unsigned long number)
  996. {
  997. unsigned short cnt;
  998. struct dquot *dquot;
  999. /* NOBLOCK Start */
  1000. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  1001. dquot = dqduplicate(inode->i_dquot[cnt]);
  1002. if (dquot == NODQUOT)
  1003. continue;
  1004. dquot_decr_inodes(dquot, number);
  1005. dqput(dquot);
  1006. }
  1007. /* NOBLOCK End */
  1008. }
  1009. /*
  1010.  * Transfer the number of inode and blocks from one diskquota to an other.
  1011.  *
  1012.  * This operation can block, but only after everything is updated
  1013.  */
  1014. int dquot_transfer(struct inode *inode, struct iattr *iattr)
  1015. {
  1016. unsigned long blocks;
  1017. struct dquot *transfer_from[MAXQUOTAS];
  1018. struct dquot *transfer_to[MAXQUOTAS];
  1019. int cnt, ret = NO_QUOTA, chuid = (iattr->ia_valid & ATTR_UID) && inode->i_uid != iattr->ia_uid,
  1020.     chgid = (iattr->ia_valid & ATTR_GID) && inode->i_gid != iattr->ia_gid;
  1021. char warntype[MAXQUOTAS];
  1022. /* Clear the arrays */
  1023. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  1024. transfer_to[cnt] = transfer_from[cnt] = NODQUOT;
  1025. warntype[cnt] = NOWARN;
  1026. }
  1027. /* First build the transfer_to list - here we can block on reading of dquots... */
  1028. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  1029. if (!sb_has_quota_enabled(inode->i_sb, cnt))
  1030. continue;
  1031. switch (cnt) {
  1032. case USRQUOTA:
  1033. if (!chuid)
  1034. continue;
  1035. transfer_to[cnt] = dqget(inode->i_sb, iattr->ia_uid, cnt);
  1036. break;
  1037. case GRPQUOTA:
  1038. if (!chgid)
  1039. continue;
  1040. transfer_to[cnt] = dqget(inode->i_sb, iattr->ia_gid, cnt);
  1041. break;
  1042. }
  1043. }
  1044. /* NOBLOCK START: From now on we shouldn't block */
  1045. blocks = (inode->i_blocks >> 1);
  1046. /* Build the transfer_from list and check the limits */
  1047. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  1048. /* The second test can fail when quotaoff is in progress... */
  1049. if (transfer_to[cnt] == NODQUOT || !sb_has_quota_enabled(inode->i_sb, cnt))
  1050. continue;
  1051. transfer_from[cnt] = dqduplicate(inode->i_dquot[cnt]);
  1052. if (transfer_from[cnt] == NODQUOT) /* Can happen on quotafiles (quota isn't initialized on them)... */
  1053. continue;
  1054. if (check_idq(transfer_to[cnt], 1, warntype+cnt) == NO_QUOTA ||
  1055.     check_bdq(transfer_to[cnt], blocks, 0, warntype+cnt) == NO_QUOTA)
  1056. goto warn_put_all;
  1057. }
  1058. /*
  1059.  * Finally perform the needed transfer from transfer_from to transfer_to
  1060.  */
  1061. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  1062. /*
  1063.  * Skip changes for same uid or gid or for non-existing quota-type.
  1064.  */
  1065. if (transfer_from[cnt] == NODQUOT || transfer_to[cnt] == NODQUOT)
  1066. continue;
  1067. dquot_decr_inodes(transfer_from[cnt], 1);
  1068. dquot_decr_blocks(transfer_from[cnt], blocks);
  1069. dquot_incr_inodes(transfer_to[cnt], 1);
  1070. dquot_incr_blocks(transfer_to[cnt], blocks);
  1071. if (inode->i_dquot[cnt] == NODQUOT)
  1072. BUG();
  1073. inode->i_dquot[cnt] = transfer_to[cnt];
  1074. /*
  1075.  * We've got to release transfer_from[] twice - once for dquot_transfer() and
  1076.  * once for inode. We don't want to release transfer_to[] as it's now placed in inode
  1077.  */
  1078. transfer_to[cnt] = transfer_from[cnt];
  1079. }
  1080. /* NOBLOCK END. From now on we can block as we wish */
  1081. ret = QUOTA_OK;
  1082. warn_put_all:
  1083. flush_warnings(transfer_to, warntype);
  1084. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  1085. if (transfer_to[cnt] != NODQUOT)
  1086. dqput(transfer_to[cnt]);
  1087. if (transfer_from[cnt] != NODQUOT)
  1088. dqput(transfer_from[cnt]);
  1089. }
  1090. return ret;
  1091. }
  1092. static int __init dquot_init(void)
  1093. {
  1094. int i;
  1095. for (i = 0; i < NR_DQHASH; i++)
  1096. INIT_LIST_HEAD(dquot_hash + i);
  1097. printk(KERN_NOTICE "VFS: Diskquotas version %s initializedn", __DQUOT_VERSION__);
  1098. return 0;
  1099. }
  1100. __initcall(dquot_init);
  1101. /*
  1102.  * Definitions of diskquota operations.
  1103.  */
  1104. struct dquot_operations dquot_operations = {
  1105. dquot_initialize, /* mandatory */
  1106. dquot_drop, /* mandatory */
  1107. dquot_alloc_block,
  1108. dquot_alloc_inode,
  1109. dquot_free_block,
  1110. dquot_free_inode,
  1111. dquot_transfer
  1112. };
  1113. static inline void set_enable_flags(struct quota_mount_options *dqopt, short type)
  1114. {
  1115. switch (type) {
  1116. case USRQUOTA:
  1117. dqopt->flags |= DQUOT_USR_ENABLED;
  1118. break;
  1119. case GRPQUOTA:
  1120. dqopt->flags |= DQUOT_GRP_ENABLED;
  1121. break;
  1122. }
  1123. }
  1124. static inline void reset_enable_flags(struct quota_mount_options *dqopt, short type)
  1125. {
  1126. switch (type) {
  1127. case USRQUOTA:
  1128. dqopt->flags &= ~DQUOT_USR_ENABLED;
  1129. break;
  1130. case GRPQUOTA:
  1131. dqopt->flags &= ~DQUOT_GRP_ENABLED;
  1132. break;
  1133. }
  1134. }
  1135. /* Function in inode.c - remove pointers to dquots in icache */
  1136. extern void remove_dquot_ref(struct super_block *, short);
  1137. /*
  1138.  * Turn quota off on a device. type == -1 ==> quotaoff for all types (umount)
  1139.  */
  1140. int quota_off(struct super_block *sb, short type)
  1141. {
  1142. struct file *filp;
  1143. short cnt;
  1144. struct quota_mount_options *dqopt = sb_dqopt(sb);
  1145. lock_kernel();
  1146. if (!sb)
  1147. goto out;
  1148. /* We need to serialize quota_off() for device */
  1149. down(&dqopt->dqoff_sem);
  1150. for (cnt = 0; cnt < MAXQUOTAS; cnt++) {
  1151. if (type != -1 && cnt != type)
  1152. continue;
  1153. if (!is_enabled(dqopt, cnt))
  1154. continue;
  1155. reset_enable_flags(dqopt, cnt);
  1156. /* Note: these are blocking operations */
  1157. remove_dquot_ref(sb, cnt);
  1158. invalidate_dquots(sb, cnt);
  1159. filp = dqopt->files[cnt];
  1160. dqopt->files[cnt] = (struct file *)NULL;
  1161. dqopt->inode_expire[cnt] = 0;
  1162. dqopt->block_expire[cnt] = 0;
  1163. fput(filp);
  1164. }
  1165. up(&dqopt->dqoff_sem);
  1166. out:
  1167. unlock_kernel();
  1168. return 0;
  1169. }
  1170. static inline int check_quotafile_size(loff_t size)
  1171. {
  1172. ulong blocks = size >> BLOCK_SIZE_BITS;
  1173. size_t off = size & (BLOCK_SIZE - 1);
  1174. return !(((blocks % sizeof(struct dqblk)) * BLOCK_SIZE + off % sizeof(struct dqblk)) % sizeof(struct dqblk));
  1175. }
  1176. static int quota_on(struct super_block *sb, short type, char *path)
  1177. {
  1178. struct file *f;
  1179. struct inode *inode;
  1180. struct dquot *dquot;
  1181. struct quota_mount_options *dqopt = sb_dqopt(sb);
  1182. char *tmp;
  1183. int error;
  1184. if (is_enabled(dqopt, type))
  1185. return -EBUSY;
  1186. down(&dqopt->dqoff_sem);
  1187. tmp = getname(path);
  1188. error = PTR_ERR(tmp);
  1189. if (IS_ERR(tmp))
  1190. goto out_lock;
  1191. f = filp_open(tmp, O_RDWR, 0600);
  1192. putname(tmp);
  1193. error = PTR_ERR(f);
  1194. if (IS_ERR(f))
  1195. goto out_lock;
  1196. error = -EIO;
  1197. if (!f->f_op || !f->f_op->read || !f->f_op->write)
  1198. goto out_f;
  1199. inode = f->f_dentry->d_inode;
  1200. error = -EACCES;
  1201. if (!S_ISREG(inode->i_mode))
  1202. goto out_f;
  1203. error = -EINVAL;
  1204. if (inode->i_size == 0 || !check_quotafile_size(inode->i_size))
  1205. goto out_f;
  1206. /* We don't want quota on quota files */
  1207. dquot_drop(inode);
  1208. inode->i_flags |= S_NOQUOTA;
  1209. dqopt->files[type] = f;
  1210. sb->dq_op = &dquot_operations;
  1211. set_enable_flags(dqopt, type);
  1212. dquot = dqget(sb, 0, type);
  1213. dqopt->inode_expire[type] = (dquot != NODQUOT) ? dquot->dq_itime : MAX_IQ_TIME;
  1214. dqopt->block_expire[type] = (dquot != NODQUOT) ? dquot->dq_btime : MAX_DQ_TIME;
  1215. dqput(dquot);
  1216. add_dquot_ref(sb, type);
  1217. up(&dqopt->dqoff_sem);
  1218. return 0;
  1219. out_f:
  1220. filp_close(f, NULL);
  1221. out_lock:
  1222. up(&dqopt->dqoff_sem);
  1223. return error; 
  1224. }
  1225. /*
  1226.  * This is the system call interface. This communicates with
  1227.  * the user-level programs. Currently this only supports diskquota
  1228.  * calls. Maybe we need to add the process quotas etc. in the future,
  1229.  * but we probably should use rlimits for that.
  1230.  */
  1231. asmlinkage long sys_quotactl(int cmd, const char *special, int id, caddr_t addr)
  1232. {
  1233. int cmds = 0, type = 0, flags = 0;
  1234. kdev_t dev;
  1235. struct super_block *sb = NULL;
  1236. int ret = -EINVAL;
  1237. lock_kernel();
  1238. cmds = cmd >> SUBCMDSHIFT;
  1239. type = cmd & SUBCMDMASK;
  1240. if ((u_int) type >= MAXQUOTAS)
  1241. goto out;
  1242. if (id & ~0xFFFF)
  1243. goto out;
  1244. ret = -EPERM;
  1245. switch (cmds) {
  1246. case Q_SYNC:
  1247. case Q_GETSTATS:
  1248. break;
  1249. case Q_GETQUOTA:
  1250. if (((type == USRQUOTA && current->euid != id) ||
  1251.      (type == GRPQUOTA && !in_egroup_p(id))) &&
  1252.     !capable(CAP_SYS_ADMIN))
  1253. goto out;
  1254. break;
  1255. default:
  1256. if (!capable(CAP_SYS_ADMIN))
  1257. goto out;
  1258. }
  1259. ret = -EINVAL;
  1260. dev = NODEV;
  1261. if (special != NULL || (cmds != Q_SYNC && cmds != Q_GETSTATS)) {
  1262. mode_t mode;
  1263. struct nameidata nd;
  1264. ret = user_path_walk(special, &nd);
  1265. if (ret)
  1266. goto out;
  1267. dev = nd.dentry->d_inode->i_rdev;
  1268. mode = nd.dentry->d_inode->i_mode;
  1269. path_release(&nd);
  1270. ret = -ENOTBLK;
  1271. if (!S_ISBLK(mode))
  1272. goto out;
  1273. ret = -ENODEV;
  1274. sb = get_super(dev);
  1275. if (!sb)
  1276. goto out;
  1277. }
  1278. ret = -EINVAL;
  1279. switch (cmds) {
  1280. case Q_QUOTAON:
  1281. ret = quota_on(sb, type, (char *) addr);
  1282. goto out;
  1283. case Q_QUOTAOFF:
  1284. ret = quota_off(sb, type);
  1285. goto out;
  1286. case Q_GETQUOTA:
  1287. ret = get_quota(sb, id, type, (struct dqblk *) addr);
  1288. goto out;
  1289. case Q_SETQUOTA:
  1290. flags |= SET_QUOTA;
  1291. break;
  1292. case Q_SETUSE:
  1293. flags |= SET_USE;
  1294. break;
  1295. case Q_SETQLIM:
  1296. flags |= SET_QLIMIT;
  1297. break;
  1298. case Q_SYNC:
  1299. ret = sync_dquots(dev, type);
  1300. goto out;
  1301. case Q_GETSTATS:
  1302. ret = get_stats(addr);
  1303. goto out;
  1304. case Q_RSQUASH:
  1305. ret = quota_root_squash(sb, type, (int *) addr);
  1306. goto out;
  1307. default:
  1308. goto out;
  1309. }
  1310. ret = -NODEV;
  1311. if (sb && sb_has_quota_enabled(sb, type))
  1312. ret = set_dqblk(sb, id, type, flags, (struct dqblk *) addr);
  1313. out:
  1314. if (sb)
  1315. drop_super(sb);
  1316. unlock_kernel();
  1317. return ret;
  1318. }