2018-02-05 21:05:59 +00:00
|
|
|
package runconfig // import "github.com/docker/docker/runconfig"
|
2014-02-12 04:04:39 +00:00
|
|
|
|
|
|
|
import (
|
2015-04-11 00:05:21 +00:00
|
|
|
"encoding/json"
|
|
|
|
"io"
|
|
|
|
|
2016-09-06 18:18:12 +00:00
|
|
|
"github.com/docker/docker/api/types/container"
|
|
|
|
networktypes "github.com/docker/docker/api/types/network"
|
2016-06-07 19:05:43 +00:00
|
|
|
"github.com/docker/docker/pkg/sysinfo"
|
2014-02-12 04:04:39 +00:00
|
|
|
)
|
|
|
|
|
2016-03-28 18:22:23 +00:00
|
|
|
// ContainerDecoder implements httputils.ContainerDecoder
|
|
|
|
// calling DecodeContainerConfig.
|
|
|
|
type ContainerDecoder struct{}
|
|
|
|
|
|
|
|
// DecodeConfig makes ContainerDecoder to implement httputils.ContainerDecoder
|
|
|
|
func (r ContainerDecoder) DecodeConfig(src io.Reader) (*container.Config, *container.HostConfig, *networktypes.NetworkingConfig, error) {
|
2017-08-29 18:32:59 +00:00
|
|
|
return decodeContainerConfig(src)
|
2016-03-28 18:22:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DecodeHostConfig makes ContainerDecoder to implement httputils.ContainerDecoder
|
|
|
|
func (r ContainerDecoder) DecodeHostConfig(src io.Reader) (*container.HostConfig, error) {
|
2017-08-29 18:32:59 +00:00
|
|
|
return decodeHostConfig(src)
|
2016-03-28 18:22:23 +00:00
|
|
|
}
|
|
|
|
|
2017-07-19 14:20:13 +00:00
|
|
|
// decodeContainerConfig decodes a json encoded config into a ContainerConfigWrapper
|
2016-04-05 12:53:04 +00:00
|
|
|
// struct and returns both a Config and a HostConfig struct
|
2015-06-06 16:41:42 +00:00
|
|
|
// Be aware this function is not checking whether the resulted structs are nil,
|
|
|
|
// it's your business to do so
|
2017-07-19 14:20:13 +00:00
|
|
|
func decodeContainerConfig(src io.Reader) (*container.Config, *container.HostConfig, *networktypes.NetworkingConfig, error) {
|
2015-04-11 00:05:21 +00:00
|
|
|
var w ContainerConfigWrapper
|
2015-09-10 02:23:06 +00:00
|
|
|
|
|
|
|
decoder := json.NewDecoder(src)
|
2015-04-11 00:05:21 +00:00
|
|
|
if err := decoder.Decode(&w); err != nil {
|
2016-01-08 00:18:34 +00:00
|
|
|
return nil, nil, nil, err
|
2014-02-12 04:04:39 +00:00
|
|
|
}
|
2015-04-11 00:05:21 +00:00
|
|
|
|
2015-07-09 22:12:36 +00:00
|
|
|
hc := w.getHostConfig()
|
|
|
|
|
2015-09-10 02:23:06 +00:00
|
|
|
// Perform platform-specific processing of Volumes and Binds.
|
|
|
|
if w.Config != nil && hc != nil {
|
|
|
|
|
2015-12-13 16:00:39 +00:00
|
|
|
// Initialize the volumes map if currently nil
|
2015-09-10 02:23:06 +00:00
|
|
|
if w.Config.Volumes == nil {
|
|
|
|
w.Config.Volumes = make(map[string]struct{})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-09 22:12:36 +00:00
|
|
|
// Certain parameters need daemon-side validation that cannot be done
|
|
|
|
// on the client, as only the daemon knows what is valid for the platform.
|
2017-03-10 17:39:22 +00:00
|
|
|
if err := validateNetMode(w.Config, hc); err != nil {
|
2016-01-08 00:18:34 +00:00
|
|
|
return nil, nil, nil, err
|
2015-07-09 22:12:36 +00:00
|
|
|
}
|
|
|
|
|
2016-02-03 20:07:00 +00:00
|
|
|
// Validate isolation
|
2017-03-10 17:39:22 +00:00
|
|
|
if err := validateIsolation(hc); err != nil {
|
2016-01-08 00:18:34 +00:00
|
|
|
return nil, nil, nil, err
|
2015-09-19 01:21:57 +00:00
|
|
|
}
|
2016-02-25 01:51:46 +00:00
|
|
|
|
|
|
|
// Validate QoS
|
2017-03-10 17:39:22 +00:00
|
|
|
if err := validateQoS(hc); err != nil {
|
2016-02-25 01:51:46 +00:00
|
|
|
return nil, nil, nil, err
|
|
|
|
}
|
2016-06-07 19:15:50 +00:00
|
|
|
|
2016-06-07 19:05:43 +00:00
|
|
|
// Validate Resources
|
2017-03-10 17:39:22 +00:00
|
|
|
if err := validateResources(hc, sysinfo.New(true)); err != nil {
|
2016-06-07 19:05:43 +00:00
|
|
|
return nil, nil, nil, err
|
|
|
|
}
|
2017-03-10 17:39:22 +00:00
|
|
|
|
|
|
|
// Validate Privileged
|
|
|
|
if err := validatePrivileged(hc); err != nil {
|
|
|
|
return nil, nil, nil, err
|
|
|
|
}
|
|
|
|
|
2017-05-08 16:29:37 +00:00
|
|
|
// Validate ReadonlyRootfs
|
|
|
|
if err := validateReadonlyRootfs(hc); err != nil {
|
|
|
|
return nil, nil, nil, err
|
|
|
|
}
|
|
|
|
|
2016-01-08 00:18:34 +00:00
|
|
|
return w.Config, hc, w.NetworkingConfig, nil
|
2014-02-12 04:04:39 +00:00
|
|
|
}
|