nat.go 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. // Package nat is a convenience package for manipulation of strings describing network ports.
  2. package nat
  3. import (
  4. "fmt"
  5. "net"
  6. "strconv"
  7. "strings"
  8. )
  9. const (
  10. // portSpecTemplate is the expected format for port specifications
  11. portSpecTemplate = "ip:hostPort:containerPort"
  12. )
  13. // PortBinding represents a binding between a Host IP address and a Host Port
  14. type PortBinding struct {
  15. // HostIP is the host IP Address
  16. HostIP string `json:"HostIp"`
  17. // HostPort is the host port number
  18. HostPort string
  19. }
  20. // PortMap is a collection of PortBinding indexed by Port
  21. type PortMap map[Port][]PortBinding
  22. // PortSet is a collection of structs indexed by Port
  23. type PortSet map[Port]struct{}
  24. // Port is a string containing port number and protocol in the format "80/tcp"
  25. type Port string
  26. // NewPort creates a new instance of a Port given a protocol and port number or port range
  27. func NewPort(proto, port string) (Port, error) {
  28. // Check for parsing issues on "port" now so we can avoid having
  29. // to check it later on.
  30. portStartInt, portEndInt, err := ParsePortRangeToInt(port)
  31. if err != nil {
  32. return "", err
  33. }
  34. if portStartInt == portEndInt {
  35. return Port(fmt.Sprintf("%d/%s", portStartInt, proto)), nil
  36. }
  37. return Port(fmt.Sprintf("%d-%d/%s", portStartInt, portEndInt, proto)), nil
  38. }
  39. // ParsePort parses the port number string and returns an int
  40. func ParsePort(rawPort string) (int, error) {
  41. if len(rawPort) == 0 {
  42. return 0, nil
  43. }
  44. port, err := strconv.ParseUint(rawPort, 10, 16)
  45. if err != nil {
  46. return 0, err
  47. }
  48. return int(port), nil
  49. }
  50. // ParsePortRangeToInt parses the port range string and returns start/end ints
  51. func ParsePortRangeToInt(rawPort string) (int, int, error) {
  52. if len(rawPort) == 0 {
  53. return 0, 0, nil
  54. }
  55. start, end, err := ParsePortRange(rawPort)
  56. if err != nil {
  57. return 0, 0, err
  58. }
  59. return int(start), int(end), nil
  60. }
  61. // Proto returns the protocol of a Port
  62. func (p Port) Proto() string {
  63. proto, _ := SplitProtoPort(string(p))
  64. return proto
  65. }
  66. // Port returns the port number of a Port
  67. func (p Port) Port() string {
  68. _, port := SplitProtoPort(string(p))
  69. return port
  70. }
  71. // Int returns the port number of a Port as an int
  72. func (p Port) Int() int {
  73. portStr := p.Port()
  74. // We don't need to check for an error because we're going to
  75. // assume that any error would have been found, and reported, in NewPort()
  76. port, _ := ParsePort(portStr)
  77. return port
  78. }
  79. // Range returns the start/end port numbers of a Port range as ints
  80. func (p Port) Range() (int, int, error) {
  81. return ParsePortRangeToInt(p.Port())
  82. }
  83. // SplitProtoPort splits a port in the format of proto/port
  84. func SplitProtoPort(rawPort string) (string, string) {
  85. parts := strings.Split(rawPort, "/")
  86. l := len(parts)
  87. if len(rawPort) == 0 || l == 0 || len(parts[0]) == 0 {
  88. return "", ""
  89. }
  90. if l == 1 {
  91. return "tcp", rawPort
  92. }
  93. if len(parts[1]) == 0 {
  94. return "tcp", parts[0]
  95. }
  96. return parts[1], parts[0]
  97. }
  98. func validateProto(proto string) bool {
  99. for _, availableProto := range []string{"tcp", "udp", "sctp"} {
  100. if availableProto == proto {
  101. return true
  102. }
  103. }
  104. return false
  105. }
  106. // ParsePortSpecs receives port specs in the format of ip:public:private/proto and parses
  107. // these in to the internal types
  108. func ParsePortSpecs(ports []string) (map[Port]struct{}, map[Port][]PortBinding, error) {
  109. var (
  110. exposedPorts = make(map[Port]struct{}, len(ports))
  111. bindings = make(map[Port][]PortBinding)
  112. )
  113. for _, rawPort := range ports {
  114. portMappings, err := ParsePortSpec(rawPort)
  115. if err != nil {
  116. return nil, nil, err
  117. }
  118. for _, portMapping := range portMappings {
  119. port := portMapping.Port
  120. if _, exists := exposedPorts[port]; !exists {
  121. exposedPorts[port] = struct{}{}
  122. }
  123. bslice, exists := bindings[port]
  124. if !exists {
  125. bslice = []PortBinding{}
  126. }
  127. bindings[port] = append(bslice, portMapping.Binding)
  128. }
  129. }
  130. return exposedPorts, bindings, nil
  131. }
  132. // PortMapping is a data object mapping a Port to a PortBinding
  133. type PortMapping struct {
  134. Port Port
  135. Binding PortBinding
  136. }
  137. func splitParts(rawport string) (string, string, string) {
  138. parts := strings.Split(rawport, ":")
  139. n := len(parts)
  140. containerport := parts[n-1]
  141. switch n {
  142. case 1:
  143. return "", "", containerport
  144. case 2:
  145. return "", parts[0], containerport
  146. case 3:
  147. return parts[0], parts[1], containerport
  148. default:
  149. return strings.Join(parts[:n-2], ":"), parts[n-2], containerport
  150. }
  151. }
  152. // ParsePortSpec parses a port specification string into a slice of PortMappings
  153. func ParsePortSpec(rawPort string) ([]PortMapping, error) {
  154. var proto string
  155. rawIP, hostPort, containerPort := splitParts(rawPort)
  156. proto, containerPort = SplitProtoPort(containerPort)
  157. // Strip [] from IPV6 addresses
  158. ip, _, err := net.SplitHostPort(rawIP + ":")
  159. if err != nil {
  160. return nil, fmt.Errorf("Invalid ip address %v: %s", rawIP, err)
  161. }
  162. if ip != "" && net.ParseIP(ip) == nil {
  163. return nil, fmt.Errorf("Invalid ip address: %s", ip)
  164. }
  165. if containerPort == "" {
  166. return nil, fmt.Errorf("No port specified: %s<empty>", rawPort)
  167. }
  168. startPort, endPort, err := ParsePortRange(containerPort)
  169. if err != nil {
  170. return nil, fmt.Errorf("Invalid containerPort: %s", containerPort)
  171. }
  172. var startHostPort, endHostPort uint64 = 0, 0
  173. if len(hostPort) > 0 {
  174. startHostPort, endHostPort, err = ParsePortRange(hostPort)
  175. if err != nil {
  176. return nil, fmt.Errorf("Invalid hostPort: %s", hostPort)
  177. }
  178. }
  179. if hostPort != "" && (endPort-startPort) != (endHostPort-startHostPort) {
  180. // Allow host port range iff containerPort is not a range.
  181. // In this case, use the host port range as the dynamic
  182. // host port range to allocate into.
  183. if endPort != startPort {
  184. return nil, fmt.Errorf("Invalid ranges specified for container and host Ports: %s and %s", containerPort, hostPort)
  185. }
  186. }
  187. if !validateProto(strings.ToLower(proto)) {
  188. return nil, fmt.Errorf("Invalid proto: %s", proto)
  189. }
  190. ports := []PortMapping{}
  191. for i := uint64(0); i <= (endPort - startPort); i++ {
  192. containerPort = strconv.FormatUint(startPort+i, 10)
  193. if len(hostPort) > 0 {
  194. hostPort = strconv.FormatUint(startHostPort+i, 10)
  195. }
  196. // Set hostPort to a range only if there is a single container port
  197. // and a dynamic host port.
  198. if startPort == endPort && startHostPort != endHostPort {
  199. hostPort = fmt.Sprintf("%s-%s", hostPort, strconv.FormatUint(endHostPort, 10))
  200. }
  201. port, err := NewPort(strings.ToLower(proto), containerPort)
  202. if err != nil {
  203. return nil, err
  204. }
  205. binding := PortBinding{
  206. HostIP: ip,
  207. HostPort: hostPort,
  208. }
  209. ports = append(ports, PortMapping{Port: port, Binding: binding})
  210. }
  211. return ports, nil
  212. }