Compare commits
	
		
			8 Commits
		
	
	
		
			v4.1.4
			...
			d612df107e
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| d612df107e | |||
| 1c34578c36 | |||
| 1f9943b5a7 | |||
| 67ddf97547 | |||
| 8a96b45ece | |||
| 2b6464acd5 | |||
| efbb4335d7 | |||
| 9dd402054d | 
							
								
								
									
										28
									
								
								changelog.md
									
									
									
									
									
								
							
							
						
						
									
										28
									
								
								changelog.md
									
									
									
									
									
								
							@@ -1,5 +1,33 @@
 | 
			
		||||
# Changelog
 | 
			
		||||
 | 
			
		||||
## 2025-03-16 - 4.1.8 - fix(ConnectionHandler/tls)
 | 
			
		||||
Change the TLS alert sent when a ClientHello lacks SNI: use the close_notify alert instead of handshake_failure to prompt immediate retry with SNI.
 | 
			
		||||
 | 
			
		||||
- Replaced the previously sent handshake_failure alert (code 0x28) with a close_notify alert (code 0x00) in the TLS session resumption handling in ConnectionHandler.
 | 
			
		||||
- This change encourages clients to immediately retry and include SNI when allowSessionTicket is false.
 | 
			
		||||
 | 
			
		||||
## 2025-03-16 - 4.1.7 - fix(classes.pp.connectionhandler)
 | 
			
		||||
Improve TLS alert handling in ClientHello when SNI is missing and session tickets are disallowed
 | 
			
		||||
 | 
			
		||||
- Replace the unrecognized_name alert with a handshake_failure alert to ensure better client behavior.
 | 
			
		||||
- Refactor the alert sending mechanism using cork/uncork and add a safety timeout for the drain event.
 | 
			
		||||
- Enhance logging for debugging TLS handshake failures when SNI is absent.
 | 
			
		||||
 | 
			
		||||
## 2025-03-16 - 4.1.6 - fix(tls)
 | 
			
		||||
Refine TLS ClientHello handling when allowSessionTicket is false by replacing extensive alert timeout logic with a concise warning alert and short delay, encouraging immediate client retry with proper SNI
 | 
			
		||||
 | 
			
		||||
- Update the TLS alert sending mechanism to use cork/uncork and a short, fixed delay instead of long timeouts
 | 
			
		||||
- Remove redundant event listeners and excessive cleanup logic after sending the alert
 | 
			
		||||
- Improve code clarity and encourage clients (e.g., Chrome) to retry handshake with SNI more responsively
 | 
			
		||||
 | 
			
		||||
## 2025-03-16 - 4.1.5 - fix(TLS/ConnectionHandler)
 | 
			
		||||
Improve handling of TLS session resumption without SNI by sending an 'unrecognized_name' alert instead of immediately terminating the connection. This change adds a grace period for the client to retry the handshake with proper SNI and cleans up the connection if no valid response is received.
 | 
			
		||||
 | 
			
		||||
- Send a TLS warning (unrecognized_name alert, code 112) when a ClientHello is received without SNI and session tickets are disallowed.
 | 
			
		||||
- Utilize socket cork/uncork to ensure the alert is sent as a single packet.
 | 
			
		||||
- Add a 5-second alert timeout and a subsequent 30-second grace period to allow clients to initiate a new handshake with SNI.
 | 
			
		||||
- Clean up and terminate the connection if no valid SNI is provided after the grace period, logging appropriate termination reasons.
 | 
			
		||||
 | 
			
		||||
## 2025-03-15 - 4.1.4 - fix(ConnectionHandler)
 | 
			
		||||
Refactor ConnectionHandler code formatting for improved readability and consistency in log messages and whitespace handling
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "@push.rocks/smartproxy",
 | 
			
		||||
  "version": "4.1.4",
 | 
			
		||||
  "version": "4.1.8",
 | 
			
		||||
  "private": false,
 | 
			
		||||
  "description": "A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, dynamic routing with authentication options, and automatic ACME certificate management.",
 | 
			
		||||
  "main": "dist_ts/index.js",
 | 
			
		||||
 
 | 
			
		||||
