cert-manager/pkg/controller/acmechallenges/scheduler/scheduler.go
James Munnelly 3ac4d19874 Fix bug in challenge scheduler causing invalid results
Previously, we shared a single backing slice when
performing filter operations on slices, causing issues
when we perform sorting operations on that same
underlying slice.

Signed-off-by: James Munnelly <james@munnelly.eu>
2019-01-08 13:53:58 +00:00

249 lines
8.1 KiB
Go

/*
Copyright 2019 The Jetstack cert-manager contributors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package scheduler
import (
"sort"
"github.com/golang/glog"
"k8s.io/apimachinery/pkg/labels"
"github.com/jetstack/cert-manager/pkg/acme"
cmapi "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1alpha1"
cmlisters "github.com/jetstack/cert-manager/pkg/client/listers/certmanager/v1alpha1"
)
const (
// MaxConcurrentChallenges is the total maximum number of challenges that
// can be scheduled as 'processing' at once.
MaxConcurrentChallenges = 60
)
// Scheduler implements an ACME challenge scheduler that applies heuristics
// to challenge resources in order to determine which challenges should be
// processing at a given time.
type Scheduler struct {
challengeLister cmlisters.ChallengeLister
}
// New will construct a new instance of a scheduler
func New(l cmlisters.ChallengeLister) *Scheduler {
return &Scheduler{challengeLister: l}
}
// ScheduleN will return a maximum of N challenge resources that should be
// scheduled for processing.
// It may return an empty list if there are no challenges that can/should be
// scheduled.
func (s *Scheduler) ScheduleN(n int) ([]*cmapi.Challenge, error) {
// Get a list of all challenges from the cache
allChallenges, err := s.challengeLister.List(labels.Everything())
if err != nil {
return nil, err
}
return s.scheduleN(n, allChallenges)
}
func (s *Scheduler) scheduleN(n int, allChallenges []*cmapi.Challenge) ([]*cmapi.Challenge, error) {
// Determine the list of challenges that could feasibly be scheduled on
// this pass of the scheduler.
// This function returns a list of candidates sorted by creation timestamp.
candidates, inProgressChallengeCount, err := s.determineChallengeCandidates(allChallenges)
if err != nil {
return nil, err
}
numberToSelect := n
remainingNumberAllowedChallenges := MaxConcurrentChallenges - inProgressChallengeCount
if numberToSelect > remainingNumberAllowedChallenges {
numberToSelect = remainingNumberAllowedChallenges
}
candidates, err = s.selectChallengesToSchedule(candidates, numberToSelect)
if err != nil {
return nil, err
}
return candidates, nil
}
// selectChallengesToSchedule will apply some sorting heuristic to the allowed
// challenge candidates and return a maximum of N challenges that should be
// scheduled for processing.
func (s *Scheduler) selectChallengesToSchedule(candidates []*cmapi.Challenge, n int) ([]*cmapi.Challenge, error) {
// Trim the candidates returned to 'n'
if len(candidates) > n {
candidates = candidates[:n]
}
return candidates, nil
}
// determineChallengeCandidates will determine which, if any, challenges can
// be scheduled given the current state of items to be scheduled and currently
// processing.
// The returned challenges will be sorted in ascending order based on timestamp
// (i.e. the oldest challenge will be element zero).
func (s *Scheduler) determineChallengeCandidates(allChallenges []*cmapi.Challenge) ([]*cmapi.Challenge, int, error) {
// consider the entire set of challenges for 'in progress', in case a challenge
// has processing=true whilst still being in a 'final' state
inProgress := processingChallenges(allChallenges)
inProgressChallengeCount := len(inProgress)
// Ensure we only run a max of MaxConcurrentChallenges at a time
// We perform this check here to avoid extra processing if we've already
// hit the maximum number of challenges.
if inProgressChallengeCount >= MaxConcurrentChallenges {
glog.V(4).Infof("There are currently %d running challenges, with a maximum configured of %d. Refusing to schedule more challenges.", len(inProgress), MaxConcurrentChallenges)
return []*cmapi.Challenge{}, inProgressChallengeCount, nil
}
// Calculate incomplete challenges
incomplete := incompleteChallenges(allChallenges)
// This is the list that we will be filtering/scheduling from
unfilteredCandidates := notProcessingChallenges(incomplete)
// Never process multiple challenges for the same domain and solver type
// at any one time
// In-place deduplication: https://github.com/golang/go/wiki/SliceTricks
dedupedCandidates := dedupeChallenges(unfilteredCandidates)
// If there are any already in-progress challenges for a domain and type,
// filter them out.
candidates := filterChallenges(dedupedCandidates, func(ch *cmapi.Challenge) bool {
for _, inPCh := range inProgress {
if compareChallenges(ch, inPCh) == 0 {
glog.V(6).Infof("There is already a challenge processing for domain %q (type %q)", ch.Spec.DNSName, ch.Spec.Type)
return false
}
}
return true
})
// Finally, sorted the challenges by timestamp to ensure a stable output
sortChallengesByTimestamp(candidates)
return candidates, inProgressChallengeCount, nil
}
func sortChallengesByTimestamp(chs []*cmapi.Challenge) {
sort.Slice(chs, func(i, j int) bool {
return chs[i].CreationTimestamp.Before(&chs[j].CreationTimestamp)
})
}
// notProcessingChallenges will filter out challenges from the given slice
// that have status.processing set to true.
func notProcessingChallenges(chs []*cmapi.Challenge) []*cmapi.Challenge {
return filterChallenges(chs, func(ch *cmapi.Challenge) bool {
return !ch.Status.Processing
})
}
// processingChallenges will filter out challenges from the given slice
// that have status.processing set to false.
func processingChallenges(chs []*cmapi.Challenge) []*cmapi.Challenge {
return filterChallenges(chs, func(ch *cmapi.Challenge) bool {
return ch.Status.Processing
})
}
// incompleteChallenges will filter out challenges from the given slice
// that are in a 'final' state
func incompleteChallenges(chs []*cmapi.Challenge) []*cmapi.Challenge {
return filterChallenges(chs, func(ch *cmapi.Challenge) bool {
return !acme.IsFinalState(ch.Status.State)
})
}
func filterChallenges(chs []*cmapi.Challenge, fn func(ch *cmapi.Challenge) bool) []*cmapi.Challenge {
ret := []*cmapi.Challenge{}
for _, ch := range chs {
if fn(ch) {
ret = append(ret, ch)
}
}
return ret
}
// compareChallenges is used to compare two challenge resources.
// If two resources are 'equal', they will not be scheduled at the same time
// as they could cause a conflict.
func compareChallenges(l, r *cmapi.Challenge) int {
if l.Spec.DNSName < r.Spec.DNSName {
return -1
}
if l.Spec.DNSName > r.Spec.DNSName {
return 1
}
if l.Spec.Type < r.Spec.Type {
return -1
}
if l.Spec.Type > r.Spec.Type {
return 1
}
// TODO: check the http01.ingressClass attribute and allow two challenges
// with different ingress classes specified to be scheduled at once
// TODO: check the dns01.provider attribute and allow two challenges with
// different providers to be scheduled at once
return 0
}
// sortChallenges will sort the provided list of challenges according to the
// schedulers sorting heuristics.
// This is used to make deduplication of list items efficient (see dedupeChallenges)
func sortChallenges(chs []*cmapi.Challenge) {
sort.Slice(chs, func(i, j int) bool {
cmp := compareChallenges(chs[i], chs[j])
if cmp != 0 {
return cmp == -1
}
// we have to take the creation timestamp into account when sorting if
// the other fields already match
if chs[i].CreationTimestamp.Time.UnixNano() < chs[j].CreationTimestamp.Time.UnixNano() {
return true
}
if chs[i].CreationTimestamp.Time.UnixNano() > chs[j].CreationTimestamp.Time.UnixNano() {
return false
}
return false
})
}
// https://github.com/golang/go/wiki/SliceTricks#In-place-deduplicate-comparable
func dedupeChallenges(in []*cmapi.Challenge) []*cmapi.Challenge {
sortChallenges(in)
j := 0
for i := 1; i < len(in); i++ {
if compareChallenges(in[j], in[i]) == 0 {
continue
}
j++
in[i], in[j] = in[j], in[i]
}
if len(in) == 0 {
return in
}
return in[:j+1]
}