Project

General

Profile

Repo Command » History » Version 6

Muktadir Chowdhury, 08/05/2017 05:25 PM

1 1 Alex Afanasyev
Repo Command
2
============
3
4
For insertion, deletion and other operations of repo, these commands are encoded in the form of [[ndn-cxx:SignedInterest|Signed Interests]]:
5
6
    /<repo-prefix>/<command-verb>/................./.........................................
7
                                  \______  _______/ \__________________  ___________________/
8
                                         \/                            \/
9
                                 RepoCommandParameter   Signed Interest additional components
10
11
The semantics of repo command interest is as follows:
12
13
The name semantics is defined to have following components:
14
15
* ``<repo prefix>`` refers to specific prefix repo is listening
16
* ``<command verb>`` refers to the name of command
17
* ``<RepoCommandParameter>`` refers to parameters of repo command
18
19
The following components are components of singed interest for access control:
20
21
* ``<timestamp>``
22
* ``<random-value>``
23
* ``<SignatureInfo>``
24
* ``<SignatureValue>``
25
26
For prefix of repo /ucla/cs/repo/, the command will be defined as this:
27
28
    /ucla/cs/repo/<command verb>/<RepoCommandParameter>/<timestamp>/<random-value>/<SignatureInfo>/<SignatureValue>
29
30
### RepoCommandParameter
31
32
    RepoCommandParameter ::= REPOCOMMANDPARAMETER-TYPE TLV-LENGTH
33
                               Name?
34
                               Selectors?
35
                               StartBlockId?
36
                               EndBlockId?
37
                               ProcessId?
38 5 Weiqi Shi
                               MaxInterestNum?
39
                               WatchTimeout?
40
                               WatchStatus?
41
                               InterestLifetime?
42 1 Alex Afanasyev
43 4 Weiqi Shi
44
45 1 Alex Afanasyev
    Name                  ::= NAME-TYPE TLV-LENGTH NameComponent*
46
    NameComponent         ::= NAME-COMPONENT-TYPE TLV-LENGTH BYTE+
47
48
    Selectors             ::= SELECTORS-TYPE TLV-LENGTH
49
                               MinSuffixComponents?
50
                               MaxSuffixComponents?
51
                               PublisherPublicKeyLocator?
52
                               Exclude?
53
                               ChildSelector?
54
55
    MinSuffixComponents   ::= MIN-SUFFIX-COMPONENTS-TYPE TLV-LENGTH
56
                               nonNegativeInteger
57
58
    MaxSuffixComponents   ::= MAX-SUFFIX-COMPONENTS-TYPE TLV-LENGTH
59
                               nonNegativeInteger
60
61
    PublisherPublicKeyLocator ::= KeyLocator
62
63
    Exclude               ::= EXCLUDE-TYPE TLV-LENGTH Any? (NameComponent (Any)?)+
64
    Any                   ::= ANY-TYPE TLV-LENGTH(=0)
65
66
    ChildSelector         ::= CHILD-SELECTOR-TYPE TLV-LENGTH
67
                               nonNegativeInteger
68
    
69
    StartBlockId          ::= STARTBLOCKID-TYPE TLV-LENGTH
70
                               nonNegativeInteger
71
    
72
    EndBlockId            ::= ENDBLOCKID-TYPE TLV-LENGTH
73
                               nonNegativeInteger
74
75 3 Weiqi Shi
    ProcessId             ::= PROCESSID-TYPE TLV-LENGTH
76
                               nonNegativeInteger
77
78
    MaxInterestNum        ::= MAX-INTEREST-NUM-TYPE TLV-LENGTH
79
                               nonNegativeInteger
80
81
    WatchTimeout          ::= WATCH-TIMEOUT-TYPE TLV-LENGTH
82
                               nonNegativeInteger
83
84
    WatchStatus           ::= WATCH-STATUS-TYPE TLV-LENGTH
85
                               nonNegativeInteger
