1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
|
/* SPDX-License-Identifier: LGPL-2.1-only */
/*
* Copyright (c) 2003-2008 Thomas Graf <tgraf@suug.ch>
*/
/**
* @ingroup core
* @defgroup cb Callbacks/Customization
*
* Related sections in the development guide:
* - @core_doc{core_cb, Callback Configuration}
*
* @{
*
* Header
* ------
* ~~~~{.c}
* #include <netlink/handlers.h>
* ~~~~
*/
#include "nl-default.h"
#include <netlink/netlink.h>
#include <netlink/utils.h>
#include <netlink/msg.h>
#include <netlink/handlers.h>
#include "nl-core.h"
#include "nl-priv-dynamic-core/nl-core.h"
static void print_header_content(FILE *ofd, struct nlmsghdr *n)
{
char flags[128];
char type[32];
fprintf(ofd, "type=%s length=%u flags=<%s> sequence-nr=%u pid=%u",
nl_nlmsgtype2str(n->nlmsg_type, type, sizeof(type)),
n->nlmsg_len, nl_nlmsg_flags2str(n->nlmsg_flags, flags,
sizeof(flags)), n->nlmsg_seq, n->nlmsg_pid);
}
static int nl_valid_handler_verbose(struct nl_msg *msg, void *arg)
{
FILE *ofd = arg ? arg : stdout;
fprintf(ofd, "-- Warning: unhandled valid message: ");
print_header_content(ofd, nlmsg_hdr(msg));
fprintf(ofd, "\n");
return NL_OK;
}
static int nl_invalid_handler_verbose(struct nl_msg *msg, void *arg)
{
FILE *ofd = arg ? arg : stderr;
fprintf(ofd, "-- Error: Invalid message: ");
print_header_content(ofd, nlmsg_hdr(msg));
fprintf(ofd, "\n");
return NL_STOP;
}
static int nl_overrun_handler_verbose(struct nl_msg *msg, void *arg)
{
FILE *ofd = arg ? arg : stderr;
fprintf(ofd, "-- Error: Netlink Overrun: ");
print_header_content(ofd, nlmsg_hdr(msg));
fprintf(ofd, "\n");
return NL_STOP;
}
static int nl_error_handler_verbose(struct sockaddr_nl *who,
struct nlmsgerr *e, void *arg)
{
FILE *ofd = arg ? arg : stderr;
fprintf(ofd, "-- Error received: %s\n-- Original message: ",
nl_strerror_l(-e->error));
print_header_content(ofd, &e->msg);
fprintf(ofd, "\n");
return -nl_syserr2nlerr(e->error);
}
static int nl_valid_handler_debug(struct nl_msg *msg, void *arg)
{
FILE *ofd = arg ? arg : stderr;
fprintf(ofd, "-- Debug: Unhandled Valid message: ");
print_header_content(ofd, nlmsg_hdr(msg));
fprintf(ofd, "\n");
return NL_OK;
}
static int nl_finish_handler_debug(struct nl_msg *msg, void *arg)
{
FILE *ofd = arg ? arg : stderr;
fprintf(ofd, "-- Debug: End of multipart message block: ");
print_header_content(ofd, nlmsg_hdr(msg));
fprintf(ofd, "\n");
return NL_STOP;
}
static int nl_msg_in_handler_debug(struct nl_msg *msg, void *arg)
{
FILE *ofd = arg ? arg : stderr;
fprintf(ofd, "-- Debug: Received Message:\n");
nl_msg_dump(msg, ofd);
return NL_OK;
}
static int nl_msg_out_handler_debug(struct nl_msg *msg, void *arg)
{
FILE *ofd = arg ? arg : stderr;
fprintf(ofd, "-- Debug: Sent Message:\n");
nl_msg_dump(msg, ofd);
return NL_OK;
}
static int nl_skipped_handler_debug(struct nl_msg *msg, void *arg)
{
FILE *ofd = arg ? arg : stderr;
fprintf(ofd, "-- Debug: Skipped message: ");
print_header_content(ofd, nlmsg_hdr(msg));
fprintf(ofd, "\n");
return NL_SKIP;
}
static int nl_ack_handler_debug(struct nl_msg *msg, void *arg)
{
FILE *ofd = arg ? arg : stderr;
fprintf(ofd, "-- Debug: ACK: ");
print_header_content(ofd, nlmsg_hdr(msg));
fprintf(ofd, "\n");
return NL_STOP;
}
static nl_recvmsg_msg_cb_t cb_def[NL_CB_TYPE_MAX+1][NL_CB_KIND_MAX+1] = {
[NL_CB_VALID] = {
[NL_CB_VERBOSE] = nl_valid_handler_verbose,
[NL_CB_DEBUG] = nl_valid_handler_debug,
},
[NL_CB_FINISH] = {
[NL_CB_DEBUG] = nl_finish_handler_debug,
},
[NL_CB_INVALID] = {
[NL_CB_VERBOSE] = nl_invalid_handler_verbose,
[NL_CB_DEBUG] = nl_invalid_handler_verbose,
},
[NL_CB_MSG_IN] = {
[NL_CB_DEBUG] = nl_msg_in_handler_debug,
},
[NL_CB_MSG_OUT] = {
[NL_CB_DEBUG] = nl_msg_out_handler_debug,
},
[NL_CB_OVERRUN] = {
[NL_CB_VERBOSE] = nl_overrun_handler_verbose,
[NL_CB_DEBUG] = nl_overrun_handler_verbose,
},
[NL_CB_SKIPPED] = {
[NL_CB_DEBUG] = nl_skipped_handler_debug,
},
[NL_CB_ACK] = {
[NL_CB_DEBUG] = nl_ack_handler_debug,
},
};
static nl_recvmsg_err_cb_t cb_err_def[NL_CB_KIND_MAX+1] = {
[NL_CB_VERBOSE] = nl_error_handler_verbose,
[NL_CB_DEBUG] = nl_error_handler_verbose,
};
/**
* @name Callback Handle Management
* @{
*/
/**
* Allocate a new callback handle
* @arg kind callback kind to be used for initialization
* @return Newly allocated callback handle or NULL
*/
struct nl_cb *nl_cb_alloc(enum nl_cb_kind kind)
{
int i;
struct nl_cb *cb;
if ((unsigned int) kind > NL_CB_KIND_MAX)
return NULL;
cb = calloc(1, sizeof(*cb));
if (!cb)
return NULL;
cb->cb_refcnt = 1;
cb->cb_active = NL_CB_TYPE_MAX + 1;
for (i = 0; i <= NL_CB_TYPE_MAX; i++)
nl_cb_set(cb, i, kind, NULL, NULL);
nl_cb_err(cb, kind, NULL, NULL);
return cb;
}
/**
* Clone an existing callback handle
* @arg orig original callback handle
* @return Newly allocated callback handle being a duplicate of
* orig or NULL
*/
struct nl_cb *nl_cb_clone(struct nl_cb *orig)
{
struct nl_cb *cb;
cb = nl_cb_alloc(NL_CB_DEFAULT);
if (!cb)
return NULL;
memcpy(cb, orig, sizeof(*orig));
cb->cb_refcnt = 1;
return cb;
}
struct nl_cb *nl_cb_get(struct nl_cb *cb)
{
cb->cb_refcnt++;
return cb;
}
void nl_cb_put(struct nl_cb *cb)
{
if (!cb)
return;
cb->cb_refcnt--;
if (cb->cb_refcnt < 0)
BUG();
if (cb->cb_refcnt <= 0)
free(cb);
}
/**
* Obtain type of current active callback
* @arg cb callback to query
*
* @return type or __NL_CB_TYPE_MAX if none active
*/
enum nl_cb_type nl_cb_active_type(struct nl_cb *cb)
{
return cb->cb_active;
}
/** @} */
/**
* @name Callback Setup
* @{
*/
/**
* Set up a callback
* @arg cb callback set
* @arg type callback to modify
* @arg kind kind of implementation
* @arg func callback function (NL_CB_CUSTOM)
* @arg arg argument passed to callback
*
* @return 0 on success or a negative error code
*/
int nl_cb_set(struct nl_cb *cb, enum nl_cb_type type, enum nl_cb_kind kind,
nl_recvmsg_msg_cb_t func, void *arg)
{
if ((unsigned int) type > NL_CB_TYPE_MAX)
return -NLE_RANGE;
if ((unsigned int) kind > NL_CB_KIND_MAX)
return -NLE_RANGE;
if (kind == NL_CB_CUSTOM) {
cb->cb_set[type] = func;
cb->cb_args[type] = arg;
} else {
cb->cb_set[type] = cb_def[type][kind];
cb->cb_args[type] = arg;
}
return 0;
}
/**
* Set up a all callbacks
* @arg cb callback set
* @arg kind kind of callback
* @arg func callback function
* @arg arg argument to be passwd to callback function
*
* @return 0 on success or a negative error code
*/
int nl_cb_set_all(struct nl_cb *cb, enum nl_cb_kind kind,
nl_recvmsg_msg_cb_t func, void *arg)
{
int i, err;
for (i = 0; i <= NL_CB_TYPE_MAX; i++) {
err = nl_cb_set(cb, i, kind, func, arg);
if (err < 0)
return err;
}
return 0;
}
/**
* Set up an error callback
* @arg cb callback set
* @arg kind kind of callback
* @arg func callback function
* @arg arg argument to be passed to callback function
*/
int nl_cb_err(struct nl_cb *cb, enum nl_cb_kind kind,
nl_recvmsg_err_cb_t func, void *arg)
{
if ((unsigned int) kind > NL_CB_KIND_MAX)
return -NLE_RANGE;
if (kind == NL_CB_CUSTOM) {
cb->cb_err = func;
cb->cb_err_arg = arg;
} else {
cb->cb_err = cb_err_def[kind];
cb->cb_err_arg = arg;
}
return 0;
}
/** @} */
/**
* @name Overwriting
* @{
*/
/**
* Overwrite internal calls to nl_recvmsgs()
* @arg cb callback set
* @arg func replacement callback for nl_recvmsgs()
*/
void nl_cb_overwrite_recvmsgs(struct nl_cb *cb,
int (*func)(struct nl_sock *, struct nl_cb *))
{
cb->cb_recvmsgs_ow = func;
}
/**
* Overwrite internal calls to nl_recv()
* @arg cb callback set
* @arg func replacement callback for nl_recv()
*/
void nl_cb_overwrite_recv(struct nl_cb *cb,
int (*func)(struct nl_sock *, struct sockaddr_nl *,
unsigned char **, struct ucred **))
{
cb->cb_recv_ow = func;
}
/**
* Overwrite internal calls to nl_send()
* @arg cb callback set
* @arg func replacement callback for nl_send()
*/
void nl_cb_overwrite_send(struct nl_cb *cb,
int (*func)(struct nl_sock *, struct nl_msg *))
{
cb->cb_send_ow = func;
}
/** @} */
/** @} */
|