aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYonghong Song <yhs@fb.com>2018-10-27 22:07:33 -0700
committerYonghong Song <yhs@localhost.localdomain>2018-10-30 13:42:58 -0700
commit1a2a44a723a4802b0f7db3f0d0b556a22413a6fc (patch)
treef8936ede27b41db029ba17d98d8bcaf089fb5585
parent895aefda8417f2b8bce4d9e637d83c3d6a368153 (diff)
downloadbcc-yhs_dev.zip
bcc-yhs_dev.tar.gz
bcc-yhs_dev.tar.bz2
allow packed structure in bpf program in python APIyhs_dev
Fix issue #2017. For python programs, the map data passed from C++ library is parsed through the key/value desc types which are generated by C++ json map declaration visitor. The map declaration visitor visits the map key/value declaration types and generate a string to represent the type, which is later used by python to reconstruct the cttype. The map declaration already tries to add all the padding to the type string in order to make sure C++ and python see the same layout. This patch further added packed support such that if C++ json map visitor has applied padding, the python type reconstructor is free to add _pack_=1 for structure type since the structure is already packed. For example, for a type, struct t { char a; int b; } the structure after json visitor will look like struct t { char a; char __pad[3]; int b; } If the type is struct t { char a; int b; } __packed; the structure after json visitor will look like struct t { char a; int b; } In either case, it will be okay to add __packed attribute for the type generated by json map visitor in order to match the original declaration. Thanks Chaitanya for filing the issue and providing the test case! Signed-off-by: Yonghong Song <yhs@fb.com>
-rw-r--r--src/cc/json_map_decl_visitor.cc8
-rw-r--r--src/lua/bcc/table.lua9
-rw-r--r--src/python/bcc/__init__.py15
-rwxr-xr-xtests/python/test_clang.py25
4 files changed, 50 insertions, 7 deletions
diff --git a/src/cc/json_map_decl_visitor.cc b/src/cc/json_map_decl_visitor.cc
index d54a71c..c7fe9b8 100644
--- a/src/cc/json_map_decl_visitor.cc
+++ b/src/cc/json_map_decl_visitor.cc
@@ -159,8 +159,12 @@ bool BMapDeclVisitor::VisitRecordDecl(RecordDecl *D) {
result_ += "]";
if (D->isUnion())
result_ += ", \"union\"";
- else if (D->isStruct())
- result_ += ", \"struct\"";
+ else if (D->isStruct()) {
+ if (SkipPadding)
+ result_ += ", \"struct\"";
+ else
+ result_ += ", \"struct_packed\"";
+ }
result_ += "]";
return true;
}
diff --git a/src/lua/bcc/table.lua b/src/lua/bcc/table.lua
index ad48f31..9729751 100644
--- a/src/lua/bcc/table.lua
+++ b/src/lua/bcc/table.lua
@@ -349,8 +349,13 @@ local function _decode_table_type(desc)
table.insert(fields, f)
end
- assert(struct == "struct" or struct == "union", "unknown complex type: "..struct)
- return string.format("%s { %s }", struct, table.concat(fields, " "))
+ assert(struct == "struct" or struct == "struct_packed" or struct == "union",
+ "unknown complex type: "..struct)
+ if struct == "union" then
+ return string.format("union { %s }", table.concat(fields, " "))
+ else
+ return string.format("struct { %s }", table.concat(fields, " "))
+ end
end
return _dec(json.parse(json_desc))
end
diff --git a/src/python/bcc/__init__.py b/src/python/bcc/__init__.py
index 38fa6d8..1dfd830 100644
--- a/src/python/bcc/__init__.py
+++ b/src/python/bcc/__init__.py
@@ -427,7 +427,8 @@ class BPF(object):
elif isinstance(t[2], int):
fields.append((t[0], BPF._decode_table_type(t[1]), t[2]))
elif isinstance(t[2], basestring) and (
- t[2] == u"union" or t[2] == u"struct"):
+ t[2] == u"union" or t[2] == u"struct" or
+ t[2] == u"struct_packed"):
name = t[0]
if name == "":
name = "__anon%d" % len(anon)
@@ -438,13 +439,21 @@ class BPF(object):
else:
raise Exception("Failed to decode type %s" % str(t))
base = ct.Structure
+ is_packed = False
if len(desc) > 2:
if desc[2] == u"union":
base = ct.Union
elif desc[2] == u"struct":
base = ct.Structure
- cls = type(str(desc[0]), (base,), dict(_anonymous_=anon,
- _fields_=fields))
+ elif desc[2] == u"struct_packed":
+ base = ct.Structure
+ is_packed = True
+ if is_packed:
+ cls = type(str(desc[0]), (base,), dict(_anonymous_=anon, _pack_=1,
+ _fields_=fields))
+ else:
+ cls = type(str(desc[0]), (base,), dict(_anonymous_=anon,
+ _fields_=fields))
return cls
def get_table(self, name, keytype=None, leaftype=None, reducer=None):
diff --git a/tests/python/test_clang.py b/tests/python/test_clang.py
index f158bfa..36f0a1b 100755
--- a/tests/python/test_clang.py
+++ b/tests/python/test_clang.py
@@ -1225,5 +1225,30 @@ int map_delete(struct pt_regs *ctx, struct bpf_map *bpfmap, u64 *k) {
b.attach_kprobe(event=b"htab_map_delete_elem", fn_name=b"map_delete")
b.cleanup()
+ @skipUnless(kernel_version_ge(4,7), "requires kernel >= 4.7")
+ def test_packed_structure(self):
+ b = BPF(text=b"""
+struct test {
+ u16 a;
+ u32 b;
+} __packed;
+BPF_TABLE("hash", u32, struct test, testing, 2);
+TRACEPOINT_PROBE(kmem, kmalloc) {
+ u32 key = 0;
+ struct test info, *entry;
+ entry = testing.lookup(&key);
+ if (entry == NULL) {
+ info.a = 10;
+ info.b = 20;
+ testing.update(&key, &info);
+ }
+ return 0;
+}
+""")
+ if len(b["testing"].items()):
+ st = b["testing"][ct.c_uint(0)]
+ self.assertEqual(st.a, 10)
+ self.assertEqual(st.b, 20)
+
if __name__ == "__main__":
main()