locks.c 59 KB

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