summaryrefslogtreecommitdiffstats
path: root/libccnx-transport-rta/ccnx/api/control/cpi_Listener.h
blob: 13cf42ceecc6f1512822fe2fed67c71c37a6ae28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/**
 * @file cpi_Listener.h
 * @brief Represents a protocol listener
 *
 * A protocol listener is the tuple (protocol, local address), where protocol is one
 * of TCP, UDP, Ether, etc., local address is a CPI address.  For IP protocols,
 * local address is an (ip address, port) pair.  For Ethernet, it is a (mac address, ethertype) pair.
 *
 */

#ifndef CCNx_Control_API_cpi_Listener_h
#define CCNx_Control_API_cpi_Listener_h

struct cpi_listener;
typedef struct cpi_listener CPIListener;

#include <ccnx/api/control/cpi_Address.h>
#include <ccnx/api/control/cpi_ControlMessage.h>

/**
 * Creates a CPIListener object
 *
 * The symbolic name represents this listener and may be used by other commands.  It must be
 * unique, otherwise the command will fail when sent to the forwarder.
 *
 * @param [in] interfaceName The name of the local interface
 * @param [in] ethertype The ethertype to use (host byte order)
 * @param [in] symbolic The user-defined symbolic name
 *
 * @return non-null An Allocated object
 * @return null An error
 *
 * Example:
 * @code
 * {
 *     CPIListener *listener = cpiListener_CreateEther("eth0", 0x0801, "puppy");
 *     cpiListener_Release(&listener);
 * }
 * @endcode
 */
CPIListener *cpiListener_CreateEther(const char *interfaceName, uint16_t ethertype, const char *symbolic);

/**
 * Creates a CPIListener object
 *
 * The symbolic name represents this connection and may be used by other commands.  It must be
 * unique, otherwise the command will fail when sent to the forwarder.  IPv4 and IPv6 are differentiated
 * based on the address.
 *
 * @param [in] type The local address encapsulation type
 * @param [in] localAddress The local address to bind to
 * @param [in] symbolic The user-defined symbolic name
 *
 * @return non-null An Allocated object
 * @return null An error
 *
 * Example:
 * @code
 * {
 *     struct sockaddr_in sin;
 *     memset(&sin, 0, sizeof(sin));
 *     sin.sin_family = AF_INET;
 *     sin.sin_port = htons(port);
 *     inet_aton(addressString, &sin.sin_addr);
 *     CPIAddress *address = cpiAddress_CreateFromInet(&sin);
 *     CPIListener *listener = cpiListener_CreateIP(IPTUN_UDP, address, "fido");
 *
 *     cpiAddress_Destroy(&address);
 *     cpiListener_Release(&listener);
 * }
 * @endcode
 */
CPIListener *cpiListener_CreateIP(CPIInterfaceIPTunnelType type, CPIAddress *localAddress, const char *symbolic);

/**
 * Releases a reference count to the object
 *
 * <#Paragraphs Of Explanation#>
 *
 * @param [in,out] etherConnPtr A pointer to an etherConn object, will be null'd.
 *
 * Example:
 * @code
 * {
 *     CPIListener *listener = cpiListener_CreateEther("eth0", 0x0801, "puppy");
 *     cpiListener_Release(&listener);
 * }
 * @endcode
 */
void cpiListener_Release(CPIListener **etherConnPtr);

