mirror of
https://github.com/yusufipk/OpenFrame.git
synced 2026-09-11 09:36:08 +00:00
A reservation id was never a secret and could not have been one. An upload token is base64url(payload) followed by its signature, so a client can read every claim out of its own token, and the two R2 init routes hand their reservation ids to the client outright. The asset route takes a reservation id from the request body and deleted it on the strength of that id and the billed user alone, and every hold an account owns is billed to the same user. So a caller could start a Bunny upload, read the id out of the token they were just given, quote it while attaching a one byte image or even a bare YouTube link, and have the quota handed back while the upload carried on. Repeat and a trial worth three gigabytes uploads as much as it likes for as long as Bunny takes to report a figure of its own. Signing the id rather than handing it over bought nothing, because signing is not hiding. A hold now records what it was opened for and is only ever consumed by that flow, so naming one is no longer enough to drop it. Guests hold against the workspace owner's quota rather than their own and had no way to give it back: the release was gated on being signed in. Declaring a size and walking away cost the guest nothing and cost the owner their whole remaining allowance for two hours. The guest grant now carries the reservation and the declared size, bound to the Bunny video as well as to ours, so cancelling gives the quota back and costs them the upload it stood for. What a guest can hold without cancelling lapses in half an hour rather than two hours. The in-transaction fallback check counted the account's Bunny storage as zero on a Bunny upload, because the figure was only prefetched for R2 providers and that branch was unreachable for Bunny until this PR made it reachable. On an account whose storage is all Bunny that was a check that could not fail. It is prefetched for every provider that can reach the fallback now.
264 lines
10 KiB
TypeScript
264 lines
10 KiB
TypeScript
// The Bunny init routes used to ask the quota about zero bytes, which meant two
|
|
// things at once: an upload that could never fit was only discovered after it had
|
|
// been sent, and nothing an upload was about to consume was visible to the next
|
|
// request. Bunny reports its own storage on a delay and the figure is cached for
|
|
// two minutes on top, so every init inside that window read the same stale total
|
|
// and every one of them passed.
|
|
//
|
|
// These tests pin the two halves of the fix: the declared size is checked before
|
|
// a byte moves, and it is held as a reservation the next init has to see.
|
|
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
|
|
import { db } from '@/lib/db';
|
|
import {
|
|
DELETE as cancelProjectBunnyUpload,
|
|
POST as initProjectBunnyUpload,
|
|
} from '@/app/api/projects/[projectId]/videos/bunny-init/route';
|
|
import { POST as createAsset } from '@/app/api/videos/[videoId]/assets/route';
|
|
import { UPLOAD_RESERVATION_PURPOSES } from '@/lib/storage-quota';
|
|
import { apiRequest, callRoute, readData, readError } from '../helpers/request';
|
|
import { signedInAs } from '../helpers/session';
|
|
import { createVideo, seedProject } from '../factories';
|
|
|
|
const GIB = BigInt(1024) * BigInt(1024) * BigInt(1024);
|
|
|
|
/**
|
|
* Bunny answers every call the same way, with a fresh video id each time so two
|
|
* inits in one test are distinguishable. The cancel path talks to Bunny too, so
|
|
* the stub has to cover it rather than just the creation call.
|
|
*/
|
|
function stubBunnyApi(): void {
|
|
let created = 0;
|
|
vi.stubGlobal(
|
|
'fetch',
|
|
vi.fn(async () => {
|
|
created += 1;
|
|
return new Response(JSON.stringify({ guid: `bunnyvideo-${created}-abcdefgh` }), {
|
|
status: 200,
|
|
headers: { 'Content-Type': 'application/json' },
|
|
});
|
|
})
|
|
);
|
|
}
|
|
|
|
beforeEach(() => {
|
|
vi.stubEnv('OPENFRAME_ENABLE_STRIPE', 'true');
|
|
vi.stubEnv('OPENFRAME_ENABLE_BUNNY_UPLOADS', 'true');
|
|
vi.stubEnv('OPENFRAME_ENABLE_S3_VIDEO_UPLOADS', 'false');
|
|
vi.stubEnv('BUNNY_STREAM_API_KEY', 'test-bunny-key');
|
|
vi.stubEnv('BUNNY_STREAM_LIBRARY_ID', '999999');
|
|
vi.stubEnv('BUNNY_UPLOAD_TOKEN_SECRET', 'test-bunny-upload-token-secret');
|
|
stubBunnyApi();
|
|
});
|
|
|
|
afterEach(() => {
|
|
vi.unstubAllGlobals();
|
|
});
|
|
|
|
function initRequest(projectId: string, body: Record<string, unknown>) {
|
|
return apiRequest(`/api/projects/${projectId}/videos/bunny-init`, { body });
|
|
}
|
|
|
|
async function initUpload(projectId: string, sizeBytes: bigint) {
|
|
return callRoute(
|
|
initProjectBunnyUpload,
|
|
initRequest(projectId, { title: 'A clip', sizeBytes: sizeBytes.toString() }),
|
|
{ projectId }
|
|
);
|
|
}
|
|
|
|
describe('POST /api/projects/[projectId]/videos/bunny-init', () => {
|
|
it('refuses an init that does not say how big the upload is', async () => {
|
|
const scenario = await seedProject();
|
|
signedInAs(scenario.owner);
|
|
|
|
const response = await callRoute(
|
|
initProjectBunnyUpload,
|
|
initRequest(scenario.project.id, { title: 'A clip' }),
|
|
{ projectId: scenario.project.id }
|
|
);
|
|
|
|
expect(response.status).toBe(400);
|
|
expect(await readError(response)).toContain('sizeBytes');
|
|
expect(await db.uploadReservation.count()).toBe(0);
|
|
});
|
|
|
|
it('refuses a size beyond the host per-file ceiling', async () => {
|
|
vi.stubEnv('OPENFRAME_MAX_VIDEO_UPLOAD_BYTES', '1024');
|
|
const scenario = await seedProject();
|
|
signedInAs(scenario.owner);
|
|
|
|
const response = await initUpload(scenario.project.id, BigInt(2048));
|
|
|
|
expect(response.status).toBe(400);
|
|
expect(await readError(response)).toContain('maximum allowed upload size');
|
|
});
|
|
|
|
// The trial ceiling is 3 GiB, so this is refused on the way in rather than
|
|
// after four gigabytes have been pushed to Bunny.
|
|
it('refuses an upload the remaining quota cannot hold', async () => {
|
|
const scenario = await seedProject();
|
|
signedInAs(scenario.owner);
|
|
|
|
const response = await initUpload(scenario.project.id, BigInt(4) * GIB);
|
|
|
|
expect(response.status).toBe(507);
|
|
expect(await db.uploadReservation.count()).toBe(0);
|
|
});
|
|
|
|
it('holds the declared size as a reservation for the workspace owner', async () => {
|
|
const scenario = await seedProject();
|
|
signedInAs(scenario.owner);
|
|
|
|
const response = await initUpload(scenario.project.id, BigInt(2) * GIB);
|
|
|
|
expect(response.status).toBe(200);
|
|
const reservations = await db.uploadReservation.findMany();
|
|
expect(reservations).toHaveLength(1);
|
|
expect(reservations[0].billedUserId).toBe(scenario.owner.id);
|
|
expect(reservations[0].sizeBytes).toBe(BigInt(2) * GIB);
|
|
});
|
|
|
|
// The regression this whole change exists for. Both of these used to be
|
|
// granted, because neither could see what the other was about to upload.
|
|
it('refuses a second upload that no longer fits beside the first', async () => {
|
|
const scenario = await seedProject();
|
|
signedInAs(scenario.owner);
|
|
|
|
const first = await initUpload(scenario.project.id, BigInt(2) * GIB);
|
|
const second = await initUpload(scenario.project.id, BigInt(2) * GIB);
|
|
|
|
expect(first.status).toBe(200);
|
|
expect(second.status).toBe(507);
|
|
expect(await db.uploadReservation.count()).toBe(1);
|
|
});
|
|
});
|
|
|
|
describe('DELETE /api/projects/[projectId]/videos/bunny-init', () => {
|
|
it('gives the quota back when a pending upload is cancelled', async () => {
|
|
const scenario = await seedProject();
|
|
signedInAs(scenario.owner);
|
|
|
|
const init = await initUpload(scenario.project.id, BigInt(2) * GIB);
|
|
const { videoId, uploadToken } = await readData(init);
|
|
|
|
const response = await callRoute(
|
|
cancelProjectBunnyUpload,
|
|
initRequest(scenario.project.id, { videoId, uploadToken }),
|
|
{ projectId: scenario.project.id }
|
|
);
|
|
|
|
expect(response.status).toBe(200);
|
|
expect(await db.uploadReservation.count()).toBe(0);
|
|
});
|
|
|
|
// Why the reservation id travels inside the signed token instead of being
|
|
// handed to the client as a field of its own: a caller who could name a
|
|
// reservation could start two uploads, cancel the cheap one while quoting the
|
|
// expensive one's reservation, and keep uploading against quota it no longer
|
|
// holds.
|
|
it('will not let one upload cancel release another upload reservation', async () => {
|
|
const scenario = await seedProject();
|
|
signedInAs(scenario.owner);
|
|
|
|
const first = await initUpload(scenario.project.id, BigInt(1) * GIB);
|
|
const second = await initUpload(scenario.project.id, BigInt(1) * GIB);
|
|
const firstData = await readData(first);
|
|
const secondData = await readData(second);
|
|
|
|
const response = await callRoute(
|
|
cancelProjectBunnyUpload,
|
|
initRequest(scenario.project.id, {
|
|
videoId: secondData.videoId,
|
|
uploadToken: firstData.uploadToken,
|
|
}),
|
|
{ projectId: scenario.project.id }
|
|
);
|
|
|
|
expect(response.status).toBe(403);
|
|
expect(await db.uploadReservation.count()).toBe(2);
|
|
});
|
|
});
|
|
|
|
// The reservation id is not a secret and was never going to be one. The upload
|
|
// token is `base64url(payload).signature`, so the client can read every claim in
|
|
// it, and the two R2 upload routes hand their reservation ids to the client
|
|
// outright. What keeps a hold from being dropped by whoever can name it is that
|
|
// a reservation records what it was opened for, and every finalize route matches
|
|
// on that as well as on the id.
|
|
describe('a Bunny hold cannot be consumed by another flow', () => {
|
|
/** The claims the client can read out of an upload token without our help. */
|
|
function claimsOf(uploadToken: string): Record<string, unknown> {
|
|
return JSON.parse(Buffer.from(uploadToken.split('.')[0], 'base64url').toString('utf8'));
|
|
}
|
|
|
|
it('puts the reservation id somewhere the client can read it', async () => {
|
|
const scenario = await seedProject();
|
|
signedInAs(scenario.owner);
|
|
|
|
const init = await initUpload(scenario.project.id, BigInt(1) * GIB);
|
|
const { uploadToken } = await readData(init);
|
|
|
|
const reservation = (await db.uploadReservation.findMany())[0];
|
|
expect(claimsOf(uploadToken).rid).toBe(reservation.id);
|
|
expect(reservation.purpose).toBe(UPLOAD_RESERVATION_PURPOSES.BUNNY);
|
|
});
|
|
|
|
// The attack the purpose column closes. Creating a YouTube asset costs nothing
|
|
// and consumes no storage, so quoting a Bunny reservation on one was a way to
|
|
// hand back the quota of an upload that was still running and then start
|
|
// another. Repeat and a trial worth three gigabytes uploads as much as it
|
|
// likes for as long as Bunny takes to report.
|
|
it('ignores a Bunny reservation id quoted on a YouTube asset create', async () => {
|
|
const scenario = await seedProject();
|
|
const video = await createVideo({ projectId: scenario.project.id });
|
|
signedInAs(scenario.owner);
|
|
|
|
const init = await initUpload(scenario.project.id, BigInt(2) * GIB);
|
|
const { uploadToken } = await readData(init);
|
|
const reservationId = claimsOf(uploadToken).rid as string;
|
|
|
|
const response = await callRoute(
|
|
createAsset,
|
|
apiRequest(`/api/videos/${video.id}/assets`, {
|
|
body: {
|
|
provider: 'YOUTUBE',
|
|
sourceUrl: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
|
reservationId,
|
|
},
|
|
}),
|
|
{ videoId: video.id }
|
|
);
|
|
|
|
expect(response.status).toBe(201);
|
|
const reservations = await db.uploadReservation.findMany();
|
|
expect(reservations).toHaveLength(1);
|
|
expect(reservations[0].id).toBe(reservationId);
|
|
});
|
|
|
|
// And with the hold still standing, the next init has to see it.
|
|
it('still refuses the next upload after the quoted release attempt', async () => {
|
|
const scenario = await seedProject();
|
|
const video = await createVideo({ projectId: scenario.project.id });
|
|
signedInAs(scenario.owner);
|
|
|
|
const init = await initUpload(scenario.project.id, BigInt(2) * GIB);
|
|
const { uploadToken } = await readData(init);
|
|
|
|
await callRoute(
|
|
createAsset,
|
|
apiRequest(`/api/videos/${video.id}/assets`, {
|
|
body: {
|
|
provider: 'YOUTUBE',
|
|
sourceUrl: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
|
reservationId: claimsOf(uploadToken).rid,
|
|
},
|
|
}),
|
|
{ videoId: video.id }
|
|
);
|
|
|
|
const second = await initUpload(scenario.project.id, BigInt(2) * GIB);
|
|
expect(second.status).toBe(507);
|
|
});
|
|
});
|