sanity check on did part
This commit is contained in:
parent
9360e246b5
commit
b400fae24e
.github/workflows
lexicons/com/atproto/server
packages
api/src/client
bsky/src/lexicon
ozone/src/lexicon
pds/src
@ -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.',
|
||||
},
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user