Skip to content

Commit beb8735

Browse files
committedJan 12, 2024
Fix race condition in ErrProtocolNotSupported
Fixed a race condition that caused the library (and http proxy) to not recognize ErrProtocolNotSupported, which indicates the vehicle does not support the newer protocol. The race condition was caused by code that attempted to handshake with multiple vehicle subsystems (domains) in parallel. If one subsystem returned ErrProtocolNotSupported, the pending requests to other subsystems were canceled. In some cases, the context cancellation error would be propagated to the down the stack instead of ErrProtocolNotSupported. With this fix, the library prioritizes non-context cancellation errors.
1 parent bd191bb commit beb8735

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed
 

‎internal/dispatcher/dispatcher.go

+7-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package dispatcher
33
import (
44
"context"
55
"crypto/rand"
6+
"errors"
67
"fmt"
78
"sync"
89
"time"
@@ -110,13 +111,16 @@ func (d *Dispatcher) StartSessions(ctx context.Context, domains []universal.Doma
110111
results <- d.StartSession(aggregateContext, dom)
111112
}(domain)
112113
}
114+
var err error
113115
for i := 0; i < len(domains); i++ {
114-
err := <-results
115-
if err != nil {
116+
err = <-results
117+
// The aggregateContext is canceled if one of the handshakes fails. We don't want to return
118+
// the Canceled error if ErrProtocolNotSupported is present.
119+
if !errors.Is(err, context.Canceled) {
116120
return err
117121
}
118122
}
119-
return nil
123+
return err
120124
}
121125

122126
func (d *Dispatcher) createHandler(key *receiverKey) *receiver {

‎pkg/proxy/proxy.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ func (p *Proxy) handleVehicleCommand(acct *account.Account, w http.ResponseWrite
263263
}
264264
defer car.Disconnect()
265265

266-
if err := car.StartSession(ctx, nil); err == protocol.ErrProtocolNotSupported {
266+
if err := car.StartSession(ctx, nil); errors.Is(err, protocol.ErrProtocolNotSupported) {
267267
p.markUnsupportedVIN(vin)
268268
p.forwardRequest(acct.Host, w, req)
269269
return err

0 commit comments

Comments
 (0)
Please sign in to comment.