123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- package network // import "github.com/docker/docker/api/server/router/network"
- import (
- "context"
- "net/http"
- "strconv"
- "strings"
- "github.com/docker/docker/api/server/httputils"
- "github.com/docker/docker/api/types"
- "github.com/docker/docker/api/types/filters"
- "github.com/docker/docker/api/types/network"
- "github.com/docker/docker/api/types/versions"
- "github.com/docker/docker/errdefs"
- "github.com/docker/docker/libnetwork"
- "github.com/docker/docker/libnetwork/scope"
- "github.com/pkg/errors"
- )
- func (n *networkRouter) getNetworksList(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
- if err := httputils.ParseForm(r); err != nil {
- return err
- }
- filter, err := filters.FromJSON(r.Form.Get("filters"))
- if err != nil {
- return err
- }
- if err := network.ValidateFilters(filter); err != nil {
- return err
- }
- var list []types.NetworkResource
- nr, err := n.cluster.GetNetworks(filter)
- if err == nil {
- list = nr
- }
- // Combine the network list returned by Docker daemon if it is not already
- // returned by the cluster manager
- localNetworks, err := n.backend.GetNetworks(filter, types.NetworkListConfig{Detailed: versions.LessThan(httputils.VersionFromContext(ctx), "1.28")})
- if err != nil {
- return err
- }
- var idx map[string]bool
- if len(list) > 0 {
- idx = make(map[string]bool, len(list))
- for _, n := range list {
- idx[n.ID] = true
- }
- }
- for _, n := range localNetworks {
- if idx[n.ID] {
- continue
- }
- list = append(list, n)
- }
- if list == nil {
- list = []types.NetworkResource{}
- }
- return httputils.WriteJSON(w, http.StatusOK, list)
- }
- type invalidRequestError struct {
- cause error
- }
- func (e invalidRequestError) Error() string {
- return e.cause.Error()
- }
- func (e invalidRequestError) InvalidParameter() {}
- type ambigousResultsError string
- func (e ambigousResultsError) Error() string {
- return "network " + string(e) + " is ambiguous"
- }
- func (ambigousResultsError) InvalidParameter() {}
- func (n *networkRouter) getNetwork(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
- if err := httputils.ParseForm(r); err != nil {
- return err
- }
- term := vars["id"]
- var (
- verbose bool
- err error
- )
- if v := r.URL.Query().Get("verbose"); v != "" {
- if verbose, err = strconv.ParseBool(v); err != nil {
- return errors.Wrapf(invalidRequestError{err}, "invalid value for verbose: %s", v)
- }
- }
- networkScope := r.URL.Query().Get("scope")
- // In case multiple networks have duplicate names, return error.
- // TODO (yongtang): should we wrap with version here for backward compatibility?
- // First find based on full ID, return immediately once one is found.
- // If a network appears both in swarm and local, assume it is in local first
- // For full name and partial ID, save the result first, and process later
- // in case multiple records was found based on the same term
- listByFullName := map[string]types.NetworkResource{}
- listByPartialID := map[string]types.NetworkResource{}
- // TODO(@cpuguy83): All this logic for figuring out which network to return does not belong here
- // Instead there should be a backend function to just get one network.
- filter := filters.NewArgs(filters.Arg("idOrName", term))
- if networkScope != "" {
- filter.Add("scope", networkScope)
- }
- networks, _ := n.backend.GetNetworks(filter, types.NetworkListConfig{Detailed: true, Verbose: verbose})
- for _, nw := range networks {
- if nw.ID == term {
- return httputils.WriteJSON(w, http.StatusOK, nw)
- }
- if nw.Name == term {
- // No need to check the ID collision here as we are still in
- // local scope and the network ID is unique in this scope.
- listByFullName[nw.ID] = nw
- }
- if strings.HasPrefix(nw.ID, term) {
- // No need to check the ID collision here as we are still in
- // local scope and the network ID is unique in this scope.
- listByPartialID[nw.ID] = nw
- }
- }
- nwk, err := n.cluster.GetNetwork(term)
- if err == nil {
- // If the get network is passed with a specific network ID / partial network ID
- // or if the get network was passed with a network name and scope as swarm
- // return the network. Skipped using isMatchingScope because it is true if the scope
- // is not set which would be case if the client API v1.30
- if strings.HasPrefix(nwk.ID, term) || networkScope == scope.Swarm {
- // If we have a previous match "backend", return it, we need verbose when enabled
- // ex: overlay/partial_ID or name/swarm_scope
- if nwv, ok := listByPartialID[nwk.ID]; ok {
- nwk = nwv
- } else if nwv, ok := listByFullName[nwk.ID]; ok {
- nwk = nwv
- }
- return httputils.WriteJSON(w, http.StatusOK, nwk)
- }
- }
- networks, _ = n.cluster.GetNetworks(filter)
- for _, nw := range networks {
- if nw.ID == term {
- return httputils.WriteJSON(w, http.StatusOK, nw)
- }
- if nw.Name == term {
- // Check the ID collision as we are in swarm scope here, and
- // the map (of the listByFullName) may have already had a
- // network with the same ID (from local scope previously)
- if _, ok := listByFullName[nw.ID]; !ok {
- listByFullName[nw.ID] = nw
- }
- }
- if strings.HasPrefix(nw.ID, term) {
- // Check the ID collision as we are in swarm scope here, and
- // the map (of the listByPartialID) may have already had a
- // network with the same ID (from local scope previously)
- if _, ok := listByPartialID[nw.ID]; !ok {
- listByPartialID[nw.ID] = nw
- }
- }
- }
- // Find based on full name, returns true only if no duplicates
- if len(listByFullName) == 1 {
- for _, v := range listByFullName {
- return httputils.WriteJSON(w, http.StatusOK, v)
- }
- }
- if len(listByFullName) > 1 {
- return errors.Wrapf(ambigousResultsError(term), "%d matches found based on name", len(listByFullName))
- }
- // Find based on partial ID, returns true only if no duplicates
- if len(listByPartialID) == 1 {
- for _, v := range listByPartialID {
- return httputils.WriteJSON(w, http.StatusOK, v)
- }
- }
- if len(listByPartialID) > 1 {
- return errors.Wrapf(ambigousResultsError(term), "%d matches found based on ID prefix", len(listByPartialID))
- }
- return libnetwork.ErrNoSuchNetwork(term)
- }
- func (n *networkRouter) postNetworkCreate(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
- if err := httputils.ParseForm(r); err != nil {
- return err
- }
- var create types.NetworkCreateRequest
- if err := httputils.ReadJSON(r, &create); err != nil {
- return err
- }
- if nws, err := n.cluster.GetNetworksByName(create.Name); err == nil && len(nws) > 0 {
- return libnetwork.NetworkNameError(create.Name)
- }
- nw, err := n.backend.CreateNetwork(create)
- if err != nil {
- if _, ok := err.(libnetwork.ManagerRedirectError); !ok {
- return err
- }
- id, err := n.cluster.CreateNetwork(create)
- if err != nil {
- return err
- }
- nw = &types.NetworkCreateResponse{
- ID: id,
- }
- }
- return httputils.WriteJSON(w, http.StatusCreated, nw)
- }
- func (n *networkRouter) postNetworkConnect(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
- if err := httputils.ParseForm(r); err != nil {
- return err
- }
- var connect types.NetworkConnect
- if err := httputils.ReadJSON(r, &connect); err != nil {
- return err
- }
- // Unlike other operations, we does not check ambiguity of the name/ID here.
- // The reason is that, In case of attachable network in swarm scope, the actual local network
- // may not be available at the time. At the same time, inside daemon `ConnectContainerToNetwork`
- // does the ambiguity check anyway. Therefore, passing the name to daemon would be enough.
- return n.backend.ConnectContainerToNetwork(connect.Container, vars["id"], connect.EndpointConfig)
- }
- func (n *networkRouter) postNetworkDisconnect(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
- if err := httputils.ParseForm(r); err != nil {
- return err
- }
- var disconnect types.NetworkDisconnect
- if err := httputils.ReadJSON(r, &disconnect); err != nil {
- return err
- }
- return n.backend.DisconnectContainerFromNetwork(disconnect.Container, vars["id"], disconnect.Force)
- }
- func (n *networkRouter) deleteNetwork(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
- if err := httputils.ParseForm(r); err != nil {
- return err
- }
- nw, err := n.findUniqueNetwork(vars["id"])
- if err != nil {
- return err
- }
- if nw.Scope == "swarm" {
- if err = n.cluster.RemoveNetwork(nw.ID); err != nil {
- return err
- }
- } else {
- if err := n.backend.DeleteNetwork(nw.ID); err != nil {
- return err
- }
- }
- w.WriteHeader(http.StatusNoContent)
- return nil
- }
- func (n *networkRouter) postNetworksPrune(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
- if err := httputils.ParseForm(r); err != nil {
- return err
- }
- pruneFilters, err := filters.FromJSON(r.Form.Get("filters"))
- if err != nil {
- return err
- }
- pruneReport, err := n.backend.NetworksPrune(ctx, pruneFilters)
- if err != nil {
- return err
- }
- return httputils.WriteJSON(w, http.StatusOK, pruneReport)
- }
- // findUniqueNetwork will search network across different scopes (both local and swarm).
- // NOTE: This findUniqueNetwork is different from FindNetwork in the daemon.
- // In case multiple networks have duplicate names, return error.
- // First find based on full ID, return immediately once one is found.
- // If a network appears both in swarm and local, assume it is in local first
- // For full name and partial ID, save the result first, and process later
- // in case multiple records was found based on the same term
- // TODO (yongtang): should we wrap with version here for backward compatibility?
- func (n *networkRouter) findUniqueNetwork(term string) (types.NetworkResource, error) {
- listByFullName := map[string]types.NetworkResource{}
- listByPartialID := map[string]types.NetworkResource{}
- filter := filters.NewArgs(filters.Arg("idOrName", term))
- networks, _ := n.backend.GetNetworks(filter, types.NetworkListConfig{Detailed: true})
- for _, nw := range networks {
- if nw.ID == term {
- return nw, nil
- }
- if nw.Name == term && !nw.Ingress {
- // No need to check the ID collision here as we are still in
- // local scope and the network ID is unique in this scope.
- listByFullName[nw.ID] = nw
- }
- if strings.HasPrefix(nw.ID, term) {
- // No need to check the ID collision here as we are still in
- // local scope and the network ID is unique in this scope.
- listByPartialID[nw.ID] = nw
- }
- }
- networks, _ = n.cluster.GetNetworks(filter)
- for _, nw := range networks {
- if nw.ID == term {
- return nw, nil
- }
- if nw.Name == term {
- // Check the ID collision as we are in swarm scope here, and
- // the map (of the listByFullName) may have already had a
- // network with the same ID (from local scope previously)
- if _, ok := listByFullName[nw.ID]; !ok {
- listByFullName[nw.ID] = nw
- }
- }
- if strings.HasPrefix(nw.ID, term) {
- // Check the ID collision as we are in swarm scope here, and
- // the map (of the listByPartialID) may have already had a
- // network with the same ID (from local scope previously)
- if _, ok := listByPartialID[nw.ID]; !ok {
- listByPartialID[nw.ID] = nw
- }
- }
- }
- // Find based on full name, returns true only if no duplicates
- if len(listByFullName) == 1 {
- for _, v := range listByFullName {
- return v, nil
- }
- }
- if len(listByFullName) > 1 {
- return types.NetworkResource{}, errdefs.InvalidParameter(errors.Errorf("network %s is ambiguous (%d matches found based on name)", term, len(listByFullName)))
- }
- // Find based on partial ID, returns true only if no duplicates
- if len(listByPartialID) == 1 {
- for _, v := range listByPartialID {
- return v, nil
- }
- }
- if len(listByPartialID) > 1 {
- return types.NetworkResource{}, errdefs.InvalidParameter(errors.Errorf("network %s is ambiguous (%d matches found based on ID prefix)", term, len(listByPartialID)))
- }
- return types.NetworkResource{}, errdefs.NotFound(libnetwork.ErrNoSuchNetwork(term))
- }
|