sanity check on did part

This commit is contained in:
Devin Ivy 2024-02-13 11:28:19 -05:00
parent 9360e246b5
commit b400fae24e
7 changed files with 19 additions and 1 deletions
.github/workflows
lexicons/com/atproto/server
packages
api/src/client
bsky/src/lexicon
ozone/src/lexicon
pds/src
actor-store
lexicon

@ -3,7 +3,7 @@ on:
push:
branches:
- main
- pds-node-v20
- pds-sanity-check
env:
REGISTRY: ghcr.io
USERNAME: ${{ github.actor }}

@ -12,6 +12,7 @@
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "The DID to reserve a key for."
}
}

@ -3643,6 +3643,7 @@ export const schemaDict = {
properties: {
did: {
type: 'string',
format: 'did',
description: 'The DID to reserve a key for.',
},
},

@ -3643,6 +3643,7 @@ export const schemaDict = {
properties: {
did: {
type: 'string',
format: 'did',
description: 'The DID to reserve a key for.',
},
},

@ -3643,6 +3643,7 @@ export const schemaDict = {
properties: {
did: {
type: 'string',
format: 'did',
description: 'The DID to reserve a key for.',
},
},

@ -1,4 +1,5 @@
import path from 'path'
import assert from 'assert'
import fs from 'fs/promises'
import * as crypto from '@atproto/crypto'
import { Keypair, ExportableKeypair } from '@atproto/crypto'
@ -148,6 +149,7 @@ export class ActorStore {
async reserveKeypair(did?: string): Promise<string> {
let keyLoc: string | undefined
if (did) {
assertSafePathPart(did)
keyLoc = path.join(this.reservedKeyDir, did)
const maybeKey = await loadKey(keyLoc)
if (maybeKey) {
@ -259,3 +261,14 @@ export type ActorStoreTransactor = {
record: RecordTransactor
pref: PreferenceTransactor
}
function assertSafePathPart(part: string) {
const normalized = path.normalize(part)
assert(
part === normalized &&
!part.startsWith('.') &&
!part.includes('/') &&
!part.includes('\\'),
`unsafe path part: ${part}`,
)
}

@ -3643,6 +3643,7 @@ export const schemaDict = {
properties: {
did: {
type: 'string',
format: 'did',
description: 'The DID to reserve a key for.',
},
},