Commit 032500ab authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'jfs-6.8' of github.com:kleikamp/linux-shaggy

Pull jfs updates from David Kleikamp:
 "Stability improvements"

* tag 'jfs-6.8' of github.com:kleikamp/linux-shaggy:
  jfs: Add missing set_freezable() for freezable kthread
  jfs: fix array-index-out-of-bounds in diNewExt
  jfs: fix shift-out-of-bounds in dbJoin
  jfs: fix uaf in jfs_evict_inode
  jfs: fix array-index-out-of-bounds in dbAdjTree
  jfs: fix slab-out-of-bounds Read in dtSearch
  UBSAN: array-index-out-of-bounds in dtSplitRoot
  FS:JFS:UBSAN:array-index-out-of-bounds in dbAdjTree
parents bfed9a92 a280c9ce
...@@ -63,10 +63,10 @@ ...@@ -63,10 +63,10 @@
*/ */
static void dbAllocBits(struct bmap * bmp, struct dmap * dp, s64 blkno, static void dbAllocBits(struct bmap * bmp, struct dmap * dp, s64 blkno,
int nblocks); int nblocks);
static void dbSplit(dmtree_t * tp, int leafno, int splitsz, int newval); static void dbSplit(dmtree_t *tp, int leafno, int splitsz, int newval, bool is_ctl);
static int dbBackSplit(dmtree_t * tp, int leafno); static int dbBackSplit(dmtree_t *tp, int leafno, bool is_ctl);
static int dbJoin(dmtree_t * tp, int leafno, int newval); static int dbJoin(dmtree_t *tp, int leafno, int newval, bool is_ctl);
static void dbAdjTree(dmtree_t * tp, int leafno, int newval); static void dbAdjTree(dmtree_t *tp, int leafno, int newval, bool is_ctl);
static int dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc, static int dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc,
int level); int level);
static int dbAllocAny(struct bmap * bmp, s64 nblocks, int l2nb, s64 * results); static int dbAllocAny(struct bmap * bmp, s64 nblocks, int l2nb, s64 * results);
...@@ -2103,7 +2103,7 @@ static int dbFreeDmap(struct bmap * bmp, struct dmap * dp, s64 blkno, ...@@ -2103,7 +2103,7 @@ static int dbFreeDmap(struct bmap * bmp, struct dmap * dp, s64 blkno,
* system. * system.
*/ */
if (dp->tree.stree[word] == NOFREE) if (dp->tree.stree[word] == NOFREE)
dbBackSplit((dmtree_t *) & dp->tree, word); dbBackSplit((dmtree_t *)&dp->tree, word, false);
dbAllocBits(bmp, dp, blkno, nblocks); dbAllocBits(bmp, dp, blkno, nblocks);
} }
...@@ -2189,7 +2189,7 @@ static void dbAllocBits(struct bmap * bmp, struct dmap * dp, s64 blkno, ...@@ -2189,7 +2189,7 @@ static void dbAllocBits(struct bmap * bmp, struct dmap * dp, s64 blkno,
* the binary system of the leaves if need be. * the binary system of the leaves if need be.
*/ */
dbSplit(tp, word, BUDMIN, dbSplit(tp, word, BUDMIN,
dbMaxBud((u8 *) & dp->wmap[word])); dbMaxBud((u8 *)&dp->wmap[word]), false);
word += 1; word += 1;
} else { } else {
...@@ -2229,7 +2229,7 @@ static void dbAllocBits(struct bmap * bmp, struct dmap * dp, s64 blkno, ...@@ -2229,7 +2229,7 @@ static void dbAllocBits(struct bmap * bmp, struct dmap * dp, s64 blkno,
* system of the leaves to reflect the current * system of the leaves to reflect the current
* allocation (size). * allocation (size).
*/ */
dbSplit(tp, word, size, NOFREE); dbSplit(tp, word, size, NOFREE, false);
/* get the number of dmap words handled */ /* get the number of dmap words handled */
nw = BUDSIZE(size, BUDMIN); nw = BUDSIZE(size, BUDMIN);
...@@ -2336,7 +2336,7 @@ static int dbFreeBits(struct bmap * bmp, struct dmap * dp, s64 blkno, ...@@ -2336,7 +2336,7 @@ static int dbFreeBits(struct bmap * bmp, struct dmap * dp, s64 blkno,
/* update the leaf for this dmap word. /* update the leaf for this dmap word.
*/ */
rc = dbJoin(tp, word, rc = dbJoin(tp, word,
dbMaxBud((u8 *) & dp->wmap[word])); dbMaxBud((u8 *)&dp->wmap[word]), false);
if (rc) if (rc)
return rc; return rc;
...@@ -2369,7 +2369,7 @@ static int dbFreeBits(struct bmap * bmp, struct dmap * dp, s64 blkno, ...@@ -2369,7 +2369,7 @@ static int dbFreeBits(struct bmap * bmp, struct dmap * dp, s64 blkno,
/* update the leaf. /* update the leaf.
*/ */
rc = dbJoin(tp, word, size); rc = dbJoin(tp, word, size, false);
if (rc) if (rc)
return rc; return rc;
...@@ -2521,16 +2521,16 @@ dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc, int level) ...@@ -2521,16 +2521,16 @@ dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc, int level)
* that it is at the front of a binary buddy system. * that it is at the front of a binary buddy system.
*/ */
if (oldval == NOFREE) { if (oldval == NOFREE) {
rc = dbBackSplit((dmtree_t *) dcp, leafno); rc = dbBackSplit((dmtree_t *)dcp, leafno, true);
if (rc) { if (rc) {
release_metapage(mp); release_metapage(mp);
return rc; return rc;
} }
oldval = dcp->stree[ti]; oldval = dcp->stree[ti];
} }
dbSplit((dmtree_t *) dcp, leafno, dcp->budmin, newval); dbSplit((dmtree_t *) dcp, leafno, dcp->budmin, newval, true);
} else { } else {
rc = dbJoin((dmtree_t *) dcp, leafno, newval); rc = dbJoin((dmtree_t *) dcp, leafno, newval, true);
if (rc) { if (rc) {
release_metapage(mp); release_metapage(mp);
return rc; return rc;
...@@ -2561,7 +2561,7 @@ dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc, int level) ...@@ -2561,7 +2561,7 @@ dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc, int level)
*/ */
if (alloc) { if (alloc) {
dbJoin((dmtree_t *) dcp, leafno, dbJoin((dmtree_t *) dcp, leafno,
oldval); oldval, true);
} else { } else {
/* the dbJoin() above might have /* the dbJoin() above might have
* caused a larger binary buddy system * caused a larger binary buddy system
...@@ -2571,9 +2571,9 @@ dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc, int level) ...@@ -2571,9 +2571,9 @@ dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc, int level)
*/ */
if (dcp->stree[ti] == NOFREE) if (dcp->stree[ti] == NOFREE)
dbBackSplit((dmtree_t *) dbBackSplit((dmtree_t *)
dcp, leafno); dcp, leafno, true);
dbSplit((dmtree_t *) dcp, leafno, dbSplit((dmtree_t *) dcp, leafno,
dcp->budmin, oldval); dcp->budmin, oldval, true);
} }
/* release the buffer and return the error. /* release the buffer and return the error.
...@@ -2621,7 +2621,7 @@ dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc, int level) ...@@ -2621,7 +2621,7 @@ dbAdjCtl(struct bmap * bmp, s64 blkno, int newval, int alloc, int level)
* *
* serialization: IREAD_LOCK(ipbmap) or IWRITE_LOCK(ipbmap) held on entry/exit; * serialization: IREAD_LOCK(ipbmap) or IWRITE_LOCK(ipbmap) held on entry/exit;
*/ */
static void dbSplit(dmtree_t * tp, int leafno, int splitsz, int newval) static void dbSplit(dmtree_t *tp, int leafno, int splitsz, int newval, bool is_ctl)
{ {
int budsz; int budsz;
int cursz; int cursz;
...@@ -2643,7 +2643,7 @@ static void dbSplit(dmtree_t * tp, int leafno, int splitsz, int newval) ...@@ -2643,7 +2643,7 @@ static void dbSplit(dmtree_t * tp, int leafno, int splitsz, int newval)
while (cursz >= splitsz) { while (cursz >= splitsz) {
/* update the buddy's leaf with its new value. /* update the buddy's leaf with its new value.
*/ */
dbAdjTree(tp, leafno ^ budsz, cursz); dbAdjTree(tp, leafno ^ budsz, cursz, is_ctl);
/* on to the next size and buddy. /* on to the next size and buddy.
*/ */
...@@ -2655,7 +2655,7 @@ static void dbSplit(dmtree_t * tp, int leafno, int splitsz, int newval) ...@@ -2655,7 +2655,7 @@ static void dbSplit(dmtree_t * tp, int leafno, int splitsz, int newval)
/* adjust the dmap tree to reflect the specified leaf's new /* adjust the dmap tree to reflect the specified leaf's new
* value. * value.
*/ */
dbAdjTree(tp, leafno, newval); dbAdjTree(tp, leafno, newval, is_ctl);
} }
...@@ -2686,7 +2686,7 @@ static void dbSplit(dmtree_t * tp, int leafno, int splitsz, int newval) ...@@ -2686,7 +2686,7 @@ static void dbSplit(dmtree_t * tp, int leafno, int splitsz, int newval)
* *
* serialization: IREAD_LOCK(ipbmap) or IWRITE_LOCK(ipbmap) held on entry/exit; * serialization: IREAD_LOCK(ipbmap) or IWRITE_LOCK(ipbmap) held on entry/exit;
*/ */
static int dbBackSplit(dmtree_t * tp, int leafno) static int dbBackSplit(dmtree_t *tp, int leafno, bool is_ctl)
{ {
int budsz, bud, w, bsz, size; int budsz, bud, w, bsz, size;
int cursz; int cursz;
...@@ -2737,7 +2737,7 @@ static int dbBackSplit(dmtree_t * tp, int leafno) ...@@ -2737,7 +2737,7 @@ static int dbBackSplit(dmtree_t * tp, int leafno)
* system in two. * system in two.
*/ */
cursz = leaf[bud] - 1; cursz = leaf[bud] - 1;
dbSplit(tp, bud, cursz, cursz); dbSplit(tp, bud, cursz, cursz, is_ctl);
break; break;
} }
} }
...@@ -2763,9 +2763,11 @@ static int dbBackSplit(dmtree_t * tp, int leafno) ...@@ -2763,9 +2763,11 @@ static int dbBackSplit(dmtree_t * tp, int leafno)
* leafno - the number of the leaf to be updated. * leafno - the number of the leaf to be updated.
* newval - the new value for the leaf. * newval - the new value for the leaf.
* *
* RETURN VALUES: none * RETURN VALUES:
* 0 - success
* -EIO - i/o error
*/ */
static int dbJoin(dmtree_t * tp, int leafno, int newval) static int dbJoin(dmtree_t *tp, int leafno, int newval, bool is_ctl)
{ {
int budsz, buddy; int budsz, buddy;
s8 *leaf; s8 *leaf;
...@@ -2790,6 +2792,10 @@ static int dbJoin(dmtree_t * tp, int leafno, int newval) ...@@ -2790,6 +2792,10 @@ static int dbJoin(dmtree_t * tp, int leafno, int newval)
* get the buddy size (number of words covered) of * get the buddy size (number of words covered) of
* the new value. * the new value.
*/ */
if ((newval - tp->dmt_budmin) > BUDMIN)
return -EIO;
budsz = BUDSIZE(newval, tp->dmt_budmin); budsz = BUDSIZE(newval, tp->dmt_budmin);
/* try to join. /* try to join.
...@@ -2820,12 +2826,12 @@ static int dbJoin(dmtree_t * tp, int leafno, int newval) ...@@ -2820,12 +2826,12 @@ static int dbJoin(dmtree_t * tp, int leafno, int newval)
if (leafno < buddy) { if (leafno < buddy) {
/* leafno is the left buddy. /* leafno is the left buddy.
*/ */
dbAdjTree(tp, buddy, NOFREE); dbAdjTree(tp, buddy, NOFREE, is_ctl);
} else { } else {
/* buddy is the left buddy and becomes /* buddy is the left buddy and becomes
* leafno. * leafno.
*/ */
dbAdjTree(tp, leafno, NOFREE); dbAdjTree(tp, leafno, NOFREE, is_ctl);
leafno = buddy; leafno = buddy;
} }
...@@ -2838,7 +2844,7 @@ static int dbJoin(dmtree_t * tp, int leafno, int newval) ...@@ -2838,7 +2844,7 @@ static int dbJoin(dmtree_t * tp, int leafno, int newval)
/* update the leaf value. /* update the leaf value.
*/ */
dbAdjTree(tp, leafno, newval); dbAdjTree(tp, leafno, newval, is_ctl);
return 0; return 0;
} }
...@@ -2859,15 +2865,20 @@ static int dbJoin(dmtree_t * tp, int leafno, int newval) ...@@ -2859,15 +2865,20 @@ static int dbJoin(dmtree_t * tp, int leafno, int newval)
* *
* RETURN VALUES: none * RETURN VALUES: none
*/ */
static void dbAdjTree(dmtree_t * tp, int leafno, int newval) static void dbAdjTree(dmtree_t *tp, int leafno, int newval, bool is_ctl)
{ {
int lp, pp, k; int lp, pp, k;
int max; int max, size;
size = is_ctl ? CTLTREESIZE : TREESIZE;
/* pick up the index of the leaf for this leafno. /* pick up the index of the leaf for this leafno.
*/ */
lp = leafno + le32_to_cpu(tp->dmt_leafidx); lp = leafno + le32_to_cpu(tp->dmt_leafidx);
if (WARN_ON_ONCE(lp >= size || lp < 0))
return;
/* is the current value the same as the old value ? if so, /* is the current value the same as the old value ? if so,
* there is nothing to do. * there is nothing to do.
*/ */
......
...@@ -633,6 +633,11 @@ int dtSearch(struct inode *ip, struct component_name * key, ino_t * data, ...@@ -633,6 +633,11 @@ int dtSearch(struct inode *ip, struct component_name * key, ino_t * data,
for (base = 0, lim = p->header.nextindex; lim; lim >>= 1) { for (base = 0, lim = p->header.nextindex; lim; lim >>= 1) {
index = base + (lim >> 1); index = base + (lim >> 1);
if (stbl[index] < 0) {
rc = -EIO;
goto out;
}
if (p->header.flag & BT_LEAF) { if (p->header.flag & BT_LEAF) {
/* uppercase leaf name to compare */ /* uppercase leaf name to compare */
cmp = cmp =
...@@ -1970,7 +1975,7 @@ static int dtSplitRoot(tid_t tid, ...@@ -1970,7 +1975,7 @@ static int dtSplitRoot(tid_t tid,
do { do {
f = &rp->slot[fsi]; f = &rp->slot[fsi];
fsi = f->next; fsi = f->next;
} while (fsi != -1); } while (fsi >= 0);
f->next = n; f->next = n;
} }
......
...@@ -2179,6 +2179,9 @@ static int diNewExt(struct inomap * imap, struct iag * iagp, int extno) ...@@ -2179,6 +2179,9 @@ static int diNewExt(struct inomap * imap, struct iag * iagp, int extno)
/* get the ag and iag numbers for this iag. /* get the ag and iag numbers for this iag.
*/ */
agno = BLKTOAG(le64_to_cpu(iagp->agstart), sbi); agno = BLKTOAG(le64_to_cpu(iagp->agstart), sbi);
if (agno >= MAXAG || agno < 0)
return -EIO;
iagno = le32_to_cpu(iagp->iagnum); iagno = le32_to_cpu(iagp->iagnum);
/* check if this is the last free extent within the /* check if this is the last free extent within the
......
...@@ -172,15 +172,15 @@ int jfs_mount(struct super_block *sb) ...@@ -172,15 +172,15 @@ int jfs_mount(struct super_block *sb)
} }
jfs_info("jfs_mount: ipimap:0x%p", ipimap); jfs_info("jfs_mount: ipimap:0x%p", ipimap);
/* map further access of per fileset inodes by the fileset inode */
sbi->ipimap = ipimap;
/* initialize fileset inode allocation map */ /* initialize fileset inode allocation map */
if ((rc = diMount(ipimap))) { if ((rc = diMount(ipimap))) {
jfs_err("jfs_mount: diMount failed w/rc = %d", rc); jfs_err("jfs_mount: diMount failed w/rc = %d", rc);
goto err_ipimap; goto err_ipimap;
} }
/* map further access of per fileset inodes by the fileset inode */
sbi->ipimap = ipimap;
return rc; return rc;
/* /*
......
...@@ -2702,6 +2702,7 @@ int jfs_lazycommit(void *arg) ...@@ -2702,6 +2702,7 @@ int jfs_lazycommit(void *arg)
unsigned long flags; unsigned long flags;
struct jfs_sb_info *sbi; struct jfs_sb_info *sbi;
set_freezable();
do { do {
LAZY_LOCK(flags); LAZY_LOCK(flags);
jfs_commit_thread_waking = 0; /* OK to wake another thread */ jfs_commit_thread_waking = 0; /* OK to wake another thread */
...@@ -2884,6 +2885,7 @@ int jfs_sync(void *arg) ...@@ -2884,6 +2885,7 @@ int jfs_sync(void *arg)
struct jfs_inode_info *jfs_ip; struct jfs_inode_info *jfs_ip;
tid_t tid; tid_t tid;
set_freezable();
do { do {
/* /*
* write each inode on the anonymous inode list * write each inode on the anonymous inode list
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment