FaceMgmt » History » Version 102
  Davide Pesavento, 11/07/2018 08:02 PM 
  
| 1 | 20 | Junxiao Shi | # Face Management  | 
|---|---|---|---|
| 2 | 1 | Junxiao Shi | |
| 3 | 82 | Davide Pesavento | {{>toc}} | 
| 4 | 38 | Alex Afanasyev | |
| 5 | 20 | Junxiao Shi | **Face Management** is a module of [[Management|NFD Management protocol]].  | 
| 6 | It provides:  | 
||
| 7 | 1 | Junxiao Shi | |
| 8 | 100 | Davide Pesavento | * commands to create, modify, and destroy faces  | 
| 9 | * a dataset containing the description of all active faces and their counters  | 
||
| 10 | * a dataset containing the description of all active channels  | 
||
| 11 | * a notification stream for face events  | 
||
| 12 | 1 | Junxiao Shi | |
| 13 | 45 | Junxiao Shi | Face Management commands, datasets, and notifications are available under namespace `ndn:/localhost/nfd/faces`.  | 
| 14 | 12 | Alex Afanasyev | |
| 15 | |||
| 16 | 20 | Junxiao Shi | ## FaceUri  | 
| 17 | 1 | Junxiao Shi | |
| 18 | 27 | Junxiao Shi | A FaceUri represents the underlying protocol and address used by a Face.  | 
| 19 | Every Face has two FaceUris: one for local endpoint, and the other for remote endpoint.  | 
||
| 20 | 1 | Junxiao Shi | |
| 21 | 27 | Junxiao Shi | ### UDP  | 
| 22 | 9 | Junxiao Shi | |
| 23 | 30 | Junxiao Shi | `udp[4|6]://<IP-or-host>[:<port>]`  | 
| 24 | 2 | Alex Afanasyev | |
| 25 | 9 | Junxiao Shi | Examples:  | 
| 26 | 1 | Junxiao Shi | |
| 27 | 20 | Junxiao Shi | * `udp4://192.0.2.1:6363` (canonical form)  | 
| 28 | * `udp6://[2001:db8::1]:6363` (canonical form)  | 
||
| 29 | 71 | Alex Afanasyev | * `udp6://[fe80::1068:dddb:fe26:fe3f%en0]:6363` (canonical form for link-local IPv6 addresses)  | 
| 30 | * `udp6://[fe80::1068:dddb:fe26:fe3f%25en0]:6363` (equivalent, but not canonical, version of the above FaceUri)  | 
||
| 31 | 1 | Junxiao Shi | * `udp://192.0.2.1` (remote-port defaults to 6363)  | 
| 32 | * `udp://example.net:6363`  | 
||
| 33 | * `udp4://example.net:6363` (resolve hostname to IPv4 address only)  | 
||
| 34 | 9 | Junxiao Shi | * `udp6://example.net:6363` (resolve hostname to IPv6 address only)  | 
| 35 | 27 | Junxiao Shi | * `udp4://224.0.23.170:56363` (multicast, canonical form)  | 
| 36 | 1 | Junxiao Shi | |
| 37 | 61 | Davide Pesavento | LocalUri of a NIC-associated UDP face has the form:  | 
| 38 | |||
| 39 | `udp[4|6]+dev://<NIC>:<port>`  | 
||
| 40 | |||
| 41 | 1 | Junxiao Shi | This is only used in face dataset.  | 
| 42 | 61 | Davide Pesavento | |
| 43 | 51 | Junxiao Shi | Examples:  | 
| 44 | |||
| 45 | 60 | Junxiao Shi | * `udp4+dev://eth1:6363`  | 
| 46 | * `udp6+dev://en0:6363`  | 
||
| 47 | 51 | Junxiao Shi | |
| 48 | 1 | Junxiao Shi | ### TCP  | 
| 49 | |||
| 50 | 30 | Junxiao Shi | `tcp[4|6]://<IP-or-host>[:<port>]`  | 
| 51 | 1 | Junxiao Shi | |
| 52 | Examples:  | 
||
| 53 | |||
| 54 | 20 | Junxiao Shi | * `tcp4://192.0.2.1:6363` (canonical form)  | 
| 55 | * `tcp6://[2001:db8::1]:6363` (canonical form)  | 
||
| 56 | 71 | Alex Afanasyev | * `tcp6://[fe80::1068:dddb:fe26:fe3f%en0]:6363` (canonical form for link-local IPv6 addresses)  | 
| 57 | * `tcp6://[fe80::1068:dddb:fe26:fe3f%25en0]:6363` (equivalent, but not canonical, version of the above FaceUri)  | 
||
| 58 | 1 | Junxiao Shi | * `tcp://192.0.2.1` (remote-port defaults to 6363)  | 
| 59 | * `tcp://example.net:6363`  | 
||
| 60 | 9 | Junxiao Shi | * `tcp4://example.net:6363` (resolve hostname to IPv4 address only)  | 
| 61 | 1 | Junxiao Shi | * `tcp6://example.net:6363` (resolve hostname to IPv6 address only)  | 
| 62 | |||
| 63 | ### UNIX stream  | 
||
| 64 | |||
| 65 | 9 | Junxiao Shi | `unix://<path>`  | 
| 66 | 1 | Junxiao Shi | |
| 67 | Examples:  | 
||
| 68 | |||
| 69 | 61 | Davide Pesavento | * `unix:///var/run/nfd.sock` (note that there are three forward-slashes after 'unix:')  | 
| 70 | 1 | Junxiao Shi | |
| 71 | 84 | Davide Pesavento | ### File descriptor  | 
| 72 | 30 | Junxiao Shi | |
| 73 | `fd://<file-descriptor>`  | 
||
| 74 | |||
| 75 | Examples:  | 
||
| 76 | |||
| 77 | * `fd://6`  | 
||
| 78 | |||
| 79 | 1 | Junxiao Shi | ### Ethernet  | 
| 80 | 27 | Junxiao Shi | |
| 81 | 42 | Junxiao Shi | `ether://[<MAC>]`  | 
| 82 | 1 | Junxiao Shi | |
| 83 | Examples:  | 
||
| 84 | 42 | Junxiao Shi | |
| 85 | * `ether://[08:00:27:01:01:01]`  | 
||
| 86 | 1 | Junxiao Shi | * `ether://[33:33:01:01:01:01]` (multicast)  | 
| 87 | |||
| 88 | 84 | Davide Pesavento | ### Network device  | 
| 89 | 1 | Junxiao Shi | |
| 90 | 61 | Davide Pesavento | `dev://<interface-name>`  | 
| 91 | 30 | Junxiao Shi | |
| 92 | Examples:  | 
||
| 93 | |||
| 94 | 1 | Junxiao Shi | * `dev://eth0`  | 
| 95 | |||
| 96 | ### Underlying protocol and FaceUri scheme  | 
||
| 97 | |||
| 98 | 67 | Junxiao Shi | Underlying protocol | Remote FaceUri scheme | Local FaceUri scheme  | 
| 99 | ----------------------- | -------------------------------- | --------------------------  | 
||
| 100 | IPv4 UDP unicast | udp4 | udp4  | 
||
| 101 | IPv6 UDP unicast | udp6 | udp6  | 
||
| 102 | IPv4 UDP multicast | udp4 (multicast IP) | udp4 (local IP, same port)  | 
||
| 103 | IPv4 UDP NIC-associated | udp4 | udp4+dev  | 
||
| 104 | IPv6 UDP NIC-associated | udp6 | udp6+dev  | 
||
| 105 | IPv4 TCP | tcp4 | tcp4  | 
||
| 106 | IPv6 TCP | tcp6 | tcp6  | 
||
| 107 | UNIX stream | fd (file descriptor on NFD side) | unix (socket path)  | 
||
| 108 | Ethernet unicast | ether | dev  | 
||
| 109 | Ethernet multicast | ether | dev  | 
||
| 110 | WebSocket | wsclient | ws  | 
||
| 111 | 46 | Junxiao Shi | |
| 112 | ## Static Face Attributes  | 
||
| 113 | |||
| 114 | **FaceScope** indicates whether the face is local for [[ScopeControl|scope control]] purposes.  | 
||
| 115 | |||
| 116 | * non-local(=0)  | 
||
| 117 | * local(=1)  | 
||
| 118 | |||
| 119 | **FacePersistency** indicates whether the face is persistent.  | 
||
| 120 | |||
| 121 | * on-demand(=1), face closes if it remains idle for some time  | 
||
| 122 | * persistent(=0), face remains open until it's explicitly destroyed or there's a transport failure  | 
||
| 123 | * permanent(=2), face remains open until it's explicitly destroyed; transport failures will be recovered internally  | 
||
| 124 | |||
| 125 | **LinkType** indicates the type of communication link.  | 
||
| 126 | |||
| 127 | * point-to-point(=0), communication with one peer  | 
||
| 128 | * multi-access(=1), communication with a multicast group  | 
||
| 129 | 75 | Davide Pesavento | * ad-hoc(=2), communication over a wireless ad hoc network  | 
| 130 | 52 | Junxiao Shi | |
| 131 | **LocalFieldsEnabled** indicates whether the face allows [[NDNLPv2]] NextHopFaceId, CachePolicy, IncomingFaceId fields.  | 
||
| 132 | |||
| 133 | * yes(=1), allows these fields; this is valid only if FaceScope=local  | 
||
| 134 | * no(=0), disallows these fields  | 
||
| 135 | |||
| 136 | 74 | Eric Newberry | **LpReliabilityEnabled** indicates whether the face has the [[NDNLPv2]] reliability feature enabled.  | 
| 137 | 69 | Eric Newberry | |
| 138 | * yes(=1), enables this feature  | 
||
| 139 | * no(=0), disables this feature  | 
||
| 140 | 1 | Junxiao Shi | |
| 141 | 74 | Eric Newberry | **CongestionMarkingEnabled** indicates whether the face has congestion marking based upon send queue length enabled.  | 
| 142 | |||
| 143 | * yes(=1), enables this feature  | 
||
| 144 | * no(=0), disables this feature  | 
||
| 145 | |||
| 146 | **BaseCongestionMarkingInterval** indicates the base marking interval for congestion marking.  | 
||
| 147 | |||
| 148 | 102 | Davide Pesavento | * The value of this attribute is the base marking interval in nanoseconds, which is used to compute the interval at which congested packets will be marked.  | 
| 149 | 74 | Eric Newberry | |
| 150 | **DefaultCongestionThreshold** indicates the default congestion threshold if the face does not support retrieving the send queue capacity.  | 
||
| 151 | |||
| 152 | 102 | Davide Pesavento | * The value of this attribute is the default congestion threshold in bytes.  | 
| 153 | 74 | Eric Newberry | |
| 154 | 85 | Eric Newberry | **Mtu** contains a user-specified MTU to override the automatic MTU of the transport.  | 
| 155 | |||
| 156 | 102 | Davide Pesavento | * The value of this attribute is the MTU of the transport in bytes. A transport type may limit the acceptable range of this value or even ignore it altogether.  | 
| 157 | 85 | Eric Newberry | |
| 158 | 52 | Junxiao Shi | ### Flags and Mask  | 
| 159 | |||
| 160 | Some attributes are collected as inclusive OR into a **Flags** field in commands and datasets.  | 
||
| 161 | These attributes are: (bit 0 is the least significant bit)  | 
||
| 162 | |||
| 163 | * bit 0: LocalFieldsEnabled  | 
||
| 164 | 1 | Junxiao Shi | * bit 1: LpReliabilityEnabled  | 
| 165 | 74 | Eric Newberry | * bit 2: CongestionMarkingEnabled  | 
| 166 | 55 | Junxiao Shi | |
| 167 | 1 | Junxiao Shi | ## Control Commands  | 
| 168 | |||
| 169 | 20 | Junxiao Shi | [[ControlCommand]] **management-module**: `faces`  | 
| 170 | 41 | Junxiao Shi | |
| 171 | ### Create a face  | 
||
| 172 | 1 | Junxiao Shi | |
| 173 | **command-verb**: `create`  | 
||
| 174 | 46 | Junxiao Shi | |
| 175 | ControlParameters fields:  | 
||
| 176 | 1 | Junxiao Shi | |
| 177 | * **Uri** (required): canonical remote FaceUri of the face to create.  | 
||
| 178 | 72 | Davide Pesavento | * **LocalUri** (optional): canonical local FaceUri of the face to create; e.g., FaceUri of the local interface for an Ethernet unicast face.  | 
| 179 | 1 | Junxiao Shi | * **FacePersistency** (optional): either *persistent* or *permanent*; creating *on-demand* faces is not permitted. The default is *persistent*. See "static face attributes" for more information.  | 
| 180 | 74 | Eric Newberry | * **BaseCongestionMarkingInterval** (optional): see "static face attributes".  | 
| 181 | * **DefaultCongestionThreshold** (optional): see "static face attributes".  | 
||
| 182 | 85 | Eric Newberry | * **Mtu** (optional): see "static face attributes".  | 
| 183 | 72 | Davide Pesavento | * **Flags** (optional): see "static face attributes".  | 
| 184 | 83 | Davide Pesavento | * **Mask** (optional): MUST be specified if *Flags* is present, and omitted if *Flags* is omitted.  | 
| 185 | 1 | Junxiao Shi | |
| 186 | 65 | Davide Pesavento | This command allows the creation of UDP unicast, Ethernet unicast, and TCP faces only.  | 
| 187 | 50 | Junxiao Shi | If the command succeeds, the \<body> of the ControlResponse block contains the ControlParameters describing the current properties of the created face:  | 
| 188 | 1 | Junxiao Shi | |
| 189 | 64 | Alex Afanasyev | * **FaceId**  | 
| 190 | 1 | Junxiao Shi | * **Uri**  | 
| 191 | 64 | Alex Afanasyev | * **LocalUri**  | 
| 192 | 1 | Junxiao Shi | * **FacePersistency**  | 
| 193 | 78 | Eric Newberry | * **BaseCongestionMarkingInterval** (optional)  | 
| 194 | * **DefaultCongestionThreshold** (optional)  | 
||
| 195 | 85 | Eric Newberry | * **Mtu** (optional)  | 
| 196 | 90 | Eric Newberry | * **Flags**: contains effective values for the *LocalFieldsEnabled*, *LpReliabilityEnabled*, and *CongestionMarkingEnabled* bits.  | 
| 197 | 66 | Davide Pesavento | |
| 198 | 97 | Davide Pesavento | If this creation would conflict with an existing face (e.g., same underlying protocol and remote endpoint), the command fails with StatusCode 409, and the \<body> of the ControlResponse block contains the ControlParameters describing the existing face, with the same fields as above.  | 
| 199 | 52 | Junxiao Shi | |
| 200 | 1 | Junxiao Shi | If the request attempts to create a face other than UDP unicast, Ethernet unicast, or TCP, or if a static property specified in the request is not acceptable, the command fails with StatusCode 406.  | 
| 201 | 79 | Eric Newberry | |
| 202 | 1 | Junxiao Shi | If face creation fails due to a socket error (e.g. TCP connection timeout), the command fails with StatusCode 504.  | 
| 203 | |||
| 204 | 88 | Eric Newberry | If *BaseCongestionMarkingInterval* or *DefaultCongestionThreshold* are omitted from the ControlParameters sent with the creation command, the omitted static properties are left at their implementation-defined default values.  | 
| 205 | 1 | Junxiao Shi | |
| 206 | 95 | Eric Newberry | If *Mtu* is omitted from the ControlParameters sent with the creation command, the automatic MTU of the transport is used as the MTU of the face. A forwarder MAY impose an implementation-defined minimum to the MTU specified during face creation. The current minimum in NFD is 64 bytes. In the response, the *Mtu* field in ControlParameters contains the effective MTU of the face (in bytes), capped at a maximum of `MAX_NDN_PACKET_SIZE` (8800 bytes), even if the MTU of the underlying transport is infinite. If *Mtu* is omitted from the response, the face and/or forwarder does not support MTU reporting.  | 
| 207 | 85 | Eric Newberry | |
| 208 | 84 | Davide Pesavento | ### Update the static properties of a face  | 
| 209 | 1 | Junxiao Shi | |
| 210 | 52 | Junxiao Shi | **command-verb**: `update`  | 
| 211 | 1 | Junxiao Shi | |
| 212 | ControlParameters fields:  | 
||
| 213 | 64 | Alex Afanasyev | |
| 214 | * **FaceId** (optional)  | 
||
| 215 | 81 | Davide Pesavento | * **FacePersistency** (optional): one of *on-demand*, *persistent*, or *permanent*. See "static face attributes" for more information.  | 
| 216 | 1 | Junxiao Shi | * **BaseCongestionMarkingInterval** (optional): see "static face attributes".  | 
| 217 | * **DefaultCongestionThreshold** (optional): see "static face attributes".  | 
||
| 218 | 90 | Eric Newberry | * **Flags** (optional): allows *LocalFieldsEnabled*, *LpReliabilityEnabled*, and *CongestionMarkingEnabled* only. See "static face attributes" for more information.  | 
| 219 | 81 | Davide Pesavento | * **Mask** (optional): MUST be specified if *Flags* is present, and omitted if *Flags* is omitted.  | 
| 220 | 52 | Junxiao Shi | |
| 221 | 101 | Davide Pesavento | If *FaceId* is omitted or is set to zero, it is implied to be that of the requesting face (self-update).  | 
| 222 | If the face does not exist, the command fails with StatusCode 404.  | 
||
| 223 | 1 | Junxiao Shi | |
| 224 | 101 | Davide Pesavento | The static properties of the face are updated as indicated.  | 
| 225 | 81 | Davide Pesavento | If an optional property field is omitted or a bitfield is zero in *Mask*, that static property remains unchanged.  | 
| 226 | 1 | Junxiao Shi | If no static properties are changed, this command does nothing, but is still considered successful.  | 
| 227 | 55 | Junxiao Shi | |
| 228 | 1 | Junxiao Shi | If the command succeeds, \<body> in ControlResponse block contains ControlParameters describing the current properties of the face:  | 
| 229 | |||
| 230 | * **FaceId**  | 
||
| 231 | * **FacePersistency**  | 
||
| 232 | 78 | Eric Newberry | * **BaseCongestionMarkingInterval** (optional)  | 
| 233 | * **DefaultCongestionThreshold** (optional)  | 
||
| 234 | 81 | Davide Pesavento | * **Flags**: contains effective values for *LocalFieldsEnabled*, *LpReliabilityEnabled*, and *CongestionMarkingEnabled* bits.  | 
| 235 | 1 | Junxiao Shi | |
| 236 | If any of the requested changes is invalid, none of the changes should be performed, and this command fails with StatusCode 409.  | 
||
| 237 | 81 | Davide Pesavento | The \<body> in ControlResponse block contains ControlParameters that includes only invalid fields; if some of the bit fields chosen in *Flags*+*Mask* is invalid, the \<body> block should also contain a *Mask* field indicating which bits are invalid, and echo back the original *Flags* field.  | 
| 238 | If the request had been sent without those fields (or bitfields in *Mask*), it would have been successful.  | 
||
| 239 | 20 | Junxiao Shi | |
| 240 | 1 | Junxiao Shi | ### Destroy a face  | 
| 241 | 20 | Junxiao Shi | |
| 242 | 26 | Junxiao Shi | **command-verb:** `destroy`  | 
| 243 | 20 | Junxiao Shi | |
| 244 | 39 | Junxiao Shi | ControlParameters fields:  | 
| 245 | 1 | Junxiao Shi | |
| 246 | 64 | Alex Afanasyev | * **FaceId** (required)  | 
| 247 | 39 | Junxiao Shi | |
| 248 | 1 | Junxiao Shi | If the specified face does not exist, this command does nothing, but is still considered successful.  | 
| 249 | |||
| 250 | 40 | Junxiao Shi | ## Face Dataset  | 
| 251 | 1 | Junxiao Shi | |
| 252 | Description and counters of all active faces are published as a [[StatusDataset|Status Dataset]] at `ndn:/localhost/nfd/faces/list`.  | 
||
| 253 | 39 | Junxiao Shi | |
| 254 | Each face is represented by a **FaceStatus** block:  | 
||
| 255 | 1 | Junxiao Shi | |
| 256 | 39 | Junxiao Shi | FaceStatus ::= FACE-STATUS-TYPE TLV-LENGTH  | 
| 257 | FaceId  | 
||
| 258 | 99 | Davide Pesavento | Uri  | 
| 259 | 39 | Junxiao Shi | LocalUri  | 
| 260 | 1 | Junxiao Shi | ExpirationPeriod?  | 
| 261 | FaceScope  | 
||
| 262 | FacePersistency  | 
||
| 263 | LinkType  | 
||
| 264 | 78 | Eric Newberry | BaseCongestionMarkingInterval?  | 
| 265 | 1 | Junxiao Shi | DefaultCongestionThreshold?  | 
| 266 | 85 | Eric Newberry | Mtu?  | 
| 267 | 1 | Junxiao Shi | NInInterests  | 
| 268 | 67 | Junxiao Shi | NInData  | 
| 269 | 39 | Junxiao Shi | NInNacks  | 
| 270 | 67 | Junxiao Shi | NOutInterests  | 
| 271 | 49 | Junxiao Shi | NOutData  | 
| 272 | NOutNacks  | 
||
| 273 | 46 | Junxiao Shi | NInBytes  | 
| 274 | 1 | Junxiao Shi | NOutBytes  | 
| 275 | 96 | Alex Afanasyev | Flags  | 
| 276 | 46 | Junxiao Shi | |
| 277 | Uri ::= URI-TYPE TLV-LENGTH  | 
||
| 278 | 39 | Junxiao Shi | FaceUri in UTF-8 encoding  | 
| 279 | 46 | Junxiao Shi | |
| 280 | 1 | Junxiao Shi | LocalUri ::= LOCAL-URI-TYPE TLV-LENGTH  | 
| 281 | 46 | Junxiao Shi | FaceUri in UTF-8 encoding  | 
| 282 | 1 | Junxiao Shi | |
| 283 | ; other TLVs have nonNegativeInteger as value  | 
||
| 284 | |||
| 285 | 40 | Junxiao Shi | * **Uri** is a FaceUri representing remote endpoint.  | 
| 286 | 39 | Junxiao Shi | * **LocalUri** is a FaceUri representing local endpoint.  | 
| 287 | 40 | Junxiao Shi | * **ExpirationPeriod** is the remaining lifetime of this face.  | 
| 288 | 46 | Junxiao Shi | If this field is omitted, the face has infinite lifetime.  | 
| 289 | 40 | Junxiao Shi | Currently, this is applicable to on-demand datagram faces only.  | 
| 290 | 46 | Junxiao Shi | * **FaceScope** indicates whether the face is local for [[ScopeControl|scope control]] purposes.  | 
| 291 | 1 | Junxiao Shi | See "static face attributes" for more information.  | 
| 292 | 40 | Junxiao Shi | * **FacePersistency** indicates whether the face is persistent.  | 
| 293 | 1 | Junxiao Shi | See "static face attributes" for more information.  | 
| 294 | 52 | Junxiao Shi | * **LinkType** indicates the type of communication link  | 
| 295 | 1 | Junxiao Shi | See "static face attributes" for more information.  | 
| 296 | 77 | Eric Newberry | * **BaseCongestionMarkingInterval** indicates the base interval used to compute the interval at which congested packets will be marked (in nanoseconds).  | 
| 297 | 1 | Junxiao Shi | See "static face attributes" for more information.  | 
| 298 | 76 | Davide Pesavento | * **DefaultCongestionThreshold** indicates the default threshold for congestion if the face does not support retrieving the send queue capacity (in bytes).  | 
| 299 | 1 | Junxiao Shi | See "static face attributes" for more information.  | 
| 300 | 94 | Davide Pesavento | * **Mtu** contains the effective MTU of the face (in bytes), capped at `MAX_NDN_PACKET_SIZE` (8800 bytes), even if the MTU of the underlying transport is infinite. If this field is omitted, the forwarder and/or face does not support MTU reporting.  | 
| 301 | 85 | Eric Newberry | See "static face attributes" for more information.  | 
| 302 | 46 | Junxiao Shi | * **NInInterests**: number of incoming Interest packets since the face is established.  | 
| 303 | 67 | Junxiao Shi | * **NInData** counts the number of incoming Data packets since the face is established.  | 
| 304 | 46 | Junxiao Shi | * **NInNacks** counts the number of incoming Nack packets since the face is established.  | 
| 305 | 1 | Junxiao Shi | * **NOutInterests** counts the number of outgoing Interest packets since the face is established.  | 
| 306 | 67 | Junxiao Shi | * **NOutData** counts the number of outgoing Data packets since the face is established.  | 
| 307 | 37 | Junxiao Shi | * **NOutNacks** counts the number of outgoing Nack packets since the face is established.  | 
| 308 | * **NInBytes** counts the number of bytes of link layer packets received via this face.  | 
||
| 309 | This counter is initialized to zero when the face is established, and can wrap around after overflowing unsigned 64-bit integer range.  | 
||
| 310 | 1 | Junxiao Shi | * **NOutBytes** counts the number of bytes of link layer packets sent via this face.  | 
| 311 | This counter is initialized to zero when the face is established, and can wrap around after overflowing unsigned 64-bit integer range.  | 
||
| 312 | 98 | Davide Pesavento | * **Flags** contains these bitfields: *LocalFieldsEnabled*, *LpReliabilityEnabled*, *CongestionMarkingEnabled*.  | 
| 313 | See "static face attributes" for more information.  | 
||
| 314 | 37 | Junxiao Shi | |
| 315 | 84 | Davide Pesavento | ### Query operation  | 
| 316 | 1 | Junxiao Shi | |
| 317 | 37 | Junxiao Shi | The query operation allows one to retrieve a subset of face dataset that contains faces satisfying a filter.  | 
| 318 | |||
| 319 | To run a query, the consumer should express an Interest with Name: `ndn:/localhost/nfd/faces/query/<filter>`, where `<filter>` is a **FaceQueryFilter** block that specifies zero or more conditions.  | 
||
| 320 | |||
| 321 | FaceQueryFilter ::= FACE-QUERY-FILTER-TYPE TLV-LENGTH  | 
||
| 322 | 40 | Junxiao Shi | FaceId?  | 
| 323 | UriScheme?  | 
||
| 324 | Uri?  | 
||
| 325 | 37 | Junxiao Shi | LocalUri?  | 
| 326 | FaceScope?  | 
||
| 327 | 1 | Junxiao Shi | FacePersistency?  | 
| 328 | 37 | Junxiao Shi | LinkType?  | 
| 329 | |||
| 330 | UriScheme ::= URI-SCHEME-TYPE TLV-LENGTH  | 
||
| 331 | string in UTF-8  | 
||
| 332 | |||
| 333 | 40 | Junxiao Shi | * **FaceId** permits a face if its FaceId equals the value  | 
| 334 | * **UriScheme** permits a face if the scheme part of its local FaceUri or remote FaceUri equals the value  | 
||
| 335 | * **Uri** permits a face if its remote FaceUri equals the value  | 
||
| 336 | 1 | Junxiao Shi | * **LocalUri** permits a face if its local FaceUri equals the value  | 
| 337 | * **FaceScope** permits a face if its *FaceScope* attribute equals the value  | 
||
| 338 | 39 | Junxiao Shi | * **FacePersistency** permits a face if its *FacePersistency* attribute equals the value  | 
| 339 | 37 | Junxiao Shi | * **LinkType** permits a face if its *LinkType* attribute equals the value  | 
| 340 | |||
| 341 | A face must satisfy ALL conditions to satisfy the filter.  | 
||
| 342 | 1 | Junxiao Shi | Faces that satisfy the filter are represented by **FaceStatus** blocks, and published as a [[StatusDataset]] under the Interest Name (a Data packet's Name would be `ndn:/localhost/nfd/faces/query/<filter>/<version>/<segment>`).  | 
| 343 | 37 | Junxiao Shi | |
| 344 | 41 | Junxiao Shi | Examples of filters:  | 
| 345 | 1 | Junxiao Shi | |
| 346 | 75 | Davide Pesavento | * a specific face: `FaceId=260`  | 
| 347 | * a specific TCP tunnel: `Uri=tcp4://192.0.2.1:6363`  | 
||
| 348 | (note: FaceUri must precisely match the canonical form: use either "tcp4" or "tcp6" instead of "tcp", use IP address instead of domain name, include port number)  | 
||
| 349 | * all TCP tunnels: `UriScheme=tcp`  | 
||
| 350 | (note: "tcp" permits both "tcp4" and "tcp6", "udp" permits both "udp4" and "udp6")  | 
||
| 351 | * all UDP multi-access faces: `UriScheme=udp` && `LinkType=multi-access`  | 
||
| 352 | * all Ethernet faces: `UriScheme=ether`  | 
||
| 353 | (note: UriScheme matches against both local and remote FaceUri, "dev" also works)  | 
||
| 354 | 1 | Junxiao Shi | * all faces: no condition  | 
| 355 | 75 | Davide Pesavento | (note: this is equivalent to face dataset, and face dataset should be preferred for this purpose)  | 
| 356 | 33 | Junxiao Shi | |
| 357 | ## Channel Dataset  | 
||
| 358 | |||
| 359 | 20 | Junxiao Shi | Description of all active channels is published as a [[StatusDataset|Status Dataset]] at `ndn:/localhost/nfd/faces/channels`.  | 
| 360 | 1 | Junxiao Shi | |
| 361 | Each channel is represented by a **ChannelStatus** block:  | 
||
| 362 | 20 | Junxiao Shi | |
| 363 | ChannelStatus := CHANNEL-STATUS-TYPE TLV-LENGTH  | 
||
| 364 | 21 | Alex Afanasyev | LocalUri  | 
| 365 | 20 | Junxiao Shi | |
| 366 | 83 | Davide Pesavento | * **LocalUri** is a FaceUri representing the channel's local endpoint.  | 
| 367 | 21 | Alex Afanasyev | |
| 368 | 37 | Junxiao Shi | ## Face Status Change Notification  | 
| 369 | |||
| 370 | Face status change events are published as a [[Notification|Notification Stream]] at `ndn:/localhost/nfd/faces/events`.  | 
||
| 371 | 1 | Junxiao Shi | Notifications of all faces are sent into the same notification stream.  | 
| 372 | 37 | Junxiao Shi | |
| 373 | 83 | Davide Pesavento | The Content of each notification Data packet is a **FaceEventNotification** block:  | 
| 374 | 23 | Alex Afanasyev | |
| 375 | 37 | Junxiao Shi | FaceEventNotification ::= FACE-EVENT-NOTIFICATION-TYPE TLV-LENGTH  | 
| 376 | 40 | Junxiao Shi | FaceEventKind  | 
| 377 | FaceId  | 
||
| 378 | Uri  | 
||
| 379 | 25 | Junxiao Shi | LocalUri  | 
| 380 | 23 | Alex Afanasyev | FaceScope  | 
| 381 | FacePersistency  | 
||
| 382 | 58 | Eric Newberry | LinkType  | 
| 383 | 25 | Junxiao Shi | Flags  | 
| 384 | 23 | Alex Afanasyev | |
| 385 | 9 | Junxiao Shi | FaceEventKind ::= FACE-EVENT-KIND-TYPE TLV-LENGTH  | 
| 386 | nonNegativeInteger  | 
||
| 387 | |||
| 388 | 1 | Junxiao Shi | **FaceEventKind** indicates the kind of event. Its possible values are:  | 
| 389 | 34 | Junxiao Shi | |
| 390 | 83 | Davide Pesavento | * 1 = face is created  | 
| 391 | * 2 = face is destroyed  | 
||
| 392 | * 3 = face goes UP (from DOWN state)  | 
||
| 393 | * 4 = face goes DOWN (from UP state)  | 
||
| 394 | 32 | Junxiao Shi | |
| 395 | 20 | Junxiao Shi | ## TLV-TYPE assignments  | 
| 396 | |||
| 397 | Type | Assigned value | Assigned value (hex)  | 
||
| 398 | 39 | Junxiao Shi | ------------------------------------------- | ----------------- | --------------------  | 
| 399 | 40 | Junxiao Shi | FaceStatus | 128 | 0x80  | 
| 400 | LocalUri | 129 | 0x81  | 
||
| 401 | ChannelStatus | 130 | 0x82  | 
||
| 402 | 75 | Davide Pesavento | UriScheme | 131 | 0x83  | 
| 403 | 1 | Junxiao Shi | FaceScope | 132 | 0x84  | 
| 404 | FacePersistency | 133 | 0x85  | 
||
| 405 | LinkType | 134 | 0x86  | 
||
| 406 | 74 | Eric Newberry | BaseCongestionMarkingInterval | 135 | 0x87  | 
| 407 | 1 | Junxiao Shi | DefaultCongestionThreshold | 136 | 0x88  | 
| 408 | 85 | Eric Newberry | Mtu | 137 | 0x89  | 
| 409 | 67 | Junxiao Shi | NInInterests | 144 | 0x90  | 
| 410 | 48 | Junxiao Shi | NInData | 145 | 0x91  | 
| 411 | 1 | Junxiao Shi | NInNacks | 151 | 0x97  | 
| 412 | 67 | Junxiao Shi | NOutInterests | 146 | 0x92  | 
| 413 | 1 | Junxiao Shi | NOutData | 147 | 0x93  | 
| 414 | NOutNacks | 152 | 0x98  | 
||
| 415 | NInBytes | 148 | 0x94  | 
||
| 416 | 39 | Junxiao Shi | NOutBytes | 149 | 0x95  | 
| 417 | 1 | Junxiao Shi | FaceQueryFilter | 150 | 0x96  | 
| 418 | FaceEventNotification | 192 | 0xc0  | 
||
| 419 | FaceEventKind | 193 | 0xc1  | 
||
| 420 | (reserved, formerly FaceFlags) | 194 | 0xc2  |