Skip to content

Commit

Permalink
Merge pull request iovisor#1593 from netgroup-polito/bpf_prog_table_d…
Browse files Browse the repository at this point in the history
…elete_element

Allow to delete elements from prog tables
  • Loading branch information
yonghong-song authored Feb 16, 2018
2 parents 77d82e3 + b2a2053 commit 6c81f9d
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/cc/api/BPFTable.h
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,12 @@ class BPFProgTable : public BPFTableBase<int, int> {
return StatusTuple(-1, "Error updating value: %s", std::strerror(errno));
return StatusTuple(0);
}

StatusTuple remove_value(const int& index) {
if (!this->remove(const_cast<int*>(&index)))
return StatusTuple(-1, "Error removing value: %s", std::strerror(errno));
return StatusTuple(0);
}
};

} // namespace ebpf
1 change: 1 addition & 0 deletions tests/cc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ add_executable(test_libbcc
test_bpf_table.cc
test_hash_table.cc
test_perf_event.cc
test_prog_table.cc
test_usdt_args.cc
test_usdt_probes.cc
utils.cc)
Expand Down
65 changes: 65 additions & 0 deletions tests/cc/test_prog_table.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
/*
* Copyright (c) 2018 Politecnico di Torino
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#include "BPF.h"

#include "catch.hpp"

TEST_CASE("test prog table", "[prog_table]") {
const std::string BPF_PROGRAM = R"(
BPF_TABLE("prog", int, int, myprog, 16);
)";

const std::string BPF_PROGRAM2 = R"(
int hello(struct __sk_buff *skb) {
return 1;
}
)";

ebpf::StatusTuple res(0);

ebpf::BPF bpf;
res = bpf.init(BPF_PROGRAM);
REQUIRE(res.code() == 0);

ebpf::BPFProgTable t = bpf.get_prog_table("myprog");

ebpf::BPF bpf2;
res = bpf2.init(BPF_PROGRAM2);
REQUIRE(res.code() == 0);

int fd;
res = bpf2.load_func("hello", BPF_PROG_TYPE_SCHED_CLS, fd);
REQUIRE(res.code() == 0);

SECTION("update and remove") {
// update element
res = t.update_value(0, fd);
REQUIRE(res.code() == 0);

// remove element
res = t.remove_value(0);
REQUIRE(res.code() == 0);

// update out of range element
res = t.update_value(17, fd);
REQUIRE(res.code() != 0);

// remove out of range element
res = t.remove_value(17);
REQUIRE(res.code() != 0);
}
}

0 comments on commit 6c81f9d

Please sign in to comment.