PacketMill modified FastClick with some additional source-code optimization techniques to improve the performance of high-speed packet processing. Additionally, it implements different metadata management models, i.e., copying, overlaying, and X-Change.
For more information, please refer to PacketMill's paper and repo.
PacketMill performs multiple source-code optimizations that exploit the availabe information in a given NF configuration file. We have implemented these optimizations on top of click-devirtualize
.
To use these optimization, you need to build and install FastClick as follows:
git clone [email protected]:tbarbette/fastclick.git
cd fastclick
./configure --disable-linuxmodule --enable-userlevel --enable-user-multithread --enable-etherswitch --disable-dynamic-linking --enable-local --enable-dpdk --enable-research --enable-flow --disable-task-stats --enable-cpu-load --prefix $(pwd)/build/ --enable-intel-cpu CXX="clang++ -fno-access-control" CC="clang" CXXFLAGS="-std=gnu++14 -O3" --disable-bound-port-transfer --enable-dpdk-pool --disable-dpdk-packet
make
sudo make uninstall
sudo make install
You need to define RTE_SDK
and RTE_TARGET
before configuring FastClick.
Note: PacketMill's repo offers a automated pipeline/workflow for building/installing PacketMill (FastClick + X-Change) and performing some experiments related to PacketMill's PacketMill's paper.
This optimization pass removes virtual function calls from elements' source code based on the input configuration file. More specifically, it duplicates the source code, override some methods, and defines the type of called pointers & the called functions. The following code snippet shows the source code of FromDPDKDevice::output_push
defined by click-devirtualize
after applying the pass.
inline void
FromDPDKDevice_a_afd0::output_push(int i, Packet *p) const
{
if (i == 0) { ((Classifier_a_aFNT_a3_sc0 *)output(i).element())->Classifier_a_aFNT_a3_sc0::push(0, p); return; }
output(i).push(p);
}
The new source code replaces the actual call as opposed to the normal FastClick code that uses output(port).push_batch(batch);
. This pass has been originally introduced by click-devirtualize
. We have adopted it and modified it to work with FastClick. Fore more information, please check click-devirtualize paper.
To use this pass, run the following commands:
Note that you need to compile & install FastClick before applying any pass.
sudo bin/click-devirtualize CONFIG > package.uo
ar x package.uo config
cd userlevel
sudo ../bin/click-mkmindriver -V -C .. -p embed --ship -u ../package.uo
make embedclick MINDRIVER=embed STATIC=0
After building embedclick
, you can run the new click binary with the new configuration file. For instance, you can run the following command:
sudo userlevel/embedclick --dpdk -l 0-35 -n 6 -w 0000:17:00.0 -v -- config
To see the changes to the source code, you can check clickdv*.cc
and clickdv*.hh
files in userlevel/
.
This pass replaces the variables with their available value in the configuration file. For instance, the following code snippet shows a part FromDPDKDevice::run_task
function. Replace pass substitutes _burst
variable by its value, 32
, which is specified in the input configuration file.
// FastClick
unsigned n = rte_eth_rx_burst(_dev->port_id, iqueue, pkts, _burst);
// click-devirtualize + replace pass
unsigned n = rte_eth_rx_burst(_dev->port_id, iqueue, pkts, 32);
To use this pass, you have to add --replace
when using click-devirtualize
.
This pass (i) allocates/defines the elements' objects in the source code and (ii) replaces the devirtualized calls with the actual functions. For instance, it defins an object for the Classifier_a_aFNT_a3_sc0
in the source code and directly replaces the pointer in the FromDPDKDevice::output_push
function with the actual object. We reintialize the objects at runtime to ensure that variables are intialized properly.
inline void
FromDPDKDevice_a_afd0::output_push(int i, Packet *p) const
{
if (i == 0) { obj_Classifier_a_aFNT_a3_sc0.push(0, p); return; }
output(i).push(p);
}
To use this pass, you have to add --static
when using click-devirtualize
. You should also set STATIC=1
when compiling embedclick
. Additionaly, you should define the following variables:
export CLICK_ELEM_RAND_SEED=0
export CLICK_ELEM_RAND_MAX=0
These variables can be used to add a randomized offset to the application's layout when defining the objects. We used this feature to ensure that our improvements are not due to the layout bias. Note that they do not have any effect unless you compile FastClick with --x$enable_rand_align
.
This pass add inline
keyword to some of the functions. To use it, you have to add --inline
when using click-devirtualize
.
This pass adds alignas(x)
keyword to the devirtualized element classes, thereby changing the alignment of objects. We used this feature to ensure that our improvements are not due to the layout bias. To use this pass, you have to add --alignas x
when using click-devirtualize
.
We also worked on a few passes to unroll (or use computed jumps/switch for) the fast path loop. You can check the click-devirtualize
source code for more information, see here, search for unroll
, switch
, and jmps
.
This modified version of FastClick also support X-Change
API used by PacketMill. For more information, please refer to PacketMill's repo and X-Change repo.