vfs.c 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286
  1. #define MSNFS /* HACK HACK */
  2. /*
  3. * File operations used by nfsd. Some of these have been ripped from
  4. * other parts of the kernel because they weren't exported, others
  5. * are partial duplicates with added or changed functionality.
  6. *
  7. * Note that several functions dget() the dentry upon which they want
  8. * to act, most notably those that create directory entries. Response
  9. * dentry's are dput()'d if necessary in the release callback.
  10. * So if you notice code paths that apparently fail to dput() the
  11. * dentry, don't worry--they have been taken care of.
  12. *
  13. * Copyright (C) 1995-1999 Olaf Kirch <okir@monad.swb.de>
  14. * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp>
  15. */
  16. #include <linux/fs.h>
  17. #include <linux/file.h>
  18. #include <linux/splice.h>
  19. #include <linux/fcntl.h>
  20. #include <linux/namei.h>
  21. #include <linux/delay.h>
  22. #include <linux/fsnotify.h>
  23. #include <linux/posix_acl_xattr.h>
  24. #include <linux/xattr.h>
  25. #include <linux/jhash.h>
  26. #include <linux/ima.h>
  27. #include <linux/slab.h>
  28. #include <asm/uaccess.h>
  29. #include <linux/exportfs.h>
  30. #include <linux/writeback.h>
  31. #ifdef CONFIG_NFSD_V3
  32. #include "xdr3.h"
  33. #endif /* CONFIG_NFSD_V3 */
  34. #ifdef CONFIG_NFSD_V4
  35. #include <linux/nfs4_acl.h>
  36. #include <linux/nfsd_idmap.h>
  37. #endif /* CONFIG_NFSD_V4 */
  38. #include "nfsd.h"
  39. #include "vfs.h"
  40. #define NFSDDBG_FACILITY NFSDDBG_FILEOP
  41. /*
  42. * This is a cache of readahead params that help us choose the proper
  43. * readahead strategy. Initially, we set all readahead parameters to 0
  44. * and let the VFS handle things.
  45. * If you increase the number of cached files very much, you'll need to
  46. * add a hash table here.
  47. */
  48. struct raparms {
  49. struct raparms *p_next;
  50. unsigned int p_count;
  51. ino_t p_ino;
  52. dev_t p_dev;
  53. int p_set;
  54. struct file_ra_state p_ra;
  55. unsigned int p_hindex;
  56. };
  57. struct raparm_hbucket {
  58. struct raparms *pb_head;
  59. spinlock_t pb_lock;
  60. } ____cacheline_aligned_in_smp;
  61. #define RAPARM_HASH_BITS 4
  62. #define RAPARM_HASH_SIZE (1<<RAPARM_HASH_BITS)
  63. #define RAPARM_HASH_MASK (RAPARM_HASH_SIZE-1)
  64. static struct raparm_hbucket raparm_hash[RAPARM_HASH_SIZE];
  65. /*
  66. * Called from nfsd_lookup and encode_dirent. Check if we have crossed
  67. * a mount point.
  68. * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
  69. * or nfs_ok having possibly changed *dpp and *expp
  70. */
  71. int
  72. nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
  73. struct svc_export **expp)
  74. {
  75. struct svc_export *exp = *expp, *exp2 = NULL;
  76. struct dentry *dentry = *dpp;
  77. struct path path = {.mnt = mntget(exp->ex_path.mnt),
  78. .dentry = dget(dentry)};
  79. int err = 0;
  80. while (d_mountpoint(path.dentry) && follow_down(&path))
  81. ;
  82. exp2 = rqst_exp_get_by_name(rqstp, &path);
  83. if (IS_ERR(exp2)) {
  84. err = PTR_ERR(exp2);
  85. /*
  86. * We normally allow NFS clients to continue
  87. * "underneath" a mountpoint that is not exported.
  88. * The exception is V4ROOT, where no traversal is ever
  89. * allowed without an explicit export of the new
  90. * directory.
  91. */
  92. if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
  93. err = 0;
  94. path_put(&path);
  95. goto out;
  96. }
  97. if (nfsd_v4client(rqstp) ||
  98. (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
  99. /* successfully crossed mount point */
  100. /*
  101. * This is subtle: path.dentry is *not* on path.mnt
  102. * at this point. The only reason we are safe is that
  103. * original mnt is pinned down by exp, so we should
  104. * put path *before* putting exp
  105. */
  106. *dpp = path.dentry;
  107. path.dentry = dentry;
  108. *expp = exp2;
  109. exp2 = exp;
  110. }
  111. path_put(&path);
  112. exp_put(exp2);
  113. out:
  114. return err;
  115. }
  116. static void follow_to_parent(struct path *path)
  117. {
  118. struct dentry *dp;
  119. while (path->dentry == path->mnt->mnt_root && follow_up(path))
  120. ;
  121. dp = dget_parent(path->dentry);
  122. dput(path->dentry);
  123. path->dentry = dp;
  124. }
  125. static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
  126. {
  127. struct svc_export *exp2;
  128. struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
  129. .dentry = dget(dparent)};
  130. follow_to_parent(&path);
  131. exp2 = rqst_exp_parent(rqstp, &path);
  132. if (PTR_ERR(exp2) == -ENOENT) {
  133. *dentryp = dget(dparent);
  134. } else if (IS_ERR(exp2)) {
  135. path_put(&path);
  136. return PTR_ERR(exp2);
  137. } else {
  138. *dentryp = dget(path.dentry);
  139. exp_put(*exp);
  140. *exp = exp2;
  141. }
  142. path_put(&path);
  143. return 0;
  144. }
  145. /*
  146. * For nfsd purposes, we treat V4ROOT exports as though there was an
  147. * export at *every* directory.
  148. */
  149. int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
  150. {
  151. if (d_mountpoint(dentry))
  152. return 1;
  153. if (!(exp->ex_flags & NFSEXP_V4ROOT))
  154. return 0;
  155. return dentry->d_inode != NULL;
  156. }
  157. __be32
  158. nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp,
  159. const char *name, unsigned int len,
  160. struct svc_export **exp_ret, struct dentry **dentry_ret)
  161. {
  162. struct svc_export *exp;
  163. struct dentry *dparent;
  164. struct dentry *dentry;
  165. __be32 err;
  166. int host_err;
  167. dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
  168. /* Obtain dentry and export. */
  169. err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
  170. if (err)
  171. return err;
  172. dparent = fhp->fh_dentry;
  173. exp = fhp->fh_export;
  174. exp_get(exp);
  175. /* Lookup the name, but don't follow links */
  176. if (isdotent(name, len)) {
  177. if (len==1)
  178. dentry = dget(dparent);
  179. else if (dparent != exp->ex_path.dentry)
  180. dentry = dget_parent(dparent);
  181. else if (!EX_NOHIDE(exp) && !nfsd_v4client(rqstp))
  182. dentry = dget(dparent); /* .. == . just like at / */
  183. else {
  184. /* checking mountpoint crossing is very different when stepping up */
  185. host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry);
  186. if (host_err)
  187. goto out_nfserr;
  188. }
  189. } else {
  190. fh_lock(fhp);
  191. dentry = lookup_one_len(name, dparent, len);
  192. host_err = PTR_ERR(dentry);
  193. if (IS_ERR(dentry))
  194. goto out_nfserr;
  195. /*
  196. * check if we have crossed a mount point ...
  197. */
  198. if (nfsd_mountpoint(dentry, exp)) {
  199. if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
  200. dput(dentry);
  201. goto out_nfserr;
  202. }
  203. }
  204. }
  205. *dentry_ret = dentry;
  206. *exp_ret = exp;
  207. return 0;
  208. out_nfserr:
  209. exp_put(exp);
  210. return nfserrno(host_err);
  211. }
  212. /*
  213. * Look up one component of a pathname.
  214. * N.B. After this call _both_ fhp and resfh need an fh_put
  215. *
  216. * If the lookup would cross a mountpoint, and the mounted filesystem
  217. * is exported to the client with NFSEXP_NOHIDE, then the lookup is
  218. * accepted as it stands and the mounted directory is
  219. * returned. Otherwise the covered directory is returned.
  220. * NOTE: this mountpoint crossing is not supported properly by all
  221. * clients and is explicitly disallowed for NFSv3
  222. * NeilBrown <neilb@cse.unsw.edu.au>
  223. */
  224. __be32
  225. nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
  226. unsigned int len, struct svc_fh *resfh)
  227. {
  228. struct svc_export *exp;
  229. struct dentry *dentry;
  230. __be32 err;
  231. err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry);
  232. if (err)
  233. return err;
  234. err = check_nfsd_access(exp, rqstp);
  235. if (err)
  236. goto out;
  237. /*
  238. * Note: we compose the file handle now, but as the
  239. * dentry may be negative, it may need to be updated.
  240. */
  241. err = fh_compose(resfh, exp, dentry, fhp);
  242. if (!err && !dentry->d_inode)
  243. err = nfserr_noent;
  244. out:
  245. dput(dentry);
  246. exp_put(exp);
  247. return err;
  248. }
  249. /*
  250. * Commit metadata changes to stable storage.
  251. */
  252. static int
  253. commit_metadata(struct svc_fh *fhp)
  254. {
  255. struct inode *inode = fhp->fh_dentry->d_inode;
  256. const struct export_operations *export_ops = inode->i_sb->s_export_op;
  257. int error = 0;
  258. if (!EX_ISSYNC(fhp->fh_export))
  259. return 0;
  260. if (export_ops->commit_metadata) {
  261. error = export_ops->commit_metadata(inode);
  262. } else {
  263. struct writeback_control wbc = {
  264. .sync_mode = WB_SYNC_ALL,
  265. .nr_to_write = 0, /* metadata only */
  266. };
  267. error = sync_inode(inode, &wbc);
  268. }
  269. return error;
  270. }
  271. /*
  272. * Set various file attributes.
  273. * N.B. After this call fhp needs an fh_put
  274. */
  275. __be32
  276. nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
  277. int check_guard, time_t guardtime)
  278. {
  279. struct dentry *dentry;
  280. struct inode *inode;
  281. int accmode = NFSD_MAY_SATTR;
  282. int ftype = 0;
  283. __be32 err;
  284. int host_err;
  285. int size_change = 0;
  286. if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_SIZE))
  287. accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
  288. if (iap->ia_valid & ATTR_SIZE)
  289. ftype = S_IFREG;
  290. /* Get inode */
  291. err = fh_verify(rqstp, fhp, ftype, accmode);
  292. if (err)
  293. goto out;
  294. dentry = fhp->fh_dentry;
  295. inode = dentry->d_inode;
  296. /* Ignore any mode updates on symlinks */
  297. if (S_ISLNK(inode->i_mode))
  298. iap->ia_valid &= ~ATTR_MODE;
  299. if (!iap->ia_valid)
  300. goto out;
  301. /*
  302. * NFSv2 does not differentiate between "set-[ac]time-to-now"
  303. * which only requires access, and "set-[ac]time-to-X" which
  304. * requires ownership.
  305. * So if it looks like it might be "set both to the same time which
  306. * is close to now", and if inode_change_ok fails, then we
  307. * convert to "set to now" instead of "set to explicit time"
  308. *
  309. * We only call inode_change_ok as the last test as technically
  310. * it is not an interface that we should be using. It is only
  311. * valid if the filesystem does not define it's own i_op->setattr.
  312. */
  313. #define BOTH_TIME_SET (ATTR_ATIME_SET | ATTR_MTIME_SET)
  314. #define MAX_TOUCH_TIME_ERROR (30*60)
  315. if ((iap->ia_valid & BOTH_TIME_SET) == BOTH_TIME_SET &&
  316. iap->ia_mtime.tv_sec == iap->ia_atime.tv_sec) {
  317. /*
  318. * Looks probable.
  319. *
  320. * Now just make sure time is in the right ballpark.
  321. * Solaris, at least, doesn't seem to care what the time
  322. * request is. We require it be within 30 minutes of now.
  323. */
  324. time_t delta = iap->ia_atime.tv_sec - get_seconds();
  325. if (delta < 0)
  326. delta = -delta;
  327. if (delta < MAX_TOUCH_TIME_ERROR &&
  328. inode_change_ok(inode, iap) != 0) {
  329. /*
  330. * Turn off ATTR_[AM]TIME_SET but leave ATTR_[AM]TIME.
  331. * This will cause notify_change to set these times
  332. * to "now"
  333. */
  334. iap->ia_valid &= ~BOTH_TIME_SET;
  335. }
  336. }
  337. /*
  338. * The size case is special.
  339. * It changes the file as well as the attributes.
  340. */
  341. if (iap->ia_valid & ATTR_SIZE) {
  342. if (iap->ia_size < inode->i_size) {
  343. err = nfsd_permission(rqstp, fhp->fh_export, dentry,
  344. NFSD_MAY_TRUNC|NFSD_MAY_OWNER_OVERRIDE);
  345. if (err)
  346. goto out;
  347. }
  348. /*
  349. * If we are changing the size of the file, then
  350. * we need to break all leases.
  351. */
  352. host_err = break_lease(inode, O_WRONLY | O_NONBLOCK);
  353. if (host_err == -EWOULDBLOCK)
  354. host_err = -ETIMEDOUT;
  355. if (host_err) /* ENOMEM or EWOULDBLOCK */
  356. goto out_nfserr;
  357. host_err = get_write_access(inode);
  358. if (host_err)
  359. goto out_nfserr;
  360. size_change = 1;
  361. host_err = locks_verify_truncate(inode, NULL, iap->ia_size);
  362. if (host_err) {
  363. put_write_access(inode);
  364. goto out_nfserr;
  365. }
  366. }
  367. /* sanitize the mode change */
  368. if (iap->ia_valid & ATTR_MODE) {
  369. iap->ia_mode &= S_IALLUGO;
  370. iap->ia_mode |= (inode->i_mode & ~S_IALLUGO);
  371. }
  372. /* Revoke setuid/setgid on chown */
  373. if (!S_ISDIR(inode->i_mode) &&
  374. (((iap->ia_valid & ATTR_UID) && iap->ia_uid != inode->i_uid) ||
  375. ((iap->ia_valid & ATTR_GID) && iap->ia_gid != inode->i_gid))) {
  376. iap->ia_valid |= ATTR_KILL_PRIV;
  377. if (iap->ia_valid & ATTR_MODE) {
  378. /* we're setting mode too, just clear the s*id bits */
  379. iap->ia_mode &= ~S_ISUID;
  380. if (iap->ia_mode & S_IXGRP)
  381. iap->ia_mode &= ~S_ISGID;
  382. } else {
  383. /* set ATTR_KILL_* bits and let VFS handle it */
  384. iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID);
  385. }
  386. }
  387. /* Change the attributes. */
  388. iap->ia_valid |= ATTR_CTIME;
  389. err = nfserr_notsync;
  390. if (!check_guard || guardtime == inode->i_ctime.tv_sec) {
  391. fh_lock(fhp);
  392. host_err = notify_change(dentry, iap);
  393. err = nfserrno(host_err);
  394. fh_unlock(fhp);
  395. }
  396. if (size_change)
  397. put_write_access(inode);
  398. if (!err)
  399. commit_metadata(fhp);
  400. out:
  401. return err;
  402. out_nfserr:
  403. err = nfserrno(host_err);
  404. goto out;
  405. }
  406. #if defined(CONFIG_NFSD_V2_ACL) || \
  407. defined(CONFIG_NFSD_V3_ACL) || \
  408. defined(CONFIG_NFSD_V4)
  409. static ssize_t nfsd_getxattr(struct dentry *dentry, char *key, void **buf)
  410. {
  411. ssize_t buflen;
  412. ssize_t ret;
  413. buflen = vfs_getxattr(dentry, key, NULL, 0);
  414. if (buflen <= 0)
  415. return buflen;
  416. *buf = kmalloc(buflen, GFP_KERNEL);
  417. if (!*buf)
  418. return -ENOMEM;
  419. ret = vfs_getxattr(dentry, key, *buf, buflen);
  420. if (ret < 0)
  421. kfree(*buf);
  422. return ret;
  423. }
  424. #endif
  425. #if defined(CONFIG_NFSD_V4)
  426. static int
  427. set_nfsv4_acl_one(struct dentry *dentry, struct posix_acl *pacl, char *key)
  428. {
  429. int len;
  430. size_t buflen;
  431. char *buf = NULL;
  432. int error = 0;
  433. buflen = posix_acl_xattr_size(pacl->a_count);
  434. buf = kmalloc(buflen, GFP_KERNEL);
  435. error = -ENOMEM;
  436. if (buf == NULL)
  437. goto out;
  438. len = posix_acl_to_xattr(pacl, buf, buflen);
  439. if (len < 0) {
  440. error = len;
  441. goto out;
  442. }
  443. error = vfs_setxattr(dentry, key, buf, len, 0);
  444. out:
  445. kfree(buf);
  446. return error;
  447. }
  448. __be32
  449. nfsd4_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
  450. struct nfs4_acl *acl)
  451. {
  452. __be32 error;
  453. int host_error;
  454. struct dentry *dentry;
  455. struct inode *inode;
  456. struct posix_acl *pacl = NULL, *dpacl = NULL;
  457. unsigned int flags = 0;
  458. /* Get inode */
  459. error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
  460. if (error)
  461. return error;
  462. dentry = fhp->fh_dentry;
  463. inode = dentry->d_inode;
  464. if (S_ISDIR(inode->i_mode))
  465. flags = NFS4_ACL_DIR;
  466. host_error = nfs4_acl_nfsv4_to_posix(acl, &pacl, &dpacl, flags);
  467. if (host_error == -EINVAL) {
  468. return nfserr_attrnotsupp;
  469. } else if (host_error < 0)
  470. goto out_nfserr;
  471. host_error = set_nfsv4_acl_one(dentry, pacl, POSIX_ACL_XATTR_ACCESS);
  472. if (host_error < 0)
  473. goto out_release;
  474. if (S_ISDIR(inode->i_mode))
  475. host_error = set_nfsv4_acl_one(dentry, dpacl, POSIX_ACL_XATTR_DEFAULT);
  476. out_release:
  477. posix_acl_release(pacl);
  478. posix_acl_release(dpacl);
  479. out_nfserr:
  480. if (host_error == -EOPNOTSUPP)
  481. return nfserr_attrnotsupp;
  482. else
  483. return nfserrno(host_error);
  484. }
  485. static struct posix_acl *
  486. _get_posix_acl(struct dentry *dentry, char *key)
  487. {
  488. void *buf = NULL;
  489. struct posix_acl *pacl = NULL;
  490. int buflen;
  491. buflen = nfsd_getxattr(dentry, key, &buf);
  492. if (!buflen)
  493. buflen = -ENODATA;
  494. if (buflen <= 0)
  495. return ERR_PTR(buflen);
  496. pacl = posix_acl_from_xattr(buf, buflen);
  497. kfree(buf);
  498. return pacl;
  499. }
  500. int
  501. nfsd4_get_nfs4_acl(struct svc_rqst *rqstp, struct dentry *dentry, struct nfs4_acl **acl)
  502. {
  503. struct inode *inode = dentry->d_inode;
  504. int error = 0;
  505. struct posix_acl *pacl = NULL, *dpacl = NULL;
  506. unsigned int flags = 0;
  507. pacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_ACCESS);
  508. if (IS_ERR(pacl) && PTR_ERR(pacl) == -ENODATA)
  509. pacl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
  510. if (IS_ERR(pacl)) {
  511. error = PTR_ERR(pacl);
  512. pacl = NULL;
  513. goto out;
  514. }
  515. if (S_ISDIR(inode->i_mode)) {
  516. dpacl = _get_posix_acl(dentry, POSIX_ACL_XATTR_DEFAULT);
  517. if (IS_ERR(dpacl) && PTR_ERR(dpacl) == -ENODATA)
  518. dpacl = NULL;
  519. else if (IS_ERR(dpacl)) {
  520. error = PTR_ERR(dpacl);
  521. dpacl = NULL;
  522. goto out;
  523. }
  524. flags = NFS4_ACL_DIR;
  525. }
  526. *acl = nfs4_acl_posix_to_nfsv4(pacl, dpacl, flags);
  527. if (IS_ERR(*acl)) {
  528. error = PTR_ERR(*acl);
  529. *acl = NULL;
  530. }
  531. out:
  532. posix_acl_release(pacl);
  533. posix_acl_release(dpacl);
  534. return error;
  535. }
  536. #endif /* defined(CONFIG_NFSD_V4) */
  537. #ifdef CONFIG_NFSD_V3
  538. /*
  539. * Check server access rights to a file system object
  540. */
  541. struct accessmap {
  542. u32 access;
  543. int how;
  544. };
  545. static struct accessmap nfs3_regaccess[] = {
  546. { NFS3_ACCESS_READ, NFSD_MAY_READ },
  547. { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
  548. { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
  549. { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
  550. { 0, 0 }
  551. };
  552. static struct accessmap nfs3_diraccess[] = {
  553. { NFS3_ACCESS_READ, NFSD_MAY_READ },
  554. { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
  555. { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
  556. { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
  557. { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
  558. { 0, 0 }
  559. };
  560. static struct accessmap nfs3_anyaccess[] = {
  561. /* Some clients - Solaris 2.6 at least, make an access call
  562. * to the server to check for access for things like /dev/null
  563. * (which really, the server doesn't care about). So
  564. * We provide simple access checking for them, looking
  565. * mainly at mode bits, and we make sure to ignore read-only
  566. * filesystem checks
  567. */
  568. { NFS3_ACCESS_READ, NFSD_MAY_READ },
  569. { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
  570. { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
  571. { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
  572. { 0, 0 }
  573. };
  574. __be32
  575. nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
  576. {
  577. struct accessmap *map;
  578. struct svc_export *export;
  579. struct dentry *dentry;
  580. u32 query, result = 0, sresult = 0;
  581. __be32 error;
  582. error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
  583. if (error)
  584. goto out;
  585. export = fhp->fh_export;
  586. dentry = fhp->fh_dentry;
  587. if (S_ISREG(dentry->d_inode->i_mode))
  588. map = nfs3_regaccess;
  589. else if (S_ISDIR(dentry->d_inode->i_mode))
  590. map = nfs3_diraccess;
  591. else
  592. map = nfs3_anyaccess;
  593. query = *access;
  594. for (; map->access; map++) {
  595. if (map->access & query) {
  596. __be32 err2;
  597. sresult |= map->access;
  598. err2 = nfsd_permission(rqstp, export, dentry, map->how);
  599. switch (err2) {
  600. case nfs_ok:
  601. result |= map->access;
  602. break;
  603. /* the following error codes just mean the access was not allowed,
  604. * rather than an error occurred */
  605. case nfserr_rofs:
  606. case nfserr_acces:
  607. case nfserr_perm:
  608. /* simply don't "or" in the access bit. */
  609. break;
  610. default:
  611. error = err2;
  612. goto out;
  613. }
  614. }
  615. }
  616. *access = result;
  617. if (supported)
  618. *supported = sresult;
  619. out:
  620. return error;
  621. }
  622. #endif /* CONFIG_NFSD_V3 */
  623. /*
  624. * Open an existing file or directory.
  625. * The access argument indicates the type of open (read/write/lock)
  626. * N.B. After this call fhp needs an fh_put
  627. */
  628. __be32
  629. nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
  630. int access, struct file **filp)
  631. {
  632. struct dentry *dentry;
  633. struct inode *inode;
  634. int flags = O_RDONLY|O_LARGEFILE;
  635. __be32 err;
  636. int host_err = 0;
  637. validate_process_creds();
  638. /*
  639. * If we get here, then the client has already done an "open",
  640. * and (hopefully) checked permission - so allow OWNER_OVERRIDE
  641. * in case a chmod has now revoked permission.
  642. */
  643. err = fh_verify(rqstp, fhp, type, access | NFSD_MAY_OWNER_OVERRIDE);
  644. if (err)
  645. goto out;
  646. dentry = fhp->fh_dentry;
  647. inode = dentry->d_inode;
  648. /* Disallow write access to files with the append-only bit set
  649. * or any access when mandatory locking enabled
  650. */
  651. err = nfserr_perm;
  652. if (IS_APPEND(inode) && (access & NFSD_MAY_WRITE))
  653. goto out;
  654. /*
  655. * We must ignore files (but only files) which might have mandatory
  656. * locks on them because there is no way to know if the accesser has
  657. * the lock.
  658. */
  659. if (S_ISREG((inode)->i_mode) && mandatory_lock(inode))
  660. goto out;
  661. if (!inode->i_fop)
  662. goto out;
  663. /*
  664. * Check to see if there are any leases on this file.
  665. * This may block while leases are broken.
  666. */
  667. if (!(access & NFSD_MAY_NOT_BREAK_LEASE))
  668. host_err = break_lease(inode, O_NONBLOCK | ((access & NFSD_MAY_WRITE) ? O_WRONLY : 0));
  669. if (host_err == -EWOULDBLOCK)
  670. host_err = -ETIMEDOUT;
  671. if (host_err) /* NOMEM or WOULDBLOCK */
  672. goto out_nfserr;
  673. if (access & NFSD_MAY_WRITE) {
  674. if (access & NFSD_MAY_READ)
  675. flags = O_RDWR|O_LARGEFILE;
  676. else
  677. flags = O_WRONLY|O_LARGEFILE;
  678. }
  679. *filp = dentry_open(dget(dentry), mntget(fhp->fh_export->ex_path.mnt),
  680. flags, current_cred());
  681. if (IS_ERR(*filp))
  682. host_err = PTR_ERR(*filp);
  683. else
  684. host_err = ima_file_check(*filp, access);
  685. out_nfserr:
  686. err = nfserrno(host_err);
  687. out:
  688. validate_process_creds();
  689. return err;
  690. }
  691. /*
  692. * Close a file.
  693. */
  694. void
  695. nfsd_close(struct file *filp)
  696. {
  697. fput(filp);
  698. }
  699. /*
  700. * Obtain the readahead parameters for the file
  701. * specified by (dev, ino).
  702. */
  703. static inline struct raparms *
  704. nfsd_get_raparms(dev_t dev, ino_t ino)
  705. {
  706. struct raparms *ra, **rap, **frap = NULL;
  707. int depth = 0;
  708. unsigned int hash;
  709. struct raparm_hbucket *rab;
  710. hash = jhash_2words(dev, ino, 0xfeedbeef) & RAPARM_HASH_MASK;
  711. rab = &raparm_hash[hash];
  712. spin_lock(&rab->pb_lock);
  713. for (rap = &rab->pb_head; (ra = *rap); rap = &ra->p_next) {
  714. if (ra->p_ino == ino && ra->p_dev == dev)
  715. goto found;
  716. depth++;
  717. if (ra->p_count == 0)
  718. frap = rap;
  719. }
  720. depth = nfsdstats.ra_size*11/10;
  721. if (!frap) {
  722. spin_unlock(&rab->pb_lock);
  723. return NULL;
  724. }
  725. rap = frap;
  726. ra = *frap;
  727. ra->p_dev = dev;
  728. ra->p_ino = ino;
  729. ra->p_set = 0;
  730. ra->p_hindex = hash;
  731. found:
  732. if (rap != &rab->pb_head) {
  733. *rap = ra->p_next;
  734. ra->p_next = rab->pb_head;
  735. rab->pb_head = ra;
  736. }
  737. ra->p_count++;
  738. nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
  739. spin_unlock(&rab->pb_lock);
  740. return ra;
  741. }
  742. /*
  743. * Grab and keep cached pages associated with a file in the svc_rqst
  744. * so that they can be passed to the network sendmsg/sendpage routines
  745. * directly. They will be released after the sending has completed.
  746. */
  747. static int
  748. nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
  749. struct splice_desc *sd)
  750. {
  751. struct svc_rqst *rqstp = sd->u.data;
  752. struct page **pp = rqstp->rq_respages + rqstp->rq_resused;
  753. struct page *page = buf->page;
  754. size_t size;
  755. int ret;
  756. ret = buf->ops->confirm(pipe, buf);
  757. if (unlikely(ret))
  758. return ret;
  759. size = sd->len;
  760. if (rqstp->rq_res.page_len == 0) {
  761. get_page(page);
  762. put_page(*pp);
  763. *pp = page;
  764. rqstp->rq_resused++;
  765. rqstp->rq_res.page_base = buf->offset;
  766. rqstp->rq_res.page_len = size;
  767. } else if (page != pp[-1]) {
  768. get_page(page);
  769. if (*pp)
  770. put_page(*pp);
  771. *pp = page;
  772. rqstp->rq_resused++;
  773. rqstp->rq_res.page_len += size;
  774. } else
  775. rqstp->rq_res.page_len += size;
  776. return size;
  777. }
  778. static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
  779. struct splice_desc *sd)
  780. {
  781. return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
  782. }
  783. static inline int svc_msnfs(struct svc_fh *ffhp)
  784. {
  785. #ifdef MSNFS
  786. return (ffhp->fh_export->ex_flags & NFSEXP_MSNFS);
  787. #else
  788. return 0;
  789. #endif
  790. }
  791. static __be32
  792. nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
  793. loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
  794. {
  795. struct inode *inode;
  796. mm_segment_t oldfs;
  797. __be32 err;
  798. int host_err;
  799. err = nfserr_perm;
  800. inode = file->f_path.dentry->d_inode;
  801. if (svc_msnfs(fhp) && !lock_may_read(inode, offset, *count))
  802. goto out;
  803. if (file->f_op->splice_read && rqstp->rq_splice_ok) {
  804. struct splice_desc sd = {
  805. .len = 0,
  806. .total_len = *count,
  807. .pos = offset,
  808. .u.data = rqstp,
  809. };
  810. rqstp->rq_resused = 1;
  811. host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
  812. } else {
  813. oldfs = get_fs();
  814. set_fs(KERNEL_DS);
  815. host_err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset);
  816. set_fs(oldfs);
  817. }
  818. if (host_err >= 0) {
  819. nfsdstats.io_read += host_err;
  820. *count = host_err;
  821. err = 0;
  822. fsnotify_access(file);
  823. } else
  824. err = nfserrno(host_err);
  825. out:
  826. return err;
  827. }
  828. static void kill_suid(struct dentry *dentry)
  829. {
  830. struct iattr ia;
  831. ia.ia_valid = ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
  832. mutex_lock(&dentry->d_inode->i_mutex);
  833. notify_change(dentry, &ia);
  834. mutex_unlock(&dentry->d_inode->i_mutex);
  835. }
  836. /*
  837. * Gathered writes: If another process is currently writing to the file,
  838. * there's a high chance this is another nfsd (triggered by a bulk write
  839. * from a client's biod). Rather than syncing the file with each write
  840. * request, we sleep for 10 msec.
  841. *
  842. * I don't know if this roughly approximates C. Juszak's idea of
  843. * gathered writes, but it's a nice and simple solution (IMHO), and it
  844. * seems to work:-)
  845. *
  846. * Note: we do this only in the NFSv2 case, since v3 and higher have a
  847. * better tool (separate unstable writes and commits) for solving this
  848. * problem.
  849. */
  850. static int wait_for_concurrent_writes(struct file *file)
  851. {
  852. struct inode *inode = file->f_path.dentry->d_inode;
  853. static ino_t last_ino;
  854. static dev_t last_dev;
  855. int err = 0;
  856. if (atomic_read(&inode->i_writecount) > 1
  857. || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
  858. dprintk("nfsd: write defer %d\n", task_pid_nr(current));
  859. msleep(10);
  860. dprintk("nfsd: write resume %d\n", task_pid_nr(current));
  861. }
  862. if (inode->i_state & I_DIRTY) {
  863. dprintk("nfsd: write sync %d\n", task_pid_nr(current));
  864. err = vfs_fsync(file, 0);
  865. }
  866. last_ino = inode->i_ino;
  867. last_dev = inode->i_sb->s_dev;
  868. return err;
  869. }
  870. static __be32
  871. nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
  872. loff_t offset, struct kvec *vec, int vlen,
  873. unsigned long *cnt, int *stablep)
  874. {
  875. struct svc_export *exp;
  876. struct dentry *dentry;
  877. struct inode *inode;
  878. mm_segment_t oldfs;
  879. __be32 err = 0;
  880. int host_err;
  881. int stable = *stablep;
  882. int use_wgather;
  883. #ifdef MSNFS
  884. err = nfserr_perm;
  885. if ((fhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
  886. (!lock_may_write(file->f_path.dentry->d_inode, offset, *cnt)))
  887. goto out;
  888. #endif
  889. dentry = file->f_path.dentry;
  890. inode = dentry->d_inode;
  891. exp = fhp->fh_export;
  892. /*
  893. * Request sync writes if
  894. * - the sync export option has been set, or
  895. * - the client requested O_SYNC behavior (NFSv3 feature).
  896. * - The file system doesn't support fsync().
  897. * When NFSv2 gathered writes have been configured for this volume,
  898. * flushing the data to disk is handled separately below.
  899. */
  900. use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
  901. if (!file->f_op->fsync) {/* COMMIT3 cannot work */
  902. stable = 2;
  903. *stablep = 2; /* FILE_SYNC */
  904. }
  905. if (!EX_ISSYNC(exp))
  906. stable = 0;
  907. if (stable && !use_wgather) {
  908. spin_lock(&file->f_lock);
  909. file->f_flags |= O_SYNC;
  910. spin_unlock(&file->f_lock);
  911. }
  912. /* Write the data. */
  913. oldfs = get_fs(); set_fs(KERNEL_DS);
  914. host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &offset);
  915. set_fs(oldfs);
  916. if (host_err < 0)
  917. goto out_nfserr;
  918. *cnt = host_err;
  919. nfsdstats.io_write += host_err;
  920. fsnotify_modify(file);
  921. /* clear setuid/setgid flag after write */
  922. if (inode->i_mode & (S_ISUID | S_ISGID))
  923. kill_suid(dentry);
  924. if (stable && use_wgather)
  925. host_err = wait_for_concurrent_writes(file);
  926. out_nfserr:
  927. dprintk("nfsd: write complete host_err=%d\n", host_err);
  928. if (host_err >= 0)
  929. err = 0;
  930. else
  931. err = nfserrno(host_err);
  932. out:
  933. return err;
  934. }
  935. /*
  936. * Read data from a file. count must contain the requested read count
  937. * on entry. On return, *count contains the number of bytes actually read.
  938. * N.B. After this call fhp needs an fh_put
  939. */
  940. __be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
  941. loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
  942. {
  943. struct file *file;
  944. struct inode *inode;
  945. struct raparms *ra;
  946. __be32 err;
  947. err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
  948. if (err)
  949. return err;
  950. inode = file->f_path.dentry->d_inode;
  951. /* Get readahead parameters */
  952. ra = nfsd_get_raparms(inode->i_sb->s_dev, inode->i_ino);
  953. if (ra && ra->p_set)
  954. file->f_ra = ra->p_ra;
  955. err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
  956. /* Write back readahead params */
  957. if (ra) {
  958. struct raparm_hbucket *rab = &raparm_hash[ra->p_hindex];
  959. spin_lock(&rab->pb_lock);
  960. ra->p_ra = file->f_ra;
  961. ra->p_set = 1;
  962. ra->p_count--;
  963. spin_unlock(&rab->pb_lock);
  964. }
  965. nfsd_close(file);
  966. return err;
  967. }
  968. /* As above, but use the provided file descriptor. */
  969. __be32
  970. nfsd_read_file(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
  971. loff_t offset, struct kvec *vec, int vlen,
  972. unsigned long *count)
  973. {
  974. __be32 err;
  975. if (file) {
  976. err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
  977. NFSD_MAY_READ|NFSD_MAY_OWNER_OVERRIDE);
  978. if (err)
  979. goto out;
  980. err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
  981. } else /* Note file may still be NULL in NFSv4 special stateid case: */
  982. err = nfsd_read(rqstp, fhp, offset, vec, vlen, count);
  983. out:
  984. return err;
  985. }
  986. /*
  987. * Write data to a file.
  988. * The stable flag requests synchronous writes.
  989. * N.B. After this call fhp needs an fh_put
  990. */
  991. __be32
  992. nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
  993. loff_t offset, struct kvec *vec, int vlen, unsigned long *cnt,
  994. int *stablep)
  995. {
  996. __be32 err = 0;
  997. if (file) {
  998. err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
  999. NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE);
  1000. if (err)
  1001. goto out;
  1002. err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt,
  1003. stablep);
  1004. } else {
  1005. err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
  1006. if (err)
  1007. goto out;
  1008. if (cnt)
  1009. err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen,
  1010. cnt, stablep);
  1011. nfsd_close(file);
  1012. }
  1013. out:
  1014. return err;
  1015. }
  1016. #ifdef CONFIG_NFSD_V3
  1017. /*
  1018. * Commit all pending writes to stable storage.
  1019. *
  1020. * Note: we only guarantee that data that lies within the range specified
  1021. * by the 'offset' and 'count' parameters will be synced.
  1022. *
  1023. * Unfortunately we cannot lock the file to make sure we return full WCC
  1024. * data to the client, as locking happens lower down in the filesystem.
  1025. */
  1026. __be32
  1027. nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
  1028. loff_t offset, unsigned long count)
  1029. {
  1030. struct file *file;
  1031. loff_t end = LLONG_MAX;
  1032. __be32 err = nfserr_inval;
  1033. if (offset < 0)
  1034. goto out;
  1035. if (count != 0) {
  1036. end = offset + (loff_t)count - 1;
  1037. if (end < offset)
  1038. goto out;
  1039. }
  1040. err = nfsd_open(rqstp, fhp, S_IFREG,
  1041. NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &file);
  1042. if (err)
  1043. goto out;
  1044. if (EX_ISSYNC(fhp->fh_export)) {
  1045. int err2 = vfs_fsync_range(file, offset, end, 0);
  1046. if (err2 != -EINVAL)
  1047. err = nfserrno(err2);
  1048. else
  1049. err = nfserr_notsupp;
  1050. }
  1051. nfsd_close(file);
  1052. out:
  1053. return err;
  1054. }
  1055. #endif /* CONFIG_NFSD_V3 */
  1056. static __be32
  1057. nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
  1058. struct iattr *iap)
  1059. {
  1060. /*
  1061. * Mode has already been set earlier in create:
  1062. */
  1063. iap->ia_valid &= ~ATTR_MODE;
  1064. /*
  1065. * Setting uid/gid works only for root. Irix appears to
  1066. * send along the gid on create when it tries to implement
  1067. * setgid directories via NFS:
  1068. */
  1069. if (current_fsuid() != 0)
  1070. iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
  1071. if (iap->ia_valid)
  1072. return nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
  1073. return 0;
  1074. }
  1075. /* HPUX client sometimes creates a file in mode 000, and sets size to 0.
  1076. * setting size to 0 may fail for some specific file systems by the permission
  1077. * checking which requires WRITE permission but the mode is 000.
  1078. * we ignore the resizing(to 0) on the just new created file, since the size is
  1079. * 0 after file created.
  1080. *
  1081. * call this only after vfs_create() is called.
  1082. * */
  1083. static void
  1084. nfsd_check_ignore_resizing(struct iattr *iap)
  1085. {
  1086. if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
  1087. iap->ia_valid &= ~ATTR_SIZE;
  1088. }
  1089. /*
  1090. * Create a file (regular, directory, device, fifo); UNIX sockets
  1091. * not yet implemented.
  1092. * If the response fh has been verified, the parent directory should
  1093. * already be locked. Note that the parent directory is left locked.
  1094. *
  1095. * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
  1096. */
  1097. __be32
  1098. nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
  1099. char *fname, int flen, struct iattr *iap,
  1100. int type, dev_t rdev, struct svc_fh *resfhp)
  1101. {
  1102. struct dentry *dentry, *dchild = NULL;
  1103. struct inode *dirp;
  1104. __be32 err;
  1105. __be32 err2;
  1106. int host_err;
  1107. err = nfserr_perm;
  1108. if (!flen)
  1109. goto out;
  1110. err = nfserr_exist;
  1111. if (isdotent(fname, flen))
  1112. goto out;
  1113. err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
  1114. if (err)
  1115. goto out;
  1116. dentry = fhp->fh_dentry;
  1117. dirp = dentry->d_inode;
  1118. err = nfserr_notdir;
  1119. if (!dirp->i_op->lookup)
  1120. goto out;
  1121. /*
  1122. * Check whether the response file handle has been verified yet.
  1123. * If it has, the parent directory should already be locked.
  1124. */
  1125. if (!resfhp->fh_dentry) {
  1126. /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
  1127. fh_lock_nested(fhp, I_MUTEX_PARENT);
  1128. dchild = lookup_one_len(fname, dentry, flen);
  1129. host_err = PTR_ERR(dchild);
  1130. if (IS_ERR(dchild))
  1131. goto out_nfserr;
  1132. err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
  1133. if (err)
  1134. goto out;
  1135. } else {
  1136. /* called from nfsd_proc_create */
  1137. dchild = dget(resfhp->fh_dentry);
  1138. if (!fhp->fh_locked) {
  1139. /* not actually possible */
  1140. printk(KERN_ERR
  1141. "nfsd_create: parent %s/%s not locked!\n",
  1142. dentry->d_parent->d_name.name,
  1143. dentry->d_name.name);
  1144. err = nfserr_io;
  1145. goto out;
  1146. }
  1147. }
  1148. /*
  1149. * Make sure the child dentry is still negative ...
  1150. */
  1151. err = nfserr_exist;
  1152. if (dchild->d_inode) {
  1153. dprintk("nfsd_create: dentry %s/%s not negative!\n",
  1154. dentry->d_name.name, dchild->d_name.name);
  1155. goto out;
  1156. }
  1157. if (!(iap->ia_valid & ATTR_MODE))
  1158. iap->ia_mode = 0;
  1159. iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
  1160. err = nfserr_inval;
  1161. if (!S_ISREG(type) && !S_ISDIR(type) && !special_file(type)) {
  1162. printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
  1163. type);
  1164. goto out;
  1165. }
  1166. host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
  1167. if (host_err)
  1168. goto out_nfserr;
  1169. /*
  1170. * Get the dir op function pointer.
  1171. */
  1172. err = 0;
  1173. switch (type) {
  1174. case S_IFREG:
  1175. host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
  1176. if (!host_err)
  1177. nfsd_check_ignore_resizing(iap);
  1178. break;
  1179. case S_IFDIR:
  1180. host_err = vfs_mkdir(dirp, dchild, iap->ia_mode);
  1181. break;
  1182. case S_IFCHR:
  1183. case S_IFBLK:
  1184. case S_IFIFO:
  1185. case S_IFSOCK:
  1186. host_err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
  1187. break;
  1188. }
  1189. if (host_err < 0) {
  1190. mnt_drop_write(fhp->fh_export->ex_path.mnt);
  1191. goto out_nfserr;
  1192. }
  1193. err = nfsd_create_setattr(rqstp, resfhp, iap);
  1194. /*
  1195. * nfsd_setattr already committed the child. Transactional filesystems
  1196. * had a chance to commit changes for both parent and child
  1197. * simultaneously making the following commit_metadata a noop.
  1198. */
  1199. err2 = nfserrno(commit_metadata(fhp));
  1200. if (err2)
  1201. err = err2;
  1202. mnt_drop_write(fhp->fh_export->ex_path.mnt);
  1203. /*
  1204. * Update the file handle to get the new inode info.
  1205. */
  1206. if (!err)
  1207. err = fh_update(resfhp);
  1208. out:
  1209. if (dchild && !IS_ERR(dchild))
  1210. dput(dchild);
  1211. return err;
  1212. out_nfserr:
  1213. err = nfserrno(host_err);
  1214. goto out;
  1215. }
  1216. #ifdef CONFIG_NFSD_V3
  1217. /*
  1218. * NFSv3 version of nfsd_create
  1219. */
  1220. __be32
  1221. nfsd_create_v3(struct svc_rqst *rqstp, struct svc_fh *fhp,
  1222. char *fname, int flen, struct iattr *iap,
  1223. struct svc_fh *resfhp, int createmode, u32 *verifier,
  1224. int *truncp, int *created)
  1225. {
  1226. struct dentry *dentry, *dchild = NULL;
  1227. struct inode *dirp;
  1228. __be32 err;
  1229. int host_err;
  1230. __u32 v_mtime=0, v_atime=0;
  1231. err = nfserr_perm;
  1232. if (!flen)
  1233. goto out;
  1234. err = nfserr_exist;
  1235. if (isdotent(fname, flen))
  1236. goto out;
  1237. if (!(iap->ia_valid & ATTR_MODE))
  1238. iap->ia_mode = 0;
  1239. err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
  1240. if (err)
  1241. goto out;
  1242. dentry = fhp->fh_dentry;
  1243. dirp = dentry->d_inode;
  1244. /* Get all the sanity checks out of the way before
  1245. * we lock the parent. */
  1246. err = nfserr_notdir;
  1247. if (!dirp->i_op->lookup)
  1248. goto out;
  1249. fh_lock_nested(fhp, I_MUTEX_PARENT);
  1250. /*
  1251. * Compose the response file handle.
  1252. */
  1253. dchild = lookup_one_len(fname, dentry, flen);
  1254. host_err = PTR_ERR(dchild);
  1255. if (IS_ERR(dchild))
  1256. goto out_nfserr;
  1257. err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
  1258. if (err)
  1259. goto out;
  1260. if (createmode == NFS3_CREATE_EXCLUSIVE) {
  1261. /* solaris7 gets confused (bugid 4218508) if these have
  1262. * the high bit set, so just clear the high bits. If this is
  1263. * ever changed to use different attrs for storing the
  1264. * verifier, then do_open_lookup() will also need to be fixed
  1265. * accordingly.
  1266. */
  1267. v_mtime = verifier[0]&0x7fffffff;
  1268. v_atime = verifier[1]&0x7fffffff;
  1269. }
  1270. host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
  1271. if (host_err)
  1272. goto out_nfserr;
  1273. if (dchild->d_inode) {
  1274. err = 0;
  1275. switch (createmode) {
  1276. case NFS3_CREATE_UNCHECKED:
  1277. if (! S_ISREG(dchild->d_inode->i_mode))
  1278. err = nfserr_exist;
  1279. else if (truncp) {
  1280. /* in nfsv4, we need to treat this case a little
  1281. * differently. we don't want to truncate the
  1282. * file now; this would be wrong if the OPEN
  1283. * fails for some other reason. furthermore,
  1284. * if the size is nonzero, we should ignore it
  1285. * according to spec!
  1286. */
  1287. *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
  1288. }
  1289. else {
  1290. iap->ia_valid &= ATTR_SIZE;
  1291. goto set_attr;
  1292. }
  1293. break;
  1294. case NFS3_CREATE_EXCLUSIVE:
  1295. if ( dchild->d_inode->i_mtime.tv_sec == v_mtime
  1296. && dchild->d_inode->i_atime.tv_sec == v_atime
  1297. && dchild->d_inode->i_size == 0 )
  1298. break;
  1299. /* fallthru */
  1300. case NFS3_CREATE_GUARDED:
  1301. err = nfserr_exist;
  1302. }
  1303. mnt_drop_write(fhp->fh_export->ex_path.mnt);
  1304. goto out;
  1305. }
  1306. host_err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
  1307. if (host_err < 0) {
  1308. mnt_drop_write(fhp->fh_export->ex_path.mnt);
  1309. goto out_nfserr;
  1310. }
  1311. if (created)
  1312. *created = 1;
  1313. nfsd_check_ignore_resizing(iap);
  1314. if (createmode == NFS3_CREATE_EXCLUSIVE) {
  1315. /* Cram the verifier into atime/mtime */
  1316. iap->ia_valid = ATTR_MTIME|ATTR_ATIME
  1317. | ATTR_MTIME_SET|ATTR_ATIME_SET;
  1318. /* XXX someone who knows this better please fix it for nsec */
  1319. iap->ia_mtime.tv_sec = v_mtime;
  1320. iap->ia_atime.tv_sec = v_atime;
  1321. iap->ia_mtime.tv_nsec = 0;
  1322. iap->ia_atime.tv_nsec = 0;
  1323. }
  1324. set_attr:
  1325. err = nfsd_create_setattr(rqstp, resfhp, iap);
  1326. /*
  1327. * nfsd_setattr already committed the child (and possibly also the parent).
  1328. */
  1329. if (!err)
  1330. err = nfserrno(commit_metadata(fhp));
  1331. mnt_drop_write(fhp->fh_export->ex_path.mnt);
  1332. /*
  1333. * Update the filehandle to get the new inode info.
  1334. */
  1335. if (!err)
  1336. err = fh_update(resfhp);
  1337. out:
  1338. fh_unlock(fhp);
  1339. if (dchild && !IS_ERR(dchild))
  1340. dput(dchild);
  1341. return err;
  1342. out_nfserr:
  1343. err = nfserrno(host_err);
  1344. goto out;
  1345. }
  1346. #endif /* CONFIG_NFSD_V3 */
  1347. /*
  1348. * Read a symlink. On entry, *lenp must contain the maximum path length that
  1349. * fits into the buffer. On return, it contains the true length.
  1350. * N.B. After this call fhp needs an fh_put
  1351. */
  1352. __be32
  1353. nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
  1354. {
  1355. struct dentry *dentry;
  1356. struct inode *inode;
  1357. mm_segment_t oldfs;
  1358. __be32 err;
  1359. int host_err;
  1360. err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
  1361. if (err)
  1362. goto out;
  1363. dentry = fhp->fh_dentry;
  1364. inode = dentry->d_inode;
  1365. err = nfserr_inval;
  1366. if (!inode->i_op->readlink)
  1367. goto out;
  1368. touch_atime(fhp->fh_export->ex_path.mnt, dentry);
  1369. /* N.B. Why does this call need a get_fs()??
  1370. * Remove the set_fs and watch the fireworks:-) --okir
  1371. */
  1372. oldfs = get_fs(); set_fs(KERNEL_DS);
  1373. host_err = inode->i_op->readlink(dentry, buf, *lenp);
  1374. set_fs(oldfs);
  1375. if (host_err < 0)
  1376. goto out_nfserr;
  1377. *lenp = host_err;
  1378. err = 0;
  1379. out:
  1380. return err;
  1381. out_nfserr:
  1382. err = nfserrno(host_err);
  1383. goto out;
  1384. }
  1385. /*
  1386. * Create a symlink and look up its inode
  1387. * N.B. After this call _both_ fhp and resfhp need an fh_put
  1388. */
  1389. __be32
  1390. nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
  1391. char *fname, int flen,
  1392. char *path, int plen,
  1393. struct svc_fh *resfhp,
  1394. struct iattr *iap)
  1395. {
  1396. struct dentry *dentry, *dnew;
  1397. __be32 err, cerr;
  1398. int host_err;
  1399. err = nfserr_noent;
  1400. if (!flen || !plen)
  1401. goto out;
  1402. err = nfserr_exist;
  1403. if (isdotent(fname, flen))
  1404. goto out;
  1405. err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
  1406. if (err)
  1407. goto out;
  1408. fh_lock(fhp);
  1409. dentry = fhp->fh_dentry;
  1410. dnew = lookup_one_len(fname, dentry, flen);
  1411. host_err = PTR_ERR(dnew);
  1412. if (IS_ERR(dnew))
  1413. goto out_nfserr;
  1414. host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
  1415. if (host_err)
  1416. goto out_nfserr;
  1417. if (unlikely(path[plen] != 0)) {
  1418. char *path_alloced = kmalloc(plen+1, GFP_KERNEL);
  1419. if (path_alloced == NULL)
  1420. host_err = -ENOMEM;
  1421. else {
  1422. strncpy(path_alloced, path, plen);
  1423. path_alloced[plen] = 0;
  1424. host_err = vfs_symlink(dentry->d_inode, dnew, path_alloced);
  1425. kfree(path_alloced);
  1426. }
  1427. } else
  1428. host_err = vfs_symlink(dentry->d_inode, dnew, path);
  1429. err = nfserrno(host_err);
  1430. if (!err)
  1431. err = nfserrno(commit_metadata(fhp));
  1432. fh_unlock(fhp);
  1433. mnt_drop_write(fhp->fh_export->ex_path.mnt);
  1434. cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
  1435. dput(dnew);
  1436. if (err==0) err = cerr;
  1437. out:
  1438. return err;
  1439. out_nfserr:
  1440. err = nfserrno(host_err);
  1441. goto out;
  1442. }
  1443. /*
  1444. * Create a hardlink
  1445. * N.B. After this call _both_ ffhp and tfhp need an fh_put
  1446. */
  1447. __be32
  1448. nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
  1449. char *name, int len, struct svc_fh *tfhp)
  1450. {
  1451. struct dentry *ddir, *dnew, *dold;
  1452. struct inode *dirp;
  1453. __be32 err;
  1454. int host_err;
  1455. err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
  1456. if (err)
  1457. goto out;
  1458. err = fh_verify(rqstp, tfhp, -S_IFDIR, NFSD_MAY_NOP);
  1459. if (err)
  1460. goto out;
  1461. err = nfserr_perm;
  1462. if (!len)
  1463. goto out;
  1464. err = nfserr_exist;
  1465. if (isdotent(name, len))
  1466. goto out;
  1467. fh_lock_nested(ffhp, I_MUTEX_PARENT);
  1468. ddir = ffhp->fh_dentry;
  1469. dirp = ddir->d_inode;
  1470. dnew = lookup_one_len(name, ddir, len);
  1471. host_err = PTR_ERR(dnew);
  1472. if (IS_ERR(dnew))
  1473. goto out_nfserr;
  1474. dold = tfhp->fh_dentry;
  1475. host_err = mnt_want_write(tfhp->fh_export->ex_path.mnt);
  1476. if (host_err) {
  1477. err = nfserrno(host_err);
  1478. goto out_dput;
  1479. }
  1480. host_err = vfs_link(dold, dirp, dnew);
  1481. if (!host_err) {
  1482. err = nfserrno(commit_metadata(ffhp));
  1483. if (!err)
  1484. err = nfserrno(commit_metadata(tfhp));
  1485. } else {
  1486. if (host_err == -EXDEV && rqstp->rq_vers == 2)
  1487. err = nfserr_acces;
  1488. else
  1489. err = nfserrno(host_err);
  1490. }
  1491. mnt_drop_write(tfhp->fh_export->ex_path.mnt);
  1492. out_dput:
  1493. dput(dnew);
  1494. out_unlock:
  1495. fh_unlock(ffhp);
  1496. out:
  1497. return err;
  1498. out_nfserr:
  1499. err = nfserrno(host_err);
  1500. goto out_unlock;
  1501. }
  1502. /*
  1503. * Rename a file
  1504. * N.B. After this call _both_ ffhp and tfhp need an fh_put
  1505. */
  1506. __be32
  1507. nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
  1508. struct svc_fh *tfhp, char *tname, int tlen)
  1509. {
  1510. struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
  1511. struct inode *fdir, *tdir;
  1512. __be32 err;
  1513. int host_err;
  1514. err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
  1515. if (err)
  1516. goto out;
  1517. err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
  1518. if (err)
  1519. goto out;
  1520. fdentry = ffhp->fh_dentry;
  1521. fdir = fdentry->d_inode;
  1522. tdentry = tfhp->fh_dentry;
  1523. tdir = tdentry->d_inode;
  1524. err = (rqstp->rq_vers == 2) ? nfserr_acces : nfserr_xdev;
  1525. if (ffhp->fh_export != tfhp->fh_export)
  1526. goto out;
  1527. err = nfserr_perm;
  1528. if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
  1529. goto out;
  1530. /* cannot use fh_lock as we need deadlock protective ordering
  1531. * so do it by hand */
  1532. trap = lock_rename(tdentry, fdentry);
  1533. ffhp->fh_locked = tfhp->fh_locked = 1;
  1534. fill_pre_wcc(ffhp);
  1535. fill_pre_wcc(tfhp);
  1536. odentry = lookup_one_len(fname, fdentry, flen);
  1537. host_err = PTR_ERR(odentry);
  1538. if (IS_ERR(odentry))
  1539. goto out_nfserr;
  1540. host_err = -ENOENT;
  1541. if (!odentry->d_inode)
  1542. goto out_dput_old;
  1543. host_err = -EINVAL;
  1544. if (odentry == trap)
  1545. goto out_dput_old;
  1546. ndentry = lookup_one_len(tname, tdentry, tlen);
  1547. host_err = PTR_ERR(ndentry);
  1548. if (IS_ERR(ndentry))
  1549. goto out_dput_old;
  1550. host_err = -ENOTEMPTY;
  1551. if (ndentry == trap)
  1552. goto out_dput_new;
  1553. if (svc_msnfs(ffhp) &&
  1554. ((atomic_read(&odentry->d_count) > 1)
  1555. || (atomic_read(&ndentry->d_count) > 1))) {
  1556. host_err = -EPERM;
  1557. goto out_dput_new;
  1558. }
  1559. host_err = -EXDEV;
  1560. if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
  1561. goto out_dput_new;
  1562. host_err = mnt_want_write(ffhp->fh_export->ex_path.mnt);
  1563. if (host_err)
  1564. goto out_dput_new;
  1565. host_err = vfs_rename(fdir, odentry, tdir, ndentry);
  1566. if (!host_err) {
  1567. host_err = commit_metadata(tfhp);
  1568. if (!host_err)
  1569. host_err = commit_metadata(ffhp);
  1570. }
  1571. mnt_drop_write(ffhp->fh_export->ex_path.mnt);
  1572. out_dput_new:
  1573. dput(ndentry);
  1574. out_dput_old:
  1575. dput(odentry);
  1576. out_nfserr:
  1577. err = nfserrno(host_err);
  1578. /* we cannot reply on fh_unlock on the two filehandles,
  1579. * as that would do the wrong thing if the two directories
  1580. * were the same, so again we do it by hand
  1581. */
  1582. fill_post_wcc(ffhp);
  1583. fill_post_wcc(tfhp);
  1584. unlock_rename(tdentry, fdentry);
  1585. ffhp->fh_locked = tfhp->fh_locked = 0;
  1586. out:
  1587. return err;
  1588. }
  1589. /*
  1590. * Unlink a file or directory
  1591. * N.B. After this call fhp needs an fh_put
  1592. */
  1593. __be32
  1594. nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
  1595. char *fname, int flen)
  1596. {
  1597. struct dentry *dentry, *rdentry;
  1598. struct inode *dirp;
  1599. __be32 err;
  1600. int host_err;
  1601. err = nfserr_acces;
  1602. if (!flen || isdotent(fname, flen))
  1603. goto out;
  1604. err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
  1605. if (err)
  1606. goto out;
  1607. fh_lock_nested(fhp, I_MUTEX_PARENT);
  1608. dentry = fhp->fh_dentry;
  1609. dirp = dentry->d_inode;
  1610. rdentry = lookup_one_len(fname, dentry, flen);
  1611. host_err = PTR_ERR(rdentry);
  1612. if (IS_ERR(rdentry))
  1613. goto out_nfserr;
  1614. if (!rdentry->d_inode) {
  1615. dput(rdentry);
  1616. err = nfserr_noent;
  1617. goto out;
  1618. }
  1619. if (!type)
  1620. type = rdentry->d_inode->i_mode & S_IFMT;
  1621. host_err = mnt_want_write(fhp->fh_export->ex_path.mnt);
  1622. if (host_err)
  1623. goto out_nfserr;
  1624. if (type != S_IFDIR) { /* It's UNLINK */
  1625. #ifdef MSNFS
  1626. if ((fhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
  1627. (atomic_read(&rdentry->d_count) > 1)) {
  1628. host_err = -EPERM;
  1629. } else
  1630. #endif
  1631. host_err = vfs_unlink(dirp, rdentry);
  1632. } else { /* It's RMDIR */
  1633. host_err = vfs_rmdir(dirp, rdentry);
  1634. }
  1635. dput(rdentry);
  1636. if (!host_err)
  1637. host_err = commit_metadata(fhp);
  1638. mnt_drop_write(fhp->fh_export->ex_path.mnt);
  1639. out_nfserr:
  1640. err = nfserrno(host_err);
  1641. out:
  1642. return err;
  1643. }
  1644. /*
  1645. * We do this buffering because we must not call back into the file
  1646. * system's ->lookup() method from the filldir callback. That may well
  1647. * deadlock a number of file systems.
  1648. *
  1649. * This is based heavily on the implementation of same in XFS.
  1650. */
  1651. struct buffered_dirent {
  1652. u64 ino;
  1653. loff_t offset;
  1654. int namlen;
  1655. unsigned int d_type;
  1656. char name[];
  1657. };
  1658. struct readdir_data {
  1659. char *dirent;
  1660. size_t used;
  1661. int full;
  1662. };
  1663. static int nfsd_buffered_filldir(void *__buf, const char *name, int namlen,
  1664. loff_t offset, u64 ino, unsigned int d_type)
  1665. {
  1666. struct readdir_data *buf = __buf;
  1667. struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
  1668. unsigned int reclen;
  1669. reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
  1670. if (buf->used + reclen > PAGE_SIZE) {
  1671. buf->full = 1;
  1672. return -EINVAL;
  1673. }
  1674. de->namlen = namlen;
  1675. de->offset = offset;
  1676. de->ino = ino;
  1677. de->d_type = d_type;
  1678. memcpy(de->name, name, namlen);
  1679. buf->used += reclen;
  1680. return 0;
  1681. }
  1682. static __be32 nfsd_buffered_readdir(struct file *file, filldir_t func,
  1683. struct readdir_cd *cdp, loff_t *offsetp)
  1684. {
  1685. struct readdir_data buf;
  1686. struct buffered_dirent *de;
  1687. int host_err;
  1688. int size;
  1689. loff_t offset;
  1690. buf.dirent = (void *)__get_free_page(GFP_KERNEL);
  1691. if (!buf.dirent)
  1692. return nfserrno(-ENOMEM);
  1693. offset = *offsetp;
  1694. while (1) {
  1695. struct inode *dir_inode = file->f_path.dentry->d_inode;
  1696. unsigned int reclen;
  1697. cdp->err = nfserr_eof; /* will be cleared on successful read */
  1698. buf.used = 0;
  1699. buf.full = 0;
  1700. host_err = vfs_readdir(file, nfsd_buffered_filldir, &buf);
  1701. if (buf.full)
  1702. host_err = 0;
  1703. if (host_err < 0)
  1704. break;
  1705. size = buf.used;
  1706. if (!size)
  1707. break;
  1708. /*
  1709. * Various filldir functions may end up calling back into
  1710. * lookup_one_len() and the file system's ->lookup() method.
  1711. * These expect i_mutex to be held, as it would within readdir.
  1712. */
  1713. host_err = mutex_lock_killable(&dir_inode->i_mutex);
  1714. if (host_err)
  1715. break;
  1716. de = (struct buffered_dirent *)buf.dirent;
  1717. while (size > 0) {
  1718. offset = de->offset;
  1719. if (func(cdp, de->name, de->namlen, de->offset,
  1720. de->ino, de->d_type))
  1721. break;
  1722. if (cdp->err != nfs_ok)
  1723. break;
  1724. reclen = ALIGN(sizeof(*de) + de->namlen,
  1725. sizeof(u64));
  1726. size -= reclen;
  1727. de = (struct buffered_dirent *)((char *)de + reclen);
  1728. }
  1729. mutex_unlock(&dir_inode->i_mutex);
  1730. if (size > 0) /* We bailed out early */
  1731. break;
  1732. offset = vfs_llseek(file, 0, SEEK_CUR);
  1733. }
  1734. free_page((unsigned long)(buf.dirent));
  1735. if (host_err)
  1736. return nfserrno(host_err);
  1737. *offsetp = offset;
  1738. return cdp->err;
  1739. }
  1740. /*
  1741. * Read entries from a directory.
  1742. * The NFSv3/4 verifier we ignore for now.
  1743. */
  1744. __be32
  1745. nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
  1746. struct readdir_cd *cdp, filldir_t func)
  1747. {
  1748. __be32 err;
  1749. struct file *file;
  1750. loff_t offset = *offsetp;
  1751. err = nfsd_open(rqstp, fhp, S_IFDIR, NFSD_MAY_READ, &file);
  1752. if (err)
  1753. goto out;
  1754. offset = vfs_llseek(file, offset, 0);
  1755. if (offset < 0) {
  1756. err = nfserrno((int)offset);
  1757. goto out_close;
  1758. }
  1759. err = nfsd_buffered_readdir(file, func, cdp, offsetp);
  1760. if (err == nfserr_eof || err == nfserr_toosmall)
  1761. err = nfs_ok; /* can still be found in ->err */
  1762. out_close:
  1763. nfsd_close(file);
  1764. out:
  1765. return err;
  1766. }
  1767. /*
  1768. * Get file system stats
  1769. * N.B. After this call fhp needs an fh_put
  1770. */
  1771. __be32
  1772. nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
  1773. {
  1774. struct path path = {
  1775. .mnt = fhp->fh_export->ex_path.mnt,
  1776. .dentry = fhp->fh_dentry,
  1777. };
  1778. __be32 err;
  1779. err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
  1780. if (!err && vfs_statfs(&path, stat))
  1781. err = nfserr_io;
  1782. return err;
  1783. }
  1784. static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
  1785. {
  1786. return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
  1787. }
  1788. /*
  1789. * Check for a user's access permissions to this inode.
  1790. */
  1791. __be32
  1792. nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
  1793. struct dentry *dentry, int acc)
  1794. {
  1795. struct inode *inode = dentry->d_inode;
  1796. int err;
  1797. if (acc == NFSD_MAY_NOP)
  1798. return 0;
  1799. #if 0
  1800. dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
  1801. acc,
  1802. (acc & NFSD_MAY_READ)? " read" : "",
  1803. (acc & NFSD_MAY_WRITE)? " write" : "",
  1804. (acc & NFSD_MAY_EXEC)? " exec" : "",
  1805. (acc & NFSD_MAY_SATTR)? " sattr" : "",
  1806. (acc & NFSD_MAY_TRUNC)? " trunc" : "",
  1807. (acc & NFSD_MAY_LOCK)? " lock" : "",
  1808. (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
  1809. inode->i_mode,
  1810. IS_IMMUTABLE(inode)? " immut" : "",
  1811. IS_APPEND(inode)? " append" : "",
  1812. __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
  1813. dprintk(" owner %d/%d user %d/%d\n",
  1814. inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
  1815. #endif
  1816. /* Normally we reject any write/sattr etc access on a read-only file
  1817. * system. But if it is IRIX doing check on write-access for a
  1818. * device special file, we ignore rofs.
  1819. */
  1820. if (!(acc & NFSD_MAY_LOCAL_ACCESS))
  1821. if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
  1822. if (exp_rdonly(rqstp, exp) ||
  1823. __mnt_is_readonly(exp->ex_path.mnt))
  1824. return nfserr_rofs;
  1825. if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
  1826. return nfserr_perm;
  1827. }
  1828. if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
  1829. return nfserr_perm;
  1830. if (acc & NFSD_MAY_LOCK) {
  1831. /* If we cannot rely on authentication in NLM requests,
  1832. * just allow locks, otherwise require read permission, or
  1833. * ownership
  1834. */
  1835. if (exp->ex_flags & NFSEXP_NOAUTHNLM)
  1836. return 0;
  1837. else
  1838. acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
  1839. }
  1840. /*
  1841. * The file owner always gets access permission for accesses that
  1842. * would normally be checked at open time. This is to make
  1843. * file access work even when the client has done a fchmod(fd, 0).
  1844. *
  1845. * However, `cp foo bar' should fail nevertheless when bar is
  1846. * readonly. A sensible way to do this might be to reject all
  1847. * attempts to truncate a read-only file, because a creat() call
  1848. * always implies file truncation.
  1849. * ... but this isn't really fair. A process may reasonably call
  1850. * ftruncate on an open file descriptor on a file with perm 000.
  1851. * We must trust the client to do permission checking - using "ACCESS"
  1852. * with NFSv3.
  1853. */
  1854. if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
  1855. inode->i_uid == current_fsuid())
  1856. return 0;
  1857. /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
  1858. err = inode_permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC));
  1859. /* Allow read access to binaries even when mode 111 */
  1860. if (err == -EACCES && S_ISREG(inode->i_mode) &&
  1861. acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE))
  1862. err = inode_permission(inode, MAY_EXEC);
  1863. return err? nfserrno(err) : 0;
  1864. }
  1865. void
  1866. nfsd_racache_shutdown(void)
  1867. {
  1868. struct raparms *raparm, *last_raparm;
  1869. unsigned int i;
  1870. dprintk("nfsd: freeing readahead buffers.\n");
  1871. for (i = 0; i < RAPARM_HASH_SIZE; i++) {
  1872. raparm = raparm_hash[i].pb_head;
  1873. while(raparm) {
  1874. last_raparm = raparm;
  1875. raparm = raparm->p_next;
  1876. kfree(last_raparm);
  1877. }
  1878. raparm_hash[i].pb_head = NULL;
  1879. }
  1880. }
  1881. /*
  1882. * Initialize readahead param cache
  1883. */
  1884. int
  1885. nfsd_racache_init(int cache_size)
  1886. {
  1887. int i;
  1888. int j = 0;
  1889. int nperbucket;
  1890. struct raparms **raparm = NULL;
  1891. if (raparm_hash[0].pb_head)
  1892. return 0;
  1893. nperbucket = DIV_ROUND_UP(cache_size, RAPARM_HASH_SIZE);
  1894. if (nperbucket < 2)
  1895. nperbucket = 2;
  1896. cache_size = nperbucket * RAPARM_HASH_SIZE;
  1897. dprintk("nfsd: allocating %d readahead buffers.\n", cache_size);
  1898. for (i = 0; i < RAPARM_HASH_SIZE; i++) {
  1899. spin_lock_init(&raparm_hash[i].pb_lock);
  1900. raparm = &raparm_hash[i].pb_head;
  1901. for (j = 0; j < nperbucket; j++) {
  1902. *raparm = kzalloc(sizeof(struct raparms), GFP_KERNEL);
  1903. if (!*raparm)
  1904. goto out_nomem;
  1905. raparm = &(*raparm)->p_next;
  1906. }
  1907. *raparm = NULL;
  1908. }
  1909. nfsdstats.ra_size = cache_size;
  1910. return 0;
  1911. out_nomem:
  1912. dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
  1913. nfsd_racache_shutdown();
  1914. return -ENOMEM;
  1915. }
  1916. #if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
  1917. struct posix_acl *
  1918. nfsd_get_posix_acl(struct svc_fh *fhp, int type)
  1919. {
  1920. struct inode *inode = fhp->fh_dentry->d_inode;
  1921. char *name;
  1922. void *value = NULL;
  1923. ssize_t size;
  1924. struct posix_acl *acl;
  1925. if (!IS_POSIXACL(inode))
  1926. return ERR_PTR(-EOPNOTSUPP);
  1927. switch (type) {
  1928. case ACL_TYPE_ACCESS:
  1929. name = POSIX_ACL_XATTR_ACCESS;
  1930. break;
  1931. case ACL_TYPE_DEFAULT:
  1932. name = POSIX_ACL_XATTR_DEFAULT;
  1933. break;
  1934. default:
  1935. return ERR_PTR(-EOPNOTSUPP);
  1936. }
  1937. size = nfsd_getxattr(fhp->fh_dentry, name, &value);
  1938. if (size < 0)
  1939. return ERR_PTR(size);
  1940. acl = posix_acl_from_xattr(value, size);
  1941. kfree(value);
  1942. return acl;
  1943. }
  1944. int
  1945. nfsd_set_posix_acl(struct svc_fh *fhp, int type, struct posix_acl *acl)
  1946. {
  1947. struct inode *inode = fhp->fh_dentry->d_inode;
  1948. char *name;
  1949. void *value = NULL;
  1950. size_t size;
  1951. int error;
  1952. if (!IS_POSIXACL(inode) ||
  1953. !inode->i_op->setxattr || !inode->i_op->removexattr)
  1954. return -EOPNOTSUPP;
  1955. switch(type) {
  1956. case ACL_TYPE_ACCESS:
  1957. name = POSIX_ACL_XATTR_ACCESS;
  1958. break;
  1959. case ACL_TYPE_DEFAULT:
  1960. name = POSIX_ACL_XATTR_DEFAULT;
  1961. break;
  1962. default:
  1963. return -EOPNOTSUPP;
  1964. }
  1965. if (acl && acl->a_count) {
  1966. size = posix_acl_xattr_size(acl->a_count);
  1967. value = kmalloc(size, GFP_KERNEL);
  1968. if (!value)
  1969. return -ENOMEM;
  1970. error = posix_acl_to_xattr(acl, value, size);
  1971. if (error < 0)
  1972. goto getout;
  1973. size = error;
  1974. } else
  1975. size = 0;
  1976. error = mnt_want_write(fhp->fh_export->ex_path.mnt);
  1977. if (error)
  1978. goto getout;
  1979. if (size)
  1980. error = vfs_setxattr(fhp->fh_dentry, name, value, size, 0);
  1981. else {
  1982. if (!S_ISDIR(inode->i_mode) && type == ACL_TYPE_DEFAULT)
  1983. error = 0;
  1984. else {
  1985. error = vfs_removexattr(fhp->fh_dentry, name);
  1986. if (error == -ENODATA)
  1987. error = 0;
  1988. }
  1989. }
  1990. mnt_drop_write(fhp->fh_export->ex_path.mnt);
  1991. getout:
  1992. kfree(value);
  1993. return error;
  1994. }
  1995. #endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */