locks.c 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244
  1. /*
  2. * linux/fs/locks.c
  3. *
  4. * Provide support for fcntl()'s F_GETLK, F_SETLK, and F_SETLKW calls.
  5. * Doug Evans (dje@spiff.uucp), August 07, 1992
  6. *
  7. * Deadlock detection added.
  8. * FIXME: one thing isn't handled yet:
  9. * - mandatory locks (requires lots of changes elsewhere)
  10. * Kelly Carmichael (kelly@[142.24.8.65]), September 17, 1994.
  11. *
  12. * Miscellaneous edits, and a total rewrite of posix_lock_file() code.
  13. * Kai Petzke (wpp@marie.physik.tu-berlin.de), 1994
  14. *
  15. * Converted file_lock_table to a linked list from an array, which eliminates
  16. * the limits on how many active file locks are open.
  17. * Chad Page (pageone@netcom.com), November 27, 1994
  18. *
  19. * Removed dependency on file descriptors. dup()'ed file descriptors now
  20. * get the same locks as the original file descriptors, and a close() on
  21. * any file descriptor removes ALL the locks on the file for the current
  22. * process. Since locks still depend on the process id, locks are inherited
  23. * after an exec() but not after a fork(). This agrees with POSIX, and both
  24. * BSD and SVR4 practice.
  25. * Andy Walker (andy@lysaker.kvaerner.no), February 14, 1995
  26. *
  27. * Scrapped free list which is redundant now that we allocate locks
  28. * dynamically with kmalloc()/kfree().
  29. * Andy Walker (andy@lysaker.kvaerner.no), February 21, 1995
  30. *
  31. * Implemented two lock personalities - FL_FLOCK and FL_POSIX.
  32. *
  33. * FL_POSIX locks are created with calls to fcntl() and lockf() through the
  34. * fcntl() system call. They have the semantics described above.
  35. *
  36. * FL_FLOCK locks are created with calls to flock(), through the flock()
  37. * system call, which is new. Old C libraries implement flock() via fcntl()
  38. * and will continue to use the old, broken implementation.
  39. *
  40. * FL_FLOCK locks follow the 4.4 BSD flock() semantics. They are associated
  41. * with a file pointer (filp). As a result they can be shared by a parent
  42. * process and its children after a fork(). They are removed when the last
  43. * file descriptor referring to the file pointer is closed (unless explicitly
  44. * unlocked).
  45. *
  46. * FL_FLOCK locks never deadlock, an existing lock is always removed before
  47. * upgrading from shared to exclusive (or vice versa). When this happens
  48. * any processes blocked by the current lock are woken up and allowed to
  49. * run before the new lock is applied.
  50. * Andy Walker (andy@lysaker.kvaerner.no), June 09, 1995
  51. *
  52. * Removed some race conditions in flock_lock_file(), marked other possible
  53. * races. Just grep for FIXME to see them.
  54. * Dmitry Gorodchanin (pgmdsg@ibi.com), February 09, 1996.
  55. *
  56. * Addressed Dmitry's concerns. Deadlock checking no longer recursive.
  57. * Lock allocation changed to GFP_ATOMIC as we can't afford to sleep
  58. * once we've checked for blocking and deadlocking.
  59. * Andy Walker (andy@lysaker.kvaerner.no), April 03, 1996.
  60. *
  61. * Initial implementation of mandatory locks. SunOS turned out to be
  62. * a rotten model, so I implemented the "obvious" semantics.
  63. * See 'Documentation/mandatory.txt' for details.
  64. * Andy Walker (andy@lysaker.kvaerner.no), April 06, 1996.
  65. *
  66. * Don't allow mandatory locks on mmap()'ed files. Added simple functions to
  67. * check if a file has mandatory locks, used by mmap(), open() and creat() to
  68. * see if system call should be rejected. Ref. HP-UX/SunOS/Solaris Reference
  69. * Manual, Section 2.
  70. * Andy Walker (andy@lysaker.kvaerner.no), April 09, 1996.
  71. *
  72. * Tidied up block list handling. Added '/proc/locks' interface.
  73. * Andy Walker (andy@lysaker.kvaerner.no), April 24, 1996.
  74. *
  75. * Fixed deadlock condition for pathological code that mixes calls to
  76. * flock() and fcntl().
  77. * Andy Walker (andy@lysaker.kvaerner.no), April 29, 1996.
  78. *
  79. * Allow only one type of locking scheme (FL_POSIX or FL_FLOCK) to be in use
  80. * for a given file at a time. Changed the CONFIG_LOCK_MANDATORY scheme to
  81. * guarantee sensible behaviour in the case where file system modules might
  82. * be compiled with different options than the kernel itself.
  83. * Andy Walker (andy@lysaker.kvaerner.no), May 15, 1996.
  84. *
  85. * Added a couple of missing wake_up() calls. Thanks to Thomas Meckel
  86. * (Thomas.Meckel@mni.fh-giessen.de) for spotting this.
  87. * Andy Walker (andy@lysaker.kvaerner.no), May 15, 1996.
  88. *
  89. * Changed FL_POSIX locks to use the block list in the same way as FL_FLOCK
  90. * locks. Changed process synchronisation to avoid dereferencing locks that
  91. * have already been freed.
  92. * Andy Walker (andy@lysaker.kvaerner.no), Sep 21, 1996.
  93. *
  94. * Made the block list a circular list to minimise searching in the list.
  95. * Andy Walker (andy@lysaker.kvaerner.no), Sep 25, 1996.
  96. *
  97. * Made mandatory locking a mount option. Default is not to allow mandatory
  98. * locking.
  99. * Andy Walker (andy@lysaker.kvaerner.no), Oct 04, 1996.
  100. *
  101. * Some adaptations for NFS support.
  102. * Olaf Kirch (okir@monad.swb.de), Dec 1996,
  103. *
  104. * Fixed /proc/locks interface so that we can't overrun the buffer we are handed.
  105. * Andy Walker (andy@lysaker.kvaerner.no), May 12, 1997.
  106. *
  107. * Use slab allocator instead of kmalloc/kfree.
  108. * Use generic list implementation from <linux/list.h>.
  109. * Sped up posix_locks_deadlock by only considering blocked locks.
  110. * Matthew Wilcox <willy@debian.org>, March, 2000.
  111. *
  112. * Leases and LOCK_MAND
  113. * Matthew Wilcox <willy@debian.org>, June, 2000.
  114. * Stephen Rothwell <sfr@canb.auug.org.au>, June, 2000.
  115. */
  116. #include <linux/capability.h>
  117. #include <linux/file.h>
  118. #include <linux/fs.h>
  119. #include <linux/init.h>
  120. #include <linux/module.h>
  121. #include <linux/security.h>
  122. #include <linux/slab.h>
  123. #include <linux/smp_lock.h>
  124. #include <linux/syscalls.h>
  125. #include <linux/time.h>
  126. #include <linux/rcupdate.h>
  127. #include <asm/semaphore.h>
  128. #include <asm/uaccess.h>
  129. #define IS_POSIX(fl) (fl->fl_flags & FL_POSIX)
  130. #define IS_FLOCK(fl) (fl->fl_flags & FL_FLOCK)
  131. #define IS_LEASE(fl) (fl->fl_flags & FL_LEASE)
  132. int leases_enable = 1;
  133. int lease_break_time = 45;
  134. #define for_each_lock(inode, lockp) \
  135. for (lockp = &inode->i_flock; *lockp != NULL; lockp = &(*lockp)->fl_next)
  136. LIST_HEAD(file_lock_list);
  137. EXPORT_SYMBOL(file_lock_list);
  138. static LIST_HEAD(blocked_list);
  139. static kmem_cache_t *filelock_cache;
  140. /* Allocate an empty lock structure. */
  141. static struct file_lock *locks_alloc_lock(void)
  142. {
  143. return kmem_cache_alloc(filelock_cache, SLAB_KERNEL);
  144. }
  145. /* Free a lock which is not in use. */
  146. static inline void locks_free_lock(struct file_lock *fl)
  147. {
  148. if (fl == NULL) {
  149. BUG();
  150. return;
  151. }
  152. if (waitqueue_active(&fl->fl_wait))
  153. panic("Attempting to free lock with active wait queue");
  154. if (!list_empty(&fl->fl_block))
  155. panic("Attempting to free lock with active block list");
  156. if (!list_empty(&fl->fl_link))
  157. panic("Attempting to free lock on active lock list");
  158. if (fl->fl_ops) {
  159. if (fl->fl_ops->fl_release_private)
  160. fl->fl_ops->fl_release_private(fl);
  161. fl->fl_ops = NULL;
  162. }
  163. if (fl->fl_lmops) {
  164. if (fl->fl_lmops->fl_release_private)
  165. fl->fl_lmops->fl_release_private(fl);
  166. fl->fl_lmops = NULL;
  167. }
  168. kmem_cache_free(filelock_cache, fl);
  169. }
  170. void locks_init_lock(struct file_lock *fl)
  171. {
  172. INIT_LIST_HEAD(&fl->fl_link);
  173. INIT_LIST_HEAD(&fl->fl_block);
  174. init_waitqueue_head(&fl->fl_wait);
  175. fl->fl_next = NULL;
  176. fl->fl_fasync = NULL;
  177. fl->fl_owner = NULL;
  178. fl->fl_pid = 0;
  179. fl->fl_file = NULL;
  180. fl->fl_flags = 0;
  181. fl->fl_type = 0;
  182. fl->fl_start = fl->fl_end = 0;
  183. fl->fl_ops = NULL;
  184. fl->fl_lmops = NULL;
  185. }
  186. EXPORT_SYMBOL(locks_init_lock);
  187. /*
  188. * Initialises the fields of the file lock which are invariant for
  189. * free file_locks.
  190. */
  191. static void init_once(void *foo, kmem_cache_t *cache, unsigned long flags)
  192. {
  193. struct file_lock *lock = (struct file_lock *) foo;
  194. if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) !=
  195. SLAB_CTOR_CONSTRUCTOR)
  196. return;
  197. locks_init_lock(lock);
  198. }
  199. /*
  200. * Initialize a new lock from an existing file_lock structure.
  201. */
  202. void locks_copy_lock(struct file_lock *new, struct file_lock *fl)
  203. {
  204. new->fl_owner = fl->fl_owner;
  205. new->fl_pid = fl->fl_pid;
  206. new->fl_file = fl->fl_file;
  207. new->fl_flags = fl->fl_flags;
  208. new->fl_type = fl->fl_type;
  209. new->fl_start = fl->fl_start;
  210. new->fl_end = fl->fl_end;
  211. new->fl_ops = fl->fl_ops;
  212. new->fl_lmops = fl->fl_lmops;
  213. if (fl->fl_ops && fl->fl_ops->fl_copy_lock)
  214. fl->fl_ops->fl_copy_lock(new, fl);
  215. if (fl->fl_lmops && fl->fl_lmops->fl_copy_lock)
  216. fl->fl_lmops->fl_copy_lock(new, fl);
  217. }
  218. EXPORT_SYMBOL(locks_copy_lock);
  219. static inline int flock_translate_cmd(int cmd) {
  220. if (cmd & LOCK_MAND)
  221. return cmd & (LOCK_MAND | LOCK_RW);
  222. switch (cmd) {
  223. case LOCK_SH:
  224. return F_RDLCK;
  225. case LOCK_EX:
  226. return F_WRLCK;
  227. case LOCK_UN:
  228. return F_UNLCK;
  229. }
  230. return -EINVAL;
  231. }
  232. /* Fill in a file_lock structure with an appropriate FLOCK lock. */
  233. static int flock_make_lock(struct file *filp, struct file_lock **lock,
  234. unsigned int cmd)
  235. {
  236. struct file_lock *fl;
  237. int type = flock_translate_cmd(cmd);
  238. if (type < 0)
  239. return type;
  240. fl = locks_alloc_lock();
  241. if (fl == NULL)
  242. return -ENOMEM;
  243. fl->fl_file = filp;
  244. fl->fl_pid = current->tgid;
  245. fl->fl_flags = FL_FLOCK;
  246. fl->fl_type = type;
  247. fl->fl_end = OFFSET_MAX;
  248. *lock = fl;
  249. return 0;
  250. }
  251. static int assign_type(struct file_lock *fl, int type)
  252. {
  253. switch (type) {
  254. case F_RDLCK:
  255. case F_WRLCK:
  256. case F_UNLCK:
  257. fl->fl_type = type;
  258. break;
  259. default:
  260. return -EINVAL;
  261. }
  262. return 0;
  263. }
  264. /* Verify a "struct flock" and copy it to a "struct file_lock" as a POSIX
  265. * style lock.
  266. */
  267. static int flock_to_posix_lock(struct file *filp, struct file_lock *fl,
  268. struct flock *l)
  269. {
  270. off_t start, end;
  271. switch (l->l_whence) {
  272. case 0: /*SEEK_SET*/
  273. start = 0;
  274. break;
  275. case 1: /*SEEK_CUR*/
  276. start = filp->f_pos;
  277. break;
  278. case 2: /*SEEK_END*/
  279. start = i_size_read(filp->f_dentry->d_inode);
  280. break;
  281. default:
  282. return -EINVAL;
  283. }
  284. /* POSIX-1996 leaves the case l->l_len < 0 undefined;
  285. POSIX-2001 defines it. */
  286. start += l->l_start;
  287. end = start + l->l_len - 1;
  288. if (l->l_len < 0) {
  289. end = start - 1;
  290. start += l->l_len;
  291. }
  292. if (start < 0)
  293. return -EINVAL;
  294. if (l->l_len > 0 && end < 0)
  295. return -EOVERFLOW;
  296. fl->fl_start = start; /* we record the absolute position */
  297. fl->fl_end = end;
  298. if (l->l_len == 0)
  299. fl->fl_end = OFFSET_MAX;
  300. fl->fl_owner = current->files;
  301. fl->fl_pid = current->tgid;
  302. fl->fl_file = filp;
  303. fl->fl_flags = FL_POSIX;
  304. fl->fl_ops = NULL;
  305. fl->fl_lmops = NULL;
  306. return assign_type(fl, l->l_type);
  307. }
  308. #if BITS_PER_LONG == 32
  309. static int flock64_to_posix_lock(struct file *filp, struct file_lock *fl,
  310. struct flock64 *l)
  311. {
  312. loff_t start;
  313. switch (l->l_whence) {
  314. case 0: /*SEEK_SET*/
  315. start = 0;
  316. break;
  317. case 1: /*SEEK_CUR*/
  318. start = filp->f_pos;
  319. break;
  320. case 2: /*SEEK_END*/
  321. start = i_size_read(filp->f_dentry->d_inode);
  322. break;
  323. default:
  324. return -EINVAL;
  325. }
  326. if (((start += l->l_start) < 0) || (l->l_len < 0))
  327. return -EINVAL;
  328. fl->fl_end = start + l->l_len - 1;
  329. if (l->l_len > 0 && fl->fl_end < 0)
  330. return -EOVERFLOW;
  331. fl->fl_start = start; /* we record the absolute position */
  332. if (l->l_len == 0)
  333. fl->fl_end = OFFSET_MAX;
  334. fl->fl_owner = current->files;
  335. fl->fl_pid = current->tgid;
  336. fl->fl_file = filp;
  337. fl->fl_flags = FL_POSIX;
  338. fl->fl_ops = NULL;
  339. fl->fl_lmops = NULL;
  340. switch (l->l_type) {
  341. case F_RDLCK:
  342. case F_WRLCK:
  343. case F_UNLCK:
  344. fl->fl_type = l->l_type;
  345. break;
  346. default:
  347. return -EINVAL;
  348. }
  349. return (0);
  350. }
  351. #endif
  352. /* default lease lock manager operations */
  353. static void lease_break_callback(struct file_lock *fl)
  354. {
  355. kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG);
  356. }
  357. static void lease_release_private_callback(struct file_lock *fl)
  358. {
  359. if (!fl->fl_file)
  360. return;
  361. f_delown(fl->fl_file);
  362. fl->fl_file->f_owner.signum = 0;
  363. }
  364. static int lease_mylease_callback(struct file_lock *fl, struct file_lock *try)
  365. {
  366. return fl->fl_file == try->fl_file;
  367. }
  368. static struct lock_manager_operations lease_manager_ops = {
  369. .fl_break = lease_break_callback,
  370. .fl_release_private = lease_release_private_callback,
  371. .fl_mylease = lease_mylease_callback,
  372. .fl_change = lease_modify,
  373. };
  374. /*
  375. * Initialize a lease, use the default lock manager operations
  376. */
  377. static int lease_init(struct file *filp, int type, struct file_lock *fl)
  378. {
  379. fl->fl_owner = current->files;
  380. fl->fl_pid = current->tgid;
  381. fl->fl_file = filp;
  382. fl->fl_flags = FL_LEASE;
  383. if (assign_type(fl, type) != 0) {
  384. locks_free_lock(fl);
  385. return -EINVAL;
  386. }
  387. fl->fl_start = 0;
  388. fl->fl_end = OFFSET_MAX;
  389. fl->fl_ops = NULL;
  390. fl->fl_lmops = &lease_manager_ops;
  391. return 0;
  392. }
  393. /* Allocate a file_lock initialised to this type of lease */
  394. static int lease_alloc(struct file *filp, int type, struct file_lock **flp)
  395. {
  396. struct file_lock *fl = locks_alloc_lock();
  397. int error;
  398. if (fl == NULL)
  399. return -ENOMEM;
  400. error = lease_init(filp, type, fl);
  401. if (error)
  402. return error;
  403. *flp = fl;
  404. return 0;
  405. }
  406. /* Check if two locks overlap each other.
  407. */
  408. static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2)
  409. {
  410. return ((fl1->fl_end >= fl2->fl_start) &&
  411. (fl2->fl_end >= fl1->fl_start));
  412. }
  413. /*
  414. * Check whether two locks have the same owner.
  415. */
  416. static inline int
  417. posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
  418. {
  419. if (fl1->fl_lmops && fl1->fl_lmops->fl_compare_owner)
  420. return fl2->fl_lmops == fl1->fl_lmops &&
  421. fl1->fl_lmops->fl_compare_owner(fl1, fl2);
  422. return fl1->fl_owner == fl2->fl_owner;
  423. }
  424. /* Remove waiter from blocker's block list.
  425. * When blocker ends up pointing to itself then the list is empty.
  426. */
  427. static inline void __locks_delete_block(struct file_lock *waiter)
  428. {
  429. list_del_init(&waiter->fl_block);
  430. list_del_init(&waiter->fl_link);
  431. waiter->fl_next = NULL;
  432. }
  433. /*
  434. */
  435. static void locks_delete_block(struct file_lock *waiter)
  436. {
  437. lock_kernel();
  438. __locks_delete_block(waiter);
  439. unlock_kernel();
  440. }
  441. /* Insert waiter into blocker's block list.
  442. * We use a circular list so that processes can be easily woken up in
  443. * the order they blocked. The documentation doesn't require this but
  444. * it seems like the reasonable thing to do.
  445. */
  446. static void locks_insert_block(struct file_lock *blocker,
  447. struct file_lock *waiter)
  448. {
  449. if (!list_empty(&waiter->fl_block)) {
  450. printk(KERN_ERR "locks_insert_block: removing duplicated lock "
  451. "(pid=%d %Ld-%Ld type=%d)\n", waiter->fl_pid,
  452. waiter->fl_start, waiter->fl_end, waiter->fl_type);
  453. __locks_delete_block(waiter);
  454. }
  455. list_add_tail(&waiter->fl_block, &blocker->fl_block);
  456. waiter->fl_next = blocker;
  457. if (IS_POSIX(blocker))
  458. list_add(&waiter->fl_link, &blocked_list);
  459. }
  460. /* Wake up processes blocked waiting for blocker.
  461. * If told to wait then schedule the processes until the block list
  462. * is empty, otherwise empty the block list ourselves.
  463. */
  464. static void locks_wake_up_blocks(struct file_lock *blocker)
  465. {
  466. while (!list_empty(&blocker->fl_block)) {
  467. struct file_lock *waiter = list_entry(blocker->fl_block.next,
  468. struct file_lock, fl_block);
  469. __locks_delete_block(waiter);
  470. if (waiter->fl_lmops && waiter->fl_lmops->fl_notify)
  471. waiter->fl_lmops->fl_notify(waiter);
  472. else
  473. wake_up(&waiter->fl_wait);
  474. }
  475. }
  476. /* Insert file lock fl into an inode's lock list at the position indicated
  477. * by pos. At the same time add the lock to the global file lock list.
  478. */
  479. static void locks_insert_lock(struct file_lock **pos, struct file_lock *fl)
  480. {
  481. list_add(&fl->fl_link, &file_lock_list);
  482. /* insert into file's list */
  483. fl->fl_next = *pos;
  484. *pos = fl;
  485. if (fl->fl_ops && fl->fl_ops->fl_insert)
  486. fl->fl_ops->fl_insert(fl);
  487. }
  488. /*
  489. * Delete a lock and then free it.
  490. * Wake up processes that are blocked waiting for this lock,
  491. * notify the FS that the lock has been cleared and
  492. * finally free the lock.
  493. */
  494. static void locks_delete_lock(struct file_lock **thisfl_p)
  495. {
  496. struct file_lock *fl = *thisfl_p;
  497. *thisfl_p = fl->fl_next;
  498. fl->fl_next = NULL;
  499. list_del_init(&fl->fl_link);
  500. fasync_helper(0, fl->fl_file, 0, &fl->fl_fasync);
  501. if (fl->fl_fasync != NULL) {
  502. printk(KERN_ERR "locks_delete_lock: fasync == %p\n", fl->fl_fasync);
  503. fl->fl_fasync = NULL;
  504. }
  505. if (fl->fl_ops && fl->fl_ops->fl_remove)
  506. fl->fl_ops->fl_remove(fl);
  507. locks_wake_up_blocks(fl);
  508. locks_free_lock(fl);
  509. }
  510. /* Determine if lock sys_fl blocks lock caller_fl. Common functionality
  511. * checks for shared/exclusive status of overlapping locks.
  512. */
  513. static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
  514. {
  515. if (sys_fl->fl_type == F_WRLCK)
  516. return 1;
  517. if (caller_fl->fl_type == F_WRLCK)
  518. return 1;
  519. return 0;
  520. }
  521. /* Determine if lock sys_fl blocks lock caller_fl. POSIX specific
  522. * checking before calling the locks_conflict().
  523. */
  524. static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
  525. {
  526. /* POSIX locks owned by the same process do not conflict with
  527. * each other.
  528. */
  529. if (!IS_POSIX(sys_fl) || posix_same_owner(caller_fl, sys_fl))
  530. return (0);
  531. /* Check whether they overlap */
  532. if (!locks_overlap(caller_fl, sys_fl))
  533. return 0;
  534. return (locks_conflict(caller_fl, sys_fl));
  535. }
  536. /* Determine if lock sys_fl blocks lock caller_fl. FLOCK specific
  537. * checking before calling the locks_conflict().
  538. */
  539. static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
  540. {
  541. /* FLOCK locks referring to the same filp do not conflict with
  542. * each other.
  543. */
  544. if (!IS_FLOCK(sys_fl) || (caller_fl->fl_file == sys_fl->fl_file))
  545. return (0);
  546. if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND))
  547. return 0;
  548. return (locks_conflict(caller_fl, sys_fl));
  549. }
  550. static int interruptible_sleep_on_locked(wait_queue_head_t *fl_wait, int timeout)
  551. {
  552. int result = 0;
  553. DECLARE_WAITQUEUE(wait, current);
  554. __set_current_state(TASK_INTERRUPTIBLE);
  555. add_wait_queue(fl_wait, &wait);
  556. if (timeout == 0)
  557. schedule();
  558. else
  559. result = schedule_timeout(timeout);
  560. if (signal_pending(current))
  561. result = -ERESTARTSYS;
  562. remove_wait_queue(fl_wait, &wait);
  563. __set_current_state(TASK_RUNNING);
  564. return result;
  565. }
  566. static int locks_block_on_timeout(struct file_lock *blocker, struct file_lock *waiter, int time)
  567. {
  568. int result;
  569. locks_insert_block(blocker, waiter);
  570. result = interruptible_sleep_on_locked(&waiter->fl_wait, time);
  571. __locks_delete_block(waiter);
  572. return result;
  573. }
  574. struct file_lock *
  575. posix_test_lock(struct file *filp, struct file_lock *fl)
  576. {
  577. struct file_lock *cfl;
  578. lock_kernel();
  579. for (cfl = filp->f_dentry->d_inode->i_flock; cfl; cfl = cfl->fl_next) {
  580. if (!IS_POSIX(cfl))
  581. continue;
  582. if (posix_locks_conflict(cfl, fl))
  583. break;
  584. }
  585. unlock_kernel();
  586. return (cfl);
  587. }
  588. EXPORT_SYMBOL(posix_test_lock);
  589. /* This function tests for deadlock condition before putting a process to
  590. * sleep. The detection scheme is no longer recursive. Recursive was neat,
  591. * but dangerous - we risked stack corruption if the lock data was bad, or
  592. * if the recursion was too deep for any other reason.
  593. *
  594. * We rely on the fact that a task can only be on one lock's wait queue
  595. * at a time. When we find blocked_task on a wait queue we can re-search
  596. * with blocked_task equal to that queue's owner, until either blocked_task
  597. * isn't found, or blocked_task is found on a queue owned by my_task.
  598. *
  599. * Note: the above assumption may not be true when handling lock requests
  600. * from a broken NFS client. But broken NFS clients have a lot more to
  601. * worry about than proper deadlock detection anyway... --okir
  602. */
  603. int posix_locks_deadlock(struct file_lock *caller_fl,
  604. struct file_lock *block_fl)
  605. {
  606. struct list_head *tmp;
  607. next_task:
  608. if (posix_same_owner(caller_fl, block_fl))
  609. return 1;
  610. list_for_each(tmp, &blocked_list) {
  611. struct file_lock *fl = list_entry(tmp, struct file_lock, fl_link);
  612. if (posix_same_owner(fl, block_fl)) {
  613. fl = fl->fl_next;
  614. block_fl = fl;
  615. goto next_task;
  616. }
  617. }
  618. return 0;
  619. }
  620. EXPORT_SYMBOL(posix_locks_deadlock);
  621. /* Try to create a FLOCK lock on filp. We always insert new FLOCK locks
  622. * at the head of the list, but that's secret knowledge known only to
  623. * flock_lock_file and posix_lock_file.
  624. */
  625. static int flock_lock_file(struct file *filp, struct file_lock *new_fl)
  626. {
  627. struct file_lock **before;
  628. struct inode * inode = filp->f_dentry->d_inode;
  629. int error = 0;
  630. int found = 0;
  631. lock_kernel();
  632. for_each_lock(inode, before) {
  633. struct file_lock *fl = *before;
  634. if (IS_POSIX(fl))
  635. break;
  636. if (IS_LEASE(fl))
  637. continue;
  638. if (filp != fl->fl_file)
  639. continue;
  640. if (new_fl->fl_type == fl->fl_type)
  641. goto out;
  642. found = 1;
  643. locks_delete_lock(before);
  644. break;
  645. }
  646. unlock_kernel();
  647. if (new_fl->fl_type == F_UNLCK)
  648. return 0;
  649. /*
  650. * If a higher-priority process was blocked on the old file lock,
  651. * give it the opportunity to lock the file.
  652. */
  653. if (found)
  654. cond_resched();
  655. lock_kernel();
  656. for_each_lock(inode, before) {
  657. struct file_lock *fl = *before;
  658. if (IS_POSIX(fl))
  659. break;
  660. if (IS_LEASE(fl))
  661. continue;
  662. if (!flock_locks_conflict(new_fl, fl))
  663. continue;
  664. error = -EAGAIN;
  665. if (new_fl->fl_flags & FL_SLEEP) {
  666. locks_insert_block(fl, new_fl);
  667. }
  668. goto out;
  669. }
  670. locks_insert_lock(&inode->i_flock, new_fl);
  671. error = 0;
  672. out:
  673. unlock_kernel();
  674. return error;
  675. }
  676. EXPORT_SYMBOL(posix_lock_file);
  677. static int __posix_lock_file(struct inode *inode, struct file_lock *request)
  678. {
  679. struct file_lock *fl;
  680. struct file_lock *new_fl, *new_fl2;
  681. struct file_lock *left = NULL;
  682. struct file_lock *right = NULL;
  683. struct file_lock **before;
  684. int error, added = 0;
  685. /*
  686. * We may need two file_lock structures for this operation,
  687. * so we get them in advance to avoid races.
  688. */
  689. new_fl = locks_alloc_lock();
  690. new_fl2 = locks_alloc_lock();
  691. lock_kernel();
  692. if (request->fl_type != F_UNLCK) {
  693. for_each_lock(inode, before) {
  694. struct file_lock *fl = *before;
  695. if (!IS_POSIX(fl))
  696. continue;
  697. if (!posix_locks_conflict(request, fl))
  698. continue;
  699. error = -EAGAIN;
  700. if (!(request->fl_flags & FL_SLEEP))
  701. goto out;
  702. error = -EDEADLK;
  703. if (posix_locks_deadlock(request, fl))
  704. goto out;
  705. error = -EAGAIN;
  706. locks_insert_block(fl, request);
  707. goto out;
  708. }
  709. }
  710. /* If we're just looking for a conflict, we're done. */
  711. error = 0;
  712. if (request->fl_flags & FL_ACCESS)
  713. goto out;
  714. error = -ENOLCK; /* "no luck" */
  715. if (!(new_fl && new_fl2))
  716. goto out;
  717. /*
  718. * We've allocated the new locks in advance, so there are no
  719. * errors possible (and no blocking operations) from here on.
  720. *
  721. * Find the first old lock with the same owner as the new lock.
  722. */
  723. before = &inode->i_flock;
  724. /* First skip locks owned by other processes. */
  725. while ((fl = *before) && (!IS_POSIX(fl) ||
  726. !posix_same_owner(request, fl))) {
  727. before = &fl->fl_next;
  728. }
  729. /* Process locks with this owner. */
  730. while ((fl = *before) && posix_same_owner(request, fl)) {
  731. /* Detect adjacent or overlapping regions (if same lock type)
  732. */
  733. if (request->fl_type == fl->fl_type) {
  734. /* In all comparisons of start vs end, use
  735. * "start - 1" rather than "end + 1". If end
  736. * is OFFSET_MAX, end + 1 will become negative.
  737. */
  738. if (fl->fl_end < request->fl_start - 1)
  739. goto next_lock;
  740. /* If the next lock in the list has entirely bigger
  741. * addresses than the new one, insert the lock here.
  742. */
  743. if (fl->fl_start - 1 > request->fl_end)
  744. break;
  745. /* If we come here, the new and old lock are of the
  746. * same type and adjacent or overlapping. Make one
  747. * lock yielding from the lower start address of both
  748. * locks to the higher end address.
  749. */
  750. if (fl->fl_start > request->fl_start)
  751. fl->fl_start = request->fl_start;
  752. else
  753. request->fl_start = fl->fl_start;
  754. if (fl->fl_end < request->fl_end)
  755. fl->fl_end = request->fl_end;
  756. else
  757. request->fl_end = fl->fl_end;
  758. if (added) {
  759. locks_delete_lock(before);
  760. continue;
  761. }
  762. request = fl;
  763. added = 1;
  764. }
  765. else {
  766. /* Processing for different lock types is a bit
  767. * more complex.
  768. */
  769. if (fl->fl_end < request->fl_start)
  770. goto next_lock;
  771. if (fl->fl_start > request->fl_end)
  772. break;
  773. if (request->fl_type == F_UNLCK)
  774. added = 1;
  775. if (fl->fl_start < request->fl_start)
  776. left = fl;
  777. /* If the next lock in the list has a higher end
  778. * address than the new one, insert the new one here.
  779. */
  780. if (fl->fl_end > request->fl_end) {
  781. right = fl;
  782. break;
  783. }
  784. if (fl->fl_start >= request->fl_start) {
  785. /* The new lock completely replaces an old
  786. * one (This may happen several times).
  787. */
  788. if (added) {
  789. locks_delete_lock(before);
  790. continue;
  791. }
  792. /* Replace the old lock with the new one.
  793. * Wake up anybody waiting for the old one,
  794. * as the change in lock type might satisfy
  795. * their needs.
  796. */
  797. locks_wake_up_blocks(fl);
  798. fl->fl_start = request->fl_start;
  799. fl->fl_end = request->fl_end;
  800. fl->fl_type = request->fl_type;
  801. fl->fl_u = request->fl_u;
  802. request = fl;
  803. added = 1;
  804. }
  805. }
  806. /* Go on to next lock.
  807. */
  808. next_lock:
  809. before = &fl->fl_next;
  810. }
  811. error = 0;
  812. if (!added) {
  813. if (request->fl_type == F_UNLCK)
  814. goto out;
  815. locks_copy_lock(new_fl, request);
  816. locks_insert_lock(before, new_fl);
  817. new_fl = NULL;
  818. }
  819. if (right) {
  820. if (left == right) {
  821. /* The new lock breaks the old one in two pieces,
  822. * so we have to use the second new lock.
  823. */
  824. left = new_fl2;
  825. new_fl2 = NULL;
  826. locks_copy_lock(left, right);
  827. locks_insert_lock(before, left);
  828. }
  829. right->fl_start = request->fl_end + 1;
  830. locks_wake_up_blocks(right);
  831. }
  832. if (left) {
  833. left->fl_end = request->fl_start - 1;
  834. locks_wake_up_blocks(left);
  835. }
  836. out:
  837. unlock_kernel();
  838. /*
  839. * Free any unused locks.
  840. */
  841. if (new_fl)
  842. locks_free_lock(new_fl);
  843. if (new_fl2)
  844. locks_free_lock(new_fl2);
  845. return error;
  846. }
  847. /**
  848. * posix_lock_file - Apply a POSIX-style lock to a file
  849. * @filp: The file to apply the lock to
  850. * @fl: The lock to be applied
  851. *
  852. * Add a POSIX style lock to a file.
  853. * We merge adjacent & overlapping locks whenever possible.
  854. * POSIX locks are sorted by owner task, then by starting address
  855. */
  856. int posix_lock_file(struct file *filp, struct file_lock *fl)
  857. {
  858. return __posix_lock_file(filp->f_dentry->d_inode, fl);
  859. }
  860. /**
  861. * posix_lock_file_wait - Apply a POSIX-style lock to a file
  862. * @filp: The file to apply the lock to
  863. * @fl: The lock to be applied
  864. *
  865. * Add a POSIX style lock to a file.
  866. * We merge adjacent & overlapping locks whenever possible.
  867. * POSIX locks are sorted by owner task, then by starting address
  868. */
  869. int posix_lock_file_wait(struct file *filp, struct file_lock *fl)
  870. {
  871. int error;
  872. might_sleep ();
  873. for (;;) {
  874. error = __posix_lock_file(filp->f_dentry->d_inode, fl);
  875. if ((error != -EAGAIN) || !(fl->fl_flags & FL_SLEEP))
  876. break;
  877. error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
  878. if (!error)
  879. continue;
  880. locks_delete_block(fl);
  881. break;
  882. }
  883. return error;
  884. }
  885. EXPORT_SYMBOL(posix_lock_file_wait);
  886. /**
  887. * locks_mandatory_locked - Check for an active lock
  888. * @inode: the file to check
  889. *
  890. * Searches the inode's list of locks to find any POSIX locks which conflict.
  891. * This function is called from locks_verify_locked() only.
  892. */
  893. int locks_mandatory_locked(struct inode *inode)
  894. {
  895. fl_owner_t owner = current->files;
  896. struct file_lock *fl;
  897. /*
  898. * Search the lock list for this inode for any POSIX locks.
  899. */
  900. lock_kernel();
  901. for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
  902. if (!IS_POSIX(fl))
  903. continue;
  904. if (fl->fl_owner != owner)
  905. break;
  906. }
  907. unlock_kernel();
  908. return fl ? -EAGAIN : 0;
  909. }
  910. /**
  911. * locks_mandatory_area - Check for a conflicting lock
  912. * @read_write: %FLOCK_VERIFY_WRITE for exclusive access, %FLOCK_VERIFY_READ
  913. * for shared
  914. * @inode: the file to check
  915. * @filp: how the file was opened (if it was)
  916. * @offset: start of area to check
  917. * @count: length of area to check
  918. *
  919. * Searches the inode's list of locks to find any POSIX locks which conflict.
  920. * This function is called from rw_verify_area() and
  921. * locks_verify_truncate().
  922. */
  923. int locks_mandatory_area(int read_write, struct inode *inode,
  924. struct file *filp, loff_t offset,
  925. size_t count)
  926. {
  927. struct file_lock fl;
  928. int error;
  929. locks_init_lock(&fl);
  930. fl.fl_owner = current->files;
  931. fl.fl_pid = current->tgid;
  932. fl.fl_file = filp;
  933. fl.fl_flags = FL_POSIX | FL_ACCESS;
  934. if (filp && !(filp->f_flags & O_NONBLOCK))
  935. fl.fl_flags |= FL_SLEEP;
  936. fl.fl_type = (read_write == FLOCK_VERIFY_WRITE) ? F_WRLCK : F_RDLCK;
  937. fl.fl_start = offset;
  938. fl.fl_end = offset + count - 1;
  939. for (;;) {
  940. error = __posix_lock_file(inode, &fl);
  941. if (error != -EAGAIN)
  942. break;
  943. if (!(fl.fl_flags & FL_SLEEP))
  944. break;
  945. error = wait_event_interruptible(fl.fl_wait, !fl.fl_next);
  946. if (!error) {
  947. /*
  948. * If we've been sleeping someone might have
  949. * changed the permissions behind our back.
  950. */
  951. if ((inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID)
  952. continue;
  953. }
  954. locks_delete_block(&fl);
  955. break;
  956. }
  957. return error;
  958. }
  959. EXPORT_SYMBOL(locks_mandatory_area);
  960. /* We already had a lease on this file; just change its type */
  961. int lease_modify(struct file_lock **before, int arg)
  962. {
  963. struct file_lock *fl = *before;
  964. int error = assign_type(fl, arg);
  965. if (error)
  966. return error;
  967. locks_wake_up_blocks(fl);
  968. if (arg == F_UNLCK)
  969. locks_delete_lock(before);
  970. return 0;
  971. }
  972. EXPORT_SYMBOL(lease_modify);
  973. static void time_out_leases(struct inode *inode)
  974. {
  975. struct file_lock **before;
  976. struct file_lock *fl;
  977. before = &inode->i_flock;
  978. while ((fl = *before) && IS_LEASE(fl) && (fl->fl_type & F_INPROGRESS)) {
  979. if ((fl->fl_break_time == 0)
  980. || time_before(jiffies, fl->fl_break_time)) {
  981. before = &fl->fl_next;
  982. continue;
  983. }
  984. printk(KERN_INFO "lease broken - owner pid = %d\n", fl->fl_pid);
  985. lease_modify(before, fl->fl_type & ~F_INPROGRESS);
  986. if (fl == *before) /* lease_modify may have freed fl */
  987. before = &fl->fl_next;
  988. }
  989. }
  990. /**
  991. * __break_lease - revoke all outstanding leases on file
  992. * @inode: the inode of the file to return
  993. * @mode: the open mode (read or write)
  994. *
  995. * break_lease (inlined for speed) has checked there already
  996. * is a lease on this file. Leases are broken on a call to open()
  997. * or truncate(). This function can sleep unless you
  998. * specified %O_NONBLOCK to your open().
  999. */
  1000. int __break_lease(struct inode *inode, unsigned int mode)
  1001. {
  1002. int error = 0, future;
  1003. struct file_lock *new_fl, *flock;
  1004. struct file_lock *fl;
  1005. int alloc_err;
  1006. unsigned long break_time;
  1007. int i_have_this_lease = 0;
  1008. alloc_err = lease_alloc(NULL, mode & FMODE_WRITE ? F_WRLCK : F_RDLCK,
  1009. &new_fl);
  1010. lock_kernel();
  1011. time_out_leases(inode);
  1012. flock = inode->i_flock;
  1013. if ((flock == NULL) || !IS_LEASE(flock))
  1014. goto out;
  1015. for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next)
  1016. if (fl->fl_owner == current->files)
  1017. i_have_this_lease = 1;
  1018. if (mode & FMODE_WRITE) {
  1019. /* If we want write access, we have to revoke any lease. */
  1020. future = F_UNLCK | F_INPROGRESS;
  1021. } else if (flock->fl_type & F_INPROGRESS) {
  1022. /* If the lease is already being broken, we just leave it */
  1023. future = flock->fl_type;
  1024. } else if (flock->fl_type & F_WRLCK) {
  1025. /* Downgrade the exclusive lease to a read-only lease. */
  1026. future = F_RDLCK | F_INPROGRESS;
  1027. } else {
  1028. /* the existing lease was read-only, so we can read too. */
  1029. goto out;
  1030. }
  1031. if (alloc_err && !i_have_this_lease && ((mode & O_NONBLOCK) == 0)) {
  1032. error = alloc_err;
  1033. goto out;
  1034. }
  1035. break_time = 0;
  1036. if (lease_break_time > 0) {
  1037. break_time = jiffies + lease_break_time * HZ;
  1038. if (break_time == 0)
  1039. break_time++; /* so that 0 means no break time */
  1040. }
  1041. for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
  1042. if (fl->fl_type != future) {
  1043. fl->fl_type = future;
  1044. fl->fl_break_time = break_time;
  1045. /* lease must have lmops break callback */
  1046. fl->fl_lmops->fl_break(fl);
  1047. }
  1048. }
  1049. if (i_have_this_lease || (mode & O_NONBLOCK)) {
  1050. error = -EWOULDBLOCK;
  1051. goto out;
  1052. }
  1053. restart:
  1054. break_time = flock->fl_break_time;
  1055. if (break_time != 0) {
  1056. break_time -= jiffies;
  1057. if (break_time == 0)
  1058. break_time++;
  1059. }
  1060. error = locks_block_on_timeout(flock, new_fl, break_time);
  1061. if (error >= 0) {
  1062. if (error == 0)
  1063. time_out_leases(inode);
  1064. /* Wait for the next lease that has not been broken yet */
  1065. for (flock = inode->i_flock; flock && IS_LEASE(flock);
  1066. flock = flock->fl_next) {
  1067. if (flock->fl_type & F_INPROGRESS)
  1068. goto restart;
  1069. }
  1070. error = 0;
  1071. }
  1072. out:
  1073. unlock_kernel();
  1074. if (!alloc_err)
  1075. locks_free_lock(new_fl);
  1076. return error;
  1077. }
  1078. EXPORT_SYMBOL(__break_lease);
  1079. /**
  1080. * lease_get_mtime
  1081. * @inode: the inode
  1082. * @time: pointer to a timespec which will contain the last modified time
  1083. *
  1084. * This is to force NFS clients to flush their caches for files with
  1085. * exclusive leases. The justification is that if someone has an
  1086. * exclusive lease, then they could be modifiying it.
  1087. */
  1088. void lease_get_mtime(struct inode *inode, struct timespec *time)
  1089. {
  1090. struct file_lock *flock = inode->i_flock;
  1091. if (flock && IS_LEASE(flock) && (flock->fl_type & F_WRLCK))
  1092. *time = current_fs_time(inode->i_sb);
  1093. else
  1094. *time = inode->i_mtime;
  1095. }
  1096. EXPORT_SYMBOL(lease_get_mtime);
  1097. /**
  1098. * fcntl_getlease - Enquire what lease is currently active
  1099. * @filp: the file
  1100. *
  1101. * The value returned by this function will be one of
  1102. * (if no lease break is pending):
  1103. *
  1104. * %F_RDLCK to indicate a shared lease is held.
  1105. *
  1106. * %F_WRLCK to indicate an exclusive lease is held.
  1107. *
  1108. * %F_UNLCK to indicate no lease is held.
  1109. *
  1110. * (if a lease break is pending):
  1111. *
  1112. * %F_RDLCK to indicate an exclusive lease needs to be
  1113. * changed to a shared lease (or removed).
  1114. *
  1115. * %F_UNLCK to indicate the lease needs to be removed.
  1116. *
  1117. * XXX: sfr & willy disagree over whether F_INPROGRESS
  1118. * should be returned to userspace.
  1119. */
  1120. int fcntl_getlease(struct file *filp)
  1121. {
  1122. struct file_lock *fl;
  1123. int type = F_UNLCK;
  1124. lock_kernel();
  1125. time_out_leases(filp->f_dentry->d_inode);
  1126. for (fl = filp->f_dentry->d_inode->i_flock; fl && IS_LEASE(fl);
  1127. fl = fl->fl_next) {
  1128. if (fl->fl_file == filp) {
  1129. type = fl->fl_type & ~F_INPROGRESS;
  1130. break;
  1131. }
  1132. }
  1133. unlock_kernel();
  1134. return type;
  1135. }
  1136. /**
  1137. * __setlease - sets a lease on an open file
  1138. * @filp: file pointer
  1139. * @arg: type of lease to obtain
  1140. * @flp: input - file_lock to use, output - file_lock inserted
  1141. *
  1142. * The (input) flp->fl_lmops->fl_break function is required
  1143. * by break_lease().
  1144. *
  1145. * Called with kernel lock held.
  1146. */
  1147. static int __setlease(struct file *filp, long arg, struct file_lock **flp)
  1148. {
  1149. struct file_lock *fl, **before, **my_before = NULL, *lease;
  1150. struct dentry *dentry = filp->f_dentry;
  1151. struct inode *inode = dentry->d_inode;
  1152. int error, rdlease_count = 0, wrlease_count = 0;
  1153. time_out_leases(inode);
  1154. error = -EINVAL;
  1155. if (!flp || !(*flp) || !(*flp)->fl_lmops || !(*flp)->fl_lmops->fl_break)
  1156. goto out;
  1157. lease = *flp;
  1158. error = -EAGAIN;
  1159. if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0))
  1160. goto out;
  1161. if ((arg == F_WRLCK)
  1162. && ((atomic_read(&dentry->d_count) > 1)
  1163. || (atomic_read(&inode->i_count) > 1)))
  1164. goto out;
  1165. /*
  1166. * At this point, we know that if there is an exclusive
  1167. * lease on this file, then we hold it on this filp
  1168. * (otherwise our open of this file would have blocked).
  1169. * And if we are trying to acquire an exclusive lease,
  1170. * then the file is not open by anyone (including us)
  1171. * except for this filp.
  1172. */
  1173. for (before = &inode->i_flock;
  1174. ((fl = *before) != NULL) && IS_LEASE(fl);
  1175. before = &fl->fl_next) {
  1176. if (lease->fl_lmops->fl_mylease(fl, lease))
  1177. my_before = before;
  1178. else if (fl->fl_type == (F_INPROGRESS | F_UNLCK))
  1179. /*
  1180. * Someone is in the process of opening this
  1181. * file for writing so we may not take an
  1182. * exclusive lease on it.
  1183. */
  1184. wrlease_count++;
  1185. else
  1186. rdlease_count++;
  1187. }
  1188. if ((arg == F_RDLCK && (wrlease_count > 0)) ||
  1189. (arg == F_WRLCK && ((rdlease_count + wrlease_count) > 0)))
  1190. goto out;
  1191. if (my_before != NULL) {
  1192. error = lease->fl_lmops->fl_change(my_before, arg);
  1193. goto out;
  1194. }
  1195. error = 0;
  1196. if (arg == F_UNLCK)
  1197. goto out;
  1198. error = -EINVAL;
  1199. if (!leases_enable)
  1200. goto out;
  1201. error = lease_alloc(filp, arg, &fl);
  1202. if (error)
  1203. goto out;
  1204. locks_copy_lock(fl, lease);
  1205. locks_insert_lock(before, fl);
  1206. *flp = fl;
  1207. out:
  1208. return error;
  1209. }
  1210. /**
  1211. * setlease - sets a lease on an open file
  1212. * @filp: file pointer
  1213. * @arg: type of lease to obtain
  1214. * @lease: file_lock to use
  1215. *
  1216. * Call this to establish a lease on the file.
  1217. * The fl_lmops fl_break function is required by break_lease
  1218. */
  1219. int setlease(struct file *filp, long arg, struct file_lock **lease)
  1220. {
  1221. struct dentry *dentry = filp->f_dentry;
  1222. struct inode *inode = dentry->d_inode;
  1223. int error;
  1224. if ((current->fsuid != inode->i_uid) && !capable(CAP_LEASE))
  1225. return -EACCES;
  1226. if (!S_ISREG(inode->i_mode))
  1227. return -EINVAL;
  1228. error = security_file_lock(filp, arg);
  1229. if (error)
  1230. return error;
  1231. lock_kernel();
  1232. error = __setlease(filp, arg, lease);
  1233. unlock_kernel();
  1234. return error;
  1235. }
  1236. EXPORT_SYMBOL(setlease);
  1237. /**
  1238. * fcntl_setlease - sets a lease on an open file
  1239. * @fd: open file descriptor
  1240. * @filp: file pointer
  1241. * @arg: type of lease to obtain
  1242. *
  1243. * Call this fcntl to establish a lease on the file.
  1244. * Note that you also need to call %F_SETSIG to
  1245. * receive a signal when the lease is broken.
  1246. */
  1247. int fcntl_setlease(unsigned int fd, struct file *filp, long arg)
  1248. {
  1249. struct file_lock fl, *flp = &fl;
  1250. struct dentry *dentry = filp->f_dentry;
  1251. struct inode *inode = dentry->d_inode;
  1252. int error;
  1253. if ((current->fsuid != inode->i_uid) && !capable(CAP_LEASE))
  1254. return -EACCES;
  1255. if (!S_ISREG(inode->i_mode))
  1256. return -EINVAL;
  1257. error = security_file_lock(filp, arg);
  1258. if (error)
  1259. return error;
  1260. locks_init_lock(&fl);
  1261. error = lease_init(filp, arg, &fl);
  1262. if (error)
  1263. return error;
  1264. lock_kernel();
  1265. error = __setlease(filp, arg, &flp);
  1266. if (error)
  1267. goto out_unlock;
  1268. error = fasync_helper(fd, filp, 1, &flp->fl_fasync);
  1269. if (error < 0) {
  1270. /* remove lease just inserted by __setlease */
  1271. flp->fl_type = F_UNLCK | F_INPROGRESS;
  1272. flp->fl_break_time = jiffies- 10;
  1273. time_out_leases(inode);
  1274. goto out_unlock;
  1275. }
  1276. error = f_setown(filp, current->pid, 0);
  1277. out_unlock:
  1278. unlock_kernel();
  1279. return error;
  1280. }
  1281. /**
  1282. * flock_lock_file_wait - Apply a FLOCK-style lock to a file
  1283. * @filp: The file to apply the lock to
  1284. * @fl: The lock to be applied
  1285. *
  1286. * Add a FLOCK style lock to a file.
  1287. */
  1288. int flock_lock_file_wait(struct file *filp, struct file_lock *fl)
  1289. {
  1290. int error;
  1291. might_sleep();
  1292. for (;;) {
  1293. error = flock_lock_file(filp, fl);
  1294. if ((error != -EAGAIN) || !(fl->fl_flags & FL_SLEEP))
  1295. break;
  1296. error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
  1297. if (!error)
  1298. continue;
  1299. locks_delete_block(fl);
  1300. break;
  1301. }
  1302. return error;
  1303. }
  1304. EXPORT_SYMBOL(flock_lock_file_wait);
  1305. /**
  1306. * sys_flock: - flock() system call.
  1307. * @fd: the file descriptor to lock.
  1308. * @cmd: the type of lock to apply.
  1309. *
  1310. * Apply a %FL_FLOCK style lock to an open file descriptor.
  1311. * The @cmd can be one of
  1312. *
  1313. * %LOCK_SH -- a shared lock.
  1314. *
  1315. * %LOCK_EX -- an exclusive lock.
  1316. *
  1317. * %LOCK_UN -- remove an existing lock.
  1318. *
  1319. * %LOCK_MAND -- a `mandatory' flock. This exists to emulate Windows Share Modes.
  1320. *
  1321. * %LOCK_MAND can be combined with %LOCK_READ or %LOCK_WRITE to allow other
  1322. * processes read and write access respectively.
  1323. */
  1324. asmlinkage long sys_flock(unsigned int fd, unsigned int cmd)
  1325. {
  1326. struct file *filp;
  1327. struct file_lock *lock;
  1328. int can_sleep, unlock;
  1329. int error;
  1330. error = -EBADF;
  1331. filp = fget(fd);
  1332. if (!filp)
  1333. goto out;
  1334. can_sleep = !(cmd & LOCK_NB);
  1335. cmd &= ~LOCK_NB;
  1336. unlock = (cmd == LOCK_UN);
  1337. if (!unlock && !(cmd & LOCK_MAND) && !(filp->f_mode & 3))
  1338. goto out_putf;
  1339. error = flock_make_lock(filp, &lock, cmd);
  1340. if (error)
  1341. goto out_putf;
  1342. if (can_sleep)
  1343. lock->fl_flags |= FL_SLEEP;
  1344. error = security_file_lock(filp, cmd);
  1345. if (error)
  1346. goto out_free;
  1347. if (filp->f_op && filp->f_op->flock)
  1348. error = filp->f_op->flock(filp,
  1349. (can_sleep) ? F_SETLKW : F_SETLK,
  1350. lock);
  1351. else
  1352. error = flock_lock_file_wait(filp, lock);
  1353. out_free:
  1354. if (list_empty(&lock->fl_link)) {
  1355. locks_free_lock(lock);
  1356. }
  1357. out_putf:
  1358. fput(filp);
  1359. out:
  1360. return error;
  1361. }
  1362. /* Report the first existing lock that would conflict with l.
  1363. * This implements the F_GETLK command of fcntl().
  1364. */
  1365. int fcntl_getlk(struct file *filp, struct flock __user *l)
  1366. {
  1367. struct file_lock *fl, file_lock;
  1368. struct flock flock;
  1369. int error;
  1370. error = -EFAULT;
  1371. if (copy_from_user(&flock, l, sizeof(flock)))
  1372. goto out;
  1373. error = -EINVAL;
  1374. if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
  1375. goto out;
  1376. error = flock_to_posix_lock(filp, &file_lock, &flock);
  1377. if (error)
  1378. goto out;
  1379. if (filp->f_op && filp->f_op->lock) {
  1380. error = filp->f_op->lock(filp, F_GETLK, &file_lock);
  1381. if (file_lock.fl_ops && file_lock.fl_ops->fl_release_private)
  1382. file_lock.fl_ops->fl_release_private(&file_lock);
  1383. if (error < 0)
  1384. goto out;
  1385. else
  1386. fl = (file_lock.fl_type == F_UNLCK ? NULL : &file_lock);
  1387. } else {
  1388. fl = posix_test_lock(filp, &file_lock);
  1389. }
  1390. flock.l_type = F_UNLCK;
  1391. if (fl != NULL) {
  1392. flock.l_pid = fl->fl_pid;
  1393. #if BITS_PER_LONG == 32
  1394. /*
  1395. * Make sure we can represent the posix lock via
  1396. * legacy 32bit flock.
  1397. */
  1398. error = -EOVERFLOW;
  1399. if (fl->fl_start > OFFT_OFFSET_MAX)
  1400. goto out;
  1401. if ((fl->fl_end != OFFSET_MAX)
  1402. && (fl->fl_end > OFFT_OFFSET_MAX))
  1403. goto out;
  1404. #endif
  1405. flock.l_start = fl->fl_start;
  1406. flock.l_len = fl->fl_end == OFFSET_MAX ? 0 :
  1407. fl->fl_end - fl->fl_start + 1;
  1408. flock.l_whence = 0;
  1409. flock.l_type = fl->fl_type;
  1410. }
  1411. error = -EFAULT;
  1412. if (!copy_to_user(l, &flock, sizeof(flock)))
  1413. error = 0;
  1414. out:
  1415. return error;
  1416. }
  1417. /* Apply the lock described by l to an open file descriptor.
  1418. * This implements both the F_SETLK and F_SETLKW commands of fcntl().
  1419. */
  1420. int fcntl_setlk(unsigned int fd, struct file *filp, unsigned int cmd,
  1421. struct flock __user *l)
  1422. {
  1423. struct file_lock *file_lock = locks_alloc_lock();
  1424. struct flock flock;
  1425. struct inode *inode;
  1426. int error;
  1427. if (file_lock == NULL)
  1428. return -ENOLCK;
  1429. /*
  1430. * This might block, so we do it before checking the inode.
  1431. */
  1432. error = -EFAULT;
  1433. if (copy_from_user(&flock, l, sizeof(flock)))
  1434. goto out;
  1435. inode = filp->f_dentry->d_inode;
  1436. /* Don't allow mandatory locks on files that may be memory mapped
  1437. * and shared.
  1438. */
  1439. if (IS_MANDLOCK(inode) &&
  1440. (inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID &&
  1441. mapping_writably_mapped(filp->f_mapping)) {
  1442. error = -EAGAIN;
  1443. goto out;
  1444. }
  1445. again:
  1446. error = flock_to_posix_lock(filp, file_lock, &flock);
  1447. if (error)
  1448. goto out;
  1449. if (cmd == F_SETLKW) {
  1450. file_lock->fl_flags |= FL_SLEEP;
  1451. }
  1452. error = -EBADF;
  1453. switch (flock.l_type) {
  1454. case F_RDLCK:
  1455. if (!(filp->f_mode & FMODE_READ))
  1456. goto out;
  1457. break;
  1458. case F_WRLCK:
  1459. if (!(filp->f_mode & FMODE_WRITE))
  1460. goto out;
  1461. break;
  1462. case F_UNLCK:
  1463. break;
  1464. default:
  1465. error = -EINVAL;
  1466. goto out;
  1467. }
  1468. error = security_file_lock(filp, file_lock->fl_type);
  1469. if (error)
  1470. goto out;
  1471. if (filp->f_op && filp->f_op->lock != NULL)
  1472. error = filp->f_op->lock(filp, cmd, file_lock);
  1473. else {
  1474. for (;;) {
  1475. error = __posix_lock_file(inode, file_lock);
  1476. if ((error != -EAGAIN) || (cmd == F_SETLK))
  1477. break;
  1478. error = wait_event_interruptible(file_lock->fl_wait,
  1479. !file_lock->fl_next);
  1480. if (!error)
  1481. continue;
  1482. locks_delete_block(file_lock);
  1483. break;
  1484. }
  1485. }
  1486. /*
  1487. * Attempt to detect a close/fcntl race and recover by
  1488. * releasing the lock that was just acquired.
  1489. */
  1490. if (!error && fcheck(fd) != filp && flock.l_type != F_UNLCK) {
  1491. flock.l_type = F_UNLCK;
  1492. goto again;
  1493. }
  1494. out:
  1495. locks_free_lock(file_lock);
  1496. return error;
  1497. }
  1498. #if BITS_PER_LONG == 32
  1499. /* Report the first existing lock that would conflict with l.
  1500. * This implements the F_GETLK command of fcntl().
  1501. */
  1502. int fcntl_getlk64(struct file *filp, struct flock64 __user *l)
  1503. {
  1504. struct file_lock *fl, file_lock;
  1505. struct flock64 flock;
  1506. int error;
  1507. error = -EFAULT;
  1508. if (copy_from_user(&flock, l, sizeof(flock)))
  1509. goto out;
  1510. error = -EINVAL;
  1511. if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
  1512. goto out;
  1513. error = flock64_to_posix_lock(filp, &file_lock, &flock);
  1514. if (error)
  1515. goto out;
  1516. if (filp->f_op && filp->f_op->lock) {
  1517. error = filp->f_op->lock(filp, F_GETLK, &file_lock);
  1518. if (file_lock.fl_ops && file_lock.fl_ops->fl_release_private)
  1519. file_lock.fl_ops->fl_release_private(&file_lock);
  1520. if (error < 0)
  1521. goto out;
  1522. else
  1523. fl = (file_lock.fl_type == F_UNLCK ? NULL : &file_lock);
  1524. } else {
  1525. fl = posix_test_lock(filp, &file_lock);
  1526. }
  1527. flock.l_type = F_UNLCK;
  1528. if (fl != NULL) {
  1529. flock.l_pid = fl->fl_pid;
  1530. flock.l_start = fl->fl_start;
  1531. flock.l_len = fl->fl_end == OFFSET_MAX ? 0 :
  1532. fl->fl_end - fl->fl_start + 1;
  1533. flock.l_whence = 0;
  1534. flock.l_type = fl->fl_type;
  1535. }
  1536. error = -EFAULT;
  1537. if (!copy_to_user(l, &flock, sizeof(flock)))
  1538. error = 0;
  1539. out:
  1540. return error;
  1541. }
  1542. /* Apply the lock described by l to an open file descriptor.
  1543. * This implements both the F_SETLK and F_SETLKW commands of fcntl().
  1544. */
  1545. int fcntl_setlk64(unsigned int fd, struct file *filp, unsigned int cmd,
  1546. struct flock64 __user *l)
  1547. {
  1548. struct file_lock *file_lock = locks_alloc_lock();
  1549. struct flock64 flock;
  1550. struct inode *inode;
  1551. int error;
  1552. if (file_lock == NULL)
  1553. return -ENOLCK;
  1554. /*
  1555. * This might block, so we do it before checking the inode.
  1556. */
  1557. error = -EFAULT;
  1558. if (copy_from_user(&flock, l, sizeof(flock)))
  1559. goto out;
  1560. inode = filp->f_dentry->d_inode;
  1561. /* Don't allow mandatory locks on files that may be memory mapped
  1562. * and shared.
  1563. */
  1564. if (IS_MANDLOCK(inode) &&
  1565. (inode->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID &&
  1566. mapping_writably_mapped(filp->f_mapping)) {
  1567. error = -EAGAIN;
  1568. goto out;
  1569. }
  1570. again:
  1571. error = flock64_to_posix_lock(filp, file_lock, &flock);
  1572. if (error)
  1573. goto out;
  1574. if (cmd == F_SETLKW64) {
  1575. file_lock->fl_flags |= FL_SLEEP;
  1576. }
  1577. error = -EBADF;
  1578. switch (flock.l_type) {
  1579. case F_RDLCK:
  1580. if (!(filp->f_mode & FMODE_READ))
  1581. goto out;
  1582. break;
  1583. case F_WRLCK:
  1584. if (!(filp->f_mode & FMODE_WRITE))
  1585. goto out;
  1586. break;
  1587. case F_UNLCK:
  1588. break;
  1589. default:
  1590. error = -EINVAL;
  1591. goto out;
  1592. }
  1593. error = security_file_lock(filp, file_lock->fl_type);
  1594. if (error)
  1595. goto out;
  1596. if (filp->f_op && filp->f_op->lock != NULL)
  1597. error = filp->f_op->lock(filp, cmd, file_lock);
  1598. else {
  1599. for (;;) {
  1600. error = __posix_lock_file(inode, file_lock);
  1601. if ((error != -EAGAIN) || (cmd == F_SETLK64))
  1602. break;
  1603. error = wait_event_interruptible(file_lock->fl_wait,
  1604. !file_lock->fl_next);
  1605. if (!error)
  1606. continue;
  1607. locks_delete_block(file_lock);
  1608. break;
  1609. }
  1610. }
  1611. /*
  1612. * Attempt to detect a close/fcntl race and recover by
  1613. * releasing the lock that was just acquired.
  1614. */
  1615. if (!error && fcheck(fd) != filp && flock.l_type != F_UNLCK) {
  1616. flock.l_type = F_UNLCK;
  1617. goto again;
  1618. }
  1619. out:
  1620. locks_free_lock(file_lock);
  1621. return error;
  1622. }
  1623. #endif /* BITS_PER_LONG == 32 */
  1624. /*
  1625. * This function is called when the file is being removed
  1626. * from the task's fd array. POSIX locks belonging to this task
  1627. * are deleted at this time.
  1628. */
  1629. void locks_remove_posix(struct file *filp, fl_owner_t owner)
  1630. {
  1631. struct file_lock lock, **before;
  1632. /*
  1633. * If there are no locks held on this file, we don't need to call
  1634. * posix_lock_file(). Another process could be setting a lock on this
  1635. * file at the same time, but we wouldn't remove that lock anyway.
  1636. */
  1637. before = &filp->f_dentry->d_inode->i_flock;
  1638. if (*before == NULL)
  1639. return;
  1640. lock.fl_type = F_UNLCK;
  1641. lock.fl_flags = FL_POSIX;
  1642. lock.fl_start = 0;
  1643. lock.fl_end = OFFSET_MAX;
  1644. lock.fl_owner = owner;
  1645. lock.fl_pid = current->tgid;
  1646. lock.fl_file = filp;
  1647. lock.fl_ops = NULL;
  1648. lock.fl_lmops = NULL;
  1649. if (filp->f_op && filp->f_op->lock != NULL) {
  1650. filp->f_op->lock(filp, F_SETLK, &lock);
  1651. goto out;
  1652. }
  1653. /* Can't use posix_lock_file here; we need to remove it no matter
  1654. * which pid we have.
  1655. */
  1656. lock_kernel();
  1657. while (*before != NULL) {
  1658. struct file_lock *fl = *before;
  1659. if (IS_POSIX(fl) && posix_same_owner(fl, &lock)) {
  1660. locks_delete_lock(before);
  1661. continue;
  1662. }
  1663. before = &fl->fl_next;
  1664. }
  1665. unlock_kernel();
  1666. out:
  1667. if (lock.fl_ops && lock.fl_ops->fl_release_private)
  1668. lock.fl_ops->fl_release_private(&lock);
  1669. }
  1670. EXPORT_SYMBOL(locks_remove_posix);
  1671. /*
  1672. * This function is called on the last close of an open file.
  1673. */
  1674. void locks_remove_flock(struct file *filp)
  1675. {
  1676. struct inode * inode = filp->f_dentry->d_inode;
  1677. struct file_lock *fl;
  1678. struct file_lock **before;
  1679. if (!inode->i_flock)
  1680. return;
  1681. if (filp->f_op && filp->f_op->flock) {
  1682. struct file_lock fl = {
  1683. .fl_pid = current->tgid,
  1684. .fl_file = filp,
  1685. .fl_flags = FL_FLOCK,
  1686. .fl_type = F_UNLCK,
  1687. .fl_end = OFFSET_MAX,
  1688. };
  1689. filp->f_op->flock(filp, F_SETLKW, &fl);
  1690. if (fl.fl_ops && fl.fl_ops->fl_release_private)
  1691. fl.fl_ops->fl_release_private(&fl);
  1692. }
  1693. lock_kernel();
  1694. before = &inode->i_flock;
  1695. while ((fl = *before) != NULL) {
  1696. if (fl->fl_file == filp) {
  1697. if (IS_FLOCK(fl)) {
  1698. locks_delete_lock(before);
  1699. continue;
  1700. }
  1701. if (IS_LEASE(fl)) {
  1702. lease_modify(before, F_UNLCK);
  1703. continue;
  1704. }
  1705. /* What? */
  1706. BUG();
  1707. }
  1708. before = &fl->fl_next;
  1709. }
  1710. unlock_kernel();
  1711. }
  1712. /**
  1713. * posix_block_lock - blocks waiting for a file lock
  1714. * @blocker: the lock which is blocking
  1715. * @waiter: the lock which conflicts and has to wait
  1716. *
  1717. * lockd needs to block waiting for locks.
  1718. */
  1719. void
  1720. posix_block_lock(struct file_lock *blocker, struct file_lock *waiter)
  1721. {
  1722. locks_insert_block(blocker, waiter);
  1723. }
  1724. EXPORT_SYMBOL(posix_block_lock);
  1725. /**
  1726. * posix_unblock_lock - stop waiting for a file lock
  1727. * @filp: how the file was opened
  1728. * @waiter: the lock which was waiting
  1729. *
  1730. * lockd needs to block waiting for locks.
  1731. */
  1732. void
  1733. posix_unblock_lock(struct file *filp, struct file_lock *waiter)
  1734. {
  1735. /*
  1736. * A remote machine may cancel the lock request after it's been
  1737. * granted locally. If that happens, we need to delete the lock.
  1738. */
  1739. lock_kernel();
  1740. if (waiter->fl_next) {
  1741. __locks_delete_block(waiter);
  1742. unlock_kernel();
  1743. } else {
  1744. unlock_kernel();
  1745. waiter->fl_type = F_UNLCK;
  1746. posix_lock_file(filp, waiter);
  1747. }
  1748. }
  1749. EXPORT_SYMBOL(posix_unblock_lock);
  1750. static void lock_get_status(char* out, struct file_lock *fl, int id, char *pfx)
  1751. {
  1752. struct inode *inode = NULL;
  1753. if (fl->fl_file != NULL)
  1754. inode = fl->fl_file->f_dentry->d_inode;
  1755. out += sprintf(out, "%d:%s ", id, pfx);
  1756. if (IS_POSIX(fl)) {
  1757. out += sprintf(out, "%6s %s ",
  1758. (fl->fl_flags & FL_ACCESS) ? "ACCESS" : "POSIX ",
  1759. (inode == NULL) ? "*NOINODE*" :
  1760. (IS_MANDLOCK(inode) &&
  1761. (inode->i_mode & (S_IXGRP | S_ISGID)) == S_ISGID) ?
  1762. "MANDATORY" : "ADVISORY ");
  1763. } else if (IS_FLOCK(fl)) {
  1764. if (fl->fl_type & LOCK_MAND) {
  1765. out += sprintf(out, "FLOCK MSNFS ");
  1766. } else {
  1767. out += sprintf(out, "FLOCK ADVISORY ");
  1768. }
  1769. } else if (IS_LEASE(fl)) {
  1770. out += sprintf(out, "LEASE ");
  1771. if (fl->fl_type & F_INPROGRESS)
  1772. out += sprintf(out, "BREAKING ");
  1773. else if (fl->fl_file)
  1774. out += sprintf(out, "ACTIVE ");
  1775. else
  1776. out += sprintf(out, "BREAKER ");
  1777. } else {
  1778. out += sprintf(out, "UNKNOWN UNKNOWN ");
  1779. }
  1780. if (fl->fl_type & LOCK_MAND) {
  1781. out += sprintf(out, "%s ",
  1782. (fl->fl_type & LOCK_READ)
  1783. ? (fl->fl_type & LOCK_WRITE) ? "RW " : "READ "
  1784. : (fl->fl_type & LOCK_WRITE) ? "WRITE" : "NONE ");
  1785. } else {
  1786. out += sprintf(out, "%s ",
  1787. (fl->fl_type & F_INPROGRESS)
  1788. ? (fl->fl_type & F_UNLCK) ? "UNLCK" : "READ "
  1789. : (fl->fl_type & F_WRLCK) ? "WRITE" : "READ ");
  1790. }
  1791. if (inode) {
  1792. #ifdef WE_CAN_BREAK_LSLK_NOW
  1793. out += sprintf(out, "%d %s:%ld ", fl->fl_pid,
  1794. inode->i_sb->s_id, inode->i_ino);
  1795. #else
  1796. /* userspace relies on this representation of dev_t ;-( */
  1797. out += sprintf(out, "%d %02x:%02x:%ld ", fl->fl_pid,
  1798. MAJOR(inode->i_sb->s_dev),
  1799. MINOR(inode->i_sb->s_dev), inode->i_ino);
  1800. #endif
  1801. } else {
  1802. out += sprintf(out, "%d <none>:0 ", fl->fl_pid);
  1803. }
  1804. if (IS_POSIX(fl)) {
  1805. if (fl->fl_end == OFFSET_MAX)
  1806. out += sprintf(out, "%Ld EOF\n", fl->fl_start);
  1807. else
  1808. out += sprintf(out, "%Ld %Ld\n", fl->fl_start,
  1809. fl->fl_end);
  1810. } else {
  1811. out += sprintf(out, "0 EOF\n");
  1812. }
  1813. }
  1814. static void move_lock_status(char **p, off_t* pos, off_t offset)
  1815. {
  1816. int len;
  1817. len = strlen(*p);
  1818. if(*pos >= offset) {
  1819. /* the complete line is valid */
  1820. *p += len;
  1821. *pos += len;
  1822. return;
  1823. }
  1824. if(*pos+len > offset) {
  1825. /* use the second part of the line */
  1826. int i = offset-*pos;
  1827. memmove(*p,*p+i,len-i);
  1828. *p += len-i;
  1829. *pos += len;
  1830. return;
  1831. }
  1832. /* discard the complete line */
  1833. *pos += len;
  1834. }
  1835. /**
  1836. * get_locks_status - reports lock usage in /proc/locks
  1837. * @buffer: address in userspace to write into
  1838. * @start: ?
  1839. * @offset: how far we are through the buffer
  1840. * @length: how much to read
  1841. */
  1842. int get_locks_status(char *buffer, char **start, off_t offset, int length)
  1843. {
  1844. struct list_head *tmp;
  1845. char *q = buffer;
  1846. off_t pos = 0;
  1847. int i = 0;
  1848. lock_kernel();
  1849. list_for_each(tmp, &file_lock_list) {
  1850. struct list_head *btmp;
  1851. struct file_lock *fl = list_entry(tmp, struct file_lock, fl_link);
  1852. lock_get_status(q, fl, ++i, "");
  1853. move_lock_status(&q, &pos, offset);
  1854. if(pos >= offset+length)
  1855. goto done;
  1856. list_for_each(btmp, &fl->fl_block) {
  1857. struct file_lock *bfl = list_entry(btmp,
  1858. struct file_lock, fl_block);
  1859. lock_get_status(q, bfl, i, " ->");
  1860. move_lock_status(&q, &pos, offset);
  1861. if(pos >= offset+length)
  1862. goto done;
  1863. }
  1864. }
  1865. done:
  1866. unlock_kernel();
  1867. *start = buffer;
  1868. if(q-buffer < length)
  1869. return (q-buffer);
  1870. return length;
  1871. }
  1872. /**
  1873. * lock_may_read - checks that the region is free of locks
  1874. * @inode: the inode that is being read
  1875. * @start: the first byte to read
  1876. * @len: the number of bytes to read
  1877. *
  1878. * Emulates Windows locking requirements. Whole-file
  1879. * mandatory locks (share modes) can prohibit a read and
  1880. * byte-range POSIX locks can prohibit a read if they overlap.
  1881. *
  1882. * N.B. this function is only ever called
  1883. * from knfsd and ownership of locks is never checked.
  1884. */
  1885. int lock_may_read(struct inode *inode, loff_t start, unsigned long len)
  1886. {
  1887. struct file_lock *fl;
  1888. int result = 1;
  1889. lock_kernel();
  1890. for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
  1891. if (IS_POSIX(fl)) {
  1892. if (fl->fl_type == F_RDLCK)
  1893. continue;
  1894. if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
  1895. continue;
  1896. } else if (IS_FLOCK(fl)) {
  1897. if (!(fl->fl_type & LOCK_MAND))
  1898. continue;
  1899. if (fl->fl_type & LOCK_READ)
  1900. continue;
  1901. } else
  1902. continue;
  1903. result = 0;
  1904. break;
  1905. }
  1906. unlock_kernel();
  1907. return result;
  1908. }
  1909. EXPORT_SYMBOL(lock_may_read);
  1910. /**
  1911. * lock_may_write - checks that the region is free of locks
  1912. * @inode: the inode that is being written
  1913. * @start: the first byte to write
  1914. * @len: the number of bytes to write
  1915. *
  1916. * Emulates Windows locking requirements. Whole-file
  1917. * mandatory locks (share modes) can prohibit a write and
  1918. * byte-range POSIX locks can prohibit a write if they overlap.
  1919. *
  1920. * N.B. this function is only ever called
  1921. * from knfsd and ownership of locks is never checked.
  1922. */
  1923. int lock_may_write(struct inode *inode, loff_t start, unsigned long len)
  1924. {
  1925. struct file_lock *fl;
  1926. int result = 1;
  1927. lock_kernel();
  1928. for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
  1929. if (IS_POSIX(fl)) {
  1930. if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
  1931. continue;
  1932. } else if (IS_FLOCK(fl)) {
  1933. if (!(fl->fl_type & LOCK_MAND))
  1934. continue;
  1935. if (fl->fl_type & LOCK_WRITE)
  1936. continue;
  1937. } else
  1938. continue;
  1939. result = 0;
  1940. break;
  1941. }
  1942. unlock_kernel();
  1943. return result;
  1944. }
  1945. EXPORT_SYMBOL(lock_may_write);
  1946. static inline void __steal_locks(struct file *file, fl_owner_t from)
  1947. {
  1948. struct inode *inode = file->f_dentry->d_inode;
  1949. struct file_lock *fl = inode->i_flock;
  1950. while (fl) {
  1951. if (fl->fl_file == file && fl->fl_owner == from)
  1952. fl->fl_owner = current->files;
  1953. fl = fl->fl_next;
  1954. }
  1955. }
  1956. /* When getting ready for executing a binary, we make sure that current
  1957. * has a files_struct on its own. Before dropping the old files_struct,
  1958. * we take over ownership of all locks for all file descriptors we own.
  1959. * Note that we may accidentally steal a lock for a file that a sibling
  1960. * has created since the unshare_files() call.
  1961. */
  1962. void steal_locks(fl_owner_t from)
  1963. {
  1964. struct files_struct *files = current->files;
  1965. int i, j;
  1966. struct fdtable *fdt;
  1967. if (from == files)
  1968. return;
  1969. lock_kernel();
  1970. j = 0;
  1971. rcu_read_lock();
  1972. fdt = files_fdtable(files);
  1973. for (;;) {
  1974. unsigned long set;
  1975. i = j * __NFDBITS;
  1976. if (i >= fdt->max_fdset || i >= fdt->max_fds)
  1977. break;
  1978. set = fdt->open_fds->fds_bits[j++];
  1979. while (set) {
  1980. if (set & 1) {
  1981. struct file *file = fdt->fd[i];
  1982. if (file)
  1983. __steal_locks(file, from);
  1984. }
  1985. i++;
  1986. set >>= 1;
  1987. }
  1988. }
  1989. rcu_read_unlock();
  1990. unlock_kernel();
  1991. }
  1992. EXPORT_SYMBOL(steal_locks);
  1993. static int __init filelock_init(void)
  1994. {
  1995. filelock_cache = kmem_cache_create("file_lock_cache",
  1996. sizeof(struct file_lock), 0, SLAB_PANIC,
  1997. init_once, NULL);
  1998. return 0;
  1999. }
  2000. core_initcall(filelock_init);