/**
 * Determine if two CPIListener instances are equal.
 *
 * Two CPIListener instances are equal if, and only if,
 * they are either both null or both non-null and compare
 * as equal field-for-field.
 *
 * The interface name is case sensitive, so "ETH0" is not the same as "eth0".
 *
 *
 * The following equivalence relations on non-null `CPIListener` instances are maintained:
 *
 *  * It is reflexive: for any non-null reference value x, `CPIListener_Equals(x, x)`
 *      must return true.
 *
 *  * It is symmetric: for any non-null reference values x and y,
 *    `cpiListener_Equals(x, y)` must return true if and only if
 *        `cpiListener_Equals(y, x)` returns true.
 *
 *  * It is transitive: for any non-null reference values x, y, and z, if
 *        `cpiListener_Equals(x, y)` returns true and
 *        `cpiListener_Equals(y, z)` returns true,
 *        then  `cpiListener_Equals(x, z)` must return true.
 *
 *  * It is consistent: for any non-null reference values x and y, multiple
 *      invocations of `cpiListener_Equals(x, y)` consistently return true or
 *      consistently return false.
 *
 *  * For any non-null reference value x, `cpiListener_Equals(x, NULL)` must
 *      return false.
 *
 * @param a A pointer to a `CPIListener` instance.
 * @param b A pointer to a `CPIListener` instance.
 * @return true if the two `CPIListener` instances are equal.
 *
 * Example:
 * @code
 * {
 *    CPIListener *a = cpiListener_Create();
 *    CPIListener *b = cpiListener_Create();
 *
 *    if (cpiListener_Equals(a, b)) {
 *        // true
 *    } else {
 *        // false
 *    }
 * }
 * @endcode
 */

bool cpiListener_Equals(const CPIListener *a, const CPIListener *b);

/**
 * Creates a control message to add the listener
 *
 * An add message indicates to the forwarder that it should add the listener.
 *
 * @param [<#in out in,out#>] <#name#> <#description#>
 *
 * @return non-null a CPI control message
 * @return null An error
 *
 * Example:
 * @code
 * {
 *     CPIListener *listener = cpiListener_CreateEther("eth0", 0x0801, "puppy");
 *     CCNxControl *control = cpiListener_CreateAddMessage(listener);
 *     cpiListener_Release(&listener);
 *
 *     ccnxPortal_Send(portal, control, CCNxStackTimeout_Never);
 *     ccnxControl_Release(&control);
 * }
 * @endcode
 */
CCNxControl *cpiListener_CreateAddMessage(const CPIListener *etherConn);

/**
 * Creates a control message to remove the connection
 *
 * A remove message indicates to the forwarder that it should remove the listener.
 *
 * @param [<#in out in,out#>] <#name#> <#description#>
 *
 * @return non-null a CPI control message
 * @return null An error
 *
 * Example:
 * @code
 * {
 *     CPIListener *listener = cpiListener_CreateEther("eth0", 0x0801, "puppy");
 *     CCNxControl *control = cpiListener_CreateRemoveMessage(listener);
 *     cpiListener_Release(&listener);
 *
 *     ccnxPortal_Send(portal, control, CCNxStackTimeout_Never);
 *     ccnxControl_Release(&control);
 * }
 * @endcode
 */
CCNxControl *cpiListener_CreateRemoveMessage(const CPIListener *etherConn);

/**
 * Checks if the control message is an Add command
 *
 * <#Paragraphs Of Explanation#>
 *
 * @param [in] control An allocated CCNxControl message
 *
 * @return true Message is an Add command for a Listener
 * @return false Message is not an Add command for a Listener
 *
 * Example:
 * @code
 * {
 *     CCNxMetaMessage *msg = ccnxPortal_Receive(portal, CCNxStackTimeout_Never);
 *     if (ccnxMetaMessage_IsControl(msg)) {
 *        CCNxControl *control = ccnxMetaMessage_GetControl(msg);
 *        if (cpiListener_IsAddMessage(control)) {
 *           // process an add listener request
 *        }
 *     }
 *     ccnxMetaMessage_Release(&msg);
 * }
 * @endcode
 */
bool cpiListener_IsAddMessage(const CCNxControl *control);

/**
 * Checks if the message is a Remove command
 *
 * <#Paragraphs Of Explanation#>
 *
 * @param [in] control A CCNx Control message
 *
 * @return true Message is an Remove command for a Listener
 * @return false Message is not Remove Add command for a Listener
 *
 * Example:
 * @code
 * {
 *     CCNxMetaMessage *msg = ccnxPortal_Receive(portal, CCNxStackTimeout_Never);
 *     if (ccnxMetaMessage_IsControl(msg)) {
 *        CCNxControl *control = ccnxMetaMessage_GetControl(msg);
 *        if (cpiListener_IsRemoveMessage(control)) {
 *           // process a remove listener request
 *        }
 *     }
 *     ccnxMetaMessage_Release(&msg);
 * }
 * @endcode
 */
