locks.c 57 KB

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