Project

General

Profile

ControlCommand » History » Version 7

Alex Afanasyev, 01/30/2014 04:48 PM

1 1 Junxiao Shi
# NFD Control Command specification
2
3
NFD management module exposes a command interface as Interest-Data exchange.
4
Commands provided over this interface are useful for querying or changing the state of NFD forwarder.
5
6
7
## Request format
8
9 4 Alex Afanasyev
A request to the command interface is an Interest under ``ndn:/localhost/nfd/<management-module>/...`` prefix.
10 1 Junxiao Shi
11
A request Interest has at least four Name components.
12
The first four components are:
13
14 2 Junxiao Shi
1. "localhost" in UTF-8
15 1 Junxiao Shi
2. "nfd" in UTF-8
16 4 Alex Afanasyev
3. *management-module* in UTF-8, management module to which the command needs to be dispatched
17
4. *...*, the arguments to the command, defined for each management module in separate specifications:
18
   
19
    - [[FibMgmt|FIB Management specification]]
20 7 Alex Afanasyev
    - [[FaceMgmt|Face Management specification]]
21 1 Junxiao Shi
22
### Signed request and Unsigned request
23
24
Most commands require a signature to be included in the Name.
25
The signature format is defined in [[Signed Interests]] spec.
26
A signed request Interest has seven Name components.
27
28
Certain commands that do not change the forwarder state do not require a signature.
29
An unsigned request Interest has four Name components.
30
31
Each individual command specification defines whether a request Interest using that command verb should be signed or not.
32
33
### Options
34
35
The *option* component contains arguments to the command as a TLV.
36
37
This component is required even if the command verb does not need any arguments.
38
In that case, this component would have zero length.
39
40
Each individual command specification defines the format of the options TLV.
41
The TLV-TYPE numbers used in this TLV should be allocated from application range, and are not required to be unique across different command verbs.
42
43
44
## Response format
45
46
A response from the command interface is a Data that matches the request Interest.
47 2 Junxiao Shi
The payload in this Data should be a ControlCommandResponse element.
48 1 Junxiao Shi
49 2 Junxiao Shi
    ControlResponse ::= CONTROL-RESPONSE-TYPE TLV-LENGTH
50
                          StatusCode
51
                          StatusText
52 6 Alex Afanasyev
                          <StatusBody>?
53 1 Junxiao Shi
    
54 2 Junxiao Shi
    StatusCode      ::= STATUS-CODE-TYPE TLV-LENGTH
55
                          nonNegativeInteger
56 1 Junxiao Shi
    
57 2 Junxiao Shi
    StatusText      ::= STATUS-TEXT TLV-LENGTH
58 1 Junxiao Shi
                          string in UTF-8
59 6 Alex Afanasyev
    
60
    <StatusBody>    ::= <TLV block defined by the specific control protocol>
61 1 Junxiao Shi
62
**StatusCode** generally follows HTTP convention. Common codes include:
63
64
StatusCode | Description
65
-----------|------------------------
66 2 Junxiao Shi
200        | OK
67 1 Junxiao Shi
400        | Arguments are incorrect
68
401        | Signed request is required for command, but unsigned request is passed
69
403        | Signing key is not authorized for this command
70
404        | Command verb is not supported
71
72 2 Junxiao Shi
Additional elements are allowed at the end of **ControlResponse**.
73 1 Junxiao Shi
Each individual command specification defines whether and what can present.
74
75
76
## TLV-TYPE assignments
77
78 5 Alex Afanasyev
(Types are assigned from the range reserved for forwarding daemon.)
79
80 1 Junxiao Shi
Type                                        | Assigned value    | Assigned value (hex)
81
------------------------------------------- | ----------------- | --------------------
82 5 Alex Afanasyev
ControlResponse                             | 101               | 0x65
83
StatusCode                                  | 102               | 0x66
84
StatusText                                  | 103               | 0x67