|
|
|
@ -22,6 +22,7 @@ export interface IPortProxySettings extends plugins.tls.TlsOptions {
|
|
|
|
|
maxConnectionLifetime?: number; // (ms) force cleanup of long-lived connections
|
|
|
|
|
globalPortRanges: Array<{ from: number; to: number }>; // Global allowed port ranges
|
|
|
|
|
forwardAllGlobalRanges?: boolean; // When true, forwards all connections on global port ranges to the global targetIP
|
|
|
|
|
gracefulShutdownTimeout?: number; // (ms) maximum time to wait for connections to close during shutdown
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -88,22 +89,24 @@ function extractSNI(buffer: Buffer): string | undefined {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface IConnectionRecord {
|
|
|
|
|
id: string; // Unique connection identifier
|
|
|
|
|
incoming: plugins.net.Socket;
|
|
|
|
|
outgoing: plugins.net.Socket | null;
|
|
|
|
|
incomingStartTime: number;
|
|
|
|
|
outgoingStartTime?: number;
|
|
|
|
|
outgoingClosedTime?: number;
|
|
|
|
|
lockedDomain?: string; // New field to lock this connection to the initial SNI
|
|
|
|
|
connectionClosed: boolean;
|
|
|
|
|
cleanupTimer?: NodeJS.Timeout; // Timer to force cleanup after max lifetime/inactivity
|
|
|
|
|
lockedDomain?: string; // Used to lock this connection to the initial SNI
|
|
|
|
|
connectionClosed: boolean; // Flag to prevent multiple cleanup attempts
|
|
|
|
|
cleanupTimer?: NodeJS.Timeout; // Timer for max lifetime/inactivity
|
|
|
|
|
lastActivity: number; // Last activity timestamp for inactivity detection
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Helper: Check if a port falls within any of the given port ranges.
|
|
|
|
|
// Helper: Check if a port falls within any of the given port ranges
|
|
|
|
|
const isPortInRanges = (port: number, ranges: Array<{ from: number; to: number }>): boolean => {
|
|
|
|
|
return ranges.some(range => port >= range.from && port <= range.to);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Helper: Check if a given IP matches any of the glob patterns.
|
|
|
|
|
// Helper: Check if a given IP matches any of the glob patterns
|
|
|
|
|
const isAllowed = (ip: string, patterns: string[]): boolean => {
|
|
|
|
|
const normalizeIP = (ip: string): string[] => {
|
|
|
|
|
if (ip.startsWith('::ffff:')) {
|
|
|
|
@ -122,20 +125,25 @@ const isAllowed = (ip: string, patterns: string[]): boolean => {
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Helper: Check if an IP is allowed considering allowed and blocked glob patterns.
|
|
|
|
|
// Helper: Check if an IP is allowed considering allowed and blocked glob patterns
|
|
|
|
|
const isGlobIPAllowed = (ip: string, allowed: string[], blocked: string[] = []): boolean => {
|
|
|
|
|
if (blocked.length > 0 && isAllowed(ip, blocked)) return false;
|
|
|
|
|
return isAllowed(ip, allowed);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Helper: Generate a unique connection ID
|
|
|
|
|
const generateConnectionId = (): string => {
|
|
|
|
|
return Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export class PortProxy {
|
|
|
|
|
private netServers: plugins.net.Server[] = [];
|
|
|
|
|
settings: IPortProxySettings;
|
|
|
|
|
// Unified record tracking each connection pair.
|
|
|
|
|
private connectionRecords: Set<IConnectionRecord> = new Set();
|
|
|
|
|
private connectionRecords: Map<string, IConnectionRecord> = new Map();
|
|
|
|
|
private connectionLogger: NodeJS.Timeout | null = null;
|
|
|
|
|
private isShuttingDown: boolean = false;
|
|
|
|
|
|
|
|
|
|
// Map to track round robin indices for each domain config.
|
|
|
|
|
// Map to track round robin indices for each domain config
|
|
|
|
|
private domainTargetIndices: Map<IDomainConfig, number> = new Map();
|
|
|
|
|
|
|
|
|
|
private terminationStats: {
|
|
|
|
@ -151,6 +159,7 @@ export class PortProxy {
|
|
|
|
|
...settingsArg,
|
|
|
|
|
targetIP: settingsArg.targetIP || 'localhost',
|
|
|
|
|
maxConnectionLifetime: settingsArg.maxConnectionLifetime || 600000,
|
|
|
|
|
gracefulShutdownTimeout: settingsArg.gracefulShutdownTimeout || 30000,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -159,32 +168,66 @@ export class PortProxy {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Cleans up a connection record if not already cleaned up.
|
|
|
|
|
* Cleans up a connection record.
|
|
|
|
|
* Destroys both incoming and outgoing sockets, clears timers, and removes the record.
|
|
|
|
|
* Logs the cleanup event.
|
|
|
|
|
* @param record - The connection record to clean up
|
|
|
|
|
* @param reason - Optional reason for cleanup (for logging)
|
|
|
|
|
*/
|
|
|
|
|
private cleanupConnection(record: IConnectionRecord, special: boolean = false): void {
|
|
|
|
|
private cleanupConnection(record: IConnectionRecord, reason: string = 'normal'): void {
|
|
|
|
|
if (!record.connectionClosed) {
|
|
|
|
|
record.connectionClosed = true;
|
|
|
|
|
|
|
|
|
|
if (record.cleanupTimer) {
|
|
|
|
|
clearTimeout(record.cleanupTimer);
|
|
|
|
|
record.cleanupTimer = undefined;
|
|
|
|
|
}
|
|
|
|
|
if (!record.incoming.destroyed) {
|
|
|
|
|
record.incoming.destroy();
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
if (!record.incoming.destroyed) {
|
|
|
|
|
// Try graceful shutdown first, then force destroy after a short timeout
|
|
|
|
|
record.incoming.end();
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
if (record && !record.incoming.destroyed) {
|
|
|
|
|
record.incoming.destroy();
|
|
|
|
|
}
|
|
|
|
|
}, 1000);
|
|
|
|
|
}
|
|
|
|
|
} catch (err) {
|
|
|
|
|
console.log(`Error closing incoming socket: ${err}`);
|
|
|
|
|
if (!record.incoming.destroyed) {
|
|
|
|
|
record.incoming.destroy();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (record.outgoing && !record.outgoing.destroyed) {
|
|
|
|
|
record.outgoing.destroy();
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
if (record.outgoing && !record.outgoing.destroyed) {
|
|
|
|
|
// Try graceful shutdown first, then force destroy after a short timeout
|
|
|
|
|
record.outgoing.end();
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
if (record && record.outgoing && !record.outgoing.destroyed) {
|
|
|
|
|
record.outgoing.destroy();
|
|
|
|
|
}
|
|
|
|
|
}, 1000);
|
|
|
|
|
}
|
|
|
|
|
} catch (err) {
|
|
|
|
|
console.log(`Error closing outgoing socket: ${err}`);
|
|
|
|
|
if (record.outgoing && !record.outgoing.destroyed) {
|
|
|
|
|
record.outgoing.destroy();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.connectionRecords.delete(record);
|
|
|
|
|
|
|
|
|
|
// Remove the record from the tracking map
|
|
|
|
|
this.connectionRecords.delete(record.id);
|
|
|
|
|
|
|
|
|
|
const remoteIP = record.incoming.remoteAddress || 'unknown';
|
|
|
|
|
if (special) {
|
|
|
|
|
console.log(`Special parity cleanup: Connection from ${remoteIP} cleaned up due to duration difference.`);
|
|
|
|
|
} else {
|
|
|
|
|
console.log(`Connection from ${remoteIP} terminated. Active connections: ${this.connectionRecords.size}`);
|
|
|
|
|
}
|
|
|
|
|
console.log(`Connection from ${remoteIP} terminated (${reason}). Active connections: ${this.connectionRecords.size}`);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private updateActivity(record: IConnectionRecord): void {
|
|
|
|
|
record.lastActivity = Date.now();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private getTargetIP(domainConfig: IDomainConfig): string {
|
|
|
|
|
if (domainConfig.targetIPs && domainConfig.targetIPs.length > 0) {
|
|
|
|
|
const currentIndex = this.domainTargetIndices.get(domainConfig) || 0;
|
|
|
|
@ -198,27 +241,44 @@ export class PortProxy {
|
|
|
|
|
public async start() {
|
|
|
|
|
// Define a unified connection handler for all listening ports.
|
|
|
|
|
const connectionHandler = (socket: plugins.net.Socket) => {
|
|
|
|
|
if (this.isShuttingDown) {
|
|
|
|
|
socket.end();
|
|
|
|
|
socket.destroy();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const remoteIP = socket.remoteAddress || '';
|
|
|
|
|
const localPort = socket.localPort; // The port on which this connection was accepted.
|
|
|
|
|
|
|
|
|
|
const connectionId = generateConnectionId();
|
|
|
|
|
const connectionRecord: IConnectionRecord = {
|
|
|
|
|
id: connectionId,
|
|
|
|
|
incoming: socket,
|
|
|
|
|
outgoing: null,
|
|
|
|
|
incomingStartTime: Date.now(),
|
|
|
|
|
connectionClosed: false,
|
|
|
|
|
lastActivity: Date.now(),
|
|
|
|
|
connectionClosed: false
|
|
|
|
|
};
|
|
|
|
|
this.connectionRecords.add(connectionRecord);
|
|
|
|
|
this.connectionRecords.set(connectionId, connectionRecord);
|
|
|
|
|
|
|
|
|
|
console.log(`New connection from ${remoteIP} on port ${localPort}. Active connections: ${this.connectionRecords.size}`);
|
|
|
|
|
|
|
|
|
|
let initialDataReceived = false;
|
|
|
|
|
let incomingTerminationReason: string | null = null;
|
|
|
|
|
let outgoingTerminationReason: string | null = null;
|
|
|
|
|
|
|
|
|
|
// Local cleanup function that delegates to the class method.
|
|
|
|
|
// Local function for cleanupOnce
|
|
|
|
|
const cleanupOnce = () => {
|
|
|
|
|
this.cleanupConnection(connectionRecord);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Define initiateCleanupOnce for compatibility with potential future improvements
|
|
|
|
|
const initiateCleanupOnce = (reason: string = 'normal') => {
|
|
|
|
|
console.log(`Connection cleanup initiated for ${remoteIP} (${reason})`);
|
|
|
|
|
cleanupOnce();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Helper to reject an incoming connection.
|
|
|
|
|
// Helper to reject an incoming connection
|
|
|
|
|
const rejectIncomingConnection = (reason: string, logMessage: string) => {
|
|
|
|
|
console.log(logMessage);
|
|
|
|
|
socket.end();
|
|
|
|
@ -229,11 +289,22 @@ export class PortProxy {
|
|
|
|
|
cleanupOnce();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Set an initial timeout for SNI data if needed
|
|
|
|
|
let initialTimeout: NodeJS.Timeout | null = null;
|
|
|
|
|
if (this.settings.sniEnabled) {
|
|
|
|
|
initialTimeout = setTimeout(() => {
|
|
|
|
|
if (!initialDataReceived) {
|
|
|
|
|
console.log(`Initial data timeout for ${remoteIP}`);
|
|
|
|
|
socket.end();
|
|
|
|
|
cleanupOnce();
|
|
|
|
|
}
|
|
|
|
|
}, 5000);
|
|
|
|
|
} else {
|
|
|
|
|
initialDataReceived = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
socket.on('error', (err: Error) => {
|
|
|
|
|
const errorMessage = initialDataReceived
|
|
|
|
|
? `(Immediate) Incoming socket error from ${remoteIP}: ${err.message}`
|
|
|
|
|
: `(Premature) Incoming socket error from ${remoteIP} before data received: ${err.message}`;
|
|
|
|
|
console.log(errorMessage);
|
|
|
|
|
console.log(`Incoming socket error from ${remoteIP}: ${err.message}`);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const handleError = (side: 'incoming' | 'outgoing') => (err: Error) => {
|
|
|
|
@ -252,7 +323,7 @@ export class PortProxy {
|
|
|
|
|
outgoingTerminationReason = reason;
|
|
|
|
|
this.incrementTerminationStat('outgoing', reason);
|
|
|
|
|
}
|
|
|
|
|
cleanupOnce();
|
|
|
|
|
initiateCleanupOnce(reason);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleClose = (side: 'incoming' | 'outgoing') => () => {
|
|
|
|
@ -266,7 +337,7 @@ export class PortProxy {
|
|
|
|
|
// Record the time when outgoing socket closed.
|
|
|
|
|
connectionRecord.outgoingClosedTime = Date.now();
|
|
|
|
|
}
|
|
|
|
|
cleanupOnce();
|
|
|
|
|
initiateCleanupOnce('closed_' + side);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -274,9 +345,15 @@ export class PortProxy {
|
|
|
|
|
* @param serverName - The SNI hostname (unused when forcedDomain is provided).
|
|
|
|
|
* @param initialChunk - Optional initial data chunk.
|
|
|
|
|
* @param forcedDomain - If provided, overrides SNI/domain lookup (used for port-based routing).
|
|
|
|
|
* @param overridePort - If provided, use this port for the outgoing connection (typically the same as the incoming port).
|
|
|
|
|
* @param overridePort - If provided, use this port for the outgoing connection.
|
|
|
|
|
*/
|
|
|
|
|
const setupConnection = (serverName: string, initialChunk?: Buffer, forcedDomain?: IDomainConfig, overridePort?: number) => {
|
|
|
|
|
// Clear the initial timeout since we've received data
|
|
|
|
|
if (initialTimeout) {
|
|
|
|
|
clearTimeout(initialTimeout);
|
|
|
|
|
initialTimeout = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If a forcedDomain is provided (port-based routing), use it; otherwise, use SNI-based lookup.
|
|
|
|
|
const domainConfig = forcedDomain
|
|
|
|
|
? forcedDomain
|
|
|
|
@ -284,7 +361,7 @@ export class PortProxy {
|
|
|
|
|
config.domains.some(d => plugins.minimatch(serverName, d))
|
|
|
|
|
) : undefined);
|
|
|
|
|
|
|
|
|
|
// Effective IP check: merge allowed IPs with default allowed, and remove blocked IPs.
|
|
|
|
|
// IP validation is skipped if allowedIPs is empty
|
|
|
|
|
if (domainConfig) {
|
|
|
|
|
const effectiveAllowedIPs: string[] = [
|
|
|
|
|
...domainConfig.allowedIPs,
|
|
|
|
@ -294,10 +371,12 @@ export class PortProxy {
|
|
|
|
|
...(domainConfig.blockedIPs || []),
|
|
|
|
|
...(this.settings.defaultBlockedIPs || [])
|
|
|
|
|
];
|
|
|
|
|
if (!isGlobIPAllowed(remoteIP, effectiveAllowedIPs, effectiveBlockedIPs)) {
|
|
|
|
|
|
|
|
|
|
// Skip IP validation if allowedIPs is empty
|
|
|
|
|
if (domainConfig.allowedIPs.length > 0 && !isGlobIPAllowed(remoteIP, effectiveAllowedIPs, effectiveBlockedIPs)) {
|
|
|
|
|
return rejectIncomingConnection('rejected', `Connection rejected: IP ${remoteIP} not allowed for domain ${domainConfig.domains.join(', ')}`);
|
|
|
|
|
}
|
|
|
|
|
} else if (this.settings.defaultAllowedIPs) {
|
|
|
|
|
} else if (this.settings.defaultAllowedIPs && this.settings.defaultAllowedIPs.length > 0) {
|
|
|
|
|
if (!isGlobIPAllowed(remoteIP, this.settings.defaultAllowedIPs, this.settings.defaultBlockedIPs || [])) {
|
|
|
|
|
return rejectIncomingConnection('rejected', `Connection rejected: IP ${remoteIP} not allowed by default allowed list`);
|
|
|
|
|
}
|
|
|
|
@ -312,23 +391,25 @@ export class PortProxy {
|
|
|
|
|
connectionOptions.localAddress = remoteIP.replace('::ffff:', '');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Create the target socket and immediately set up data piping
|
|
|
|
|
const targetSocket = plugins.net.connect(connectionOptions);
|
|
|
|
|
connectionRecord.outgoing = targetSocket;
|
|
|
|
|
connectionRecord.outgoingStartTime = Date.now();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Set up the pipe immediately to ensure data flows without delay
|
|
|
|
|
if (initialChunk) {
|
|
|
|
|
socket.unshift(initialChunk);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
socket.pipe(targetSocket);
|
|
|
|
|
targetSocket.pipe(socket);
|
|
|
|
|
|
|
|
|
|
console.log(
|
|
|
|
|
`Connection established: ${remoteIP} -> ${targetHost}:${connectionOptions.port}` +
|
|
|
|
|
`${serverName ? ` (SNI: ${serverName})` : forcedDomain ? ` (Port-based for domain: ${forcedDomain.domains.join(', ')})` : ''}`
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (initialChunk) {
|
|
|
|
|
socket.unshift(initialChunk);
|
|
|
|
|
}
|
|
|
|
|
socket.setTimeout(120000);
|
|
|
|
|
socket.pipe(targetSocket);
|
|
|
|
|
targetSocket.pipe(socket);
|
|
|
|
|
|
|
|
|
|
// Attach error and close handlers.
|
|
|
|
|
// Add appropriate handlers for connection management
|
|
|
|
|
socket.on('error', handleError('incoming'));
|
|
|
|
|
targetSocket.on('error', handleError('outgoing'));
|
|
|
|
|
socket.on('close', handleClose('incoming'));
|
|
|
|
@ -339,7 +420,7 @@ export class PortProxy {
|
|
|
|
|
incomingTerminationReason = 'timeout';
|
|
|
|
|
this.incrementTerminationStat('incoming', 'timeout');
|
|
|
|
|
}
|
|
|
|
|
cleanupOnce();
|
|
|
|
|
initiateCleanupOnce('timeout_incoming');
|
|
|
|
|
});
|
|
|
|
|
targetSocket.on('timeout', () => {
|
|
|
|
|
console.log(`Timeout on outgoing side from ${remoteIP}`);
|
|
|
|
@ -347,45 +428,28 @@ export class PortProxy {
|
|
|
|
|
outgoingTerminationReason = 'timeout';
|
|
|
|
|
this.incrementTerminationStat('outgoing', 'timeout');
|
|
|
|
|
}
|
|
|
|
|
cleanupOnce();
|
|
|
|
|
initiateCleanupOnce('timeout_outgoing');
|
|
|
|
|
});
|
|
|
|
|
socket.on('end', handleClose('incoming'));
|
|
|
|
|
targetSocket.on('end', handleClose('outgoing'));
|
|
|
|
|
|
|
|
|
|
// Initialize a cleanup timer for max connection lifetime.
|
|
|
|
|
// Set appropriate timeouts
|
|
|
|
|
socket.setTimeout(120000);
|
|
|
|
|
targetSocket.setTimeout(120000);
|
|
|
|
|
|
|
|
|
|
// Update activity for both sockets
|
|
|
|
|
socket.on('data', () => {
|
|
|
|
|
connectionRecord.lastActivity = Date.now();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
targetSocket.on('data', () => {
|
|
|
|
|
connectionRecord.lastActivity = Date.now();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Initialize a cleanup timer for max connection lifetime
|
|
|
|
|
if (this.settings.maxConnectionLifetime) {
|
|
|
|
|
let incomingActive = false;
|
|
|
|
|
let outgoingActive = false;
|
|
|
|
|
const resetCleanupTimer = () => {
|
|
|
|
|
if (this.settings.maxConnectionLifetime) {
|
|
|
|
|
if (connectionRecord.cleanupTimer) {
|
|
|
|
|
clearTimeout(connectionRecord.cleanupTimer);
|
|
|
|
|
}
|
|
|
|
|
connectionRecord.cleanupTimer = setTimeout(() => {
|
|
|
|
|
console.log(`Connection from ${remoteIP} exceeded max lifetime with inactivity (${this.settings.maxConnectionLifetime}ms), forcing cleanup.`);
|
|
|
|
|
cleanupOnce();
|
|
|
|
|
}, this.settings.maxConnectionLifetime);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
resetCleanupTimer();
|
|
|
|
|
|
|
|
|
|
socket.on('data', () => {
|
|
|
|
|
incomingActive = true;
|
|
|
|
|
if (incomingActive && outgoingActive) {
|
|
|
|
|
resetCleanupTimer();
|
|
|
|
|
incomingActive = false;
|
|
|
|
|
outgoingActive = false;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
targetSocket.on('data', () => {
|
|
|
|
|
outgoingActive = true;
|
|
|
|
|
if (incomingActive && outgoingActive) {
|
|
|
|
|
resetCleanupTimer();
|
|
|
|
|
incomingActive = false;
|
|
|
|
|
outgoingActive = false;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
connectionRecord.cleanupTimer = setTimeout(() => {
|
|
|
|
|
console.log(`Connection from ${remoteIP} exceeded max lifetime (${this.settings.maxConnectionLifetime}ms), forcing cleanup.`);
|
|
|
|
|
initiateCleanupOnce('max_lifetime');
|
|
|
|
|
}, this.settings.maxConnectionLifetime);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -436,37 +500,46 @@ export class PortProxy {
|
|
|
|
|
|
|
|
|
|
// --- FALLBACK: SNI-BASED HANDLING (or default when SNI is disabled) ---
|
|
|
|
|
if (this.settings.sniEnabled) {
|
|
|
|
|
socket.setTimeout(5000, () => {
|
|
|
|
|
console.log(`Initial data timeout for ${remoteIP}`);
|
|
|
|
|
socket.end();
|
|
|
|
|
cleanupOnce();
|
|
|
|
|
});
|
|
|
|
|
initialDataReceived = false;
|
|
|
|
|
|
|
|
|
|
socket.once('data', (chunk: Buffer) => {
|
|
|
|
|
socket.setTimeout(0);
|
|
|
|
|
if (initialTimeout) {
|
|
|
|
|
clearTimeout(initialTimeout);
|
|
|
|
|
initialTimeout = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
initialDataReceived = true;
|
|
|
|
|
const serverName = extractSNI(chunk) || '';
|
|
|
|
|
// Lock the connection to the negotiated SNI.
|
|
|
|
|
connectionRecord.lockedDomain = serverName;
|
|
|
|
|
console.log(`Received connection from ${remoteIP} with SNI: ${serverName}`);
|
|
|
|
|
|
|
|
|
|
// Delay adding the renegotiation listener until the next tick,
|
|
|
|
|
// so the initial ClientHello is not reprocessed.
|
|
|
|
|
setImmediate(() => {
|
|
|
|
|
socket.on('data', (renegChunk: Buffer) => {
|
|
|
|
|
if (renegChunk.length > 0 && renegChunk.readUInt8(0) === 22) {
|
|
|
|
|
const newSNI = extractSNI(renegChunk);
|
|
|
|
|
if (newSNI && newSNI !== connectionRecord.lockedDomain) {
|
|
|
|
|
console.log(`Rehandshake detected with different SNI: ${newSNI} vs locked ${connectionRecord.lockedDomain}. Terminating connection.`);
|
|
|
|
|
cleanupOnce();
|
|
|
|
|
try {
|
|
|
|
|
// Try to extract SNI from potential renegotiation
|
|
|
|
|
const newSNI = extractSNI(renegChunk);
|
|
|
|
|
if (newSNI && newSNI !== connectionRecord.lockedDomain) {
|
|
|
|
|
console.log(`Rehandshake detected with different SNI: ${newSNI} vs locked ${connectionRecord.lockedDomain}. Terminating connection.`);
|
|
|
|
|
initiateCleanupOnce('sni_mismatch');
|
|
|
|
|
} else if (newSNI) {
|
|
|
|
|
console.log(`Rehandshake detected with same SNI: ${newSNI}. Allowing.`);
|
|
|
|
|
}
|
|
|
|
|
} catch (err) {
|
|
|
|
|
console.log(`Error processing potential renegotiation: ${err}. Allowing connection to continue.`);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
setupConnection(serverName, chunk);
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
initialDataReceived = true;
|
|
|
|
|
if (!this.settings.defaultAllowedIPs || !isAllowed(remoteIP, this.settings.defaultAllowedIPs)) {
|
|
|
|
|
if (!this.settings.defaultAllowedIPs || this.settings.defaultAllowedIPs.length === 0 || !isAllowed(remoteIP, this.settings.defaultAllowedIPs)) {
|
|
|
|
|
return rejectIncomingConnection('rejected', `Connection rejected: IP ${remoteIP} not allowed for non-SNI connection`);
|
|
|
|
|
}
|
|
|
|
|
setupConnection('');
|
|
|
|
@ -504,21 +577,44 @@ export class PortProxy {
|
|
|
|
|
|
|
|
|
|
// Log active connection count, longest running durations, and run parity checks every 10 seconds.
|
|
|
|
|
this.connectionLogger = setInterval(() => {
|
|
|
|
|
if (this.isShuttingDown) return;
|
|
|
|
|
|
|
|
|
|
const now = Date.now();
|
|
|
|
|
let maxIncoming = 0;
|
|
|
|
|
let maxOutgoing = 0;
|
|
|
|
|
for (const record of this.connectionRecords) {
|
|
|
|
|
|
|
|
|
|
// Create a copy of the keys to avoid modification during iteration
|
|
|
|
|
const connectionIds = [...this.connectionRecords.keys()];
|
|
|
|
|
|
|
|
|
|
for (const id of connectionIds) {
|
|
|
|
|
const record = this.connectionRecords.get(id);
|
|
|
|
|
if (!record) continue;
|
|
|
|
|
|
|
|
|
|
maxIncoming = Math.max(maxIncoming, now - record.incomingStartTime);
|
|
|
|
|
if (record.outgoingStartTime) {
|
|
|
|
|
maxOutgoing = Math.max(maxOutgoing, now - record.outgoingStartTime);
|
|
|
|
|
}
|
|
|
|
|
// Parity check: if outgoing socket closed and incoming remains active for >1 minute, trigger special cleanup.
|
|
|
|
|
if (record.outgoingClosedTime && !record.incoming.destroyed && (now - record.outgoingClosedTime > 60000)) {
|
|
|
|
|
|
|
|
|
|
// Parity check: if outgoing socket closed and incoming remains active
|
|
|
|
|
if (record.outgoingClosedTime &&
|
|
|
|
|
!record.incoming.destroyed &&
|
|
|
|
|
!record.connectionClosed &&
|
|
|
|
|
(now - record.outgoingClosedTime > 30000)) {
|
|
|
|
|
const remoteIP = record.incoming.remoteAddress || 'unknown';
|
|
|
|
|
console.log(`Parity check triggered: Incoming socket for ${remoteIP} has been active >1 minute after outgoing closed.`);
|
|
|
|
|
this.cleanupConnection(record, true);
|
|
|
|
|
console.log(`Parity check: Incoming socket for ${remoteIP} still active ${plugins.prettyMs(now - record.outgoingClosedTime)} after outgoing closed.`);
|
|
|
|
|
this.cleanupConnection(record, 'parity_check');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Inactivity check
|
|
|
|
|
const inactivityTime = now - record.lastActivity;
|
|
|
|
|
if (inactivityTime > 180000 && // 3 minutes
|
|
|
|
|
!record.connectionClosed) {
|
|
|
|
|
const remoteIP = record.incoming.remoteAddress || 'unknown';
|
|
|
|
|
console.log(`Inactivity check: No activity on connection from ${remoteIP} for ${plugins.prettyMs(inactivityTime)}.`);
|
|
|
|
|
this.cleanupConnection(record, 'inactivity');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
console.log(
|
|
|
|
|
`(Interval Log) Active connections: ${this.connectionRecords.size}. ` +
|
|
|
|
|
`Longest running incoming: ${plugins.prettyMs(maxIncoming)}, outgoing: ${plugins.prettyMs(maxOutgoing)}. ` +
|
|
|
|
@ -529,17 +625,69 @@ export class PortProxy {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async stop() {
|
|
|
|
|
// Close all servers.
|
|
|
|
|
const closePromises: Promise<void>[] = this.netServers.map(
|
|
|
|
|
console.log("PortProxy shutting down...");
|
|
|
|
|
this.isShuttingDown = true;
|
|
|
|
|
|
|
|
|
|
// Stop accepting new connections
|
|
|
|
|
const closeServerPromises: Promise<void>[] = this.netServers.map(
|
|
|
|
|
server =>
|
|
|
|
|
new Promise<void>((resolve) => {
|
|
|
|
|
server.close(() => resolve());
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Stop the connection logger
|
|
|
|
|
if (this.connectionLogger) {
|
|
|
|
|
clearInterval(this.connectionLogger);
|
|
|
|
|
this.connectionLogger = null;
|
|
|
|
|
}
|
|
|
|
|
await Promise.all(closePromises);
|
|
|
|
|
|
|
|
|
|
// Wait for servers to close
|
|
|
|
|
await Promise.all(closeServerPromises);
|
|
|
|
|
console.log("All servers closed. Cleaning up active connections...");
|
|
|
|
|
|
|
|
|
|
// Clean up active connections
|
|
|
|
|
const connectionIds = [...this.connectionRecords.keys()];
|
|
|
|
|
console.log(`Cleaning up ${connectionIds.length} active connections...`);
|
|
|
|
|
|
|
|
|
|
for (const id of connectionIds) {
|
|
|
|
|
const record = this.connectionRecords.get(id);
|
|
|
|
|
if (record && !record.connectionClosed) {
|
|
|
|
|
this.cleanupConnection(record, 'shutdown');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Wait for graceful shutdown or timeout
|
|
|
|
|
const shutdownTimeout = this.settings.gracefulShutdownTimeout || 30000;
|
|
|
|
|
await new Promise<void>((resolve) => {
|
|
|
|
|
const checkInterval = setInterval(() => {
|
|
|
|
|
if (this.connectionRecords.size === 0) {
|
|
|
|
|
clearInterval(checkInterval);
|
|
|
|
|
resolve();
|
|
|
|
|
}
|
|
|
|
|
}, 1000);
|
|
|
|
|
|
|
|
|
|
// Force resolve after timeout
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
clearInterval(checkInterval);
|
|
|
|
|
if (this.connectionRecords.size > 0) {
|
|
|
|
|
console.log(`Forcing shutdown with ${this.connectionRecords.size} connections still active`);
|
|
|
|
|
|
|
|
|
|
// Force destroy any remaining connections
|
|
|
|
|
for (const record of this.connectionRecords.values()) {
|
|
|
|
|
if (!record.incoming.destroyed) {
|
|
|
|
|
record.incoming.destroy();
|
|
|
|
|
}
|
|
|
|
|
if (record.outgoing && !record.outgoing.destroyed) {
|
|
|
|
|
record.outgoing.destroy();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.connectionRecords.clear();
|
|
|
|
|
}
|
|
|
|
|
resolve();
|
|
|
|
|
}, shutdownTimeout);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
console.log("PortProxy shutdown complete.");
|
|
|
|
|
}
|
|
|
|
|
}
|