locks.c 56 KB

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