locks.c 57 KB

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