mirror of
https://github.com/shankar0123/certctl.git
synced 2026-06-07 17:51:29 +00:00
21aeed4f4e
Phase 0 closure (Path B2, post-rewrite):
addlicense sweep — adds the canonical certctl LLC copyright + BUSL-1.1
SPDX header to every production Go file. Template:
// Copyright 2026 certctl LLC. All rights reserved.
// SPDX-License-Identifier: BUSL-1.1
Coverage: 338 / 338 production Go files (cmd/ + internal/, excluding
*_test.go and **/testdata/**). Pre-sweep coverage was 22 / 338 (6.5%);
post-sweep is 338 / 338 (100%).
Normalized 22 pre-existing legacy headers (`// Copyright (c) certctl`
+ `// SPDX-License-Identifier: BSL-1.1`) and 1 file using a
`Certctl Contributors` attribution. The legacy SPDX ID `BSL-1.1`
is non-standard; the official SPDX identifier for Business Source
License 1.1 is `BUSL-1.1` (capital U). All 338 files now share the
canonical form.
Generated via:
addlicense -c "certctl LLC" -y 2026 \
-f cowork/legal/copyright-header.tpl \
-ignore '**/testdata/**' -ignore '**/*_test.go' \
cmd/ internal/
Verification:
find cmd internal -name '*.go' -not -name '*_test.go' \
-not -path '*/testdata/*' \
-exec grep -L '^// Copyright 2026 certctl LLC' {} \; | wc -l
Returns: 0
gofmt clean. Header additions are comments only, no compile impact.
Closes: cowork/certctl-architecture-diligence-audit.html#fix-RED-4
67 lines
1.8 KiB
Go
67 lines
1.8 KiB
Go
// Copyright 2026 certctl LLC. All rights reserved.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package tlsprobe
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
)
|
|
|
|
// RetryConfig holds parameters for exponential-backoff retries.
|
|
// Zero values use defaults: 3 attempts, 1s initial, 16s max.
|
|
type RetryConfig struct {
|
|
Attempts int // total attempts; 0 = use 3 default
|
|
InitialBackoff time.Duration // base; 0 = use 1 * time.Second default
|
|
MaxBackoff time.Duration // cap; 0 = use 16 * time.Second default
|
|
}
|
|
|
|
// VerifyWithExponentialBackoff calls the probe at most cfg.Attempts times,
|
|
// waiting cfg.InitialBackoff, 2*InitialBackoff, 4*InitialBackoff, ... capped at
|
|
// cfg.MaxBackoff between consecutive attempts. Returns nil on first probe success;
|
|
// returns the last attempt's error on full exhaustion.
|
|
//
|
|
// The probe function returns:
|
|
// - nil error on success → return immediately, no further attempts.
|
|
// - non-nil error → wait the exponentially-growing backoff and retry.
|
|
//
|
|
// The ctx is checked between attempts; ctx cancellation aborts immediately.
|
|
//
|
|
// Top-10 fix #8 of the 2026-05-02 deployment-target audit re-run.
|
|
func VerifyWithExponentialBackoff(ctx context.Context, cfg RetryConfig, probe func(ctx context.Context) error) error {
|
|
attempts := cfg.Attempts
|
|
if attempts <= 0 {
|
|
attempts = 3
|
|
}
|
|
initial := cfg.InitialBackoff
|
|
if initial <= 0 {
|
|
initial = 1 * time.Second
|
|
}
|
|
max := cfg.MaxBackoff
|
|
if max <= 0 {
|
|
max = 16 * time.Second
|
|
}
|
|
|
|
backoff := initial
|
|
var lastErr error
|
|
for i := 0; i < attempts; i++ {
|
|
if i > 0 {
|
|
select {
|
|
case <-ctx.Done():
|
|
return ctx.Err()
|
|
case <-time.After(backoff):
|
|
}
|
|
backoff *= 2
|
|
if backoff > max {
|
|
backoff = max
|
|
}
|
|
}
|
|
if err := probe(ctx); err == nil {
|
|
return nil
|
|
} else {
|
|
lastErr = err
|
|
}
|
|
}
|
|
return lastErr
|
|
}
|