86 1 Alex Afanasyev
87 4 Weiqi Shi
    InterestLifetime      ::= INTEREST-LIFETIME-TYPE TLV-LENGTH
88 1 Alex Afanasyev
                               nonNegativeInteger
89
90
#### Repo Command Selectors
91
92
Repo command supports parts of interest selectors of interest to indicate which contents to process. The definition of standard NDN selectors is described in [NDN Selectors Doc](http://named-data.net/doc/ndn-tlv/interest.html#selectors). The concrete definitions of both standard NDN selectors and repo command selectors are the same.
93
94
The difference between standard NDN interest and Repo Deletion Command interest that, the standard NDN selectors just matches **one** data packet that conforms to the selector conditions, but repo command selectors would matches **any** data packets. For example, if Interest is expressed for /ndn/edu and Exclude specifies one name component ucla, in standard NDN interest, the data producers will first exclude all the data packets with prefix /ndn/edu but not /ndn/edu/ucla, and then just selects one data packet. In repo deletion command interest, it will select all the data packets with prefix /ndn/edu but not /ndn/edu/ucla. However, in repo insert command, the repo will fetch one data just like standard interest selectors.
95
96
Repo command supports parts of standard NDN interests including MinSuffixComponents, MaxSuffixComponents, PublisherPublicKeyLocator, and Exclude. ChildSelector is supported in insertion command but not deletion command. If command contains other selectors, repo will ignore these not supported selectors. In addition, selectors are just supported in delete command. If other commands contains selectors, repo will ignore selectors when processing these commands.
97
98
The form of selectors is as follows:
99
100
    Selectors             ::= SELECTORS-TYPE TLV-LENGTH
101
                               MinSuffixComponents?
102
                               MaxSuffixComponents?
103
                               PublisherPublicKeyLocator?
104
                               Exclude?
105
                               ChildSelector?
106
    
107
    MinSuffixComponents   ::= MIN-SUFFIX-COMPONENTS-TYPE TLV-LENGTH
108
                               nonNegativeInteger
109
110
    MaxSuffixComponents   ::= MAX-SUFFIX-COMPONENTS-TYPE TLV-LENGTH
111
                               nonNegativeInteger
112
113
    PublisherPublicKeyLocator ::= KeyLocator
114
    
115
    Exclude               ::= EXCLUDE-TYPE TLV-LENGTH Any? (NameComponent (Any)?)+
116
    Any                   ::= ANY-TYPE TLV-LENGTH(=0)
117
118
    ChildSelector         ::= CHILD-SELECTOR-TYPE TLV-LENGTH
119
                               nonNegativeInteger
120
121
#### StartBlockId, EndBlockId
122
123
StartBlockId and EndBlockId are used to process segmented data. StartBlockId indicate the first segment number and EndBlockId indicate the last segment number. Repo will process segment data whose segment id between StartBlockId and EndBlockId. If StartBlockId is missing, the first segment id the repo process is 0; If EndBlockId is missing, this scenario is described in specific process in Repo Insertion Command section and Repo Deletion Command section.
124
125
#### Conflict of Selectors and StartBlockId, EndBlockId
126
127
Repo cannot process command with both selectors and StartBlockId, EndBlockId in RepoCommandParameter. If the RepoCommandParameter carries both, repo will ignore this command interest and return with error code of 405.
128
129
#### ProcessId
130
131 4 Weiqi Shi
ProcessId is used by insertion and deletion check command to indicate specific insertion and deletion process. The ProcessId is fetched by repo command response of insertion and deletion command.
132
133
#### InterestLifetime
134 1 Alex Afanasyev
135 5 Weiqi Shi
InterestLifetime is the maximum latency between interest sent and data received. If no data received after the InterestLifetime, the interest will time out. InterestLifetime is optional and a default value will be set if it is not specified.
136 4 Weiqi Shi
137
#### MaxInterestNum
138
139
MaxInterestNum is used by watched prefix insertion protocol to set the upper limit of the total number of interests to be sent.
140
141
#### WatchTimeout
142
143
WatchTimeout is used by watched prefix insertion protocol to set the time duration of the whole watching process.
144
145
#### WatchStatus
146
147
WatchStatus is used by watched prefix insertion protocol to indicate the status of watching process. If the WatchStatus is true, then the watching prefix is running, otherwise, it is not.
148 1 Alex Afanasyev
149
## Repo Command Response
150
151
Repo command response is the response data packet of repo command interest. The response contains statuscode to indicate the status of command process and other information. A TLV-encoded block called ``RepoCommandResponse`` is encoded in content of the data packet.
152
153
    RepoCommandResponse   ::= INSERTSTATUS-TYPE TLV-LENGTH
154
                               ProcessId?
155
                               StatusCode
156
                               StartBlockId?
157
                               EndBlockId?
158
                               InsertNum?
159
                               DeleteNum?
160
161
    ProcessId            ::= PROCESSID-TYPE TLV-LENGTH
162
                                nonNegativeInteger 
163
    
164
    StatusCode            ::= STATUSCODE-TYPE TLV-LENGTH
165
                                nonNegativeInteger    
166
167
    StartBlockId          ::= STARTBLOCKID-TYPE TLV-LENGTH
168
                                nonNegativeInteger
169
    
170
    EndBlockId            ::= ENDBLOCKID-TYPE TLV-LENGTH
171
                                nonNegativeInteger
172
173
    InsertNum             ::= INSERTNUM-TYPE TLV-LENGTH
174
                                nonNegativeInteger
175
176
    DeleteNum             ::= DELETENUM-TYPE TLV-LENGTH
177
                                nonNegativeInteger
178
179
### Name
180
Name indicates the Name in repocommandparameter of repo command
181
182
183
### ProcessId
184
ProcessId is a random number generated by repo to indicate the number of the command process. Client could use this ProcessId to check the status of specific command.
185
186
### StatusCode
187
188
StatusCode indicates the status of repo command process. The statuscodes of insert and deletion command are described in following insertion and deletion specification.
189
190
### StartBlockId, EndBlockId
191
192
StartBlockId and EndBlockId are the same as those of RepoCommandParameter. If either of those in RepoCommandParameter is missing, repo will set them as the Id known for now. For example, if StartBlockId is missing in RepoCommandParameter, StartBlockId in response will be set 0. If EndBlockId is missing in RepoCommandParameter, EndBlockId will be set null untill Repo get FinalBlockId in data packet. If FinalBlockId in returned data packet is less than EndBlockId, the EndBlockId will be set FinalBlockId.
193
194
### InsertNum, DeleteNum
195 6 Muktadir Chowdhury
InsertNum is used in reponse of insertion status check to indicate how many data packets have been successfully inserted into the repo. DeleteNum is used in response of deletion command and deletion check command. DeleteNum indicates how many data packets have been successfully deleted from repo.
196 1 Alex Afanasyev
197
## Repo TLV Type Encoding Number
198
199
Type                  | Number
200
----------------------| -------
201
RepoCommandParameter  | 201
202
StartBlockId          | 204
203
EndBlockId            | 205
204
ProcessId             | 206
205
RepoCommandResponse   | 207
206
StatusCode            | 208
207
InsertNum             | 209
208
DeleteNum             | 210
209 5 Weiqi Shi
MaxInterestNum        | 211
210
WatchTimeout          | 212
211
WatchStatus           | 213
212
InterestLifetime      | 214
213 1 Alex Afanasyev
214
## Repo Trust Model
215
216
The trust model of repo depends on people who deploy the repo service, such as PKI. Repo can specify their own verification policies, and data consumers can specify their own trust anchors. The NDN [FAQ](http://named-data.net/project/faq/#How_does_NDN8217s_8220trust_management8221_work) shows how NDN trust managment works.