chiark / gitweb /
sd-rtnl: fix reading of nla type
authorTom Gundersen <teg@jklm.no>
Wed, 29 Oct 2014 09:50:33 +0000 (10:50 +0100)
committerTom Gundersen <teg@jklm.no>
Wed, 29 Oct 2014 09:51:07 +0000 (10:51 +0100)
We must filter out the 'network-byteorder' and 'nested' flags.

src/libsystemd/sd-rtnl/rtnl-message.c

index b501a52cf1db4280cfdca35c42c1ee786eaf62de..dac3061271c5f9f6f5f013e44f65ce345d353eb5 100644 (file)
@@ -36,6 +36,8 @@
 #define GET_CONTAINER(m, i) ((i) < (m)->n_containers ? (struct rtattr*)((uint8_t*)(m)->hdr + (m)->container_offsets[i]) : NULL)
 #define PUSH_CONTAINER(m, new) (m)->container_offsets[(m)->n_containers ++] = (uint8_t*)(new) - (uint8_t*)(m)->hdr;
 
+#define RTA_TYPE(rta) ((rta)->rta_type & NLA_TYPE_MASK)
+
 static int message_new_empty(sd_rtnl *rtnl, sd_rtnl_message **ret) {
         sd_rtnl_message *m;
 
@@ -1066,7 +1068,7 @@ int rtnl_message_parse(sd_rtnl_message *m,
         *rta_tb_size = max + 1;
 
         for (; RTA_OK(rta, rt_len); rta = RTA_NEXT(rta, rt_len)) {
-                type = rta->rta_type;
+                type = RTA_TYPE(rta);
 
                 /* if the kernel is newer than the headers we used
                    when building, we ignore out-of-range attributes