]> git.ipfire.org Git - thirdparty/lldpd.git/blame - src/lib/lldpctl.h
lib: stricly-prevent use of a connection used to watch events
[thirdparty/lldpd.git] / src / lib / lldpctl.h
CommitLineData
4b292b55
VB
1/* -*- mode: c; c-file-style: "openbsd" -*- */
2/*
3 * Copyright (c) 2012 Vincent Bernat <bernat@luffy.cx>
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#ifndef LLDPCTL_H
19#define LLDPCTL_H
20
21/**
b1eceab6 22 * @defgroup liblldpctl liblldpctl: library to interface with lldpd
4b292b55 23 *
b1eceab6
VB
24 * `liblldpctl` allows any program to convenienty query and modify the behaviour
25 * of a running lldpd daemon.
26 *
27 * To use this library, use `pkg-config` to get the appropriate options:
28 * * `pkg-config --libs lldpctl` for `LIBS` or `LDFLAGS`
29 * * `pkg-config --cflags lldpctl` for `CFLAGS`
30 *
31 * @warning This library is tightly coupled with lldpd. The library to use
32 * should be the one shipped with lldpd. Clients of the library are then tied
33 * by the classic API/ABI rules and may be compiled separatly.
34 *
35 * There are two important structures in this library: @c lldpctl_conn_t which
36 * represents a connection and @c lldpctl_atom_t which represents a piece of
37 * information. Those types are opaque. No direct access to them should be done.
38 *
39 * The library is expected to be reentrant and therefore thread-safe. It is
40 * however not expected that a connection to be used in several thread
41 * simultaneously. This also applies to the different pieces of information
42 * gathered through this connection. Several connection to lldpd can be used
43 * simultaneously.
44 *
45 * The first step is to establish a connection. See @ref lldpctl_connection for
46 * more information about this. The next step is to query the lldpd daemon. See
47 * @ref lldpctl_atoms on how to do this.
48 *
49 * `liblldpctl` tries to handle errors in a coherent way. Any function returning
50 * a pointer will return @c NULL on error and the last error can be retrieved
51 * through @ref lldpctl_last_error() function. Most functions returning integers
52 * will return a negative integer representing the error if something goes
53 * wrong. The use of @ref lldpctl_last_error() allows one to check if this is a
54 * real error if there is a doubt. See @ref lldpctl_errors_logs for more about
55 * this.
56 *
57 * @{
4b292b55
VB
58 */
59
b1eceab6 60
4b292b55
VB
61#ifdef __cplusplus
62extern "C" {
63#endif
64
65#include <stdlib.h>
66#include <stdint.h>
67#include <sys/types.h>
68
69/**
b1eceab6 70 * @defgroup lldpctl_connection Managing connection to lldpd
4b292b55 71 *
94d2efe5
VB
72 * Connection with lldpd.
73 *
b1eceab6
VB
74 * This library does not handle IO. They are delegated to a set of functions to
75 * allow a user to specify exactly how IO should be done. A user is expected to
76 * provide two functions: the first one is called when the library requests
77 * incoming data, the other one when it requests outgoing data. Moreover, the
78 * user is also expected to call the appropriate functions when data comes back
79 * (@ref lldpctl_recv()) or needs to be sent (@ref lldpctl_send()).
80 *
81 * Because the most common case is synchronous IO, `liblldpctl` will use classic
82 * synchronous IO with the Unix socket if no IO functions are provided by the
83 * user. For all other cases, the user must provide the appropriate functions.
84 *
85 * A connection should be allocated by using @ref lldpctl_new(). It needs to be
86 * released with @ref lldpctl_release().
87 *
88 * @{
4b292b55 89 */
4b292b55
VB
90
91/**
b1eceab6 92 * Get default transport name.
4b292b55 93 *
b1eceab6 94 * Currently, this is the default location of the Unix socket.
4b292b55 95 */
b1eceab6 96const char* lldpctl_get_default_transport(void);
4b292b55 97
4b292b55
VB
98/**
99 * Structure referencing a connection with lldpd.
100 *
101 * This structure should be handled as opaque. It can be allocated
102 * with @c lldpctl_new() and the associated resources will be freed
103 * with @c lldpctl_release().
104 */
105typedef struct lldpctl_conn_t lldpctl_conn_t;
106
107/**
108 * Callback function invoked to send data to lldpd.
109 *
b35cfd03 110 * @param conn Handle to the connection to lldpd.
4b292b55
VB
111 * @param data Bytes to be sent.
112 * @param length Length of provided data.
113 * @param user_data Provided user data.
114 * @return The number of bytes really sent or either @c LLDPCTL_ERR_WOULDBLOCK
115 * if no bytes can be sent without blocking or @c
116 * LLDPCTL_ERR_CALLBACK_FAILURE for other errors.
117 */
b1eceab6 118typedef ssize_t (*lldpctl_send_callback)(lldpctl_conn_t *conn,
4b292b55
VB
119 const uint8_t *data, size_t length, void *user_data);
120
121/**
122 * Callback function invoked to receive data from lldpd.
123 *
b35cfd03 124 * @param conn Handle to the connection to lldpd.
4b292b55
VB
125 * @param data Buffer for receiving data
126 * @param length Maximum bytes we can receive
127 * @param user_data Provided user data.
128 * @return The number of bytes really received or either @c
129 * LLDPCTL_ERR_WOULDBLOCK if no bytes can be received without blocking,
130 * @c LLDPCTL_ERR_CALLBACK_FAILURE for other errors or @c
131 * LLDPCTL_ERR_EOF if end of file was reached.
132 */
b1eceab6 133typedef ssize_t (*lldpctl_recv_callback)(lldpctl_conn_t *conn,
4b292b55
VB
134 const uint8_t *data, size_t length, void *user_data);
135
136/**
137 * Function invoked when additional data is available from lldpd.
138 *
139 * This function should be invoked in case of asynchronous IO when new data is
140 * available from lldpd (expected or unexpected).
141 *
b1eceab6 142 * @param conn Handle to the connection to lldpd.
4b292b55
VB
143 * @param data Data received from lldpd.
144 * @param length Length of data received.
4e90a9e0
VB
145 * @return The number of bytes available or a negative integer if an error has
146 * occurred. 0 is not an error. It usually means that a notification has
147 * been processed.
4b292b55 148 */
b1eceab6 149ssize_t lldpctl_recv(lldpctl_conn_t *conn, const uint8_t *data, size_t length);
4b292b55
VB
150
151/**
152 * Function invoked when there is an opportunity to send data to lldpd.
153 *
154 * This function should be invoked in case of asynchronous IO when new data can
155 * be written to lldpd.
156 *
b1eceab6 157 * @param conn Handle to the connection to lldpd.
4b292b55 158 * @return The number of bytes processed or a negative integer if an error has
0cddb489 159 * occurred.
4b292b55 160 */
b1eceab6 161ssize_t lldpctl_send(lldpctl_conn_t *conn);
4b292b55 162
1fa64c11
ST
163/**
164 * Function invoked to see if there's more data to be processed in the buffer.
165 *
166 * This function should be invoked to check for notifications in the data that
167 * has already been read. Its used typically for asynchronous connections.
168 *
169 * @param conn Handle to the connection to lldpd.
170 * @return 0 to indicate maybe more data is available for processing
171 * !0 to indicate no data or insufficient data for processing
172 */
173int lldpctl_process_conn_buffer(lldpctl_conn_t *conn);
174
175
4b292b55
VB
176/**
177 * Allocate a new handler for connecting to lldpd.
178 *
4b292b55
VB
179 * @param send Callback to be used when sending new data is requested.
180 * @param recv Callback to be used when receiving new data is requested.
181 * @param user_data Data to pass to callbacks.
182 * @return An handler to be used to connect to lldpd or @c NULL in
183 * case of error. In the later case, the error is probable an
184 * out of memory condition.
185 *
186 * The allocated handler can be released with @c lldpctl_release(). If the
187 * provided parameters are both @c NULL, default synchronous callbacks will be
188 * used.
189 */
190lldpctl_conn_t *lldpctl_new(lldpctl_send_callback send,
191 lldpctl_recv_callback recv, void *user_data);
192
0262adbb
ZM
193/**
194 * Allocate a new handler for connecting to lldpd.
195 *
196 * @param ctlname the Unix-domain socket to connect to lldpd.
197 * @param send Callback to be used when sending new data is requested.
198 * @param recv Callback to be used when receiving new data is requested.
199 * @param user_data Data to pass to callbacks.
200 * @return An handler to be used to connect to lldpd or @c NULL in
201 * case of error. In the later case, the error is probable an
202 * out of memory condition.
203 *
204 * The allocated handler can be released with @c lldpctl_release(). If the
205 * provided parameters are both @c NULL, default synchronous callbacks will be
206 * used.
207 */
208lldpctl_conn_t *lldpctl_new_name(const char *ctlname, lldpctl_send_callback send,
209 lldpctl_recv_callback recv, void *user_data);
210
4b292b55
VB
211/**
212 * Release resources associated with a connection to lldpd.
213 *
b1eceab6 214 * @param conn Previously allocated handler to a connection to lldpd.
4b292b55
VB
215 * @return 0 on success or a negative integer
216 *
217 * @see lldpctl_new()
218 */
b1eceab6
VB
219int lldpctl_release(lldpctl_conn_t *conn);
220/**@}*/
221
222/**
223 * @defgroup lldpctl_errors_logs Errors and logs handling
224 *
94d2efe5
VB
225 * Error codes and logs handling.
226 *
b1eceab6
VB
227 * When a function returns a pointer, it may return @c NULL to indicate an error
228 * condition. In this case, it is possible to use @ref lldpctl_last_error() to
229 * get the related error code which is one of the values in @ref lldpctl_error_t
230 * enumeration. For display purpose @ref lldpctl_strerror() may be used to
231 * translate this error code.
232 *
233 * When a function returns an integer, it may return a negative value. It
07ecfcd1 234 * usually means this is an error but some functions may return a legitimate
b1eceab6
VB
235 * negative value (for example @ref lldpctl_atom_get_int()). When there is a
236 * doubt, @ref lldpctl_last_error() should be checked.
237 *
238 * An error is attached to a connection. If there is no connection, no error
239 * handling is available. Most functions use a connection or an atom as first
240 * argument and therefore are attached to a connection. To get the connection
241 * related to an atom, use @ref lldpctl_atom_get_connection().
242 *
243 * Also have a look at @ref lldpctl_log_callback() function if you want a custom
244 * log handling.
245 *
246 * @{
247 */
248
249/**
250 * Setup log handlers.
251 *
252 * By default, liblldpctl will log to stderr. The following function will
253 * register another callback for this purpose. Messages logged through this
254 * callback may be cryptic. They are targeted for the developer. Message for end
255 * users should rely on return codes.
256 */
257void lldpctl_log_callback(void (*cb)(int severity, const char *msg));
4b292b55 258
2389d2cc
VB
259/**
260 * Setup log level.
261 *
262 * By default, liblldpctl will only log warnings. The following function allows
263 * to increase verbosity. This function has no effect if callbacks are
264 * registered with the previous function.
265 *
266 * @param level Level of verbosity (1 = warnings, 2 = info, 3 = debug).
267 */
268void lldpctl_log_level(int level);
269
4b292b55
VB
270/**
271 * Possible error codes for functions that return negative integers on
272 * this purpose or for @c lldpctl_last_error().
273 */
274typedef enum {
275 /**
276 * No error has happened (yet).
277 */
278 LLDPCTL_NO_ERROR = 0,
279 /**
280 * A IO related operation would block if performed.
281 */
282 LLDPCTL_ERR_WOULDBLOCK = -501,
283 /**
284 * A IO related operation has reached a end of file condition.
285 */
286 LLDPCTL_ERR_EOF = -502,
287 /**
288 * The requested information does not exist. For example, when
289 * requesting an inexistant information from an atom.
290 */
291 LLDPCTL_ERR_NOT_EXIST = -503,
292 /**
293 * Cannot connect to the lldpd daemon. This error only happens with
294 * default synchronous handlers.
295 */
296 LLDPCTL_ERR_CANNOT_CONNECT = -504,
297 /**
298 * Atom is of incorrect type for the requested operation.
299 */
300 LLDPCTL_ERR_INCORRECT_ATOM_TYPE = -505,
301 /**
302 * An error occurred during serialization of message.
303 */
304 LLDPCTL_ERR_SERIALIZATION = -506,
305 /**
306 * The requested operation cannot be performed because we have another
307 * operation already running.
308 */
309 LLDPCTL_ERR_INVALID_STATE = -507,
310 /**
311 * The provided atom cannot be iterated.
312 */
313 LLDPCTL_ERR_CANNOT_ITERATE = -508,
314 /**
315 * The provided value is invalid.
316 */
317 LLDPCTL_ERR_BAD_VALUE = -509,
318 /**
319 * No new element can be created for this element.
320 */
321 LLDPCTL_ERR_CANNOT_CREATE = -510,
322 /**
323 * The library is under unexpected conditions and cannot process
324 * any further data reliably.
325 */
326 LLDPCTL_ERR_FATAL = -900,
327 /**
328 * Out of memory condition. Things may get havoc here but we
329 * should be able to recover.
330 */
331 LLDPCTL_ERR_NOMEM = -901,
332 /**
333 * An error occurred in a user provided callback.
334 */
335 LLDPCTL_ERR_CALLBACK_FAILURE = -902
336} lldpctl_error_t;
337
338/**
339 * Describe a provided error code.
340 *
341 * @param error Error code to be described.
342 * @return Statically allocated string describing the error.
343 */
344const char *lldpctl_strerror(lldpctl_error_t error);
345
346/**
347 * Get the last error associated to a connection to lldpd.
348 *
b1eceab6 349 * @param conn Previously allocated handler to a connection to lldpd.
4b292b55
VB
350 * @return 0 if no error is currently registered. A negative integer
351 * otherwise.
352 *
353 * For functions returning int, this function will return the same
354 * error number. For functions returning something else, you can use
355 * this function to get the appropriate error number.
356 */
b1eceab6 357lldpctl_error_t lldpctl_last_error(lldpctl_conn_t *conn);
4b292b55
VB
358
359/**
360 * Describe the last error associate to a connection.
361 *
362 * @param conn Previously allocated handler to a connection to lldpd.
363 * @return Statically allocated string describing the error
364 */
365#define lldpctl_last_strerror(conn) lldpctl_strerror(lldpctl_last_error(conn))
b1eceab6 366/**@}*/
4b292b55 367
4b292b55 368/**
b1eceab6
VB
369 * @defgroup lldpctl_atoms Extracting information: atoms
370 *
94d2efe5 371 * Information retrieved from lldpd is represented as an atom.
4b292b55
VB
372 *
373 * This is an opaque structure that can be passed along some functions to
374 * transmit chassis, ports, VLAN and other information related to LLDP. Most
375 * information are extracted using @c lldpctl_atom_get(), @c
376 * lldpctl_atom_get_str(), @c lldpctl_atom_get_buffer() or @c
377 * lldpctl_atom_get_int(), unless some IO with lldpd is needed to retrieve the
378 * requested information. In this case, there exists an appropriate function to
379 * convert the "deferred" atom into a normal one (like @c lldpctl_get_port()).
380 *
b1eceab6
VB
381 * For some information, setters are also available: @c lldpctl_atom_set(), @c
382 * lldpctl_atom_set_str(), @c lldpctl_atom_set_buffer() or @c
383 * lldpctl_atom_set_int(). Unlike getters, some of those may require IO to
384 * achieve their goal.
385 *
3c5634c1
VB
386 * An atom is reference counted. The semantics are quite similar to Python and
387 * you must be careful of the ownership of a reference. It is possible to own a
388 * reference by calling @c lldpctl_atom_inc_ref(). Once the atom is not needed
389 * any more, you can abandon ownership with @c lldpctl_atom_dec_ref(). Unless
390 * documented otherwise, a function returning an atom will return a new
391 * reference (the ownership is assigned to the caller, no need to call @c
392 * lldpctl_atom_inc_ref()). Unless documented otherwise, when providing an atom
393 * to a function, the atom is usually borrowed (no change in reference
394 * counting). Currently, no function will steal ownership.
395 *
396 * It is quite important to use the reference counting functions
397 * correctly. Segfaults or memory leaks may occur otherwise. Once the reference
398 * count reaches 0, the atom is immediately freed. Reusing it will likely lead
399 * to memory corruption.
b1eceab6
VB
400 *
401 * @{
402 */
403
404/**
405 * Structure representing an element (chassis, port, VLAN, ...)
4b292b55
VB
406 *
407 * @see lldpctl_atom_inc_ref(), lldpctl_atom_dec_ref().
408 */
409typedef struct lldpctl_atom_t lldpctl_atom_t;
410
6fcf11ca
VB
411/**
412 * Structure representing a map from an integer to a character string.
413 *
414 * @see lldpctl_key_get_map().
415 */
416typedef const struct {
417 int value;
418 char *string;
419} lldpctl_map_t;
420
4b292b55
VB
421/**
422 * Return the reference to connection with lldpd.
423 *
424 * @param atom The atom we want reference from.
425 * @return The reference to the connection to lldpd.
426 *
427 * Each atom contains an internal reference to the corresponding connection to
428 * lldpd. Use this function to get it.
429 */
430lldpctl_conn_t *lldpctl_atom_get_connection(lldpctl_atom_t *atom);
431
432/**
433 * Increment reference count for an atom.
434 *
435 * @param atom Atom we which to increase reference count.
436 */
437void lldpctl_atom_inc_ref(lldpctl_atom_t *atom);
438
439/**
440 * Decrement reference count for an atom.
441 *
442 * @param atom Atom we want to decrease reference count. Can be @c NULL. In this
443 * case, nothing happens.
444 *
4e90a9e0 445 * When the reference count becomes 0, the atom is freed.
4b292b55
VB
446 */
447void lldpctl_atom_dec_ref(lldpctl_atom_t *atom);
448
4e90a9e0 449/**
b1eceab6
VB
450 * Possible events for a change (notification).
451 *
452 * @see lldpctl_watch_callback
4e90a9e0
VB
453 */
454typedef enum {
455 lldpctl_c_deleted, /**< The neighbor has been deleted */
456 lldpctl_c_updated, /**< The neighbor has been updated */
457 lldpctl_c_added, /**< This is a new neighbor */
458} lldpctl_change_t;
459
460/**
461 * Callback function invoked when a change is detected.
462 *
c0363157 463 * @param conn Connection with lldpd. Should not be used.
4e90a9e0
VB
464 * @param type Type of change detected.
465 * @param interface Physical interface on which the change has happened.
466 * @param neighbor Changed neighbor.
467 * @param data Data provided when registering the callback.
468 *
3c5634c1
VB
469 * The provided interface and neighbor atoms are stolen by the callback: their
470 * reference count are decremented when the callback ends. If you want to keep a
471 * reference to it, be sure to increment the reference count in the callback.
b1eceab6 472 *
c0363157 473 * @warning The provided connection should not be used at all. Do not use @c
cb38337c
VB
474 * lldpctl_atom_set_*() functions on @c interface or @c neighbor either. If you
475 * do, you will get a @c LLDPCTL_ERR_INVALID_STATE error.
c0363157 476 *
b1eceab6 477 * @see lldpctl_watch_callback
4e90a9e0
VB
478 */
479typedef void (*lldpctl_change_callback)(lldpctl_conn_t *conn,
480 lldpctl_change_t type,
481 lldpctl_atom_t *interface,
482 lldpctl_atom_t *neighbor,
483 void *data);
484
485/**
486 * Register a callback to be called on changes.
487 *
488 * @param conn Connection with lldpd.
489 * @param cb Replace the current callback with the provided one.
490 * @param data Data that will be passed to the callback.
491 * @return 0 in case of success or -1 in case of errors.
492 *
493 * This function will register the necessity to push neighbor changes to lldpd
494 * and therefore will issue IO operations. The error code could then be @c
495 * LLDPCTL_ERR_WOULDBLOCK.
09a267fc 496 *
c0363157 497 * @warning Once a callback is registered, the connection shouldn't be used for
cb38337c
VB
498 * anything else than receiving notifications. If you do, you will get a @c
499 * LLDPCTL_ERR_INVALID_STATE error.
4e90a9e0
VB
500 */
501int lldpctl_watch_callback(lldpctl_conn_t *conn,
502 lldpctl_change_callback cb,
503 void *data);
504
505/**
506 * Wait for the next change.
507 *
508 * @param conn Connection with lldpd.
509 * @return 0 on success or a negative integer in case of error.
510 *
511 * This function will return once a change has been detected. It is only useful
512 * as a main loop when using the builtin blocking IO mechanism.
513 */
514int lldpctl_watch(lldpctl_conn_t *conn);
515
b1eceab6
VB
516/**
517 * @defgroup liblldpctl_atom_get_special Retrieving atoms from lldpd
518 *
519 * Special access functions.
520 *
521 * Most information can be retrieved through @ref lldpctl_atom_get(), @ref
522 * lldpctl_atom_get_int(), @ref lldpctl_atom_get_str() or @ref
523 * lldpctl_atom_get_buffer() but some information can only be retrieved through
524 * special functions because IO operation is needed (and also, for some of them,
525 * because we don't have an atom yet).
526 *
527 * @{
528 */
529
8729d69f
VB
530/**
531 * Retrieve global configuration of lldpd daemon.
532 *
533 * @param conn Connection with lldpd.
534 * @return The global configuration or @c NULL if an error happened.
535 *
536 * This function will make IO with the daemon to get the
537 * configuration. Depending on the IO model, information may not be available
538 * right now and the function should be called again later. If @c NULL is
539 * returned, check the last error. If it is @c LLDPCTL_ERR_WOULDBLOCK, try again
540 * later.
541 */
542lldpctl_atom_t *lldpctl_get_configuration(lldpctl_conn_t *conn);
543
4b292b55
VB
544/**
545 * Retrieve the list of available interfaces.
546 *
b1eceab6 547 * @param conn Previously allocated handler to a connection to lldpd.
4b292b55
VB
548 * @return The list of available ports or @c NULL if an error happened.
549 *
550 * This function will make IO with the daemon to get the list of
551 * ports. Depending on the IO model, information may not be available right now
552 * and the function should be called again later. If @c NULL is returned, check
553 * what the last error is. If it is @c LLDPCTL_ERR_WOULDBLOCK, try again later
554 * (when more data is available).
b1eceab6
VB
555 *
556 * The list of available ports can be iterated with @ref lldpctl_atom_foreach().
4b292b55 557 */
b1eceab6 558lldpctl_atom_t *lldpctl_get_interfaces(lldpctl_conn_t *conn);
4b292b55 559
99ef55d3
VB
560/**
561 * Retrieve the information related to the local chassis.
562 *
563 * @param conn Previously allocated handler to a connection to lldpd.
564 * @return Atom related to the local chassis which may be used in subsequent functions.
565 *
566 * This function may have to do IO to get the information related to the local
567 * chassis. Depending on the IO mode, information may not be available right now
568 * and the function should be called again later. If @c NULL is returned, check
569 * what the last error is. If it is @c LLDPCTL_ERR_WOULDBLOCK, try again later
570 * (when more data is available).
571 */
572lldpctl_atom_t *lldpctl_get_local_chassis(lldpctl_conn_t *conn);
573
4b292b55
VB
574/**
575 * Retrieve the information related to a given interface.
576 *
577 * @param port The port we want to retrieve information from. This port is an
b1eceab6 578 * atom retrieved from an interation on @c lldpctl_get_interfaces().
4b292b55
VB
579 * @return Atom related to this port which may be used in subsequent functions.
580 *
9da663f7 581 * This function may have to do IO to get the information related to the given
99ef55d3 582 * port. Depending on the IO mode, information may not be available right now
4b292b55
VB
583 * and the function should be called again later. If @c NULL is returned, check
584 * what the last error is. If it is @c LLDPCTL_ERR_WOULDBLOCK, try again later
585 * (when more data is available).
586 */
587lldpctl_atom_t *lldpctl_get_port(lldpctl_atom_t *port);
588
9da663f7
VB
589/**
590 * Retrieve the default port information.
591 *
592 * This port contains default settings whenever a new port needs to be created.
593 *
594 * @param conn Previously allocated handler to a connection to lldpd.
595 * @return Atom of the default port which may be used in subsequent functions.
596 *
597 * This function may have to do IO to get the information related to the given
598 * port. Depending on the IO mode, information may not be available right now
599 * and the function should be called again later. If @c NULL is returned, check
600 * what the last error is. If it is @c LLDPCTL_ERR_WOULDBLOCK, try again later
601 * (when more data is available).
602 */
603lldpctl_atom_t *lldpctl_get_default_port(lldpctl_conn_t *conn);
604
b1eceab6
VB
605/**@}*/
606
4b292b55
VB
607/**
608 * Piece of information that can be retrieved from/written to an atom.
609 *
610 * Each piece of information can potentially be retrieved as an atom (A), a
611 * string (S), a buffer (B) or an integer (I). Additionaly, when an information
612 * can be retrieved as an atom, it is usually iterable (L). When an atom can be
613 * retrieved as a string and as an additional type, the string is expected to be
614 * formatted. For example, the MAC address of a local port can be retrieved as a
615 * buffer and a string. As a string, you'll get something like
616 * "00:11:22:33:44:55". Also, all values that can be get as an integer or a
617 * buffer can be get as a string too. There is no special formatting in this
618 * case. "(BS)" means that the string get a special appropriate format.
619 *
620 * The name of a key is an indication on the type of atom that information can
621 * be extracted from. For example, @c lldpctl_k_med_policy_type can be extracted
622 * from an atom you got by iterating on @c lldpctl_k_port_med_policies. On the
623 * other hand, @c lldpctl_k_port_descr and @c lldpctl_k_chassis can be retrieved
624 * from an atom retrieved either by iterating @c lldpctl_k_port_neighbors or
625 * with @c lldpctl_get_port().
626 *
627 * Some values may be written. They are marked with (W). Such a change may or
628 * may not be transmitted immediatly. If they are not transmitted immediatly,
629 * this means that the resulting atom should be written to another atom. For
630 * example, when writting @c lldpctl_k_med_policy_tagged, you need to write the
631 * resulting atom to @c lldpctl_k_port_med_policies. If the change is
632 * transmitted immediatly, you need to check the error status of the connection
633 * to know if it has been transmitted correctly. Notably, if you get @c
634 * LLDPCTL_ERR_WOULDBLOCK, you need to try again later. Usually, changes are
635 * transmitted immediatly. The exception are changes that need to be grouped to
636 * be consistent, like a LLDP MED location. When a change is transmitted
28431fae
VB
637 * immediatly, it is marked with (O). @c lldpctl_atom_set_str() may accept a @c
638 * NULL value. This case is marked with (N) and usually reset the item to the
639 * default value or no value.
4b292b55
VB
640 *
641 * Some values may also be created. They are flagged with (C). This only applies
642 * to elements that can be iterated (L) and written (W). The element created
643 * still needs to be appended to the list by being written to it. The creation
644 * is done with @c lldpctl_atom_create().
645 *
646 * An atom marked with (S) can be retrieved as a string only. It cannot be
647 * written. An atom marked with (IS) can be retrieved as an integer and features
648 * an appropriate representation as a string (usually, the name of a constant)
649 * which is more meaningful than just the integer. An atom marked as (I) can be
db76b228
VB
650 * retrieved as an integer and as a string. In the later case, this is just a
651 * string representation of the integer. An atom marked with (AL) can be
652 * retrieved as an atom only and can be iterated over. This is usually a list of
653 * things. An atom marked (I,W) can be read as an integer or a string and can be
654 * written as an integer. The change would not be commited until the atom is
655 * written to the nearest atom supporting (A,WO) operation (eventually with an
656 * indirection, i.e first write to a (A,W), then to a (A,WO)).
4b292b55
VB
657 */
658typedef enum {
8843f168 659 lldpctl_k_config_tx_interval, /**< `(I,WO)` Transmit interval. When set to -1, it is meant to transmit now. */
2de09499 660 lldpctl_k_config_receiveonly, /**< `(I)` Receive only mode */
28431fae
VB
661 lldpctl_k_config_mgmt_pattern, /**< `(S,WON)` Pattern to choose the management address */
662 lldpctl_k_config_iface_pattern, /**< `(S,WON)` Pattern of enabled interfaces */
b1eceab6 663 lldpctl_k_config_cid_pattern, /**< `(S)` Interface pattern to choose the chassis ID */
28431fae
VB
664 lldpctl_k_config_description, /**< `(S,WON)` Chassis description overridden */
665 lldpctl_k_config_platform, /**< `(S,WON)` Platform description overridden (CDP) */
666 lldpctl_k_config_hostname, /**< `(S,WON)` System name overridden */
b1eceab6
VB
667 lldpctl_k_config_advertise_version, /**< `(I)` Advertise version */
668 lldpctl_k_config_lldpmed_noinventory, /**< `(I)` Disable LLDP-MED inventory */
7742be39 669 lldpctl_k_config_paused, /**< `(I,WO)` lldpd is paused */
486a6133
VB
670 lldpctl_k_config_fast_start_enabled, /**< `(I,WO)` Is fast start enabled */
671 lldpctl_k_config_fast_start_interval, /**< `(I,WO)` Start fast transmit interval */
bb37268d 672 lldpctl_k_config_ifdescr_update, /**< `(I,WO)` Enable or disable setting interface description */
f84199dd 673 lldpctl_k_config_iface_promisc, /**< `(I,WO)` Enable or disable promiscuous mode on interfaces */
ca838758 674 lldpctl_k_config_chassis_cap_advertise, /**< `(I,WO)` Enable or disable chassis capabilities advertisement */
1c2217aa 675 lldpctl_k_config_chassis_mgmt_advertise, /**< `(I,WO)` Enable or disable management addresses advertisement */
8481f490 676 lldpctl_k_config_cid_string, /**< `(S,WON)` User defined string for the chassis ID */
0a78e14f 677 lldpctl_k_config_perm_iface_pattern, /**< `(S,WON)` Pattern of permanent interfaces */
6f66d108 678 lldpctl_k_config_tx_interval_ms, /**< `(I,WO)` Transmit interval in milliseconds. Set to -1 to transmit now. */
b1eceab6 679
d1dc456f 680 lldpctl_k_interface_name = 1000, /**< `(S)` The interface name. */
b1eceab6 681
d1dc456f 682 lldpctl_k_port_name = 1100, /**< `(S)` The port name. Only works for a local port. */
b1eceab6 683 lldpctl_k_port_index, /**< `(I)` The port index. Only works for a local port. */
4b292b55 684 /**
b1eceab6 685 * `(AL)` The list of known neighbors for this port.
4b292b55
VB
686 *
687 * A neighbor is in fact a remote port.
688 */
d1dc456f 689 lldpctl_k_port_neighbors = 1200,
b1eceab6
VB
690 lldpctl_k_port_protocol, /**< `(IS)` The protocol that was used to retrieve this information. */
691 lldpctl_k_port_age, /**< `(I)` Age of information, seconds from epoch. */
692 lldpctl_k_port_id_subtype, /**< `(IS)` The subtype ID of this port. */
8e46010c 693 lldpctl_k_port_id, /**< `(BS,WO)` The ID of this port. */
8003e789 694 lldpctl_k_port_descr, /**< `(S,WO)` The description of this port. */
b1eceab6 695 lldpctl_k_port_hidden, /**< `(I)` Is this port hidden (or should it be displayed?)? */
e7331ce9 696 lldpctl_k_port_status, /**< `(IS,WO)` Operational status of this (local) port */
99ef55d3 697 lldpctl_k_port_chassis, /**< `(A)` Chassis associated to the port */
78346c89 698 lldpctl_k_port_ttl, /**< `(I)` TTL for port, 0 if info is attached to chassis */
b1eceab6 699
d1dc456f 700 lldpctl_k_port_dot3_mfs = 1300, /**< `(I)` MFS */
b1eceab6
VB
701 lldpctl_k_port_dot3_aggregid, /**< `(I)` Port aggregation ID */
702 lldpctl_k_port_dot3_autoneg_support, /**< `(I)` Autonegotiation support. */
703 lldpctl_k_port_dot3_autoneg_enabled, /**< `(I)` Autonegotiation enabled. */
704 lldpctl_k_port_dot3_autoneg_advertised, /**< `(I)` Advertised protocols. See `LLDP_DOT3_LINK_AUTONEG_*` */
705 lldpctl_k_port_dot3_mautype, /**< `(IS)` Current MAU type. See `LLDP_DOT3_MAU_*` */
706
d1dc456f 707 lldpctl_k_port_dot3_power = 1400, /**< `(A,WO)` Dot3 power related stuff. */
b1eceab6
VB
708 lldpctl_k_dot3_power_devicetype, /**< `(IS,W)` Device type. See `LLDP_DOT3_POWER_PSE/PD` */
709 lldpctl_k_dot3_power_supported, /**< `(I,W)` Is MDI power supported. */
710 lldpctl_k_dot3_power_enabled, /**< `(I,W)` Is MDI power enabled. */
711 lldpctl_k_dot3_power_paircontrol, /**< `(I,W)` Pair-control enabled? */
712 lldpctl_k_dot3_power_pairs, /**< `(IS,W)` See `LLDP_DOT3_POWERPAIRS_*` */
713 lldpctl_k_dot3_power_class, /**< `(IS,W)` Power class. */
714 lldpctl_k_dot3_power_type, /**< `(I,W)` 802.3AT power type */
715 lldpctl_k_dot3_power_source, /**< `(IS,W)` 802.3AT power source */
716 lldpctl_k_dot3_power_priority, /**< `(IS,W)` 802.3AT power priority */
717 lldpctl_k_dot3_power_allocated, /**< `(I,W)` 802.3AT power allocated */
718 lldpctl_k_dot3_power_requested, /**< `(I,W)` 802.3AT power requested */
719
7cfcd3b7
PD
720 /* 802.3bt additions */
721 lldpctl_k_dot3_power_pd_4pid, /**< `(IS,W)` 802.3BT both modes supported? */
722 lldpctl_k_dot3_power_requested_a, /**< `(I,W)` 802.3BT power value requested for A */
723 lldpctl_k_dot3_power_requested_b, /**< `(I,W)` 802.3BT power value requested for B */
724 lldpctl_k_dot3_power_allocated_a, /**< `(I,W)` 802.3BT power value allocated for A */
725 lldpctl_k_dot3_power_allocated_b, /**< `(I,W)` 802.3BT power value allocated for B */
726 lldpctl_k_dot3_power_pse_status, /**< `(IS,W)` 802.3BT PSE powering status */
727 lldpctl_k_dot3_power_pd_status, /**< `(IS,W)` 802.3BT PD powering status */
728 lldpctl_k_dot3_power_pse_pairs_ext, /**< `(IS,W)` 802.3BT PSE power pairs */
729 lldpctl_k_dot3_power_class_a, /**< `(IS,W)` 802.3BT power class for A */
730 lldpctl_k_dot3_power_class_b, /**< `(IS,W)` 802.3BT power class for B */
731 lldpctl_k_dot3_power_class_ext, /**< `(IS,W)` 802.3BT power class */
732 lldpctl_k_dot3_power_type_ext, /**< `(IS,W)` 802.3BT power type */
733 lldpctl_k_dot3_power_pd_load, /**< `(IS,W)` 802.3BT dualsig isolated? */
734 lldpctl_k_dot3_power_pse_max, /**< `(I,W)` 802.3BT maximum available power */
735
d1dc456f 736 lldpctl_k_port_vlan_pvid = 1500, /**< `(I)` Primary VLAN ID */
b1eceab6
VB
737 lldpctl_k_port_vlans, /**< `(AL)` List of VLAN */
738 lldpctl_k_vlan_id, /**< `(I)` VLAN ID */
739 lldpctl_k_vlan_name, /**< `(S)` VLAN name */
740
d1dc456f 741 lldpctl_k_port_ppvids = 1600, /**< `(AL)` List of PPVIDs */
b1eceab6
VB
742 lldpctl_k_ppvid_status, /**< `(I)` Status of PPVID (see `LLDP_PPVID_CAP_*`) */
743 lldpctl_k_ppvid_id, /**< `(I)` ID of PPVID */
744
d1dc456f 745 lldpctl_k_port_pis = 1700, /**< `(AL)` List of PIDs */
b1eceab6
VB
746 lldpctl_k_pi_id, /**< `(B)` PID value */
747
d1dc456f 748 lldpctl_k_chassis_index = 1800, /**< `(I)` The chassis index. */
b1eceab6
VB
749 lldpctl_k_chassis_id_subtype, /**< `(IS)` The subtype ID of this chassis. */
750 lldpctl_k_chassis_id, /**< `(BS)` The ID of this chassis. */
751 lldpctl_k_chassis_name, /**< `(S)` The name of this chassis. */
752 lldpctl_k_chassis_descr, /**< `(S)` The description of this chassis. */
753 lldpctl_k_chassis_cap_available, /**< `(I)` Available capabalities (see `LLDP_CAP_*`) */
754 lldpctl_k_chassis_cap_enabled, /**< `(I)` Enabled capabilities (see `LLDP_CAP_*`) */
755 lldpctl_k_chassis_mgmt, /**< `(AL)` List of management addresses */
71b0f981 756 lldpctl_k_chassis_ttl, /**< Deprecated */
b1eceab6 757
d1dc456f 758 lldpctl_k_chassis_med_type = 1900, /**< `(IS)` Chassis MED type. See `LLDP_MED_CLASS_*` */
b1eceab6
VB
759 lldpctl_k_chassis_med_cap, /**< `(I)` Available MED capabilitied. See `LLDP_MED_CAP_*` */
760 lldpctl_k_chassis_med_inventory_hw, /**< `(S)` LLDP MED inventory "Hardware Revision" */
761 lldpctl_k_chassis_med_inventory_sw, /**< `(S)` LLDP MED inventory "Software Revision" */
762 lldpctl_k_chassis_med_inventory_fw, /**< `(S)` LLDP MED inventory "Firmware Revision" */
763 lldpctl_k_chassis_med_inventory_sn, /**< `(S)` LLDP MED inventory "Serial Number" */
764 lldpctl_k_chassis_med_inventory_manuf, /**< `(S)` LLDP MED inventory "Manufacturer" */
765 lldpctl_k_chassis_med_inventory_model, /**< `(S)` LLDP MED inventory "Model" */
766 lldpctl_k_chassis_med_inventory_asset, /**< `(S)` LLDP MED inventory "Asset ID" */
767
d1dc456f 768 lldpctl_k_port_med_policies = 2000, /**< `(AL,WO)` MED policies attached to a port. */
b1eceab6
VB
769 lldpctl_k_med_policy_type, /**< `(IS,W)` MED policy app type. See `LLDP_MED_APPTYPE_*`. 0 if a policy is not defined. */
770 lldpctl_k_med_policy_unknown, /**< `(I,W)` Is MED policy defined? */
771 lldpctl_k_med_policy_tagged, /**< `(I,W)` MED policy tagging */
772 lldpctl_k_med_policy_vid, /**< `(I,W)` MED policy VID */
773 lldpctl_k_med_policy_priority, /**< `(I,W)` MED policy priority */
774 lldpctl_k_med_policy_dscp, /**< `(I,W)` MED policy DSCP */
775
d1dc456f 776 lldpctl_k_port_med_locations = 2100, /**< `(AL,WO)` MED locations attached to a port. */
b1eceab6
VB
777 lldpctl_k_med_location_format, /**< `(IS,W)` MED location format. See
778 * `LLDP_MED_LOCFORMAT_*`. 0 if this
4b292b55
VB
779 * location is not defined. When written,
780 * the following fields will be zeroed
781 * out. */
b1eceab6
VB
782 lldpctl_k_med_location_geoid, /**< `(IS,W)` MED geoid. See `LLDP_MED_LOCATION_GEOID_*`. Only if format is COORD. */
783 lldpctl_k_med_location_latitude, /**< `(S,W)` MED latitude. Only if format is COORD. */
784 lldpctl_k_med_location_longitude, /**< `(S,W)` MED longitude. Only if format is COORD. */
785 lldpctl_k_med_location_altitude, /**< `(S,W)` MED altitude. Only if format is COORD. */
786 lldpctl_k_med_location_altitude_unit, /**< `(S,W)` MED altitude unit. See `LLDP_MED_LOCATION_ALTITUDE_UNIT_*`.
4b292b55
VB
787 * Only if format is COORD. */
788
d1dc456f 789 lldpctl_k_med_location_country = 2200, /**< `(S,W)` MED country. Only if format is CIVIC. */
b1eceab6 790 lldpctl_k_med_location_elin, /**< `(S,W)` MED ELIN. Only if format is ELIN. */
4b292b55 791
d1dc456f 792 lldpctl_k_med_location_ca_elements = 2300, /**< `(AL,WC)` MED civic address elements. Only if format is CIVIC */
b1eceab6
VB
793 lldpctl_k_med_civicaddress_type, /**< `(IS,W)` MED civic address type. */
794 lldpctl_k_med_civicaddress_value, /**< `(S,W)` MED civic address value. */
4b292b55 795
d1dc456f 796 lldpctl_k_port_med_power = 2400, /**< `(A,WO)` LLDP-MED power related stuff. */
b1eceab6
VB
797 lldpctl_k_med_power_type, /**< `(IS,W)` LLDP MED power device type. See `LLDP_MED_POW_TYPE_*` */
798 lldpctl_k_med_power_source, /**< `(IS,W)` LLDP MED power source. See `LLDP_MED_POW_SOURCE_*` */
799 lldpctl_k_med_power_priority, /**< `(IS,W)` LLDP MED power priority. See `LLDP_MED_POW_PRIO_*` */
800 lldpctl_k_med_power_val, /**< `(I,W)` LLDP MED power value */
4b292b55 801
d1dc456f 802 lldpctl_k_mgmt_ip = 3000, /**< `(S)` IP address */
d319b0de 803 lldpctl_k_mgmt_iface_index = 30001, /**< `(I)` Interface index */
78356144 804
d1dc456f 805 lldpctl_k_tx_cnt = 4000, /**< `(I)` tx cnt. Only works for a local port. */
78356144 806 lldpctl_k_rx_cnt, /**< `(I)` rx cnt. Only works for a local port. */
807 lldpctl_k_rx_discarded_cnt, /**< `(I)` discarded cnt. Only works for a local port. */
808 lldpctl_k_rx_unrecognized_cnt, /**< `(I)` unrecognized cnt. Only works for a local port. */
809 lldpctl_k_ageout_cnt, /**< `(I)` ageout cnt. Only works for a local port. */
810 lldpctl_k_insert_cnt, /**< `(I)` insert cnt. Only works for a local port. */
811 lldpctl_k_delete_cnt, /**< `(I)` delete cnt. Only works for a local port. */
c10302a3 812 lldpctl_k_config_tx_hold, /**< `(I,WO)` Transmit hold interval. */
dfbd7185 813 lldpctl_k_config_bond_slave_src_mac_type, /**< `(I,WO)` bond slave src mac type. */
8fbd3195 814 lldpctl_k_config_lldp_portid_type, /**< `(I,WO)` LLDP PortID TLV Subtype */
1eadc9a1 815 lldpctl_k_config_lldp_agent_type, /**< `(I,WO)` LLDP agent type */
ba1bdf6a 816 lldpctl_k_config_max_neighbors, /**< `(I,WO)`Maximum number of neighbors per port. */
c576fd21
AA
817
818 lldpctl_k_custom_tlvs = 5000, /**< `(AL)` custom TLVs */
819 lldpctl_k_custom_tlvs_clear, /** `(I,WO)` clear list of custom TLVs */
820 lldpctl_k_custom_tlv, /** `(AL,WO)` custom TLV **/
821 lldpctl_k_custom_tlv_oui, /**< `(I,WO)` custom TLV Organizationally Unique Identifier. Default is 0 (3 bytes) */
822 lldpctl_k_custom_tlv_oui_subtype, /**< `(I,WO)` custom TLV subtype. Default is 0 (1 byte) */
823 lldpctl_k_custom_tlv_oui_info_string, /**< `(I,WO)` custom TLV Organizationally Unique Identifier Information String (up to 507 bytes) */
7c26c8b4 824 lldpctl_k_custom_tlv_op, /**< `(I,WO)` custom TLV operation */
c576fd21 825
4b292b55
VB
826} lldpctl_key_t;
827
6fcf11ca
VB
828/**
829 * Get a map related to a key.
830 *
831 * Many keys expect to be written with a discrete number of values. Take for
832 * example @c lldpctl_k_med_civicaddress_type, it can take any integer between 1
833 * and 128. However, each integer can be named. It can be useful for an
834 * application to get a translation between the integer that can be provided and
835 * a more human-readable name. This function allows to retrieve the
836 * corresponding map.
837 *
838 * @param key The piece of information we want a map from.
9cac8fed 839 * @return The map or @c NULL if no map is available.
6fcf11ca
VB
840 *
841 * The returned map has its last element set to 0. It is also expected that the
842 * string value can be used with a set operation. It will be translated to the
843 * integer value.
844 */
845lldpctl_map_t *lldpctl_key_get_map(lldpctl_key_t key);
846
4b292b55
VB
847/**
848 * Retrieve a bit of information as an atom.
849 *
850 * @param atom The atom we want to query.
851 * @param key The information we want from the atom.
852 * @return The atom representing the requested information or @c NULL if the
853 * information is not available.
854 *
855 * Not every value of @c info will be available as an atom. See the
856 * documentation of @c lldpctl_key_t for values accepting to be extracted as an
857 * atom. Usually, this is only iterable values or values representing a complex
858 * object.
859 *
860 * The provided atom is not a _borrowed_ reference. You need to decrement the
861 * reference count when you don't need it anymore.
862 *
863 * As a convenience, this function will return @c NULL if the first parameter is
864 * @c NULL and no error will be raised.
865 */
866lldpctl_atom_t *lldpctl_atom_get(lldpctl_atom_t *atom, lldpctl_key_t key);
867
868/**
869 * Set a bit of information with an atom.
870 *
871 * @param atom The atom we want to write to.
872 * @param key The key information we want to write.
873 * @param value The value of the information we want to write.
874 * @return The updated atom with the appropriate information.
875 *
876 * This function will return @c NULL in case of error. If the last error is @c
877 * LLDPCTL_ERR_WOULDBLOCK, the write should be retried later with the exact same
878 * parameters. LLDPCTL_ERR_BAD_VALUE is raised when the provided atom is not
879 * correct.
880 */
881lldpctl_atom_t *lldpctl_atom_set(lldpctl_atom_t *atom, lldpctl_key_t key,
882 lldpctl_atom_t *value);
883
884/**
885 * Retrieve a bit of information as a null-terminated string.
886 *
887 * @param atom The atom we want to query.
888 * @param key The information we want from the atom.
889 * @return The requested string or @c NULL if the information is not available.
890 *
891 * Not every value of @c info will be available as a string. See the
892 * documentation of @c lldpctl_key_t for values accepting to be extracted as a
893 * string. Usually, only piece of information stored as string are available in
894 * this form but sometimes, you can get a nice formatted string instead of an
895 * integer with this function.
896 *
897 * As a convenience, this function will return @c NULL if the first parameter is
898 * @c NULL and no error will be raised.
899 *
900 * The provided string may live inside the atom providing it. If you need it
901 * longer, duplicate it.
902 */
903const char *lldpctl_atom_get_str(lldpctl_atom_t *atom, lldpctl_key_t key);
904
905/**
906 * Set a bit of information using a null-terminated string.
907 *
908 * @param atom The atom we want to write to.
909 * @param key The key information we want to write.
910 * @param value The value of the information we want to write.
911 * @return The updated atom with the appropriate information.
912 *
913 * This function will return @c NULL in case of error. If the last error is @c
914 * LLDPCTL_ERR_WOULDBLOCK, the write should be retried later with the exact same
915 * parameters. LLDPCTL_ERR_BAD_VALUE is raised when the provided atom is not
916 * correct.
917 */
918lldpctl_atom_t *lldpctl_atom_set_str(lldpctl_atom_t *atom, lldpctl_key_t key,
919 const char *value);
920
921/**
922 * Retrieve a bit of information as a buffer.
923 *
924 * @param atom The atom we want to query.
925 * @param key The information we want from the atom.
b1eceab6 926 * @param[out] length The size of the returned buffer.
4b292b55
VB
927 * @return The requested buffer or @c NULL if the information is not available.
928 *
929 * Not every value of @c info will be available as a buffer. See the
930 * documentation of @c lldpctl_key_t for values accepting to be extracted as a
931 * string. Usually, only piece of information stored as buffer are available in
932 * this form.
933 *
934 * As a convenience, this function will return @c NULL if the first parameter is
935 * @c NULL and no error will be raised. If this function returns @c NULL, the
936 * third parameter is set to 0.
937 *
938 * The provided buffer may live inside the atom providing it. If you need it
939 * longer, duplicate it.
940 */
ae5cae02 941const uint8_t *lldpctl_atom_get_buffer(lldpctl_atom_t *atom, lldpctl_key_t key,
4b292b55
VB
942 size_t *length);
943
944/**
945 * Set a bit of information using a buffer
946 *
947 * @param atom The atom we want to write to.
948 * @param key The key information we want to write.
949 * @param value The value of the information we want to write.
950 * @param length The length of the provided buffer.
951 * @return The updated atom with the appropriate information.
952 *
953 * This function will return @c NULL in case of error. If the last error is @c
954 * LLDPCTL_ERR_WOULDBLOCK, the write should be retried later with the exact same
955 * parameters. LLDPCTL_ERR_BAD_VALUE is raised when the provided atom is not
956 * correct.
957 */
958lldpctl_atom_t *lldpctl_atom_set_buffer(lldpctl_atom_t *atom, lldpctl_key_t key,
ae5cae02 959 const uint8_t *value, size_t length);
4b292b55
VB
960
961/**
962 * Retrieve a bit of information as an integer.
963 *
964 * @param atom The atom we want to query.
965 * @param key The information we want from the atom.
966 * @return The requested integer or -1 if the information is not available
967 *
968 * Not every value of @c info will be available as an integer. See the
969 * documentation of @c lldpctl_key_t for values accepting to be extracted as a
970 * string. Usually, only piece of information stored as an integer are available
971 * in this form.
972 *
973 * Only @c lldpctl_last_error() can tell if the returned value is an error or
974 * not. However, most values extracted from lldpd cannot be negative.
975 */
976long int lldpctl_atom_get_int(lldpctl_atom_t *atom, lldpctl_key_t key);
977
978/**
979 * Set a bit of information using an integer
980 *
981 * @param atom The atom we want to write to.
982 * @param key The key information we want to write.
983 * @param value The value of the information we want to write.
984 * @return The updated atom with the appropriate information.
985 *
986 * This function will return @c NULL in case of error. If the last error is @c
987 * LLDPCTL_ERR_WOULDBLOCK, the write should be retried later with the exact same
988 * parameters. LLDPCTL_ERR_BAD_VALUE is raised when the provided atom is not
989 * correct.
990 */
991lldpctl_atom_t *lldpctl_atom_set_int(lldpctl_atom_t *atom, lldpctl_key_t key,
992 long int value);
993
b1eceab6
VB
994/**
995 * @defgroup liblldpctl_atom_iter Iterating over atoms
996 *
997 * Iterate over atoms (lists).
998 *
999 * @{
1000 */
4b292b55
VB
1001/**
1002 * Iterator over an iterable atom (a list of ports, a list of VLAN, ...). When
1003 * an atom is a list, it can be iterated over to extract the appropriate values.
1004 *
1005 * @see lldpctl_atom_iter(), lldpctl_atom_iter_next(), lldpctl_atom_iter_value()
1006 */
1007typedef struct lldpctl_atom_iter_t lldpctl_atom_iter_t;
1008
1009/**
1010 * Return an iterator over a given atom.
1011 *
1012 * If an atom is iterable (if it is a list, like a list of ports, a list of
1013 * VLAN, a list of neighbors), it is possible to iterate over it. First use this
1014 * function to get an iterator then use @c lldpctl_atom_iter_next() to get the
1015 * next item and @c lldpctl_atom_iter_value() to the actuel item.
1016 *
1017 * @param atom The atom we want to create an iterator from.
1018 * @return The iterator or @c NULL if an error happened or if the atom is empty
1019 * (check with @c lldpctl_last_error()).
1020 *
1021 * As a convenience, if the provided atom is @c NULL, this function will return
1022 * @c NULL and no error will be raised.
1023 */
1024lldpctl_atom_iter_t *lldpctl_atom_iter(lldpctl_atom_t *atom);
1025
1026/**
1027 * Return the next element of an iterator.
1028 *
1029 * @param atom The atom we are currently iterating.
1030 * @param iter The iterator we want the next element from.
1031 * @return An iterator starting on the next element or @c NULL if we have no
1032 * more elements
1033 *
1034 * @see lldpctl_atom_iter(), lldpctl_atom_iter_value().
1035 *
1036 * As a convenience, if the provided atom is @c NULL, this function will return
1037 * @c NULL and no error will be raised.
1038 */
1039lldpctl_atom_iter_t *lldpctl_atom_iter_next(lldpctl_atom_t *atom, lldpctl_atom_iter_t *iter);
1040
1041/**
1042 * Return the value of an iterator.
1043 *
1044 * @param atom The atom we are currently iterating.
1045 * @param iter The iterator we want the next element from.
1046 * @return The atom currently associated with the iterator.
1047 *
1048 * @see lldpctl_atom_iter(), lldpctl_atom_iter_next().
1049 */
1050lldpctl_atom_t *lldpctl_atom_iter_value(lldpctl_atom_t *atom, lldpctl_atom_iter_t *iter);
1051
1052/**
1053 * Convenience macro to iter over every value of an iterable object.
1054 *
1055 * @param atom The atom you want to iterate on.
3c5634c1 1056 * @param value Atom name that will be used to contain each value.
4b292b55 1057 *
3c5634c1
VB
1058 * This macro behaves as a for loop. Moreover, at the end of each iteration, the
1059 * reference count of the provided value is decremented. If you need to use it
1060 * outside of the loop, you need to increment it.
4b292b55 1061 */
0ca21286
VB
1062#define lldpctl_atom_foreach(atom, value) \
1063 for (lldpctl_atom_iter_t *iter##_LINE_ = lldpctl_atom_iter(atom); \
1064 iter##_LINE_ && (value = lldpctl_atom_iter_value(atom, iter##_LINE_)); \
1065 iter##_LINE_ = lldpctl_atom_iter_next(atom, iter##_LINE_), \
4b292b55
VB
1066 lldpctl_atom_dec_ref(value))
1067
1068/**
1069 * Create a new value for an iterable element.
1070 *
1071 * The value is meant to be appended using @c lldpctl_atom_set(). Currently,
1072 * there is no way to delete an element from a list. It is also not advisable to
1073 * use getters on a newly created object until it is fully initialized. If its
1074 * internal representation is using a buffer, it may not be initialized until
1075 * the first set.
1076 *
1077 * @param atom The atom we want to create a new element for.
1078 * @return The new element.
1079 */
1080lldpctl_atom_t *lldpctl_atom_create(lldpctl_atom_t *atom);
b1eceab6
VB
1081/**@}*/
1082/**@}*/
4b292b55
VB
1083
1084#ifdef __cplusplus
1085}
1086#endif
1087
b1eceab6
VB
1088/**@}*/
1089
4b292b55 1090#endif