|
| 1 | +package imagequalify |
| 2 | + |
| 3 | +import ( |
| 4 | + "fmt" |
| 5 | + "io" |
| 6 | + |
| 7 | + apierrs "k8s.io/apimachinery/pkg/api/errors" |
| 8 | + "k8s.io/apiserver/pkg/admission" |
| 9 | + kapi "k8s.io/kubernetes/pkg/apis/core" |
| 10 | + |
| 11 | + "github.com/golang/glog" |
| 12 | + "github.com/openshift/origin/pkg/image/admission/imagequalify/api" |
| 13 | +) |
| 14 | + |
| 15 | +var _ admission.MutationInterface = &Plugin{} |
| 16 | +var _ admission.ValidationInterface = &Plugin{} |
| 17 | + |
| 18 | +// Plugin is an implementation of admission.Interface. |
| 19 | +type Plugin struct { |
| 20 | + *admission.Handler |
| 21 | + |
| 22 | + rules []api.ImageQualifyRule |
| 23 | +} |
| 24 | + |
| 25 | +// Register creates and registers the new plugin but only if there is |
| 26 | +// non-empty and a valid configuration. |
| 27 | +func Register(plugins *admission.Plugins) { |
| 28 | + plugins.Register(api.PluginName, func(config io.Reader) (admission.Interface, error) { |
| 29 | + pluginConfig, err := readConfig(config) |
| 30 | + if err != nil { |
| 31 | + return nil, err |
| 32 | + } |
| 33 | + if pluginConfig == nil { |
| 34 | + glog.Infof("Admission plugin %q is not configured so it will be disabled.", api.PluginName) |
| 35 | + return nil, nil |
| 36 | + } |
| 37 | + return NewPlugin(pluginConfig.Rules), nil |
| 38 | + }) |
| 39 | +} |
| 40 | + |
| 41 | +func isSubresourceRequest(attributes admission.Attributes) bool { |
| 42 | + return len(attributes.GetSubresource()) > 0 |
| 43 | +} |
| 44 | + |
| 45 | +func isPodsRequest(attributes admission.Attributes) bool { |
| 46 | + return attributes.GetResource().GroupResource() == kapi.Resource("pods") |
| 47 | +} |
| 48 | + |
| 49 | +func shouldIgnore(attributes admission.Attributes) bool { |
| 50 | + switch { |
| 51 | + case isSubresourceRequest(attributes): |
| 52 | + return true |
| 53 | + case !isPodsRequest(attributes): |
| 54 | + return true |
| 55 | + default: |
| 56 | + return false |
| 57 | + } |
| 58 | +} |
| 59 | + |
| 60 | +func qualifyImages(images []string, rules []api.ImageQualifyRule) ([]string, error) { |
| 61 | + qnames := make([]string, len(images)) |
| 62 | + |
| 63 | + for i := range images { |
| 64 | + qname, err := qualifyImage(images[i], rules) |
| 65 | + if err != nil { |
| 66 | + return nil, apierrs.NewBadRequest(fmt.Sprintf("invalid image %q: %s", images[i], err)) |
| 67 | + } |
| 68 | + qnames[i] = qname |
| 69 | + } |
| 70 | + |
| 71 | + return qnames, nil |
| 72 | +} |
| 73 | + |
| 74 | +func containerImages(containers []kapi.Container) []string { |
| 75 | + names := make([]string, len(containers)) |
| 76 | + |
| 77 | + for i := range containers { |
| 78 | + names[i] = containers[i].Image |
| 79 | + } |
| 80 | + |
| 81 | + return names |
| 82 | +} |
| 83 | + |
| 84 | +func qualifyContainers(containers []kapi.Container, rules []api.ImageQualifyRule, action func(index int, qname string) error) error { |
| 85 | + qnames, err := qualifyImages(containerImages(containers), rules) |
| 86 | + |
| 87 | + if err != nil { |
| 88 | + return err |
| 89 | + } |
| 90 | + |
| 91 | + for i := range containers { |
| 92 | + if err := action(i, qnames[i]); err != nil { |
| 93 | + return err |
| 94 | + } |
| 95 | + } |
| 96 | + |
| 97 | + return nil |
| 98 | +} |
| 99 | + |
| 100 | +// Admit makes an admission decision based on the request attributes. |
| 101 | +// If the attributes are valid then any container image names that are |
| 102 | +// unqualified (i.e., have no domain component) will be qualified with |
| 103 | +// domain according to the set of rules. If no rule matches then the |
| 104 | +// name can still remain unqualified. |
| 105 | +func (p *Plugin) Admit(attributes admission.Attributes) error { |
| 106 | + // Ignore all calls to subresources or resources other than pods. |
| 107 | + if shouldIgnore(attributes) { |
| 108 | + return nil |
| 109 | + } |
| 110 | + |
| 111 | + pod, ok := attributes.GetObject().(*kapi.Pod) |
| 112 | + if !ok { |
| 113 | + return apierrs.NewBadRequest("Resource was marked with kind Pod but was unable to be converted") |
| 114 | + } |
| 115 | + |
| 116 | + if err := qualifyContainers(pod.Spec.InitContainers, p.rules, func(i int, qname string) error { |
| 117 | + if pod.Spec.InitContainers[i].Image != qname { |
| 118 | + glog.V(4).Infof("qualifying image %q as %q", pod.Spec.InitContainers[i].Image, qname) |
| 119 | + pod.Spec.InitContainers[i].Image = qname |
| 120 | + } |
| 121 | + return nil |
| 122 | + }); err != nil { |
| 123 | + return err |
| 124 | + } |
| 125 | + |
| 126 | + if err := qualifyContainers(pod.Spec.Containers, p.rules, func(i int, qname string) error { |
| 127 | + if pod.Spec.Containers[i].Image != qname { |
| 128 | + glog.V(4).Infof("qualifying image %q as %q", pod.Spec.Containers[i].Image, qname) |
| 129 | + pod.Spec.Containers[i].Image = qname |
| 130 | + } |
| 131 | + return nil |
| 132 | + }); err != nil { |
| 133 | + return err |
| 134 | + } |
| 135 | + |
| 136 | + return nil |
| 137 | +} |
| 138 | + |
| 139 | +// Validate makes an admission decision based on the request |
| 140 | +// attributes. It checks that image names that got qualified in |
| 141 | +// Admit() remain qualified, returning an error if this condition no |
| 142 | +// longer holds true. |
| 143 | +func (p *Plugin) Validate(attributes admission.Attributes) error { |
| 144 | + // Ignore all calls to subresources or resources other than pods. |
| 145 | + if shouldIgnore(attributes) { |
| 146 | + return nil |
| 147 | + } |
| 148 | + |
| 149 | + pod, ok := attributes.GetObject().(*kapi.Pod) |
| 150 | + if !ok { |
| 151 | + return apierrs.NewBadRequest("Resource was marked with kind Pod but was unable to be converted") |
| 152 | + } |
| 153 | + |
| 154 | + // Re-qualify - anything that has become unqualified has been |
| 155 | + // changed post Admit() and is now in error. |
| 156 | + |
| 157 | + if err := qualifyContainers(pod.Spec.InitContainers, p.rules, func(i int, qname string) error { |
| 158 | + if pod.Spec.InitContainers[i].Image != qname { |
| 159 | + msg := fmt.Sprintf("image %q should be qualified as %q", pod.Spec.InitContainers[i].Image, qname) |
| 160 | + return apierrs.NewBadRequest(msg) |
| 161 | + } |
| 162 | + return nil |
| 163 | + }); err != nil { |
| 164 | + return err |
| 165 | + } |
| 166 | + |
| 167 | + if err := qualifyContainers(pod.Spec.Containers, p.rules, func(i int, qname string) error { |
| 168 | + if pod.Spec.Containers[i].Image != qname { |
| 169 | + msg := fmt.Sprintf("image %q should be qualified as %q", pod.Spec.Containers[i].Image, qname) |
| 170 | + return apierrs.NewBadRequest(msg) |
| 171 | + } |
| 172 | + return nil |
| 173 | + }); err != nil { |
| 174 | + return err |
| 175 | + } |
| 176 | + |
| 177 | + return nil |
| 178 | +} |
| 179 | + |
| 180 | +// NewPlugin creates a new admission handler. |
| 181 | +func NewPlugin(rules []api.ImageQualifyRule) *Plugin { |
| 182 | + return &Plugin{ |
| 183 | + Handler: admission.NewHandler(admission.Create, admission.Update), |
| 184 | + rules: rules, |
| 185 | + } |
| 186 | +} |
0 commit comments