xfs_attr.c 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241
  1. /*
  2. * Copyright (c) 2000-2005 Silicon Graphics, Inc.
  3. * All Rights Reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it would be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write the Free Software Foundation,
  16. * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #include "xfs.h"
  19. #include "xfs_fs.h"
  20. #include "xfs_types.h"
  21. #include "xfs_bit.h"
  22. #include "xfs_log.h"
  23. #include "xfs_inum.h"
  24. #include "xfs_trans.h"
  25. #include "xfs_sb.h"
  26. #include "xfs_ag.h"
  27. #include "xfs_mount.h"
  28. #include "xfs_da_btree.h"
  29. #include "xfs_bmap_btree.h"
  30. #include "xfs_attr_sf.h"
  31. #include "xfs_dinode.h"
  32. #include "xfs_inode.h"
  33. #include "xfs_alloc.h"
  34. #include "xfs_inode_item.h"
  35. #include "xfs_bmap.h"
  36. #include "xfs_attr.h"
  37. #include "xfs_attr_leaf.h"
  38. #include "xfs_error.h"
  39. #include "xfs_quota.h"
  40. #include "xfs_trans_space.h"
  41. #include "xfs_rw.h"
  42. #include "xfs_vnodeops.h"
  43. #include "xfs_trace.h"
  44. /*
  45. * xfs_attr.c
  46. *
  47. * Provide the external interfaces to manage attribute lists.
  48. */
  49. /*========================================================================
  50. * Function prototypes for the kernel.
  51. *========================================================================*/
  52. /*
  53. * Internal routines when attribute list fits inside the inode.
  54. */
  55. STATIC int xfs_attr_shortform_addname(xfs_da_args_t *args);
  56. /*
  57. * Internal routines when attribute list is one block.
  58. */
  59. STATIC int xfs_attr_leaf_get(xfs_da_args_t *args);
  60. STATIC int xfs_attr_leaf_addname(xfs_da_args_t *args);
  61. STATIC int xfs_attr_leaf_removename(xfs_da_args_t *args);
  62. STATIC int xfs_attr_leaf_list(xfs_attr_list_context_t *context);
  63. /*
  64. * Internal routines when attribute list is more than one block.
  65. */
  66. STATIC int xfs_attr_node_get(xfs_da_args_t *args);
  67. STATIC int xfs_attr_node_addname(xfs_da_args_t *args);
  68. STATIC int xfs_attr_node_removename(xfs_da_args_t *args);
  69. STATIC int xfs_attr_node_list(xfs_attr_list_context_t *context);
  70. STATIC int xfs_attr_fillstate(xfs_da_state_t *state);
  71. STATIC int xfs_attr_refillstate(xfs_da_state_t *state);
  72. /*
  73. * Routines to manipulate out-of-line attribute values.
  74. */
  75. STATIC int xfs_attr_rmtval_set(xfs_da_args_t *args);
  76. STATIC int xfs_attr_rmtval_remove(xfs_da_args_t *args);
  77. #define ATTR_RMTVALUE_MAPSIZE 1 /* # of map entries at once */
  78. STATIC int
  79. xfs_attr_name_to_xname(
  80. struct xfs_name *xname,
  81. const unsigned char *aname)
  82. {
  83. if (!aname)
  84. return EINVAL;
  85. xname->name = aname;
  86. xname->len = strlen((char *)aname);
  87. if (xname->len >= MAXNAMELEN)
  88. return EFAULT; /* match IRIX behaviour */
  89. return 0;
  90. }
  91. STATIC int
  92. xfs_inode_hasattr(
  93. struct xfs_inode *ip)
  94. {
  95. if (!XFS_IFORK_Q(ip) ||
  96. (ip->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS &&
  97. ip->i_d.di_anextents == 0))
  98. return 0;
  99. return 1;
  100. }
  101. /*========================================================================
  102. * Overall external interface routines.
  103. *========================================================================*/
  104. STATIC int
  105. xfs_attr_get_int(
  106. struct xfs_inode *ip,
  107. struct xfs_name *name,
  108. unsigned char *value,
  109. int *valuelenp,
  110. int flags)
  111. {
  112. xfs_da_args_t args;
  113. int error;
  114. if (!xfs_inode_hasattr(ip))
  115. return ENOATTR;
  116. /*
  117. * Fill in the arg structure for this request.
  118. */
  119. memset((char *)&args, 0, sizeof(args));
  120. args.name = name->name;
  121. args.namelen = name->len;
  122. args.value = value;
  123. args.valuelen = *valuelenp;
  124. args.flags = flags;
  125. args.hashval = xfs_da_hashname(args.name, args.namelen);
  126. args.dp = ip;
  127. args.whichfork = XFS_ATTR_FORK;
  128. /*
  129. * Decide on what work routines to call based on the inode size.
  130. */
  131. if (ip->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
  132. error = xfs_attr_shortform_getvalue(&args);
  133. } else if (xfs_bmap_one_block(ip, XFS_ATTR_FORK)) {
  134. error = xfs_attr_leaf_get(&args);
  135. } else {
  136. error = xfs_attr_node_get(&args);
  137. }
  138. /*
  139. * Return the number of bytes in the value to the caller.
  140. */
  141. *valuelenp = args.valuelen;
  142. if (error == EEXIST)
  143. error = 0;
  144. return(error);
  145. }
  146. int
  147. xfs_attr_get(
  148. xfs_inode_t *ip,
  149. const unsigned char *name,
  150. unsigned char *value,
  151. int *valuelenp,
  152. int flags)
  153. {
  154. int error;
  155. struct xfs_name xname;
  156. XFS_STATS_INC(xs_attr_get);
  157. if (XFS_FORCED_SHUTDOWN(ip->i_mount))
  158. return(EIO);
  159. error = xfs_attr_name_to_xname(&xname, name);
  160. if (error)
  161. return error;
  162. xfs_ilock(ip, XFS_ILOCK_SHARED);
  163. error = xfs_attr_get_int(ip, &xname, value, valuelenp, flags);
  164. xfs_iunlock(ip, XFS_ILOCK_SHARED);
  165. return(error);
  166. }
  167. /*
  168. * Calculate how many blocks we need for the new attribute,
  169. */
  170. STATIC int
  171. xfs_attr_calc_size(
  172. struct xfs_inode *ip,
  173. int namelen,
  174. int valuelen,
  175. int *local)
  176. {
  177. struct xfs_mount *mp = ip->i_mount;
  178. int size;
  179. int nblks;
  180. /*
  181. * Determine space new attribute will use, and if it would be
  182. * "local" or "remote" (note: local != inline).
  183. */
  184. size = xfs_attr_leaf_newentsize(namelen, valuelen,
  185. mp->m_sb.sb_blocksize, local);
  186. nblks = XFS_DAENTER_SPACE_RES(mp, XFS_ATTR_FORK);
  187. if (*local) {
  188. if (size > (mp->m_sb.sb_blocksize >> 1)) {
  189. /* Double split possible */
  190. nblks *= 2;
  191. }
  192. } else {
  193. /*
  194. * Out of line attribute, cannot double split, but
  195. * make room for the attribute value itself.
  196. */
  197. uint dblocks = XFS_B_TO_FSB(mp, valuelen);
  198. nblks += dblocks;
  199. nblks += XFS_NEXTENTADD_SPACE_RES(mp, dblocks, XFS_ATTR_FORK);
  200. }
  201. return nblks;
  202. }
  203. STATIC int
  204. xfs_attr_set_int(
  205. struct xfs_inode *dp,
  206. struct xfs_name *name,
  207. unsigned char *value,
  208. int valuelen,
  209. int flags)
  210. {
  211. xfs_da_args_t args;
  212. xfs_fsblock_t firstblock;
  213. xfs_bmap_free_t flist;
  214. int error, err2, committed;
  215. xfs_mount_t *mp = dp->i_mount;
  216. int rsvd = (flags & ATTR_ROOT) != 0;
  217. int local;
  218. /*
  219. * Attach the dquots to the inode.
  220. */
  221. error = xfs_qm_dqattach(dp, 0);
  222. if (error)
  223. return error;
  224. /*
  225. * If the inode doesn't have an attribute fork, add one.
  226. * (inode must not be locked when we call this routine)
  227. */
  228. if (XFS_IFORK_Q(dp) == 0) {
  229. int sf_size = sizeof(xfs_attr_sf_hdr_t) +
  230. XFS_ATTR_SF_ENTSIZE_BYNAME(name->len, valuelen);
  231. if ((error = xfs_bmap_add_attrfork(dp, sf_size, rsvd)))
  232. return(error);
  233. }
  234. /*
  235. * Fill in the arg structure for this request.
  236. */
  237. memset((char *)&args, 0, sizeof(args));
  238. args.name = name->name;
  239. args.namelen = name->len;
  240. args.value = value;
  241. args.valuelen = valuelen;
  242. args.flags = flags;
  243. args.hashval = xfs_da_hashname(args.name, args.namelen);
  244. args.dp = dp;
  245. args.firstblock = &firstblock;
  246. args.flist = &flist;
  247. args.whichfork = XFS_ATTR_FORK;
  248. args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
  249. /* Size is now blocks for attribute data */
  250. args.total = xfs_attr_calc_size(dp, name->len, valuelen, &local);
  251. /*
  252. * Start our first transaction of the day.
  253. *
  254. * All future transactions during this code must be "chained" off
  255. * this one via the trans_dup() call. All transactions will contain
  256. * the inode, and the inode will always be marked with trans_ihold().
  257. * Since the inode will be locked in all transactions, we must log
  258. * the inode in every transaction to let it float upward through
  259. * the log.
  260. */
  261. args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_SET);
  262. /*
  263. * Root fork attributes can use reserved data blocks for this
  264. * operation if necessary
  265. */
  266. if (rsvd)
  267. args.trans->t_flags |= XFS_TRANS_RESERVE;
  268. if ((error = xfs_trans_reserve(args.trans, args.total,
  269. XFS_ATTRSET_LOG_RES(mp, args.total), 0,
  270. XFS_TRANS_PERM_LOG_RES, XFS_ATTRSET_LOG_COUNT))) {
  271. xfs_trans_cancel(args.trans, 0);
  272. return(error);
  273. }
  274. xfs_ilock(dp, XFS_ILOCK_EXCL);
  275. error = xfs_trans_reserve_quota_nblks(args.trans, dp, args.total, 0,
  276. rsvd ? XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
  277. XFS_QMOPT_RES_REGBLKS);
  278. if (error) {
  279. xfs_iunlock(dp, XFS_ILOCK_EXCL);
  280. xfs_trans_cancel(args.trans, XFS_TRANS_RELEASE_LOG_RES);
  281. return (error);
  282. }
  283. xfs_trans_ijoin(args.trans, dp);
  284. /*
  285. * If the attribute list is non-existent or a shortform list,
  286. * upgrade it to a single-leaf-block attribute list.
  287. */
  288. if ((dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) ||
  289. ((dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS) &&
  290. (dp->i_d.di_anextents == 0))) {
  291. /*
  292. * Build initial attribute list (if required).
  293. */
  294. if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS)
  295. xfs_attr_shortform_create(&args);
  296. /*
  297. * Try to add the attr to the attribute list in
  298. * the inode.
  299. */
  300. error = xfs_attr_shortform_addname(&args);
  301. if (error != ENOSPC) {
  302. /*
  303. * Commit the shortform mods, and we're done.
  304. * NOTE: this is also the error path (EEXIST, etc).
  305. */
  306. ASSERT(args.trans != NULL);
  307. /*
  308. * If this is a synchronous mount, make sure that
  309. * the transaction goes to disk before returning
  310. * to the user.
  311. */
  312. if (mp->m_flags & XFS_MOUNT_WSYNC) {
  313. xfs_trans_set_sync(args.trans);
  314. }
  315. if (!error && (flags & ATTR_KERNOTIME) == 0) {
  316. xfs_trans_ichgtime(args.trans, dp,
  317. XFS_ICHGTIME_CHG);
  318. }
  319. err2 = xfs_trans_commit(args.trans,
  320. XFS_TRANS_RELEASE_LOG_RES);
  321. xfs_iunlock(dp, XFS_ILOCK_EXCL);
  322. return(error == 0 ? err2 : error);
  323. }
  324. /*
  325. * It won't fit in the shortform, transform to a leaf block.
  326. * GROT: another possible req'mt for a double-split btree op.
  327. */
  328. xfs_bmap_init(args.flist, args.firstblock);
  329. error = xfs_attr_shortform_to_leaf(&args);
  330. if (!error) {
  331. error = xfs_bmap_finish(&args.trans, args.flist,
  332. &committed);
  333. }
  334. if (error) {
  335. ASSERT(committed);
  336. args.trans = NULL;
  337. xfs_bmap_cancel(&flist);
  338. goto out;
  339. }
  340. /*
  341. * bmap_finish() may have committed the last trans and started
  342. * a new one. We need the inode to be in all transactions.
  343. */
  344. if (committed)
  345. xfs_trans_ijoin(args.trans, dp);
  346. /*
  347. * Commit the leaf transformation. We'll need another (linked)
  348. * transaction to add the new attribute to the leaf.
  349. */
  350. error = xfs_trans_roll(&args.trans, dp);
  351. if (error)
  352. goto out;
  353. }
  354. if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
  355. error = xfs_attr_leaf_addname(&args);
  356. } else {
  357. error = xfs_attr_node_addname(&args);
  358. }
  359. if (error) {
  360. goto out;
  361. }
  362. /*
  363. * If this is a synchronous mount, make sure that the
  364. * transaction goes to disk before returning to the user.
  365. */
  366. if (mp->m_flags & XFS_MOUNT_WSYNC) {
  367. xfs_trans_set_sync(args.trans);
  368. }
  369. if ((flags & ATTR_KERNOTIME) == 0)
  370. xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
  371. /*
  372. * Commit the last in the sequence of transactions.
  373. */
  374. xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
  375. error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES);
  376. xfs_iunlock(dp, XFS_ILOCK_EXCL);
  377. return(error);
  378. out:
  379. if (args.trans)
  380. xfs_trans_cancel(args.trans,
  381. XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
  382. xfs_iunlock(dp, XFS_ILOCK_EXCL);
  383. return(error);
  384. }
  385. int
  386. xfs_attr_set(
  387. xfs_inode_t *dp,
  388. const unsigned char *name,
  389. unsigned char *value,
  390. int valuelen,
  391. int flags)
  392. {
  393. int error;
  394. struct xfs_name xname;
  395. XFS_STATS_INC(xs_attr_set);
  396. if (XFS_FORCED_SHUTDOWN(dp->i_mount))
  397. return (EIO);
  398. error = xfs_attr_name_to_xname(&xname, name);
  399. if (error)
  400. return error;
  401. return xfs_attr_set_int(dp, &xname, value, valuelen, flags);
  402. }
  403. /*
  404. * Generic handler routine to remove a name from an attribute list.
  405. * Transitions attribute list from Btree to shortform as necessary.
  406. */
  407. STATIC int
  408. xfs_attr_remove_int(xfs_inode_t *dp, struct xfs_name *name, int flags)
  409. {
  410. xfs_da_args_t args;
  411. xfs_fsblock_t firstblock;
  412. xfs_bmap_free_t flist;
  413. int error;
  414. xfs_mount_t *mp = dp->i_mount;
  415. /*
  416. * Fill in the arg structure for this request.
  417. */
  418. memset((char *)&args, 0, sizeof(args));
  419. args.name = name->name;
  420. args.namelen = name->len;
  421. args.flags = flags;
  422. args.hashval = xfs_da_hashname(args.name, args.namelen);
  423. args.dp = dp;
  424. args.firstblock = &firstblock;
  425. args.flist = &flist;
  426. args.total = 0;
  427. args.whichfork = XFS_ATTR_FORK;
  428. /*
  429. * we have no control over the attribute names that userspace passes us
  430. * to remove, so we have to allow the name lookup prior to attribute
  431. * removal to fail.
  432. */
  433. args.op_flags = XFS_DA_OP_OKNOENT;
  434. /*
  435. * Attach the dquots to the inode.
  436. */
  437. error = xfs_qm_dqattach(dp, 0);
  438. if (error)
  439. return error;
  440. /*
  441. * Start our first transaction of the day.
  442. *
  443. * All future transactions during this code must be "chained" off
  444. * this one via the trans_dup() call. All transactions will contain
  445. * the inode, and the inode will always be marked with trans_ihold().
  446. * Since the inode will be locked in all transactions, we must log
  447. * the inode in every transaction to let it float upward through
  448. * the log.
  449. */
  450. args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_RM);
  451. /*
  452. * Root fork attributes can use reserved data blocks for this
  453. * operation if necessary
  454. */
  455. if (flags & ATTR_ROOT)
  456. args.trans->t_flags |= XFS_TRANS_RESERVE;
  457. if ((error = xfs_trans_reserve(args.trans,
  458. XFS_ATTRRM_SPACE_RES(mp),
  459. XFS_ATTRRM_LOG_RES(mp),
  460. 0, XFS_TRANS_PERM_LOG_RES,
  461. XFS_ATTRRM_LOG_COUNT))) {
  462. xfs_trans_cancel(args.trans, 0);
  463. return(error);
  464. }
  465. xfs_ilock(dp, XFS_ILOCK_EXCL);
  466. /*
  467. * No need to make quota reservations here. We expect to release some
  468. * blocks not allocate in the common case.
  469. */
  470. xfs_trans_ijoin(args.trans, dp);
  471. /*
  472. * Decide on what work routines to call based on the inode size.
  473. */
  474. if (!xfs_inode_hasattr(dp)) {
  475. error = XFS_ERROR(ENOATTR);
  476. goto out;
  477. }
  478. if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
  479. ASSERT(dp->i_afp->if_flags & XFS_IFINLINE);
  480. error = xfs_attr_shortform_remove(&args);
  481. if (error) {
  482. goto out;
  483. }
  484. } else if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
  485. error = xfs_attr_leaf_removename(&args);
  486. } else {
  487. error = xfs_attr_node_removename(&args);
  488. }
  489. if (error) {
  490. goto out;
  491. }
  492. /*
  493. * If this is a synchronous mount, make sure that the
  494. * transaction goes to disk before returning to the user.
  495. */
  496. if (mp->m_flags & XFS_MOUNT_WSYNC) {
  497. xfs_trans_set_sync(args.trans);
  498. }
  499. if ((flags & ATTR_KERNOTIME) == 0)
  500. xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
  501. /*
  502. * Commit the last in the sequence of transactions.
  503. */
  504. xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
  505. error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES);
  506. xfs_iunlock(dp, XFS_ILOCK_EXCL);
  507. return(error);
  508. out:
  509. if (args.trans)
  510. xfs_trans_cancel(args.trans,
  511. XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
  512. xfs_iunlock(dp, XFS_ILOCK_EXCL);
  513. return(error);
  514. }
  515. int
  516. xfs_attr_remove(
  517. xfs_inode_t *dp,
  518. const unsigned char *name,
  519. int flags)
  520. {
  521. int error;
  522. struct xfs_name xname;
  523. XFS_STATS_INC(xs_attr_remove);
  524. if (XFS_FORCED_SHUTDOWN(dp->i_mount))
  525. return (EIO);
  526. error = xfs_attr_name_to_xname(&xname, name);
  527. if (error)
  528. return error;
  529. xfs_ilock(dp, XFS_ILOCK_SHARED);
  530. if (!xfs_inode_hasattr(dp)) {
  531. xfs_iunlock(dp, XFS_ILOCK_SHARED);
  532. return XFS_ERROR(ENOATTR);
  533. }
  534. xfs_iunlock(dp, XFS_ILOCK_SHARED);
  535. return xfs_attr_remove_int(dp, &xname, flags);
  536. }
  537. int
  538. xfs_attr_list_int(xfs_attr_list_context_t *context)
  539. {
  540. int error;
  541. xfs_inode_t *dp = context->dp;
  542. XFS_STATS_INC(xs_attr_list);
  543. if (XFS_FORCED_SHUTDOWN(dp->i_mount))
  544. return EIO;
  545. xfs_ilock(dp, XFS_ILOCK_SHARED);
  546. /*
  547. * Decide on what work routines to call based on the inode size.
  548. */
  549. if (!xfs_inode_hasattr(dp)) {
  550. error = 0;
  551. } else if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
  552. error = xfs_attr_shortform_list(context);
  553. } else if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
  554. error = xfs_attr_leaf_list(context);
  555. } else {
  556. error = xfs_attr_node_list(context);
  557. }
  558. xfs_iunlock(dp, XFS_ILOCK_SHARED);
  559. return error;
  560. }
  561. #define ATTR_ENTBASESIZE /* minimum bytes used by an attr */ \
  562. (((struct attrlist_ent *) 0)->a_name - (char *) 0)
  563. #define ATTR_ENTSIZE(namelen) /* actual bytes used by an attr */ \
  564. ((ATTR_ENTBASESIZE + (namelen) + 1 + sizeof(u_int32_t)-1) \
  565. & ~(sizeof(u_int32_t)-1))
  566. /*
  567. * Format an attribute and copy it out to the user's buffer.
  568. * Take care to check values and protect against them changing later,
  569. * we may be reading them directly out of a user buffer.
  570. */
  571. /*ARGSUSED*/
  572. STATIC int
  573. xfs_attr_put_listent(
  574. xfs_attr_list_context_t *context,
  575. int flags,
  576. unsigned char *name,
  577. int namelen,
  578. int valuelen,
  579. unsigned char *value)
  580. {
  581. struct attrlist *alist = (struct attrlist *)context->alist;
  582. attrlist_ent_t *aep;
  583. int arraytop;
  584. ASSERT(!(context->flags & ATTR_KERNOVAL));
  585. ASSERT(context->count >= 0);
  586. ASSERT(context->count < (ATTR_MAX_VALUELEN/8));
  587. ASSERT(context->firstu >= sizeof(*alist));
  588. ASSERT(context->firstu <= context->bufsize);
  589. /*
  590. * Only list entries in the right namespace.
  591. */
  592. if (((context->flags & ATTR_SECURE) == 0) !=
  593. ((flags & XFS_ATTR_SECURE) == 0))
  594. return 0;
  595. if (((context->flags & ATTR_ROOT) == 0) !=
  596. ((flags & XFS_ATTR_ROOT) == 0))
  597. return 0;
  598. arraytop = sizeof(*alist) +
  599. context->count * sizeof(alist->al_offset[0]);
  600. context->firstu -= ATTR_ENTSIZE(namelen);
  601. if (context->firstu < arraytop) {
  602. trace_xfs_attr_list_full(context);
  603. alist->al_more = 1;
  604. context->seen_enough = 1;
  605. return 1;
  606. }
  607. aep = (attrlist_ent_t *)&context->alist[context->firstu];
  608. aep->a_valuelen = valuelen;
  609. memcpy(aep->a_name, name, namelen);
  610. aep->a_name[namelen] = 0;
  611. alist->al_offset[context->count++] = context->firstu;
  612. alist->al_count = context->count;
  613. trace_xfs_attr_list_add(context);
  614. return 0;
  615. }
  616. /*
  617. * Generate a list of extended attribute names and optionally
  618. * also value lengths. Positive return value follows the XFS
  619. * convention of being an error, zero or negative return code
  620. * is the length of the buffer returned (negated), indicating
  621. * success.
  622. */
  623. int
  624. xfs_attr_list(
  625. xfs_inode_t *dp,
  626. char *buffer,
  627. int bufsize,
  628. int flags,
  629. attrlist_cursor_kern_t *cursor)
  630. {
  631. xfs_attr_list_context_t context;
  632. struct attrlist *alist;
  633. int error;
  634. /*
  635. * Validate the cursor.
  636. */
  637. if (cursor->pad1 || cursor->pad2)
  638. return(XFS_ERROR(EINVAL));
  639. if ((cursor->initted == 0) &&
  640. (cursor->hashval || cursor->blkno || cursor->offset))
  641. return XFS_ERROR(EINVAL);
  642. /*
  643. * Check for a properly aligned buffer.
  644. */
  645. if (((long)buffer) & (sizeof(int)-1))
  646. return XFS_ERROR(EFAULT);
  647. if (flags & ATTR_KERNOVAL)
  648. bufsize = 0;
  649. /*
  650. * Initialize the output buffer.
  651. */
  652. memset(&context, 0, sizeof(context));
  653. context.dp = dp;
  654. context.cursor = cursor;
  655. context.resynch = 1;
  656. context.flags = flags;
  657. context.alist = buffer;
  658. context.bufsize = (bufsize & ~(sizeof(int)-1)); /* align */
  659. context.firstu = context.bufsize;
  660. context.put_listent = xfs_attr_put_listent;
  661. alist = (struct attrlist *)context.alist;
  662. alist->al_count = 0;
  663. alist->al_more = 0;
  664. alist->al_offset[0] = context.bufsize;
  665. error = xfs_attr_list_int(&context);
  666. ASSERT(error >= 0);
  667. return error;
  668. }
  669. int /* error */
  670. xfs_attr_inactive(xfs_inode_t *dp)
  671. {
  672. xfs_trans_t *trans;
  673. xfs_mount_t *mp;
  674. int error;
  675. mp = dp->i_mount;
  676. ASSERT(! XFS_NOT_DQATTACHED(mp, dp));
  677. xfs_ilock(dp, XFS_ILOCK_SHARED);
  678. if (!xfs_inode_hasattr(dp) ||
  679. dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
  680. xfs_iunlock(dp, XFS_ILOCK_SHARED);
  681. return 0;
  682. }
  683. xfs_iunlock(dp, XFS_ILOCK_SHARED);
  684. /*
  685. * Start our first transaction of the day.
  686. *
  687. * All future transactions during this code must be "chained" off
  688. * this one via the trans_dup() call. All transactions will contain
  689. * the inode, and the inode will always be marked with trans_ihold().
  690. * Since the inode will be locked in all transactions, we must log
  691. * the inode in every transaction to let it float upward through
  692. * the log.
  693. */
  694. trans = xfs_trans_alloc(mp, XFS_TRANS_ATTRINVAL);
  695. if ((error = xfs_trans_reserve(trans, 0, XFS_ATTRINVAL_LOG_RES(mp), 0,
  696. XFS_TRANS_PERM_LOG_RES,
  697. XFS_ATTRINVAL_LOG_COUNT))) {
  698. xfs_trans_cancel(trans, 0);
  699. return(error);
  700. }
  701. xfs_ilock(dp, XFS_ILOCK_EXCL);
  702. /*
  703. * No need to make quota reservations here. We expect to release some
  704. * blocks, not allocate, in the common case.
  705. */
  706. xfs_trans_ijoin(trans, dp);
  707. /*
  708. * Decide on what work routines to call based on the inode size.
  709. */
  710. if (!xfs_inode_hasattr(dp) ||
  711. dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
  712. error = 0;
  713. goto out;
  714. }
  715. error = xfs_attr_root_inactive(&trans, dp);
  716. if (error)
  717. goto out;
  718. /*
  719. * Signal synchronous inactive transactions unless this is a
  720. * synchronous mount filesystem in which case we know that we're here
  721. * because we've been called out of xfs_inactive which means that the
  722. * last reference is gone and the unlink transaction has already hit
  723. * the disk so async inactive transactions are safe.
  724. */
  725. if (!(mp->m_flags & XFS_MOUNT_WSYNC)) {
  726. if (dp->i_d.di_anextents > 0)
  727. xfs_trans_set_sync(trans);
  728. }
  729. error = xfs_itruncate_extents(&trans, dp, XFS_ATTR_FORK, 0);
  730. if (error)
  731. goto out;
  732. /*
  733. * Commit the last in the sequence of transactions.
  734. */
  735. xfs_trans_log_inode(trans, dp, XFS_ILOG_CORE);
  736. error = xfs_trans_commit(trans, XFS_TRANS_RELEASE_LOG_RES);
  737. xfs_iunlock(dp, XFS_ILOCK_EXCL);
  738. return(error);
  739. out:
  740. xfs_trans_cancel(trans, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
  741. xfs_iunlock(dp, XFS_ILOCK_EXCL);
  742. return(error);
  743. }
  744. /*========================================================================
  745. * External routines when attribute list is inside the inode
  746. *========================================================================*/
  747. /*
  748. * Add a name to the shortform attribute list structure
  749. * This is the external routine.
  750. */
  751. STATIC int
  752. xfs_attr_shortform_addname(xfs_da_args_t *args)
  753. {
  754. int newsize, forkoff, retval;
  755. retval = xfs_attr_shortform_lookup(args);
  756. if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
  757. return(retval);
  758. } else if (retval == EEXIST) {
  759. if (args->flags & ATTR_CREATE)
  760. return(retval);
  761. retval = xfs_attr_shortform_remove(args);
  762. ASSERT(retval == 0);
  763. }
  764. if (args->namelen >= XFS_ATTR_SF_ENTSIZE_MAX ||
  765. args->valuelen >= XFS_ATTR_SF_ENTSIZE_MAX)
  766. return(XFS_ERROR(ENOSPC));
  767. newsize = XFS_ATTR_SF_TOTSIZE(args->dp);
  768. newsize += XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen);
  769. forkoff = xfs_attr_shortform_bytesfit(args->dp, newsize);
  770. if (!forkoff)
  771. return(XFS_ERROR(ENOSPC));
  772. xfs_attr_shortform_add(args, forkoff);
  773. return(0);
  774. }
  775. /*========================================================================
  776. * External routines when attribute list is one block
  777. *========================================================================*/
  778. /*
  779. * Add a name to the leaf attribute list structure
  780. *
  781. * This leaf block cannot have a "remote" value, we only call this routine
  782. * if bmap_one_block() says there is only one block (ie: no remote blks).
  783. */
  784. STATIC int
  785. xfs_attr_leaf_addname(xfs_da_args_t *args)
  786. {
  787. xfs_inode_t *dp;
  788. xfs_dabuf_t *bp;
  789. int retval, error, committed, forkoff;
  790. /*
  791. * Read the (only) block in the attribute list in.
  792. */
  793. dp = args->dp;
  794. args->blkno = 0;
  795. error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1, &bp,
  796. XFS_ATTR_FORK);
  797. if (error)
  798. return(error);
  799. ASSERT(bp != NULL);
  800. /*
  801. * Look up the given attribute in the leaf block. Figure out if
  802. * the given flags produce an error or call for an atomic rename.
  803. */
  804. retval = xfs_attr_leaf_lookup_int(bp, args);
  805. if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
  806. xfs_da_brelse(args->trans, bp);
  807. return(retval);
  808. } else if (retval == EEXIST) {
  809. if (args->flags & ATTR_CREATE) { /* pure create op */
  810. xfs_da_brelse(args->trans, bp);
  811. return(retval);
  812. }
  813. args->op_flags |= XFS_DA_OP_RENAME; /* an atomic rename */
  814. args->blkno2 = args->blkno; /* set 2nd entry info*/
  815. args->index2 = args->index;
  816. args->rmtblkno2 = args->rmtblkno;
  817. args->rmtblkcnt2 = args->rmtblkcnt;
  818. }
  819. /*
  820. * Add the attribute to the leaf block, transitioning to a Btree
  821. * if required.
  822. */
  823. retval = xfs_attr_leaf_add(bp, args);
  824. xfs_da_buf_done(bp);
  825. if (retval == ENOSPC) {
  826. /*
  827. * Promote the attribute list to the Btree format, then
  828. * Commit that transaction so that the node_addname() call
  829. * can manage its own transactions.
  830. */
  831. xfs_bmap_init(args->flist, args->firstblock);
  832. error = xfs_attr_leaf_to_node(args);
  833. if (!error) {
  834. error = xfs_bmap_finish(&args->trans, args->flist,
  835. &committed);
  836. }
  837. if (error) {
  838. ASSERT(committed);
  839. args->trans = NULL;
  840. xfs_bmap_cancel(args->flist);
  841. return(error);
  842. }
  843. /*
  844. * bmap_finish() may have committed the last trans and started
  845. * a new one. We need the inode to be in all transactions.
  846. */
  847. if (committed)
  848. xfs_trans_ijoin(args->trans, dp);
  849. /*
  850. * Commit the current trans (including the inode) and start
  851. * a new one.
  852. */
  853. error = xfs_trans_roll(&args->trans, dp);
  854. if (error)
  855. return (error);
  856. /*
  857. * Fob the whole rest of the problem off on the Btree code.
  858. */
  859. error = xfs_attr_node_addname(args);
  860. return(error);
  861. }
  862. /*
  863. * Commit the transaction that added the attr name so that
  864. * later routines can manage their own transactions.
  865. */
  866. error = xfs_trans_roll(&args->trans, dp);
  867. if (error)
  868. return (error);
  869. /*
  870. * If there was an out-of-line value, allocate the blocks we
  871. * identified for its storage and copy the value. This is done
  872. * after we create the attribute so that we don't overflow the
  873. * maximum size of a transaction and/or hit a deadlock.
  874. */
  875. if (args->rmtblkno > 0) {
  876. error = xfs_attr_rmtval_set(args);
  877. if (error)
  878. return(error);
  879. }
  880. /*
  881. * If this is an atomic rename operation, we must "flip" the
  882. * incomplete flags on the "new" and "old" attribute/value pairs
  883. * so that one disappears and one appears atomically. Then we
  884. * must remove the "old" attribute/value pair.
  885. */
  886. if (args->op_flags & XFS_DA_OP_RENAME) {
  887. /*
  888. * In a separate transaction, set the incomplete flag on the
  889. * "old" attr and clear the incomplete flag on the "new" attr.
  890. */
  891. error = xfs_attr_leaf_flipflags(args);
  892. if (error)
  893. return(error);
  894. /*
  895. * Dismantle the "old" attribute/value pair by removing
  896. * a "remote" value (if it exists).
  897. */
  898. args->index = args->index2;
  899. args->blkno = args->blkno2;
  900. args->rmtblkno = args->rmtblkno2;
  901. args->rmtblkcnt = args->rmtblkcnt2;
  902. if (args->rmtblkno) {
  903. error = xfs_attr_rmtval_remove(args);
  904. if (error)
  905. return(error);
  906. }
  907. /*
  908. * Read in the block containing the "old" attr, then
  909. * remove the "old" attr from that block (neat, huh!)
  910. */
  911. error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1,
  912. &bp, XFS_ATTR_FORK);
  913. if (error)
  914. return(error);
  915. ASSERT(bp != NULL);
  916. (void)xfs_attr_leaf_remove(bp, args);
  917. /*
  918. * If the result is small enough, shrink it all into the inode.
  919. */
  920. if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
  921. xfs_bmap_init(args->flist, args->firstblock);
  922. error = xfs_attr_leaf_to_shortform(bp, args, forkoff);
  923. /* bp is gone due to xfs_da_shrink_inode */
  924. if (!error) {
  925. error = xfs_bmap_finish(&args->trans,
  926. args->flist,
  927. &committed);
  928. }
  929. if (error) {
  930. ASSERT(committed);
  931. args->trans = NULL;
  932. xfs_bmap_cancel(args->flist);
  933. return(error);
  934. }
  935. /*
  936. * bmap_finish() may have committed the last trans
  937. * and started a new one. We need the inode to be
  938. * in all transactions.
  939. */
  940. if (committed)
  941. xfs_trans_ijoin(args->trans, dp);
  942. } else
  943. xfs_da_buf_done(bp);
  944. /*
  945. * Commit the remove and start the next trans in series.
  946. */
  947. error = xfs_trans_roll(&args->trans, dp);
  948. } else if (args->rmtblkno > 0) {
  949. /*
  950. * Added a "remote" value, just clear the incomplete flag.
  951. */
  952. error = xfs_attr_leaf_clearflag(args);
  953. }
  954. return(error);
  955. }
  956. /*
  957. * Remove a name from the leaf attribute list structure
  958. *
  959. * This leaf block cannot have a "remote" value, we only call this routine
  960. * if bmap_one_block() says there is only one block (ie: no remote blks).
  961. */
  962. STATIC int
  963. xfs_attr_leaf_removename(xfs_da_args_t *args)
  964. {
  965. xfs_inode_t *dp;
  966. xfs_dabuf_t *bp;
  967. int error, committed, forkoff;
  968. /*
  969. * Remove the attribute.
  970. */
  971. dp = args->dp;
  972. args->blkno = 0;
  973. error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1, &bp,
  974. XFS_ATTR_FORK);
  975. if (error) {
  976. return(error);
  977. }
  978. ASSERT(bp != NULL);
  979. error = xfs_attr_leaf_lookup_int(bp, args);
  980. if (error == ENOATTR) {
  981. xfs_da_brelse(args->trans, bp);
  982. return(error);
  983. }
  984. (void)xfs_attr_leaf_remove(bp, args);
  985. /*
  986. * If the result is small enough, shrink it all into the inode.
  987. */
  988. if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
  989. xfs_bmap_init(args->flist, args->firstblock);
  990. error = xfs_attr_leaf_to_shortform(bp, args, forkoff);
  991. /* bp is gone due to xfs_da_shrink_inode */
  992. if (!error) {
  993. error = xfs_bmap_finish(&args->trans, args->flist,
  994. &committed);
  995. }
  996. if (error) {
  997. ASSERT(committed);
  998. args->trans = NULL;
  999. xfs_bmap_cancel(args->flist);
  1000. return(error);
  1001. }
  1002. /*
  1003. * bmap_finish() may have committed the last trans and started
  1004. * a new one. We need the inode to be in all transactions.
  1005. */
  1006. if (committed)
  1007. xfs_trans_ijoin(args->trans, dp);
  1008. } else
  1009. xfs_da_buf_done(bp);
  1010. return(0);
  1011. }
  1012. /*
  1013. * Look up a name in a leaf attribute list structure.
  1014. *
  1015. * This leaf block cannot have a "remote" value, we only call this routine
  1016. * if bmap_one_block() says there is only one block (ie: no remote blks).
  1017. */
  1018. STATIC int
  1019. xfs_attr_leaf_get(xfs_da_args_t *args)
  1020. {
  1021. xfs_dabuf_t *bp;
  1022. int error;
  1023. args->blkno = 0;
  1024. error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1, &bp,
  1025. XFS_ATTR_FORK);
  1026. if (error)
  1027. return(error);
  1028. ASSERT(bp != NULL);
  1029. error = xfs_attr_leaf_lookup_int(bp, args);
  1030. if (error != EEXIST) {
  1031. xfs_da_brelse(args->trans, bp);
  1032. return(error);
  1033. }
  1034. error = xfs_attr_leaf_getvalue(bp, args);
  1035. xfs_da_brelse(args->trans, bp);
  1036. if (!error && (args->rmtblkno > 0) && !(args->flags & ATTR_KERNOVAL)) {
  1037. error = xfs_attr_rmtval_get(args);
  1038. }
  1039. return(error);
  1040. }
  1041. /*
  1042. * Copy out attribute entries for attr_list(), for leaf attribute lists.
  1043. */
  1044. STATIC int
  1045. xfs_attr_leaf_list(xfs_attr_list_context_t *context)
  1046. {
  1047. xfs_attr_leafblock_t *leaf;
  1048. int error;
  1049. xfs_dabuf_t *bp;
  1050. context->cursor->blkno = 0;
  1051. error = xfs_da_read_buf(NULL, context->dp, 0, -1, &bp, XFS_ATTR_FORK);
  1052. if (error)
  1053. return XFS_ERROR(error);
  1054. ASSERT(bp != NULL);
  1055. leaf = bp->data;
  1056. if (unlikely(leaf->hdr.info.magic != cpu_to_be16(XFS_ATTR_LEAF_MAGIC))) {
  1057. XFS_CORRUPTION_ERROR("xfs_attr_leaf_list", XFS_ERRLEVEL_LOW,
  1058. context->dp->i_mount, leaf);
  1059. xfs_da_brelse(NULL, bp);
  1060. return XFS_ERROR(EFSCORRUPTED);
  1061. }
  1062. error = xfs_attr_leaf_list_int(bp, context);
  1063. xfs_da_brelse(NULL, bp);
  1064. return XFS_ERROR(error);
  1065. }
  1066. /*========================================================================
  1067. * External routines when attribute list size > XFS_LBSIZE(mp).
  1068. *========================================================================*/
  1069. /*
  1070. * Add a name to a Btree-format attribute list.
  1071. *
  1072. * This will involve walking down the Btree, and may involve splitting
  1073. * leaf nodes and even splitting intermediate nodes up to and including
  1074. * the root node (a special case of an intermediate node).
  1075. *
  1076. * "Remote" attribute values confuse the issue and atomic rename operations
  1077. * add a whole extra layer of confusion on top of that.
  1078. */
  1079. STATIC int
  1080. xfs_attr_node_addname(xfs_da_args_t *args)
  1081. {
  1082. xfs_da_state_t *state;
  1083. xfs_da_state_blk_t *blk;
  1084. xfs_inode_t *dp;
  1085. xfs_mount_t *mp;
  1086. int committed, retval, error;
  1087. /*
  1088. * Fill in bucket of arguments/results/context to carry around.
  1089. */
  1090. dp = args->dp;
  1091. mp = dp->i_mount;
  1092. restart:
  1093. state = xfs_da_state_alloc();
  1094. state->args = args;
  1095. state->mp = mp;
  1096. state->blocksize = state->mp->m_sb.sb_blocksize;
  1097. state->node_ents = state->mp->m_attr_node_ents;
  1098. /*
  1099. * Search to see if name already exists, and get back a pointer
  1100. * to where it should go.
  1101. */
  1102. error = xfs_da_node_lookup_int(state, &retval);
  1103. if (error)
  1104. goto out;
  1105. blk = &state->path.blk[ state->path.active-1 ];
  1106. ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
  1107. if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
  1108. goto out;
  1109. } else if (retval == EEXIST) {
  1110. if (args->flags & ATTR_CREATE)
  1111. goto out;
  1112. args->op_flags |= XFS_DA_OP_RENAME; /* atomic rename op */
  1113. args->blkno2 = args->blkno; /* set 2nd entry info*/
  1114. args->index2 = args->index;
  1115. args->rmtblkno2 = args->rmtblkno;
  1116. args->rmtblkcnt2 = args->rmtblkcnt;
  1117. args->rmtblkno = 0;
  1118. args->rmtblkcnt = 0;
  1119. }
  1120. retval = xfs_attr_leaf_add(blk->bp, state->args);
  1121. if (retval == ENOSPC) {
  1122. if (state->path.active == 1) {
  1123. /*
  1124. * Its really a single leaf node, but it had
  1125. * out-of-line values so it looked like it *might*
  1126. * have been a b-tree.
  1127. */
  1128. xfs_da_state_free(state);
  1129. xfs_bmap_init(args->flist, args->firstblock);
  1130. error = xfs_attr_leaf_to_node(args);
  1131. if (!error) {
  1132. error = xfs_bmap_finish(&args->trans,
  1133. args->flist,
  1134. &committed);
  1135. }
  1136. if (error) {
  1137. ASSERT(committed);
  1138. args->trans = NULL;
  1139. xfs_bmap_cancel(args->flist);
  1140. goto out;
  1141. }
  1142. /*
  1143. * bmap_finish() may have committed the last trans
  1144. * and started a new one. We need the inode to be
  1145. * in all transactions.
  1146. */
  1147. if (committed)
  1148. xfs_trans_ijoin(args->trans, dp);
  1149. /*
  1150. * Commit the node conversion and start the next
  1151. * trans in the chain.
  1152. */
  1153. error = xfs_trans_roll(&args->trans, dp);
  1154. if (error)
  1155. goto out;
  1156. goto restart;
  1157. }
  1158. /*
  1159. * Split as many Btree elements as required.
  1160. * This code tracks the new and old attr's location
  1161. * in the index/blkno/rmtblkno/rmtblkcnt fields and
  1162. * in the index2/blkno2/rmtblkno2/rmtblkcnt2 fields.
  1163. */
  1164. xfs_bmap_init(args->flist, args->firstblock);
  1165. error = xfs_da_split(state);
  1166. if (!error) {
  1167. error = xfs_bmap_finish(&args->trans, args->flist,
  1168. &committed);
  1169. }
  1170. if (error) {
  1171. ASSERT(committed);
  1172. args->trans = NULL;
  1173. xfs_bmap_cancel(args->flist);
  1174. goto out;
  1175. }
  1176. /*
  1177. * bmap_finish() may have committed the last trans and started
  1178. * a new one. We need the inode to be in all transactions.
  1179. */
  1180. if (committed)
  1181. xfs_trans_ijoin(args->trans, dp);
  1182. } else {
  1183. /*
  1184. * Addition succeeded, update Btree hashvals.
  1185. */
  1186. xfs_da_fixhashpath(state, &state->path);
  1187. }
  1188. /*
  1189. * Kill the state structure, we're done with it and need to
  1190. * allow the buffers to come back later.
  1191. */
  1192. xfs_da_state_free(state);
  1193. state = NULL;
  1194. /*
  1195. * Commit the leaf addition or btree split and start the next
  1196. * trans in the chain.
  1197. */
  1198. error = xfs_trans_roll(&args->trans, dp);
  1199. if (error)
  1200. goto out;
  1201. /*
  1202. * If there was an out-of-line value, allocate the blocks we
  1203. * identified for its storage and copy the value. This is done
  1204. * after we create the attribute so that we don't overflow the
  1205. * maximum size of a transaction and/or hit a deadlock.
  1206. */
  1207. if (args->rmtblkno > 0) {
  1208. error = xfs_attr_rmtval_set(args);
  1209. if (error)
  1210. return(error);
  1211. }
  1212. /*
  1213. * If this is an atomic rename operation, we must "flip" the
  1214. * incomplete flags on the "new" and "old" attribute/value pairs
  1215. * so that one disappears and one appears atomically. Then we
  1216. * must remove the "old" attribute/value pair.
  1217. */
  1218. if (args->op_flags & XFS_DA_OP_RENAME) {
  1219. /*
  1220. * In a separate transaction, set the incomplete flag on the
  1221. * "old" attr and clear the incomplete flag on the "new" attr.
  1222. */
  1223. error = xfs_attr_leaf_flipflags(args);
  1224. if (error)
  1225. goto out;
  1226. /*
  1227. * Dismantle the "old" attribute/value pair by removing
  1228. * a "remote" value (if it exists).
  1229. */
  1230. args->index = args->index2;
  1231. args->blkno = args->blkno2;
  1232. args->rmtblkno = args->rmtblkno2;
  1233. args->rmtblkcnt = args->rmtblkcnt2;
  1234. if (args->rmtblkno) {
  1235. error = xfs_attr_rmtval_remove(args);
  1236. if (error)
  1237. return(error);
  1238. }
  1239. /*
  1240. * Re-find the "old" attribute entry after any split ops.
  1241. * The INCOMPLETE flag means that we will find the "old"
  1242. * attr, not the "new" one.
  1243. */
  1244. args->flags |= XFS_ATTR_INCOMPLETE;
  1245. state = xfs_da_state_alloc();
  1246. state->args = args;
  1247. state->mp = mp;
  1248. state->blocksize = state->mp->m_sb.sb_blocksize;
  1249. state->node_ents = state->mp->m_attr_node_ents;
  1250. state->inleaf = 0;
  1251. error = xfs_da_node_lookup_int(state, &retval);
  1252. if (error)
  1253. goto out;
  1254. /*
  1255. * Remove the name and update the hashvals in the tree.
  1256. */
  1257. blk = &state->path.blk[ state->path.active-1 ];
  1258. ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
  1259. error = xfs_attr_leaf_remove(blk->bp, args);
  1260. xfs_da_fixhashpath(state, &state->path);
  1261. /*
  1262. * Check to see if the tree needs to be collapsed.
  1263. */
  1264. if (retval && (state->path.active > 1)) {
  1265. xfs_bmap_init(args->flist, args->firstblock);
  1266. error = xfs_da_join(state);
  1267. if (!error) {
  1268. error = xfs_bmap_finish(&args->trans,
  1269. args->flist,
  1270. &committed);
  1271. }
  1272. if (error) {
  1273. ASSERT(committed);
  1274. args->trans = NULL;
  1275. xfs_bmap_cancel(args->flist);
  1276. goto out;
  1277. }
  1278. /*
  1279. * bmap_finish() may have committed the last trans
  1280. * and started a new one. We need the inode to be
  1281. * in all transactions.
  1282. */
  1283. if (committed)
  1284. xfs_trans_ijoin(args->trans, dp);
  1285. }
  1286. /*
  1287. * Commit and start the next trans in the chain.
  1288. */
  1289. error = xfs_trans_roll(&args->trans, dp);
  1290. if (error)
  1291. goto out;
  1292. } else if (args->rmtblkno > 0) {
  1293. /*
  1294. * Added a "remote" value, just clear the incomplete flag.
  1295. */
  1296. error = xfs_attr_leaf_clearflag(args);
  1297. if (error)
  1298. goto out;
  1299. }
  1300. retval = error = 0;
  1301. out:
  1302. if (state)
  1303. xfs_da_state_free(state);
  1304. if (error)
  1305. return(error);
  1306. return(retval);
  1307. }
  1308. /*
  1309. * Remove a name from a B-tree attribute list.
  1310. *
  1311. * This will involve walking down the Btree, and may involve joining
  1312. * leaf nodes and even joining intermediate nodes up to and including
  1313. * the root node (a special case of an intermediate node).
  1314. */
  1315. STATIC int
  1316. xfs_attr_node_removename(xfs_da_args_t *args)
  1317. {
  1318. xfs_da_state_t *state;
  1319. xfs_da_state_blk_t *blk;
  1320. xfs_inode_t *dp;
  1321. xfs_dabuf_t *bp;
  1322. int retval, error, committed, forkoff;
  1323. /*
  1324. * Tie a string around our finger to remind us where we are.
  1325. */
  1326. dp = args->dp;
  1327. state = xfs_da_state_alloc();
  1328. state->args = args;
  1329. state->mp = dp->i_mount;
  1330. state->blocksize = state->mp->m_sb.sb_blocksize;
  1331. state->node_ents = state->mp->m_attr_node_ents;
  1332. /*
  1333. * Search to see if name exists, and get back a pointer to it.
  1334. */
  1335. error = xfs_da_node_lookup_int(state, &retval);
  1336. if (error || (retval != EEXIST)) {
  1337. if (error == 0)
  1338. error = retval;
  1339. goto out;
  1340. }
  1341. /*
  1342. * If there is an out-of-line value, de-allocate the blocks.
  1343. * This is done before we remove the attribute so that we don't
  1344. * overflow the maximum size of a transaction and/or hit a deadlock.
  1345. */
  1346. blk = &state->path.blk[ state->path.active-1 ];
  1347. ASSERT(blk->bp != NULL);
  1348. ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
  1349. if (args->rmtblkno > 0) {
  1350. /*
  1351. * Fill in disk block numbers in the state structure
  1352. * so that we can get the buffers back after we commit
  1353. * several transactions in the following calls.
  1354. */
  1355. error = xfs_attr_fillstate(state);
  1356. if (error)
  1357. goto out;
  1358. /*
  1359. * Mark the attribute as INCOMPLETE, then bunmapi() the
  1360. * remote value.
  1361. */
  1362. error = xfs_attr_leaf_setflag(args);
  1363. if (error)
  1364. goto out;
  1365. error = xfs_attr_rmtval_remove(args);
  1366. if (error)
  1367. goto out;
  1368. /*
  1369. * Refill the state structure with buffers, the prior calls
  1370. * released our buffers.
  1371. */
  1372. error = xfs_attr_refillstate(state);
  1373. if (error)
  1374. goto out;
  1375. }
  1376. /*
  1377. * Remove the name and update the hashvals in the tree.
  1378. */
  1379. blk = &state->path.blk[ state->path.active-1 ];
  1380. ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
  1381. retval = xfs_attr_leaf_remove(blk->bp, args);
  1382. xfs_da_fixhashpath(state, &state->path);
  1383. /*
  1384. * Check to see if the tree needs to be collapsed.
  1385. */
  1386. if (retval && (state->path.active > 1)) {
  1387. xfs_bmap_init(args->flist, args->firstblock);
  1388. error = xfs_da_join(state);
  1389. if (!error) {
  1390. error = xfs_bmap_finish(&args->trans, args->flist,
  1391. &committed);
  1392. }
  1393. if (error) {
  1394. ASSERT(committed);
  1395. args->trans = NULL;
  1396. xfs_bmap_cancel(args->flist);
  1397. goto out;
  1398. }
  1399. /*
  1400. * bmap_finish() may have committed the last trans and started
  1401. * a new one. We need the inode to be in all transactions.
  1402. */
  1403. if (committed)
  1404. xfs_trans_ijoin(args->trans, dp);
  1405. /*
  1406. * Commit the Btree join operation and start a new trans.
  1407. */
  1408. error = xfs_trans_roll(&args->trans, dp);
  1409. if (error)
  1410. goto out;
  1411. }
  1412. /*
  1413. * If the result is small enough, push it all into the inode.
  1414. */
  1415. if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
  1416. /*
  1417. * Have to get rid of the copy of this dabuf in the state.
  1418. */
  1419. ASSERT(state->path.active == 1);
  1420. ASSERT(state->path.blk[0].bp);
  1421. xfs_da_buf_done(state->path.blk[0].bp);
  1422. state->path.blk[0].bp = NULL;
  1423. error = xfs_da_read_buf(args->trans, args->dp, 0, -1, &bp,
  1424. XFS_ATTR_FORK);
  1425. if (error)
  1426. goto out;
  1427. ASSERT((((xfs_attr_leafblock_t *)bp->data)->hdr.info.magic) ==
  1428. cpu_to_be16(XFS_ATTR_LEAF_MAGIC));
  1429. if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
  1430. xfs_bmap_init(args->flist, args->firstblock);
  1431. error = xfs_attr_leaf_to_shortform(bp, args, forkoff);
  1432. /* bp is gone due to xfs_da_shrink_inode */
  1433. if (!error) {
  1434. error = xfs_bmap_finish(&args->trans,
  1435. args->flist,
  1436. &committed);
  1437. }
  1438. if (error) {
  1439. ASSERT(committed);
  1440. args->trans = NULL;
  1441. xfs_bmap_cancel(args->flist);
  1442. goto out;
  1443. }
  1444. /*
  1445. * bmap_finish() may have committed the last trans
  1446. * and started a new one. We need the inode to be
  1447. * in all transactions.
  1448. */
  1449. if (committed)
  1450. xfs_trans_ijoin(args->trans, dp);
  1451. } else
  1452. xfs_da_brelse(args->trans, bp);
  1453. }
  1454. error = 0;
  1455. out:
  1456. xfs_da_state_free(state);
  1457. return(error);
  1458. }
  1459. /*
  1460. * Fill in the disk block numbers in the state structure for the buffers
  1461. * that are attached to the state structure.
  1462. * This is done so that we can quickly reattach ourselves to those buffers
  1463. * after some set of transaction commits have released these buffers.
  1464. */
  1465. STATIC int
  1466. xfs_attr_fillstate(xfs_da_state_t *state)
  1467. {
  1468. xfs_da_state_path_t *path;
  1469. xfs_da_state_blk_t *blk;
  1470. int level;
  1471. /*
  1472. * Roll down the "path" in the state structure, storing the on-disk
  1473. * block number for those buffers in the "path".
  1474. */
  1475. path = &state->path;
  1476. ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
  1477. for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
  1478. if (blk->bp) {
  1479. blk->disk_blkno = xfs_da_blkno(blk->bp);
  1480. xfs_da_buf_done(blk->bp);
  1481. blk->bp = NULL;
  1482. } else {
  1483. blk->disk_blkno = 0;
  1484. }
  1485. }
  1486. /*
  1487. * Roll down the "altpath" in the state structure, storing the on-disk
  1488. * block number for those buffers in the "altpath".
  1489. */
  1490. path = &state->altpath;
  1491. ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
  1492. for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
  1493. if (blk->bp) {
  1494. blk->disk_blkno = xfs_da_blkno(blk->bp);
  1495. xfs_da_buf_done(blk->bp);
  1496. blk->bp = NULL;
  1497. } else {
  1498. blk->disk_blkno = 0;
  1499. }
  1500. }
  1501. return(0);
  1502. }
  1503. /*
  1504. * Reattach the buffers to the state structure based on the disk block
  1505. * numbers stored in the state structure.
  1506. * This is done after some set of transaction commits have released those
  1507. * buffers from our grip.
  1508. */
  1509. STATIC int
  1510. xfs_attr_refillstate(xfs_da_state_t *state)
  1511. {
  1512. xfs_da_state_path_t *path;
  1513. xfs_da_state_blk_t *blk;
  1514. int level, error;
  1515. /*
  1516. * Roll down the "path" in the state structure, storing the on-disk
  1517. * block number for those buffers in the "path".
  1518. */
  1519. path = &state->path;
  1520. ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
  1521. for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
  1522. if (blk->disk_blkno) {
  1523. error = xfs_da_read_buf(state->args->trans,
  1524. state->args->dp,
  1525. blk->blkno, blk->disk_blkno,
  1526. &blk->bp, XFS_ATTR_FORK);
  1527. if (error)
  1528. return(error);
  1529. } else {
  1530. blk->bp = NULL;
  1531. }
  1532. }
  1533. /*
  1534. * Roll down the "altpath" in the state structure, storing the on-disk
  1535. * block number for those buffers in the "altpath".
  1536. */
  1537. path = &state->altpath;
  1538. ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
  1539. for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
  1540. if (blk->disk_blkno) {
  1541. error = xfs_da_read_buf(state->args->trans,
  1542. state->args->dp,
  1543. blk->blkno, blk->disk_blkno,
  1544. &blk->bp, XFS_ATTR_FORK);
  1545. if (error)
  1546. return(error);
  1547. } else {
  1548. blk->bp = NULL;
  1549. }
  1550. }
  1551. return(0);
  1552. }
  1553. /*
  1554. * Look up a filename in a node attribute list.
  1555. *
  1556. * This routine gets called for any attribute fork that has more than one
  1557. * block, ie: both true Btree attr lists and for single-leaf-blocks with
  1558. * "remote" values taking up more blocks.
  1559. */
  1560. STATIC int
  1561. xfs_attr_node_get(xfs_da_args_t *args)
  1562. {
  1563. xfs_da_state_t *state;
  1564. xfs_da_state_blk_t *blk;
  1565. int error, retval;
  1566. int i;
  1567. state = xfs_da_state_alloc();
  1568. state->args = args;
  1569. state->mp = args->dp->i_mount;
  1570. state->blocksize = state->mp->m_sb.sb_blocksize;
  1571. state->node_ents = state->mp->m_attr_node_ents;
  1572. /*
  1573. * Search to see if name exists, and get back a pointer to it.
  1574. */
  1575. error = xfs_da_node_lookup_int(state, &retval);
  1576. if (error) {
  1577. retval = error;
  1578. } else if (retval == EEXIST) {
  1579. blk = &state->path.blk[ state->path.active-1 ];
  1580. ASSERT(blk->bp != NULL);
  1581. ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
  1582. /*
  1583. * Get the value, local or "remote"
  1584. */
  1585. retval = xfs_attr_leaf_getvalue(blk->bp, args);
  1586. if (!retval && (args->rmtblkno > 0)
  1587. && !(args->flags & ATTR_KERNOVAL)) {
  1588. retval = xfs_attr_rmtval_get(args);
  1589. }
  1590. }
  1591. /*
  1592. * If not in a transaction, we have to release all the buffers.
  1593. */
  1594. for (i = 0; i < state->path.active; i++) {
  1595. xfs_da_brelse(args->trans, state->path.blk[i].bp);
  1596. state->path.blk[i].bp = NULL;
  1597. }
  1598. xfs_da_state_free(state);
  1599. return(retval);
  1600. }
  1601. STATIC int /* error */
  1602. xfs_attr_node_list(xfs_attr_list_context_t *context)
  1603. {
  1604. attrlist_cursor_kern_t *cursor;
  1605. xfs_attr_leafblock_t *leaf;
  1606. xfs_da_intnode_t *node;
  1607. xfs_da_node_entry_t *btree;
  1608. int error, i;
  1609. xfs_dabuf_t *bp;
  1610. cursor = context->cursor;
  1611. cursor->initted = 1;
  1612. /*
  1613. * Do all sorts of validation on the passed-in cursor structure.
  1614. * If anything is amiss, ignore the cursor and look up the hashval
  1615. * starting from the btree root.
  1616. */
  1617. bp = NULL;
  1618. if (cursor->blkno > 0) {
  1619. error = xfs_da_read_buf(NULL, context->dp, cursor->blkno, -1,
  1620. &bp, XFS_ATTR_FORK);
  1621. if ((error != 0) && (error != EFSCORRUPTED))
  1622. return(error);
  1623. if (bp) {
  1624. node = bp->data;
  1625. switch (be16_to_cpu(node->hdr.info.magic)) {
  1626. case XFS_DA_NODE_MAGIC:
  1627. trace_xfs_attr_list_wrong_blk(context);
  1628. xfs_da_brelse(NULL, bp);
  1629. bp = NULL;
  1630. break;
  1631. case XFS_ATTR_LEAF_MAGIC:
  1632. leaf = bp->data;
  1633. if (cursor->hashval > be32_to_cpu(leaf->entries[
  1634. be16_to_cpu(leaf->hdr.count)-1].hashval)) {
  1635. trace_xfs_attr_list_wrong_blk(context);
  1636. xfs_da_brelse(NULL, bp);
  1637. bp = NULL;
  1638. } else if (cursor->hashval <=
  1639. be32_to_cpu(leaf->entries[0].hashval)) {
  1640. trace_xfs_attr_list_wrong_blk(context);
  1641. xfs_da_brelse(NULL, bp);
  1642. bp = NULL;
  1643. }
  1644. break;
  1645. default:
  1646. trace_xfs_attr_list_wrong_blk(context);
  1647. xfs_da_brelse(NULL, bp);
  1648. bp = NULL;
  1649. }
  1650. }
  1651. }
  1652. /*
  1653. * We did not find what we expected given the cursor's contents,
  1654. * so we start from the top and work down based on the hash value.
  1655. * Note that start of node block is same as start of leaf block.
  1656. */
  1657. if (bp == NULL) {
  1658. cursor->blkno = 0;
  1659. for (;;) {
  1660. error = xfs_da_read_buf(NULL, context->dp,
  1661. cursor->blkno, -1, &bp,
  1662. XFS_ATTR_FORK);
  1663. if (error)
  1664. return(error);
  1665. if (unlikely(bp == NULL)) {
  1666. XFS_ERROR_REPORT("xfs_attr_node_list(2)",
  1667. XFS_ERRLEVEL_LOW,
  1668. context->dp->i_mount);
  1669. return(XFS_ERROR(EFSCORRUPTED));
  1670. }
  1671. node = bp->data;
  1672. if (node->hdr.info.magic ==
  1673. cpu_to_be16(XFS_ATTR_LEAF_MAGIC))
  1674. break;
  1675. if (unlikely(node->hdr.info.magic !=
  1676. cpu_to_be16(XFS_DA_NODE_MAGIC))) {
  1677. XFS_CORRUPTION_ERROR("xfs_attr_node_list(3)",
  1678. XFS_ERRLEVEL_LOW,
  1679. context->dp->i_mount,
  1680. node);
  1681. xfs_da_brelse(NULL, bp);
  1682. return(XFS_ERROR(EFSCORRUPTED));
  1683. }
  1684. btree = node->btree;
  1685. for (i = 0; i < be16_to_cpu(node->hdr.count);
  1686. btree++, i++) {
  1687. if (cursor->hashval
  1688. <= be32_to_cpu(btree->hashval)) {
  1689. cursor->blkno = be32_to_cpu(btree->before);
  1690. trace_xfs_attr_list_node_descend(context,
  1691. btree);
  1692. break;
  1693. }
  1694. }
  1695. if (i == be16_to_cpu(node->hdr.count)) {
  1696. xfs_da_brelse(NULL, bp);
  1697. return(0);
  1698. }
  1699. xfs_da_brelse(NULL, bp);
  1700. }
  1701. }
  1702. ASSERT(bp != NULL);
  1703. /*
  1704. * Roll upward through the blocks, processing each leaf block in
  1705. * order. As long as there is space in the result buffer, keep
  1706. * adding the information.
  1707. */
  1708. for (;;) {
  1709. leaf = bp->data;
  1710. if (unlikely(leaf->hdr.info.magic !=
  1711. cpu_to_be16(XFS_ATTR_LEAF_MAGIC))) {
  1712. XFS_CORRUPTION_ERROR("xfs_attr_node_list(4)",
  1713. XFS_ERRLEVEL_LOW,
  1714. context->dp->i_mount, leaf);
  1715. xfs_da_brelse(NULL, bp);
  1716. return(XFS_ERROR(EFSCORRUPTED));
  1717. }
  1718. error = xfs_attr_leaf_list_int(bp, context);
  1719. if (error) {
  1720. xfs_da_brelse(NULL, bp);
  1721. return error;
  1722. }
  1723. if (context->seen_enough || leaf->hdr.info.forw == 0)
  1724. break;
  1725. cursor->blkno = be32_to_cpu(leaf->hdr.info.forw);
  1726. xfs_da_brelse(NULL, bp);
  1727. error = xfs_da_read_buf(NULL, context->dp, cursor->blkno, -1,
  1728. &bp, XFS_ATTR_FORK);
  1729. if (error)
  1730. return(error);
  1731. if (unlikely((bp == NULL))) {
  1732. XFS_ERROR_REPORT("xfs_attr_node_list(5)",
  1733. XFS_ERRLEVEL_LOW,
  1734. context->dp->i_mount);
  1735. return(XFS_ERROR(EFSCORRUPTED));
  1736. }
  1737. }
  1738. xfs_da_brelse(NULL, bp);
  1739. return(0);
  1740. }
  1741. /*========================================================================
  1742. * External routines for manipulating out-of-line attribute values.
  1743. *========================================================================*/
  1744. /*
  1745. * Read the value associated with an attribute from the out-of-line buffer
  1746. * that we stored it in.
  1747. */
  1748. int
  1749. xfs_attr_rmtval_get(xfs_da_args_t *args)
  1750. {
  1751. xfs_bmbt_irec_t map[ATTR_RMTVALUE_MAPSIZE];
  1752. xfs_mount_t *mp;
  1753. xfs_daddr_t dblkno;
  1754. void *dst;
  1755. xfs_buf_t *bp;
  1756. int nmap, error, tmp, valuelen, blkcnt, i;
  1757. xfs_dablk_t lblkno;
  1758. ASSERT(!(args->flags & ATTR_KERNOVAL));
  1759. mp = args->dp->i_mount;
  1760. dst = args->value;
  1761. valuelen = args->valuelen;
  1762. lblkno = args->rmtblkno;
  1763. while (valuelen > 0) {
  1764. nmap = ATTR_RMTVALUE_MAPSIZE;
  1765. error = xfs_bmapi(args->trans, args->dp, (xfs_fileoff_t)lblkno,
  1766. args->rmtblkcnt,
  1767. XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA,
  1768. NULL, 0, map, &nmap, NULL);
  1769. if (error)
  1770. return(error);
  1771. ASSERT(nmap >= 1);
  1772. for (i = 0; (i < nmap) && (valuelen > 0); i++) {
  1773. ASSERT((map[i].br_startblock != DELAYSTARTBLOCK) &&
  1774. (map[i].br_startblock != HOLESTARTBLOCK));
  1775. dblkno = XFS_FSB_TO_DADDR(mp, map[i].br_startblock);
  1776. blkcnt = XFS_FSB_TO_BB(mp, map[i].br_blockcount);
  1777. error = xfs_read_buf(mp, mp->m_ddev_targp, dblkno,
  1778. blkcnt, XBF_LOCK | XBF_DONT_BLOCK,
  1779. &bp);
  1780. if (error)
  1781. return(error);
  1782. tmp = (valuelen < XFS_BUF_SIZE(bp))
  1783. ? valuelen : XFS_BUF_SIZE(bp);
  1784. xfs_buf_iomove(bp, 0, tmp, dst, XBRW_READ);
  1785. xfs_buf_relse(bp);
  1786. dst += tmp;
  1787. valuelen -= tmp;
  1788. lblkno += map[i].br_blockcount;
  1789. }
  1790. }
  1791. ASSERT(valuelen == 0);
  1792. return(0);
  1793. }
  1794. /*
  1795. * Write the value associated with an attribute into the out-of-line buffer
  1796. * that we have defined for it.
  1797. */
  1798. STATIC int
  1799. xfs_attr_rmtval_set(xfs_da_args_t *args)
  1800. {
  1801. xfs_mount_t *mp;
  1802. xfs_fileoff_t lfileoff;
  1803. xfs_inode_t *dp;
  1804. xfs_bmbt_irec_t map;
  1805. xfs_daddr_t dblkno;
  1806. void *src;
  1807. xfs_buf_t *bp;
  1808. xfs_dablk_t lblkno;
  1809. int blkcnt, valuelen, nmap, error, tmp, committed;
  1810. dp = args->dp;
  1811. mp = dp->i_mount;
  1812. src = args->value;
  1813. /*
  1814. * Find a "hole" in the attribute address space large enough for
  1815. * us to drop the new attribute's value into.
  1816. */
  1817. blkcnt = XFS_B_TO_FSB(mp, args->valuelen);
  1818. lfileoff = 0;
  1819. error = xfs_bmap_first_unused(args->trans, args->dp, blkcnt, &lfileoff,
  1820. XFS_ATTR_FORK);
  1821. if (error) {
  1822. return(error);
  1823. }
  1824. args->rmtblkno = lblkno = (xfs_dablk_t)lfileoff;
  1825. args->rmtblkcnt = blkcnt;
  1826. /*
  1827. * Roll through the "value", allocating blocks on disk as required.
  1828. */
  1829. while (blkcnt > 0) {
  1830. /*
  1831. * Allocate a single extent, up to the size of the value.
  1832. */
  1833. xfs_bmap_init(args->flist, args->firstblock);
  1834. nmap = 1;
  1835. error = xfs_bmapi(args->trans, dp, (xfs_fileoff_t)lblkno,
  1836. blkcnt,
  1837. XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA |
  1838. XFS_BMAPI_WRITE,
  1839. args->firstblock, args->total, &map, &nmap,
  1840. args->flist);
  1841. if (!error) {
  1842. error = xfs_bmap_finish(&args->trans, args->flist,
  1843. &committed);
  1844. }
  1845. if (error) {
  1846. ASSERT(committed);
  1847. args->trans = NULL;
  1848. xfs_bmap_cancel(args->flist);
  1849. return(error);
  1850. }
  1851. /*
  1852. * bmap_finish() may have committed the last trans and started
  1853. * a new one. We need the inode to be in all transactions.
  1854. */
  1855. if (committed)
  1856. xfs_trans_ijoin(args->trans, dp);
  1857. ASSERT(nmap == 1);
  1858. ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
  1859. (map.br_startblock != HOLESTARTBLOCK));
  1860. lblkno += map.br_blockcount;
  1861. blkcnt -= map.br_blockcount;
  1862. /*
  1863. * Start the next trans in the chain.
  1864. */
  1865. error = xfs_trans_roll(&args->trans, dp);
  1866. if (error)
  1867. return (error);
  1868. }
  1869. /*
  1870. * Roll through the "value", copying the attribute value to the
  1871. * already-allocated blocks. Blocks are written synchronously
  1872. * so that we can know they are all on disk before we turn off
  1873. * the INCOMPLETE flag.
  1874. */
  1875. lblkno = args->rmtblkno;
  1876. valuelen = args->valuelen;
  1877. while (valuelen > 0) {
  1878. /*
  1879. * Try to remember where we decided to put the value.
  1880. */
  1881. xfs_bmap_init(args->flist, args->firstblock);
  1882. nmap = 1;
  1883. error = xfs_bmapi(NULL, dp, (xfs_fileoff_t)lblkno,
  1884. args->rmtblkcnt,
  1885. XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA,
  1886. args->firstblock, 0, &map, &nmap,
  1887. NULL);
  1888. if (error) {
  1889. return(error);
  1890. }
  1891. ASSERT(nmap == 1);
  1892. ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
  1893. (map.br_startblock != HOLESTARTBLOCK));
  1894. dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
  1895. blkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
  1896. bp = xfs_buf_get(mp->m_ddev_targp, dblkno, blkcnt,
  1897. XBF_LOCK | XBF_DONT_BLOCK);
  1898. ASSERT(bp);
  1899. ASSERT(!XFS_BUF_GETERROR(bp));
  1900. tmp = (valuelen < XFS_BUF_SIZE(bp)) ? valuelen :
  1901. XFS_BUF_SIZE(bp);
  1902. xfs_buf_iomove(bp, 0, tmp, src, XBRW_WRITE);
  1903. if (tmp < XFS_BUF_SIZE(bp))
  1904. xfs_buf_zero(bp, tmp, XFS_BUF_SIZE(bp) - tmp);
  1905. if ((error = xfs_bwrite(mp, bp))) {/* GROT: NOTE: synchronous write */
  1906. return (error);
  1907. }
  1908. src += tmp;
  1909. valuelen -= tmp;
  1910. lblkno += map.br_blockcount;
  1911. }
  1912. ASSERT(valuelen == 0);
  1913. return(0);
  1914. }
  1915. /*
  1916. * Remove the value associated with an attribute by deleting the
  1917. * out-of-line buffer that it is stored on.
  1918. */
  1919. STATIC int
  1920. xfs_attr_rmtval_remove(xfs_da_args_t *args)
  1921. {
  1922. xfs_mount_t *mp;
  1923. xfs_bmbt_irec_t map;
  1924. xfs_buf_t *bp;
  1925. xfs_daddr_t dblkno;
  1926. xfs_dablk_t lblkno;
  1927. int valuelen, blkcnt, nmap, error, done, committed;
  1928. mp = args->dp->i_mount;
  1929. /*
  1930. * Roll through the "value", invalidating the attribute value's
  1931. * blocks.
  1932. */
  1933. lblkno = args->rmtblkno;
  1934. valuelen = args->rmtblkcnt;
  1935. while (valuelen > 0) {
  1936. /*
  1937. * Try to remember where we decided to put the value.
  1938. */
  1939. xfs_bmap_init(args->flist, args->firstblock);
  1940. nmap = 1;
  1941. error = xfs_bmapi(NULL, args->dp, (xfs_fileoff_t)lblkno,
  1942. args->rmtblkcnt,
  1943. XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA,
  1944. args->firstblock, 0, &map, &nmap,
  1945. args->flist);
  1946. if (error) {
  1947. return(error);
  1948. }
  1949. ASSERT(nmap == 1);
  1950. ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
  1951. (map.br_startblock != HOLESTARTBLOCK));
  1952. dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
  1953. blkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
  1954. /*
  1955. * If the "remote" value is in the cache, remove it.
  1956. */
  1957. bp = xfs_incore(mp->m_ddev_targp, dblkno, blkcnt, XBF_TRYLOCK);
  1958. if (bp) {
  1959. XFS_BUF_STALE(bp);
  1960. XFS_BUF_UNDELAYWRITE(bp);
  1961. xfs_buf_relse(bp);
  1962. bp = NULL;
  1963. }
  1964. valuelen -= map.br_blockcount;
  1965. lblkno += map.br_blockcount;
  1966. }
  1967. /*
  1968. * Keep de-allocating extents until the remote-value region is gone.
  1969. */
  1970. lblkno = args->rmtblkno;
  1971. blkcnt = args->rmtblkcnt;
  1972. done = 0;
  1973. while (!done) {
  1974. xfs_bmap_init(args->flist, args->firstblock);
  1975. error = xfs_bunmapi(args->trans, args->dp, lblkno, blkcnt,
  1976. XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA,
  1977. 1, args->firstblock, args->flist,
  1978. &done);
  1979. if (!error) {
  1980. error = xfs_bmap_finish(&args->trans, args->flist,
  1981. &committed);
  1982. }
  1983. if (error) {
  1984. ASSERT(committed);
  1985. args->trans = NULL;
  1986. xfs_bmap_cancel(args->flist);
  1987. return(error);
  1988. }
  1989. /*
  1990. * bmap_finish() may have committed the last trans and started
  1991. * a new one. We need the inode to be in all transactions.
  1992. */
  1993. if (committed)
  1994. xfs_trans_ijoin(args->trans, args->dp);
  1995. /*
  1996. * Close out trans and start the next one in the chain.
  1997. */
  1998. error = xfs_trans_roll(&args->trans, args->dp);
  1999. if (error)
  2000. return (error);
  2001. }
  2002. return(0);
  2003. }