Release 0.40.3
[vala-gnome.git] / vapi / libnl-2.0.vapi
blob2c7c9253105133dd363815719fd5a5bdc67bcf99
1 /*
2  * libnl-2.0.vapi
3  *
4  * Copyright (C) 2009-2015 Michael 'Mickey' Lauer <mlauer@vanille-media.de>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
19  *
20  */
22 [CCode (lower_case_cprefix = "nl_", cheader_filename = "netlink/netlink.h")]
23 namespace Netlink {
25     [CCode (cname = "nl_geterror", cheader_filename = "netlink/netlink.h")]
26     public static unowned string strerror( int number );
28     [CCode (instance_pos = -1)]
29     public delegate void CallbackFunc (Object obj);
31     [CCode (cname = "nl_recmsg_msg_cb_t", cheader_filename = "netlink/netlink.h", instance_pos = -1)]
32     public delegate int MessageCallbackFunc (Message msg);
34     [Compact]
35     [CCode (cprefix = "nl_addr_", cname = "struct nl_addr", free_function = "", cheader_filename = "netlink/netlink.h")]
36     public class Address : Object {
37         [CCode (cname = "nl_addr_alloc")]
38         public Address();
40         public void     put();
41         public int      build_add_request (int a, out Message m);
42         public int      build_delete_request (int a, out Message m);
44         public int      set_label (string label);
45         public unowned string   get_label ();
47         public void     set_family (int family);
48         public int      get_family ();
50         public int      get_len ();
52         public void     set_prefixlen (int len);
53         public int      get_prefixlen ();
55         public void     set_flags (uint flags);
56         public void     unset_flags (uint flags);
57         public uint     get_flags ();
59         public void*    get_binary_addr();
61         [CCode (cname = "nl_addr2str")]
62         public unowned string to_stringbuf(char[] buf);
64         public string to_string() {
65             char[] buf = new char[256];
66             return to_stringbuf( buf );
67         }
68     }
70     [Compact]
71     [CCode (cprefix = "nla_", cname = "struct nlattr", free_function = "", cheader_filename = "netlink/netlink.h")]
72     public class Attribute {
73         public static int       attr_size (int payload);
74         public static int       total_size (int payload);
75         public static int       padlen (int payload);
77         public int              type();
78         public void*            data();
79         public int              len();
80         public int              ok (int remaining);
81         public Attribute        next (out int remaining);
82         public static int       parse (Attribute[] attributes, Attribute head, int len, AttributePolicy? policy = null);
83         public int              validate (int len, int maxtype, AttributePolicy? policy = null);
84         public Attribute        find (int len, int attrtype);
85     }
87     [Compact]
88     [CCode (cname = "struct nla_policy", free_function = "")]
89     public class AttributePolicy {
90         [CCode (cname = "")]
91         public AttributePolicy( AttributeType type = AttributeType.UNSPEC, uint16 minlen = 0, uint16 maxlen = 65535 )
92         {
93             this.type = type;
94             this.minlen = minlen;
95             this.maxlen = maxlen;
96         }
97         public uint16    type;
98         public uint16    minlen;
99         public uint16    maxlen;
100     }
102     [CCode (cprefix = "NLA_", cname = "int", cheader_filename = "netlink/attr.h", has_type_id = false)]
103     public enum AttributeType {
104         UNSPEC,
105         U8,
106         U16,
107         U32,
108         U64,
109         STRING,
110         FLAG,
111         MSECS,
112         NESTED,
113         TYPE_MAX
114     }
116     [Compact]
117     [CCode (cprefix = "rtnl_addr_", cname = "struct rtnl_addr", free_function = "", cheader_filename = "netlink/route/addr.h")]
118     public class RouteAddress : Address {
119         [CCode (cname = "rtnl_addr_alloc")]
120         public RouteAddress();
122         public void     set_ifindex (int index );
123         public int      get_ifindex ();
125         public void     set_scope (int scope);
126         public int      get_scope ();
128         public unowned Address get_local();
129     }
131     [Compact]
132     [CCode (cprefix = "nl_cache_", cname = "struct nl_cache", free_function = "nl_cache_free", cheader_filename = "netlink/netlink.h")]
133     public class Cache {
134         public static int alloc_name (string name, out Cache c);
136         public void @foreach (CallbackFunc cb);
137         public void foreach_filter (Object obj, CallbackFunc cb);
139         public void  mngt_provide();
140         public void  mngt_unprovide();
141     }
143     [Compact]
144     [CCode (cprefix = "nl_cb_", cname = "struct nl_cb", free_function = "", cheader_filename = "netlink/netlink.h")]
145     public class Callback {
146         [CCode (cname = "nl_cb_alloc")]
147         public Callback (CallbackKind kind = CallbackKind.DEFAULT);
148         [CCode (cname = "nl_cb_set")]
149         public int @set (CallbackType type, CallbackKind kind, MessageCallbackFunc func);
150         [CCode (cname = "nl_cb_set_all")]
151         public int set_all (CallbackKind kind, MessageCallbackFunc func);
152     }
154     [CCode (cname = "enum nl_cb_action", cprefix = "NL_", cheader_filename = "netlink/netlink.h", has_type_id = false)]
155     public enum CallbackAction {
156         OK,
157         SKIP,
158         STOP,
159     }
161     [CCode (cname = "enum nl_cb_kind", cprefix = "NL_CB_", cheader_filename = "netlink/netlink.h", has_type_id = false)]
162     public enum CallbackKind {
163         DEFAULT,
164         VERBOSE,
165         DEBUG,
166         CUSTOM,
167     }
169     [CCode (cname = "enum nl_cb_type", cprefix = "NL_CB_", cheader_filename = "netlink/netlink.h", has_type_id = false)]
170     public enum CallbackType {
171         VALID,
172         FINISH,
173         OVERRUN,
174         SKIPPED,
175         ACK,
176         MSG_IN,
177         MSG_OUT,
178         INVALID,
179         SEQ_CHECK,
180         SEND_ACK,
181     }
183     [Compact]
184     [CCode (cprefix = "nl_link_cache_", cname = "struct nl_cache", free_function = "nl_cache_free", cheader_filename = "netlink/netlink.h")]
185     public class LinkCache : Cache {
186         [CCode (cname = "rtnl_link_name2i")]
187         public int name2i (string name);
188     }
190     [Compact]
191     [CCode (cprefix = "nl_addr_cache", cname = "struct nl_cache", free_function = "nl_cache_free", cheader_filename = "netlink/netlink.h")]
192     public class AddrCache : Cache {
193     }
195     [Compact]
196     [CCode (cprefix = "nl_msg_", cname = "struct nl_msg", free_function = "nl_msg_free", cheader_filename = "netlink/netlink.h")]
197     public class Message {
198         public void             dump (Posix.FILE file);
199         public int              parse (CallbackFunc func);
200         [CCode (cname = "nlmsg_hdr")]
201         public MessageHeader    header ();
202     }
204     [Compact]
205     [CCode (cprefix = "nlmsg_", cname = "struct nlmsghdr", free_function = "", cheader_filename = "netlink/netlink.h")]
206     public class MessageHeader {
207         // field access
208         public uint32 nlmsg_len;
209         public uint16 nlmsg_type;
210         public uint16 nlmsg_flags;
211         public uint32 nlmsg_seq;
212         public uint32 nlmsg_pid;
214         // size calculations
215         public static int       msg_size (int payload);
216         public static int       total_size (int payload);
217         public static int       padlen (int payload);
219         // payload access
220         public void*            data ();
221         public int              len ();
222         public void*            tail ();
224         // attribute access
225         public Attribute        attrdata (int hdrlen);
226         public int              attrlen (int hdrlen);
228         // message parsing
229         public bool             valid_hdr (int hdrlen);
230         public bool             ok (int remaining);
231         public MessageHeader    next (out int remaining);
232         public int              parse (int hdrlen, [CCode (array_length = "false")] out Attribute[] attributes, AttributeType maxtype, AttributePolicy? policy = null);
233         public Attribute?       find_attr (int hdrlen, AttributeType type);
234         public int              validate (int hdrlen, AttributeType maxtype, AttributePolicy policy);
235     }
237     [Compact]
238     [CCode (cprefix = "nl_socket_", cname = "struct nl_sock", free_function = "nl_socket_free")]
239     public class Socket {
240         [CCode (cname = "nl_socket_alloc")]
241         public Socket();
243         [CCode (cname = "rtnl_link_alloc_cache")]
244         public int              link_alloc_cache (out LinkCache c);
245         [CCode (cname = "rtnl_addr_alloc_cache")]
246         public int              addr_alloc_cache (out AddrCache c);
248         // connection management
249         [CCode (cname = "nl_close")]
250         public int              close ();
251         [CCode (cname = "nl_connect")]
252         public int              connect (int family);
254         // group management
255         public int              add_memberships (int group, ...);
256         public int              add_membership (int group);
257         public int              drop_memberships (int group, ...);
258         public int              drop_membership (int group);
259         public uint32           get_peer_port ();
260         public void             set_peer_port (uint32 port);
262         // callback management
263         public Callback         get_cb ();
264         public void             set_cb (Callback cb);
265         public int              modify_cb (CallbackType type, CallbackKind kind, MessageCallbackFunc callback);
267         // configuration
268         public int              set_buffer_size (int rxbuf, int txbuf);
269         public int              set_passcred (bool on);
270         public int              recv_pktinfo (bool on);
272         public void             disable_seq_check ();
273         public uint             use_seq ();
274         public void             disable_auto_ack ();
275         public void             enable_auto_ack ();
277         public int              get_fd ();
278         public int              set_nonblocking ();
279         public void             enable_msg_peek ();
280         public void             disable_msg_peek ();
282         // receiving messages
283         [CCode (cname = "nl_recv")]
284         public int              recv (out Linux.Netlink.SockAddrNl addr, out char[] buf, out Linux.Socket.ucred cred);
286         [CCode (cname = "nl_recvmsgs")]
287         public int              recvmsgs (Callback cb);
289         [CCode (cname = "nl_recvmsgs_default")]
290         public int              recvmsgs_default ();
292         [CCode (cname = "nl_wait_for_ack")]
293         public int              wait_for_ack ();
294     }
296     [Compact]
297     [CCode (cprefix = "nl_object_", cname = "struct nl_object", free_function = "nl_object_free", cheader_filename = "netlink/object.h")]
298     public class Object {
300         public unowned string attrs2str (uint32 attrs, char[] buf);
301         public unowned string attr_list (char[] buf);
302         public void dump (DumpParams params);
304     }
306     [CCode (cprefix = "NL_DUMP_", cname = "int", cheader_filename = "netlink/types.h", has_type_id = false)]
307     public enum DumpType {
308         LINE,
309         DETAILS,
310         STATS,
311         ENV,
312     }
314     [CCode (cname = "struct nl_dump_params", free_function = "", cheader_filename = "netlink/types.h", has_type_id = false)]
315     public struct DumpParams {
316         public DumpType dp_type;
317         public int dp_prefix;
318         public bool dp_print_index;
319         public bool dp_dump_msgtype;
320         public unowned Posix.FILE dp_fd;
321         public unowned string dp_buf;
322         public size_t dp_buflen;
323     }