]> git.ipfire.org Git - thirdparty/libnftnl.git/commitdiff
expr: osf: add version option support
authorFernando Fernandez Mancera <ffmancera@riseup.net>
Wed, 27 Mar 2019 10:36:58 +0000 (11:36 +0100)
committerPablo Neira Ayuso <pablo@netfilter.org>
Mon, 8 Apr 2019 21:46:19 +0000 (23:46 +0200)
Signed-off-by: Fernando Fernandez Mancera <ffmancera@riseup.net>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
include/libnftnl/expr.h
include/linux/netfilter/nf_tables.h
src/expr/osf.c

index 3d99d249bad7e8cbe57977a2e88bd7e28f7a1607..b2f8d757b38d26e6c541ceee08fe06257c543092 100644 (file)
@@ -280,6 +280,7 @@ enum {
 enum {
        NFTNL_EXPR_OSF_DREG     = NFTNL_EXPR_BASE,
        NFTNL_EXPR_OSF_TTL,
+       NFTNL_EXPR_OSF_FLAGS,
 };
 
 enum {
index ac6de5e642a37ad61883978649ff1a43207c805d..fd38cdcb606ce14ec7d81ec95f1d1ebe3c170dcc 100644 (file)
@@ -940,11 +940,13 @@ enum nft_socket_keys {
  *
  * @NFTA_OSF_DREG: destination register (NLA_U32)
  * @NFTA_OSF_TTL: Value of the TTL osf option (NLA_U8)
+ * @NFTA_OSF_FLAGS: flags (NLA_U32)
  */
 enum nft_osf_attributes {
        NFTA_OSF_UNSPEC,
        NFTA_OSF_DREG,
        NFTA_OSF_TTL,
+       NFTA_OSF_FLAGS,
        __NFTA_OSF_MAX,
 };
 #define NFTA_OSF_MAX (__NFTA_OSF_MAX - 1)
index 52da21f4cf90f5553549b0fb64d4419dd861efb4..98d0df96aa06e78e6e8f849b0c36ea2953617bd1 100644 (file)
@@ -15,6 +15,7 @@
 struct nftnl_expr_osf {
        enum nft_registers      dreg;
        uint8_t                 ttl;
+       uint32_t                flags;
 };
 
 static int nftnl_expr_osf_set(struct nftnl_expr *e, uint16_t type,
@@ -29,6 +30,9 @@ static int nftnl_expr_osf_set(struct nftnl_expr *e, uint16_t type,
        case NFTNL_EXPR_OSF_TTL:
                memcpy(&osf->ttl, data, sizeof(osf->ttl));
                break;
+       case NFTNL_EXPR_OSF_FLAGS:
+               memcpy(&osf->flags, data, sizeof(osf->flags));
+               break;
        }
        return 0;
 }
@@ -46,6 +50,9 @@ nftnl_expr_osf_get(const struct nftnl_expr *e, uint16_t type,
        case NFTNL_EXPR_OSF_TTL:
                *data_len = sizeof(osf->ttl);
                return &osf->ttl;
+       case NFTNL_EXPR_OSF_FLAGS:
+               *data_len = sizeof(osf->flags);
+               return &osf->flags;
        }
        return NULL;
 }
@@ -60,6 +67,7 @@ static int nftnl_expr_osf_cb(const struct nlattr *attr, void *data)
 
        switch(type) {
        case NFTNL_EXPR_OSF_DREG:
+       case NFTNL_EXPR_OSF_FLAGS:
                if (mnl_attr_validate(attr, MNL_TYPE_U32) < 0)
                        abi_breakage();
                break;
@@ -68,6 +76,7 @@ static int nftnl_expr_osf_cb(const struct nlattr *attr, void *data)
                if (mnl_attr_validate(attr, MNL_TYPE_U8) < 0)
                        abi_breakage();
                break;
+
        }
 
        tb[type] = attr;
@@ -83,6 +92,9 @@ nftnl_expr_osf_build(struct nlmsghdr *nlh, const struct nftnl_expr *e)
                mnl_attr_put_u32(nlh, NFTNL_EXPR_OSF_DREG, htonl(osf->dreg));
        if (e->flags & (1 << NFTNL_EXPR_OSF_TTL))
                mnl_attr_put_u8(nlh, NFTNL_EXPR_OSF_TTL, osf->ttl);
+       if (e->flags & (1 << NFTNL_EXPR_OSF_FLAGS))
+               if (osf->flags)
+                       mnl_attr_put_u32(nlh, NFTNL_EXPR_OSF_FLAGS, htonl(osf->flags));
 }
 
 static int
@@ -104,6 +116,11 @@ nftnl_expr_osf_parse(struct nftnl_expr *e, struct nlattr *attr)
                e->flags |= (1 << NFTNL_EXPR_OSF_TTL);
        }
 
+       if (tb[NFTA_OSF_FLAGS]) {
+               osf->flags = ntohl(mnl_attr_get_u32(tb[NFTA_OSF_FLAGS]));
+               e->flags |= (1 << NFTNL_EXPR_OSF_FLAGS);
+       }
+
        return 0;
 }