5b7b563dc2
* Regression tests for answering every inbound segment as it arrives * Answer every segment of an inbound concatenated message as it arrives * Record the segment-by-segment answer in AGENTS.md and README * Regression tests for an empty message_id on deliver_sm_resp * Answer a deliver_sm with the empty message_id SMPP 3.4 makes it * Record Jasmin's refusal of a deliver_sm_resp message_id * Mark the Jasmin multipart deadlock fixed * Regression tests for the architecture review's findings * Give the segment id notation an owner, and every segment a status * Correct what the ids reach and what a lost group tells the application * Regression tests for a group lost to its own octet overrun * Report a group lost to its own overrun, and refuse by the command it arrived on * Keep the docs true about what a segment is answered with * Count only the answered segments of a group lost to an overrun * Report only what a lost group cost, and say which cap bit
436 lines
14 KiB
TypeScript
436 lines
14 KiB
TypeScript
import type { ErrorName } from './defs/errors.ts';
|
|
import type { MessageDlr } from './dlr-merger.ts';
|
|
import type { ParamValue } from './defs/types.ts';
|
|
import type { PduObject, PduObjectInput, TlvInput } from './pdu.ts';
|
|
import type { PduRefusedError } from './pdu-refusal.ts';
|
|
import type { BindType, CloseOptions, ReconnectOptions, SendOptions, SessionEvents, SessionOptions } from './session-options.ts';
|
|
import type { Result, VoidResult } from './result.ts';
|
|
import type { SendSmsOptions, SendSmsResult } from './send-sms.ts';
|
|
import type { SmppLog } from './log.ts';
|
|
import type { Socket } from 'node:net';
|
|
import { DlrMerger } from './dlr-merger.ts';
|
|
import { EventEmitter } from 'node:events';
|
|
import { IncomingRequests } from './incoming-requests.ts';
|
|
import { LinkTimers } from './link-timers.ts';
|
|
import { OutgoingRequests } from './outgoing-requests.ts';
|
|
import { PduTransport } from './pdu-transport.ts';
|
|
import { ReconnectLoop } from './reconnect-loop.ts';
|
|
import { leftOf } from './idle-waiters.ts';
|
|
import { errorFrom } from './error-from.ts';
|
|
import { optionalParamsMinVersion } from './defs/constants.ts';
|
|
import { bindCarries, bindCommands, defaultSystemId, defaults } from './session-options.ts';
|
|
import { isResp, objToPdu, pduReturn } from './pdu.ts';
|
|
import { refusalAnswer } from './pdu-refusal.ts';
|
|
import { guardedLog } from './log.ts';
|
|
import { submitSms, unsent } from './send-sms.ts';
|
|
import { ConcatReference } from './udh.ts';
|
|
|
|
export type {
|
|
CloseOptions,
|
|
MessageDlr,
|
|
ReconnectOptions,
|
|
SendOptions,
|
|
SendSmsOptions,
|
|
SendSmsResult,
|
|
SessionEvents,
|
|
SessionOptions,
|
|
};
|
|
export type { BindType };
|
|
export { bindCommands, defaultSystemId };
|
|
|
|
/** A listener may return a promise: an `async` one that rejects is routed like one that throws. */
|
|
type SessionListener<K extends keyof SessionEvents> = (...args: SessionEvents[K]) => unknown;
|
|
|
|
export class Session extends EventEmitter<SessionEvents> {
|
|
declare addListener: <K extends keyof SessionEvents>(event: K, listener: SessionListener<K>) => this;
|
|
declare off: <K extends keyof SessionEvents>(event: K, listener: SessionListener<K>) => this;
|
|
declare on: <K extends keyof SessionEvents>(event: K, listener: SessionListener<K>) => this;
|
|
declare once: <K extends keyof SessionEvents>(event: K, listener: SessionListener<K>) => this;
|
|
declare prependListener: <K extends keyof SessionEvents>(event: K, listener: SessionListener<K>) => this;
|
|
declare prependOnceListener: <K extends keyof SessionEvents>(event: K, listener: SessionListener<K>) => this;
|
|
declare removeListener: <K extends keyof SessionEvents>(event: K, listener: SessionListener<K>) => this;
|
|
|
|
readonly log: SmppLog;
|
|
|
|
/** The role the ESME bound with, whichever end of the link this is. Undefined before any bind. */
|
|
boundAs: BindType | undefined = undefined;
|
|
loggedIn = false;
|
|
/** What the peer declared when binding: 0x00 if it declared none, undefined before any bind. */
|
|
peerInterfaceVersion: number | undefined = undefined;
|
|
userData: unknown = undefined;
|
|
|
|
private readonly concatReference = new ConcatReference();
|
|
private readonly dlrMerger: DlrMerger;
|
|
private readonly incoming: IncomingRequests;
|
|
private readonly options: SessionOptions;
|
|
private readonly outgoing: OutgoingRequests;
|
|
private readonly reconnectLoop: ReconnectLoop | undefined;
|
|
private readonly timers: LinkTimers;
|
|
private readonly transport: PduTransport;
|
|
|
|
private closed = false;
|
|
private ended = false;
|
|
|
|
/** A listener that throws is the application's bug; it must not become ours. Hard rule 1. */
|
|
override emit<K extends keyof SessionEvents>(
|
|
event: K,
|
|
...args: K extends keyof SessionEvents ? SessionEvents[K] : never
|
|
): boolean {
|
|
try {
|
|
return super.emit(event, ...args);
|
|
} catch (thrown: unknown) {
|
|
const err = errorFrom(thrown);
|
|
|
|
this.log.error('session - a listener threw', { event, message: err.message });
|
|
|
|
// Guarded against the listener that throws being the one listening for this.
|
|
if (event !== 'sessionError') this.emit('sessionError', err);
|
|
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/** The same guard for a listener that rejects rather than throws; captureRejections routes here. */
|
|
override [EventEmitter.captureRejectionSymbol](
|
|
reason: unknown,
|
|
...args: [event: keyof SessionEvents, ...rest: unknown[]]
|
|
): void {
|
|
const [event, ...rest] = args;
|
|
const error = errorFrom(reason);
|
|
|
|
this.log.error('session - a listener rejected', { event, message: error.message });
|
|
|
|
if (event === 'sms') this.incoming.listenerRejected(rest[0]);
|
|
|
|
if (event !== 'sessionError') this.emit('sessionError', error);
|
|
}
|
|
|
|
constructor(options: SessionOptions) {
|
|
super({ captureRejections: true });
|
|
|
|
this.log = guardedLog(options.log);
|
|
this.options = options;
|
|
this.dlrMerger = new DlrMerger({
|
|
log: this.log,
|
|
max: defaults.maxDlrMerges,
|
|
timeout: defaults.dlrMergeTimeout,
|
|
});
|
|
this.incoming = new IncomingRequests({
|
|
dlrMerger: this.dlrMerger,
|
|
log: this.log,
|
|
maxOctets: options.maxOctets,
|
|
maxReassembly: options.maxReassembly,
|
|
onRequest: options.onRequest,
|
|
reassemblyTimeout: options.reassemblyTimeout,
|
|
sendPastDrain: input => this.outgoing.pastDrain(input, {}),
|
|
session: this,
|
|
smsIdFormat: options.smsIdFormat,
|
|
systemId: options.systemId,
|
|
});
|
|
this.reconnectLoop = this.loopFor(options.reconnect);
|
|
this.timers = new LinkTimers({
|
|
enquireLinkInterval: options.enquireLinkInterval,
|
|
idleTimeout: options.idleTimeout,
|
|
log: this.log,
|
|
onEnquireLink: () => { void this.send({ cmdName: 'enquire_link' }); },
|
|
// Not close(): a link that went quiet is a drop, and a drop is what reconnect is for.
|
|
onIdle: () => { this.teardown(); },
|
|
});
|
|
this.transport = this.transportFor(options.sock);
|
|
this.outgoing = new OutgoingRequests({
|
|
log: this.log,
|
|
maxOutstanding: options.maxOutstanding ?? defaults.maxOutstanding,
|
|
responseTimeout: options.responseTimeout ?? defaults.responseTimeout,
|
|
transport: this.transport,
|
|
});
|
|
|
|
this.resetTimers();
|
|
}
|
|
|
|
/** Replaced on reconnect, so hold the session rather than this. */
|
|
get sock(): Socket {
|
|
return this.transport.sock;
|
|
}
|
|
|
|
/** Whether this session's bind direction carries a command. Consulted by the library's senders. */
|
|
bindAllows(cmdName: string): boolean {
|
|
return bindCarries(this.boundAs, cmdName);
|
|
}
|
|
|
|
/** SMPP 3.4 forbids sending optional parameters to a peer that declared an older version. */
|
|
acceptsOptionalParams(): boolean {
|
|
return this.peerInterfaceVersion === undefined
|
|
|| this.peerInterfaceVersion >= optionalParamsMinVersion;
|
|
}
|
|
|
|
/** Sends a request and resolves with the peer's response. */
|
|
send(input: PduObjectInput, options: SendOptions = {}): Promise<Result<{ pduObj: PduObject }>> {
|
|
return this.outgoing.request(input, options);
|
|
}
|
|
|
|
/** Answers a request the peer sent us. Responses are never waited on. */
|
|
async sendReturn(
|
|
pdu: PduObject,
|
|
status: ErrorName = 'ESME_ROK',
|
|
params: Record<string, ParamValue> = {},
|
|
tlvs?: Record<string, TlvInput>,
|
|
): Promise<VoidResult> {
|
|
return Promise.resolve(
|
|
this.answer(pduReturn(pdu, status, params, tlvs), pdu.cmdName, pdu.seqNr),
|
|
);
|
|
}
|
|
|
|
private answer(built: Result<{ buffer: Buffer }>, cmdName: string, seqNr: number): VoidResult {
|
|
const sent = built.err ? { err: built.err } : this.transport.write(built.buffer);
|
|
|
|
// A peer that unbinds and drops the link takes our response with it; that is not a failure.
|
|
if (sent.err && !this.closed) {
|
|
this.log.warn('session - could not answer a request', {
|
|
cmdName,
|
|
message: sent.err.message,
|
|
seqNr,
|
|
});
|
|
this.emit('sessionError', sent.err);
|
|
}
|
|
|
|
return sent;
|
|
}
|
|
|
|
async sendSms(sms: SendSmsOptions, options: SendOptions = {}): Promise<SendSmsResult> {
|
|
if (!this.bindAllows('submit_sm')) {
|
|
return unsent(new Error('A receiver-bound session does not carry submit_sm'));
|
|
}
|
|
|
|
const sent = await submitSms({
|
|
log: this.log,
|
|
reference: this.concatReference.next(),
|
|
respIdNotation: this.options.smsIdFormat?.submitResp,
|
|
send: input => this.send(input, options),
|
|
}, sms);
|
|
|
|
if (!sent.err && sms.dlr === true) this.dlrMerger.expect(sent.smsIds);
|
|
|
|
return sent;
|
|
}
|
|
|
|
/**
|
|
* Drains, unbinds politely, then closes. Many SMSCs drop the link instead of answering the
|
|
* unbind, which is fine. Reports the unbind's own failure ahead of an unfinished drain.
|
|
*/
|
|
async unbind(): Promise<VoidResult> {
|
|
const drained = await this.drain(undefined);
|
|
const wasOpen = !this.closed;
|
|
// now(), not send(): a drain refuses a send, and the unbind goes out either way.
|
|
const sent = wasOpen
|
|
? await this.outgoing.now({ cmdName: 'unbind' })
|
|
: { err: new Error('Session is closed') };
|
|
const closedOnUnbind = wasOpen && this.closed;
|
|
|
|
this.end();
|
|
|
|
return sent.err && !closedOnUnbind ? { err: sent.err } : drained;
|
|
}
|
|
|
|
/**
|
|
* Closes for good: refuses new sends, waits out the requests already on the wire up to
|
|
* `shutdownTimeout`, then tears down whatever is left. A session closed this way never reconnects.
|
|
*/
|
|
async close(options: CloseOptions = {}): Promise<VoidResult> {
|
|
const drained = await this.drain(options.signal);
|
|
|
|
this.end();
|
|
|
|
return drained;
|
|
}
|
|
|
|
private transportFor(sock: Socket): PduTransport {
|
|
return new PduTransport({
|
|
log: this.log,
|
|
onClose: () => { this.onClose(); },
|
|
onData: chunk => { this.onData(chunk); },
|
|
onError: err => { this.emit('sessionError', err); },
|
|
onFramed: pdu => { this.emit('incomingPdu', pdu); },
|
|
onPdu: pduObj => { this.dispatch(pduObj); },
|
|
onRefused: refused => { this.refuse(refused); },
|
|
onUnreadable: err => {
|
|
this.emit('sessionError', err);
|
|
this.teardown();
|
|
},
|
|
}, sock);
|
|
}
|
|
|
|
private loopFor(reconnect: ReconnectOptions | undefined): ReconnectLoop | undefined {
|
|
if (!reconnect) return undefined;
|
|
|
|
return new ReconnectLoop({
|
|
connect: reconnect.connect,
|
|
log: this.log,
|
|
maxDelay: reconnect.maxDelay,
|
|
minDelay: reconnect.minDelay,
|
|
onConnected: sock => this.comeBackUp(sock, reconnect.onConnected),
|
|
});
|
|
}
|
|
|
|
private async comeBackUp(
|
|
sock: Socket,
|
|
bind: (session: Session) => Promise<VoidResult>,
|
|
): Promise<VoidResult> {
|
|
this.attach(sock);
|
|
|
|
const bound = await bind(this);
|
|
|
|
if (bound.err) {
|
|
this.teardown();
|
|
|
|
return { err: bound.err };
|
|
}
|
|
|
|
// close() can land while the rebind is in flight.
|
|
if (this.reconnectLoop?.isStopped() === true) {
|
|
this.teardown();
|
|
|
|
return { err: new Error('Session closed while it was coming back up') };
|
|
}
|
|
|
|
this.resetTimers();
|
|
this.outgoing.linkUp();
|
|
this.log.info('session - reconnected');
|
|
this.emit('reconnected');
|
|
|
|
return {};
|
|
}
|
|
|
|
private attach(sock: Socket): void {
|
|
this.transport.attach(sock);
|
|
this.closed = false;
|
|
}
|
|
|
|
/** Stops new sends and waits out the messages we hold and the requests already issued. */
|
|
private async drain(signal: AbortSignal | undefined): Promise<VoidResult> {
|
|
this.reconnectLoop?.stop();
|
|
this.outgoing.stopAccepting();
|
|
|
|
if (this.outgoing.linkDown()) return {};
|
|
|
|
const timeout = this.options.shutdownTimeout ?? defaults.shutdownTimeout;
|
|
const deadline = timeout > 0 ? Date.now() + timeout : 0;
|
|
// Answering a message can put a receipt on the wire; nothing on the wire produces a message.
|
|
const messages = await this.incoming.drain(this.answering(timeout), signal);
|
|
const requests = await this.outgoing.drain(leftOf(deadline), signal);
|
|
|
|
// The window empties on a teardown too, which settles everything the link was carrying.
|
|
if (this.outgoing.linkDown()) {
|
|
return { err: new Error('The session closed before the drain finished') };
|
|
}
|
|
|
|
if (!messages.err) return requests;
|
|
|
|
if (!requests.err) return messages;
|
|
|
|
return { err: new Error(`${messages.err.message}; ${requests.err.message}`) };
|
|
}
|
|
|
|
/** The application half's budget, which may never be "forever": nothing else ends that wait. */
|
|
private answering(timeout: number): number {
|
|
if (timeout > 0) return timeout;
|
|
|
|
const responseTimeout = this.options.responseTimeout ?? defaults.responseTimeout;
|
|
|
|
return responseTimeout > 0 ? responseTimeout : defaults.responseTimeout;
|
|
}
|
|
|
|
/** The session is over now, drained or not. Nothing brings it back. */
|
|
private end(): void {
|
|
this.reconnectLoop?.stop();
|
|
this.teardown();
|
|
this.dlrMerger.clear();
|
|
this.emitClose();
|
|
}
|
|
|
|
private emitClose(): void {
|
|
if (this.ended) return;
|
|
|
|
this.ended = true;
|
|
this.outgoing.linkLost(false);
|
|
this.emit('close');
|
|
}
|
|
|
|
private teardown(): void {
|
|
if (this.closed) return;
|
|
|
|
this.closed = true;
|
|
|
|
// Read once: clear() reports lost segments, and a listener could stop the loop between reads.
|
|
const retrying = this.retrying();
|
|
|
|
this.outgoing.linkLost(retrying);
|
|
this.timers.clear();
|
|
this.incoming.clear();
|
|
this.sock.destroy();
|
|
|
|
if (retrying) this.emit('disconnected');
|
|
else this.emitClose();
|
|
}
|
|
|
|
private retrying(): boolean {
|
|
return this.reconnectLoop !== undefined && !this.reconnectLoop.isStopped();
|
|
}
|
|
|
|
private onData(chunk: Buffer): void {
|
|
this.emit('data', chunk);
|
|
this.resetTimers();
|
|
}
|
|
|
|
private dispatch(pduObj: PduObject): void {
|
|
if (isResp(pduObj)) {
|
|
if (!this.outgoing.deliver(pduObj)) {
|
|
this.log.debug('session - response with no matching request', { seqNr: pduObj.seqNr });
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
this.emit('incomingPduObj', pduObj);
|
|
// Every application hook and listener reached from an incoming PDU funnels through here.
|
|
void this.incoming.handle(pduObj).catch((thrown: unknown) => {
|
|
const err = errorFrom(thrown);
|
|
|
|
this.log.error('session - a handler threw', { message: err.message });
|
|
this.emit('sessionError', err);
|
|
});
|
|
}
|
|
|
|
/** A PDU the codec refused. Its header parsed, so the peer gets an answer and the link stays. */
|
|
private refuse(refused: PduRefusedError): void {
|
|
const { cmdId, cmdName, seqNr } = refused.header;
|
|
|
|
this.emit('sessionError', refused);
|
|
|
|
// A response carries a sequence number of ours, so writing one back lands in the peer's space.
|
|
if (isResp(refused.header)) {
|
|
this.outgoing.settleRefused(seqNr, refused);
|
|
|
|
return;
|
|
}
|
|
|
|
this.answer(objToPdu({ ...refusalAnswer(refused), seqNr }), cmdName ?? String(cmdId), seqNr);
|
|
}
|
|
|
|
private resetTimers(): void {
|
|
if (this.closed) return;
|
|
|
|
this.timers.reset();
|
|
}
|
|
|
|
private onClose(): void {
|
|
if (this.reconnectLoop && !this.reconnectLoop.isStopped()) {
|
|
this.teardown();
|
|
this.reconnectLoop.schedule();
|
|
|
|
return;
|
|
}
|
|
|
|
this.end();
|
|
}
|
|
}
|