/* * (C) 2012 by Pablo Neira Ayuso * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This code has been sponsored by Sophos Astaro */ #include "internal.h" #include #include #include /* for memcpy */ #include #include #include #include #include #include struct nftnl_expr_bitwise { enum nft_registers sreg; enum nft_registers dreg; unsigned int len; union nftnl_data_reg mask; union nftnl_data_reg xor; }; static int nftnl_expr_bitwise_set(struct nftnl_expr *e, uint16_t type, const void *data, uint32_t data_len) { struct nftnl_expr_bitwise *bitwise = nftnl_expr_data(e); switch(type) { case NFTNL_EXPR_BITWISE_SREG: bitwise->sreg = *((uint32_t *)data); break; case NFTNL_EXPR_BITWISE_DREG: bitwise->dreg = *((uint32_t *)data); break; case NFTNL_EXPR_BITWISE_LEN: bitwise->len = *((unsigned int *)data); break; case NFTNL_EXPR_BITWISE_MASK: memcpy(&bitwise->mask.val, data, data_len); bitwise->mask.len = data_len; break; case NFTNL_EXPR_BITWISE_XOR: memcpy(&bitwise->xor.val, data, data_len); bitwise->xor.len = data_len; break; default: return -1; } return 0; } static const void * nftnl_expr_bitwise_get(const struct nftnl_expr *e, uint16_t type, uint32_t *data_len) { struct nftnl_expr_bitwise *bitwise = nftnl_expr_data(e); switch(type) { case NFTNL_EXPR_BITWISE_SREG: *data_len = sizeof(bitwise->sreg); return &bitwise->sreg; case NFTNL_EXPR_BITWISE_DREG: *data_len = sizeof(bitwise->dreg); return &bitwise->dreg; case NFTNL_EXPR_BITWISE_LEN: *data_len = sizeof(bitwise->len); return &bitwise->len; case NFTNL_EXPR_BITWISE_MASK: *data_len = bitwise->mask.len; return &bitwise->mask.val; case NFTNL_EXPR_BITWISE_XOR: *data_len = bitwise->xor.len; return &bitwise->xor.val; } return NULL; } static int nftnl_expr_bitwise_cb(const struct nlattr *attr, void *data) { const struct nlattr **tb = data; int type = mnl_attr_get_type(attr); if (mnl_attr_type_valid(attr, NFTA_BITWISE_MAX) < 0) return MNL_CB_OK; switch(type) { case NFTA_BITWISE_SREG: case NFTA_BITWISE_DREG: case NFTA_BITWISE_LEN: if (mnl_attr_validate(attr, MNL_TYPE_U32) < 0) abi_breakage(); break; case NFTA_BITWISE_MASK: case NFTA_BITWISE_XOR: if (mnl_attr_validate(attr, MNL_TYPE_BINARY) < 0) abi_breakage(); break; } tb[type] = attr; return MNL_CB_OK; } static void nftnl_expr_bitwise_build(struct nlmsghdr *nlh, const struct nftnl_expr *e) { struct nftnl_expr_bitwise *bitwise = nftnl_expr_data(e); if (e->flags & (1 << NFTNL_EXPR_BITWISE_SREG)) mnl_attr_put_u32(nlh, NFTA_BITWISE_SREG, htonl(bitwise->sreg)); if (e->flags & (1 << NFTNL_EXPR_BITWISE_DREG)) mnl_attr_put_u32(nlh, NFTA_BITWISE_DREG, htonl(bitwise->dreg)); if (e->flags & (1 << NFTNL_EXPR_BITWISE_LEN)) mnl_attr_put_u32(nlh, NFTA_BITWISE_LEN, htonl(bitwise->len)); if (e->flags & (1 << NFTNL_EXPR_BITWISE_MASK)) { struct nlattr *nest; nest = mnl_attr_nest_start(nlh, NFTA_BITWISE_MASK); mnl_attr_put(nlh, NFTA_DATA_VALUE, bitwise->mask.len, bitwise->mask.val); mnl_attr_nest_end(nlh, nest); } if (e->flags & (1 << NFTNL_EXPR_BITWISE_XOR)) { struct nlattr *nest; nest = mnl_attr_nest_start(nlh, NFTA_BITWISE_XOR); mnl_attr_put(nlh, NFTA_DATA_VALUE, bitwise->xor.len, bitwise->xor.val); mnl_attr_nest_end(nlh, nest); } } static int nftnl_expr_bitwise_parse(struct nftnl_expr *e, struct nlattr *attr) { struct nftnl_expr_bitwise *bitwise = nftnl_expr_data(e); struct nlattr *tb[NFTA_BITWISE_MAX+1] = {}; int ret = 0; if (mnl_attr_parse_nested(attr, nftnl_expr_bitwise_cb, tb) < 0) return -1; if (tb[NFTA_BITWISE_SREG]) { bitwise->sreg = ntohl(mnl_attr_get_u32(tb[NFTA_BITWISE_SREG])); e->flags |= (1 << NFTNL_EXPR_BITWISE_SREG); } if (tb[NFTA_BITWISE_DREG]) { bitwise->dreg = ntohl(mnl_attr_get_u32(tb[NFTA_BITWISE_DREG])); e->flags |= (1 << NFTNL_EXPR_BITWISE_DREG); } if (tb[NFTA_BITWISE_LEN]) { bitwise->len = ntohl(mnl_attr_get_u32(tb[NFTA_BITWISE_LEN])); e->flags |= (1 << NFTNL_EXPR_BITWISE_LEN); } if (tb[NFTA_BITWISE_MASK]) { ret = nftnl_parse_data(&bitwise->mask, tb[NFTA_BITWISE_MASK], NULL); e->flags |= (1 << NFTA_BITWISE_MASK); } if (tb[NFTA_BITWISE_XOR]) { ret = nftnl_parse_data(&bitwise->xor, tb[NFTA_BITWISE_XOR], NULL); e->flags |= (1 << NFTA_BITWISE_XOR); } return ret; } static int nftnl_expr_bitwise_json_parse(struct nftnl_expr *e, json_t *root, struct nftnl_parse_err *err) { #ifdef JSON_PARSING struct nftnl_expr_bitwise *bitwise = nftnl_expr_data(e); uint32_t reg, len; if (nftnl_jansson_parse_reg(root, "sreg", NFTNL_TYPE_U32, ®, err) == 0) nftnl_expr_set_u32(e, NFTNL_EXPR_BITWISE_SREG, reg); if (nftnl_jansson_parse_reg(root, "dreg", NFTNL_TYPE_U32, ®, err) == 0) nftnl_expr_set_u32(e, NFTNL_EXPR_BITWISE_DREG, reg); if (nftnl_jansson_parse_val(root, "len", NFTNL_TYPE_U32, &len, err) == 0) nftnl_expr_set_u32(e, NFTNL_EXPR_BITWISE_LEN, len); if (nftnl_jansson_data_reg_parse(root, "mask", &bitwise->mask, err) == DATA_VALUE) e->flags |= (1 << NFTNL_EXPR_BITWISE_MASK); if (nftnl_jansson_data_reg_parse(root, "xor", &bitwise->xor, err) == DATA_VALUE) e->flags |= (1 << NFTNL_EXPR_BITWISE_XOR); if (bitwise->mask.len != bitwise->xor.len) return -1; return 0; #else errno = EOPNOTSUPP; return -1; #endif } static int nftnl_expr_bitwise_xml_parse(struct nftnl_expr *e, mxml_node_t *tree, struct nftnl_parse_err *err) { #ifdef XML_PARSING struct nftnl_expr_bitwise *bitwise = nftnl_expr_data(e); uint32_t sreg, dreg, len; if (nftnl_mxml_reg_parse(tree, "sreg", &sreg, MXML_DESCEND_FIRST, NFTNL_XML_MAND, err) == 0) nftnl_expr_set_u32(e, NFTNL_EXPR_BITWISE_SREG, sreg); if (nftnl_mxml_reg_parse(tree, "dreg", &dreg, MXML_DESCEND_FIRST, NFTNL_XML_MAND, err) == 0) nftnl_expr_set_u32(e, NFTNL_EXPR_BITWISE_DREG, dreg); if (nftnl_mxml_num_parse(tree, "len", MXML_DESCEND_FIRST, BASE_DEC, &len, NFTNL_TYPE_U32, NFTNL_XML_MAND, err) == 0) nftnl_expr_set_u32(e, NFTNL_EXPR_BITWISE_LEN, len); if (nftnl_mxml_data_reg_parse(tree, "mask", &bitwise->mask, NFTNL_XML_MAND, err) == DATA_VALUE) e->flags |= (1 << NFTNL_EXPR_BITWISE_MASK); if (nftnl_mxml_data_reg_parse(tree, "xor", &bitwise->xor, NFTNL_XML_MAND, err) == DATA_VALUE) e->flags |= (1 << NFTNL_EXPR_BITWISE_XOR); /* Additional validation: mask and xor must use the same number of * data registers. */ if (bitwise->mask.len != bitwise->xor.len) return -1; return 0; #else errno = EOPNOTSUPP; return -1; #endif } static int nftnl_expr_bitwise_export(char *buf, size_t size, const struct nftnl_expr *e, int type) { struct nftnl_expr_bitwise *bitwise = nftnl_expr_data(e); NFTNL_BUF_INIT(b, buf, size); if (e->flags & (1 << NFTNL_EXPR_BITWISE_SREG)) nftnl_buf_u32(&b, type, bitwise->sreg, SREG); if (e->flags & (1 << NFTNL_EXPR_BITWISE_DREG)) nftnl_buf_u32(&b, type, bitwise->dreg, DREG); if (e->flags & (1 << NFTNL_EXPR_BITWISE_LEN)) nftnl_buf_u32(&b, type, bitwise->len, LEN); if (e->flags & (1 << NFTNL_EXPR_BITWISE_MASK)) nftnl_buf_reg(&b, type, &bitwise->mask, DATA_VALUE, MASK); if (e->flags & (1 << NFTNL_EXPR_BITWISE_XOR)) nftnl_buf_reg(&b, type, &bitwise->xor, DATA_VALUE, XOR); return nftnl_buf_done(&b); } static int nftnl_expr_bitwise_snprintf_default(char *buf, size_t size, const struct nftnl_expr *e) { struct nftnl_expr_bitwise *bitwise = nftnl_expr_data(e); int len = size, offset = 0, ret; ret = snprintf(buf, len, "reg %u = (reg=%u & ", bitwise->dreg, bitwise->sreg); SNPRINTF_BUFFER_SIZE(ret, size, len, offset); ret = nftnl_data_reg_snprintf(buf+offset, len, &bitwise->mask, NFTNL_OUTPUT_DEFAULT, 0, DATA_VALUE); SNPRINTF_BUFFER_SIZE(ret, size, len, offset); ret = snprintf(buf+offset, len, ") ^ "); SNPRINTF_BUFFER_SIZE(ret, size, len, offset); ret = nftnl_data_reg_snprintf(buf+offset, len, &bitwise->xor, NFTNL_OUTPUT_DEFAULT, 0, DATA_VALUE); SNPRINTF_BUFFER_SIZE(ret, size, len, offset); return offset; } static int nftnl_expr_bitwise_snprintf(char *buf, size_t size, uint32_t type, uint32_t flags, const struct nftnl_expr *e) { switch (type) { case NFTNL_OUTPUT_DEFAULT: return nftnl_expr_bitwise_snprintf_default(buf, size, e); case NFTNL_OUTPUT_XML: case NFTNL_OUTPUT_JSON: return nftnl_expr_bitwise_export(buf, size, e, type); default: break; } return -1; } static bool nftnl_expr_bitwise_cmp(const struct nftnl_expr *e1, const struct nftnl_expr *e2) { struct nftnl_expr_bitwise *b1 = nftnl_expr_data(e1); struct nftnl_expr_bitwise *b2 = nftnl_expr_data(e2); bool eq = true; if (e1->flags & (1 << NFTNL_EXPR_BITWISE_SREG)) eq &= (b1->sreg == b2->sreg); if (e1->flags & (1 << NFTNL_EXPR_BITWISE_DREG)) eq &= (b1->dreg == b2->dreg); if (e1->flags & (1 << NFTNL_EXPR_BITWISE_LEN)) eq &= (b1->len == b2->len); if (e1->flags & (1 << NFTNL_EXPR_BITWISE_MASK)) eq &= nftnl_data_reg_cmp(&b1->mask, &b2->mask, DATA_VALUE); if (e1->flags & (1 << NFTNL_EXPR_BITWISE_XOR)) eq &= nftnl_data_reg_cmp(&b1->xor, &b2->xor, DATA_VALUE); return eq; } struct expr_ops expr_ops_bitwise = { .name = "bitwise", .alloc_len = sizeof(struct nftnl_expr_bitwise), .max_attr = NFTA_BITWISE_MAX, .cmp = nftnl_expr_bitwise_cmp, .set = nftnl_expr_bitwise_set, .get = nftnl_expr_bitwise_get, .parse = nftnl_expr_bitwise_parse, .build = nftnl_expr_bitwise_build, .snprintf = nftnl_expr_bitwise_snprintf, .xml_parse = nftnl_expr_bitwise_xml_parse, .json_parse = nftnl_expr_bitwise_json_parse, };