@@ -3,6 +3,6 @@
 | 
			
		||||
 */
 | 
			
		||||
export const commitinfo = {
 | 
			
		||||
  name: '@push.rocks/smartproxy',
 | 
			
		||||
  version: '4.1.4',
 | 
			
		||||
  version: '4.1.8',
 | 
			
		||||
  description: 'A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, dynamic routing with authentication options, and automatic ACME certificate management.'
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -557,16 +557,24 @@ export class ConnectionHandler {
 | 
			
		||||
            this.tlsManager.isClientHello(chunk) &&
 | 
			
		||||
            !serverName
 | 
			
		||||
          ) {
 | 
			
		||||
            // Always block ClientHello without SNI when allowSessionTicket is false
 | 
			
		||||
            // Block ClientHello without SNI when allowSessionTicket is false
 | 
			
		||||
            console.log(
 | 
			
		||||
              `[${connectionId}] No SNI detected in ClientHello and allowSessionTicket=false. ` +
 | 
			
		||||
                `Terminating connection to force new TLS handshake with SNI.`
 | 
			
		||||
                `Sending warning unrecognized_name alert to encourage immediate retry with SNI.`
 | 
			
		||||
            );
 | 
			
		||||
 | 
			
		||||
            // Send a proper TLS alert before ending the connection
 | 
			
		||||
            // Using "unrecognized_name" (112) alert which is a warning level alert (1)
 | 
			
		||||
            // that encourages clients to retry with proper SNI
 | 
			
		||||
            const alertData = Buffer.from([
 | 
			
		||||
            // Set the termination reason first
 | 
			
		||||
            if (record.incomingTerminationReason === null) {
 | 
			
		||||
              record.incomingTerminationReason = 'session_ticket_blocked_no_sni';
 | 
			
		||||
              this.connectionManager.incrementTerminationStat(
 | 
			
		||||
                'incoming',
 | 
			
		||||
                'session_ticket_blocked_no_sni'
 | 
			
		||||
              );
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            // Create a warning-level alert for unrecognized_name
 | 
			
		||||
            // This encourages Chrome to retry immediately with SNI
 | 
			
		||||
            const serverNameUnknownAlertData = Buffer.from([
 | 
			
		||||
              0x15, // Alert record type
 | 
			
		||||
              0x03,
 | 
			
		||||
              0x03, // TLS 1.2 version
 | 
			
		||||
@@ -576,39 +584,71 @@ export class ConnectionHandler {
 | 
			
		||||
              0x70, // unrecognized_name alert (code 112)
 | 
			
		||||
            ]);
 | 
			
		||||
 | 
			
		||||
            try {
 | 
			
		||||
              socket.write(alertData, () => {
 | 
			
		||||
                // Only close the socket after we're sure the alert was sent
 | 
			
		||||
                // Give the alert time to be processed by the client
 | 
			
		||||
                setTimeout(() => {
 | 
			
		||||
                  socket.end();
 | 
			
		||||
            // Send a handshake_failure alert instead of unrecognized_name
 | 
			
		||||
            const sslHandshakeFailureAlertData = Buffer.from([
 | 
			
		||||
              0x15, // Alert record type
 | 
			
		||||
              0x03,
 | 
			
		||||
              0x03, // TLS 1.2 version
 | 
			
		||||
              0x00,
 | 
			
		||||
              0x02, // Length
 | 
			
		||||
              0x01, // Warning alert level (not fatal)
 | 
			
		||||
              0x28, // handshake_failure alert (40) instead of unrecognized_name (112)
 | 
			
		||||
            ]);
 | 
			
		||||
 | 
			
		||||
                  // Ensure complete cleanup happens a bit later
 | 
			
		||||
                  setTimeout(() => {
 | 
			
		||||
                    if (!socket.destroyed) {
 | 
			
		||||
                      socket.destroy();
 | 
			
		||||
                    }
 | 
			
		||||
                    this.connectionManager.cleanupConnection(
 | 
			
		||||
                      record,
 | 
			
		||||
                      'session_ticket_blocked_no_sni'
 | 
			
		||||
                    );
 | 
			
		||||
                  }, 100);
 | 
			
		||||
                }, 100);
 | 
			
		||||
              });
 | 
			
		||||
            const closeNotifyAlert = Buffer.from([
 | 
			
		||||
              0x15, // Alert record type
 | 
			
		||||
              0x03,
 | 
			
		||||
              0x03, // TLS 1.2 version
 | 
			
		||||
              0x00,
 | 
			
		||||
              0x02, // Length
 | 
			
		||||
              0x01, // Warning alert level (1)
 | 
			
		||||
              0x00, // close_notify alert (0)
 | 
			
		||||
            ]);
 | 
			
		||||
 | 
			
		||||
            try {
 | 
			
		||||
              // Use cork/uncork to ensure the alert is sent as a single packet
 | 
			
		||||
              socket.cork();
 | 
			
		||||
              const writeSuccessful = socket.write(closeNotifyAlert);
 | 
			
		||||
              socket.uncork();
 | 
			
		||||
 | 
			
		||||
              // Function to handle the clean socket termination
 | 
			
		||||
              const finishConnection = () => {
 | 
			
		||||
                // First call end() to initiate a graceful close (sends FIN)
 | 
			
		||||
                socket.end();
 | 
			
		||||
 | 
			
		||||
                // Allow a short delay for the alert and FIN to be transmitted
 | 
			
		||||
                // before we fully close the socket
 | 
			
		||||
                setTimeout(() => {
 | 
			
		||||
                  if (!socket.destroyed) {
 | 
			
		||||
                    socket.destroy();
 | 
			
		||||
                  }
 | 
			
		||||
                  this.connectionManager.cleanupConnection(record, 'session_ticket_blocked_no_sni');
 | 
			
		||||
                }, 150); // Short delay, but longer than the standard TCP ACK timeout
 | 
			
		||||
              };
 | 
			
		||||
 | 
			
		||||
              if (writeSuccessful) {
 | 
			
		||||
                // If the data was successfully written to the kernel buffer,
 | 
			
		||||
                // we can finish the connection after a short delay to ensure transmission
 | 
			
		||||
                setTimeout(finishConnection, 50);
 | 
			
		||||
              } else {
 | 
			
		||||
                // If the kernel buffer was full, wait for the drain event
 | 
			
		||||
                socket.once('drain', () => {
 | 
			
		||||
                  setTimeout(finishConnection, 50);
 | 
			
		||||
                });
 | 
			
		||||
 | 
			
		||||
                // Set a safety timeout in case drain never happens
 | 
			
		||||
                setTimeout(() => {
 | 
			
		||||
                  socket.removeAllListeners('drain');
 | 
			
		||||
                  finishConnection();
 | 
			
		||||
                }, 250);
 | 
			
		||||
              }
 | 
			
		||||
            } catch (err) {
 | 
			
		||||
              // If we can't send the alert, fall back to immediate termination
 | 
			
		||||
              console.log(`[${connectionId}] Error sending TLS alert: ${err.message}`);
 | 
			
		||||
              socket.end();
 | 
			
		||||
              this.connectionManager.cleanupConnection(record, 'session_ticket_blocked_no_sni');
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            if (record.incomingTerminationReason === null) {
 | 
			
		||||
              record.incomingTerminationReason = 'session_ticket_blocked_no_sni';
 | 
			
		||||
              this.connectionManager.incrementTerminationStat(
 | 
			
		||||
                'incoming',
 | 
			
		||||
                'session_ticket_blocked_no_sni'
 | 
			
		||||
              );
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
            return;
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user