locks.c 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301
  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/fdtable.h>
  119. #include <linux/fs.h>
  120. #include <linux/init.h>
  121. #include <linux/module.h>
  122. #include <linux/security.h>
  123. #include <linux/slab.h>
  124. #include <linux/smp_lock.h>
  125. #include <linux/syscalls.h>
  126. #include <linux/time.h>
  127. #include <linux/rcupdate.h>
  128. #include <linux/pid_namespace.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(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. 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. EXPORT_SYMBOL(__locks_copy_lock);
  223. void locks_copy_lock(struct file_lock *new, struct file_lock *fl)
  224. {
  225. locks_release_private(new);
  226. __locks_copy_lock(new, fl);
  227. new->fl_file = fl->fl_file;
  228. new->fl_ops = fl->fl_ops;
  229. new->fl_lmops = fl->fl_lmops;
  230. locks_copy_private(new, fl);
  231. }
  232. EXPORT_SYMBOL(locks_copy_lock);
  233. static inline int flock_translate_cmd(int cmd) {
  234. if (cmd & LOCK_MAND)
  235. return cmd & (LOCK_MAND | LOCK_RW);
  236. switch (cmd) {
  237. case LOCK_SH:
  238. return F_RDLCK;
  239. case LOCK_EX:
  240. return F_WRLCK;
  241. case LOCK_UN:
  242. return F_UNLCK;
  243. }
  244. return -EINVAL;
  245. }
  246. /* Fill in a file_lock structure with an appropriate FLOCK lock. */
  247. static int flock_make_lock(struct file *filp, struct file_lock **lock,
  248. unsigned int cmd)
  249. {
  250. struct file_lock *fl;
  251. int type = flock_translate_cmd(cmd);
  252. if (type < 0)
  253. return type;
  254. fl = locks_alloc_lock();
  255. if (fl == NULL)
  256. return -ENOMEM;
  257. fl->fl_file = filp;
  258. fl->fl_pid = current->tgid;
  259. fl->fl_flags = FL_FLOCK;
  260. fl->fl_type = type;
  261. fl->fl_end = OFFSET_MAX;
  262. *lock = fl;
  263. return 0;
  264. }
  265. static int assign_type(struct file_lock *fl, int type)
  266. {
  267. switch (type) {
  268. case F_RDLCK:
  269. case F_WRLCK:
  270. case F_UNLCK:
  271. fl->fl_type = type;
  272. break;
  273. default:
  274. return -EINVAL;
  275. }
  276. return 0;
  277. }
  278. /* Verify a "struct flock" and copy it to a "struct file_lock" as a POSIX
  279. * style lock.
  280. */
  281. static int flock_to_posix_lock(struct file *filp, struct file_lock *fl,
  282. struct flock *l)
  283. {
  284. off_t start, end;
  285. switch (l->l_whence) {
  286. case SEEK_SET:
  287. start = 0;
  288. break;
  289. case SEEK_CUR:
  290. start = filp->f_pos;
  291. break;
  292. case SEEK_END:
  293. start = i_size_read(filp->f_path.dentry->d_inode);
  294. break;
  295. default:
  296. return -EINVAL;
  297. }
  298. /* POSIX-1996 leaves the case l->l_len < 0 undefined;
  299. POSIX-2001 defines it. */
  300. start += l->l_start;
  301. if (start < 0)
  302. return -EINVAL;
  303. fl->fl_end = OFFSET_MAX;
  304. if (l->l_len > 0) {
  305. end = start + l->l_len - 1;
  306. fl->fl_end = end;
  307. } else if (l->l_len < 0) {
  308. end = start - 1;
  309. fl->fl_end = end;
  310. start += l->l_len;
  311. if (start < 0)
  312. return -EINVAL;
  313. }
  314. fl->fl_start = start; /* we record the absolute position */
  315. if (fl->fl_end < fl->fl_start)
  316. return -EOVERFLOW;
  317. fl->fl_owner = current->files;
  318. fl->fl_pid = current->tgid;
  319. fl->fl_file = filp;
  320. fl->fl_flags = FL_POSIX;
  321. fl->fl_ops = NULL;
  322. fl->fl_lmops = NULL;
  323. return assign_type(fl, l->l_type);
  324. }
  325. #if BITS_PER_LONG == 32
  326. static int flock64_to_posix_lock(struct file *filp, struct file_lock *fl,
  327. struct flock64 *l)
  328. {
  329. loff_t start;
  330. switch (l->l_whence) {
  331. case SEEK_SET:
  332. start = 0;
  333. break;
  334. case SEEK_CUR:
  335. start = filp->f_pos;
  336. break;
  337. case SEEK_END:
  338. start = i_size_read(filp->f_path.dentry->d_inode);
  339. break;
  340. default:
  341. return -EINVAL;
  342. }
  343. start += l->l_start;
  344. if (start < 0)
  345. return -EINVAL;
  346. fl->fl_end = OFFSET_MAX;
  347. if (l->l_len > 0) {
  348. fl->fl_end = start + l->l_len - 1;
  349. } else if (l->l_len < 0) {
  350. fl->fl_end = start - 1;
  351. start += l->l_len;
  352. if (start < 0)
  353. return -EINVAL;
  354. }
  355. fl->fl_start = start; /* we record the absolute position */
  356. if (fl->fl_end < fl->fl_start)
  357. return -EOVERFLOW;
  358. fl->fl_owner = current->files;
  359. fl->fl_pid = current->tgid;
  360. fl->fl_file = filp;
  361. fl->fl_flags = FL_POSIX;
  362. fl->fl_ops = NULL;
  363. fl->fl_lmops = NULL;
  364. switch (l->l_type) {
  365. case F_RDLCK:
  366. case F_WRLCK:
  367. case F_UNLCK:
  368. fl->fl_type = l->l_type;
  369. break;
  370. default:
  371. return -EINVAL;
  372. }
  373. return (0);
  374. }
  375. #endif
  376. /* default lease lock manager operations */
  377. static void lease_break_callback(struct file_lock *fl)
  378. {
  379. kill_fasync(&fl->fl_fasync, SIGIO, POLL_MSG);
  380. }
  381. static void lease_release_private_callback(struct file_lock *fl)
  382. {
  383. if (!fl->fl_file)
  384. return;
  385. f_delown(fl->fl_file);
  386. fl->fl_file->f_owner.signum = 0;
  387. }
  388. static int lease_mylease_callback(struct file_lock *fl, struct file_lock *try)
  389. {
  390. return fl->fl_file == try->fl_file;
  391. }
  392. static struct lock_manager_operations lease_manager_ops = {
  393. .fl_break = lease_break_callback,
  394. .fl_release_private = lease_release_private_callback,
  395. .fl_mylease = lease_mylease_callback,
  396. .fl_change = lease_modify,
  397. };
  398. /*
  399. * Initialize a lease, use the default lock manager operations
  400. */
  401. static int lease_init(struct file *filp, int type, struct file_lock *fl)
  402. {
  403. if (assign_type(fl, type) != 0)
  404. return -EINVAL;
  405. fl->fl_owner = current->files;
  406. fl->fl_pid = current->tgid;
  407. fl->fl_file = filp;
  408. fl->fl_flags = FL_LEASE;
  409. fl->fl_start = 0;
  410. fl->fl_end = OFFSET_MAX;
  411. fl->fl_ops = NULL;
  412. fl->fl_lmops = &lease_manager_ops;
  413. return 0;
  414. }
  415. /* Allocate a file_lock initialised to this type of lease */
  416. static struct file_lock *lease_alloc(struct file *filp, int type)
  417. {
  418. struct file_lock *fl = locks_alloc_lock();
  419. int error = -ENOMEM;
  420. if (fl == NULL)
  421. return ERR_PTR(error);
  422. error = lease_init(filp, type, fl);
  423. if (error) {
  424. locks_free_lock(fl);
  425. return ERR_PTR(error);
  426. }
  427. return fl;
  428. }
  429. /* Check if two locks overlap each other.
  430. */
  431. static inline int locks_overlap(struct file_lock *fl1, struct file_lock *fl2)
  432. {
  433. return ((fl1->fl_end >= fl2->fl_start) &&
  434. (fl2->fl_end >= fl1->fl_start));
  435. }
  436. /*
  437. * Check whether two locks have the same owner.
  438. */
  439. static int posix_same_owner(struct file_lock *fl1, struct file_lock *fl2)
  440. {
  441. if (fl1->fl_lmops && fl1->fl_lmops->fl_compare_owner)
  442. return fl2->fl_lmops == fl1->fl_lmops &&
  443. fl1->fl_lmops->fl_compare_owner(fl1, fl2);
  444. return fl1->fl_owner == fl2->fl_owner;
  445. }
  446. /* Remove waiter from blocker's block list.
  447. * When blocker ends up pointing to itself then the list is empty.
  448. */
  449. static void __locks_delete_block(struct file_lock *waiter)
  450. {
  451. list_del_init(&waiter->fl_block);
  452. list_del_init(&waiter->fl_link);
  453. waiter->fl_next = NULL;
  454. }
  455. /*
  456. */
  457. static void locks_delete_block(struct file_lock *waiter)
  458. {
  459. lock_kernel();
  460. __locks_delete_block(waiter);
  461. unlock_kernel();
  462. }
  463. /* Insert waiter into blocker's block list.
  464. * We use a circular list so that processes can be easily woken up in
  465. * the order they blocked. The documentation doesn't require this but
  466. * it seems like the reasonable thing to do.
  467. */
  468. static void locks_insert_block(struct file_lock *blocker,
  469. struct file_lock *waiter)
  470. {
  471. BUG_ON(!list_empty(&waiter->fl_block));
  472. list_add_tail(&waiter->fl_block, &blocker->fl_block);
  473. waiter->fl_next = blocker;
  474. if (IS_POSIX(blocker))
  475. list_add(&waiter->fl_link, &blocked_list);
  476. }
  477. /* Wake up processes blocked waiting for blocker.
  478. * If told to wait then schedule the processes until the block list
  479. * is empty, otherwise empty the block list ourselves.
  480. */
  481. static void locks_wake_up_blocks(struct file_lock *blocker)
  482. {
  483. while (!list_empty(&blocker->fl_block)) {
  484. struct file_lock *waiter;
  485. waiter = list_first_entry(&blocker->fl_block,
  486. struct file_lock, fl_block);
  487. __locks_delete_block(waiter);
  488. if (waiter->fl_lmops && waiter->fl_lmops->fl_notify)
  489. waiter->fl_lmops->fl_notify(waiter);
  490. else
  491. wake_up(&waiter->fl_wait);
  492. }
  493. }
  494. /* Insert file lock fl into an inode's lock list at the position indicated
  495. * by pos. At the same time add the lock to the global file lock list.
  496. */
  497. static void locks_insert_lock(struct file_lock **pos, struct file_lock *fl)
  498. {
  499. list_add(&fl->fl_link, &file_lock_list);
  500. fl->fl_nspid = get_pid(task_tgid(current));
  501. /* insert into file's list */
  502. fl->fl_next = *pos;
  503. *pos = 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_nspid) {
  523. put_pid(fl->fl_nspid);
  524. fl->fl_nspid = NULL;
  525. }
  526. locks_wake_up_blocks(fl);
  527. locks_free_lock(fl);
  528. }
  529. /* Determine if lock sys_fl blocks lock caller_fl. Common functionality
  530. * checks for shared/exclusive status of overlapping locks.
  531. */
  532. static int locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
  533. {
  534. if (sys_fl->fl_type == F_WRLCK)
  535. return 1;
  536. if (caller_fl->fl_type == F_WRLCK)
  537. return 1;
  538. return 0;
  539. }
  540. /* Determine if lock sys_fl blocks lock caller_fl. POSIX specific
  541. * checking before calling the locks_conflict().
  542. */
  543. static int posix_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
  544. {
  545. /* POSIX locks owned by the same process do not conflict with
  546. * each other.
  547. */
  548. if (!IS_POSIX(sys_fl) || posix_same_owner(caller_fl, sys_fl))
  549. return (0);
  550. /* Check whether they overlap */
  551. if (!locks_overlap(caller_fl, sys_fl))
  552. return 0;
  553. return (locks_conflict(caller_fl, sys_fl));
  554. }
  555. /* Determine if lock sys_fl blocks lock caller_fl. FLOCK specific
  556. * checking before calling the locks_conflict().
  557. */
  558. static int flock_locks_conflict(struct file_lock *caller_fl, struct file_lock *sys_fl)
  559. {
  560. /* FLOCK locks referring to the same filp do not conflict with
  561. * each other.
  562. */
  563. if (!IS_FLOCK(sys_fl) || (caller_fl->fl_file == sys_fl->fl_file))
  564. return (0);
  565. if ((caller_fl->fl_type & LOCK_MAND) || (sys_fl->fl_type & LOCK_MAND))
  566. return 0;
  567. return (locks_conflict(caller_fl, sys_fl));
  568. }
  569. void
  570. posix_test_lock(struct file *filp, struct file_lock *fl)
  571. {
  572. struct file_lock *cfl;
  573. lock_kernel();
  574. for (cfl = filp->f_path.dentry->d_inode->i_flock; cfl; cfl = cfl->fl_next) {
  575. if (!IS_POSIX(cfl))
  576. continue;
  577. if (posix_locks_conflict(fl, cfl))
  578. break;
  579. }
  580. if (cfl) {
  581. __locks_copy_lock(fl, cfl);
  582. if (cfl->fl_nspid)
  583. fl->fl_pid = pid_vnr(cfl->fl_nspid);
  584. } else
  585. fl->fl_type = F_UNLCK;
  586. unlock_kernel();
  587. return;
  588. }
  589. EXPORT_SYMBOL(posix_test_lock);
  590. /*
  591. * Deadlock detection:
  592. *
  593. * We attempt to detect deadlocks that are due purely to posix file
  594. * locks.
  595. *
  596. * We assume that a task can be waiting for at most one lock at a time.
  597. * So for any acquired lock, the process holding that lock may be
  598. * waiting on at most one other lock. That lock in turns may be held by
  599. * someone waiting for at most one other lock. Given a requested lock
  600. * caller_fl which is about to wait for a conflicting lock block_fl, we
  601. * follow this chain of waiters to ensure we are not about to create a
  602. * cycle.
  603. *
  604. * Since we do this before we ever put a process to sleep on a lock, we
  605. * are ensured that there is never a cycle; that is what guarantees that
  606. * the while() loop in posix_locks_deadlock() eventually completes.
  607. *
  608. * Note: the above assumption may not be true when handling lock
  609. * requests from a broken NFS client. It may also fail in the presence
  610. * of tasks (such as posix threads) sharing the same open file table.
  611. *
  612. * To handle those cases, we just bail out after a few iterations.
  613. */
  614. #define MAX_DEADLK_ITERATIONS 10
  615. /* Find a lock that the owner of the given block_fl is blocking on. */
  616. static struct file_lock *what_owner_is_waiting_for(struct file_lock *block_fl)
  617. {
  618. struct file_lock *fl;
  619. list_for_each_entry(fl, &blocked_list, fl_link) {
  620. if (posix_same_owner(fl, block_fl))
  621. return fl->fl_next;
  622. }
  623. return NULL;
  624. }
  625. static int posix_locks_deadlock(struct file_lock *caller_fl,
  626. struct file_lock *block_fl)
  627. {
  628. int i = 0;
  629. while ((block_fl = what_owner_is_waiting_for(block_fl))) {
  630. if (i++ > MAX_DEADLK_ITERATIONS)
  631. return 0;
  632. if (posix_same_owner(caller_fl, block_fl))
  633. return 1;
  634. }
  635. return 0;
  636. }
  637. /* Try to create a FLOCK lock on filp. We always insert new FLOCK locks
  638. * after any leases, but before any posix locks.
  639. *
  640. * Note that if called with an FL_EXISTS argument, the caller may determine
  641. * whether or not a lock was successfully freed by testing the return
  642. * value for -ENOENT.
  643. */
  644. static int flock_lock_file(struct file *filp, struct file_lock *request)
  645. {
  646. struct file_lock *new_fl = NULL;
  647. struct file_lock **before;
  648. struct inode * inode = filp->f_path.dentry->d_inode;
  649. int error = 0;
  650. int found = 0;
  651. lock_kernel();
  652. if (request->fl_flags & FL_ACCESS)
  653. goto find_conflict;
  654. if (request->fl_type != F_UNLCK) {
  655. error = -ENOMEM;
  656. new_fl = locks_alloc_lock();
  657. if (new_fl == NULL)
  658. goto out;
  659. error = 0;
  660. }
  661. for_each_lock(inode, before) {
  662. struct file_lock *fl = *before;
  663. if (IS_POSIX(fl))
  664. break;
  665. if (IS_LEASE(fl))
  666. continue;
  667. if (filp != fl->fl_file)
  668. continue;
  669. if (request->fl_type == fl->fl_type)
  670. goto out;
  671. found = 1;
  672. locks_delete_lock(before);
  673. break;
  674. }
  675. if (request->fl_type == F_UNLCK) {
  676. if ((request->fl_flags & FL_EXISTS) && !found)
  677. error = -ENOENT;
  678. goto out;
  679. }
  680. /*
  681. * If a higher-priority process was blocked on the old file lock,
  682. * give it the opportunity to lock the file.
  683. */
  684. if (found)
  685. cond_resched_bkl();
  686. find_conflict:
  687. for_each_lock(inode, before) {
  688. struct file_lock *fl = *before;
  689. if (IS_POSIX(fl))
  690. break;
  691. if (IS_LEASE(fl))
  692. continue;
  693. if (!flock_locks_conflict(request, fl))
  694. continue;
  695. error = -EAGAIN;
  696. if (!(request->fl_flags & FL_SLEEP))
  697. goto out;
  698. error = FILE_LOCK_DEFERRED;
  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 = FILE_LOCK_DEFERRED;
  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 != FILE_LOCK_DEFERRED)
  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 != FILE_LOCK_DEFERRED)
  1006. break;
  1007. error = wait_event_interruptible(fl.fl_wait, !fl.fl_next);
  1008. if (!error) {
  1009. /*
  1010. * If we've been sleeping someone might have
  1011. * changed the permissions behind our back.
  1012. */
  1013. if (__mandatory_lock(inode))
  1014. continue;
  1015. }
  1016. locks_delete_block(&fl);
  1017. break;
  1018. }
  1019. return error;
  1020. }
  1021. EXPORT_SYMBOL(locks_mandatory_area);
  1022. /* We already had a lease on this file; just change its type */
  1023. int lease_modify(struct file_lock **before, int arg)
  1024. {
  1025. struct file_lock *fl = *before;
  1026. int error = assign_type(fl, arg);
  1027. if (error)
  1028. return error;
  1029. locks_wake_up_blocks(fl);
  1030. if (arg == F_UNLCK)
  1031. locks_delete_lock(before);
  1032. return 0;
  1033. }
  1034. EXPORT_SYMBOL(lease_modify);
  1035. static void time_out_leases(struct inode *inode)
  1036. {
  1037. struct file_lock **before;
  1038. struct file_lock *fl;
  1039. before = &inode->i_flock;
  1040. while ((fl = *before) && IS_LEASE(fl) && (fl->fl_type & F_INPROGRESS)) {
  1041. if ((fl->fl_break_time == 0)
  1042. || time_before(jiffies, fl->fl_break_time)) {
  1043. before = &fl->fl_next;
  1044. continue;
  1045. }
  1046. lease_modify(before, fl->fl_type & ~F_INPROGRESS);
  1047. if (fl == *before) /* lease_modify may have freed fl */
  1048. before = &fl->fl_next;
  1049. }
  1050. }
  1051. /**
  1052. * __break_lease - revoke all outstanding leases on file
  1053. * @inode: the inode of the file to return
  1054. * @mode: the open mode (read or write)
  1055. *
  1056. * break_lease (inlined for speed) has checked there already is at least
  1057. * some kind of lock (maybe a lease) on this file. Leases are broken on
  1058. * a call to open() or truncate(). This function can sleep unless you
  1059. * specified %O_NONBLOCK to your open().
  1060. */
  1061. int __break_lease(struct inode *inode, unsigned int mode)
  1062. {
  1063. int error = 0, future;
  1064. struct file_lock *new_fl, *flock;
  1065. struct file_lock *fl;
  1066. unsigned long break_time;
  1067. int i_have_this_lease = 0;
  1068. new_fl = lease_alloc(NULL, mode & FMODE_WRITE ? F_WRLCK : F_RDLCK);
  1069. lock_kernel();
  1070. time_out_leases(inode);
  1071. flock = inode->i_flock;
  1072. if ((flock == NULL) || !IS_LEASE(flock))
  1073. goto out;
  1074. for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next)
  1075. if (fl->fl_owner == current->files)
  1076. i_have_this_lease = 1;
  1077. if (mode & FMODE_WRITE) {
  1078. /* If we want write access, we have to revoke any lease. */
  1079. future = F_UNLCK | F_INPROGRESS;
  1080. } else if (flock->fl_type & F_INPROGRESS) {
  1081. /* If the lease is already being broken, we just leave it */
  1082. future = flock->fl_type;
  1083. } else if (flock->fl_type & F_WRLCK) {
  1084. /* Downgrade the exclusive lease to a read-only lease. */
  1085. future = F_RDLCK | F_INPROGRESS;
  1086. } else {
  1087. /* the existing lease was read-only, so we can read too. */
  1088. goto out;
  1089. }
  1090. if (IS_ERR(new_fl) && !i_have_this_lease
  1091. && ((mode & O_NONBLOCK) == 0)) {
  1092. error = PTR_ERR(new_fl);
  1093. goto out;
  1094. }
  1095. break_time = 0;
  1096. if (lease_break_time > 0) {
  1097. break_time = jiffies + lease_break_time * HZ;
  1098. if (break_time == 0)
  1099. break_time++; /* so that 0 means no break time */
  1100. }
  1101. for (fl = flock; fl && IS_LEASE(fl); fl = fl->fl_next) {
  1102. if (fl->fl_type != future) {
  1103. fl->fl_type = future;
  1104. fl->fl_break_time = break_time;
  1105. /* lease must have lmops break callback */
  1106. fl->fl_lmops->fl_break(fl);
  1107. }
  1108. }
  1109. if (i_have_this_lease || (mode & O_NONBLOCK)) {
  1110. error = -EWOULDBLOCK;
  1111. goto out;
  1112. }
  1113. restart:
  1114. break_time = flock->fl_break_time;
  1115. if (break_time != 0) {
  1116. break_time -= jiffies;
  1117. if (break_time == 0)
  1118. break_time++;
  1119. }
  1120. locks_insert_block(flock, new_fl);
  1121. error = wait_event_interruptible_timeout(new_fl->fl_wait,
  1122. !new_fl->fl_next, break_time);
  1123. __locks_delete_block(new_fl);
  1124. if (error >= 0) {
  1125. if (error == 0)
  1126. time_out_leases(inode);
  1127. /* Wait for the next lease that has not been broken yet */
  1128. for (flock = inode->i_flock; flock && IS_LEASE(flock);
  1129. flock = flock->fl_next) {
  1130. if (flock->fl_type & F_INPROGRESS)
  1131. goto restart;
  1132. }
  1133. error = 0;
  1134. }
  1135. out:
  1136. unlock_kernel();
  1137. if (!IS_ERR(new_fl))
  1138. locks_free_lock(new_fl);
  1139. return error;
  1140. }
  1141. EXPORT_SYMBOL(__break_lease);
  1142. /**
  1143. * lease_get_mtime - get the last modified time of an inode
  1144. * @inode: the inode
  1145. * @time: pointer to a timespec which will contain the last modified time
  1146. *
  1147. * This is to force NFS clients to flush their caches for files with
  1148. * exclusive leases. The justification is that if someone has an
  1149. * exclusive lease, then they could be modifying it.
  1150. */
  1151. void lease_get_mtime(struct inode *inode, struct timespec *time)
  1152. {
  1153. struct file_lock *flock = inode->i_flock;
  1154. if (flock && IS_LEASE(flock) && (flock->fl_type & F_WRLCK))
  1155. *time = current_fs_time(inode->i_sb);
  1156. else
  1157. *time = inode->i_mtime;
  1158. }
  1159. EXPORT_SYMBOL(lease_get_mtime);
  1160. /**
  1161. * fcntl_getlease - Enquire what lease is currently active
  1162. * @filp: the file
  1163. *
  1164. * The value returned by this function will be one of
  1165. * (if no lease break is pending):
  1166. *
  1167. * %F_RDLCK to indicate a shared lease is held.
  1168. *
  1169. * %F_WRLCK to indicate an exclusive lease is held.
  1170. *
  1171. * %F_UNLCK to indicate no lease is held.
  1172. *
  1173. * (if a lease break is pending):
  1174. *
  1175. * %F_RDLCK to indicate an exclusive lease needs to be
  1176. * changed to a shared lease (or removed).
  1177. *
  1178. * %F_UNLCK to indicate the lease needs to be removed.
  1179. *
  1180. * XXX: sfr & willy disagree over whether F_INPROGRESS
  1181. * should be returned to userspace.
  1182. */
  1183. int fcntl_getlease(struct file *filp)
  1184. {
  1185. struct file_lock *fl;
  1186. int type = F_UNLCK;
  1187. lock_kernel();
  1188. time_out_leases(filp->f_path.dentry->d_inode);
  1189. for (fl = filp->f_path.dentry->d_inode->i_flock; fl && IS_LEASE(fl);
  1190. fl = fl->fl_next) {
  1191. if (fl->fl_file == filp) {
  1192. type = fl->fl_type & ~F_INPROGRESS;
  1193. break;
  1194. }
  1195. }
  1196. unlock_kernel();
  1197. return type;
  1198. }
  1199. /**
  1200. * generic_setlease - sets a lease on an open file
  1201. * @filp: file pointer
  1202. * @arg: type of lease to obtain
  1203. * @flp: input - file_lock to use, output - file_lock inserted
  1204. *
  1205. * The (input) flp->fl_lmops->fl_break function is required
  1206. * by break_lease().
  1207. *
  1208. * Called with kernel lock held.
  1209. */
  1210. int generic_setlease(struct file *filp, long arg, struct file_lock **flp)
  1211. {
  1212. struct file_lock *fl, **before, **my_before = NULL, *lease;
  1213. struct file_lock *new_fl = NULL;
  1214. struct dentry *dentry = filp->f_path.dentry;
  1215. struct inode *inode = dentry->d_inode;
  1216. int error, rdlease_count = 0, wrlease_count = 0;
  1217. if ((current_fsuid() != inode->i_uid) && !capable(CAP_LEASE))
  1218. return -EACCES;
  1219. if (!S_ISREG(inode->i_mode))
  1220. return -EINVAL;
  1221. error = security_file_lock(filp, arg);
  1222. if (error)
  1223. return error;
  1224. time_out_leases(inode);
  1225. BUG_ON(!(*flp)->fl_lmops->fl_break);
  1226. lease = *flp;
  1227. if (arg != F_UNLCK) {
  1228. error = -ENOMEM;
  1229. new_fl = locks_alloc_lock();
  1230. if (new_fl == NULL)
  1231. goto out;
  1232. error = -EAGAIN;
  1233. if ((arg == F_RDLCK) && (atomic_read(&inode->i_writecount) > 0))
  1234. goto out;
  1235. if ((arg == F_WRLCK)
  1236. && ((atomic_read(&dentry->d_count) > 1)
  1237. || (atomic_read(&inode->i_count) > 1)))
  1238. goto out;
  1239. }
  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. error = -EAGAIN;
  1264. if ((arg == F_RDLCK && (wrlease_count > 0)) ||
  1265. (arg == F_WRLCK && ((rdlease_count + wrlease_count) > 0)))
  1266. goto out;
  1267. if (my_before != NULL) {
  1268. *flp = *my_before;
  1269. error = lease->fl_lmops->fl_change(my_before, arg);
  1270. goto out;
  1271. }
  1272. error = 0;
  1273. if (arg == F_UNLCK)
  1274. goto out;
  1275. error = -EINVAL;
  1276. if (!leases_enable)
  1277. goto out;
  1278. locks_copy_lock(new_fl, lease);
  1279. locks_insert_lock(before, new_fl);
  1280. *flp = new_fl;
  1281. return 0;
  1282. out:
  1283. if (new_fl != NULL)
  1284. locks_free_lock(new_fl);
  1285. return error;
  1286. }
  1287. EXPORT_SYMBOL(generic_setlease);
  1288. /**
  1289. * vfs_setlease - sets a lease on an open file
  1290. * @filp: file pointer
  1291. * @arg: type of lease to obtain
  1292. * @lease: file_lock to use
  1293. *
  1294. * Call this to establish a lease on the file.
  1295. * The (*lease)->fl_lmops->fl_break operation must be set; if not,
  1296. * break_lease will oops!
  1297. *
  1298. * This will call the filesystem's setlease file method, if
  1299. * defined. Note that there is no getlease method; instead, the
  1300. * filesystem setlease method should call back to setlease() to
  1301. * add a lease to the inode's lease list, where fcntl_getlease() can
  1302. * find it. Since fcntl_getlease() only reports whether the current
  1303. * task holds a lease, a cluster filesystem need only do this for
  1304. * leases held by processes on this node.
  1305. *
  1306. * There is also no break_lease method; filesystems that
  1307. * handle their own leases shoud break leases themselves from the
  1308. * filesystem's open, create, and (on truncate) setattr methods.
  1309. *
  1310. * Warning: the only current setlease methods exist only to disable
  1311. * leases in certain cases. More vfs changes may be required to
  1312. * allow a full filesystem lease implementation.
  1313. */
  1314. int vfs_setlease(struct file *filp, long arg, struct file_lock **lease)
  1315. {
  1316. int error;
  1317. lock_kernel();
  1318. if (filp->f_op && filp->f_op->setlease)
  1319. error = filp->f_op->setlease(filp, arg, lease);
  1320. else
  1321. error = generic_setlease(filp, arg, lease);
  1322. unlock_kernel();
  1323. return error;
  1324. }
  1325. EXPORT_SYMBOL_GPL(vfs_setlease);
  1326. /**
  1327. * fcntl_setlease - sets a lease on an open file
  1328. * @fd: open file descriptor
  1329. * @filp: file pointer
  1330. * @arg: type of lease to obtain
  1331. *
  1332. * Call this fcntl to establish a lease on the file.
  1333. * Note that you also need to call %F_SETSIG to
  1334. * receive a signal when the lease is broken.
  1335. */
  1336. int fcntl_setlease(unsigned int fd, struct file *filp, long arg)
  1337. {
  1338. struct file_lock fl, *flp = &fl;
  1339. struct inode *inode = filp->f_path.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 != FILE_LOCK_DEFERRED)
  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. SYSCALL_DEFINE2(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) &&
  1419. !(filp->f_mode & (FMODE_READ|FMODE_WRITE)))
  1420. goto out_putf;
  1421. error = flock_make_lock(filp, &lock, cmd);
  1422. if (error)
  1423. goto out_putf;
  1424. if (can_sleep)
  1425. lock->fl_flags |= FL_SLEEP;
  1426. error = security_file_lock(filp, cmd);
  1427. if (error)
  1428. goto out_free;
  1429. if (filp->f_op && filp->f_op->flock)
  1430. error = filp->f_op->flock(filp,
  1431. (can_sleep) ? F_SETLKW : F_SETLK,
  1432. lock);
  1433. else
  1434. error = flock_lock_file_wait(filp, lock);
  1435. out_free:
  1436. locks_free_lock(lock);
  1437. out_putf:
  1438. fput(filp);
  1439. out:
  1440. return error;
  1441. }
  1442. /**
  1443. * vfs_test_lock - test file byte range lock
  1444. * @filp: The file to test lock for
  1445. * @fl: The lock to test; also used to hold result
  1446. *
  1447. * Returns -ERRNO on failure. Indicates presence of conflicting lock by
  1448. * setting conf->fl_type to something other than F_UNLCK.
  1449. */
  1450. int vfs_test_lock(struct file *filp, struct file_lock *fl)
  1451. {
  1452. if (filp->f_op && filp->f_op->lock)
  1453. return filp->f_op->lock(filp, F_GETLK, fl);
  1454. posix_test_lock(filp, fl);
  1455. return 0;
  1456. }
  1457. EXPORT_SYMBOL_GPL(vfs_test_lock);
  1458. static int posix_lock_to_flock(struct flock *flock, struct file_lock *fl)
  1459. {
  1460. flock->l_pid = fl->fl_pid;
  1461. #if BITS_PER_LONG == 32
  1462. /*
  1463. * Make sure we can represent the posix lock via
  1464. * legacy 32bit flock.
  1465. */
  1466. if (fl->fl_start > OFFT_OFFSET_MAX)
  1467. return -EOVERFLOW;
  1468. if (fl->fl_end != OFFSET_MAX && fl->fl_end > OFFT_OFFSET_MAX)
  1469. return -EOVERFLOW;
  1470. #endif
  1471. flock->l_start = fl->fl_start;
  1472. flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
  1473. fl->fl_end - fl->fl_start + 1;
  1474. flock->l_whence = 0;
  1475. flock->l_type = fl->fl_type;
  1476. return 0;
  1477. }
  1478. #if BITS_PER_LONG == 32
  1479. static void posix_lock_to_flock64(struct flock64 *flock, struct file_lock *fl)
  1480. {
  1481. flock->l_pid = fl->fl_pid;
  1482. flock->l_start = fl->fl_start;
  1483. flock->l_len = fl->fl_end == OFFSET_MAX ? 0 :
  1484. fl->fl_end - fl->fl_start + 1;
  1485. flock->l_whence = 0;
  1486. flock->l_type = fl->fl_type;
  1487. }
  1488. #endif
  1489. /* Report the first existing lock that would conflict with l.
  1490. * This implements the F_GETLK command of fcntl().
  1491. */
  1492. int fcntl_getlk(struct file *filp, struct flock __user *l)
  1493. {
  1494. struct file_lock file_lock;
  1495. struct flock flock;
  1496. int error;
  1497. error = -EFAULT;
  1498. if (copy_from_user(&flock, l, sizeof(flock)))
  1499. goto out;
  1500. error = -EINVAL;
  1501. if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
  1502. goto out;
  1503. error = flock_to_posix_lock(filp, &file_lock, &flock);
  1504. if (error)
  1505. goto out;
  1506. error = vfs_test_lock(filp, &file_lock);
  1507. if (error)
  1508. goto out;
  1509. flock.l_type = file_lock.fl_type;
  1510. if (file_lock.fl_type != F_UNLCK) {
  1511. error = posix_lock_to_flock(&flock, &file_lock);
  1512. if (error)
  1513. goto out;
  1514. }
  1515. error = -EFAULT;
  1516. if (!copy_to_user(l, &flock, sizeof(flock)))
  1517. error = 0;
  1518. out:
  1519. return error;
  1520. }
  1521. /**
  1522. * vfs_lock_file - file byte range lock
  1523. * @filp: The file to apply the lock to
  1524. * @cmd: type of locking operation (F_SETLK, F_GETLK, etc.)
  1525. * @fl: The lock to be applied
  1526. * @conf: Place to return a copy of the conflicting lock, if found.
  1527. *
  1528. * A caller that doesn't care about the conflicting lock may pass NULL
  1529. * as the final argument.
  1530. *
  1531. * If the filesystem defines a private ->lock() method, then @conf will
  1532. * be left unchanged; so a caller that cares should initialize it to
  1533. * some acceptable default.
  1534. *
  1535. * To avoid blocking kernel daemons, such as lockd, that need to acquire POSIX
  1536. * locks, the ->lock() interface may return asynchronously, before the lock has
  1537. * been granted or denied by the underlying filesystem, if (and only if)
  1538. * fl_grant is set. Callers expecting ->lock() to return asynchronously
  1539. * will only use F_SETLK, not F_SETLKW; they will set FL_SLEEP if (and only if)
  1540. * the request is for a blocking lock. When ->lock() does return asynchronously,
  1541. * it must return FILE_LOCK_DEFERRED, and call ->fl_grant() when the lock
  1542. * request completes.
  1543. * If the request is for non-blocking lock the file system should return
  1544. * FILE_LOCK_DEFERRED then try to get the lock and call the callback routine
  1545. * with the result. If the request timed out the callback routine will return a
  1546. * nonzero return code and the file system should release the lock. The file
  1547. * system is also responsible to keep a corresponding posix lock when it
  1548. * grants a lock so the VFS can find out which locks are locally held and do
  1549. * the correct lock cleanup when required.
  1550. * The underlying filesystem must not drop the kernel lock or call
  1551. * ->fl_grant() before returning to the caller with a FILE_LOCK_DEFERRED
  1552. * return code.
  1553. */
  1554. int vfs_lock_file(struct file *filp, unsigned int cmd, struct file_lock *fl, struct file_lock *conf)
  1555. {
  1556. if (filp->f_op && filp->f_op->lock)
  1557. return filp->f_op->lock(filp, cmd, fl);
  1558. else
  1559. return posix_lock_file(filp, fl, conf);
  1560. }
  1561. EXPORT_SYMBOL_GPL(vfs_lock_file);
  1562. static int do_lock_file_wait(struct file *filp, unsigned int cmd,
  1563. struct file_lock *fl)
  1564. {
  1565. int error;
  1566. error = security_file_lock(filp, fl->fl_type);
  1567. if (error)
  1568. return error;
  1569. for (;;) {
  1570. error = vfs_lock_file(filp, cmd, fl, NULL);
  1571. if (error != FILE_LOCK_DEFERRED)
  1572. break;
  1573. error = wait_event_interruptible(fl->fl_wait, !fl->fl_next);
  1574. if (!error)
  1575. continue;
  1576. locks_delete_block(fl);
  1577. break;
  1578. }
  1579. return error;
  1580. }
  1581. /* Apply the lock described by l to an open file descriptor.
  1582. * This implements both the F_SETLK and F_SETLKW commands of fcntl().
  1583. */
  1584. int fcntl_setlk(unsigned int fd, struct file *filp, unsigned int cmd,
  1585. struct flock __user *l)
  1586. {
  1587. struct file_lock *file_lock = locks_alloc_lock();
  1588. struct flock flock;
  1589. struct inode *inode;
  1590. struct file *f;
  1591. int error;
  1592. if (file_lock == NULL)
  1593. return -ENOLCK;
  1594. /*
  1595. * This might block, so we do it before checking the inode.
  1596. */
  1597. error = -EFAULT;
  1598. if (copy_from_user(&flock, l, sizeof(flock)))
  1599. goto out;
  1600. inode = filp->f_path.dentry->d_inode;
  1601. /* Don't allow mandatory locks on files that may be memory mapped
  1602. * and shared.
  1603. */
  1604. if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
  1605. error = -EAGAIN;
  1606. goto out;
  1607. }
  1608. again:
  1609. error = flock_to_posix_lock(filp, file_lock, &flock);
  1610. if (error)
  1611. goto out;
  1612. if (cmd == F_SETLKW) {
  1613. file_lock->fl_flags |= FL_SLEEP;
  1614. }
  1615. error = -EBADF;
  1616. switch (flock.l_type) {
  1617. case F_RDLCK:
  1618. if (!(filp->f_mode & FMODE_READ))
  1619. goto out;
  1620. break;
  1621. case F_WRLCK:
  1622. if (!(filp->f_mode & FMODE_WRITE))
  1623. goto out;
  1624. break;
  1625. case F_UNLCK:
  1626. break;
  1627. default:
  1628. error = -EINVAL;
  1629. goto out;
  1630. }
  1631. error = do_lock_file_wait(filp, cmd, file_lock);
  1632. /*
  1633. * Attempt to detect a close/fcntl race and recover by
  1634. * releasing the lock that was just acquired.
  1635. */
  1636. /*
  1637. * we need that spin_lock here - it prevents reordering between
  1638. * update of inode->i_flock and check for it done in close().
  1639. * rcu_read_lock() wouldn't do.
  1640. */
  1641. spin_lock(&current->files->file_lock);
  1642. f = fcheck(fd);
  1643. spin_unlock(&current->files->file_lock);
  1644. if (!error && f != filp && flock.l_type != F_UNLCK) {
  1645. flock.l_type = F_UNLCK;
  1646. goto again;
  1647. }
  1648. out:
  1649. locks_free_lock(file_lock);
  1650. return error;
  1651. }
  1652. #if BITS_PER_LONG == 32
  1653. /* Report the first existing lock that would conflict with l.
  1654. * This implements the F_GETLK command of fcntl().
  1655. */
  1656. int fcntl_getlk64(struct file *filp, struct flock64 __user *l)
  1657. {
  1658. struct file_lock file_lock;
  1659. struct flock64 flock;
  1660. int error;
  1661. error = -EFAULT;
  1662. if (copy_from_user(&flock, l, sizeof(flock)))
  1663. goto out;
  1664. error = -EINVAL;
  1665. if ((flock.l_type != F_RDLCK) && (flock.l_type != F_WRLCK))
  1666. goto out;
  1667. error = flock64_to_posix_lock(filp, &file_lock, &flock);
  1668. if (error)
  1669. goto out;
  1670. error = vfs_test_lock(filp, &file_lock);
  1671. if (error)
  1672. goto out;
  1673. flock.l_type = file_lock.fl_type;
  1674. if (file_lock.fl_type != F_UNLCK)
  1675. posix_lock_to_flock64(&flock, &file_lock);
  1676. error = -EFAULT;
  1677. if (!copy_to_user(l, &flock, sizeof(flock)))
  1678. error = 0;
  1679. out:
  1680. return error;
  1681. }
  1682. /* Apply the lock described by l to an open file descriptor.
  1683. * This implements both the F_SETLK and F_SETLKW commands of fcntl().
  1684. */
  1685. int fcntl_setlk64(unsigned int fd, struct file *filp, unsigned int cmd,
  1686. struct flock64 __user *l)
  1687. {
  1688. struct file_lock *file_lock = locks_alloc_lock();
  1689. struct flock64 flock;
  1690. struct inode *inode;
  1691. struct file *f;
  1692. int error;
  1693. if (file_lock == NULL)
  1694. return -ENOLCK;
  1695. /*
  1696. * This might block, so we do it before checking the inode.
  1697. */
  1698. error = -EFAULT;
  1699. if (copy_from_user(&flock, l, sizeof(flock)))
  1700. goto out;
  1701. inode = filp->f_path.dentry->d_inode;
  1702. /* Don't allow mandatory locks on files that may be memory mapped
  1703. * and shared.
  1704. */
  1705. if (mandatory_lock(inode) && mapping_writably_mapped(filp->f_mapping)) {
  1706. error = -EAGAIN;
  1707. goto out;
  1708. }
  1709. again:
  1710. error = flock64_to_posix_lock(filp, file_lock, &flock);
  1711. if (error)
  1712. goto out;
  1713. if (cmd == F_SETLKW64) {
  1714. file_lock->fl_flags |= FL_SLEEP;
  1715. }
  1716. error = -EBADF;
  1717. switch (flock.l_type) {
  1718. case F_RDLCK:
  1719. if (!(filp->f_mode & FMODE_READ))
  1720. goto out;
  1721. break;
  1722. case F_WRLCK:
  1723. if (!(filp->f_mode & FMODE_WRITE))
  1724. goto out;
  1725. break;
  1726. case F_UNLCK:
  1727. break;
  1728. default:
  1729. error = -EINVAL;
  1730. goto out;
  1731. }
  1732. error = do_lock_file_wait(filp, cmd, file_lock);
  1733. /*
  1734. * Attempt to detect a close/fcntl race and recover by
  1735. * releasing the lock that was just acquired.
  1736. */
  1737. spin_lock(&current->files->file_lock);
  1738. f = fcheck(fd);
  1739. spin_unlock(&current->files->file_lock);
  1740. if (!error && f != filp && flock.l_type != F_UNLCK) {
  1741. flock.l_type = F_UNLCK;
  1742. goto again;
  1743. }
  1744. out:
  1745. locks_free_lock(file_lock);
  1746. return error;
  1747. }
  1748. #endif /* BITS_PER_LONG == 32 */
  1749. /*
  1750. * This function is called when the file is being removed
  1751. * from the task's fd array. POSIX locks belonging to this task
  1752. * are deleted at this time.
  1753. */
  1754. void locks_remove_posix(struct file *filp, fl_owner_t owner)
  1755. {
  1756. struct file_lock lock;
  1757. /*
  1758. * If there are no locks held on this file, we don't need to call
  1759. * posix_lock_file(). Another process could be setting a lock on this
  1760. * file at the same time, but we wouldn't remove that lock anyway.
  1761. */
  1762. if (!filp->f_path.dentry->d_inode->i_flock)
  1763. return;
  1764. lock.fl_type = F_UNLCK;
  1765. lock.fl_flags = FL_POSIX | FL_CLOSE;
  1766. lock.fl_start = 0;
  1767. lock.fl_end = OFFSET_MAX;
  1768. lock.fl_owner = owner;
  1769. lock.fl_pid = current->tgid;
  1770. lock.fl_file = filp;
  1771. lock.fl_ops = NULL;
  1772. lock.fl_lmops = NULL;
  1773. vfs_lock_file(filp, F_SETLK, &lock, NULL);
  1774. if (lock.fl_ops && lock.fl_ops->fl_release_private)
  1775. lock.fl_ops->fl_release_private(&lock);
  1776. }
  1777. EXPORT_SYMBOL(locks_remove_posix);
  1778. /*
  1779. * This function is called on the last close of an open file.
  1780. */
  1781. void locks_remove_flock(struct file *filp)
  1782. {
  1783. struct inode * inode = filp->f_path.dentry->d_inode;
  1784. struct file_lock *fl;
  1785. struct file_lock **before;
  1786. if (!inode->i_flock)
  1787. return;
  1788. if (filp->f_op && filp->f_op->flock) {
  1789. struct file_lock fl = {
  1790. .fl_pid = current->tgid,
  1791. .fl_file = filp,
  1792. .fl_flags = FL_FLOCK,
  1793. .fl_type = F_UNLCK,
  1794. .fl_end = OFFSET_MAX,
  1795. };
  1796. filp->f_op->flock(filp, F_SETLKW, &fl);
  1797. if (fl.fl_ops && fl.fl_ops->fl_release_private)
  1798. fl.fl_ops->fl_release_private(&fl);
  1799. }
  1800. lock_kernel();
  1801. before = &inode->i_flock;
  1802. while ((fl = *before) != NULL) {
  1803. if (fl->fl_file == filp) {
  1804. if (IS_FLOCK(fl)) {
  1805. locks_delete_lock(before);
  1806. continue;
  1807. }
  1808. if (IS_LEASE(fl)) {
  1809. lease_modify(before, F_UNLCK);
  1810. continue;
  1811. }
  1812. /* What? */
  1813. BUG();
  1814. }
  1815. before = &fl->fl_next;
  1816. }
  1817. unlock_kernel();
  1818. }
  1819. /**
  1820. * posix_unblock_lock - stop waiting for a file lock
  1821. * @filp: how the file was opened
  1822. * @waiter: the lock which was waiting
  1823. *
  1824. * lockd needs to block waiting for locks.
  1825. */
  1826. int
  1827. posix_unblock_lock(struct file *filp, struct file_lock *waiter)
  1828. {
  1829. int status = 0;
  1830. lock_kernel();
  1831. if (waiter->fl_next)
  1832. __locks_delete_block(waiter);
  1833. else
  1834. status = -ENOENT;
  1835. unlock_kernel();
  1836. return status;
  1837. }
  1838. EXPORT_SYMBOL(posix_unblock_lock);
  1839. /**
  1840. * vfs_cancel_lock - file byte range unblock lock
  1841. * @filp: The file to apply the unblock to
  1842. * @fl: The lock to be unblocked
  1843. *
  1844. * Used by lock managers to cancel blocked requests
  1845. */
  1846. int vfs_cancel_lock(struct file *filp, struct file_lock *fl)
  1847. {
  1848. if (filp->f_op && filp->f_op->lock)
  1849. return filp->f_op->lock(filp, F_CANCELLK, fl);
  1850. return 0;
  1851. }
  1852. EXPORT_SYMBOL_GPL(vfs_cancel_lock);
  1853. #ifdef CONFIG_PROC_FS
  1854. #include <linux/proc_fs.h>
  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. static const struct seq_operations locks_seq_operations = {
  1948. .start = locks_start,
  1949. .next = locks_next,
  1950. .stop = locks_stop,
  1951. .show = locks_show,
  1952. };
  1953. static int locks_open(struct inode *inode, struct file *filp)
  1954. {
  1955. return seq_open(filp, &locks_seq_operations);
  1956. }
  1957. static const struct file_operations proc_locks_operations = {
  1958. .open = locks_open,
  1959. .read = seq_read,
  1960. .llseek = seq_lseek,
  1961. .release = seq_release,
  1962. };
  1963. static int __init proc_locks_init(void)
  1964. {
  1965. proc_create("locks", 0, NULL, &proc_locks_operations);
  1966. return 0;
  1967. }
  1968. module_init(proc_locks_init);
  1969. #endif
  1970. /**
  1971. * lock_may_read - checks that the region is free of locks
  1972. * @inode: the inode that is being read
  1973. * @start: the first byte to read
  1974. * @len: the number of bytes to read
  1975. *
  1976. * Emulates Windows locking requirements. Whole-file
  1977. * mandatory locks (share modes) can prohibit a read and
  1978. * byte-range POSIX locks can prohibit a read if they overlap.
  1979. *
  1980. * N.B. this function is only ever called
  1981. * from knfsd and ownership of locks is never checked.
  1982. */
  1983. int lock_may_read(struct inode *inode, loff_t start, unsigned long len)
  1984. {
  1985. struct file_lock *fl;
  1986. int result = 1;
  1987. lock_kernel();
  1988. for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
  1989. if (IS_POSIX(fl)) {
  1990. if (fl->fl_type == F_RDLCK)
  1991. continue;
  1992. if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
  1993. continue;
  1994. } else if (IS_FLOCK(fl)) {
  1995. if (!(fl->fl_type & LOCK_MAND))
  1996. continue;
  1997. if (fl->fl_type & LOCK_READ)
  1998. continue;
  1999. } else
  2000. continue;
  2001. result = 0;
  2002. break;
  2003. }
  2004. unlock_kernel();
  2005. return result;
  2006. }
  2007. EXPORT_SYMBOL(lock_may_read);
  2008. /**
  2009. * lock_may_write - checks that the region is free of locks
  2010. * @inode: the inode that is being written
  2011. * @start: the first byte to write
  2012. * @len: the number of bytes to write
  2013. *
  2014. * Emulates Windows locking requirements. Whole-file
  2015. * mandatory locks (share modes) can prohibit a write and
  2016. * byte-range POSIX locks can prohibit a write if they overlap.
  2017. *
  2018. * N.B. this function is only ever called
  2019. * from knfsd and ownership of locks is never checked.
  2020. */
  2021. int lock_may_write(struct inode *inode, loff_t start, unsigned long len)
  2022. {
  2023. struct file_lock *fl;
  2024. int result = 1;
  2025. lock_kernel();
  2026. for (fl = inode->i_flock; fl != NULL; fl = fl->fl_next) {
  2027. if (IS_POSIX(fl)) {
  2028. if ((fl->fl_end < start) || (fl->fl_start > (start + len)))
  2029. continue;
  2030. } else if (IS_FLOCK(fl)) {
  2031. if (!(fl->fl_type & LOCK_MAND))
  2032. continue;
  2033. if (fl->fl_type & LOCK_WRITE)
  2034. continue;
  2035. } else
  2036. continue;
  2037. result = 0;
  2038. break;
  2039. }
  2040. unlock_kernel();
  2041. return result;
  2042. }
  2043. EXPORT_SYMBOL(lock_may_write);
  2044. static int __init filelock_init(void)
  2045. {
  2046. filelock_cache = kmem_cache_create("file_lock_cache",
  2047. sizeof(struct file_lock), 0, SLAB_PANIC,
  2048. init_once);
  2049. return 0;
  2050. }
  2051. core_initcall(filelock_init);