forked from flannel-io/flannel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subnet.go
146 lines (123 loc) · 3.77 KB
/
subnet.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
// Copyright 2015 flannel authors
//
// 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 subnet
import (
"encoding/json"
"errors"
"fmt"
"net"
"strconv"
"time"
"github.com/coreos/flannel/pkg/ip"
"golang.org/x/net/context"
)
var (
ErrLeaseTaken = errors.New("subnet: lease already taken")
ErrNoMoreTries = errors.New("subnet: no more tries")
)
type LeaseAttrs struct {
PublicIP ip.IP4
BackendType string `json:",omitempty"`
BackendData json.RawMessage `json:",omitempty"`
}
type Lease struct {
Subnet ip.IP4Net
Attrs LeaseAttrs
Expiration time.Time
asof uint64
}
func (l *Lease) Key() string {
return MakeSubnetKey(l.Subnet)
}
type Reservation struct {
Subnet ip.IP4Net
PublicIP ip.IP4
}
type (
EventType int
Event struct {
Type EventType `json:"type"`
Lease Lease `json:"lease,omitempty"`
Network string `json:"network,omitempty"`
}
)
const (
EventAdded EventType = iota
EventRemoved
)
type LeaseWatchResult struct {
// Either Events or Snapshot will be set. If Events is empty, it means
// the cursor was out of range and Snapshot contains the current list
// of items, even if empty.
Events []Event `json:"events"`
Snapshot []Lease `json:"snapshot"`
Cursor interface{} `json:"cursor"`
}
type NetworkWatchResult struct {
// Either Events or Snapshot will be set. If Events is empty, it means
// the cursor was out of range and Snapshot contains the current list
// of items, even if empty.
Events []Event `json:"events"`
Snapshot []string `json:"snapshot"`
Cursor interface{} `json:"cursor,omitempty"`
}
func (et EventType) MarshalJSON() ([]byte, error) {
s := ""
switch et {
case EventAdded:
s = "added"
case EventRemoved:
s = "removed"
default:
return nil, errors.New("bad event type")
}
return json.Marshal(s)
}
func (et *EventType) UnmarshalJSON(data []byte) error {
switch string(data) {
case "\"added\"":
*et = EventAdded
case "\"removed\"":
*et = EventRemoved
default:
fmt.Println(string(data))
return errors.New("bad event type")
}
return nil
}
func ParseSubnetKey(s string) *ip.IP4Net {
if parts := subnetRegex.FindStringSubmatch(s); len(parts) == 3 {
snIp := net.ParseIP(parts[1]).To4()
prefixLen, err := strconv.ParseUint(parts[2], 10, 5)
if snIp != nil && err == nil {
return &ip.IP4Net{IP: ip.FromIP(snIp), PrefixLen: uint(prefixLen)}
}
}
return nil
}
func MakeSubnetKey(sn ip.IP4Net) string {
return sn.StringSep(".", "-")
}
type Manager interface {
GetNetworkConfig(ctx context.Context, network string) (*Config, error)
AcquireLease(ctx context.Context, network string, attrs *LeaseAttrs) (*Lease, error)
RenewLease(ctx context.Context, network string, lease *Lease) error
RevokeLease(ctx context.Context, network string, sn ip.IP4Net) error
WatchLease(ctx context.Context, network string, sn ip.IP4Net, cursor interface{}) (LeaseWatchResult, error)
WatchLeases(ctx context.Context, network string, cursor interface{}) (LeaseWatchResult, error)
WatchNetworks(ctx context.Context, cursor interface{}) (NetworkWatchResult, error)
AddReservation(ctx context.Context, network string, r *Reservation) error
RemoveReservation(ctx context.Context, network string, subnet ip.IP4Net) error
ListReservations(ctx context.Context, network string) ([]Reservation, error)
}