]> granicus.if.org Git - libnl/commitdiff
add link netns support
authorCong Wang <xiyou.wangcong@gmail.com>
Fri, 1 Nov 2013 23:58:49 +0000 (16:58 -0700)
committerThomas Graf <tgraf@suug.ch>
Wed, 6 Nov 2013 08:55:03 +0000 (09:55 +0100)
Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com>
Signed-off-by: Thomas Graf <tgraf@suug.ch>
include/netlink-private/types.h
include/netlink/route/link.h
lib/route/link.c

index aef230ce6a7cff5eeca9d894be4d4982c13aef36..3635e0f6129962d87cf942fff1ab7f72e3da5259 100644 (file)
@@ -191,6 +191,8 @@ struct rtnl_link
        /* 3 byte hole */
        struct rtnl_link_af_ops *       l_af_ops;
        struct nl_data *                l_phys_port_id;
+       int                             l_ns_fd;
+       pid_t                           l_ns_pid;
 };
 
 struct rtnl_ncacheinfo
index b0430f88be8017aa55eda619ac063c890eb1ea65..5ceddcf77da3dc19faeee5a1eb53e384f156f5e9 100644 (file)
@@ -16,6 +16,7 @@
 #include <netlink/cache.h>
 #include <netlink/addr.h>
 #include <linux/if.h>
+#include <sys/types.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -219,6 +220,11 @@ extern uint32_t    rtnl_link_get_num_rx_queues(struct rtnl_link *);
 
 extern struct nl_data *        rtnl_link_get_phys_port_id(struct rtnl_link *);
 
+extern void    rtnl_link_set_ns_fd(struct rtnl_link *, int);
+extern int     rtnl_link_get_ns_fd(struct rtnl_link *);
+extern void    rtnl_link_set_ns_pid(struct rtnl_link *, pid_t);
+extern pid_t   rtnl_link_get_ns_pid(struct rtnl_link *);
+
 extern int     rtnl_link_enslave_ifindex(struct nl_sock *, int, int);
 extern int     rtnl_link_enslave(struct nl_sock *, struct rtnl_link *,
                                  struct rtnl_link *);
index b758013359531ec041e703bedc13b74a09c88e03..b03ccfe5c5a0e3e3613adb79ec4a5d78380f68dc 100644 (file)
@@ -59,6 +59,8 @@
 #define LINK_ATTR_PROTINFO     (1 << 26)
 #define LINK_ATTR_AF_SPEC      (1 << 27)
 #define LINK_ATTR_PHYS_PORT_ID (1 << 28)
+#define LINK_ATTR_NS_FD                (1 << 29)
+#define LINK_ATTR_NS_PID       (1 << 30)
 
 static struct nl_cache_ops rtnl_link_ops;
 static struct nl_object_ops link_obj_ops;
@@ -285,6 +287,8 @@ struct nla_policy link_policy[IFLA_MAX+1] = {
        [IFLA_GROUP]            = { .type = NLA_U32 },
        [IFLA_CARRIER]          = { .type = NLA_U8 },
        [IFLA_PHYS_PORT_ID]     = { .type = NLA_UNSPEC },
+       [IFLA_NET_NS_PID]       = { .type = NLA_U32 },
+       [IFLA_NET_NS_FD]        = { .type = NLA_U32 },
 };
 
 static struct nla_policy link_info_policy[IFLA_INFO_MAX+1] = {
@@ -607,6 +611,16 @@ static int link_msg_parser(struct nl_cache_ops *ops, struct sockaddr_nl *who,
                link->ce_mask |= LINK_ATTR_GROUP;
        }
 
+       if (tb[IFLA_NET_NS_FD]) {
+               link->l_ns_fd = nla_get_u32(tb[IFLA_NET_NS_FD]);
+               link->ce_mask |= LINK_ATTR_NS_FD;
+       }
+
+       if (tb[IFLA_NET_NS_FD]) {
+               link->l_ns_pid = nla_get_u32(tb[IFLA_NET_NS_PID]);
+               link->ce_mask |= LINK_ATTR_NS_PID;
+       }
+
        if (tb[IFLA_PHYS_PORT_ID]) {
                link->l_phys_port_id = nl_data_alloc_attr(tb[IFLA_PHYS_PORT_ID]);
                if (link->l_phys_port_id == NULL) {
@@ -2319,6 +2333,28 @@ struct nl_data *rtnl_link_get_phys_port_id(struct rtnl_link *link)
        return link->l_phys_port_id;
 }
 
+void rtnl_link_set_ns_fd(struct rtnl_link *link, int fd)
+{
+       link->l_ns_fd = fd;
+       link->ce_mask |= LINK_ATTR_NS_FD;
+}
+
+int rtnl_link_get_ns_fd(struct rtnl_link *link)
+{
+       return link->l_ns_fd;
+}
+
+void rtnl_link_set_ns_pid(struct rtnl_link *link, pid_t pid)
+{
+       link->l_ns_pid = pid;
+       link->ce_mask |= LINK_ATTR_NS_PID;
+}
+
+pid_t rtnl_link_get_ns_pid(struct rtnl_link *link)
+{
+       return link->l_ns_pid;
+}
+
 /** @} */
 
 /**