bool cpiListener_IsRemoveMessage(const CCNxControl *control);

/**
 * Creates an object from the control message
 *
 * The object does not carry any sense of Add or Remove, that is only part of the
 * Control message.  You must release the object when done.
 *
 * @param [in] control A CCNx Control message
 *
 * @return non-null An Allocated object
 * @return null An error
 *
 * Example:
 * @code
 * {
 *     CCNxMetaMessage *msg = ccnxPortal_Receive(portal, CCNxStackTimeout_Never);
 *     if (ccnxMetaMessage_IsControl(msg)) {
 *        CCNxControl *control = ccnxMetaMessage_GetControl(msg);
 *        if (cpiListener_IsRemoveMessage(control)) {
 *           // process a remove listener request
 *           CPIListener *listener = cpiListener_FromControl(control);
 *           ...
 *           cpiListener_Release(&listener);
 *        }
 *     }
 *     ccnxMetaMessage_Release(&msg);
 * }
 * @endcode
 */
CPIListener *cpiListener_FromControl(const CCNxControl *control);

/**
 * Determines if the encapsulation is an Ethernet protocol
 *
 * <#Paragraphs Of Explanation#>
 *
 * @param [in] listener An allocated CPIListener
 *
 * @retval true It's Ethernet based
 * @retval false It's not
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
bool cpiListener_IsEtherEncap(const CPIListener *listener);

/**
 * Determines if the encapsulation is an IP-based protocol
 *
 * <#Paragraphs Of Explanation#>
 *
 * @param [in] listener An allocated CPIListener
 *
 * @retval true It's IP based
 * @retval false It's not
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
bool cpiListener_IsIPEncap(const CPIListener *listener);

/**
 * Returns the Ethertype for an Ethernet encapsulation
 *
 * The returned value is in host byte order
 *
 * @param [in] listener An allocated CPIListener
 *
 * @retval 0 Not Ethernet encapsulation
 * @retval positive The ethertype
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
uint16_t cpiListener_GetEtherType(const CPIListener *listener);

/**
 * Returns the interface name
 *
 * The caller should duplicate the string if it will be stored.
 *
 * @param [in] etherConn An allocated CPIListener
 *
 * @return non-null The interface name.
 * @return null An error (or not Ethernet encapsulation)
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
const char *cpiListener_GetInterfaceName(const CPIListener *etherConn);

/**
 * Returns the symbolic name
 *
 * The caller should duplicate the string if it will be stored.
 *
 * @param [in] listener An allocated CPIListener
 *
 * @return <#value#> <#explanation#>
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
const char *cpiListener_GetSymbolicName(const CPIListener *listener);

/**
 * Returns the address (LINK mac address, or INET or INET6 ip address)
 *
 * Returns the local address to use for the listener.  The address type is
 * as appropriate for the encapsulation.
 *
 * @param [in] listener An allocated CPIListener
 *
 * @return non-null The peer's link address
 * @return null An error
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
CPIAddress *cpiListener_GetAddress(const CPIListener *listener);

/**
 * For IP encapsulation, tests if the IP protocol is UDP
 *
 * Tests if the IP protocol is UDP.  If the protocol is not UDP or the encapsulation
 * is not IP, returns false.
 *
 * @param [in] listener An allocated CPIListener
 *
 * @retval true IP protocol is UDP
 * @retval false Not IP or not IP and UDP
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
bool cpiListener_IsProtocolUdp(const CPIListener *listener);

/**
 * For IP encapsulation, tests if the IP protocol is TCP
 *
 * Tests if the IP protocol is TCP.  If the protocol is not TCP or the encapsulation
 * is not IP, returns false.
 *
 * @param [in] listener An allocated CPIListener
 *
 * @retval true IP protocol is TCP
 * @retval false Not IP or not IP and TCP
 *
 * Example:
 * @code
 * <#example#>
 * @endcode
 */
bool cpiListener_IsProtocolTcp(const CPIListener *listener);

#endif // CCNx_Control_API_cpi_Listener_h