203 lines
7.8 KiB
TypeScript
203 lines
7.8 KiB
TypeScript
/*
|
||
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||
* SPDX-License-Identifier: AGPL-3.0-only
|
||
*/
|
||
|
||
import { URL } from 'node:url';
|
||
import { Injectable } from '@nestjs/common';
|
||
import * as Bull from 'bullmq';
|
||
import { verifyDraftSignature } from '@misskey-dev/node-http-message-signatures';
|
||
import type Logger from '@/logger.js';
|
||
import { MetaService } from '@/core/MetaService.js';
|
||
import { FederatedInstanceService } from '@/core/FederatedInstanceService.js';
|
||
import { FetchInstanceMetadataService } from '@/core/FetchInstanceMetadataService.js';
|
||
import InstanceChart from '@/core/chart/charts/instance.js';
|
||
import ApRequestChart from '@/core/chart/charts/ap-request.js';
|
||
import FederationChart from '@/core/chart/charts/federation.js';
|
||
import { getApId } from '@/core/activitypub/type.js';
|
||
import type { MiRemoteUser } from '@/models/User.js';
|
||
import type { MiUserPublickey } from '@/models/UserPublickey.js';
|
||
import { ApDbResolverService } from '@/core/activitypub/ApDbResolverService.js';
|
||
import { StatusError } from '@/misc/status-error.js';
|
||
import * as Acct from '@/misc/acct.js';
|
||
import { UtilityService } from '@/core/UtilityService.js';
|
||
import { ApPersonService } from '@/core/activitypub/models/ApPersonService.js';
|
||
import { LdSignatureService } from '@/core/activitypub/LdSignatureService.js';
|
||
import { ApInboxService } from '@/core/activitypub/ApInboxService.js';
|
||
import { bindThis } from '@/decorators.js';
|
||
import { IdentifiableError } from '@/misc/identifiable-error.js';
|
||
import { QueueLoggerService } from '../QueueLoggerService.js';
|
||
import type { InboxJobData } from '../types.js';
|
||
|
||
@Injectable()
|
||
export class InboxProcessorService {
|
||
private logger: Logger;
|
||
|
||
constructor(
|
||
private utilityService: UtilityService,
|
||
private metaService: MetaService,
|
||
private apInboxService: ApInboxService,
|
||
private federatedInstanceService: FederatedInstanceService,
|
||
private fetchInstanceMetadataService: FetchInstanceMetadataService,
|
||
private ldSignatureService: LdSignatureService,
|
||
private apPersonService: ApPersonService,
|
||
private apDbResolverService: ApDbResolverService,
|
||
private instanceChart: InstanceChart,
|
||
private apRequestChart: ApRequestChart,
|
||
private federationChart: FederationChart,
|
||
private queueLoggerService: QueueLoggerService,
|
||
) {
|
||
this.logger = this.queueLoggerService.logger.createSubLogger('inbox');
|
||
}
|
||
|
||
@bindThis
|
||
public async process(job: Bull.Job<InboxJobData>): Promise<string> {
|
||
const signature = 'version' in job.data.signature ? job.data.signature.value : job.data.signature;
|
||
if (Array.isArray(signature)) {
|
||
// RFC 9401はsignatureが配列になるが、とりあえずエラーにする
|
||
throw new Error('signature is array');
|
||
}
|
||
const activity = job.data.activity;
|
||
|
||
//#region Log
|
||
const info = Object.assign({}, activity);
|
||
delete info['@context'];
|
||
this.logger.debug(JSON.stringify(info, null, 2));
|
||
//#endregion
|
||
|
||
const host = this.utilityService.toPuny(new URL(signature.keyId).hostname);
|
||
|
||
// ブロックしてたら中断
|
||
const meta = await this.metaService.fetch();
|
||
if (this.utilityService.isBlockedHost(meta.blockedHosts, host)) {
|
||
return `Blocked request: ${host}`;
|
||
}
|
||
|
||
const keyIdLower = signature.keyId.toLowerCase();
|
||
if (keyIdLower.startsWith('acct:')) {
|
||
return `Old keyId is no longer supported. ${keyIdLower}`;
|
||
}
|
||
|
||
// HTTP-Signature keyIdを元にDBから取得
|
||
let authUser: {
|
||
user: MiRemoteUser;
|
||
key: MiUserPublickey | null;
|
||
} | null = null;
|
||
|
||
try {
|
||
authUser = await this.apDbResolverService.getAuthUserFromApId(getApId(activity.actor), signature.keyId);
|
||
} catch (err) {
|
||
// 対象が4xxならスキップ
|
||
if (err instanceof StatusError) {
|
||
if (!err.isRetryable) {
|
||
throw new Bull.UnrecoverableError(`skip: Ignored deleted actors on both ends ${activity.actor} - ${err.statusCode}`);
|
||
}
|
||
throw new Error(`Error in actor ${activity.actor} - ${err.statusCode}`);
|
||
}
|
||
}
|
||
|
||
// それでもわからなければ終了
|
||
if (authUser == null) {
|
||
throw new Bull.UnrecoverableError('skip: failed to resolve user');
|
||
}
|
||
|
||
// publicKey がなくても終了
|
||
if (authUser.key == null) {
|
||
// publicKeyがないのはpublicKeyの変更(主にmain→ed25519)に
|
||
// 対応しきれていない場合があるためリトライする
|
||
throw new Error(`skip: failed to resolve user publicKey: keyId=${signature.keyId}`);
|
||
}
|
||
|
||
// HTTP-Signatureの検証
|
||
const errorLogger = (ms: any) => this.logger.error(ms);
|
||
const httpSignatureValidated = await verifyDraftSignature(signature, authUser.key.keyPem, errorLogger);
|
||
this.logger.debug('Inbox message validation: ', {
|
||
userId: authUser.user.id,
|
||
userAcct: Acct.toString(authUser.user),
|
||
parsedKeyId: signature.keyId,
|
||
foundKeyId: authUser.key.keyId,
|
||
httpSignatureValidated,
|
||
});
|
||
|
||
// また、signatureのsignerは、activity.actorと一致する必要がある
|
||
if (httpSignatureValidated !== true || authUser.user.uri !== activity.actor) {
|
||
// 一致しなくても、でもLD-Signatureがありそうならそっちも見る
|
||
if (activity.signature?.creator) {
|
||
if (activity.signature.type !== 'RsaSignature2017') {
|
||
throw new Bull.UnrecoverableError(`skip: unsupported LD-signature type ${activity.signature.type}`);
|
||
}
|
||
|
||
authUser = await this.apDbResolverService.getAuthUserFromApId(activity.signature.creator.replace(/#.*/, ''));
|
||
|
||
if (authUser == null) {
|
||
throw new Bull.UnrecoverableError('skip: LD-Signatureのユーザーが取得できませんでした');
|
||
}
|
||
|
||
if (authUser.key == null) {
|
||
throw new Bull.UnrecoverableError('skip: LD-SignatureのユーザーはpublicKeyを持っていませんでした');
|
||
}
|
||
|
||
// LD-Signature検証
|
||
const ldSignature = this.ldSignatureService.use();
|
||
const verified = await ldSignature.verifyRsaSignature2017(activity, authUser.key.keyPem).catch(() => false);
|
||
if (!verified) {
|
||
throw new Bull.UnrecoverableError('skip: LD-Signatureの検証に失敗しました');
|
||
}
|
||
|
||
// もう一度actorチェック
|
||
if (authUser.user.uri !== activity.actor) {
|
||
throw new Bull.UnrecoverableError(`skip: LD-Signature user(${authUser.user.uri}) !== activity.actor(${activity.actor})`);
|
||
}
|
||
|
||
// ブロックしてたら中断
|
||
const ldHost = this.utilityService.extractDbHost(authUser.user.uri);
|
||
if (this.utilityService.isBlockedHost(meta.blockedHosts, ldHost)) {
|
||
throw new Bull.UnrecoverableError(`Blocked request: ${ldHost}`);
|
||
}
|
||
} else {
|
||
throw new Bull.UnrecoverableError(`skip: http-signature verification failed and no LD-Signature. keyId=${signature.keyId}`);
|
||
}
|
||
}
|
||
|
||
// activity.idがあればホストが署名者のホストであることを確認する
|
||
if (typeof activity.id === 'string') {
|
||
const signerHost = this.utilityService.extractDbHost(authUser.user.uri!);
|
||
const activityIdHost = this.utilityService.extractDbHost(activity.id);
|
||
if (signerHost !== activityIdHost) {
|
||
throw new Bull.UnrecoverableError(`skip: signerHost(${signerHost}) !== activity.id host(${activityIdHost}`);
|
||
}
|
||
}
|
||
|
||
// Update stats
|
||
this.federatedInstanceService.fetch(authUser.user.host).then(i => {
|
||
this.federatedInstanceService.update(i.id, {
|
||
latestRequestReceivedAt: new Date(),
|
||
isNotResponding: false,
|
||
});
|
||
|
||
this.fetchInstanceMetadataService.fetchInstanceMetadata(i);
|
||
|
||
this.apRequestChart.inbox();
|
||
this.federationChart.inbox(i.host);
|
||
|
||
if (meta.enableChartsForFederatedInstances) {
|
||
this.instanceChart.requestReceived(i.host);
|
||
}
|
||
});
|
||
|
||
// アクティビティを処理
|
||
try {
|
||
await this.apInboxService.performActivity(authUser.user, activity);
|
||
} catch (e) {
|
||
if (e instanceof IdentifiableError) {
|
||
if (e.id === '689ee33f-f97c-479a-ac49-1b9f8140af99') {
|
||
return 'blocked notes with prohibited words';
|
||
}
|
||
if (e.id === '85ab9bd7-3a41-4530-959d-f07073900109') return 'actor has been suspended';
|
||
}
|
||
throw e;
|
||
}
|
||
return 'ok';
|
||
}
|
||
}
|