rgrp.c 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
  4. *
  5. * This copyrighted material is made available to anyone wishing to use,
  6. * modify, copy, or redistribute it subject to the terms and conditions
  7. * of the GNU General Public License version 2.
  8. */
  9. #include <linux/slab.h>
  10. #include <linux/spinlock.h>
  11. #include <linux/completion.h>
  12. #include <linux/buffer_head.h>
  13. #include <linux/fs.h>
  14. #include <linux/gfs2_ondisk.h>
  15. #include <linux/lm_interface.h>
  16. #include <linux/prefetch.h>
  17. #include "gfs2.h"
  18. #include "incore.h"
  19. #include "glock.h"
  20. #include "glops.h"
  21. #include "lops.h"
  22. #include "meta_io.h"
  23. #include "quota.h"
  24. #include "rgrp.h"
  25. #include "super.h"
  26. #include "trans.h"
  27. #include "util.h"
  28. #include "log.h"
  29. #include "inode.h"
  30. #include "ops_address.h"
  31. #define BFITNOENT ((u32)~0)
  32. #define NO_BLOCK ((u64)~0)
  33. #if BITS_PER_LONG == 32
  34. #define LBITMASK (0x55555555UL)
  35. #define LBITSKIP55 (0x55555555UL)
  36. #define LBITSKIP00 (0x00000000UL)
  37. #else
  38. #define LBITMASK (0x5555555555555555UL)
  39. #define LBITSKIP55 (0x5555555555555555UL)
  40. #define LBITSKIP00 (0x0000000000000000UL)
  41. #endif
  42. /*
  43. * These routines are used by the resource group routines (rgrp.c)
  44. * to keep track of block allocation. Each block is represented by two
  45. * bits. So, each byte represents GFS2_NBBY (i.e. 4) blocks.
  46. *
  47. * 0 = Free
  48. * 1 = Used (not metadata)
  49. * 2 = Unlinked (still in use) inode
  50. * 3 = Used (metadata)
  51. */
  52. static const char valid_change[16] = {
  53. /* current */
  54. /* n */ 0, 1, 1, 1,
  55. /* e */ 1, 0, 0, 0,
  56. /* w */ 0, 0, 0, 1,
  57. 1, 0, 0, 0
  58. };
  59. static u32 rgblk_search(struct gfs2_rgrpd *rgd, u32 goal,
  60. unsigned char old_state, unsigned char new_state,
  61. unsigned int *n);
  62. /**
  63. * gfs2_setbit - Set a bit in the bitmaps
  64. * @buffer: the buffer that holds the bitmaps
  65. * @buflen: the length (in bytes) of the buffer
  66. * @block: the block to set
  67. * @new_state: the new state of the block
  68. *
  69. */
  70. static inline void gfs2_setbit(struct gfs2_rgrpd *rgd, unsigned char *buf1,
  71. unsigned char *buf2, unsigned int offset,
  72. unsigned int buflen, u32 block,
  73. unsigned char new_state)
  74. {
  75. unsigned char *byte1, *byte2, *end, cur_state;
  76. const unsigned int bit = (block % GFS2_NBBY) * GFS2_BIT_SIZE;
  77. byte1 = buf1 + offset + (block / GFS2_NBBY);
  78. end = buf1 + offset + buflen;
  79. BUG_ON(byte1 >= end);
  80. cur_state = (*byte1 >> bit) & GFS2_BIT_MASK;
  81. if (unlikely(!valid_change[new_state * 4 + cur_state])) {
  82. gfs2_consist_rgrpd(rgd);
  83. return;
  84. }
  85. *byte1 ^= (cur_state ^ new_state) << bit;
  86. if (buf2) {
  87. byte2 = buf2 + offset + (block / GFS2_NBBY);
  88. cur_state = (*byte2 >> bit) & GFS2_BIT_MASK;
  89. *byte2 ^= (cur_state ^ new_state) << bit;
  90. }
  91. }
  92. /**
  93. * gfs2_testbit - test a bit in the bitmaps
  94. * @buffer: the buffer that holds the bitmaps
  95. * @buflen: the length (in bytes) of the buffer
  96. * @block: the block to read
  97. *
  98. */
  99. static inline unsigned char gfs2_testbit(struct gfs2_rgrpd *rgd,
  100. const unsigned char *buffer,
  101. unsigned int buflen, u32 block)
  102. {
  103. const unsigned char *byte, *end;
  104. unsigned char cur_state;
  105. unsigned int bit;
  106. byte = buffer + (block / GFS2_NBBY);
  107. bit = (block % GFS2_NBBY) * GFS2_BIT_SIZE;
  108. end = buffer + buflen;
  109. gfs2_assert(rgd->rd_sbd, byte < end);
  110. cur_state = (*byte >> bit) & GFS2_BIT_MASK;
  111. return cur_state;
  112. }
  113. /**
  114. * gfs2_bitfit - Search an rgrp's bitmap buffer to find a bit-pair representing
  115. * a block in a given allocation state.
  116. * @buffer: the buffer that holds the bitmaps
  117. * @buflen: the length (in bytes) of the buffer
  118. * @goal: start search at this block's bit-pair (within @buffer)
  119. * @old_state: GFS2_BLKST_XXX the state of the block we're looking for.
  120. *
  121. * Scope of @goal and returned block number is only within this bitmap buffer,
  122. * not entire rgrp or filesystem. @buffer will be offset from the actual
  123. * beginning of a bitmap block buffer, skipping any header structures.
  124. *
  125. * Return: the block number (bitmap buffer scope) that was found
  126. */
  127. static u32 gfs2_bitfit(const u8 *buffer, unsigned int buflen, u32 goal,
  128. u8 old_state)
  129. {
  130. const u8 *byte, *start, *end;
  131. int bit, startbit;
  132. u32 g1, g2, misaligned;
  133. unsigned long *plong;
  134. unsigned long lskipval;
  135. lskipval = (old_state & GFS2_BLKST_USED) ? LBITSKIP00 : LBITSKIP55;
  136. g1 = (goal / GFS2_NBBY);
  137. start = buffer + g1;
  138. byte = start;
  139. end = buffer + buflen;
  140. g2 = ALIGN(g1, sizeof(unsigned long));
  141. plong = (unsigned long *)(buffer + g2);
  142. startbit = bit = (goal % GFS2_NBBY) * GFS2_BIT_SIZE;
  143. misaligned = g2 - g1;
  144. if (!misaligned)
  145. goto ulong_aligned;
  146. /* parse the bitmap a byte at a time */
  147. misaligned:
  148. while (byte < end) {
  149. if (((*byte >> bit) & GFS2_BIT_MASK) == old_state) {
  150. return goal +
  151. (((byte - start) * GFS2_NBBY) +
  152. ((bit - startbit) >> 1));
  153. }
  154. bit += GFS2_BIT_SIZE;
  155. if (bit >= GFS2_NBBY * GFS2_BIT_SIZE) {
  156. bit = 0;
  157. byte++;
  158. misaligned--;
  159. if (!misaligned) {
  160. plong = (unsigned long *)byte;
  161. goto ulong_aligned;
  162. }
  163. }
  164. }
  165. return BFITNOENT;
  166. /* parse the bitmap a unsigned long at a time */
  167. ulong_aligned:
  168. /* Stop at "end - 1" or else prefetch can go past the end and segfault.
  169. We could "if" it but we'd lose some of the performance gained.
  170. This way will only slow down searching the very last 4/8 bytes
  171. depending on architecture. I've experimented with several ways
  172. of writing this section such as using an else before the goto
  173. but this one seems to be the fastest. */
  174. while ((unsigned char *)plong < end - sizeof(unsigned long)) {
  175. prefetch(plong + 1);
  176. if (((*plong) & LBITMASK) != lskipval)
  177. break;
  178. plong++;
  179. }
  180. if ((unsigned char *)plong < end) {
  181. byte = (const u8 *)plong;
  182. misaligned += sizeof(unsigned long) - 1;
  183. goto misaligned;
  184. }
  185. return BFITNOENT;
  186. }
  187. /**
  188. * gfs2_bitcount - count the number of bits in a certain state
  189. * @buffer: the buffer that holds the bitmaps
  190. * @buflen: the length (in bytes) of the buffer
  191. * @state: the state of the block we're looking for
  192. *
  193. * Returns: The number of bits
  194. */
  195. static u32 gfs2_bitcount(struct gfs2_rgrpd *rgd, const u8 *buffer,
  196. unsigned int buflen, u8 state)
  197. {
  198. const u8 *byte = buffer;
  199. const u8 *end = buffer + buflen;
  200. const u8 state1 = state << 2;
  201. const u8 state2 = state << 4;
  202. const u8 state3 = state << 6;
  203. u32 count = 0;
  204. for (; byte < end; byte++) {
  205. if (((*byte) & 0x03) == state)
  206. count++;
  207. if (((*byte) & 0x0C) == state1)
  208. count++;
  209. if (((*byte) & 0x30) == state2)
  210. count++;
  211. if (((*byte) & 0xC0) == state3)
  212. count++;
  213. }
  214. return count;
  215. }
  216. /**
  217. * gfs2_rgrp_verify - Verify that a resource group is consistent
  218. * @sdp: the filesystem
  219. * @rgd: the rgrp
  220. *
  221. */
  222. void gfs2_rgrp_verify(struct gfs2_rgrpd *rgd)
  223. {
  224. struct gfs2_sbd *sdp = rgd->rd_sbd;
  225. struct gfs2_bitmap *bi = NULL;
  226. u32 length = rgd->rd_length;
  227. u32 count[4], tmp;
  228. int buf, x;
  229. memset(count, 0, 4 * sizeof(u32));
  230. /* Count # blocks in each of 4 possible allocation states */
  231. for (buf = 0; buf < length; buf++) {
  232. bi = rgd->rd_bits + buf;
  233. for (x = 0; x < 4; x++)
  234. count[x] += gfs2_bitcount(rgd,
  235. bi->bi_bh->b_data +
  236. bi->bi_offset,
  237. bi->bi_len, x);
  238. }
  239. if (count[0] != rgd->rd_rg.rg_free) {
  240. if (gfs2_consist_rgrpd(rgd))
  241. fs_err(sdp, "free data mismatch: %u != %u\n",
  242. count[0], rgd->rd_rg.rg_free);
  243. return;
  244. }
  245. tmp = rgd->rd_data -
  246. rgd->rd_rg.rg_free -
  247. rgd->rd_rg.rg_dinodes;
  248. if (count[1] + count[2] != tmp) {
  249. if (gfs2_consist_rgrpd(rgd))
  250. fs_err(sdp, "used data mismatch: %u != %u\n",
  251. count[1], tmp);
  252. return;
  253. }
  254. if (count[3] != rgd->rd_rg.rg_dinodes) {
  255. if (gfs2_consist_rgrpd(rgd))
  256. fs_err(sdp, "used metadata mismatch: %u != %u\n",
  257. count[3], rgd->rd_rg.rg_dinodes);
  258. return;
  259. }
  260. if (count[2] > count[3]) {
  261. if (gfs2_consist_rgrpd(rgd))
  262. fs_err(sdp, "unlinked inodes > inodes: %u\n",
  263. count[2]);
  264. return;
  265. }
  266. }
  267. static inline int rgrp_contains_block(struct gfs2_rgrpd *rgd, u64 block)
  268. {
  269. u64 first = rgd->rd_data0;
  270. u64 last = first + rgd->rd_data;
  271. return first <= block && block < last;
  272. }
  273. /**
  274. * gfs2_blk2rgrpd - Find resource group for a given data/meta block number
  275. * @sdp: The GFS2 superblock
  276. * @n: The data block number
  277. *
  278. * Returns: The resource group, or NULL if not found
  279. */
  280. struct gfs2_rgrpd *gfs2_blk2rgrpd(struct gfs2_sbd *sdp, u64 blk)
  281. {
  282. struct gfs2_rgrpd *rgd;
  283. spin_lock(&sdp->sd_rindex_spin);
  284. list_for_each_entry(rgd, &sdp->sd_rindex_mru_list, rd_list_mru) {
  285. if (rgrp_contains_block(rgd, blk)) {
  286. list_move(&rgd->rd_list_mru, &sdp->sd_rindex_mru_list);
  287. spin_unlock(&sdp->sd_rindex_spin);
  288. return rgd;
  289. }
  290. }
  291. spin_unlock(&sdp->sd_rindex_spin);
  292. return NULL;
  293. }
  294. /**
  295. * gfs2_rgrpd_get_first - get the first Resource Group in the filesystem
  296. * @sdp: The GFS2 superblock
  297. *
  298. * Returns: The first rgrp in the filesystem
  299. */
  300. struct gfs2_rgrpd *gfs2_rgrpd_get_first(struct gfs2_sbd *sdp)
  301. {
  302. gfs2_assert(sdp, !list_empty(&sdp->sd_rindex_list));
  303. return list_entry(sdp->sd_rindex_list.next, struct gfs2_rgrpd, rd_list);
  304. }
  305. /**
  306. * gfs2_rgrpd_get_next - get the next RG
  307. * @rgd: A RG
  308. *
  309. * Returns: The next rgrp
  310. */
  311. struct gfs2_rgrpd *gfs2_rgrpd_get_next(struct gfs2_rgrpd *rgd)
  312. {
  313. if (rgd->rd_list.next == &rgd->rd_sbd->sd_rindex_list)
  314. return NULL;
  315. return list_entry(rgd->rd_list.next, struct gfs2_rgrpd, rd_list);
  316. }
  317. static void clear_rgrpdi(struct gfs2_sbd *sdp)
  318. {
  319. struct list_head *head;
  320. struct gfs2_rgrpd *rgd;
  321. struct gfs2_glock *gl;
  322. spin_lock(&sdp->sd_rindex_spin);
  323. sdp->sd_rindex_forward = NULL;
  324. spin_unlock(&sdp->sd_rindex_spin);
  325. head = &sdp->sd_rindex_list;
  326. while (!list_empty(head)) {
  327. rgd = list_entry(head->next, struct gfs2_rgrpd, rd_list);
  328. gl = rgd->rd_gl;
  329. list_del(&rgd->rd_list);
  330. list_del(&rgd->rd_list_mru);
  331. if (gl) {
  332. gl->gl_object = NULL;
  333. gfs2_glock_put(gl);
  334. }
  335. kfree(rgd->rd_bits);
  336. kmem_cache_free(gfs2_rgrpd_cachep, rgd);
  337. }
  338. }
  339. void gfs2_clear_rgrpd(struct gfs2_sbd *sdp)
  340. {
  341. mutex_lock(&sdp->sd_rindex_mutex);
  342. clear_rgrpdi(sdp);
  343. mutex_unlock(&sdp->sd_rindex_mutex);
  344. }
  345. static void gfs2_rindex_print(const struct gfs2_rgrpd *rgd)
  346. {
  347. printk(KERN_INFO " ri_addr = %llu\n", (unsigned long long)rgd->rd_addr);
  348. printk(KERN_INFO " ri_length = %u\n", rgd->rd_length);
  349. printk(KERN_INFO " ri_data0 = %llu\n", (unsigned long long)rgd->rd_data0);
  350. printk(KERN_INFO " ri_data = %u\n", rgd->rd_data);
  351. printk(KERN_INFO " ri_bitbytes = %u\n", rgd->rd_bitbytes);
  352. }
  353. /**
  354. * gfs2_compute_bitstructs - Compute the bitmap sizes
  355. * @rgd: The resource group descriptor
  356. *
  357. * Calculates bitmap descriptors, one for each block that contains bitmap data
  358. *
  359. * Returns: errno
  360. */
  361. static int compute_bitstructs(struct gfs2_rgrpd *rgd)
  362. {
  363. struct gfs2_sbd *sdp = rgd->rd_sbd;
  364. struct gfs2_bitmap *bi;
  365. u32 length = rgd->rd_length; /* # blocks in hdr & bitmap */
  366. u32 bytes_left, bytes;
  367. int x;
  368. if (!length)
  369. return -EINVAL;
  370. rgd->rd_bits = kcalloc(length, sizeof(struct gfs2_bitmap), GFP_NOFS);
  371. if (!rgd->rd_bits)
  372. return -ENOMEM;
  373. bytes_left = rgd->rd_bitbytes;
  374. for (x = 0; x < length; x++) {
  375. bi = rgd->rd_bits + x;
  376. /* small rgrp; bitmap stored completely in header block */
  377. if (length == 1) {
  378. bytes = bytes_left;
  379. bi->bi_offset = sizeof(struct gfs2_rgrp);
  380. bi->bi_start = 0;
  381. bi->bi_len = bytes;
  382. /* header block */
  383. } else if (x == 0) {
  384. bytes = sdp->sd_sb.sb_bsize - sizeof(struct gfs2_rgrp);
  385. bi->bi_offset = sizeof(struct gfs2_rgrp);
  386. bi->bi_start = 0;
  387. bi->bi_len = bytes;
  388. /* last block */
  389. } else if (x + 1 == length) {
  390. bytes = bytes_left;
  391. bi->bi_offset = sizeof(struct gfs2_meta_header);
  392. bi->bi_start = rgd->rd_bitbytes - bytes_left;
  393. bi->bi_len = bytes;
  394. /* other blocks */
  395. } else {
  396. bytes = sdp->sd_sb.sb_bsize -
  397. sizeof(struct gfs2_meta_header);
  398. bi->bi_offset = sizeof(struct gfs2_meta_header);
  399. bi->bi_start = rgd->rd_bitbytes - bytes_left;
  400. bi->bi_len = bytes;
  401. }
  402. bytes_left -= bytes;
  403. }
  404. if (bytes_left) {
  405. gfs2_consist_rgrpd(rgd);
  406. return -EIO;
  407. }
  408. bi = rgd->rd_bits + (length - 1);
  409. if ((bi->bi_start + bi->bi_len) * GFS2_NBBY != rgd->rd_data) {
  410. if (gfs2_consist_rgrpd(rgd)) {
  411. gfs2_rindex_print(rgd);
  412. fs_err(sdp, "start=%u len=%u offset=%u\n",
  413. bi->bi_start, bi->bi_len, bi->bi_offset);
  414. }
  415. return -EIO;
  416. }
  417. return 0;
  418. }
  419. /**
  420. * gfs2_ri_total - Total up the file system space, according to the rindex.
  421. *
  422. */
  423. u64 gfs2_ri_total(struct gfs2_sbd *sdp)
  424. {
  425. u64 total_data = 0;
  426. struct inode *inode = sdp->sd_rindex;
  427. struct gfs2_inode *ip = GFS2_I(inode);
  428. char buf[sizeof(struct gfs2_rindex)];
  429. struct file_ra_state ra_state;
  430. int error, rgrps;
  431. mutex_lock(&sdp->sd_rindex_mutex);
  432. file_ra_state_init(&ra_state, inode->i_mapping);
  433. for (rgrps = 0;; rgrps++) {
  434. loff_t pos = rgrps * sizeof(struct gfs2_rindex);
  435. if (pos + sizeof(struct gfs2_rindex) >= ip->i_di.di_size)
  436. break;
  437. error = gfs2_internal_read(ip, &ra_state, buf, &pos,
  438. sizeof(struct gfs2_rindex));
  439. if (error != sizeof(struct gfs2_rindex))
  440. break;
  441. total_data += be32_to_cpu(((struct gfs2_rindex *)buf)->ri_data);
  442. }
  443. mutex_unlock(&sdp->sd_rindex_mutex);
  444. return total_data;
  445. }
  446. static void gfs2_rindex_in(struct gfs2_rgrpd *rgd, const void *buf)
  447. {
  448. const struct gfs2_rindex *str = buf;
  449. rgd->rd_addr = be64_to_cpu(str->ri_addr);
  450. rgd->rd_length = be32_to_cpu(str->ri_length);
  451. rgd->rd_data0 = be64_to_cpu(str->ri_data0);
  452. rgd->rd_data = be32_to_cpu(str->ri_data);
  453. rgd->rd_bitbytes = be32_to_cpu(str->ri_bitbytes);
  454. }
  455. /**
  456. * read_rindex_entry - Pull in a new resource index entry from the disk
  457. * @gl: The glock covering the rindex inode
  458. *
  459. * Returns: 0 on success, error code otherwise
  460. */
  461. static int read_rindex_entry(struct gfs2_inode *ip,
  462. struct file_ra_state *ra_state)
  463. {
  464. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  465. loff_t pos = sdp->sd_rgrps * sizeof(struct gfs2_rindex);
  466. char buf[sizeof(struct gfs2_rindex)];
  467. int error;
  468. struct gfs2_rgrpd *rgd;
  469. error = gfs2_internal_read(ip, ra_state, buf, &pos,
  470. sizeof(struct gfs2_rindex));
  471. if (!error)
  472. return 0;
  473. if (error != sizeof(struct gfs2_rindex)) {
  474. if (error > 0)
  475. error = -EIO;
  476. return error;
  477. }
  478. rgd = kmem_cache_zalloc(gfs2_rgrpd_cachep, GFP_NOFS);
  479. error = -ENOMEM;
  480. if (!rgd)
  481. return error;
  482. mutex_init(&rgd->rd_mutex);
  483. lops_init_le(&rgd->rd_le, &gfs2_rg_lops);
  484. rgd->rd_sbd = sdp;
  485. list_add_tail(&rgd->rd_list, &sdp->sd_rindex_list);
  486. list_add_tail(&rgd->rd_list_mru, &sdp->sd_rindex_mru_list);
  487. gfs2_rindex_in(rgd, buf);
  488. error = compute_bitstructs(rgd);
  489. if (error)
  490. return error;
  491. error = gfs2_glock_get(sdp, rgd->rd_addr,
  492. &gfs2_rgrp_glops, CREATE, &rgd->rd_gl);
  493. if (error)
  494. return error;
  495. rgd->rd_gl->gl_object = rgd;
  496. rgd->rd_flags &= ~GFS2_RDF_UPTODATE;
  497. rgd->rd_flags |= GFS2_RDF_CHECK;
  498. return error;
  499. }
  500. /**
  501. * gfs2_ri_update - Pull in a new resource index from the disk
  502. * @ip: pointer to the rindex inode
  503. *
  504. * Returns: 0 on successful update, error code otherwise
  505. */
  506. static int gfs2_ri_update(struct gfs2_inode *ip)
  507. {
  508. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  509. struct inode *inode = &ip->i_inode;
  510. struct file_ra_state ra_state;
  511. u64 rgrp_count = ip->i_di.di_size;
  512. int error;
  513. if (do_div(rgrp_count, sizeof(struct gfs2_rindex))) {
  514. gfs2_consist_inode(ip);
  515. return -EIO;
  516. }
  517. clear_rgrpdi(sdp);
  518. file_ra_state_init(&ra_state, inode->i_mapping);
  519. for (sdp->sd_rgrps = 0; sdp->sd_rgrps < rgrp_count; sdp->sd_rgrps++) {
  520. error = read_rindex_entry(ip, &ra_state);
  521. if (error) {
  522. clear_rgrpdi(sdp);
  523. return error;
  524. }
  525. }
  526. sdp->sd_rindex_uptodate = 1;
  527. return 0;
  528. }
  529. /**
  530. * gfs2_ri_update_special - Pull in a new resource index from the disk
  531. *
  532. * This is a special version that's safe to call from gfs2_inplace_reserve_i.
  533. * In this case we know that we don't have any resource groups in memory yet.
  534. *
  535. * @ip: pointer to the rindex inode
  536. *
  537. * Returns: 0 on successful update, error code otherwise
  538. */
  539. static int gfs2_ri_update_special(struct gfs2_inode *ip)
  540. {
  541. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  542. struct inode *inode = &ip->i_inode;
  543. struct file_ra_state ra_state;
  544. int error;
  545. file_ra_state_init(&ra_state, inode->i_mapping);
  546. for (sdp->sd_rgrps = 0;; sdp->sd_rgrps++) {
  547. /* Ignore partials */
  548. if ((sdp->sd_rgrps + 1) * sizeof(struct gfs2_rindex) >
  549. ip->i_di.di_size)
  550. break;
  551. error = read_rindex_entry(ip, &ra_state);
  552. if (error) {
  553. clear_rgrpdi(sdp);
  554. return error;
  555. }
  556. }
  557. sdp->sd_rindex_uptodate = 1;
  558. return 0;
  559. }
  560. /**
  561. * gfs2_rindex_hold - Grab a lock on the rindex
  562. * @sdp: The GFS2 superblock
  563. * @ri_gh: the glock holder
  564. *
  565. * We grab a lock on the rindex inode to make sure that it doesn't
  566. * change whilst we are performing an operation. We keep this lock
  567. * for quite long periods of time compared to other locks. This
  568. * doesn't matter, since it is shared and it is very, very rarely
  569. * accessed in the exclusive mode (i.e. only when expanding the filesystem).
  570. *
  571. * This makes sure that we're using the latest copy of the resource index
  572. * special file, which might have been updated if someone expanded the
  573. * filesystem (via gfs2_grow utility), which adds new resource groups.
  574. *
  575. * Returns: 0 on success, error code otherwise
  576. */
  577. int gfs2_rindex_hold(struct gfs2_sbd *sdp, struct gfs2_holder *ri_gh)
  578. {
  579. struct gfs2_inode *ip = GFS2_I(sdp->sd_rindex);
  580. struct gfs2_glock *gl = ip->i_gl;
  581. int error;
  582. error = gfs2_glock_nq_init(gl, LM_ST_SHARED, 0, ri_gh);
  583. if (error)
  584. return error;
  585. /* Read new copy from disk if we don't have the latest */
  586. if (!sdp->sd_rindex_uptodate) {
  587. mutex_lock(&sdp->sd_rindex_mutex);
  588. if (!sdp->sd_rindex_uptodate) {
  589. error = gfs2_ri_update(ip);
  590. if (error)
  591. gfs2_glock_dq_uninit(ri_gh);
  592. }
  593. mutex_unlock(&sdp->sd_rindex_mutex);
  594. }
  595. return error;
  596. }
  597. static void gfs2_rgrp_in(struct gfs2_rgrpd *rgd, const void *buf)
  598. {
  599. const struct gfs2_rgrp *str = buf;
  600. struct gfs2_rgrp_host *rg = &rgd->rd_rg;
  601. u32 rg_flags;
  602. rg_flags = be32_to_cpu(str->rg_flags);
  603. if (rg_flags & GFS2_RGF_NOALLOC)
  604. rgd->rd_flags |= GFS2_RDF_NOALLOC;
  605. else
  606. rgd->rd_flags &= ~GFS2_RDF_NOALLOC;
  607. rg->rg_free = be32_to_cpu(str->rg_free);
  608. rg->rg_dinodes = be32_to_cpu(str->rg_dinodes);
  609. rg->rg_igeneration = be64_to_cpu(str->rg_igeneration);
  610. }
  611. static void gfs2_rgrp_out(struct gfs2_rgrpd *rgd, void *buf)
  612. {
  613. struct gfs2_rgrp *str = buf;
  614. struct gfs2_rgrp_host *rg = &rgd->rd_rg;
  615. u32 rg_flags = 0;
  616. if (rgd->rd_flags & GFS2_RDF_NOALLOC)
  617. rg_flags |= GFS2_RGF_NOALLOC;
  618. str->rg_flags = cpu_to_be32(rg_flags);
  619. str->rg_free = cpu_to_be32(rg->rg_free);
  620. str->rg_dinodes = cpu_to_be32(rg->rg_dinodes);
  621. str->__pad = cpu_to_be32(0);
  622. str->rg_igeneration = cpu_to_be64(rg->rg_igeneration);
  623. memset(&str->rg_reserved, 0, sizeof(str->rg_reserved));
  624. }
  625. /**
  626. * gfs2_rgrp_bh_get - Read in a RG's header and bitmaps
  627. * @rgd: the struct gfs2_rgrpd describing the RG to read in
  628. *
  629. * Read in all of a Resource Group's header and bitmap blocks.
  630. * Caller must eventually call gfs2_rgrp_relse() to free the bitmaps.
  631. *
  632. * Returns: errno
  633. */
  634. int gfs2_rgrp_bh_get(struct gfs2_rgrpd *rgd)
  635. {
  636. struct gfs2_sbd *sdp = rgd->rd_sbd;
  637. struct gfs2_glock *gl = rgd->rd_gl;
  638. unsigned int length = rgd->rd_length;
  639. struct gfs2_bitmap *bi;
  640. unsigned int x, y;
  641. int error;
  642. mutex_lock(&rgd->rd_mutex);
  643. spin_lock(&sdp->sd_rindex_spin);
  644. if (rgd->rd_bh_count) {
  645. rgd->rd_bh_count++;
  646. spin_unlock(&sdp->sd_rindex_spin);
  647. mutex_unlock(&rgd->rd_mutex);
  648. return 0;
  649. }
  650. spin_unlock(&sdp->sd_rindex_spin);
  651. for (x = 0; x < length; x++) {
  652. bi = rgd->rd_bits + x;
  653. error = gfs2_meta_read(gl, rgd->rd_addr + x, 0, &bi->bi_bh);
  654. if (error)
  655. goto fail;
  656. }
  657. for (y = length; y--;) {
  658. bi = rgd->rd_bits + y;
  659. error = gfs2_meta_wait(sdp, bi->bi_bh);
  660. if (error)
  661. goto fail;
  662. if (gfs2_metatype_check(sdp, bi->bi_bh, y ? GFS2_METATYPE_RB :
  663. GFS2_METATYPE_RG)) {
  664. error = -EIO;
  665. goto fail;
  666. }
  667. }
  668. if (!(rgd->rd_flags & GFS2_RDF_UPTODATE)) {
  669. gfs2_rgrp_in(rgd, (rgd->rd_bits[0].bi_bh)->b_data);
  670. rgd->rd_flags |= GFS2_RDF_UPTODATE;
  671. }
  672. spin_lock(&sdp->sd_rindex_spin);
  673. rgd->rd_free_clone = rgd->rd_rg.rg_free;
  674. rgd->rd_bh_count++;
  675. spin_unlock(&sdp->sd_rindex_spin);
  676. mutex_unlock(&rgd->rd_mutex);
  677. return 0;
  678. fail:
  679. while (x--) {
  680. bi = rgd->rd_bits + x;
  681. brelse(bi->bi_bh);
  682. bi->bi_bh = NULL;
  683. gfs2_assert_warn(sdp, !bi->bi_clone);
  684. }
  685. mutex_unlock(&rgd->rd_mutex);
  686. return error;
  687. }
  688. void gfs2_rgrp_bh_hold(struct gfs2_rgrpd *rgd)
  689. {
  690. struct gfs2_sbd *sdp = rgd->rd_sbd;
  691. spin_lock(&sdp->sd_rindex_spin);
  692. gfs2_assert_warn(rgd->rd_sbd, rgd->rd_bh_count);
  693. rgd->rd_bh_count++;
  694. spin_unlock(&sdp->sd_rindex_spin);
  695. }
  696. /**
  697. * gfs2_rgrp_bh_put - Release RG bitmaps read in with gfs2_rgrp_bh_get()
  698. * @rgd: the struct gfs2_rgrpd describing the RG to read in
  699. *
  700. */
  701. void gfs2_rgrp_bh_put(struct gfs2_rgrpd *rgd)
  702. {
  703. struct gfs2_sbd *sdp = rgd->rd_sbd;
  704. int x, length = rgd->rd_length;
  705. spin_lock(&sdp->sd_rindex_spin);
  706. gfs2_assert_warn(rgd->rd_sbd, rgd->rd_bh_count);
  707. if (--rgd->rd_bh_count) {
  708. spin_unlock(&sdp->sd_rindex_spin);
  709. return;
  710. }
  711. for (x = 0; x < length; x++) {
  712. struct gfs2_bitmap *bi = rgd->rd_bits + x;
  713. kfree(bi->bi_clone);
  714. bi->bi_clone = NULL;
  715. brelse(bi->bi_bh);
  716. bi->bi_bh = NULL;
  717. }
  718. spin_unlock(&sdp->sd_rindex_spin);
  719. }
  720. void gfs2_rgrp_repolish_clones(struct gfs2_rgrpd *rgd)
  721. {
  722. struct gfs2_sbd *sdp = rgd->rd_sbd;
  723. unsigned int length = rgd->rd_length;
  724. unsigned int x;
  725. for (x = 0; x < length; x++) {
  726. struct gfs2_bitmap *bi = rgd->rd_bits + x;
  727. if (!bi->bi_clone)
  728. continue;
  729. memcpy(bi->bi_clone + bi->bi_offset,
  730. bi->bi_bh->b_data + bi->bi_offset, bi->bi_len);
  731. }
  732. spin_lock(&sdp->sd_rindex_spin);
  733. rgd->rd_free_clone = rgd->rd_rg.rg_free;
  734. spin_unlock(&sdp->sd_rindex_spin);
  735. }
  736. /**
  737. * gfs2_alloc_get - get the struct gfs2_alloc structure for an inode
  738. * @ip: the incore GFS2 inode structure
  739. *
  740. * Returns: the struct gfs2_alloc
  741. */
  742. struct gfs2_alloc *gfs2_alloc_get(struct gfs2_inode *ip)
  743. {
  744. BUG_ON(ip->i_alloc != NULL);
  745. ip->i_alloc = kzalloc(sizeof(struct gfs2_alloc), GFP_KERNEL);
  746. return ip->i_alloc;
  747. }
  748. /**
  749. * try_rgrp_fit - See if a given reservation will fit in a given RG
  750. * @rgd: the RG data
  751. * @al: the struct gfs2_alloc structure describing the reservation
  752. *
  753. * If there's room for the requested blocks to be allocated from the RG:
  754. * Sets the $al_rgd field in @al.
  755. *
  756. * Returns: 1 on success (it fits), 0 on failure (it doesn't fit)
  757. */
  758. static int try_rgrp_fit(struct gfs2_rgrpd *rgd, struct gfs2_alloc *al)
  759. {
  760. struct gfs2_sbd *sdp = rgd->rd_sbd;
  761. int ret = 0;
  762. if (rgd->rd_flags & GFS2_RDF_NOALLOC)
  763. return 0;
  764. spin_lock(&sdp->sd_rindex_spin);
  765. if (rgd->rd_free_clone >= al->al_requested) {
  766. al->al_rgd = rgd;
  767. ret = 1;
  768. }
  769. spin_unlock(&sdp->sd_rindex_spin);
  770. return ret;
  771. }
  772. /**
  773. * try_rgrp_unlink - Look for any unlinked, allocated, but unused inodes
  774. * @rgd: The rgrp
  775. *
  776. * Returns: The inode, if one has been found
  777. */
  778. static struct inode *try_rgrp_unlink(struct gfs2_rgrpd *rgd, u64 *last_unlinked)
  779. {
  780. struct inode *inode;
  781. u32 goal = 0, block;
  782. u64 no_addr;
  783. struct gfs2_sbd *sdp = rgd->rd_sbd;
  784. unsigned int n;
  785. for(;;) {
  786. if (goal >= rgd->rd_data)
  787. break;
  788. down_write(&sdp->sd_log_flush_lock);
  789. n = 1;
  790. block = rgblk_search(rgd, goal, GFS2_BLKST_UNLINKED,
  791. GFS2_BLKST_UNLINKED, &n);
  792. up_write(&sdp->sd_log_flush_lock);
  793. if (block == BFITNOENT)
  794. break;
  795. /* rgblk_search can return a block < goal, so we need to
  796. keep it marching forward. */
  797. no_addr = block + rgd->rd_data0;
  798. goal++;
  799. if (*last_unlinked != NO_BLOCK && no_addr <= *last_unlinked)
  800. continue;
  801. *last_unlinked = no_addr;
  802. inode = gfs2_inode_lookup(rgd->rd_sbd->sd_vfs, DT_UNKNOWN,
  803. no_addr, -1, 1);
  804. if (!IS_ERR(inode))
  805. return inode;
  806. }
  807. rgd->rd_flags &= ~GFS2_RDF_CHECK;
  808. return NULL;
  809. }
  810. /**
  811. * recent_rgrp_next - get next RG from "recent" list
  812. * @cur_rgd: current rgrp
  813. *
  814. * Returns: The next rgrp in the recent list
  815. */
  816. static struct gfs2_rgrpd *recent_rgrp_next(struct gfs2_rgrpd *cur_rgd)
  817. {
  818. struct gfs2_sbd *sdp = cur_rgd->rd_sbd;
  819. struct list_head *head;
  820. struct gfs2_rgrpd *rgd;
  821. spin_lock(&sdp->sd_rindex_spin);
  822. head = &sdp->sd_rindex_mru_list;
  823. if (unlikely(cur_rgd->rd_list_mru.next == head)) {
  824. spin_unlock(&sdp->sd_rindex_spin);
  825. return NULL;
  826. }
  827. rgd = list_entry(cur_rgd->rd_list_mru.next, struct gfs2_rgrpd, rd_list_mru);
  828. spin_unlock(&sdp->sd_rindex_spin);
  829. return rgd;
  830. }
  831. /**
  832. * forward_rgrp_get - get an rgrp to try next from full list
  833. * @sdp: The GFS2 superblock
  834. *
  835. * Returns: The rgrp to try next
  836. */
  837. static struct gfs2_rgrpd *forward_rgrp_get(struct gfs2_sbd *sdp)
  838. {
  839. struct gfs2_rgrpd *rgd;
  840. unsigned int journals = gfs2_jindex_size(sdp);
  841. unsigned int rg = 0, x;
  842. spin_lock(&sdp->sd_rindex_spin);
  843. rgd = sdp->sd_rindex_forward;
  844. if (!rgd) {
  845. if (sdp->sd_rgrps >= journals)
  846. rg = sdp->sd_rgrps * sdp->sd_jdesc->jd_jid / journals;
  847. for (x = 0, rgd = gfs2_rgrpd_get_first(sdp); x < rg;
  848. x++, rgd = gfs2_rgrpd_get_next(rgd))
  849. /* Do Nothing */;
  850. sdp->sd_rindex_forward = rgd;
  851. }
  852. spin_unlock(&sdp->sd_rindex_spin);
  853. return rgd;
  854. }
  855. /**
  856. * forward_rgrp_set - set the forward rgrp pointer
  857. * @sdp: the filesystem
  858. * @rgd: The new forward rgrp
  859. *
  860. */
  861. static void forward_rgrp_set(struct gfs2_sbd *sdp, struct gfs2_rgrpd *rgd)
  862. {
  863. spin_lock(&sdp->sd_rindex_spin);
  864. sdp->sd_rindex_forward = rgd;
  865. spin_unlock(&sdp->sd_rindex_spin);
  866. }
  867. /**
  868. * get_local_rgrp - Choose and lock a rgrp for allocation
  869. * @ip: the inode to reserve space for
  870. * @rgp: the chosen and locked rgrp
  871. *
  872. * Try to acquire rgrp in way which avoids contending with others.
  873. *
  874. * Returns: errno
  875. */
  876. static struct inode *get_local_rgrp(struct gfs2_inode *ip, u64 *last_unlinked)
  877. {
  878. struct inode *inode = NULL;
  879. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  880. struct gfs2_rgrpd *rgd, *begin = NULL;
  881. struct gfs2_alloc *al = ip->i_alloc;
  882. int flags = LM_FLAG_TRY;
  883. int skipped = 0;
  884. int loops = 0;
  885. int error, rg_locked;
  886. rgd = gfs2_blk2rgrpd(sdp, ip->i_goal);
  887. while (rgd) {
  888. rg_locked = 0;
  889. if (gfs2_glock_is_locked_by_me(rgd->rd_gl)) {
  890. rg_locked = 1;
  891. error = 0;
  892. } else {
  893. error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE,
  894. LM_FLAG_TRY, &al->al_rgd_gh);
  895. }
  896. switch (error) {
  897. case 0:
  898. if (try_rgrp_fit(rgd, al))
  899. goto out;
  900. if (rgd->rd_flags & GFS2_RDF_CHECK)
  901. inode = try_rgrp_unlink(rgd, last_unlinked);
  902. if (!rg_locked)
  903. gfs2_glock_dq_uninit(&al->al_rgd_gh);
  904. if (inode)
  905. return inode;
  906. /* fall through */
  907. case GLR_TRYFAILED:
  908. rgd = recent_rgrp_next(rgd);
  909. break;
  910. default:
  911. return ERR_PTR(error);
  912. }
  913. }
  914. /* Go through full list of rgrps */
  915. begin = rgd = forward_rgrp_get(sdp);
  916. for (;;) {
  917. rg_locked = 0;
  918. if (gfs2_glock_is_locked_by_me(rgd->rd_gl)) {
  919. rg_locked = 1;
  920. error = 0;
  921. } else {
  922. error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, flags,
  923. &al->al_rgd_gh);
  924. }
  925. switch (error) {
  926. case 0:
  927. if (try_rgrp_fit(rgd, al))
  928. goto out;
  929. if (rgd->rd_flags & GFS2_RDF_CHECK)
  930. inode = try_rgrp_unlink(rgd, last_unlinked);
  931. if (!rg_locked)
  932. gfs2_glock_dq_uninit(&al->al_rgd_gh);
  933. if (inode)
  934. return inode;
  935. break;
  936. case GLR_TRYFAILED:
  937. skipped++;
  938. break;
  939. default:
  940. return ERR_PTR(error);
  941. }
  942. rgd = gfs2_rgrpd_get_next(rgd);
  943. if (!rgd)
  944. rgd = gfs2_rgrpd_get_first(sdp);
  945. if (rgd == begin) {
  946. if (++loops >= 3)
  947. return ERR_PTR(-ENOSPC);
  948. if (!skipped)
  949. loops++;
  950. flags = 0;
  951. if (loops == 2)
  952. gfs2_log_flush(sdp, NULL);
  953. }
  954. }
  955. out:
  956. if (begin) {
  957. spin_lock(&sdp->sd_rindex_spin);
  958. list_move(&rgd->rd_list_mru, &sdp->sd_rindex_mru_list);
  959. spin_unlock(&sdp->sd_rindex_spin);
  960. rgd = gfs2_rgrpd_get_next(rgd);
  961. if (!rgd)
  962. rgd = gfs2_rgrpd_get_first(sdp);
  963. forward_rgrp_set(sdp, rgd);
  964. }
  965. return NULL;
  966. }
  967. /**
  968. * gfs2_inplace_reserve_i - Reserve space in the filesystem
  969. * @ip: the inode to reserve space for
  970. *
  971. * Returns: errno
  972. */
  973. int gfs2_inplace_reserve_i(struct gfs2_inode *ip, char *file, unsigned int line)
  974. {
  975. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  976. struct gfs2_alloc *al = ip->i_alloc;
  977. struct inode *inode;
  978. int error = 0;
  979. u64 last_unlinked = NO_BLOCK;
  980. if (gfs2_assert_warn(sdp, al->al_requested))
  981. return -EINVAL;
  982. try_again:
  983. /* We need to hold the rindex unless the inode we're using is
  984. the rindex itself, in which case it's already held. */
  985. if (ip != GFS2_I(sdp->sd_rindex))
  986. error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
  987. else if (!sdp->sd_rgrps) /* We may not have the rindex read in, so: */
  988. error = gfs2_ri_update_special(ip);
  989. if (error)
  990. return error;
  991. inode = get_local_rgrp(ip, &last_unlinked);
  992. if (inode) {
  993. if (ip != GFS2_I(sdp->sd_rindex))
  994. gfs2_glock_dq_uninit(&al->al_ri_gh);
  995. if (IS_ERR(inode))
  996. return PTR_ERR(inode);
  997. iput(inode);
  998. gfs2_log_flush(sdp, NULL);
  999. goto try_again;
  1000. }
  1001. al->al_file = file;
  1002. al->al_line = line;
  1003. return 0;
  1004. }
  1005. /**
  1006. * gfs2_inplace_release - release an inplace reservation
  1007. * @ip: the inode the reservation was taken out on
  1008. *
  1009. * Release a reservation made by gfs2_inplace_reserve().
  1010. */
  1011. void gfs2_inplace_release(struct gfs2_inode *ip)
  1012. {
  1013. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  1014. struct gfs2_alloc *al = ip->i_alloc;
  1015. if (gfs2_assert_warn(sdp, al->al_alloced <= al->al_requested) == -1)
  1016. fs_warn(sdp, "al_alloced = %u, al_requested = %u "
  1017. "al_file = %s, al_line = %u\n",
  1018. al->al_alloced, al->al_requested, al->al_file,
  1019. al->al_line);
  1020. al->al_rgd = NULL;
  1021. if (al->al_rgd_gh.gh_gl)
  1022. gfs2_glock_dq_uninit(&al->al_rgd_gh);
  1023. if (ip != GFS2_I(sdp->sd_rindex))
  1024. gfs2_glock_dq_uninit(&al->al_ri_gh);
  1025. }
  1026. /**
  1027. * gfs2_get_block_type - Check a block in a RG is of given type
  1028. * @rgd: the resource group holding the block
  1029. * @block: the block number
  1030. *
  1031. * Returns: The block type (GFS2_BLKST_*)
  1032. */
  1033. unsigned char gfs2_get_block_type(struct gfs2_rgrpd *rgd, u64 block)
  1034. {
  1035. struct gfs2_bitmap *bi = NULL;
  1036. u32 length, rgrp_block, buf_block;
  1037. unsigned int buf;
  1038. unsigned char type;
  1039. length = rgd->rd_length;
  1040. rgrp_block = block - rgd->rd_data0;
  1041. for (buf = 0; buf < length; buf++) {
  1042. bi = rgd->rd_bits + buf;
  1043. if (rgrp_block < (bi->bi_start + bi->bi_len) * GFS2_NBBY)
  1044. break;
  1045. }
  1046. gfs2_assert(rgd->rd_sbd, buf < length);
  1047. buf_block = rgrp_block - bi->bi_start * GFS2_NBBY;
  1048. type = gfs2_testbit(rgd, bi->bi_bh->b_data + bi->bi_offset,
  1049. bi->bi_len, buf_block);
  1050. return type;
  1051. }
  1052. /**
  1053. * rgblk_search - find a block in @old_state, change allocation
  1054. * state to @new_state
  1055. * @rgd: the resource group descriptor
  1056. * @goal: the goal block within the RG (start here to search for avail block)
  1057. * @old_state: GFS2_BLKST_XXX the before-allocation state to find
  1058. * @new_state: GFS2_BLKST_XXX the after-allocation block state
  1059. * @n: The extent length
  1060. *
  1061. * Walk rgrp's bitmap to find bits that represent a block in @old_state.
  1062. * Add the found bitmap buffer to the transaction.
  1063. * Set the found bits to @new_state to change block's allocation state.
  1064. *
  1065. * This function never fails, because we wouldn't call it unless we
  1066. * know (from reservation results, etc.) that a block is available.
  1067. *
  1068. * Scope of @goal and returned block is just within rgrp, not the whole
  1069. * filesystem.
  1070. *
  1071. * Returns: the block number allocated
  1072. */
  1073. static u32 rgblk_search(struct gfs2_rgrpd *rgd, u32 goal,
  1074. unsigned char old_state, unsigned char new_state,
  1075. unsigned int *n)
  1076. {
  1077. struct gfs2_bitmap *bi = NULL;
  1078. const u32 length = rgd->rd_length;
  1079. u32 blk = 0;
  1080. unsigned int buf, x;
  1081. const unsigned int elen = *n;
  1082. const u8 *buffer;
  1083. *n = 0;
  1084. /* Find bitmap block that contains bits for goal block */
  1085. for (buf = 0; buf < length; buf++) {
  1086. bi = rgd->rd_bits + buf;
  1087. if (goal < (bi->bi_start + bi->bi_len) * GFS2_NBBY)
  1088. break;
  1089. }
  1090. gfs2_assert(rgd->rd_sbd, buf < length);
  1091. /* Convert scope of "goal" from rgrp-wide to within found bit block */
  1092. goal -= bi->bi_start * GFS2_NBBY;
  1093. /* Search (up to entire) bitmap in this rgrp for allocatable block.
  1094. "x <= length", instead of "x < length", because we typically start
  1095. the search in the middle of a bit block, but if we can't find an
  1096. allocatable block anywhere else, we want to be able wrap around and
  1097. search in the first part of our first-searched bit block. */
  1098. for (x = 0; x <= length; x++) {
  1099. /* The GFS2_BLKST_UNLINKED state doesn't apply to the clone
  1100. bitmaps, so we must search the originals for that. */
  1101. buffer = bi->bi_bh->b_data + bi->bi_offset;
  1102. if (old_state != GFS2_BLKST_UNLINKED && bi->bi_clone)
  1103. buffer = bi->bi_clone + bi->bi_offset;
  1104. blk = gfs2_bitfit(buffer, bi->bi_len, goal, old_state);
  1105. if (blk != BFITNOENT)
  1106. break;
  1107. /* Try next bitmap block (wrap back to rgrp header if at end) */
  1108. buf = (buf + 1) % length;
  1109. bi = rgd->rd_bits + buf;
  1110. goal = 0;
  1111. }
  1112. if (blk != BFITNOENT && old_state != new_state) {
  1113. *n = 1;
  1114. gfs2_trans_add_bh(rgd->rd_gl, bi->bi_bh, 1);
  1115. gfs2_setbit(rgd, bi->bi_bh->b_data, bi->bi_clone, bi->bi_offset,
  1116. bi->bi_len, blk, new_state);
  1117. goal = blk;
  1118. while (*n < elen) {
  1119. goal++;
  1120. if (goal >= (bi->bi_len * GFS2_NBBY))
  1121. break;
  1122. if (gfs2_testbit(rgd, buffer, bi->bi_len, goal) !=
  1123. GFS2_BLKST_FREE)
  1124. break;
  1125. gfs2_setbit(rgd, bi->bi_bh->b_data, bi->bi_clone,
  1126. bi->bi_offset, bi->bi_len, goal,
  1127. new_state);
  1128. (*n)++;
  1129. }
  1130. }
  1131. return (blk == BFITNOENT) ? blk : (bi->bi_start * GFS2_NBBY) + blk;
  1132. }
  1133. /**
  1134. * rgblk_free - Change alloc state of given block(s)
  1135. * @sdp: the filesystem
  1136. * @bstart: the start of a run of blocks to free
  1137. * @blen: the length of the block run (all must lie within ONE RG!)
  1138. * @new_state: GFS2_BLKST_XXX the after-allocation block state
  1139. *
  1140. * Returns: Resource group containing the block(s)
  1141. */
  1142. static struct gfs2_rgrpd *rgblk_free(struct gfs2_sbd *sdp, u64 bstart,
  1143. u32 blen, unsigned char new_state)
  1144. {
  1145. struct gfs2_rgrpd *rgd;
  1146. struct gfs2_bitmap *bi = NULL;
  1147. u32 length, rgrp_blk, buf_blk;
  1148. unsigned int buf;
  1149. rgd = gfs2_blk2rgrpd(sdp, bstart);
  1150. if (!rgd) {
  1151. if (gfs2_consist(sdp))
  1152. fs_err(sdp, "block = %llu\n", (unsigned long long)bstart);
  1153. return NULL;
  1154. }
  1155. length = rgd->rd_length;
  1156. rgrp_blk = bstart - rgd->rd_data0;
  1157. while (blen--) {
  1158. for (buf = 0; buf < length; buf++) {
  1159. bi = rgd->rd_bits + buf;
  1160. if (rgrp_blk < (bi->bi_start + bi->bi_len) * GFS2_NBBY)
  1161. break;
  1162. }
  1163. gfs2_assert(rgd->rd_sbd, buf < length);
  1164. buf_blk = rgrp_blk - bi->bi_start * GFS2_NBBY;
  1165. rgrp_blk++;
  1166. if (!bi->bi_clone) {
  1167. bi->bi_clone = kmalloc(bi->bi_bh->b_size,
  1168. GFP_NOFS | __GFP_NOFAIL);
  1169. memcpy(bi->bi_clone + bi->bi_offset,
  1170. bi->bi_bh->b_data + bi->bi_offset,
  1171. bi->bi_len);
  1172. }
  1173. gfs2_trans_add_bh(rgd->rd_gl, bi->bi_bh, 1);
  1174. gfs2_setbit(rgd, bi->bi_bh->b_data, NULL, bi->bi_offset,
  1175. bi->bi_len, buf_blk, new_state);
  1176. }
  1177. return rgd;
  1178. }
  1179. /**
  1180. * gfs2_alloc_block - Allocate a block
  1181. * @ip: the inode to allocate the block for
  1182. *
  1183. * Returns: the allocated block
  1184. */
  1185. u64 gfs2_alloc_block(struct gfs2_inode *ip, unsigned int *n)
  1186. {
  1187. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  1188. struct gfs2_alloc *al = ip->i_alloc;
  1189. struct gfs2_rgrpd *rgd = al->al_rgd;
  1190. u32 goal, blk;
  1191. u64 block;
  1192. if (rgrp_contains_block(rgd, ip->i_goal))
  1193. goal = ip->i_goal - rgd->rd_data0;
  1194. else
  1195. goal = rgd->rd_last_alloc;
  1196. blk = rgblk_search(rgd, goal, GFS2_BLKST_FREE, GFS2_BLKST_USED, n);
  1197. BUG_ON(blk == BFITNOENT);
  1198. rgd->rd_last_alloc = blk;
  1199. block = rgd->rd_data0 + blk;
  1200. ip->i_goal = block;
  1201. gfs2_assert_withdraw(sdp, rgd->rd_rg.rg_free >= *n);
  1202. rgd->rd_rg.rg_free -= *n;
  1203. gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
  1204. gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
  1205. al->al_alloced += *n;
  1206. gfs2_statfs_change(sdp, 0, -(s64)*n, 0);
  1207. gfs2_quota_change(ip, *n, ip->i_inode.i_uid, ip->i_inode.i_gid);
  1208. spin_lock(&sdp->sd_rindex_spin);
  1209. rgd->rd_free_clone -= *n;
  1210. spin_unlock(&sdp->sd_rindex_spin);
  1211. return block;
  1212. }
  1213. /**
  1214. * gfs2_alloc_di - Allocate a dinode
  1215. * @dip: the directory that the inode is going in
  1216. *
  1217. * Returns: the block allocated
  1218. */
  1219. u64 gfs2_alloc_di(struct gfs2_inode *dip, u64 *generation)
  1220. {
  1221. struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
  1222. struct gfs2_alloc *al = dip->i_alloc;
  1223. struct gfs2_rgrpd *rgd = al->al_rgd;
  1224. u32 blk;
  1225. u64 block;
  1226. unsigned int n = 1;
  1227. blk = rgblk_search(rgd, rgd->rd_last_alloc,
  1228. GFS2_BLKST_FREE, GFS2_BLKST_DINODE, &n);
  1229. BUG_ON(blk == BFITNOENT);
  1230. rgd->rd_last_alloc = blk;
  1231. block = rgd->rd_data0 + blk;
  1232. gfs2_assert_withdraw(sdp, rgd->rd_rg.rg_free);
  1233. rgd->rd_rg.rg_free--;
  1234. rgd->rd_rg.rg_dinodes++;
  1235. *generation = rgd->rd_rg.rg_igeneration++;
  1236. gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
  1237. gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
  1238. al->al_alloced++;
  1239. gfs2_statfs_change(sdp, 0, -1, +1);
  1240. gfs2_trans_add_unrevoke(sdp, block, 1);
  1241. spin_lock(&sdp->sd_rindex_spin);
  1242. rgd->rd_free_clone--;
  1243. spin_unlock(&sdp->sd_rindex_spin);
  1244. return block;
  1245. }
  1246. /**
  1247. * gfs2_free_data - free a contiguous run of data block(s)
  1248. * @ip: the inode these blocks are being freed from
  1249. * @bstart: first block of a run of contiguous blocks
  1250. * @blen: the length of the block run
  1251. *
  1252. */
  1253. void gfs2_free_data(struct gfs2_inode *ip, u64 bstart, u32 blen)
  1254. {
  1255. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  1256. struct gfs2_rgrpd *rgd;
  1257. rgd = rgblk_free(sdp, bstart, blen, GFS2_BLKST_FREE);
  1258. if (!rgd)
  1259. return;
  1260. rgd->rd_rg.rg_free += blen;
  1261. gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
  1262. gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
  1263. gfs2_trans_add_rg(rgd);
  1264. gfs2_statfs_change(sdp, 0, +blen, 0);
  1265. gfs2_quota_change(ip, -(s64)blen, ip->i_inode.i_uid, ip->i_inode.i_gid);
  1266. }
  1267. /**
  1268. * gfs2_free_meta - free a contiguous run of data block(s)
  1269. * @ip: the inode these blocks are being freed from
  1270. * @bstart: first block of a run of contiguous blocks
  1271. * @blen: the length of the block run
  1272. *
  1273. */
  1274. void gfs2_free_meta(struct gfs2_inode *ip, u64 bstart, u32 blen)
  1275. {
  1276. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  1277. struct gfs2_rgrpd *rgd;
  1278. rgd = rgblk_free(sdp, bstart, blen, GFS2_BLKST_FREE);
  1279. if (!rgd)
  1280. return;
  1281. rgd->rd_rg.rg_free += blen;
  1282. gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
  1283. gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
  1284. gfs2_trans_add_rg(rgd);
  1285. gfs2_statfs_change(sdp, 0, +blen, 0);
  1286. gfs2_quota_change(ip, -(s64)blen, ip->i_inode.i_uid, ip->i_inode.i_gid);
  1287. gfs2_meta_wipe(ip, bstart, blen);
  1288. }
  1289. void gfs2_unlink_di(struct inode *inode)
  1290. {
  1291. struct gfs2_inode *ip = GFS2_I(inode);
  1292. struct gfs2_sbd *sdp = GFS2_SB(inode);
  1293. struct gfs2_rgrpd *rgd;
  1294. u64 blkno = ip->i_no_addr;
  1295. rgd = rgblk_free(sdp, blkno, 1, GFS2_BLKST_UNLINKED);
  1296. if (!rgd)
  1297. return;
  1298. gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
  1299. gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
  1300. gfs2_trans_add_rg(rgd);
  1301. }
  1302. static void gfs2_free_uninit_di(struct gfs2_rgrpd *rgd, u64 blkno)
  1303. {
  1304. struct gfs2_sbd *sdp = rgd->rd_sbd;
  1305. struct gfs2_rgrpd *tmp_rgd;
  1306. tmp_rgd = rgblk_free(sdp, blkno, 1, GFS2_BLKST_FREE);
  1307. if (!tmp_rgd)
  1308. return;
  1309. gfs2_assert_withdraw(sdp, rgd == tmp_rgd);
  1310. if (!rgd->rd_rg.rg_dinodes)
  1311. gfs2_consist_rgrpd(rgd);
  1312. rgd->rd_rg.rg_dinodes--;
  1313. rgd->rd_rg.rg_free++;
  1314. gfs2_trans_add_bh(rgd->rd_gl, rgd->rd_bits[0].bi_bh, 1);
  1315. gfs2_rgrp_out(rgd, rgd->rd_bits[0].bi_bh->b_data);
  1316. gfs2_statfs_change(sdp, 0, +1, -1);
  1317. gfs2_trans_add_rg(rgd);
  1318. }
  1319. void gfs2_free_di(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip)
  1320. {
  1321. gfs2_free_uninit_di(rgd, ip->i_no_addr);
  1322. gfs2_quota_change(ip, -1, ip->i_inode.i_uid, ip->i_inode.i_gid);
  1323. gfs2_meta_wipe(ip, ip->i_no_addr, 1);
  1324. }
  1325. /**
  1326. * gfs2_rlist_add - add a RG to a list of RGs
  1327. * @sdp: the filesystem
  1328. * @rlist: the list of resource groups
  1329. * @block: the block
  1330. *
  1331. * Figure out what RG a block belongs to and add that RG to the list
  1332. *
  1333. * FIXME: Don't use NOFAIL
  1334. *
  1335. */
  1336. void gfs2_rlist_add(struct gfs2_sbd *sdp, struct gfs2_rgrp_list *rlist,
  1337. u64 block)
  1338. {
  1339. struct gfs2_rgrpd *rgd;
  1340. struct gfs2_rgrpd **tmp;
  1341. unsigned int new_space;
  1342. unsigned int x;
  1343. if (gfs2_assert_warn(sdp, !rlist->rl_ghs))
  1344. return;
  1345. rgd = gfs2_blk2rgrpd(sdp, block);
  1346. if (!rgd) {
  1347. if (gfs2_consist(sdp))
  1348. fs_err(sdp, "block = %llu\n", (unsigned long long)block);
  1349. return;
  1350. }
  1351. for (x = 0; x < rlist->rl_rgrps; x++)
  1352. if (rlist->rl_rgd[x] == rgd)
  1353. return;
  1354. if (rlist->rl_rgrps == rlist->rl_space) {
  1355. new_space = rlist->rl_space + 10;
  1356. tmp = kcalloc(new_space, sizeof(struct gfs2_rgrpd *),
  1357. GFP_NOFS | __GFP_NOFAIL);
  1358. if (rlist->rl_rgd) {
  1359. memcpy(tmp, rlist->rl_rgd,
  1360. rlist->rl_space * sizeof(struct gfs2_rgrpd *));
  1361. kfree(rlist->rl_rgd);
  1362. }
  1363. rlist->rl_space = new_space;
  1364. rlist->rl_rgd = tmp;
  1365. }
  1366. rlist->rl_rgd[rlist->rl_rgrps++] = rgd;
  1367. }
  1368. /**
  1369. * gfs2_rlist_alloc - all RGs have been added to the rlist, now allocate
  1370. * and initialize an array of glock holders for them
  1371. * @rlist: the list of resource groups
  1372. * @state: the lock state to acquire the RG lock in
  1373. * @flags: the modifier flags for the holder structures
  1374. *
  1375. * FIXME: Don't use NOFAIL
  1376. *
  1377. */
  1378. void gfs2_rlist_alloc(struct gfs2_rgrp_list *rlist, unsigned int state)
  1379. {
  1380. unsigned int x;
  1381. rlist->rl_ghs = kcalloc(rlist->rl_rgrps, sizeof(struct gfs2_holder),
  1382. GFP_NOFS | __GFP_NOFAIL);
  1383. for (x = 0; x < rlist->rl_rgrps; x++)
  1384. gfs2_holder_init(rlist->rl_rgd[x]->rd_gl,
  1385. state, 0,
  1386. &rlist->rl_ghs[x]);
  1387. }
  1388. /**
  1389. * gfs2_rlist_free - free a resource group list
  1390. * @list: the list of resource groups
  1391. *
  1392. */
  1393. void gfs2_rlist_free(struct gfs2_rgrp_list *rlist)
  1394. {
  1395. unsigned int x;
  1396. kfree(rlist->rl_rgd);
  1397. if (rlist->rl_ghs) {
  1398. for (x = 0; x < rlist->rl_rgrps; x++)
  1399. gfs2_holder_uninit(&rlist->rl_ghs[x]);
  1400. kfree(rlist->rl_ghs);
  1401. }
  1402. }