forked from jbenc/plotnetcfg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
handler.h
81 lines (71 loc) · 2.67 KB
/
handler.h
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
/*
* This file is a part of plotnetcfg, a tool to visualize network config.
* Copyright (C) 2014 Red Hat, Inc. -- Jiri Benc <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef _HANDLER_H
#define _HANDLER_H
#include <stdio.h>
#include "list.h"
struct if_entry;
struct netns_entry;
struct nlattr;
/* Only one handler for each driver allowed.
* Generic handlers called for every interface are supported and are created
* by setting driver to NULL. Generic handlers are not allowed to use
* handler_private field in struct if_entry.
*
* If you want to use handler_private, private_size bytes will be allocated
* before any callback is called.
*
* Callbacks are called in this order:
* 1. netlink - while reading interface data from netlink
* 2. scan - while scanning interfaces, sysfs is mounted
* 3. post - all interfaces are scanned, use this for inter-interface
* scanning
* 4. cleanup - destroy private structure. handler_private itself will be
* freed automatically.
*/
struct if_handler {
struct node n;
const char *driver;
size_t private_size;
int (*netlink)(struct if_entry *entry, struct nlattr **linkinfo);
int (*scan)(struct if_entry *entry);
int (*post)(struct if_entry *entry, struct list *netns_list);
void (*cleanup)(struct if_entry *entry);
};
void if_handler_register(struct if_handler *h);
int if_handler_init(struct if_entry *entry);
int if_handler_netlink(struct if_entry *entry, struct nlattr **linkinfo);
int if_handler_scan(struct if_entry *entry);
int if_handler_post(struct list *netns_list);
void if_handler_cleanup(struct if_entry *entry);
struct netns_handler {
struct node n;
int (*scan)(struct netns_entry *entry);
void (*cleanup)(struct netns_entry *entry);
};
void netns_handler_register(struct netns_handler *h);
int netns_handler_scan(struct netns_entry *entry);
void netns_handler_cleanup(struct netns_entry *entry);
struct global_handler {
struct node n;
int (*init)(void);
int (*post)(struct list *netns_list);
void (*cleanup)(struct list *netns_list);
};
void global_handler_register(struct global_handler *h);
int global_handler_init(void);
int global_handler_post(struct list *netns_list);
void global_handler_cleanup(struct list *netns_list);
#endif