mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
feat: add an option to skip resumption on nil ext & update examples (#239)
* feat: add an option to skip resumption on nil ext feat: update examples * fix: clone unit test
This commit is contained in:
parent
df6e4c827a
commit
75eb8e9e80
5 changed files with 86 additions and 14 deletions
|
@ -121,6 +121,12 @@ func (s *sessionController) assertNotLocked(caller string) {
|
|||
}
|
||||
}
|
||||
|
||||
func (s *sessionController) assertCanSkip(caller, extensionName string) {
|
||||
if !s.uconnRef.skipResumptionOnNilExtension {
|
||||
panic(fmt.Sprintf("tls: %s failed: session resumption is enabled, but there is no %s in the ClientHelloSpec; Please consider provide one in the ClientHelloSpec; If this is intentional, you may consider disable resumption by setting Config.SessionTicketsDisabled to true, or set Config.PreferSkipResumptionOnNilExtension to true to suppress this exception", caller, extensionName))
|
||||
}
|
||||
}
|
||||
|
||||
// finalCheck performs a comprehensive check on the updated state to ensure the correctness of the changes.
|
||||
// If the checks pass successfully, the sessionController's state will be locked.
|
||||
// Any failure in passing the tests indicates incorrect implementations in the utls, which will result in triggering a panic.
|
||||
|
@ -141,7 +147,11 @@ func (s *sessionController) initSessionTicketExt(session *SessionState, ticket [
|
|||
s.assertNotLocked("initSessionTicketExt")
|
||||
s.assertHelloNotBuilt("initSessionTicketExt")
|
||||
s.assertControllerState("initSessionTicketExt", NoSession)
|
||||
panicOnNil("initSessionTicketExt", s.sessionTicketExt, session, ticket)
|
||||
panicOnNil("initSessionTicketExt", session, ticket)
|
||||
if s.sessionTicketExt == nil {
|
||||
s.assertCanSkip("initSessionTicketExt", "session ticket extension")
|
||||
return
|
||||
}
|
||||
initializationGuard(s.sessionTicketExt, func(e ISessionTicketExtension) {
|
||||
s.sessionTicketExt.InitializeByUtls(session, ticket)
|
||||
})
|
||||
|
@ -155,8 +165,11 @@ func (s *sessionController) initPskExt(session *SessionState, earlySecret []byte
|
|||
s.assertNotLocked("initPskExt")
|
||||
s.assertHelloNotBuilt("initPskExt")
|
||||
s.assertControllerState("initPskExt", NoSession)
|
||||
panicOnNil("initPskExt", s.pskExtension, session, earlySecret, pskIdentities)
|
||||
|
||||
panicOnNil("initPskExt", session, earlySecret, pskIdentities)
|
||||
if s.pskExtension == nil {
|
||||
s.assertCanSkip("initPskExt", "pre-shared key extension")
|
||||
return
|
||||
}
|
||||
initializationGuard(s.pskExtension, func(e PreSharedKeyExtension) {
|
||||
publicPskIdentities := mapSlice(pskIdentities, func(private pskIdentity) PskIdentity {
|
||||
return PskIdentity{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue