locks.c 58 KB

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