mirror of
https://github.com/screentinker/screentinker.git
synced 2026-08-13 22:03:13 -06:00
Bold Media Group's fleet broke on the 1.9.3->1.9.6 upgrade. Their MDM does an
uninstall/reinstall (app data wiped), so the player registers with
{ pairing_code, fingerprint } and NO device_id and shows a pairing code — but the
dashboard reported "code does not exist". Deleting the device_fingerprints row fixed
it, which pinpointed the fingerprint-reclaim guard in server/ws/deviceSocket.js.
Root cause: the reclaim guard was
`stillAlive = !!liveConn || secondsSince < reclaimSettleSeconds; if (stillAlive) reject`.
On an in-place reinstall the old row heartbeat seconds ago, so `secondsSince < 300` is
ALWAYS true -> it emitted device:auth-error and returned BEFORE the pairing_code INSERT,
so the code the player displayed never existed server-side.
The settle window's real purpose was to REMATCH an existing fingerprint back to its
device row on reinstall — not to force a fresh re-pair. So the fix keys off claim status,
not the timer (server-only; no APK change — reviewed and confirmed unnecessary):
- Reject ONLY when the old row has a genuinely LIVE socket (liveConn) — the real anti-
hijack boundary. Unchanged.
- CLAIMED old row (user_id set) -> RECLAIM it regardless of the settle window: reuse the
row, rotate the token, emit device:registered{online} + device:paired. The panel returns
straight to paired (no operator re-pair, no orphaned duplicate row), preserving name /
claim / playlist / content. device:paired drives the app off the pairing screen, so the
fresh code it showed is irrelevant.
- UNCLAIMED old row -> fall through to the pairing_code path and PROVISION FRESH with the
shown code (reclaiming would leave a stale/null code -> "code does not exist"). #150
relinks the fingerprint to the new row.
`reclaimSettleSeconds` is now vestigial for this path. Trade-off: a fingerprint-only reclaim
of a CLAIMED-but-offline device is no longer delayed ~300s — not a new attack class (the old
code already granted it once the window elapsed); liveConn remains the hard boundary. Truly
closing that window without a re-pair needs client keystore attestation (a future APK).
Also fixes a latent crash this newly exercises: middleware/subscription.js getUserPlan()
dereferenced an undefined user in its else branch ("Cannot set properties of undefined
(setting 'trial_active')") when the user/plan JOIN missed. Under the claimed-reclaim path
that ran checkDeviceAccess->getUserPlan, the throw was swallowed by the reclaim try/catch and
silently dropped the device to provision-fresh. Guard: `if (!user) return null`.
Tests (server/test/fingerprint-reclaim.test.js):
- NEW: a CLAIMED reinstall reclaims the SAME row, emits device:paired, creates no duplicate,
keeps the fingerprint linked — regardless of the settle window (the Bold repro, fixed right).
- NEW: recent heartbeat + no live socket, UNCLAIMED -> provisions fresh with the shown code.
- NEW: a LIVE old socket still rejects and creates no new row (security preserved).
- Updated the #143 gone-device test to expect provision-fresh for an unclaimed row, and the
log-noise assertion to the "reclaim rejected" message.
465/465 server tests pass. Server-only: NOT deployed, no version bump, Android untouched.
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
177 lines
12 KiB
JavaScript
177 lines
12 KiB
JavaScript
'use strict';
|
|
|
|
// #143 — fingerprint-reclaim stuck loop. A device gone by every RUNTIME signal
|
|
// (no live socket + stale heartbeat) must be reclaimable; a genuinely-live device
|
|
// must still be rejected; the deferral log must not flood. Devices are seeded by
|
|
// direct SQLite (mimics the real DB state + avoids the disconnect-debounce window
|
|
// leaving a stale liveConn). Unique PORT 3988 (not 3982-3987).
|
|
|
|
const { test, before, after } = require('node:test');
|
|
const assert = require('node:assert/strict');
|
|
const { spawn } = require('node:child_process');
|
|
const path = require('node:path');
|
|
const os = require('node:os');
|
|
const fs = require('node:fs');
|
|
const crypto = require('node:crypto');
|
|
const ioClient = require('socket.io-client');
|
|
const Database = require('better-sqlite3');
|
|
|
|
const { freePort } = require('./helpers/free-port');
|
|
let PORT, BASE;
|
|
const DATA_DIR = path.join(os.tmpdir(), 'st-recl-' + crypto.randomBytes(4).toString('hex'));
|
|
const LOG = path.join(os.tmpdir(), 'st-recl-' + crypto.randomBytes(4).toString('hex') + '.log');
|
|
const DB_PATH = path.join(DATA_DIR, 'db', 'remote_display.db');
|
|
let proc, tdb;
|
|
const sleep = (ms) => new Promise(r => setTimeout(r, ms));
|
|
|
|
before(async () => {
|
|
PORT = await freePort();
|
|
BASE = `http://127.0.0.1:${PORT}`;
|
|
const logFd = fs.openSync(LOG, 'w');
|
|
proc = spawn('node', ['server.js'], {
|
|
cwd: path.join(__dirname, '..'),
|
|
env: { ...process.env, DATA_DIR, SELF_HOSTED: 'true', PORT: String(PORT), NODE_ENV: 'test', RECLAIM_SETTLE_SECONDS: '300', RECLAIM_REJECT_LOG_WINDOW_MS: '60000' },
|
|
stdio: ['ignore', logFd, logFd],
|
|
});
|
|
let up = false;
|
|
for (let i = 0; i < 80; i++) { try { const r = await fetch(BASE + '/api/status'); if (r.ok) { up = true; break; } } catch { /* */ } await sleep(250); }
|
|
if (!up) throw new Error('server did not boot:\n' + fs.readFileSync(LOG, 'utf8').slice(-2000));
|
|
tdb = new Database(DB_PATH); tdb.pragma('busy_timeout = 3000'); tdb.pragma('foreign_keys = OFF');
|
|
});
|
|
after(() => { try { tdb && tdb.close(); } catch { /* */ } try { proc.kill('SIGKILL'); } catch { /* */ } });
|
|
|
|
// Seed a device + its fingerprint link directly (no socket -> no lingering liveConn).
|
|
function seedDevice(fp, { token, heartbeatAgo, userId = null }) {
|
|
const id = crypto.randomUUID();
|
|
tdb.prepare("INSERT INTO devices (id, status, last_heartbeat, device_token, user_id) VALUES (?, 'offline', strftime('%s','now') - ?, ?, ?)").run(id, heartbeatAgo, token, userId);
|
|
tdb.prepare('INSERT INTO device_fingerprints (fingerprint, device_id) VALUES (?, ?)').run(fp, id);
|
|
return { id, token };
|
|
}
|
|
function staleHeartbeat(id, ago) { tdb.prepare("UPDATE devices SET last_heartbeat = strftime('%s','now') - ? WHERE id = ?").run(ago, id); }
|
|
|
|
function attempt(payload) { // one-shot register; resolves and closes
|
|
return new Promise((resolve) => {
|
|
const sock = ioClient(`${BASE}/device`, { transports: ['websocket'], reconnection: false, forceNew: true });
|
|
const got = { registered: false, newId: null, authError: false, errorMsg: null, paired: false, pairedId: null };
|
|
const finish = () => { try { sock.close(); } catch { /* */ } resolve(got); };
|
|
sock.on('connect', () => sock.emit('device:register', payload));
|
|
// device:paired arrives right after device:registered on a claimed reclaim — wait 200ms to catch it.
|
|
sock.on('device:registered', (d) => { got.registered = true; got.newId = d.device_id; setTimeout(finish, 200); });
|
|
sock.on('device:paired', (d) => { got.paired = true; got.pairedId = d && d.device_id; });
|
|
sock.on('device:auth-error', (e) => { got.authError = true; got.errorMsg = e && e.error; finish(); });
|
|
setTimeout(finish, 4000);
|
|
});
|
|
}
|
|
function connectLive(payload) { // keeps the socket open (live connection); caller closes
|
|
return new Promise((resolve) => {
|
|
const sock = ioClient(`${BASE}/device`, { transports: ['websocket'], reconnection: false, forceNew: true });
|
|
sock.on('connect', () => sock.emit('device:register', payload));
|
|
sock.on('device:registered', () => resolve({ sock, registered: true }));
|
|
sock.on('device:auth-error', () => resolve({ sock, registered: false }));
|
|
setTimeout(() => resolve({ sock, registered: false }), 4000);
|
|
});
|
|
}
|
|
const rnd = () => String(crypto.randomInt(100000, 1000000));
|
|
|
|
test('#143 no reclaim-loop: an UNCLAIMED gone device provisions fresh with the shown code', async () => {
|
|
const fp = 'fp-gone-' + crypto.randomBytes(4).toString('hex');
|
|
const dev = seedDevice(fp, { token: 'tok', heartbeatAgo: 99999 }); // unclaimed, ~27h stale, never connected
|
|
const code = rnd();
|
|
const r = await attempt({ pairing_code: code, fingerprint: fp }); // no device_id
|
|
assert.ok(r.registered && !r.authError, 'registers cleanly — no stuck reclaim/retry loop (#143)');
|
|
assert.notEqual(r.newId, dev.id, 'an UNCLAIMED old row is NOT reclaimed (its stale code would break pairing) — a fresh row is provisioned');
|
|
const row = tdb.prepare('SELECT status FROM devices WHERE pairing_code = ?').get(code);
|
|
assert.ok(row && row.status === 'provisioning', 'the on-screen code is inserted as a fresh provisioning row');
|
|
});
|
|
|
|
test('no regression: a genuinely live device REJECTS a fingerprint reclaim', async () => {
|
|
const fp = 'fp-live-' + crypto.randomBytes(4).toString('hex');
|
|
const dev = seedDevice(fp, { token: 'tok2', heartbeatAgo: 10 });
|
|
const live = await connectLive({ device_id: dev.id, device_token: 'tok2', device_info: {} });
|
|
assert.ok(live.registered, 'device is live (has a connection)');
|
|
const r = await attempt({ pairing_code: rnd(), fingerprint: fp });
|
|
assert.ok(r.authError && !r.registered, 'reclaim of a LIVE device is rejected (abuse protection intact)');
|
|
try { live.sock.close(); } catch { /* */ }
|
|
});
|
|
|
|
// Bold 1.9.3->1.9.6 upgrade regression: a reinstall registers { pairing_code, fingerprint,
|
|
// no device_id } while the OLD device row heartbeat only seconds ago but has NO live socket
|
|
// (the app was uninstalled). The old guard treated the recent heartbeat as "still alive" and
|
|
// returned before the pairing_code INSERT, so the code the player displayed was never created
|
|
// and the dashboard said "code does not exist". It must now PROVISION FRESH with that code.
|
|
test('Bold upgrade: recent heartbeat + NO live socket provisions fresh with the shown code', async () => {
|
|
const fp = 'fp-upgrade-' + crypto.randomBytes(4).toString('hex');
|
|
const dev = seedDevice(fp, { token: 'tokU', heartbeatAgo: 10 }); // heartbeat 10s ago, never socket-connected
|
|
const code = rnd();
|
|
const r = await attempt({ pairing_code: code, fingerprint: fp }); // no device_id
|
|
assert.ok(r.registered, 'the reinstalled device provisions (device:registered), not blocked');
|
|
assert.ok(!r.authError, 'not rejected by the reclaim-settle guard');
|
|
const row = tdb.prepare('SELECT * FROM devices WHERE pairing_code = ?').get(code);
|
|
assert.ok(row, 'a devices row exists carrying the pairing_code the player is showing');
|
|
assert.equal(row.status, 'provisioning', 'provisioned as a new, unclaimed device');
|
|
assert.notEqual(row.id, dev.id, 'a fresh row — not a silent reclaim of the old identity');
|
|
assert.equal(r.newId, row.id, 'the client is told its new device_id');
|
|
const fpRow = tdb.prepare('SELECT device_id FROM device_fingerprints WHERE fingerprint = ?').get(fp);
|
|
assert.equal(fpRow.device_id, row.id, '#150: fingerprint relinked to the new device row');
|
|
});
|
|
|
|
// The security boundary must survive the fix: if the OLD device still has a genuinely LIVE
|
|
// socket, a fingerprint clash must be rejected and NOT provision a new row.
|
|
test('security preserved: a LIVE old socket still rejects provisioning (no new row created)', async () => {
|
|
const fp = 'fp-live2-' + crypto.randomBytes(4).toString('hex');
|
|
const dev = seedDevice(fp, { token: 'tokL', heartbeatAgo: 10 });
|
|
const live = await connectLive({ device_id: dev.id, device_token: 'tokL', device_info: {} });
|
|
assert.ok(live.registered, 'old device has a LIVE socket');
|
|
const code = rnd();
|
|
const r = await attempt({ pairing_code: code, fingerprint: fp });
|
|
assert.ok(r.authError && !r.registered, 'rejected while the old device is genuinely live');
|
|
const row = tdb.prepare('SELECT id FROM devices WHERE pairing_code = ?').get(code);
|
|
assert.ok(!row, 'no new device row is provisioned for a clash against a live device');
|
|
try { live.sock.close(); } catch { /* */ }
|
|
});
|
|
|
|
// The claim-status fix: a CLAIMED panel that reinstalls (fingerprint only, no live socket) must
|
|
// REMATCH its existing row — preserve the claim/name/content, no operator re-pair, no orphaned
|
|
// duplicate — regardless of the settle window. This is what keeps a fleet upgrade seamless.
|
|
test('claimed reinstall RECLAIMS its row (no re-pair, no duplicate) regardless of the settle window', async () => {
|
|
const fp = 'fp-claimed-' + crypto.randomBytes(4).toString('hex');
|
|
// CLAIMED (user_id set), heartbeat only 10s ago (well inside the old settle window), no live socket.
|
|
const dev = seedDevice(fp, { token: 'tokC', heartbeatAgo: 10, userId: 'user-' + crypto.randomBytes(3).toString('hex') });
|
|
const before = tdb.prepare('SELECT COUNT(*) c FROM devices').get().c;
|
|
const code = rnd();
|
|
const r = await attempt({ pairing_code: code, fingerprint: fp }); // reinstall: fingerprint only
|
|
assert.ok(r.registered && !r.authError, 'registers');
|
|
assert.equal(r.newId, dev.id, 'rematches the SAME claimed device row — identity/claim preserved');
|
|
assert.ok(r.paired, 'a claimed row emits device:paired, so the panel returns straight to paired (no code screen)');
|
|
assert.equal(tdb.prepare('SELECT COUNT(*) c FROM devices').get().c, before, 'no new device row created (no fleet duplication)');
|
|
assert.ok(!tdb.prepare('SELECT id FROM devices WHERE pairing_code = ?').get(code), 'the on-screen code is NOT provisioned as a separate row');
|
|
assert.equal(tdb.prepare('SELECT device_id FROM device_fingerprints WHERE fingerprint = ?').get(fp).device_id, dev.id, 'the fingerprint stays linked to the reclaimed row');
|
|
});
|
|
|
|
test('clear-on-leave: after disconnect, liveConn is cleared so a (stale) device reclaims', async () => {
|
|
const fp = 'fp-leave-' + crypto.randomBytes(4).toString('hex');
|
|
const dev = seedDevice(fp, { token: 'tok3', heartbeatAgo: 99999 });
|
|
const live = await connectLive({ device_id: dev.id, device_token: 'tok3', device_info: {} });
|
|
assert.ok(live.registered);
|
|
// while live, reclaim is rejected (liveConn present)
|
|
let r = await attempt({ pairing_code: rnd(), fingerprint: fp });
|
|
assert.ok(!r.registered, 'rejected while a live connection exists');
|
|
// leave: close + wait past the 5s offline-debounce so removeConnection runs
|
|
try { live.sock.close(); } catch { /* */ }
|
|
await sleep(6000);
|
|
staleHeartbeat(dev.id, 99999); // the live register bumped last_heartbeat; re-stale it
|
|
r = await attempt({ pairing_code: rnd(), fingerprint: fp });
|
|
assert.ok(r.registered, 'after disconnect cleared liveConn, the gone device reclaims');
|
|
});
|
|
|
|
test('log noise: a retried reclaim logs at most once per device per window', async () => {
|
|
const fp = 'fp-log-' + crypto.randomBytes(4).toString('hex');
|
|
const dev = seedDevice(fp, { token: 'tok4', heartbeatAgo: 5 }); // recent -> reclaim deferred
|
|
const live = await connectLive({ device_id: dev.id, device_token: 'tok4', device_info: {} });
|
|
for (let i = 0; i < 4; i++) { const r = await attempt({ pairing_code: rnd(), fingerprint: fp }); assert.ok(r.authError, 'each retry is deferred'); }
|
|
try { live.sock.close(); } catch { /* */ }
|
|
await sleep(200);
|
|
const lines = fs.readFileSync(LOG, 'utf8').split('\n').filter(l => l.includes('reclaim rejected for ' + dev.id)).length;
|
|
assert.ok(lines <= 1, `at most one rejection log per window (got ${lines}); no double-log / per-2s flood`);
|
|
});
|