1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* January 29 2024, Christian Hopps <chopps@labn.net>
*
* Copyright (c) 2024, LabN Consulting, L.L.C.
*
*/
#include <zebra.h>
#include <lib/version.h>
#include "darr.h"
#include "debug.h"
#include "libfrr.h"
#include "mgmt_be_client.h"
#include "mgmt_msg_native.h"
#include "northbound.h"
/* ---------------- */
/* Local Prototypes */
/* ---------------- */
static void async_notification(struct nb_cb_notify_args *args);
static int rpc_callback(struct nb_cb_rpc_args *args);
static void sigusr1(void);
static void sigint(void);
/* ----------- */
/* Global Data */
/* ----------- */
/* privileges */
static zebra_capabilities_t _caps_p[] = {};
struct zebra_privs_t __privs = {
#if defined(FRR_USER) && defined(FRR_GROUP)
.user = FRR_USER,
.group = FRR_GROUP,
#endif
#ifdef VTY_GROUP
.vty_group = VTY_GROUP,
#endif
.caps_p = _caps_p,
.cap_num_p = array_size(_caps_p),
.cap_num_i = 0,
};
#define OPTION_DATASTORE 2000
#define OPTION_LISTEN 2001
#define OPTION_NOTIF_COUNT 2002
#define OPTION_TIMEOUT 2003
const struct option longopts[] = { { "datastore", no_argument, NULL, OPTION_DATASTORE },
{ "listen", no_argument, NULL, OPTION_LISTEN },
{ "notify-count", required_argument, NULL, OPTION_NOTIF_COUNT },
{ "timeout", required_argument, NULL, OPTION_TIMEOUT },
{ 0 } };
/* Master of threads. */
struct event_loop *master;
struct mgmt_be_client *mgmt_be_client;
static struct frr_daemon_info mgmtd_testc_di;
struct frr_signal_t __signals[] = {
{
.signal = SIGUSR1,
.handler = &sigusr1,
},
{
.signal = SIGINT,
.handler = &sigint,
},
{
.signal = SIGTERM,
.handler = &sigint,
},
};
#define MGMTD_TESTC_VTY_PORT 2624
/* clang-format off */
static const struct frr_yang_module_info frr_if_info = {
.name = "frr-interface",
.ignore_cfg_cbs = true,
.nodes = {
{
.xpath = "/frr-interface:lib/interface",
.cbs.notify = async_notification,
},
{
.xpath = NULL,
}
}
};
static const struct frr_yang_module_info frr_ripd_info = {
.name = "frr-ripd",
.ignore_cfg_cbs = true,
.nodes = {
{
.xpath = "/frr-ripd:authentication-failure",
.cbs.notify = async_notification,
},
{
.xpath = "/frr-ripd:clear-rip-route",
.cbs.rpc = rpc_callback,
},
{
.xpath = NULL,
}
}
};
static const struct frr_yang_module_info *const mgmt_yang_modules[] = {
&frr_backend_info,
&frr_if_info,
&frr_ripd_info,
};
FRR_DAEMON_INFO(mgmtd_testc, MGMTD_TESTC,
.proghelp = "FRR Management Daemon Test Client.",
.signals = __signals,
.n_signals = array_size(__signals),
.privs = &__privs,
.yang_modules = mgmt_yang_modules,
.n_yang_modules = array_size(mgmt_yang_modules),
/* avoid libfrr trying to read our config file for us */
.flags = FRR_MANUAL_VTY_START,
);
/* clang-format on */
const char **__notif_xpaths;
const char **__rpc_xpaths;
struct mgmt_be_client_cbs __client_cbs = {};
struct event *event_timeout;
int f_datastore;
int o_notif_count = 1;
int o_timeout;
/* --------- */
/* Functions */
/* --------- */
static void sigusr1(void)
{
zlog_rotate();
}
static void quit(int exit_code)
{
EVENT_OFF(event_timeout);
darr_free(__client_cbs.notif_xpaths);
darr_free(__client_cbs.rpc_xpaths);
frr_fini();
exit(exit_code);
}
static void sigint(void)
{
zlog_notice("Terminating on signal");
quit(0);
}
static void timeout(struct event *event)
{
zlog_notice("Timeout, exiting");
quit(1);
}
static void success(struct event *event)
{
zlog_notice("Success, exiting");
quit(0);
}
static void __ds_notification(struct nb_cb_notify_args *args)
{
uint8_t *output = NULL;
zlog_notice("Received YANG datastore notification: op %u", args->op);
if (args->op == NOTIFY_OP_NOTIFICATION) {
zlog_warn("ignoring non-datastore op notification: %s", args->xpath);
return;
}
/* datastore notification */
switch (args->op) {
case NOTIFY_OP_DS_REPLACE:
printfrr("#OP=REPLACE: %s\n", args->xpath);
break;
case NOTIFY_OP_DS_DELETE:
printfrr("#OP=DELETE: %s\n", args->xpath);
break;
case NOTIFY_OP_DS_PATCH:
printfrr("#OP=PATCH: %s\n", args->xpath);
break;
default:
printfrr("#OP=%u: unknown notify op\n", args->op);
quit(1);
}
if (args->dnode && args->op != NOTIFY_OP_DS_DELETE) {
output = yang_print_tree(args->dnode, LYD_JSON, LYD_PRINT_SHRINK);
if (output) {
printfrr("%s\n", output);
darr_free(output);
}
}
fflush(stdout);
if (o_notif_count && !--o_notif_count)
quit(0);
}
static void __notification(struct nb_cb_notify_args *args)
{
zlog_notice("Received YANG notification: op: %u", args->op);
if (args->op != NOTIFY_OP_NOTIFICATION) {
zlog_warn("ignoring datastore notification: op: %u: path %s", args->op, args->xpath);
return;
}
/* bogus, we should print the actual data */
printf("{\"frr-ripd:authentication-failure\": {\"interface-name\": \"%s\"}}\n",
yang_dnode_get_string(args->dnode, "interface-name"));
if (o_notif_count && !--o_notif_count)
quit(0);
}
static void async_notification(struct nb_cb_notify_args *args)
{
if (f_datastore)
__ds_notification(args);
else
__notification(args);
}
static int rpc_callback(struct nb_cb_rpc_args *args)
{
const char *vrf = NULL;
zlog_notice("Received YANG RPC");
if (yang_dnode_exists(args->input, "vrf"))
vrf = yang_dnode_get_string(args->input, "vrf");
printf("{\"frr-ripd:clear-rip-route\": {\"vrf\": \"%s\"}}\n", vrf);
event_cancel(&event_timeout);
event_add_timer(master, success, NULL, 1, NULL);
return 0;
}
int main(int argc, char **argv)
{
int f_listen = 0;
int i;
frr_preinit(&mgmtd_testc_di, argc, argv);
frr_opt_add("", longopts, "");
while (1) {
int opt;
opt = frr_getopt(argc, argv, NULL);
if (opt == EOF)
break;
switch (opt) {
case OPTION_DATASTORE:
f_datastore = 1;
break;
case OPTION_LISTEN:
f_listen = 1;
break;
case OPTION_NOTIF_COUNT:
o_notif_count = atoi(optarg);
break;
case OPTION_TIMEOUT:
o_timeout = atoi(optarg);
break;
case 0:
break;
default:
frr_help_exit(1);
}
}
master = frr_init();
mgmt_be_client_lib_vty_init();
mgmt_dbg_be_client.flags = DEBUG_MODE_ALL;
/*
* Setup notification listen
*/
argv += optind;
argc -= optind;
if (!argc && f_listen) {
fprintf(stderr,
"Must specify at least one notification xpath to listen to\n");
exit(1);
}
if (argc && f_listen) {
for (i = 0; i < argc; i++) {
zlog_notice("Listen on xpath: %s", argv[i]);
darr_push(__notif_xpaths, argv[i]);
}
__client_cbs.notif_xpaths = __notif_xpaths;
__client_cbs.nnotif_xpaths = darr_len(__notif_xpaths);
}
darr_push(__rpc_xpaths, "/frr-ripd:clear-rip-route");
__client_cbs.rpc_xpaths = __rpc_xpaths;
__client_cbs.nrpc_xpaths = darr_len(__rpc_xpaths);
mgmt_be_client = mgmt_be_client_create("mgmtd-testc", &__client_cbs, 0,
master);
frr_config_fork();
if (o_timeout)
event_add_timer(master, timeout, NULL, o_timeout, &event_timeout);
frr_run(master);
/* Reached. */
return 0;
}
|