Skip to content

fix: test for file under/over reads #300

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -137,15 +137,27 @@ const fileContent: UnixfsV1Resolver = (cid, node, unixfs, path, resolve, depth,
return
}

let read = 0n
const queue = pushable()

void walkDAG(blockstore, node, queue, 0n, offset, offset + length, options)
.then(() => {
const wanted = length - offset

if (read < wanted) {
throw errCode(new Error('Traversed entire DAG but did not read enough bytes'), 'ERR_UNDER_READ')
}

if (read > wanted) {
throw errCode(new Error('Read too many bytes - the file size reported by the UnixFS data in the root node may be incorrect'), 'ERR_OVER_READ')
}

queue.end()
})
.catch(err => {
queue.end(err)
})

let read = 0n

for await (const buf of queue) {
if (buf == null) {
continue
Expand Down
150 changes: 150 additions & 0 deletions packages/ipfs-unixfs-exporter/test/exporter-esoteric.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,4 +211,154 @@ describe('exporter esoteric DAGs', () => {
const data = uint8ArrayConcat(await all(exported.content()))
expect(data).to.deep.equal(buf)
})

it('errors on DAG with blocksizes that are too large', async () => {
const leaves = await Promise.all([
randomBytes(5),
randomBytes(3),
randomBytes(6)
].map(async buf => {
return {
cid: await storeBlock(buf, raw.code),
buf
}
}))

const unixfs = new UnixFS({
type: 'file',
blockSizes: [
BigInt(leaves[0].buf.byteLength),
BigInt(leaves[1].buf.byteLength + 5), // this is wrong
BigInt(leaves[2].buf.byteLength)
]
})

const rootNode = {
Data: unixfs.marshal(),
Links: [{
Name: '',
Hash: leaves[0].cid,
Tsize: leaves[0].buf.byteLength
}, {
Name: '',
Hash: leaves[1].cid,
Tsize: leaves[1].buf.byteLength
}, {
Name: '',
Hash: leaves[2].cid,
Tsize: leaves[2].buf.byteLength
}]
}

const rootBuf = dagPb.encode(rootNode)
const rootCid = await storeBlock(rootBuf, dagPb.code)
const exported = await exporter(rootCid, block)

if (exported.type !== 'file') {
throw new Error('Unexpected type')
}

await expect(all(exported.content())).to.eventually.be.rejected
.with.property('code', 'ERR_UNDER_READ')
})

it('errors on DAG with blocksizes that are too small', async () => {
const leaves = await Promise.all([
randomBytes(5),
randomBytes(3),
randomBytes(6)
].map(async buf => {
return {
cid: await storeBlock(buf, raw.code),
buf
}
}))

const unixfs = new UnixFS({
type: 'file',
blockSizes: [
BigInt(leaves[0].buf.byteLength),
BigInt(leaves[1].buf.byteLength - 2), // this is wrong
BigInt(leaves[2].buf.byteLength)
]
})

const rootNode = {
Data: unixfs.marshal(),
Links: [{
Name: '',
Hash: leaves[0].cid,
Tsize: leaves[0].buf.byteLength
}, {
Name: '',
Hash: leaves[1].cid,
Tsize: leaves[1].buf.byteLength
}, {
Name: '',
Hash: leaves[2].cid,
Tsize: leaves[2].buf.byteLength
}]
}

const rootBuf = dagPb.encode(rootNode)
const rootCid = await storeBlock(rootBuf, dagPb.code)
const exported = await exporter(rootCid, block)

if (exported.type !== 'file') {
throw new Error('Unexpected type')
}

await expect(all(exported.content())).to.eventually.be.rejected
.with.property('code', 'ERR_OVER_READ')
})

it('errors on DAG with incorrect number of blocksizes', async () => {
const leaves = await Promise.all([
randomBytes(5),
randomBytes(3),
randomBytes(6)
].map(async buf => {
return {
cid: await storeBlock(buf, raw.code),
buf
}
}))

const unixfs = new UnixFS({
type: 'file',
blockSizes: [
BigInt(leaves[0].buf.byteLength),
// BigInt(leaves[1].buf.byteLength), // this is wrong
BigInt(leaves[2].buf.byteLength)
]
})

const rootNode = {
Data: unixfs.marshal(),
Links: [{
Name: '',
Hash: leaves[0].cid,
Tsize: leaves[0].buf.byteLength
}, {
Name: '',
Hash: leaves[1].cid,
Tsize: leaves[1].buf.byteLength
}, {
Name: '',
Hash: leaves[2].cid,
Tsize: leaves[2].buf.byteLength
}]
}

const rootBuf = dagPb.encode(rootNode)
const rootCid = await storeBlock(rootBuf, dagPb.code)
const exported = await exporter(rootCid, block)

if (exported.type !== 'file') {
throw new Error('Unexpected type')
}

await expect(all(exported.content())).to.eventually.be.rejected
.with.property('code', 'ERR_NOT_UNIXFS')
})
})