Skip to content

Commit 1f497f3

Browse files
authored
Fix markdown format in design.md
1 parent 9740990 commit 1f497f3

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

docs/Design.md

+24-24
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#Netplugin Design
1+
# Netplugin Design
22
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.
33

4-
##Table of Contents
4+
## Table of Contents
55
- [Audience](#audience)
66
- [Concepts and Definitions](#concepts-and-definitions)
77
- [Design Goals](#design-goals)
@@ -11,13 +11,13 @@ Netplugin is an infrastructure piece that defines a consistent interface between
1111
- [Sample Implementation](#sample-implementation)
1212
- [Open Items and Ongoing Work](#open-items-and-ongoing-work)
1313

14-
##Audience
14+
## Audience
1515
This document is targeted towards the developers looking into or working on integrating existing or new management functions with existing or new network functions.
1616

17-
##Concepts and Definitions
17+
## Concepts and Definitions
1818
This section provides a brief overview of some terms used in rest of the document.
1919

20-
###Management function
20+
### Management function
2121
[Wikipedia definition](http://en.wikipedia.org/wiki/Management):
2222
>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.
2323
@@ -27,10 +27,10 @@ In application delivery environments there is usually at least one agent per man
2727

2828
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.
2929

30-
###Network function
30+
### Network function
3131
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.
3232

33-
###Configuration v/s Intent
33+
### Configuration v/s Intent
3434
The Configuration is a piece of information that is consumed by and depicts the desired state of a function.
3535

3636
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
3939

4040
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.
4141

42-
###Logically centralized decision
42+
### Logically centralized decision
4343
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.
4444

45-
##Design Goals
45+
## Design Goals
4646
Integrating a management function with a network function usually requires a coupling of the two, thereby resulting in following challenges:
4747
- 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.
4848
- 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
5151
To address the above challenges, we propose the Netplugin project. Netplugin has following broad design goal:
5252
"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".
5353

54-
##Core Constructs
54+
## Core Constructs
5555
The Netplugin core builds on the following three fundamental constructs:
5656

57-
###Endpoint
57+
### Endpoint
5858
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.
5959

6060
Notes:
6161
- 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.
6262
- 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.
6363
- 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]
6464

65-
###Network
65+
### Network
6666
A network identifies an arbitrary group of endpoints that are able to communicate with each other.
6767

6868
Notes:
6969
- 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.
7070

71-
###State
71+
### State
7272
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.
7373

7474
Notes:
7575
- 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.
7676
- Similarly the structure of the information associated with the State is left to the implementation and is not interpretted by the core.
7777

78-
##High Level Design
78+
## High Level Design
7979
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.
8080

8181
- Compute management with library based networking interface
@@ -124,21 +124,21 @@ ____________V___________________________
124124
|----------------------------------------
125125
```
126126

127-
###Interfaces
127+
### Interfaces
128128
Netplugin defines two broad interfaces viz. Plugin and Driver. These interfaces logically define the boundaries at which the management and network functions integrate.
129129

130-
####Plugin
130+
#### Plugin
131131
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).
132132

133133
Notes:
134134
- The generic Plugin interface implementation has following scope and assumptions:
135135
+ 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.
136136
- <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]
137137

138-
####Driver
138+
#### Driver
139139
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).
140140

141-
###Constraints
141+
### Constraints
142142
[<b>REVISIT</b>:]
143143
As discussed above the Plugin interface implementation invokes the Driver interface while maintaining some constraints. The following constraints are ensured:
144144

@@ -151,20 +151,20 @@ Notes:
151151
- 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.
152152
- 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>)
153153

154-
##Integration Details
154+
## Integration Details
155155
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.
156156

157-
###With Management Function
157+
### With Management Function
158158
[<b>REVISIT</b>: add more details]
159159
- Discuss docker's proposed API
160160
- Discuss rocket's proposed API
161161

162-
###With Network Function
162+
### With Network Function
163163
[<b>REVISIT</b>: add more details]
164164
- Discuss networking with ovs and vlan/vxlan
165165
- Discuss networking with Linux bridge
166166

167-
###Intermixing Management and Network Functions
167+
### Intermixing Management and Network Functions
168168
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:
169169
- <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.
170170
- <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
175175

176176
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).
177177

178-
##Sample Implementation
178+
## Sample Implementation
179179
[<b>REVISIT</b>: add more details]
180180
- 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.
181181
- might be good to have more implementations to discuss and demo intermixing implementations
182182

183-
##Open Items and Ongoing Work
183+
## Open Items and Ongoing Work
184184
The current code needs some refactoring to align to above design. Following is the list of open items:
185185
- [ ] Allocators (right now gstate):
186186
+ Design option 1

0 commit comments

Comments
 (0)