]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/rtnl.c
Merge pull request #2639 from brauner/2018-09-23/compiler_based_hardening
[mirror_lxc.git] / src / lxc / rtnl.c
1 /*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2008
5 *
6 * Authors:
7 * Daniel Lezcano <daniel.lezcano at free.fr>
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23 #include <string.h>
24 #include <stdio.h>
25 #include <sys/socket.h>
26 #include <stdlib.h>
27 #include <errno.h>
28 #include <unistd.h>
29 #include <linux/netlink.h>
30 #include <linux/rtnetlink.h>
31
32 #include "nl.h"
33 #include "rtnl.h"
34
35 extern int rtnetlink_open(struct rtnl_handler *handler)
36 {
37 return netlink_open(&handler->nlh, NETLINK_ROUTE);
38 }
39
40 extern int rtnetlink_close(struct rtnl_handler *handler)
41 {
42 return netlink_close(&handler->nlh);
43 }
44
45 #pragma GCC diagnostic push
46 #pragma GCC diagnostic ignored "-Wcast-align"
47
48 extern int rtnetlink_rcv(struct rtnl_handler *handler, struct rtnlmsg *rtnlmsg)
49 {
50 return netlink_rcv(&handler->nlh, (struct nlmsg *)&rtnlmsg->nlmsghdr);
51 }
52
53 extern int rtnetlink_send(struct rtnl_handler *handler, struct rtnlmsg *rtnlmsg)
54 {
55
56 return netlink_send(&handler->nlh, (struct nlmsg *)&rtnlmsg->nlmsghdr);
57 }
58
59 extern int rtnetlink_transaction(struct rtnl_handler *handler,
60 struct rtnlmsg *request,
61 struct rtnlmsg *answer)
62 {
63 return netlink_transaction(&handler->nlh,
64 (struct nlmsg *)&request->nlmsghdr,
65 (struct nlmsg *)&answer->nlmsghdr);
66 }
67
68 #pragma GCC diagnostic pop
69
70 extern struct rtnlmsg *rtnlmsg_alloc(size_t size)
71 {
72 /*
73 size_t len;
74
75 len = NLMSG_LENGTH(NLMSG_ALIGN(sizeof(struct rtnlmsghdr))) + size;
76 return (struct rtnlmsg *)nlmsg_alloc(len);
77 */
78
79 return NULL;
80 }
81
82 extern void rtnlmsg_free(struct rtnlmsg *rtnlmsg) { free(rtnlmsg); }