locks.c 59 KB

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