locks.c 55 KB

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