Repo Protocol Specification » History » Version 17
Shuo Chen, 02/19/2014 02:00 PM
1 | 1 | Shuo Chen | Repo Protocol Specification |
---|---|---|---|
2 | =========================== |
||
3 | |||
4 | 2 | Shuo Chen | Repo is persistent storage of data objects model in NDN. The NDN repo protocol is a specification of repo operations including reading, insertion and deletion of data objects in repo. |
5 | |||
6 | Repo semantics is based on [Command Interests](http://redmine.named-data.net/projects/nfd/wiki/Command_Interests) with signed commponents an the end of the name and basic common semantics of NDN. |
||
7 | |||
8 | 11 | Shuo Chen | When some operation of repo including insertion and deletion of data objects is requested, a command interest is sent. The command interest is the interest as command of insertion and deletion and signed as form of command interest for access control. The repo will response the command with the data object. |
9 | 4 | Shuo Chen | |
10 | The repo protocol can be categorized in three sections of reading, insertion and deletion of data objects. |
||
11 | |||
12 | ## Repo Reading Specification |
||
13 | |||
14 | 11 | Shuo Chen | The repo could be viewed as the data container of the data objects. It will register some specific prefixes of data objects it holds into NFD (NDN Forwarding Deamon) and the repo will respond the data with such prefixes. |
15 | 6 | Shuo Chen | |
16 | 11 | Shuo Chen | A standard interest is used to fetch content from the repo. The repo will respond when the name of the interest matches the prefix it registered in NFD. If the content in repo matches the interests, it will respond with the data object. When the interest is not matched, it will not respond. |
17 | 6 | Shuo Chen | |
18 | The protocol is listed as bellow |
||
19 | |||
20 | If there is a matching data object: |
||
21 | |||
22 | 7 | Shuo Chen | Requester Repo |
23 | | | |
||
24 | | | |
||
25 | | Interest | |
||
26 | t1 |-------------------------->| |
||
27 | | | |
||
28 | | Data Object | |
||
29 | t2 |<==========================| |
||
30 | 1 | Shuo Chen | | | |
31 | 7 | Shuo Chen | | | |
32 | 1 | Shuo Chen | | | |
33 | 7 | Shuo Chen | |
34 | If there is no matching data object: |
||
35 | 6 | Shuo Chen | |
36 | Requester Repo |
||
37 | | | |
||
38 | 1 | Shuo Chen | | | |
39 | 7 | Shuo Chen | | Interest | |
40 | t1 |-------------------------->| |
||
41 | | | |
||
42 | | | |
||
43 | | | |
||
44 | |||
45 | 8 | Shuo Chen | ## Repo Insertion Specification |
46 | |||
47 | 11 | Shuo Chen | Insertion specification is for some client and application to insert data objects into certain NDN repo. A command interest as insertion command will be sent to the repo. This command interest is a signed interest and will be validated with access control policy defined by the repo. When the interested is validated and name of the data is not existed in the repo. The repository will reponse with a data object containing OK status and start to send the interest to fetch the data to insert. |
48 | 8 | Shuo Chen | |
49 | 14 | Shuo Chen | Segmented data insertation is also supported in the insertation protocol. Segmantation info is defined as a TLV-encoded SegmantationInfo block. If the content is segmented, the final segment id will be encoded in this block. |
50 | |||
51 | 8 | Shuo Chen | ### Insertion command interest semantics |
52 | 1 | Shuo Chen | |
53 | The name semantics is defined to have following components: |
||
54 | |||
55 | 17 | Shuo Chen | * ``<name of repo>`` refers to specific name of repo |
56 | 11 | Shuo Chen | * ``insert`` refers to insert data objects |
57 | 1 | Shuo Chen | * ``<data name>`` refers to specific name of data that will be inserted |
58 | |||
59 | 8 | Shuo Chen | The folloing components are components of singed interest for access control: |
60 | |||
61 | * ``<timestamp>`` |
||
62 | * ``<random-value>`` |
||
63 | * ``<SignatureInfo>`` |
||
64 | * ``<SignatureValue>`` |
||
65 | |||
66 | 17 | Shuo Chen | <name of repo> and <data name> can be divided by serveral continious ``/`` according to specific defination. |
67 | For example, for ``<name of repo>`` as ``/ucla/cs/repo`` and ``<data name>`` as ``/vedio/Forrest Gump``, the data object is defined as following: |
||
68 | 8 | Shuo Chen | |
69 | 11 | Shuo Chen | /ucla/cs/repo/insert/vedio/Forrest Gump/<timestamp>/<random-value>/<SignatureInfo>/<SignatureValue> |
70 | 14 | Shuo Chen | |
71 | ### SegmantationInfo |
||
72 | |||
73 | SegmantationInfo ::= SEGMENTATIONINFO-TYPE TLV-LENGTH |
||
74 | StartBlockId? |
||
75 | FinalBlockId? |
||
76 | |||
77 | StartBlockId ::= STARTBLOCKID-TYPE TLV-LENGTH |
||
78 | nonNegativeInteger |
||
79 | 1 | Shuo Chen | |
80 | EndBlockId ::= FINALBLOCKID-TYPE TLV-LENGTH |
||
81 | nonNegativeInteger |
||
82 | |||
83 | 17 | Shuo Chen | ### Insertion status check |
84 | 1 | Shuo Chen | |
85 | 17 | Shuo Chen | During the insertation progress, the requester could send insertation status check command to check the status of the insertation progress. This status check command is also signed interest. The semantics of insertation status check command is shown as follows: |
86 | |||
87 | The name semantics is defined to have following components: |
||
88 | |||
89 | * ``<name of repo>`` refers to specific name of repo |
||
90 | * ``insert check`` refers to insert data objects |
||
91 | * ``<data name>`` refers to specific name of data that will be inserted |
||
92 | |||
93 | The folloing components are components of singed interest for access control: |
||
94 | |||
95 | * ``<timestamp>`` |
||
96 | * ``<random-value>`` |
||
97 | * ``<SignatureInfo>`` |
||
98 | * ``<SignatureValue>`` |
||
99 | |||
100 | The insertion status is enocoded as a TLV echoded block in content block in data packet. The TLV block format is as follows: |
||
101 | |||
102 | InsertStatus ::= INSERTSTATUS-TYPE TLV-LENGTH |
||
103 | StatusCode? |
||
104 | StartBlockId? |
||
105 | FinalBlockId? |
||
106 | InsertNum? |
||
107 | |||
108 | StatusCode ::= STATUSCODE-TYPE TLV-LENGTH |
||
109 | nonNegativeInteger |
||
110 | |||
111 | StartBlockId ::= STARTBLOCKID-TYPE TLV-LENGTH |
||
112 | nonNegativeInteger |
||
113 | |||
114 | EndBlockId ::= FINALBLOCKID-TYPE TLV-LENGTH |
||
115 | nonNegativeInteger |
||
116 | |||
117 | InsertNum ::= INSERTNUM-TYPE TLV-LENGTH |
||
118 | nonNegativeInteger |
||
119 | |||
120 | StatusCode indicates the status of insertation. InsertNum represents how many data has been intersted into the repo. |
||
121 | |||
122 | StatusCode Definition: |
||
123 | |||
124 | ``StatusCode`` | Description |
||
125 | -------------- | -------------------------------------- |
||
126 | ``200`` | All the data has been inserted |
||
127 | ``300`` | This insertion is in progress |
||
128 | ``401`` | This insertion check is invalidated |
||
129 | ``404`` | No such this insertion is in progress |
||
130 | |||
131 | ### Protocol process |
||
132 | |||
133 | 1 | Shuo Chen | 1. start to authorize the command; if authorization does not fail immediately, go to step 3 |
134 | 14 | Shuo Chen | |
135 | 1 | Shuo Chen | 2. send a negative response indicating authorization failure, and abort these steps |
136 | 14 | Shuo Chen | |
137 | 1 | Shuo Chen | 3. if both StartBlockId and EndBlockId are missing, go to step 6 |
138 | 14 | Shuo Chen | |
139 | 1 | Shuo Chen | 4. if both StartBlockId and EndBlockId are present, and StartBlockId is less than or equal to EndBlockId, go to step 6 |
140 | 14 | Shuo Chen | |
141 | 5. send a negative response indicating malformed command, and abort these steps |
||
142 | |||
143 | 6. wait for authorization completion |
||
144 | |||
145 | 7. if authorization fails, go to step 2 |
||
146 | |||
147 | 8. send a positive response indicating insert is in progress |
||
148 | |||
149 | 9. if both StartBlockId and EndBlockId are present, go to step 15 |
||
150 | |||
151 | 10. start to retrieve Name |
||
152 | |||
153 | 11. wait for retrieval completion |
||
154 | |||
155 | 12. if retrieval fails, abort these steps |
||
156 | |||
157 | 13. store retrieved Data packet |
||
158 | |||
159 | 14. abort these steps |
||
160 | |||
161 | 15. append StartBlockId to Name |
||
162 | |||
163 | 16. start to retrieve Name |
||
164 | |||
165 | 17. wait for retrieval completion |
||
166 | |||
167 | 18. if retrieval fails, abort these steps |
||
168 | 15 | Shuo Chen | |
169 | 14 | Shuo Chen | 19. store retrieved Data packet |
170 | 15 | Shuo Chen | |
171 | 14 | Shuo Chen | 20. if retrieved Data packet contains FinalBlockId, and FinalBlockId is less than EndBlockId, let EndBlockId be FinalBlockId |
172 | 15 | Shuo Chen | |
173 | 14 | Shuo Chen | 21. if the last component of Name is greater than or equal to EndBlockId, abort these steps |
174 | 15 | Shuo Chen | |
175 | 14 | Shuo Chen | 22. increment the last component of Name |
176 | 15 | Shuo Chen | |
177 | 1 | Shuo Chen | 23. go to step 16 |
178 | |||
179 | 16 | Shuo Chen | Implementation MAY pipeline the Interests. |
180 | |||
181 | Implementation MAY publish a notification of status regarding insert progress. |
||
182 | |||
183 | 17 | Shuo Chen | ### Protocol diagram: |
184 | 10 | Alex Afanasyev | |
185 | Requester Repo Data producer |
||
186 | | | | |
||
187 | | | | |
||
188 | +---+ Insert command +---+ | |
||
189 | | | --------------------> | | | |
||
190 | +---+ | | | |
||
191 | | | | | |
||
192 | +---+ Confirm start | | | |
||
193 | | | <==================== | | | |
||
194 | +---+ Reject command +---+ | |
||
195 | | (with status code) | | |
||
196 | | +---+ Interest for Data +---+ |
||
197 | | | | --------------------------> | | |
||
198 | | +---+ | | |
||
199 | | | | | |
||
200 | | +---+ Data segment | | |
||
201 | | | | <========================== | | |
||
202 | | +---+ +---+ |
||
203 | | | | |
||
204 | | ~ ~ |
||
205 | | ~ ~ |
||
206 | | | | |
||
207 | | +---+ Interest for Data +---+ |
||
208 | | | | --------------------------> | | |
||
209 | | +---+ | | |
||
210 | | | | | |
||
211 | | +---+ Data segment | | |
||
212 | | | | <========================== | | |
||
213 | | +---+ +---+ |
||
214 | | | | |
||
215 | | | | |
||
216 | | ~ ~ |
||
217 | | ~ ~ |
||
218 | | | | |
||
219 | | | | |
||
220 | | | | |
||
221 | +---+ Status interest +---+ | |
||
222 | | | --------------------> | | | |
||
223 | +---+ | | | |
||
224 | 1 | Shuo Chen | | | | | |
225 | +---+ Status response | | | |
||
226 | | | <==================== | | | |
||
227 | +---+ +---+ | |
||
228 | | | | |
||
229 | | | | |
||
230 | 17 | Shuo Chen | |
231 | ## Repo Deletion Specification |
||
232 | |||
233 | Deletion of one content object or content objects under certain prefix are both supported in repo specification. Selectors are used to select multiple content objects. These selectors are different from conventional [selectors](http://named-data.net/doc/ndn-tlv/interest.html#selectors) of interest packet. The conventional selecors of interest would select one data packet of repo. Selecors of delete command will return any data packets which applies for these selectors. |
||
234 | |||
235 | ### Deletion Command Selectors |
||
236 | |||
237 | Selectors ::= SELECTORS-TYPE TLV-LENGTH |
||
238 | MinSuffixComponents? |
||
239 | MaxSuffixComponents? |
||
240 | PublisherPublicKeyLocator? |
||
241 | Exclude? |
||
242 | |||
243 | MinSuffixComponents ::= MIN-SUFFIX-COMPONENTS-TYPE TLV-LENGTH |
||
244 | nonNegativeInteger |
||
245 | |||
246 | MaxSuffixComponents ::= MAX-SUFFIX-COMPONENTS-TYPE TLV-LENGTH |
||
247 | nonNegativeInteger |
||
248 | |||
249 | PublisherPublicKeyLocator ::= KeyLocator |
||
250 | |||
251 | Exclude ::= EXCLUDE-TYPE TLV-LENGTH Any? (NameComponent (Any)?)+ |
||
252 | Any ::= ANY-TYPE TLV-LENGTH(=0) |
||
253 | |||
254 | The definitions of delete command selectors is the same as the selectors of conventional [selectors](http://named-data.net/doc/ndn-tlv/interest.html#selectors). The difference is that this delete command selectors will return any data packets that comforms to the selectors. If selectors are not presented, the repo will just delete the data of exact name. So, for example, if somebody wants to delete all the data under certain prefix, at least, MinSuffixComponents should be set to 0. |
||
255 | |||
256 | ### Protocol process |
||
257 | |||
258 | 1. start to authorize the command; if authorization does not fail immediately, go to step 3 |
||
259 | |||
260 | 2. send a negative response indicating authorization failure, and abort these steps |
||
261 | |||
262 | 3. check whether selectors are presented. If selectors are presented, go to step 4, or select the data packet of the exact name of command. If some data is selected, go to step 6. If no data selected, go to step 5 |
||
263 | |||
264 | 4. select all the data packets that comforms to data name of the command and the selectors. If some data packets are selected, go to step 6. Or no data selected, go to step 5. |
||
265 | |||
266 | 5. send a negative response and abort the delete transaction. |
||
267 | |||
268 | 6. wait for authorization completion |
||
269 | |||
270 | 7. if authorization fails, go to step 2 |
||
271 | |||
272 | 8. start to delete the selected data. If deletion success, return positive reponse, or return negative response. |