vfs.c 51 KB

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