mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
refactor+feat: Custom Client Handshake + Implement ALPS extension (#142)
* refactor: split `CompressCertExtension` changes - Split most of changes for `CompressCertExtension` made to `crypto/tls` files out and moved them to `u_` files. - Edited some `crypto/tls` files to achieve better programmability for uTLS. - Minor styling fix. * feat: implement ALPS Extension draft - Made necessary modifications to existing types to support ALPS. - Ported `ApplicationSettingsExtension` implementation from `ulixee/utls` by @blakebyrnes with some adaptation. Co-Authored-By: Blake Byrnes <115056+blakebyrnes@users.noreply.github.com> * feat: utlsFakeCustomExtension in ALPS - Introducing `utlsFakeCustomExtension` to enable implementation for custom extensions to be exchanged via ALPS. - currently it doesn't do anything. Co-Authored-By: Blake Byrnes <115056+blakebyrnes@users.noreply.github.com> * fix: magic number in `StatusRequestV2Extension` - Fixed magic number `17` in `StatusRequestV2Extension` with pre-defined enum `extensionStatusRequestV2`. Co-authored-by: Blake Byrnes <115056+blakebyrnes@users.noreply.github.com>
This commit is contained in:
parent
1b3a9ad4c5
commit
fb99df2a2e
13 changed files with 375 additions and 140 deletions
22
conn.go
22
conn.go
|
@ -92,6 +92,10 @@ type Conn struct {
|
|||
// clientProtocol is the negotiated ALPN protocol.
|
||||
clientProtocol string
|
||||
|
||||
// [UTLS SECTION START]
|
||||
utls utlsConnExtraFields // used for extensive things such as ALPS
|
||||
// [UTLS SECTION END]
|
||||
|
||||
// input/output
|
||||
in, out halfConn
|
||||
rawInput bytes.Buffer // raw input, starting with a record header
|
||||
|
@ -1075,17 +1079,22 @@ func (c *Conn) readHandshake() (any, error) {
|
|||
}
|
||||
case typeFinished:
|
||||
m = new(finishedMsg)
|
||||
case typeEncryptedExtensions:
|
||||
m = new(encryptedExtensionsMsg)
|
||||
// [uTLS] Commented typeEncryptedExtensions to force
|
||||
// utlsHandshakeMessageType to handle it
|
||||
// case typeEncryptedExtensions:
|
||||
// m = new(encryptedExtensionsMsg)
|
||||
case typeEndOfEarlyData:
|
||||
m = new(endOfEarlyDataMsg)
|
||||
case typeKeyUpdate:
|
||||
m = new(keyUpdateMsg)
|
||||
// [UTLS SECTION BEGINS]
|
||||
case typeCompressedCertificate:
|
||||
m = new(compressedCertificateMsg)
|
||||
// [UTLS SECTION ENDS]
|
||||
default:
|
||||
// [UTLS SECTION BEGINS]
|
||||
var err error
|
||||
m, err = c.utlsHandshakeMessageType(data[0]) // see u_conn.go
|
||||
if err == nil {
|
||||
break
|
||||
}
|
||||
// [UTLS SECTION ENDS]
|
||||
return nil, c.in.setErrorLocked(c.sendAlert(alertUnexpectedMessage))
|
||||
}
|
||||
|
||||
|
@ -1514,6 +1523,7 @@ func (c *Conn) connectionStateLocked() ConnectionState {
|
|||
} else {
|
||||
state.ekm = c.ekm
|
||||
}
|
||||
|
||||
return state
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue