2018-10-19 05:41:19 -04:00
|
|
|
import { Request } from 'express'
|
2019-04-11 08:26:41 -04:00
|
|
|
import { BCRYPT_SALT_SIZE, HTTP_SIGNATURE, PRIVATE_RSA_KEY_SIZE } from '../initializers/constants'
|
2019-07-11 11:23:24 -04:00
|
|
|
import { createPrivateKey, getPublicKey, promisify1, promisify2, sha256 } from './core-utils'
|
2019-08-29 10:15:41 -04:00
|
|
|
import { jsonld } from './custom-jsonld-signature'
|
2017-11-23 11:53:38 -05:00
|
|
|
import { logger } from './logger'
|
2018-10-23 05:38:48 -04:00
|
|
|
import { cloneDeep } from 'lodash'
|
2019-08-29 10:15:41 -04:00
|
|
|
import { createSign, createVerify } from 'crypto'
|
2018-10-23 05:38:48 -04:00
|
|
|
import { buildDigest } from '../lib/job-queue/handlers/utils/activitypub-http-utils'
|
2019-07-11 11:23:24 -04:00
|
|
|
import * as bcrypt from 'bcrypt'
|
2019-08-15 05:53:26 -04:00
|
|
|
import { MActor } from '../typings/models'
|
2019-07-11 11:23:24 -04:00
|
|
|
|
|
|
|
const bcryptComparePromise = promisify2<any, string, boolean>(bcrypt.compare)
|
|
|
|
const bcryptGenSaltPromise = promisify1<number, string>(bcrypt.genSalt)
|
|
|
|
const bcryptHashPromise = promisify2<any, string | number, string>(bcrypt.hash)
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2018-10-19 05:41:19 -04:00
|
|
|
const httpSignature = require('http-signature')
|
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
async function createPrivateAndPublicKeys () {
|
|
|
|
logger.info('Generating a RSA key...')
|
2017-01-04 16:23:07 -05:00
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
const { key } = await createPrivateKey(PRIVATE_RSA_KEY_SIZE)
|
|
|
|
const { publicKey } = await getPublicKey(key)
|
2017-01-04 16:23:07 -05:00
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
return { privateKey: key, publicKey }
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
|
|
|
|
2018-10-19 05:41:19 -04:00
|
|
|
// User password checks
|
|
|
|
|
|
|
|
function comparePassword (plainPassword: string, hashPassword: string) {
|
|
|
|
return bcryptComparePromise(plainPassword, hashPassword)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function cryptPassword (password: string) {
|
|
|
|
const salt = await bcryptGenSaltPromise(BCRYPT_SALT_SIZE)
|
|
|
|
|
|
|
|
return bcryptHashPromise(password, salt)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HTTP Signature
|
|
|
|
|
2018-10-23 05:38:48 -04:00
|
|
|
function isHTTPSignatureDigestValid (rawBody: Buffer, req: Request): boolean {
|
|
|
|
if (req.headers[HTTP_SIGNATURE.HEADER_NAME] && req.headers['digest']) {
|
|
|
|
return buildDigest(rawBody.toString()) === req.headers['digest']
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
function isHTTPSignatureVerified (httpSignatureParsed: any, actor: MActor): boolean {
|
2018-10-19 05:41:19 -04:00
|
|
|
return httpSignature.verifySignature(httpSignatureParsed, actor.publicKey) === true
|
|
|
|
}
|
|
|
|
|
2018-10-23 05:38:48 -04:00
|
|
|
function parseHTTPSignature (req: Request, clockSkew?: number) {
|
|
|
|
return httpSignature.parse(req, { authorizationHeaderName: HTTP_SIGNATURE.HEADER_NAME, clockSkew })
|
2018-10-19 05:41:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// JSONLD
|
|
|
|
|
2019-08-29 10:15:41 -04:00
|
|
|
function isJsonLDSignatureVerified (fromActor: MActor, signedDocument: any): Promise<boolean> {
|
2018-10-23 05:38:48 -04:00
|
|
|
if (signedDocument.signature.type === 'RsaSignature2017') {
|
2019-08-29 10:15:41 -04:00
|
|
|
return isJsonLDRSA2017Verified(fromActor, signedDocument)
|
2018-10-23 05:38:48 -04:00
|
|
|
}
|
|
|
|
|
2019-08-29 10:15:41 -04:00
|
|
|
logger.warn('Unknown JSON LD signature %s.', signedDocument.signature.type, signedDocument)
|
2017-01-04 16:23:07 -05:00
|
|
|
|
2019-08-29 10:15:41 -04:00
|
|
|
return Promise.resolve(false)
|
2016-08-25 11:57:37 -04:00
|
|
|
}
|
|
|
|
|
2018-10-23 05:38:48 -04:00
|
|
|
// Backward compatibility with "other" implementations
|
2019-08-15 05:53:26 -04:00
|
|
|
async function isJsonLDRSA2017Verified (fromActor: MActor, signedDocument: any) {
|
2018-10-23 05:38:48 -04:00
|
|
|
const [ documentHash, optionsHash ] = await Promise.all([
|
2019-08-29 10:15:41 -04:00
|
|
|
createDocWithoutSignatureHash(signedDocument),
|
|
|
|
createSignatureHash(signedDocument.signature)
|
2018-10-23 05:38:48 -04:00
|
|
|
])
|
|
|
|
|
|
|
|
const toVerify = optionsHash + documentHash
|
|
|
|
|
|
|
|
const verify = createVerify('RSA-SHA256')
|
|
|
|
verify.update(toVerify, 'utf8')
|
|
|
|
|
|
|
|
return verify.verify(fromActor.publicKey, signedDocument.signature.signatureValue, 'base64')
|
|
|
|
}
|
|
|
|
|
2019-08-29 10:15:41 -04:00
|
|
|
async function signJsonLDObject (byActor: MActor, data: any) {
|
|
|
|
const signature = {
|
|
|
|
type: 'RsaSignature2017',
|
2017-12-18 05:53:04 -05:00
|
|
|
creator: byActor.url,
|
2019-08-29 10:15:41 -04:00
|
|
|
created: new Date().toISOString()
|
2017-10-25 10:03:33 -04:00
|
|
|
}
|
2016-02-07 05:23:23 -05:00
|
|
|
|
2019-08-29 10:15:41 -04:00
|
|
|
const [ documentHash, optionsHash ] = await Promise.all([
|
|
|
|
createDocWithoutSignatureHash(data),
|
|
|
|
createSignatureHash(signature)
|
|
|
|
])
|
|
|
|
|
|
|
|
const toSign = optionsHash + documentHash
|
|
|
|
|
|
|
|
const sign = createSign('RSA-SHA256')
|
|
|
|
sign.update(toSign, 'utf8')
|
|
|
|
|
|
|
|
const signatureValue = sign.sign(byActor.privateKey, 'base64')
|
|
|
|
Object.assign(signature, { signatureValue })
|
|
|
|
|
|
|
|
return Object.assign(data, { signature })
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
|
2016-02-07 05:23:23 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2016-02-05 12:03:20 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
2018-10-23 05:38:48 -04:00
|
|
|
isHTTPSignatureDigestValid,
|
2018-10-19 05:41:19 -04:00
|
|
|
parseHTTPSignature,
|
|
|
|
isHTTPSignatureVerified,
|
|
|
|
isJsonLDSignatureVerified,
|
2017-05-15 16:22:03 -04:00
|
|
|
comparePassword,
|
2017-11-09 11:51:58 -05:00
|
|
|
createPrivateAndPublicKeys,
|
2017-05-15 16:22:03 -04:00
|
|
|
cryptPassword,
|
2018-10-19 05:41:19 -04:00
|
|
|
signJsonLDObject
|
2016-02-07 05:23:23 -05:00
|
|
|
}
|
2019-07-11 11:23:24 -04:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2019-08-29 10:15:41 -04:00
|
|
|
|
|
|
|
function hash (obj: any): Promise<any> {
|
|
|
|
return jsonld.promises
|
|
|
|
.normalize(obj, {
|
|
|
|
algorithm: 'URDNA2015',
|
|
|
|
format: 'application/n-quads'
|
|
|
|
})
|
|
|
|
.then(res => sha256(res))
|
|
|
|
}
|
|
|
|
|
|
|
|
function createSignatureHash (signature: any) {
|
|
|
|
const signatureCopy = cloneDeep(signature)
|
|
|
|
Object.assign(signatureCopy, {
|
|
|
|
'@context': [
|
|
|
|
'https://w3id.org/security/v1',
|
|
|
|
{ RsaSignature2017: 'https://w3id.org/security#RsaSignature2017' }
|
|
|
|
]
|
|
|
|
})
|
|
|
|
|
|
|
|
delete signatureCopy.type
|
|
|
|
delete signatureCopy.id
|
|
|
|
delete signatureCopy.signatureValue
|
|
|
|
|
|
|
|
return hash(signatureCopy)
|
|
|
|
}
|
|
|
|
|
|
|
|
function createDocWithoutSignatureHash (doc: any) {
|
|
|
|
const docWithoutSignature = cloneDeep(doc)
|
|
|
|
delete docWithoutSignature.signature
|
|
|
|
|
|
|
|
return hash(docWithoutSignature)
|
|
|
|
}
|