public.h
Go to the documentation of this file.
1 /*
2  ** public.h
3  ** fixbuf IPFIX Implementation Public Interface
4  **
5  ** ------------------------------------------------------------------------
6  ** Copyright (C) 2006-2014 Carnegie Mellon University. All Rights Reserved.
7  ** ------------------------------------------------------------------------
8  ** Authors: Brian Trammell, Dan Ruef
9  ** ------------------------------------------------------------------------
10  ** Use of the libfixbuf system and related source code is subject to the terms
11  ** of the following licenses:
12  **
13  ** GNU Lesser GPL (LGPL) Rights pursuant to Version 2.1, February 1999
14  ** Government Purpose License Rights (GPLR) pursuant to DFARS 252.227.7013
15  **
16  ** NO WARRANTY
17  **
18  ** ANY INFORMATION, MATERIALS, SERVICES, INTELLECTUAL PROPERTY OR OTHER
19  ** PROPERTY OR RIGHTS GRANTED OR PROVIDED BY CARNEGIE MELLON UNIVERSITY
20  ** PURSUANT TO THIS LICENSE (HEREINAFTER THE "DELIVERABLES") ARE ON AN
21  ** "AS-IS" BASIS. CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY
22  ** KIND, EITHER EXPRESS OR IMPLIED AS TO ANY MATTER INCLUDING, BUT NOT
23  ** LIMITED TO, WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE,
24  ** MERCHANTABILITY, INFORMATIONAL CONTENT, NONINFRINGEMENT, OR ERROR-FREE
25  ** OPERATION. CARNEGIE MELLON UNIVERSITY SHALL NOT BE LIABLE FOR INDIRECT,
26  ** SPECIAL OR CONSEQUENTIAL DAMAGES, SUCH AS LOSS OF PROFITS OR INABILITY
27  ** TO USE SAID INTELLECTUAL PROPERTY, UNDER THIS LICENSE, REGARDLESS OF
28  ** WHETHER SUCH PARTY WAS AWARE OF THE POSSIBILITY OF SUCH DAMAGES.
29  ** LICENSEE AGREES THAT IT WILL NOT MAKE ANY WARRANTY ON BEHALF OF
30  ** CARNEGIE MELLON UNIVERSITY, EXPRESS OR IMPLIED, TO ANY PERSON
31  ** CONCERNING THE APPLICATION OF OR THE RESULTS TO BE OBTAINED WITH THE
32  ** DELIVERABLES UNDER THIS LICENSE.
33  **
34  ** Licensee hereby agrees to defend, indemnify, and hold harmless Carnegie
35  ** Mellon University, its trustees, officers, employees, and agents from
36  ** all claims or demands made against them (and any related losses,
37  ** expenses, or attorney's fees) arising out of, or relating to Licensee's
38  ** and/or its sub licensees' negligent use or willful misuse of or
39  ** negligent conduct or willful misconduct regarding the Software,
40  ** facilities, or other rights or assistance granted by Carnegie Mellon
41  ** University under this License, including, but not limited to, any
42  ** claims of product liability, personal injury, death, damage to
43  ** property, or violation of any laws or regulations.
44  **
45  ** Carnegie Mellon University Software Engineering Institute authored
46  ** documents are sponsored by the U.S. Department of Defense under
47  ** Contract FA8721-05-C-0003. Carnegie Mellon University retains
48  ** copyrights in all material produced under this contract. The U.S.
49  ** Government retains a non-exclusive, royalty-free license to publish or
50  ** reproduce these documents, or allow others to do so, for U.S.
51  ** Government purposes only pursuant to the copyright license under the
52  ** contract clause at 252.227.7013.
53  **
54  ** ------------------------------------------------------------------------
55  */
56 
946 #ifndef _FB_PUBLIC_H_
947 #define _FB_PUBLIC_H_
948 #include <fixbuf/autoinc.h>
949 
950 #ifdef __cplusplus
951 extern "C" {
952 #endif
953 
954 #ident "$Id$"
955 
956 /*
957  * Error Handling Definitions
958  */
959 
961 #define FB_ERROR_DOMAIN g_quark_from_string("fixbufError")
962 
963 #define FB_ERROR_TMPL 1
964 
968 #define FB_ERROR_EOM 2
969 
974 #define FB_ERROR_EOF 3
975 
979 #define FB_ERROR_IPFIX 4
980 
985 #define FB_ERROR_BUFSZ 5
986 
987 #define FB_ERROR_IMPL 6
988 
989 #define FB_ERROR_IO 7
990 
994 #define FB_ERROR_NLREAD 8
995 
1000 #define FB_ERROR_NLWRITE 9
1001 
1004 #define FB_ERROR_NOELEMENT 10
1005 
1008 #define FB_ERROR_CONN 11
1009 
1013 #define FB_ERROR_NETFLOWV9 12
1014 
1017 #define FB_ERROR_TRANSMISC 13
1018 
1021 #define FB_ERROR_SFLOW 14
1022 
1023 
1024 /*
1025  * Public Datatypes and Constants
1026  */
1027 
1028 struct fBuf_st;
1034 typedef struct fBuf_st fBuf_t;
1035 
1042 typedef struct fbVarfield_st {
1044  size_t len;
1051  uint8_t *buf;
1052 } fbVarfield_t;
1053 
1054 
1055 struct fbInfoModel_st;
1060 typedef struct fbInfoModel_st fbInfoModel_t;
1061 
1065 typedef struct fbInfoModelIter_st {
1073  guint index;
1075 
1081 #define FB_IE_INIT_FULL(_name_, _ent_, _num_, _len_, _flags_, _min_, _max_, _type_, _desc_)\
1082  { {(const struct fbInfoElement_st*)_name_}, 0, _ent_, _num_, _len_, _flags_, _min_, _max_, _type_, _desc_ }
1083 
1089 #define FB_IE_INIT(_name_, _ent_, _num_, _len_, _flags_) \
1090  FB_IE_INIT_FULL(_name_, _ent_, _num_, _len_, _flags_, 0, 0, 0, (char*)NULL)
1091 
1092 
1098 #define FB_IE_NULL FB_IE_INIT(NULL, 0, 0, 0, 0)
1099 
1105 #define FB_IE_SEMANTIC(flags) ((flags & 0x0000ff00) >> 8)
1106 
1112 #define FB_IE_UNITS(flags) ((flags & 0xFFFF0000) >> 16)
1113 
1118 #define FB_IE_F_NONE 0x00000000
1119 
1124 #define FB_IE_F_ENDIAN 0x00000001
1125 
1135 #define FB_IE_F_REVERSIBLE 0x00000040
1136 
1144 #define FB_IE_F_ALIEN 0x00000080
1145 
1150 #define FB_IE_QUANTITY 0x00000100
1151 
1157 #define FB_IE_TOTALCOUNTER 0x00000200
1158 
1163 #define FB_IE_DELTACOUNTER 0x00000300
1164 
1169 #define FB_IE_IDENTIFIER 0x00000400
1170 
1175 #define FB_IE_FLAGS 0x00000500
1176 
1182 #define FB_IE_LIST 0x00000600
1183 
1189 #define FB_IE_DEFAULT 0x00000000
1190 
1201 #define FB_UNITS_BITS 0x00010000
1202 
1207 #define FB_UNITS_OCTETS 0x00020000
1208 
1213 #define FB_UNITS_PACKETS 0x00030000
1214 
1219 #define FB_UNITS_FLOWS 0x00040000
1220 
1225 #define FB_UNITS_SECONDS 0x00050000
1226 
1231 #define FB_UNITS_MILLISECONDS 0x00060000
1232 
1237 #define FB_UNITS_MICROSECONDS 0x00070000
1238 
1243 #define FB_UNITS_NANOSECONDS 0x00080000
1244 
1249 #define FB_UNITS_WORDS 0x00090000
1250 
1255 #define FB_UNITS_MESSAGES 0x000A0000
1256 
1261 #define FB_UNITS_HOPS 0x000B0000
1262 
1267 #define FB_UNITS_ENTRIES 0x000C0000
1268 
1273 #define FB_UNITS_FRAMES 0x000D0000
1274 
1278 #define FB_IE_VARLEN 65535
1279 
1284 #define FB_IE_BASIC_LIST 291
1285 
1289 #define FB_IE_SUBTEMPLATE_LIST 292
1290 
1294 #define FB_IE_SUBTEMPLATE_MULTILIST 293
1295 
1303 #define FB_IE_PEN_REVERSE 29305
1304 
1313 #define FB_IE_VENDOR_BIT_REVERSE 0x4000
1314 
1320 #define FB_CISCO_GENERIC 9999
1321 
1328 #define FB_CISCO_ASA_EVENT_ID 9998
1329 
1338 #define FB_CISCO_ASA_EVENT_XTRA 9997
1339 
1344 #define FB_IE_REVERSE_STR "reverse"
1345 
1347 #define FB_IE_REVERSE_STRLEN 7
1348 
1355  FB_OCTET_ARRAY,
1356  FB_UINT_8,
1357  FB_UINT_16,
1358  FB_UINT_32,
1359  FB_UINT_64,
1360  FB_INT_8,
1361  FB_INT_16,
1362  FB_INT_32,
1363  FB_INT_64,
1364  FB_FLOAT_32,
1365  FB_FLOAT_64,
1366  FB_BOOL,
1367  FB_MAC_ADDR,
1368  FB_STRING,
1369  FB_DT_SEC,
1370  FB_DT_MILSEC,
1371  FB_DT_MICROSEC,
1372  FB_DT_NANOSEC,
1373  FB_IP4_ADDR,
1374  FB_IP6_ADDR,
1375  FB_BASIC_LIST,
1376  FB_SUB_TMPL_LIST,
1377  FB_SUB_TMPL_MULTI_LIST
1379 
1388 typedef struct fbInfoElement_st {
1390  union {
1396  const struct fbInfoElement_st *canon;
1401  const char *name;
1402  } ref;
1403 
1409  uint32_t midx;
1411  uint32_t ent;
1416  uint16_t num;
1418  uint16_t len;
1421  uint32_t flags;
1423  uint64_t min;
1425  uint64_t max;
1427  uint8_t type;
1429  const char *description;
1430 } fbInfoElement_t;
1431 
1438 typedef struct fbInfoElementOptRec_st {
1440  uint64_t ie_range_begin;
1442  uint64_t ie_range_end;
1444  uint32_t ie_pen;
1446  uint16_t ie_units;
1448  uint16_t ie_id;
1450  uint8_t ie_type;
1452  uint8_t ie_semantic;
1454  uint8_t padding[6];
1460 
1465 #define FB_TID_AUTO 0
1466 
1470 #define FB_TID_TS 2
1471 
1475 #define FB_TID_OTS 3
1476 
1480 #define FB_TID_MIN_DATA 256
1481 
1482 struct fbTemplate_st;
1489 
1495 #define FB_IESPEC_NULL { NULL, 0, 0 }
1496 
1502 typedef struct fbInfoElementSpec_st {
1504  char *name;
1509  uint16_t len_override;
1516  uint32_t flags;
1518 
1519 struct fbSession_st;
1526 typedef struct fbSession_st fbSession_t;
1527 
1529 typedef enum fbTransport_en {
1556 } fbTransport_t;
1557 
1562 typedef struct fbConnSpec_st {
1566  char *host;
1568  char *svc;
1581  void *vai;
1586  void *vssl_ctx;
1587 } fbConnSpec_t;
1588 
1592 #define FB_CONNSPEC_INIT { FB_SCTP, NULL, NULL, \
1593  NULL, NULL, NULL, NULL, \
1594  NULL, NULL }
1595 
1596 #if HAVE_SPREAD
1597 
1602 #define FB_SPREADPARAMS_INIT { 0, 0, 0 }
1603 
1604 typedef struct fbSpreadParams_st {
1607  fbSession_t * session;
1610  char * daemon;
1613  char ** groups;
1614 } fbSpreadParams_t;
1615 
1616 #endif /* HAVE_SPREAD */
1617 
1618 struct fbExporter_st;
1624 typedef struct fbExporter_st fbExporter_t;
1625 
1626 struct fbCollector_st;
1634 typedef struct fbCollector_st fbCollector_t;
1635 
1636 struct fbListener_st;
1643 typedef struct fbListener_st fbListener_t;
1644 
1649 
1654 {
1661 };
1662 
1667 
1674 {
1681 };
1682 
1683 struct fbListenerGroup_st;
1687 typedef struct fbListenerGroup_st fbListenerGroup_t;
1688 
1705 typedef void (*fbNewTemplateCallback_fn) (
1706  fbSession_t *session,
1707  uint16_t tid,
1708  fbTemplate_t *tmpl);
1709 
1717 typedef void (*fbTemplateCtxFree_fn)(
1718  void *ctx);
1719 
1729 typedef void (*fbTemplateCtxFree2_fn)(
1730  void *tmpl_ctx,
1731  void *app_ctx);
1732 
1733 
1760 typedef void (*fbTemplateCtxCallback_fn) (
1761  fbSession_t *session,
1762  uint16_t tid,
1763  fbTemplate_t *tmpl,
1764  void **ctx,
1765  fbTemplateCtxFree_fn *fn);
1766 
1791 typedef void (*fbTemplateCtxCallback2_fn) (
1792  fbSession_t *session,
1793  uint16_t tid,
1794  fbTemplate_t *tmpl,
1795  void *app_ctx,
1796  void **tmpl_ctx,
1797  fbTemplateCtxFree2_fn *fn);
1798 
1799 
1807 #define FB_LIST_SEM_UNDEFINED 0xFF
1808 
1811 #define FB_LIST_SEM_NONE_OF 0x00
1812 
1815 #define FB_LIST_SEM_EXACTLY_ONE_OF 0x01
1816 
1819 #define FB_LIST_SEM_ONE_OR_MORE_OF 0x02
1820 
1823 #define FB_LIST_SEM_ALL_OF 0x03
1824 
1827 #define FB_LIST_SEM_ORDERED 0x04
1828 
1835 gboolean fbListValidSemantic(
1836  uint8_t semantic);
1837 
1838 /****** BASICLIST FUNCTIONS AND STRUCTS *******/
1844 typedef struct fbBasicList_st {
1848  uint8_t *dataPtr;
1850  uint16_t numElements;
1852  uint16_t dataLength;
1854  uint8_t semantic;
1855 } fbBasicList_t;
1856 
1857 
1864  void);
1865 
1878 void* fbBasicListInit(
1879  fbBasicList_t *basicListPtr,
1880  uint8_t semantic,
1881  const fbInfoElement_t *infoElement,
1882  uint16_t numElements);
1883 
1899  fbBasicList_t *basicListPtr,
1900  uint8_t semantic,
1901  const fbInfoElement_t *infoElement,
1902  uint16_t numElements,
1903  uint16_t dataLength,
1904  uint8_t *dataPtr);
1905 
1919  fbBasicList_t *basicListPtr);
1920 
1921 
1929 uint8_t fbBasicListGetSemantic(
1930  fbBasicList_t *basicListPtr);
1931 
1941  fbBasicList_t *basicListPtr,
1942  uint8_t semantic);
1943 
1944 
1953  fbBasicList_t *basicListPtr);
1954 
1960 void* fbBasicListGetDataPtr(
1961  fbBasicList_t *basicListPtr);
1962 
1972  fbBasicList_t *basicListPtr,
1973  uint16_t bl_index);
1974 
1983 void* fbBasicListGetNextPtr(
1984  fbBasicList_t *basicListPtr,
1985  void *currentPtr);
1986 
1996 void* fbBasicListRealloc(
1997  fbBasicList_t *basicList,
1998  uint16_t newNumElements);
1999 
2008  fbBasicList_t *basicList,
2009  uint16_t numNewElements);
2010 
2016 void fbBasicListClear(
2017  fbBasicList_t *basicListPtr);
2018 
2026  fbBasicList_t *basicList);
2027 
2033 void fbBasicListFree(
2034  fbBasicList_t *basicListPtr);
2035 
2036 /******* END OF BASICLIST ********/
2037 
2038 
2039 
2040 /******* SUBTEMPLATELIST FUNCTIONS ****/
2041 
2049 typedef struct fbSubTemplateList_st {
2052  union {
2053  size_t length;
2054  uint64_t extra;
2055  } dataLength;
2059  uint8_t *dataPtr;
2061  uint16_t tmplID;
2063  uint16_t numElements;
2065  uint8_t semantic;
2067 
2075  void);
2076 
2089 void* fbSubTemplateListInit(
2090  fbSubTemplateList_t *sTL,
2091  uint8_t semantic,
2092  uint16_t tmplID,
2093  const fbTemplate_t *tmpl,
2094  uint16_t numElements);
2095 
2111  fbSubTemplateList_t *subTemplateList,
2112  uint8_t semantic,
2113  uint16_t tmplID,
2114  const fbTemplate_t *tmpl,
2115  uint16_t numElements,
2116  uint16_t dataLength,
2117  uint8_t *dataPtr);
2118 
2130  fbSubTemplateList_t *STL);
2131 
2138  const fbSubTemplateList_t *subTemplateListPtr);
2139 
2148  const fbSubTemplateList_t *subTemplateListPtr,
2149  uint16_t index);
2150 
2163  const fbSubTemplateList_t *subTemplateListPtr,
2164  void *currentPtr);
2165 
2173  fbSubTemplateList_t *subTemplateListPtr,
2174  uint8_t semantic);
2175 
2182  fbSubTemplateList_t *subTemplateListPtr);
2183 
2190  fbSubTemplateList_t *subTemplateListPtr);
2191 
2198  fbSubTemplateList_t *subTemplateListPtr);
2199 
2211  fbSubTemplateList_t *subTemplateList,
2212  uint16_t newNumElements);
2213 
2223  fbSubTemplateList_t *subTemplateList,
2224  uint16_t numNewElements);
2225 
2240  fbSubTemplateList_t *subTemplateListPtr);
2241 
2251  fbSubTemplateList_t *subTemplateListPtr);
2252 
2261  fbSubTemplateList_t *subTemplateListPtr);
2262 
2263 /********* END OF SUBTEMPLATELIST **********/
2285  uint8_t *dataPtr;
2287  size_t dataLength;
2289  uint16_t tmplID;
2291  uint16_t numElements;
2293 
2302  uint16_t numElements;
2304  uint8_t semantic;
2306 
2307 
2316  void);
2317 
2318 
2330  uint8_t semantic,
2331  uint16_t numElements);
2332 
2341  uint8_t semantic);
2342 
2349  fbSubTemplateMultiList_t *STML);
2350 
2358  fbSubTemplateMultiList_t *STML);
2359 
2370  fbSubTemplateMultiList_t *STML);
2371 
2378  fbSubTemplateMultiList_t *STML);
2379 
2391  uint16_t newNumEntries);
2392 
2403  uint16_t numNewEntries);
2404 
2411  fbSubTemplateMultiList_t *STML);
2412 
2422  uint16_t index);
2423 
2437  fbSubTemplateMultiListEntry_t *currentEntry);
2438 
2452  uint16_t tmplID,
2453  fbTemplate_t *tmpl,
2454  uint16_t numElements);
2455 
2468  uint16_t newNumElements);
2469 
2478 
2487 
2501  void *currentPtr);
2502 
2515  uint16_t index);
2516 
2525 
2534 
2535 /************** END OF STML FUNCTIONS */
2536 
2543  void);
2544 
2551 void fbListenerGroupFree(
2552  fbListenerGroup_t *group);
2553 
2564  fbListenerGroup_t *group,
2565  const fbListener_t *listener);
2566 
2577  fbListenerGroup_t *group,
2578  const fbListener_t *listener);
2579 
2591  fbListenerGroup_t *group,
2592  GError **err);
2593 
2594 
2602  fbListenerGroupResult_t *result);
2603 
2617  fbListener_t *listener,
2618  int sock,
2619  GError **err);
2620 
2631  fbListener_t *listener,
2632  int sock,
2633  GError **err);
2634 
2640 void fBufInterruptSocket(
2641  fBuf_t *fbuf);
2642 
2643 
2664 typedef gboolean (*fbListenerAppInit_fn) (
2665  fbListener_t *listener,
2666  void **ctx,
2667  int fd,
2668  struct sockaddr *peer,
2669  size_t peerlen,
2670  GError **err);
2671 
2679 typedef void (*fbListenerAppFree_fn) (
2680  void *ctx);
2681 
2682 /*
2683  * Public Function Calls. These calls will remain available and retain
2684  * their functionality in all subsequent versions of libfixbuf.
2685  */
2686 
2687 
2704 gboolean fBufSetInternalTemplate(
2705  fBuf_t *fbuf,
2706  uint16_t int_tid,
2707  GError **err);
2708 
2726 gboolean fBufSetExportTemplate(
2727  fBuf_t *fbuf,
2728  uint16_t ext_tid,
2729  GError **err);
2730 
2731 #if HAVE_SPREAD
2732 
2749 void fBufSetSpreadExportGroup(
2750  fBuf_t *fbuf,
2751  char **groups,
2752  int num_groups,
2753  GError **err);
2754 #endif
2755 
2771  fBuf_t *fbuf,
2772  gboolean automatic);
2773 
2788 gboolean fBufSetAutomaticInsert(
2789  fBuf_t *fbuf,
2790  GError **err);
2791 
2792 
2801  fBuf_t *fbuf);
2802 
2811 void fBufFree(
2812  fBuf_t *fbuf);
2813 
2827  fbSession_t *session,
2828  fbExporter_t *exporter);
2829 
2840  fBuf_t *fbuf);
2841 
2852 void fBufSetExporter(
2853  fBuf_t *fbuf,
2854  fbExporter_t *exporter);
2855 
2856 
2868 size_t fBufRemaining(
2869  fBuf_t *fbuf);
2870 
2871 
2884 void fBufSetBuffer(
2885  fBuf_t *fbuf,
2886  uint8_t *buf,
2887  size_t buflen);
2888 
2889 
2913 gboolean fBufAppend(
2914  fBuf_t *fbuf,
2915  uint8_t *recbase,
2916  size_t recsize,
2917  GError **err);
2918 
2928 gboolean fBufEmit(
2929  fBuf_t *fbuf,
2930  GError **err);
2931 
2943 void fBufSetExportTime(
2944  fBuf_t *fbuf,
2945  uint32_t extime);
2946 
2960  fbSession_t *session,
2961  fbCollector_t *collector);
2962 
2973  fBuf_t *fbuf);
2974 
2985 void fBufSetCollector(
2986  fBuf_t *fbuf,
2987  fbCollector_t *collector);
2988 
3018 gboolean fBufNext(
3019  fBuf_t *fbuf,
3020  uint8_t *recbase,
3021  size_t *recsize,
3022  GError **err);
3023 
3037 gboolean fBufNextMessage(
3038  fBuf_t *fbuf,
3039  GError **err);
3040 
3048 uint32_t fBufGetExportTime(
3049  fBuf_t *fbuf);
3050 
3071  fBuf_t *fbuf,
3072  uint16_t *ext_tid);
3073 
3093  fBuf_t *fbuf,
3094  uint16_t *ext_tid,
3095  GError **err);
3096 
3109 
3118 void fbInfoModelFree(
3119  fbInfoModel_t *model);
3120 
3136  fbInfoModel_t *model,
3137  fbInfoElement_t *ie);
3138 
3154  fbInfoModel_t *model,
3155  fbInfoElement_t *ie);
3156 
3169  fbInfoModel_t *model,
3170  const char *name);
3171 
3186  fbInfoModel_t *model,
3187  uint16_t id,
3188  uint32_t ent);
3189 
3198  const fbInfoModel_t *model);
3199 
3207 void fbInfoModelIterInit(
3208  fbInfoModelIter_t *iter,
3209  const fbInfoModel_t *model);
3210 
3222  fbInfoModelIter_t *iter);
3223 
3238  fbInfoModel_t *model,
3239  GError **err);
3240 
3255  fBuf_t *fbuf,
3256  const fbInfoElement_t *model_ie,
3257  uint16_t tid,
3258  GError **err);
3259 
3272  fbInfoModel_t *model,
3273  fbInfoElementOptRec_t *rec);
3274 
3284 gboolean fbInfoModelTypeInfoRecord(
3285  fbTemplate_t *tmpl);
3286 
3305  fbInfoModel_t *model);
3306 
3323 gboolean fbTemplateAppend(
3324  fbTemplate_t *tmpl,
3325  fbInfoElement_t *ex_ie,
3326  GError **err);
3327 
3343 gboolean fbTemplateAppendSpec(
3344  fbTemplate_t *tmpl,
3345  fbInfoElementSpec_t *spec,
3346  uint32_t flags,
3347  GError **err);
3348 
3366 gboolean fbTemplateAppendSpecArray(
3367  fbTemplate_t *tmpl,
3368  fbInfoElementSpec_t *spec,
3369  uint32_t flags,
3370  GError **err);
3371 
3379 uint32_t fbTemplateCountElements(
3380  fbTemplate_t *tmpl);
3381 
3392  fbTemplate_t *tmpl,
3393  uint16_t scope_count);
3394 
3402 uint32_t fbTemplateGetOptionsScope(
3403  fbTemplate_t *tmpl);
3404 
3416 gboolean fbTemplateContainsElement(
3417  fbTemplate_t *tmpl,
3418  const fbInfoElement_t *ex_ie);
3419 
3430  fbTemplate_t *tmpl,
3431  fbInfoElementSpec_t *spec);
3432 
3443  fbTemplate_t *tmpl,
3444  fbInfoElementSpec_t *spec);
3445 
3457  fbTemplate_t *tmpl,
3458  fbInfoElementSpec_t *spec,
3459  uint32_t flags);
3460 
3470  fbTemplate_t *tmpl,
3471  uint32_t IEindex);
3472 
3481  fbTemplate_t *tmpl);
3482 
3490 void *fbTemplateGetContext(
3491  fbTemplate_t *tmpl);
3492 
3511  fbInfoModel_t *model);
3512 
3522  fbSession_t *session);
3523 
3524 
3549  fbSession_t *session,
3550  fbNewTemplateCallback_fn callback);
3551 
3590  fbSession_t *session,
3591  fbTemplateCtxCallback_fn callback);
3592 
3626  fbSession_t *session,
3627  fbTemplateCtxCallback2_fn callback,
3628  void *app_ctx);
3629 
3654  fbSession_t *session,
3655  uint16_t ent_tid,
3656  uint16_t int_tid);
3657 
3668  fbSession_t *session,
3669  uint16_t ext_tid);
3670 
3680  fbSession_t *session,
3681  uint16_t ext_tid);
3682 
3692 void fbSessionFree(
3693  fbSession_t *session);
3694 
3708  fbSession_t *session);
3709 
3725 void fbSessionSetDomain(
3726  fbSession_t *session,
3727  uint32_t domain);
3728 
3736 uint32_t fbSessionGetDomain(
3737  fbSession_t *session);
3738 
3747  fbSession_t *session);
3748 
3749 #if HAVE_SPREAD
3750 
3771 gboolean fbSessionAddTemplatesMulticast(
3772  fbSession_t *session,
3773  char **groups,
3774  gboolean internal,
3775  uint16_t tid,
3776  fbTemplate_t *tmpl,
3777  GError **err);
3778 
3779 #endif
3780 
3793 gboolean fbSessionExportTemplate(
3794  fbSession_t *session,
3795  uint16_t tid,
3796  GError **err);
3797 
3809 gboolean fbSessionExportTemplates(
3810  fbSession_t *session,
3811  GError **err);
3812 
3831 uint16_t fbSessionAddTemplate(
3832  fbSession_t *session,
3833  gboolean internal,
3834  uint16_t tid,
3835  fbTemplate_t *tmpl,
3836  GError **err);
3837 
3850 gboolean fbSessionRemoveTemplate(
3851  fbSession_t *session,
3852  gboolean internal,
3853  uint16_t tid,
3854  GError **err);
3855 
3868  fbSession_t *session,
3869  gboolean internal,
3870  uint16_t tid,
3871  GError **err);
3872 
3886  fbConnSpec_t *spec);
3887 
3888 #if HAVE_SPREAD
3889 
3900 int fbCollectorGetSpreadReturnGroups(
3901  fbCollector_t *collector,
3902  char *groups[]);
3903 
3917 fbExporter_t *fbExporterAllocSpread(
3918  fbSpreadParams_t *params );
3919 
3920 #endif /* HAVE_SPREAD */
3921 
3934  const char *path);
3935 
3946  uint8_t *buf,
3947  uint16_t bufsize);
3948 
3949 
3959  FILE *fp);
3960 
3973 void fbExporterSetStream(
3974  fbExporter_t *exporter,
3975  int sctp_stream);
3976 
3990  fbExporter_t *exporter);
3991 
3999 void fbExporterClose(
4000  fbExporter_t *exporter);
4001 
4008 size_t fbExporterGetMsgLen(
4009  fbExporter_t *exporter);
4010 
4024  void *ctx,
4025  const char *path,
4026  GError **err);
4027 
4039  void *ctx,
4040  FILE *fp);
4041 
4042 
4043 #if HAVE_SPREAD
4044 
4054 fbCollector_t *fbCollectorAllocSpread(
4055  void *ctx,
4056  fbSpreadParams_t *params,
4057  GError **err );
4058 
4059 #endif /* HAVE_SPREAD */
4060 
4071 void *fbCollectorGetContext(
4072  fbCollector_t *collector);
4073 
4084 void fbCollectorClose(
4085  fbCollector_t *collector);
4086 
4087 
4100  fbCollector_t *collector,
4101  struct sockaddr *address,
4102  size_t address_length);
4103 
4133  fbConnSpec_t *spec,
4134  fbSession_t *session,
4135  fbListenerAppInit_fn appinit,
4136  fbListenerAppFree_fn appfree,
4137  GError **err);
4138 
4146 void fbListenerFree(
4147  fbListener_t *listener);
4148 
4172  fbListener_t *listener,
4173  GError **err);
4174 
4186  fbListener_t *listener,
4187  GError **err);
4188 
4196 void fbListenerInterrupt(
4197  fbListener_t *listener);
4198 
4199 
4215 gboolean fbListenerGetCollector(
4216  fbListener_t *listener,
4217  fbCollector_t **collector,
4218  GError **err);
4219 
4220 
4221 
4222 
4239  fbCollector_t *collector,
4240  GError **err);
4241 
4242 
4259  fbCollector_t *collector,
4260  GError **err);
4261 
4262 
4279  fbCollector_t *collector,
4280  GError **err);
4281 
4303  fbCollector_t *collector,
4304  struct sockaddr *peer,
4305  size_t peerlen,
4306  uint32_t obdomain);
4307 
4325 uint32_t fbCollectorGetSFlowMissed(
4326  fbCollector_t *collector,
4327  struct sockaddr *peer,
4328  size_t peerlen,
4329  uint32_t obdomain);
4330 
4337 struct sockaddr* fbCollectorGetPeer(
4338  fbCollector_t *collector);
4339 
4350  fbCollector_t *collector);
4351 
4365  fbCollector_t *collector,
4366  gboolean multi_session);
4367 
4383  fbCollector_t *collector,
4384  gboolean manage_port);
4385 
4386 #ifdef __cplusplus
4387 } /* extern "C" */
4388 #endif
4389 
4390 #endif
fbInfoElement_t * fbTemplateGetIndexedIE(fbTemplate_t *tmpl, uint32_t IEindex)
Return the information element in the template referenced by the index.
uint32_t ent
Private Enterprise Number.
Definition: public.h:1411
struct fbSubTemplateMultiListEntry_st fbSubTemplateMultiListEntry_t
Entries contain the same type of information at SubTemplateLists: template ID and template pointers t...
fbExporter_t * fbExporterAllocFile(const char *path)
Allocate an exporting process endpoint for a named file.
fbListener_t * listener
pointer to the listener that received a new connection
Definition: public.h:1678
void fbTemplateFreeUnused(fbTemplate_t *tmpl)
Free a template if it is not currently in use by any Session.
char * ssl_ca_file
Path to certificate authority file.
Definition: public.h:1570
fbExporter_t * fbExporterAllocBuffer(uint8_t *buf, uint16_t bufsize)
Allocate an exporting process for a buffer.
void * vai
Pointer to address info cache.
Definition: public.h:1581
uint32_t ie_pen
private enterprise number
Definition: public.h:1444
A variable-length field value.
Definition: public.h:1042
void fbSubTemplateMultiListClearEntries(fbSubTemplateMultiList_t *STML)
Clears the memory used by the entries of a sub template multi list NOTE: if any of those entries cont...
void fbBasicListClearWithoutFree(fbBasicList_t *basicList)
Clear the parameters of the basic list, but do not free the buffer.
uint32_t fbTemplateGetOptionsScope(fbTemplate_t *tmpl)
Determine number of scope information elements in a template.
fbExporter_t * fbExporterAllocFP(FILE *fp)
Allocate an exporting process endpoint for an opened ANSI C file pointer.
gboolean fBufAppend(fBuf_t *fbuf, uint8_t *recbase, size_t recsize, GError **err)
Append a record to a buffer.
char * ssl_cert_file
Path to certificate file.
Definition: public.h:1572
Partially reliable datagram transport via SCTP.
Definition: public.h:1534
uint64_t ie_range_begin
ie range min
Definition: public.h:1440
uint16_t numElements
number of elements in the list
Definition: public.h:2063
uint64_t min
range min
Definition: public.h:1423
uint64_t ie_range_end
ie range max
Definition: public.h:1442
void fbBasicListFree(fbBasicList_t *basicListPtr)
Clear the basic list, then free the basic list pointer.
const fbInfoElement_t * fbInfoModelGetElementByName(fbInfoModel_t *model, const char *name)
Return a pointer to the canonical information element within an information model given the informati...
void fbExporterClose(fbExporter_t *exporter)
Force the file or socket underlying an exporting process endpoint to close.
fBuf_t * fbuf
pointer to the fbuf created for that new connection
Definition: public.h:1680
uint16_t tmplID
ID of the template used to structure the data in this entry.
Definition: public.h:2289
void * fbBasicListInitWithOwnBuffer(fbBasicList_t *basicListPtr, uint8_t semantic, const fbInfoElement_t *infoElement, uint16_t numElements, uint16_t dataLength, uint8_t *dataPtr)
use this function to initialize the basic list, but it gets the pointer to a buffer and its length al...
void fbSessionSetDomain(fbSession_t *session, uint32_t domain)
Set the current observation domain on a session.
fbCollector_t * fbSessionGetCollector(fbSession_t *session)
Retrieve collector that was created with the session.
const fbInfoElement_t * fbBasicListGetInfoElement(fbBasicList_t *basicListPtr)
This function returns a pointer to the information element used in the list it is mainly used in coll...
fBuf_t * fbListenerWait(fbListener_t *listener, GError **err)
Wait on a listener.
Multilists just contain the semantic to describe the sub lists, the number of sub lists...
Definition: public.h:2298
struct fbConnSpec_st fbConnSpec_t
Connection specifier.
void fBufSetAutomaticMode(fBuf_t *fbuf, gboolean automatic)
Set the automatic mode flag on a buffer.
void * fbSubTemplateMultiListEntryRealloc(fbSubTemplateMultiListEntry_t *entry, uint16_t newNumElements)
Frees the memory for the data used by the entry, then allocates a new buffer based on the size of the...
struct fbCollector_st fbCollector_t
IPFIX Collecting Process endpoint.
Definition: public.h:1634
struct fbExporter_st fbExporter_t
IPFIX Exporting Process endpoint.
Definition: public.h:1624
uint8_t semantic
value used to describe the contents of the list, all-of, one-of, etc
Definition: public.h:2065
fbSubTemplateMultiList_t * fbSubTemplateMultiListAlloc(void)
Allocates a subTemplateMultiList_t Based on how subTemplateMultiLists will be used and set up amidst ...
Secure, reliable stream transport via TLS over TCP.
Definition: public.h:1549
const fbTemplate_t * tmpl
pointer to the template used to structure the data
Definition: public.h:2057
void fbSubTemplateMultiListSetSemantic(fbSubTemplateMultiList_t *STML, uint8_t semantic)
Sets the semantic field for the multi list.
struct fbSession_st fbSession_t
An IPFIX Transport Session state container.
Definition: public.h:1526
fbSubTemplateMultiListEntry_t * fbSubTemplateMultiListInit(fbSubTemplateMultiList_t *STML, uint8_t semantic, uint16_t numElements)
Initializes the multi list with semantic, numbers of elements, and allocates memory to store numEleme...
size_t dataLength
length of the buffer used to hold the data in this entry
Definition: public.h:2287
void fbSessionRemoveTemplatePair(fbSession_t *session, uint16_t ext_tid)
remove a template pair from the list this is called by fixbuf when a template is revoked from the ses...
struct fbListenerGroup_st fbListenerGroup_t
Structure that holds the listeners that are added to the group.
Definition: public.h:1687
void * fbSubTemplateListInit(fbSubTemplateList_t *sTL, uint8_t semantic, uint16_t tmplID, const fbTemplate_t *tmpl, uint16_t numElements)
Initializes a subTemplateList structure and alloc's the dataPtr to get a buffer able to hold numEleme...
struct fbListener_st fbListener_t
IPFIX Collecting Process session listener.
Definition: public.h:1643
size_t len
Length of content in buffer.
Definition: public.h:1044
Unreliable datagram transport via UDP.
Definition: public.h:1538
uint16_t dataLength
length of the buffer used to store the elements in the list
Definition: public.h:1852
void fbSubTemplateListFree(fbSubTemplateList_t *subTemplateListPtr)
Frees and clears a subTemplateList struct.
void fbSubTemplateListClear(fbSubTemplateList_t *subTemplateListPtr)
Clears a subtemplate list struct, notably freeing the dataPtr and setting it to NULL.
uint32_t fbCollectorGetNetflowMissed(fbCollector_t *collector, struct sockaddr *peer, size_t peerlen, uint32_t obdomain)
fbCollectorGetNetflowMissed
gboolean fbTemplateAppendSpecArray(fbTemplate_t *tmpl, fbInfoElementSpec_t *spec, uint32_t flags, GError **err)
Append information elements described by a specifier array to a template.
uint8_t * dataPtr
pointer to the memory that stores the elements in the list
Definition: public.h:1848
uint16_t num
Information Element number.
Definition: public.h:1416
fbSubTemplateList_t * fbSubTemplateListAlloc(void)
Allocates a subTemplateList_t Based on how subTemplateLists will be used and set up amidst data struc...
gboolean fbCollectorSetNetflowV9Translator(fbCollector_t *collector, GError **err)
fbCollectorSetNetflowV9Translator
struct sockaddr * fbCollectorGetPeer(fbCollector_t *collector)
Retrieves information about the node connected to this collector.
uint16_t numElements
number of elements in the list
Definition: public.h:1850
gboolean fbTemplateAppend(fbTemplate_t *tmpl, fbInfoElement_t *ex_ie, GError **err)
Append an information element to a template.
gboolean fBufEmit(fBuf_t *fbuf, GError **err)
Emit the message currently in a buffer using the associated exporting process endpoint.
void(* fbTemplateCtxCallback_fn)(fbSession_t *session, uint16_t tid, fbTemplate_t *tmpl, void **ctx, fbTemplateCtxFree_fn *fn)
A callback function that will be called when the session receives a new external template.
Definition: public.h:1760
fbSubTemplateMultiListEntry_t * firstEntry
pointer to the first entry in the multi list
Definition: public.h:2300
struct fbInfoElement_st fbInfoElement_t
A single IPFIX Information Element definition.
struct fbBasicList_st fbBasicList_t
A basic list element in a template which structure represents a basic list on the internal side...
fbCollector_t * fbCollectorAllocFP(void *ctx, FILE *fp)
Allocate a collecting process endpoint for an open file.
void fbSessionAddTemplateCallback(fbSession_t *session, fbNewTemplateCallback_fn callback)
This function sets the callback to let the user know when a new template has arrived from the connect...
void fBufInterruptSocket(fBuf_t *fbuf)
Interrupts the select call of a specific collector by way of its fBuf.
uint16_t len
Information element length in octets.
Definition: public.h:1418
fbExporter_t * fbExporterAllocNet(fbConnSpec_t *spec)
Allocate an exporting process endpoint for a network connection.
void fBufSetCollector(fBuf_t *fbuf, fbCollector_t *collector)
Associate an collecting process endpoint with a buffer.
gboolean fbTemplateContainsAllElementsByName(fbTemplate_t *tmpl, fbInfoElementSpec_t *spec)
Determine if a template contains at least one instance of each information element in a given informa...
fbSubTemplateMultiListEntry_t * fbSubTemplateMultiListRealloc(fbSubTemplateMultiList_t *STML, uint16_t newNumEntries)
Clears the entries used by the multi list, then if newNumElements is different than numElements...
void fbSessionAddTemplatePair(fbSession_t *session, uint16_t ent_tid, uint16_t int_tid)
Adds an external-internal template pair to the session.
gboolean fBufNext(fBuf_t *fbuf, uint8_t *recbase, size_t *recsize, GError **err)
Retrieve a record from a buffer.
fBuf_t * fBufAllocForCollection(fbSession_t *session, fbCollector_t *collector)
Allocate a new buffer for collection.
gboolean fbTemplateContainsAllFlaggedElementsByName(fbTemplate_t *tmpl, fbInfoElementSpec_t *spec, uint32_t flags)
Determine if a template contains at least one instance of each information element in a given informa...
void * fbSubTemplateListGetDataPtr(const fbSubTemplateList_t *subTemplateListPtr)
Returns a pointer to the buffer that contains the data for the list.
void fBufFree(fBuf_t *fbuf)
Free a buffer.
void fbBasicListClear(fbBasicList_t *basicListPtr)
Clear the parameters of the basic list and free the data buffer.
const fbInfoElement_t * infoElement
pointer to the information element that is repeated in the list
Definition: public.h:1846
void * fbBasicListGetDataPtr(fbBasicList_t *basicListPtr)
void fbSubTemplateListCollectorInit(fbSubTemplateList_t *STL)
Initializes a sub template list variable on a collector.
void fbSubTemplateListClearWithoutFree(fbSubTemplateList_t *subTemplateListPtr)
Clears the sub template list parameters but does not free the data ptr.
void fBufSetBuffer(fBuf_t *fbuf, uint8_t *buf, size_t buflen)
Set a buffer on an fBuf for collection.
fbSession_t * fbSessionAlloc(fbInfoModel_t *model)
Allocate a transport session state container.
fBuf_t * fbListenerWaitNoCollectors(fbListener_t *listener, GError **err)
Waits for an incoming connection, just like fbListenerWait, except that this function doesn't monitor...
uint16_t fbSessionLookupTemplatePair(fbSession_t *session, uint16_t ext_tid)
Function to find a pair, uniquely identified by the external ID, and return the associated internal t...
struct fbInfoElementOptRec_st fbInfoElementOptRec_t
The corresponding struct to the Information Element Type Options Template.
uint32_t flags
Application flags word.
Definition: public.h:1516
void(* fbNewTemplateCallback_fn)(fbSession_t *session, uint16_t tid, fbTemplate_t *tmpl)
The callback function to be called when the session receives a new external template from the connect...
Definition: public.h:1705
fbExporter_t * fBufGetExporter(fBuf_t *fbuf)
Retrieve the exporting process endpoint associated with a buffer.
struct fbSubTemplateList_st fbSubTemplateList_t
Structure used to hold information of a sub template list.
uint8_t ie_type
ie data type
Definition: public.h:1450
fbTemplate_t * fbInfoElementAllocTypeTemplate(fbInfoModel_t *model, GError **err)
Allocate the Options Template that will be used to define Information Element Type Records...
uint16_t numElements
number of sub template lists in the multi list
Definition: public.h:2302
guint index
iterator index
Definition: public.h:1073
void fbSubTemplateMultiListFree(fbSubTemplateMultiList_t *STML)
Clears the multi list, then frees the memory pointed to by STML.
void fbSubTemplateMultiListClear(fbSubTemplateMultiList_t *STML)
Clears all of the entries (frees their data pointers), then frees the memory containing the entries...
struct fbInfoElementSpec_st fbInfoElementSpec_t
A single IPFIX Information Element specification.
ListenerEntry's make up a listener group as a linked list.
Definition: public.h:1653
fBuf_t * fBufAllocForExport(fbSession_t *session, fbExporter_t *exporter)
Allocate a new buffer for export.
gboolean fbTemplateContainsElement(fbTemplate_t *tmpl, const fbInfoElement_t *ex_ie)
Determine if a template contains a given information element.
void * fbSubTemplateMultiListEntryGetDataPtr(fbSubTemplateMultiListEntry_t *entry)
Retrieves the data pointer for this entry.
ListenerGroupResult's contain the listener who's listening socket got a new connection.
Definition: public.h:1673
fbListenerGroup_t * fbListenerGroupAlloc(void)
Allocates and returns a fbListenerGroup with no entries.
enum fbTransport_en fbTransport_t
Transport protocol for connection specifier.
uint8_t * dataPtr
pointer to the buffer used to hold the data
Definition: public.h:2059
fbInfoModel_t * fbInfoModelAlloc(void)
Allocate a new information model.
fbVarfield_t ie_name
information element name
Definition: public.h:1456
uint8_t semantic
value used to describe the list of sub templates
Definition: public.h:2304
void fbCollectorSetAcceptOnly(fbCollector_t *collector, struct sockaddr *address, size_t address_length)
Set the collector to only receive from the given IP address over UDP.
void(* fbTemplateCtxCallback2_fn)(fbSession_t *session, uint16_t tid, fbTemplate_t *tmpl, void *app_ctx, void **tmpl_ctx, fbTemplateCtxFree2_fn *fn)
A callback function that will be called when the session receives a new external template.
Definition: public.h:1791
uint8_t fbSubTemplateMultiListGetSemantic(fbSubTemplateMultiList_t *STML)
Get the semantic paramter from the multi list.
Structure used to hold information of a sub template list.
Definition: public.h:2049
char * name
Information element name.
Definition: public.h:1504
void * fbSubTemplateListGetNextPtr(const fbSubTemplateList_t *subTemplateListPtr, void *currentPtr)
This function also traverses the elements in the list by accepting a pointer to the last element the ...
void fBufSetExportTime(fBuf_t *fbuf, uint32_t extime)
Set the export time on the message currently in a buffer.
void * vssl_ctx
Pointer to SSL context cache.
Definition: public.h:1586
uint32_t midx
Multiple IE index.
Definition: public.h:1409
size_t fbExporterGetMsgLen(fbExporter_t *exporter)
Get the (transcoded) message length that was copied to the exporting buffer upon fBufEmit().
void * fbBasicListGetNextPtr(fbBasicList_t *basicListPtr, void *currentPtr)
Function returns the next element in the list based on the currentPtr.
fbListenerEntry_t * prev
pointer to the previous listener entry in the linked list
Definition: public.h:1658
char * host
Hostname to connect/listen to.
Definition: public.h:1566
An iterator over the information elements in an information model.
Definition: public.h:1065
gboolean fbSessionExportTemplates(fbSession_t *session, GError **err)
Export all external templates in the current domain of a given session.
fbTemplate_t * fBufNextCollectionTemplate(fBuf_t *fbuf, uint16_t *ext_tid, GError **err)
Retrieve the external template that will be used to read the next record from the buffer...
uint8_t padding[6]
padding to align with template
Definition: public.h:1454
uint32_t fbCollectorGetSFlowMissed(fbCollector_t *collector, struct sockaddr *peer, size_t peerlen, uint32_t obdomain)
fbCollectorGetSFlowMissed
union fbSubTemplateList_st::@2 dataLength
length of the allocated buffer used to hold the data
void fbInfoModelFree(fbInfoModel_t *model)
Free an information model.
uint16_t tmplID
ID of the template used to structure the data.
Definition: public.h:2061
void fbSubTemplateListSetSemantic(fbSubTemplateList_t *subTemplateListPtr, uint8_t semantic)
Sets the semantic parameter of a subTemplateList.
const struct fbInfoElement_st * canon
Pointer to canonical copy of IE.
Definition: public.h:1396
fbTemplate_t * fBufGetCollectionTemplate(fBuf_t *fbuf, uint16_t *ext_tid)
Retrieve the external template used to read the last record from the buffer.
fbCollector_t * fBufGetCollector(fBuf_t *fbuf)
Retrieve the collecting process endpoint associated with a buffer.
gboolean fbInfoElementWriteOptionsRecord(fBuf_t *fbuf, const fbInfoElement_t *model_ie, uint16_t tid, GError **err)
Export an options record to the given fbuf with information element type information about the given ...
void * fbCollectorGetContext(fbCollector_t *collector)
Retrieve the application context associated with a collector.
The corresponding struct to the Information Element Type Options Template.
Definition: public.h:1438
gboolean fBufSetExportTemplate(fBuf_t *fbuf, uint16_t ext_tid, GError **err)
Set the external template for export on a buffer to the given template ID.
void * fbBasicListRealloc(fbBasicList_t *basicList, uint16_t newNumElements)
Free the current data pointer, allocating a new buffer to accomodate the new number of elements...
Secure, unreliable datagram transport via DTLS over UDP.
Definition: public.h:1555
void fbExporterSetStream(fbExporter_t *exporter, int sctp_stream)
Set the SCTP stream for the next message exported.
void * fbSubTemplateMultiListEntryNextDataPtr(fbSubTemplateMultiListEntry_t *entry, void *currentPtr)
This function traverses the elements in the entry by accepting a pointer to the last element the user...
struct fbInfoModel_st fbInfoModel_t
An IPFIX information model.
Definition: public.h:1060
void * fbSubTemplateMultiListEntryGetIndexedPtr(fbSubTemplateMultiListEntry_t *entry, uint16_t index)
Returns a pointer to a data element in the entry based on the index.
uint32_t flags
Flags.
Definition: public.h:1421
gboolean fbInfoElementAddOptRecElement(fbInfoModel_t *model, fbInfoElementOptRec_t *rec)
Add an element that we received via an Options Record to the given info model.
const char * description
description
Definition: public.h:1429
uint16_t numElements
number of elements in this entry
Definition: public.h:2291
gboolean fbTemplateContainsElementByName(fbTemplate_t *tmpl, fbInfoElementSpec_t *spec)
Determine if a template contains at least one instance of a given information element, specified by name in the template's information model.
Reliable stream transport via TCP.
Definition: public.h:1536
void fbInfoModelAddElement(fbInfoModel_t *model, fbInfoElement_t *ie)
Add a single information element to an information model.
uint32_t fbSessionGetDomain(fbSession_t *session)
Retrieve the current domain on a session.
void * fbBasicListAddNewElements(fbBasicList_t *basicList, uint16_t numNewElements)
Allocates an additional elememnt into the basic list must be called after calling BasicListInit...
Entries contain the same type of information at SubTemplateLists: template ID and template pointers t...
Definition: public.h:2281
gboolean(* fbListenerAppInit_fn)(fbListener_t *listener, void **ctx, int fd, struct sockaddr *peer, size_t peerlen, GError **err)
Application context initialization function type for fbListener_t.
Definition: public.h:2664
fbVarfield_t ie_desc
information element description
Definition: public.h:1458
void * fbBasicListInit(fbBasicList_t *basicListPtr, uint8_t semantic, const fbInfoElement_t *infoElement, uint16_t numElements)
Initializes the basic list structure based on the parameters.
int fbListenerGroupAddListener(fbListenerGroup_t *group, const fbListener_t *listener)
Adds a previously allocated listener to the previously allocated group.
gboolean fbInfoModelTypeInfoRecord(fbTemplate_t *tmpl)
Checks to see if the template contains all of the elements the RFC 5610 info element type record shou...
gboolean fBufSetAutomaticInsert(fBuf_t *fbuf, GError **err)
Set the automatic insert flag on a buffer.
void fbExporterAutoStream(fbExporter_t *exporter)
Enable automatic SCTP stream selection for the next message exported.
struct fbVarfield_st fbVarfield_t
A variable-length field value.
fbInfoModel_t * fbSessionGetInfoModel(fbSession_t *session)
fbSessionGetInfoModel
guint fbInfoModelCountElements(const fbInfoModel_t *model)
Return the number of information elements in the information model.
enum fbInfoElementDataType_en fbInfoElementDataType_t
From RFC 5610: A description of the abstract data type of an IPFIX information element as registered ...
union fbInfoElement_st::@1 ref
Information element name.
fbTransport_t transport
Transport protocol to use.
Definition: public.h:1564
void fbSubTemplateMultiListEntryClear(fbSubTemplateMultiListEntry_t *entry)
Frees the memory pointed to by the data buffer holding the data elements.
const fbTemplate_t * fbSubTemplateMultiListEntryGetTemplate(fbSubTemplateMultiListEntry_t *entry)
Retrieve the template pointer used to structure the data elements.
struct fbInfoModelIter_st fbInfoModelIter_t
An iterator over the information elements in an information model.
char * svc
Service name or port number to connect/listen to.
Definition: public.h:1568
void fbCollectorSetUDPMultiSession(fbCollector_t *collector, gboolean multi_session)
Attempt to maintain backwards compatibility with UDP.
void fbSessionAddTemplateCtxCallback(fbSession_t *session, fbTemplateCtxCallback_fn callback)
This function sets the callback that allows the application to set its own context variable with a ne...
uint8_t * dataPtr
pointer to the buffer used to hold the data in this entry
Definition: public.h:2285
void fbCollectorManageUDPStreamByPort(fbCollector_t *collector, gboolean manage_port)
An attempt to fix what some netflow v9 exporters do wrong.
fbListener_t * fbListenerAlloc(fbConnSpec_t *spec, fbSession_t *session, fbListenerAppInit_fn appinit, fbListenerAppFree_fn appfree, GError **err)
Allocate a listener.
const fbInfoElement_t * fbInfoModelGetElementByID(fbInfoModel_t *model, uint16_t id, uint32_t ent)
Return a pointer to the canonical information element within an information model given the informati...
char * ssl_key_pass
Private key decryption password.
Definition: public.h:1576
void fbSessionAddTemplateCtxCallback2(fbSession_t *session, fbTemplateCtxCallback2_fn callback, void *app_ctx)
This function sets the callback that allows the application to set its own context variable with a ne...
uint16_t ie_id
information element id
Definition: public.h:1448
gboolean fBufNextMessage(fBuf_t *fbuf, GError **err)
Read a new message into a buffer using the associated collecting process endpoint.
void * fbSubTemplateListGetIndexedDataPtr(const fbSubTemplateList_t *subTemplateListPtr, uint16_t index)
This function is used to iterate over the elements in the list by passing in a counter to indicate wh...
void * fbBasicListGetIndexedDataPtr(fbBasicList_t *basicListPtr, uint16_t bl_index)
Function retrieves the index'th element in the list index is 0-based.
fbInfoElementDataType_en
From RFC 5610: A description of the abstract data type of an IPFIX information element as registered ...
Definition: public.h:1354
const fbInfoModel_t * model
information Model
Definition: public.h:1069
fbSubTemplateMultiListEntry_t * fbSubTemplateMultiListGetNextEntry(fbSubTemplateMultiList_t *STML, fbSubTemplateMultiListEntry_t *currentEntry)
This function also traverses the elements in the list by accepting a pointer to the last element the ...
uint32_t fBufGetExportTime(fBuf_t *fbuf)
Retrieve the export time on the message currently in a buffer.
void * fbSubTemplateListInitWithOwnBuffer(fbSubTemplateList_t *subTemplateList, uint8_t semantic, uint16_t tmplID, const fbTemplate_t *tmpl, uint16_t numElements, uint16_t dataLength, uint8_t *dataPtr)
Initializes the subTemplateList but does not allocate a buffer.
uint8_t * buf
Content buffer.
Definition: public.h:1051
fbListenerGroupResult_t * fbListenerGroupWait(fbListenerGroup_t *group, GError **err)
Similar to fbListenerWait, except that is looks for connections for multiple listeners.
uint16_t fbSubTemplateListGetTemplateID(fbSubTemplateList_t *subTemplateListPtr)
Gets the template ID for the template used by the list.
fbBasicList_t * fbBasicListAlloc(void)
allocates a Basic List Structure
fbTransport_en
Transport protocol for connection specifier.
Definition: public.h:1529
const fbInfoElement_t * fbInfoModelIterNext(fbInfoModelIter_t *iter)
Return a pointer to the next information element in the information model.
void * fbSubTemplateListRealloc(fbSubTemplateList_t *subTemplateList, uint16_t newNumElements)
Free the current data pointer, allocating a new buffer to accomodate the new number of elements...
void fBufSetExporter(fBuf_t *fbuf, fbExporter_t *exporter)
Associate an exporting process endpoint with a buffer.
An IPFIX template or options template structure.
Definition: private.h:184
fbSubTemplateMultiListEntry_t * fbSubTemplateMultiListGetFirstEntry(fbSubTemplateMultiList_t *STML)
Retrieve the first entry in the multi list.
void(* fbListenerAppFree_fn)(void *ctx)
Application context free function type for fbListener_t.
Definition: public.h:2679
void * fbTemplateGetContext(fbTemplate_t *tmpl)
Get the ctx pointer associated with a Template.
fbListenerEntry_t * next
pointer to the next listener entry in the linked list
Definition: public.h:1656
fbTemplate_t * fbTemplateAlloc(fbInfoModel_t *model)
Allocate a new empty template.
fbCollector_t * fbCollectorAllocFile(void *ctx, const char *path, GError **err)
Allocate a collecting process endpoint for a named file.
struct fbSubTemplateMultiList_st fbSubTemplateMultiList_t
Multilists just contain the semantic to describe the sub lists, the number of sub lists...
fbSession_t * fBufGetSession(fBuf_t *fbuf)
Retrieve the session associated with a buffer.
uint16_t ie_units
ie units
Definition: public.h:1446
void fbBasicListCollectorInit(fbBasicList_t *basicListPtr)
This initializes a basic list structure for collection.
fbListenerGroupResult_t * next
Pointer to the next listener group result.
Definition: public.h:1676
void fbListenerFreeGroupResult(fbListenerGroupResult_t *result)
Free the fbListenerGroupResult_t returned from fbListenerGroupWait.
Secure, partially reliable datagram transport via DTLS over SCTP.
Definition: public.h:1544
void(* fbTemplateCtxFree_fn)(void *ctx)
A callback function that is called when a template is freed.
Definition: public.h:1717
uint32_t fbTemplateCountElements(fbTemplate_t *tmpl)
Determine number of information elements in a template.
uint32_t fbCollectorGetObservationDomain(fbCollector_t *collector)
Retrieves the observation domain of the node connected to the UDP collector.
size_t fBufRemaining(fBuf_t *fbuf)
Retrieve the length of the buffer that is remaining after processing.
void fbCollectorClose(fbCollector_t *collector)
Close the file or socket underlying a collecting process endpoint.
A basic list element in a template which structure represents a basic list on the internal side...
Definition: public.h:1844
void fbListenerGroupFree(fbListenerGroup_t *group)
frees a listener group
fBuf_t * fbListenerOwnSocketCollectorTCP(fbListener_t *listener, int sock, GError **err)
Returns an fBuf wrapped around an independently managed socket and a properly created listener for TC...
uint8_t fbBasicListGetSemantic(fbBasicList_t *basicListPtr)
Get Semantic field for Basic List presumably used in collectors after decoding.
Connection specifier.
Definition: public.h:1562
fbListener_t * listener
pointer to the listener to add to the list
Definition: public.h:1660
fbTemplate_t * tmpl
pointer to the template used to structure the data in this entry
Definition: public.h:2283
struct fBuf_st fBuf_t
An IPFIX message buffer.
Definition: public.h:1034
uint64_t max
range max
Definition: public.h:1425
fbTemplate_t * fbSessionGetTemplate(fbSession_t *session, gboolean internal, uint16_t tid, GError **err)
Retrieve a template from a session by ID.
uint16_t len_override
Length override; if nonzero, replace the length of the IE from the model with this length...
Definition: public.h:1509
gboolean fbSessionExportTemplate(fbSession_t *session, uint16_t tid, GError **err)
Export a single external template in the current domain of a given session.
uint16_t fbSessionAddTemplate(fbSession_t *session, gboolean internal, uint16_t tid, fbTemplate_t *tmpl, GError **err)
Add a template to a session.
fbSubTemplateMultiListEntry_t * fbSubTemplateMultiListAddNewEntries(fbSubTemplateMultiList_t *STML, uint16_t numNewEntries)
Adds entries to the multi list of entries can only be run after the list has been initialized...
void * fbSubTemplateListAddNewElements(fbSubTemplateList_t *subTemplateList, uint16_t numNewElements)
Allocates space for a number of additional element in the sub template list must be called after the ...
uint8_t fbSubTemplateListGetSemantic(fbSubTemplateList_t *subTemplateListPtr)
Gets the semantic value from a sub template list.
gboolean fbTemplateAppendSpec(fbTemplate_t *tmpl, fbInfoElementSpec_t *spec, uint32_t flags, GError **err)
Append an information element described by specifier to a template.
A single IPFIX Information Element definition.
Definition: public.h:1388
int fbListenerGroupDeleteListener(fbListenerGroup_t *group, const fbListener_t *listener)
Removes the listener from the group.
void(* fbTemplateCtxFree2_fn)(void *tmpl_ctx, void *app_ctx)
A callback function that is called when a template is freed.
Definition: public.h:1729
gboolean fbSessionRemoveTemplate(fbSession_t *session, gboolean internal, uint16_t tid, GError **err)
Remove a template from a session.
uint8_t semantic
semantic field to describe the list
Definition: public.h:1854
const char * name
Information element name.
Definition: public.h:1401
const fbTemplate_t * fbSubTemplateListGetTemplate(fbSubTemplateList_t *subTemplateListPtr)
Gets the template pointer from the list structure.
void fbInfoModelIterInit(fbInfoModelIter_t *iter, const fbInfoModel_t *model)
Initialize an information model iterator for iteration.
void fbSessionResetExternal(fbSession_t *session)
Reset the external state (sequence numbers and templates) in a session state container.
uint8_t type
Data Type.
Definition: public.h:1427
uint16_t fbSubTemplateMultiListEntryGetTemplateID(fbSubTemplateMultiListEntry_t *entry)
Retrieve the template ID for the template used to structure the data.
gboolean fbListenerGetCollector(fbListener_t *listener, fbCollector_t **collector, GError **err)
fbListenerGetCollector
gboolean fbCollectorSetSFlowTranslator(fbCollector_t *collector, GError **err)
fbCollectorSetSFlowTranslator
A single IPFIX Information Element specification.
Definition: public.h:1502
void fbListenerInterrupt(fbListener_t *listener)
Cause the current or next call to fbListenerWait to unblock and return.
fBuf_t * fbListenerOwnSocketCollectorTLS(fbListener_t *listener, int sock, GError **err)
Same as fbListenerOwnSocketCollectorTCP but for TLS (not tested)
fbSubTemplateMultiListEntry_t * fbSubTemplateMultiListGetIndexedEntry(fbSubTemplateMultiList_t *STML, uint16_t index)
Retrieve a pointer to the entry of a specific index.
gboolean fbCollectorClearTranslator(fbCollector_t *collector, GError **err)
fbCollectorClearTranslator
char * ssl_key_file
Path to private key file.
Definition: public.h:1574
void fbInfoModelAddElementArray(fbInfoModel_t *model, fbInfoElement_t *ie)
Add multiple information elements in an array to an information model.
void fbBasicListSetSemantic(fbBasicList_t *basicListPtr, uint8_t semantic)
Sets the semantic for describing a basic list generally used in exporters before decoding.
gboolean fBufSetInternalTemplate(fBuf_t *fbuf, uint16_t int_tid, GError **err)
Set the internal template on a buffer to the given template ID.
uint8_t ie_semantic
ie semantic
Definition: public.h:1452
void * fbSubTemplateMultiListEntryInit(fbSubTemplateMultiListEntry_t *entry, uint16_t tmplID, fbTemplate_t *tmpl, uint16_t numElements)
Initializes the multi list entry with the template values, and allocates the memory used by the entry...
void fbListenerFree(fbListener_t *listener)
Free a listener.
gboolean fbListValidSemantic(uint8_t semantic)
validates the value of the semantic field,
void fbSessionFree(fbSession_t *session)
Free a transport session state container.
void fbTemplateSetOptionsScope(fbTemplate_t *tmpl, uint16_t scope_count)
Set the number of information elements in a template that are scope.