locks.c 59 KB

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