You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/Design.md
+24-24
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
-
#Netplugin Design
1
+
#Netplugin Design
2
2
Netplugin is an infrastructure piece that defines a consistent interface between a management function and a network function, thereby helping developers to quickly prototype and implement solutions based on the intermix of the two.
3
3
4
-
##Table of Contents
4
+
##Table of Contents
5
5
-[Audience](#audience)
6
6
-[Concepts and Definitions](#concepts-and-definitions)
7
7
-[Design Goals](#design-goals)
@@ -11,13 +11,13 @@ Netplugin is an infrastructure piece that defines a consistent interface between
11
11
-[Sample Implementation](#sample-implementation)
12
12
-[Open Items and Ongoing Work](#open-items-and-ongoing-work)
13
13
14
-
##Audience
14
+
##Audience
15
15
This document is targeted towards the developers looking into or working on integrating existing or new management functions with existing or new network functions.
16
16
17
-
##Concepts and Definitions
17
+
##Concepts and Definitions
18
18
This section provides a brief overview of some terms used in rest of the document.
>Management in business and organizations is the function that coordinates the efforts of people to accomplish goals and objectives using available resources efficiently and effectively.
23
23
@@ -27,10 +27,10 @@ In application delivery environments there is usually at least one agent per man
27
27
28
28
Unless explicitly stated otherwise, for the logic performed at the managed resource the Management Function refers to the agent running on that resource, otherwise it refers to the central command control for the user facing logic like accepting/processing application requirement.
29
29
30
-
###Network function
30
+
###Network function
31
31
The Network Function (or implementation) performs the programming of the network resource, in a cluster of resources managed by the Management Function. Traditional Layer 2/3 forwarding; flow based forwarding; overlays or virtual networks etc are a few network functions.
32
32
33
-
###Configuration v/s Intent
33
+
###Configuration v/s Intent
34
34
The Configuration is a piece of information that is consumed by and depicts the desired state of a function.
35
35
36
36
Needless to say, the configuration is specific to a function and mostly differs between implementations of functions of different nature (viz. management function v/s network function) but may also differ between implementation of functions of same nature (Layer 2 forwarding v/s flow based forwarding; Constraint based management v/s Resource based management, to name a few).
@@ -39,10 +39,10 @@ Composing/layering one function over other (management function over a network f
39
39
40
40
Unless explicitly stated otherwise, 'Intent' refers to the configuration that is consumed by the a high level function like a management fuuction and usually needs to be passed through a state translation function in order to be consumed by the network function.
41
41
42
-
###Logically centralized decision
42
+
###Logically centralized decision
43
43
Logically centralized decision making refers to the act of reaching consensus on certain value in a distributed system. In context of this document the problems of resource allocation (like address allocation; vlan or vxlan id allocation etc) are assumed to be solved through logically centralized decision making. The details of the design or implementation of a logically centralized decision making system are outside the scope of this document.
44
44
45
-
##Design Goals
45
+
##Design Goals
46
46
Integrating a management function with a network function usually requires a coupling of the two, thereby resulting in following challenges:
47
47
- There is often unclarity/uncertainty of the definition of the integrating interfaces between the two without an available implementation of at least one. This becomes even harder if both the implementations are a work in progress by independent teams, which is usually the case.
48
48
- It is difficulty to intermix the available implementations of functions without re-writing/modifying the functions themselves.
@@ -51,31 +51,31 @@ Integrating a management function with a network function usually requires a cou
51
51
To address the above challenges, we propose the Netplugin project. Netplugin has following broad design goal:
52
52
"Provide a platform that sits as a middle layer between the management function and the network programming function, by offering a minimal set of well-defined core interfaces, that reduces their coupling and enables easy integration of different implementations of these functions".
53
53
54
-
##Core Constructs
54
+
##Core Constructs
55
55
The Netplugin core builds on the following three fundamental constructs:
56
56
57
-
###Endpoint
57
+
###Endpoint
58
58
An endpoint is an addressable entity that is able to communicate with a group of other similar entities. The communication between these entities stays within the same group only.
59
59
60
60
Notes:
61
61
- Endpoint is able to communicate only within the group it belongs to. This group is called a 'Network' (see [next section](#network)) and is assumed to exist before endpoints can be added.
62
62
- To keep the design independent of the underlying network implementation the definition of the Endpoint 'address' (mac, ip based, dns-name etc) is intentionally left outside scope of the core interface.
63
63
- The endpoint address allocation is left to the underlying management or network function implementations. The design provides hooks to set/compute the address of endpoints in a network at fixed stages like creation of endpoint and configuration replay/restore as part of handling resource allocation(see the Notes in [Interfaces section](#interfaces)).[<b>REVISIT</b>: this may change based on if we are able to move resource allocation as part of state translation stage]
64
64
65
-
###Network
65
+
###Network
66
66
A network identifies an arbitrary group of endpoints that are able to communicate with each other.
67
67
68
68
Notes:
69
69
- Network implementation details are intentionally left out of the scope of core interface. Example, at first this definition of a network may seem to violate the traditional Layer3 routing in a Virtual Routing Context (aka Vrf, that helps connect Layer3 subnets). However, one possible way to achieve a router (Gateway) function using these constructs could be to create an Endpoint for the routable-subnet and add it to a network depicting the Vrf, thereby connecting the different subnets.
70
70
71
-
###State
71
+
###State
72
72
State identifies a piece of information that can be uniquely identified by a 'key'. The Network and Endpoint shall each have some associated state with them. The State becomes the means to expose and integrate the features of the management function and networking function. With appropriate state translation functions in place this also achieves limiting the exposure of networking details in the high level management function configuration.
73
73
74
74
Notes:
75
75
- The 'key' is not interpretted by the core interface but is passed along the API implementation . The interpretation of 'key' is left to the implementation.
76
76
- Similarly the structure of the information associated with the State is left to the implementation and is not interpretted by the core.
77
77
78
-
##High Level Design
78
+
##High Level Design
79
79
The following two figures depict the possible deployment scenarios of a Netplugin implementation. These scenarios arise from the two possibilities by which a management function may expose it's plugin/extension interface viz. library-based or daemon-based.
80
80
81
81
- Compute management with library based networking interface
Netplugin defines two broad interfaces viz. Plugin and Driver. These interfaces logically define the boundaries at which the management and network functions integrate.
129
129
130
-
####Plugin
130
+
####Plugin
131
131
The Plugin interface provides the API that faces and is invoked by the management function. The implementation of the Plugin API is generic and ensures some constraints (discussed in the [next section](#constraints)). The Plugin API shall be invoked by the management functions in their own specific way. Example, a Docker extension implementation shall invoke the Netplugin interface as a library ([docker issue #9983](https://github.com/docker/docker/issues/9983) ), while a Rocket plugin implementation shall invoke the Netplugin interface from a daemon/web-service serving rocket specific REST APIs([Rocket networking proposal](https://docs.google.com/document/d/1PUeV68q9muEmkHmRuW10HQ6cHgd4819_67pIxDRVNlM/edit#heading=h.ievko3xsjwxd)). For more details on integrating Plugin interface with management function please refer the section on [Integration](#integration-details).
132
132
133
133
Notes:
134
134
- The generic Plugin interface implementation has following scope and assumptions:
135
135
+ A Neplugin instance is run on each host or device where the network function is performed with no requirement of knowledge of existence of other instances in the Plugin interface. The implementation of the management function and the network function however may be aware of other instances.
136
136
- <b>Resource management</b>: Part of network programming involves managing (allocation/deallocation) certain resources like vlan/vxlan ids, ip addresses etc. In most cases, the resource management might be suitably solved by logically centralized decision making, which may be internal or external to the Management Function. However, certain management functions may offload it to the Network Function. The Plugin interface shall contain the necessary API to allocate/deallocate resource in a implementation specific way. The generic Plugin interface shall ensure the constraints to handle resource allocation/deallocation (discussed in next section) [<b>REVISIT</b>: need to ensure that resource allocation can be decoupled from programming implementation. Also this shall change if we are able to move resource allocation to state translation]
137
137
138
-
####Driver
138
+
####Driver
139
139
The Driver interface provides the APIs that face the networking function. The Driver interface is invoked by the Plugin interface (maintaining the constraints). The implementation of the Driver interface is specific to the network function. Example, linux bridge, ovs, SRIOV etc. The Driver interface also provides the APIs to manage the State, which allows supporting different state management mechanisms(etcd, zookeeper, libpack, configuration files etc to name a few).
140
140
141
-
###Constraints
141
+
###Constraints
142
142
[<b>REVISIT</b>:]
143
143
As discussed above the Plugin interface implementation invokes the Driver interface while maintaining some constraints. The following constraints are ensured:
144
144
@@ -151,20 +151,20 @@ Notes:
151
151
- The above constraints provide guarantees wrt the order of Driver interface invocation. However, they do not guarantee the presence/absence of the state when the Driver interface is actually invoked. The driver implementations are expected to deal with such scenarios. Example, when a delete for endpoint is received it is not guaranteed that the network state will exist. So a driver implementation might need to cache/keep enough state to handle endpoint deletion gracefully.
152
152
- The Constraints 'c' and 'd' might become out of scope of the Plugin interface based on design approach we pick. See section on [open design items](#open-items-and-ongoing-work>)
153
153
154
-
##Integration Details
154
+
##Integration Details
155
155
This section briefly describes some of the existing/upcoming management and network function implementations. And then describes how Netplugin interface helps achieve intermixing these implementations.
156
156
157
-
###With Management Function
157
+
###With Management Function
158
158
[<b>REVISIT</b>: add more details]
159
159
- Discuss docker's proposed API
160
160
- Discuss rocket's proposed API
161
161
162
-
###With Network Function
162
+
###With Network Function
163
163
[<b>REVISIT</b>: add more details]
164
164
- Discuss networking with ovs and vlan/vxlan
165
165
- Discuss networking with Linux bridge
166
166
167
-
###Intermixing Management and Network Functions
167
+
###Intermixing Management and Network Functions
168
168
One of the goals of Netplugin is to allow intermixing different implementations of the management and network function without rewriting the two. Netplugin achieves this by offering the provisions for the following in it's core:
169
169
- <b>Driver State</b>: The Driver State defines a contract of the configuration that the underlying network function is able to consume and act on. This enables the Network function to independently identify and define the parameters required for exercising the features and capabilities it offers.
170
170
- <b>State translation function</b>: The State translation function defines the necessary transformations that are required to arrive at the Driver State from another state, let's call it Management State. The Management State can in turn be specified or arrived at in one of following ways:
@@ -175,12 +175,12 @@ Irrespective of how the Management State is achieved, the state translation func
175
175
176
176
As can be seen, to allow for easy intermixing of the management and network functions we just need to implement a state translation function for each such combination (of management and network function).
177
177
178
-
##Sample Implementation
178
+
##Sample Implementation
179
179
[<b>REVISIT</b>: add more details]
180
180
- discuss netd and netdcli implementation that hooks onto etcd and docker events to simulate a management function; and uses ovs-driver underneath to interface with ovs based network function.
181
181
- might be good to have more implementations to discuss and demo intermixing implementations
182
182
183
-
##Open Items and Ongoing Work
183
+
##Open Items and Ongoing Work
184
184
The current code needs some refactoring to align to above design. Following is the list of open items:
0 commit comments