locks.c 58 KB

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