mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-01 01:00:41 +00:00
230 lines
5.8 KiB
Go
230 lines
5.8 KiB
Go
// Copyright 2019 Drone IO, Inc.
|
|
//
|
|
// 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 linter
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/drone/drone-yaml/yaml"
|
|
)
|
|
|
|
var os = map[string]struct{}{
|
|
"linux": struct{}{},
|
|
"windows": struct{}{},
|
|
}
|
|
|
|
var arch = map[string]struct{}{
|
|
"arm": struct{}{},
|
|
"arm64": struct{}{},
|
|
"amd64": struct{}{},
|
|
}
|
|
|
|
// ErrDuplicateStepName is returned when two Pipeline steps
|
|
// have the same name.
|
|
var ErrDuplicateStepName = errors.New("linter: duplicate step names")
|
|
|
|
// ErrMissingDependency is returned when a Pipeline step
|
|
// defines dependencies that are invlid or unknown.
|
|
var ErrMissingDependency = errors.New("linter: invalid or unknown step dependency")
|
|
|
|
// ErrCyclicalDependency is returned when a Pipeline step
|
|
// defines a cyclical dependency, which would result in an
|
|
// infinite execution loop.
|
|
var ErrCyclicalDependency = errors.New("linter: cyclical step dependency detected")
|
|
|
|
// Lint performs lint operations for a resource.
|
|
func Lint(resource yaml.Resource, trusted bool) error {
|
|
switch v := resource.(type) {
|
|
case *yaml.Cron:
|
|
return v.Validate()
|
|
case *yaml.Pipeline:
|
|
return checkPipeline(v, trusted)
|
|
case *yaml.Secret:
|
|
return v.Validate()
|
|
case *yaml.Registry:
|
|
return v.Validate()
|
|
case *yaml.Signature:
|
|
return v.Validate()
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func checkPipeline(pipeline *yaml.Pipeline, trusted bool) error {
|
|
err := checkVolumes(pipeline, trusted)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = checkPlatform(pipeline.Platform)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
names := map[string]struct{}{}
|
|
if pipeline.Clone.Disable == false {
|
|
names["clone"] = struct{}{}
|
|
}
|
|
for _, container := range pipeline.Steps {
|
|
_, ok := names[container.Name]
|
|
if ok {
|
|
return ErrDuplicateStepName
|
|
}
|
|
names[container.Name] = struct{}{}
|
|
|
|
err := checkContainer(container, trusted)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = checkDeps(container, names)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
for _, container := range pipeline.Services {
|
|
_, ok := names[container.Name]
|
|
if ok {
|
|
return ErrDuplicateStepName
|
|
}
|
|
names[container.Name] = struct{}{}
|
|
|
|
err := checkContainer(container, trusted)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func checkPlatform(platform yaml.Platform) error {
|
|
if v := platform.OS; v != "" {
|
|
_, ok := os[v]
|
|
if !ok {
|
|
return fmt.Errorf("linter: unsupported os: %s", v)
|
|
}
|
|
}
|
|
if v := platform.Arch; v != "" {
|
|
_, ok := arch[v]
|
|
if !ok {
|
|
return fmt.Errorf("linter: unsupported architecture: %s", v)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func checkContainer(container *yaml.Container, trusted bool) error {
|
|
err := checkPorts(container.Ports, trusted)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if container.Build == nil && container.Image == "" {
|
|
return errors.New("linter: invalid or missing image")
|
|
}
|
|
if container.Build != nil && container.Build.Image == "" {
|
|
return errors.New("linter: invalid or missing build image")
|
|
}
|
|
if container.Name == "" {
|
|
return errors.New("linter: invalid or missing name")
|
|
}
|
|
if trusted == false && container.Privileged {
|
|
return errors.New("linter: untrusted repositories cannot enable privileged mode")
|
|
}
|
|
if trusted == false && len(container.Devices) > 0 {
|
|
return errors.New("linter: untrusted repositories cannot mount devices")
|
|
}
|
|
if trusted == false && len(container.DNS) > 0 {
|
|
return errors.New("linter: untrusted repositories cannot configure dns")
|
|
}
|
|
if trusted == false && len(container.DNSSearch) > 0 {
|
|
return errors.New("linter: untrusted repositories cannot configure dns_search")
|
|
}
|
|
if trusted == false && len(container.ExtraHosts) > 0 {
|
|
return errors.New("linter: untrusted repositories cannot configure extra_hosts")
|
|
}
|
|
for _, mount := range container.Volumes {
|
|
switch mount.Name {
|
|
case "workspace", "_workspace", "_docker_socket":
|
|
return fmt.Errorf("linter: invalid volume name: %s", mount.Name)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func checkPorts(ports []*yaml.Port, trusted bool) error {
|
|
for _, port := range ports {
|
|
err := checkPort(port, trusted)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func checkPort(port *yaml.Port, trusted bool) error {
|
|
if trusted == false && port.Host != 0 {
|
|
return errors.New("linter: untrusted repositories cannot map to a host port")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func checkVolumes(pipeline *yaml.Pipeline, trusted bool) error {
|
|
for _, volume := range pipeline.Volumes {
|
|
if volume.EmptyDir != nil {
|
|
err := checkEmptyDirVolume(volume.EmptyDir, trusted)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if volume.HostPath != nil {
|
|
err := checkHostPathVolume(volume.HostPath, trusted)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
switch volume.Name {
|
|
case "workspace", "_workspace", "_docker_socket":
|
|
return fmt.Errorf("linter: invalid volume name: %s", volume.Name)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func checkHostPathVolume(volume *yaml.VolumeHostPath, trusted bool) error {
|
|
if trusted == false {
|
|
return errors.New("linter: untrusted repositories cannot mount host volumes")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func checkEmptyDirVolume(volume *yaml.VolumeEmptyDir, trusted bool) error {
|
|
if trusted == false && volume.Medium == "memory" {
|
|
return errors.New("linter: untrusted repositories cannot mount in-memory volumes")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func checkDeps(container *yaml.Container, deps map[string]struct{}) error {
|
|
for _, dep := range container.DependsOn {
|
|
_, ok := deps[dep]
|
|
if !ok {
|
|
return ErrMissingDependency
|
|
}
|
|
if container.Name == dep {
|
|
return ErrCyclicalDependency
|
|
}
|
|
}
|
|
return nil
|
|
}
|