2 * netlink-local.h Local Netlink Interface
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation version 2.1
9 * Copyright (c) 2003-2008 Thomas Graf <tgraf@suug.ch>
12 #ifndef NETLINK_LOCAL_H_
13 #define NETLINK_LOCAL_H_
25 #include <sys/types.h>
26 #include <sys/socket.h>
31 #include <arpa/inet.h>
35 #define SOL_NETLINK 270
38 #include <linux/types.h>
40 /* local header copies */
42 #include <linux/if_arp.h>
43 #include <linux/if_ether.h>
44 #include <linux/pkt_sched.h>
45 #include <linux/pkt_cls.h>
46 #include <linux/gen_stats.h>
48 #include <netlink/netlink.h>
49 #include <netlink/handlers.h>
50 #include <netlink/cache.h>
51 #include <netlink/object-api.h>
52 #include <netlink/cache-api.h>
53 #include <netlink-types.h>
60 #define __ADD(id, name) { .i = id, .a = #name },
65 struct nl_list_head list
;
70 #define NL_DBG(LVL,FMT,ARG...) \
75 fprintf(stderr, "BUG: %s:%d\n", \
76 __FILE__, __LINE__); \
80 extern int __nl_read_num_str_file(const char *path
,
81 int (*cb
)(long, const char *));
83 extern int __trans_list_add(int, const char *, struct nl_list_head
*);
84 extern void __trans_list_clear(struct nl_list_head
*);
86 extern char *__type2str(int, char *, size_t, struct trans_tbl
*, size_t);
87 extern int __str2type(const char *, struct trans_tbl
*, size_t);
89 extern char *__list_type2str(int, char *, size_t, struct nl_list_head
*);
90 extern int __list_str2type(const char *, struct nl_list_head
*);
92 extern char *__flags2str(int, char *, size_t, struct trans_tbl
*, size_t);
93 extern int __str2flags(const char *, struct trans_tbl
*, size_t);
95 extern void dump_from_ops(struct nl_object
*, struct nl_dump_params
*);
97 static inline struct nl_cache
*dp_cache(struct nl_object
*obj
)
99 if (obj
->ce_cache
== NULL
)
100 return nl_cache_mngt_require(obj
->ce_ops
->oo_name
);
102 return obj
->ce_cache
;
105 static inline int nl_cb_call(struct nl_cb
*cb
, int type
, struct nl_msg
*msg
)
107 return cb
->cb_set
[type
](msg
, cb
->cb_args
[type
]);
110 #define ARRAY_SIZE(X) (sizeof(X) / sizeof((X)[0]))
111 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
113 #define __init __attribute__ ((constructor))
114 #define __exit __attribute__ ((destructor))
116 #define __deprecated __attribute__ ((deprecated))
118 #define min(x,y) ({ \
119 typeof(x) _x = (x); \
120 typeof(y) _y = (y); \
121 (void) (&_x == &_y); \
122 _x < _y ? _x : _y; })
124 #define max(x,y) ({ \
125 typeof(x) _x = (x); \
126 typeof(y) _y = (y); \
127 (void) (&_x == &_y); \
128 _x > _y ? _x : _y; })
130 extern int nl_cache_parse(struct nl_cache_ops
*, struct sockaddr_nl
*,
131 struct nlmsghdr
*, struct nl_parser_param
*);
134 static inline char *nl_cache_name(struct nl_cache
*cache
)
136 return cache
->c_ops
? cache
->c_ops
->co_name
: "unknown";
139 #define GENL_FAMILY(id, name) \
141 { id, NL_ACT_UNSPEC, name }, \
142 END_OF_MSGTYPES_LIST, \
145 static inline int wait_for_ack(struct nl_sock
*sk
)
147 if (sk
->s_flags
& NL_NO_AUTO_ACK
)
150 return nl_wait_for_ack(sk
);
This page took 0.044231 seconds and 5 git commands to generate.