12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562 |
- // SPDX-License-Identifier: (Apache-2.0 OR MIT)
- // Copyright 2017 Alex Dukhno <alex.dukhno@icloud.com>
- //! Module provides API to create eBPF programs by Rust programming language
- use ebpf::*;
- /// Represents single eBPF instruction
- pub trait Instruction: Sized {
- /// returns instruction opt code
- fn opt_code_byte(&self) -> u8;
- /// returns destination register
- fn get_dst(&self) -> u8 {
- self.get_insn().dst
- }
- /// returns source register
- fn get_src(&self) -> u8 {
- self.get_insn().src
- }
- /// returns offset bytes
- fn get_off(&self) -> i16 {
- self.get_insn().off
- }
- /// returns immediate value
- fn get_imm(&self) -> i32 {
- self.get_insn().imm
- }
- /// sets destination register
- fn set_dst(mut self, dst: u8) -> Self {
- self.get_insn_mut().dst = dst;
- self
- }
- /// sets source register
- fn set_src(mut self, src: u8) -> Self {
- self.get_insn_mut().src = src;
- self
- }
- /// sets offset bytes
- fn set_off(mut self, offset: i16) -> Self {
- self.get_insn_mut().off = offset;
- self
- }
- /// sets immediate value
- fn set_imm(mut self, imm: i32) -> Self {
- self.get_insn_mut().imm = imm;
- self
- }
- /// get `ebpf::Insn` struct
- fn get_insn(&self) -> &Insn;
- /// get mutable `ebpf::Insn` struct
- fn get_insn_mut(&mut self) -> &mut Insn;
- }
- /// General trait for `Instruction`s and `BpfCode`.
- /// Provides functionality to transform `struct` into collection of bytes
- pub trait IntoBytes {
- /// type of targeted transformation
- type Bytes;
- /// consume `Self` with transformation into `Self::Bytes`
- fn into_bytes(self) -> Self::Bytes;
- }
- /// General implementation of `IntoBytes` for `Instruction`
- impl<'i, I: Instruction> IntoBytes for &'i I {
- type Bytes = Vec<u8>;
- /// transform immutable reference of `Instruction` into `Vec<u8>` with size of 8
- /// [ 1 byte , 1 byte , 2 bytes, 4 bytes ]
- /// [ OP_CODE, SRC_REG | DST_REG, OFFSET , IMMEDIATE ]
- fn into_bytes(self) -> Self::Bytes {
- let mut buffer = vec![
- self.opt_code_byte(),
- self.get_src() << 4 | self.get_dst(),
- self.get_off() as u8,
- (self.get_off() >> 8) as u8,
- self.get_imm() as u8,
- (self.get_imm() >> 8) as u8,
- (self.get_imm() >> 16) as u8,
- (self.get_imm() >> 24) as u8,
- ];
- buffer
- }
- }
- /// BPF instruction stack in byte representation
- #[derive(Default)]
- pub struct BpfCode {
- instructions: Vec<u8>
- }
- impl BpfCode {
- /// creates new empty BPF instruction stack
- pub fn new() -> Self {
- BpfCode { instructions: vec![] }
- }
- /// create ADD instruction
- pub fn add(&mut self, source: Source, arch: Arch) -> Move {
- self.mov_internal(source, arch, OpBits::Add)
- }
- /// create SUB instruction
- pub fn sub(&mut self, source: Source, arch: Arch) -> Move {
- self.mov_internal(source, arch, OpBits::Sub)
- }
- /// create MUL instruction
- pub fn mul(&mut self, source: Source, arch: Arch) -> Move {
- self.mov_internal(source, arch, OpBits::Mul)
- }
- /// create DIV instruction
- pub fn div(&mut self, source: Source, arch: Arch) -> Move {
- self.mov_internal(source, arch, OpBits::Div)
- }
- /// create OR instruction
- pub fn bit_or(&mut self, source: Source, arch: Arch) -> Move {
- self.mov_internal(source, arch, OpBits::BitOr)
- }
- /// create AND instruction
- pub fn bit_and(&mut self, source: Source, arch: Arch) -> Move {
- self.mov_internal(source, arch, OpBits::BitAnd)
- }
- /// create LSHIFT instruction
- pub fn left_shift(&mut self, source: Source, arch: Arch) -> Move {
- self.mov_internal(source, arch, OpBits::LShift)
- }
- /// create RSHIFT instruction
- pub fn right_shift(&mut self, source: Source, arch: Arch) -> Move {
- self.mov_internal(source, arch, OpBits::RShift)
- }
- /// create NEGATE instruction
- pub fn negate(&mut self, arch: Arch) -> Move {
- self.mov_internal(Source::Imm, arch, OpBits::Negate)
- }
- /// create MOD instruction
- pub fn modulo(&mut self, source: Source, arch: Arch) -> Move {
- self.mov_internal(source, arch, OpBits::Mod)
- }
- /// create XOR instruction
- pub fn bit_xor(&mut self, source: Source, arch: Arch) -> Move {
- self.mov_internal(source, arch, OpBits::BitXor)
- }
- /// create MOV instruction
- pub fn mov(&mut self, source: Source, arch: Arch) -> Move {
- self.mov_internal(source, arch, OpBits::Mov)
- }
- /// create SIGNED RSHIFT instruction
- pub fn signed_right_shift(&mut self, source: Source, arch: Arch) -> Move {
- self.mov_internal(source, arch, OpBits::SignRShift)
- }
- #[inline]
- fn mov_internal(&mut self, source: Source, arch_bits: Arch, op_bits: OpBits) -> Move {
- Move {
- bpf_code: self,
- src_bit: source,
- op_bits: op_bits,
- arch_bits: arch_bits,
- insn: Insn {
- opc: 0x00,
- dst: 0x00,
- src: 0x00,
- off: 0x00_00,
- imm: 0x00_00_00_00
- }
- }
- }
- /// create byte swap instruction
- pub fn swap_bytes(&mut self, endian: Endian) -> SwapBytes {
- SwapBytes {
- bpf_code: self,
- endian: endian,
- insn: Insn {
- opc: 0x00,
- dst: 0x00,
- src: 0x00,
- off: 0x00_00,
- imm: 0x00_00_00_00
- }
- }
- }
- /// create LOAD instruction, IMMEDIATE is the source
- pub fn load(&mut self, mem_size: MemSize) -> Load {
- self.load_internal(mem_size, Addressing::Imm, BPF_LD)
- }
- /// create ABSOLUTE LOAD instruction
- pub fn load_abs(&mut self, mem_size: MemSize) -> Load {
- self.load_internal(mem_size, Addressing::Abs, BPF_LD)
- }
- /// create INDIRECT LOAD instruction
- pub fn load_ind(&mut self, mem_size: MemSize) -> Load {
- self.load_internal(mem_size, Addressing::Ind, BPF_LD)
- }
- /// create LOAD instruction, MEMORY is the source
- pub fn load_x(&mut self, mem_size: MemSize) -> Load {
- self.load_internal(mem_size, Addressing::Mem, BPF_LDX)
- }
- #[inline]
- fn load_internal(&mut self, mem_size: MemSize, addressing: Addressing, source: u8) -> Load {
- Load {
- bpf_code: self,
- addressing: addressing,
- mem_size: mem_size,
- source: source,
- insn: Insn {
- opc: 0x00,
- dst: 0x00,
- src: 0x00,
- off: 0x00_00,
- imm: 0x00_00_00_00
- }
- }
- }
- /// creates STORE instruction, IMMEDIATE is the source
- pub fn store(&mut self, mem_size: MemSize) -> Store {
- self.store_internal(mem_size, BPF_IMM)
- }
- /// creates STORE instruction, MEMORY is the source
- pub fn store_x(&mut self, mem_size: MemSize) -> Store {
- self.store_internal(mem_size, BPF_MEM | BPF_STX)
- }
- #[inline]
- fn store_internal(&mut self, mem_size: MemSize, source: u8) -> Store {
- Store {
- bpf_code: self,
- mem_size: mem_size,
- source: source,
- insn: Insn {
- opc: 0x00,
- dst: 0x00,
- src: 0x00,
- off: 0x00_00,
- imm: 0x00_00_00_00
- }
- }
- }
- /// create unconditional JMP instruction
- pub fn jump_unconditional(&mut self) -> Jump {
- self.jump_conditional(Cond::Abs, Source::Imm)
- }
- /// create conditional JMP instruction
- pub fn jump_conditional(&mut self, cond: Cond, src_bit: Source) -> Jump {
- Jump {
- bpf_code: self,
- cond: cond,
- src_bit: src_bit,
- insn: Insn {
- opc: 0x00,
- dst: 0x00,
- src: 0x00,
- off: 0x00_00,
- imm: 0x00_00_00_00
- }
- }
- }
- /// create CALL instruction
- pub fn call(&mut self) -> FunctionCall {
- FunctionCall {
- bpf_code: self,
- insn: Insn {
- opc: 0x00,
- dst: 0x00,
- src: 0x00,
- off: 0x00_00,
- imm: 0x00_00_00_00
- }
- }
- }
- /// create EXIT instruction
- pub fn exit(&mut self) -> Exit {
- Exit {
- bpf_code: self,
- insn: Insn {
- opc: 0x00,
- dst: 0x00,
- src: 0x00,
- off: 0x00_00,
- imm: 0x00_00_00_00
- }
- }
- }
- }
- /// Transform `BpfCode` into assemble representation
- impl<'a> IntoBytes for &'a BpfCode {
- type Bytes = &'a [u8];
- /// returns `BpfCode` instruction stack as `&[u8]`
- fn into_bytes(self) -> Self::Bytes {
- self.instructions.as_slice()
- }
- }
- /// struct to represent `MOV ALU` instructions
- pub struct Move<'i> {
- bpf_code: &'i mut BpfCode,
- src_bit: Source,
- op_bits: OpBits,
- arch_bits: Arch,
- insn: Insn
- }
- impl<'i> Move<'i> {
- /// push MOV instruction into BpfCode instruction stack
- pub fn push(mut self) -> &'i mut BpfCode {
- let mut asm = self.into_bytes();
- self.bpf_code.instructions.append(&mut asm);
- self.bpf_code
- }
- }
- impl<'i> Instruction for Move<'i> {
- fn opt_code_byte(&self) -> u8 {
- let op_bits = self.op_bits as u8;
- let src_bit = self.src_bit as u8;
- let arch_bits = self.arch_bits as u8;
- op_bits | src_bit | arch_bits
- }
- fn get_insn_mut(&mut self) -> &mut Insn {
- &mut self.insn
- }
- fn get_insn(&self) -> &Insn {
- &self.insn
- }
- }
- #[derive(Copy, Clone, PartialEq, Eq)]
- /// The source of ALU and JMP instructions
- pub enum Source {
- /// immediate field will be used as a source
- Imm = BPF_IMM as isize,
- /// src register will be used as a source
- Reg = BPF_X as isize
- }
- #[derive(Copy, Clone)]
- enum OpBits {
- Add = BPF_ADD as isize,
- Sub = BPF_SUB as isize,
- Mul = BPF_MUL as isize,
- Div = BPF_DIV as isize,
- BitOr = BPF_OR as isize,
- BitAnd = BPF_AND as isize,
- LShift = BPF_LSH as isize,
- RShift = BPF_RSH as isize,
- Negate = BPF_NEG as isize,
- Mod = BPF_MOD as isize,
- BitXor = BPF_XOR as isize,
- Mov = BPF_MOV as isize,
- SignRShift = BPF_ARSH as isize
- }
- #[derive(Copy, Clone)]
- /// Architecture of instructions
- pub enum Arch {
- /// 64-bit instructions
- X64 = BPF_ALU64 as isize,
- /// 32-bit instructions
- X32 = BPF_ALU as isize
- }
- /// struct representation of byte swap operation
- pub struct SwapBytes<'i> {
- bpf_code: &'i mut BpfCode,
- endian: Endian,
- insn: Insn
- }
- impl<'i> SwapBytes<'i> {
- /// push bytes swap instruction into BpfCode instruction stack
- pub fn push(mut self) -> &'i mut BpfCode {
- let mut asm = self.into_bytes();
- self.bpf_code.instructions.append(&mut asm);
- self.bpf_code
- }
- }
- impl<'i> Instruction for SwapBytes<'i> {
- fn opt_code_byte(&self) -> u8 {
- self.endian as u8
- }
- fn get_insn_mut(&mut self) -> &mut Insn {
- &mut self.insn
- }
- fn get_insn(&self) -> &Insn {
- &self.insn
- }
- }
- #[derive(Copy, Clone)]
- /// Bytes endian
- pub enum Endian {
- /// Little endian
- Little = LE as isize,
- /// Big endian
- Big = BE as isize
- }
- /// struct representation of LOAD instructions
- pub struct Load<'i> {
- bpf_code: &'i mut BpfCode,
- addressing: Addressing,
- mem_size: MemSize,
- source: u8,
- insn: Insn
- }
- impl<'i> Load<'i> {
- /// push LOAD instruction into BpfCode instruction stack
- pub fn push(mut self) -> &'i mut BpfCode {
- let mut asm = self.into_bytes();
- self.bpf_code.instructions.append(&mut asm);
- self.bpf_code
- }
- }
- impl<'i> Instruction for Load<'i> {
- fn opt_code_byte(&self) -> u8 {
- let size = self.mem_size as u8;
- let addressing = self.addressing as u8;
- addressing | size | self.source
- }
- fn get_insn_mut(&mut self) -> &mut Insn {
- &mut self.insn
- }
- fn get_insn(&self) -> &Insn {
- &self.insn
- }
- }
- /// struct representation of STORE instructions
- pub struct Store<'i> {
- bpf_code: &'i mut BpfCode,
- mem_size: MemSize,
- source: u8,
- insn: Insn
- }
- impl<'i> Store<'i> {
- /// push STORE instruction into BpfCode instruction stack
- pub fn push(mut self) -> &'i mut BpfCode {
- let mut asm = self.into_bytes();
- self.bpf_code.instructions.append(&mut asm);
- self.bpf_code
- }
- }
- impl<'i> Instruction for Store<'i> {
- fn opt_code_byte(&self) -> u8 {
- let size = self.mem_size as u8;
- BPF_MEM | BPF_ST | size | self.source
- }
- fn get_insn_mut(&mut self) -> &mut Insn {
- &mut self.insn
- }
- fn get_insn(&self) -> &Insn {
- &self.insn
- }
- }
- #[derive(Copy, Clone)]
- /// Memory size for LOAD and STORE instructions
- pub enum MemSize {
- /// 8-bit size
- Byte = BPF_B as isize,
- /// 16-bit size
- HalfWord = BPF_H as isize,
- /// 32-bit size
- Word = BPF_W as isize,
- /// 64-bit size
- DoubleWord = BPF_DW as isize
- }
- #[derive(Copy, Clone)]
- enum Addressing {
- Imm = BPF_IMM as isize,
- Abs = BPF_ABS as isize,
- Ind = BPF_IND as isize,
- Mem = BPF_MEM as isize
- }
- /// struct representation of JMP instructions
- pub struct Jump<'i> {
- bpf_code: &'i mut BpfCode,
- cond: Cond,
- src_bit: Source,
- insn: Insn
- }
- impl<'i> Jump<'i> {
- /// push JMP instruction into BpfCode instruction stack
- pub fn push(mut self) -> &'i mut BpfCode {
- let mut asm = self.into_bytes();
- self.bpf_code.instructions.append(&mut asm);
- self.bpf_code
- }
- }
- impl<'i> Instruction for Jump<'i> {
- fn opt_code_byte(&self) -> u8 {
- let cmp: u8 = self.cond as u8;
- let src_bit = self.src_bit as u8;
- cmp | src_bit | BPF_JMP
- }
- fn get_insn_mut(&mut self) -> &mut Insn {
- &mut self.insn
- }
- fn get_insn(&self) -> &Insn {
- &self.insn
- }
- }
- #[derive(Copy, Clone, PartialEq, Eq)]
- /// Conditions for JMP instructions
- pub enum Cond {
- /// Absolute or unconditional
- Abs = BPF_JA as isize,
- /// Jump if `==`
- Equals = BPF_JEQ as isize,
- /// Jump if `>`
- Greater = BPF_JGT as isize,
- /// Jump if `>=`
- GreaterEquals = BPF_JGE as isize,
- /// Jump if `<`
- Lower = BPF_JLT as isize,
- /// Jump if `<=`
- LowerEquals = BPF_JLE as isize,
- /// Jump if `src` & `dst`
- BitAnd = BPF_JSET as isize,
- /// Jump if `!=`
- NotEquals = BPF_JNE as isize,
- /// Jump if `>` (signed)
- GreaterSigned = BPF_JSGT as isize,
- /// Jump if `>=` (signed)
- GreaterEqualsSigned = BPF_JSGE as isize,
- /// Jump if `<` (signed)
- LowerSigned = BPF_JSLT as isize,
- /// Jump if `<=` (signed)
- LowerEqualsSigned = BPF_JSLE as isize
- }
- /// struct representation of CALL instruction
- pub struct FunctionCall<'i> {
- bpf_code: &'i mut BpfCode,
- insn: Insn
- }
- impl<'i> FunctionCall<'i> {
- /// push CALL instruction into BpfCode instruction stack
- pub fn push(mut self) -> &'i mut BpfCode {
- let mut asm = self.into_bytes();
- self.bpf_code.instructions.append(&mut asm);
- self.bpf_code
- }
- }
- impl<'i> Instruction for FunctionCall<'i> {
- fn opt_code_byte(&self) -> u8 {
- BPF_CALL | BPF_JMP
- }
- fn get_insn_mut(&mut self) -> &mut Insn {
- &mut self.insn
- }
- fn get_insn(&self) -> &Insn {
- &self.insn
- }
- }
- /// struct representation of EXIT instruction
- pub struct Exit<'i> {
- bpf_code: &'i mut BpfCode,
- insn: Insn
- }
- impl<'i> Exit<'i> {
- /// push EXIT instruction into BpfCode instruction stack
- pub fn push(mut self) -> &'i mut BpfCode {
- let mut asm = self.into_bytes();
- self.bpf_code.instructions.append(&mut asm);
- self.bpf_code
- }
- }
- impl<'i> Instruction for Exit<'i> {
- fn opt_code_byte(&self) -> u8 {
- BPF_EXIT | BPF_JMP
- }
- fn get_insn_mut(&mut self) -> &mut Insn {
- &mut self.insn
- }
- fn get_insn(&self) -> &Insn {
- &self.insn
- }
- }
- #[cfg(test)]
- mod tests {
- #[cfg(test)]
- mod special {
- use super::super::*;
- #[test]
- fn call_immediate() {
- let mut program = BpfCode::new();
- program.call().set_imm(0x11_22_33_44).push();
- assert_eq!(program.into_bytes(), &[0x85, 0x00, 0x00, 0x00, 0x44, 0x33, 0x22, 0x11]);
- }
- #[test]
- fn exit_operation() {
- let mut program = BpfCode::new();
- program.exit().push();
- assert_eq!(program.into_bytes(), &[0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- }
- #[cfg(test)]
- mod jump_instructions {
- #[cfg(test)]
- mod register {
- use super::super::super::*;
- #[test]
- fn jump_on_dst_equals_src() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::Equals, Source::Reg).set_dst(0x01).set_src(0x02).push();
- assert_eq!(program.into_bytes(), &[0x1d, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_greater_than_src() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::Greater, Source::Reg).set_dst(0x03).set_src(0x02).push();
- assert_eq!(program.into_bytes(), &[0x2d, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_greater_or_equals_to_src() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::GreaterEquals, Source::Reg).set_dst(0x04).set_src(0x01).push();
- assert_eq!(program.into_bytes(), &[0x3d, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_lower_than_src() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::Lower, Source::Reg).set_dst(0x03).set_src(0x02).push();
- assert_eq!(program.into_bytes(), &[0xad, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_lower_or_equals_to_src() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::LowerEquals, Source::Reg).set_dst(0x04).set_src(0x01).push();
- assert_eq!(program.into_bytes(), &[0xbd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_bit_and_with_src_not_equal_zero() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::BitAnd, Source::Reg).set_dst(0x05).set_src(0x02).push();
- assert_eq!(program.into_bytes(), &[0x4d, 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_not_equals_src() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::NotEquals, Source::Reg).set_dst(0x03).set_src(0x05).push();
- assert_eq!(program.into_bytes(), &[0x5d, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_greater_than_src_signed() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::GreaterSigned, Source::Reg).set_dst(0x04).set_src(0x01).push();
- assert_eq!(program.into_bytes(), &[0x6d, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_greater_or_equals_src_signed() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::GreaterEqualsSigned, Source::Reg).set_dst(0x01).set_src(0x03).push();
- assert_eq!(program.into_bytes(), &[0x7d, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_lower_than_src_signed() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::LowerSigned, Source::Reg).set_dst(0x04).set_src(0x01).push();
- assert_eq!(program.into_bytes(), &[0xcd, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_lower_or_equals_src_signed() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::LowerEqualsSigned, Source::Reg).set_dst(0x01).set_src(0x03).push();
- assert_eq!(program.into_bytes(), &[0xdd, 0x31, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- }
- #[cfg(test)]
- mod immediate {
- use super::super::super::*;
- #[test]
- fn jump_to_label() {
- let mut program = BpfCode::new();
- program.jump_unconditional().set_off(0x00_11).push();
- assert_eq!(program.into_bytes(), &[0x05, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_equals_const() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::Equals, Source::Imm).set_dst(0x01).set_imm(0x00_11_22_33).push();
- assert_eq!(program.into_bytes(), &[0x15, 0x01, 0x00, 0x00, 0x33, 0x22, 0x11, 0x00]);
- }
- #[test]
- fn jump_on_dst_greater_than_const() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::Greater, Source::Imm).set_dst(0x02).set_imm(0x00_11_00_11).push();
- assert_eq!(program.into_bytes(), &[0x25, 0x02, 0x00, 0x00, 0x11, 0x00, 0x11, 0x00]);
- }
- #[test]
- fn jump_on_dst_greater_or_equals_to_const() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::GreaterEquals, Source::Imm).set_dst(0x04).set_imm(0x00_22_11_00).push();
- assert_eq!(program.into_bytes(), &[0x35, 0x04, 0x00, 0x00, 0x00, 0x11, 0x22, 0x00]);
- }
- #[test]
- fn jump_on_dst_lower_than_const() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::Lower, Source::Imm).set_dst(0x02).set_imm(0x00_11_00_11).push();
- assert_eq!(program.into_bytes(), &[0xa5, 0x02, 0x00, 0x00, 0x11, 0x00, 0x11, 0x00]);
- }
- #[test]
- fn jump_on_dst_lower_or_equals_to_const() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::LowerEquals, Source::Imm).set_dst(0x04).set_imm(0x00_22_11_00).push();
- assert_eq!(program.into_bytes(), &[0xb5, 0x04, 0x00, 0x00, 0x00, 0x11, 0x22, 0x00]);
- }
- #[test]
- fn jump_on_dst_bit_and_with_const_not_equal_zero() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::BitAnd, Source::Imm).set_dst(0x05).push();
- assert_eq!(program.into_bytes(), &[0x45, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_not_equals_const() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::NotEquals, Source::Imm).set_dst(0x03).push();
- assert_eq!(program.into_bytes(), &[0x55, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_greater_than_const_signed() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::GreaterSigned, Source::Imm).set_dst(0x04).push();
- assert_eq!(program.into_bytes(), &[0x65, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_greater_or_equals_src_signed() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::GreaterEqualsSigned, Source::Imm).set_dst(0x01).push();
- assert_eq!(program.into_bytes(), &[0x75, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_lower_than_const_signed() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::LowerSigned, Source::Imm).set_dst(0x04).push();
- assert_eq!(program.into_bytes(), &[0xc5, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn jump_on_dst_lower_or_equals_src_signed() {
- let mut program = BpfCode::new();
- program.jump_conditional(Cond::LowerEqualsSigned, Source::Imm).set_dst(0x01).push();
- assert_eq!(program.into_bytes(), &[0xd5, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- }
- }
- #[cfg(test)]
- mod store_instructions {
- use super::super::*;
- #[test]
- fn store_word_from_dst_into_immediate_address() {
- let mut program = BpfCode::new();
- program.store(MemSize::Word).set_dst(0x01).set_off(0x00_11).set_imm(0x11_22_33_44).push();
- assert_eq!(program.into_bytes(), &[0x62, 0x01, 0x11, 0x00, 0x44, 0x33, 0x22, 0x11]);
- }
- #[test]
- fn store_half_word_from_dst_into_immediate_address() {
- let mut program = BpfCode::new();
- program.store(MemSize::HalfWord).set_dst(0x02).set_off(0x11_22).push();
- assert_eq!(program.into_bytes(), &[0x6a, 0x02, 0x22, 0x11, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn store_byte_from_dst_into_immediate_address() {
- let mut program = BpfCode::new();
- program.store(MemSize::Byte).push();
- assert_eq!(program.into_bytes(), &[0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn store_double_word_from_dst_into_immediate_address() {
- let mut program = BpfCode::new();
- program.store(MemSize::DoubleWord).push();
- assert_eq!(program.into_bytes(), &[0x7a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn store_word_from_dst_into_src_address() {
- let mut program = BpfCode::new();
- program.store_x(MemSize::Word).set_dst(0x01).set_src(0x02).push();
- assert_eq!(program.into_bytes(), &[0x63, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn store_half_word_from_dst_into_src_address() {
- let mut program = BpfCode::new();
- program.store_x(MemSize::HalfWord).push();
- assert_eq!(program.into_bytes(), &[0x6b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn store_byte_from_dst_into_src_address() {
- let mut program = BpfCode::new();
- program.store_x(MemSize::Byte).push();
- assert_eq!(program.into_bytes(), &[0x73, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn store_double_word_from_dst_into_src_address() {
- let mut program = BpfCode::new();
- program.store_x(MemSize::DoubleWord).push();
- assert_eq!(program.into_bytes(), &[0x7b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- }
- #[cfg(test)]
- mod load_instructions {
- #[cfg(test)]
- mod register {
- use super::super::super::*;
- #[test]
- fn load_word_from_set_src_with_offset() {
- let mut program = BpfCode::new();
- program.load_x(MemSize::Word).set_dst(0x01).set_src(0x02).set_off(0x00_02).push();
- assert_eq!(program.into_bytes(), &[0x61, 0x21, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn load_half_word_from_set_src_with_offset() {
- let mut program = BpfCode::new();
- program.load_x(MemSize::HalfWord).set_dst(0x02).set_src(0x01).set_off(0x11_22).push();
- assert_eq!(program.into_bytes(), &[0x69, 0x12, 0x22, 0x11, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn load_byte_from_set_src_with_offset() {
- let mut program = BpfCode::new();
- program.load_x(MemSize::Byte).set_dst(0x01).set_src(0x04).set_off(0x00_11).push();
- assert_eq!(program.into_bytes(), &[0x71, 0x41, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn load_double_word_from_set_src_with_offset() {
- let mut program = BpfCode::new();
- program.load_x(MemSize::DoubleWord).set_dst(0x04).set_src(0x05).set_off(0x44_55).push();
- assert_eq!(program.into_bytes(), &[0x79, 0x54, 0x55, 0x44, 0x00, 0x00, 0x00, 0x00]);
- }
- }
- #[cfg(test)]
- mod immediate {
- use super::super::super::*;
- #[test]
- fn load_double_word() {
- let mut program = BpfCode::new();
- program.load(MemSize::DoubleWord).set_dst(0x01).set_imm(0x00_01_02_03).push();
- assert_eq!(program.into_bytes(), &[0x18, 0x01, 0x00, 0x00, 0x03, 0x02, 0x01, 0x00]);
- }
- #[test]
- fn load_abs_word() {
- let mut program = BpfCode::new();
- program.load_abs(MemSize::Word).push();
- assert_eq!(program.into_bytes(), &[0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn load_abs_half_word() {
- let mut program = BpfCode::new();
- program.load_abs(MemSize::HalfWord).set_dst(0x05).push();
- assert_eq!(program.into_bytes(), &[0x28, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn load_abs_byte() {
- let mut program = BpfCode::new();
- program.load_abs(MemSize::Byte).set_dst(0x01).push();
- assert_eq!(program.into_bytes(), &[0x30, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn load_abs_double_word() {
- let mut program = BpfCode::new();
- program.load_abs(MemSize::DoubleWord).set_dst(0x01).set_imm(0x01_02_03_04).push();
- assert_eq!(program.into_bytes(), &[0x38, 0x01, 0x00, 0x00, 0x04, 0x03, 0x02, 0x01]);
- }
- #[test]
- fn load_indirect_word() {
- let mut program = BpfCode::new();
- program.load_ind(MemSize::Word).push();
- assert_eq!(program.into_bytes(), &[0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn load_indirect_half_word() {
- let mut program = BpfCode::new();
- program.load_ind(MemSize::HalfWord).push();
- assert_eq!(program.into_bytes(), &[0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn load_indirect_byte() {
- let mut program = BpfCode::new();
- program.load_ind(MemSize::Byte).push();
- assert_eq!(program.into_bytes(), &[0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn load_indirect_double_word() {
- let mut program = BpfCode::new();
- program.load_ind(MemSize::DoubleWord).push();
- assert_eq!(program.into_bytes(), &[0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- }
- }
- #[cfg(test)]
- mod byte_swap_instructions {
- use super::super::*;
- #[test]
- fn convert_host_to_little_endian_16bits() {
- let mut program = BpfCode::new();
- program.swap_bytes(Endian::Little).set_dst(0x01).set_imm(0x00_00_00_10).push();
- assert_eq!(program.into_bytes(), &[0xd4, 0x01, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn convert_host_to_little_endian_32bits() {
- let mut program = BpfCode::new();
- program.swap_bytes(Endian::Little).set_dst(0x02).set_imm(0x00_00_00_20).push();
- assert_eq!(program.into_bytes(), &[0xd4, 0x02, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn convert_host_to_little_endian_64bit() {
- let mut program = BpfCode::new();
- program.swap_bytes(Endian::Little).set_dst(0x03).set_imm(0x00_00_00_40).push();
- assert_eq!(program.into_bytes(), &[0xd4, 0x03, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn convert_host_to_big_endian_16bits() {
- let mut program = BpfCode::new();
- program.swap_bytes(Endian::Big).set_dst(0x01).set_imm(0x00_00_00_10).push();
- assert_eq!(program.into_bytes(), &[0xdc, 0x01, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn convert_host_to_big_endian_32bits() {
- let mut program = BpfCode::new();
- program.swap_bytes(Endian::Big).set_dst(0x02).set_imm(0x00_00_00_20).push();
- assert_eq!(program.into_bytes(), &[0xdc, 0x02, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn convert_host_to_big_endian_64bit() {
- let mut program = BpfCode::new();
- program.swap_bytes(Endian::Big).set_dst(0x03).set_imm(0x00_00_00_40).push();
- assert_eq!(program.into_bytes(), &[0xdc, 0x03, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00]);
- }
- }
- #[cfg(test)]
- mod moves_instructions {
- #[cfg(test)]
- mod arch_x64 {
- #[cfg(test)]
- mod immediate {
- use super::super::super::super::*;
- #[test]
- fn move_and_add_const_to_register() {
- let mut program = BpfCode::new();
- program.add(Source::Imm, Arch::X64).set_dst(0x02).set_imm(0x01_02_03_04).push();
- assert_eq!(program.into_bytes(), &[0x07, 0x02, 0x00, 0x00, 0x04, 0x03, 0x02, 0x01]);
- }
- #[test]
- fn move_sub_const_to_register() {
- let mut program = BpfCode::new();
- program.sub(Source::Imm, Arch::X64).set_dst(0x04).set_imm(0x00_01_02_03).push();
- assert_eq!(program.into_bytes(), &[0x17, 0x04, 0x00, 0x00, 0x03, 0x02, 0x01, 0x00]);
- }
- #[test]
- fn move_mul_const_to_register() {
- let mut program = BpfCode::new();
- program.mul(Source::Imm, Arch::X64).set_dst(0x05).set_imm(0x04_03_02_01).push();
- assert_eq!(program.into_bytes(), &[0x27, 0x05, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04]);
- }
- #[test]
- fn move_div_constant_to_register() {
- let mut program = BpfCode::new();
- program.div(Source::Imm, Arch::X64).set_dst(0x02).set_imm(0x00_ff_00_ff).push();
- assert_eq!(program.into_bytes(), &[0x37, 0x02, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00]);
- }
- #[test]
- fn move_bit_or_const_to_register() {
- let mut program = BpfCode::new();
- program.bit_or(Source::Imm, Arch::X64).set_dst(0x02).set_imm(0x00_11_00_22).push();
- assert_eq!(program.into_bytes(), &[0x47, 0x02, 0x00, 0x00, 0x22, 0x00, 0x11, 0x00]);
- }
- #[test]
- fn move_bit_and_const_to_register() {
- let mut program = BpfCode::new();
- program.bit_and(Source::Imm, Arch::X64).set_dst(0x02).set_imm(0x11_22_33_44).push();
- assert_eq!(program.into_bytes(), &[0x57, 0x02, 0x00, 0x00, 0x44, 0x33, 0x22, 0x11]);
- }
- #[test]
- fn move_left_shift_const_to_register() {
- let mut program = BpfCode::new();
- program.left_shift(Source::Imm, Arch::X64).set_dst(0x01).push();
- assert_eq!(program.into_bytes(), &[0x67, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_logical_right_shift_const_to_register() {
- let mut program = BpfCode::new();
- program.right_shift(Source::Imm, Arch::X64).set_dst(0x01).push();
- assert_eq!(program.into_bytes(), &[0x77, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_negate_register() {
- let mut program = BpfCode::new();
- program.negate(Arch::X64).set_dst(0x02).push();
- assert_eq!(program.into_bytes(), &[0x87, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_mod_const_to_register() {
- let mut program = BpfCode::new();
- program.modulo(Source::Imm, Arch::X64).set_dst(0x02).push();
- assert_eq!(program.into_bytes(), &[0x97, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_bit_xor_const_to_register() {
- let mut program = BpfCode::new();
- program.bit_xor(Source::Imm, Arch::X64).set_dst(0x03).push();
- assert_eq!(program.into_bytes(), &[0xa7, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_const_to_register() {
- let mut program = BpfCode::new();
- program.mov(Source::Imm, Arch::X64).set_dst(0x01).set_imm(0x00_00_00_FF).push();
- assert_eq!(program.into_bytes(), &[0xb7, 0x01, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_signed_right_shift_const_to_register() {
- let mut program = BpfCode::new();
- program.signed_right_shift(Source::Imm, Arch::X64).set_dst(0x05).push();
- assert_eq!(program.into_bytes(), &[0xc7, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- }
- #[cfg(test)]
- mod register {
- use super::super::super::super::*;
- #[test]
- fn move_and_add_from_register() {
- let mut program = BpfCode::new();
- program.add(Source::Reg, Arch::X64).set_dst(0x03).set_src(0x02).push();
- assert_eq!(program.into_bytes(), &[0x0f, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_sub_from_register_to_register() {
- let mut program = BpfCode::new();
- program.sub(Source::Reg, Arch::X64).set_dst(0x03).set_src(0x04).push();
- assert_eq!(program.into_bytes(), &[0x1f, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_mul_from_register_to_register() {
- let mut program = BpfCode::new();
- program.mul(Source::Reg, Arch::X64).set_dst(0x04).set_src(0x03).push();
- assert_eq!(program.into_bytes(), &[0x2f, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_div_from_register_to_register() {
- let mut program = BpfCode::new();
- program.div(Source::Reg, Arch::X64).set_dst(0x01).set_src(0x00).push();
- assert_eq!(program.into_bytes(), &[0x3f, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_bit_or_from_register_to_register() {
- let mut program = BpfCode::new();
- program.bit_or(Source::Reg, Arch::X64).set_dst(0x03).set_src(0x01).push();
- assert_eq!(program.into_bytes(), &[0x4f, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_bit_and_from_register_to_register() {
- let mut program = BpfCode::new();
- program.bit_and(Source::Reg, Arch::X64).set_dst(0x03).set_src(0x02).push();
- assert_eq!(program.into_bytes(), &[0x5f, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_left_shift_from_register_to_register() {
- let mut program = BpfCode::new();
- program.left_shift(Source::Reg, Arch::X64).set_dst(0x02).set_src(0x03).push();
- assert_eq!(program.into_bytes(), &[0x6f, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_logical_right_shift_from_register_to_register() {
- let mut program = BpfCode::new();
- program.right_shift(Source::Reg, Arch::X64).set_dst(0x02).set_src(0x04).push();
- assert_eq!(program.into_bytes(), &[0x7f, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_mod_from_register_to_register() {
- let mut program = BpfCode::new();
- program.modulo(Source::Reg, Arch::X64).set_dst(0x01).set_src(0x02).push();
- assert_eq!(program.into_bytes(), &[0x9f, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_bit_xor_from_register_to_register() {
- let mut program = BpfCode::new();
- program.bit_xor(Source::Reg, Arch::X64).set_dst(0x02).set_src(0x04).push();
- assert_eq!(program.into_bytes(), &[0xaf, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_from_register_to_another_register() {
- let mut program = BpfCode::new();
- program.mov(Source::Reg, Arch::X64).set_src(0x01).push();
- assert_eq!(program.into_bytes(), &[0xbf, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_signed_right_shift_from_register_to_register() {
- let mut program = BpfCode::new();
- program.signed_right_shift(Source::Reg, Arch::X64).set_dst(0x02).set_src(0x03).push();
- assert_eq!(program.into_bytes(), &[0xcf, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- }
- }
- #[cfg(test)]
- mod arch_x32 {
- #[cfg(test)]
- mod immediate {
- use super::super::super::super::*;
- #[test]
- fn move_and_add_const_to_register() {
- let mut program = BpfCode::new();
- program.add(Source::Imm, Arch::X32).set_dst(0x02).set_imm(0x01_02_03_04).push();
- assert_eq!(program.into_bytes(), &[0x04, 0x02, 0x00, 0x00, 0x04, 0x03, 0x02, 0x01]);
- }
- #[test]
- fn move_sub_const_to_register() {
- let mut program = BpfCode::new();
- program.sub(Source::Imm, Arch::X32).set_dst(0x04).set_imm(0x00_01_02_03).push();
- assert_eq!(program.into_bytes(), &[0x14, 0x04, 0x00, 0x00, 0x03, 0x02, 0x01, 0x00]);
- }
- #[test]
- fn move_mul_const_to_register() {
- let mut program = BpfCode::new();
- program.mul(Source::Imm, Arch::X32).set_dst(0x05).set_imm(0x04_03_02_01).push();
- assert_eq!(program.into_bytes(), &[0x24, 0x05, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04]);
- }
- #[test]
- fn move_div_constant_to_register() {
- let mut program = BpfCode::new();
- program.div(Source::Imm, Arch::X32).set_dst(0x02).set_imm(0x00_ff_00_ff).push();
- assert_eq!(program.into_bytes(), &[0x34, 0x02, 0x00, 0x00, 0xff, 0x00, 0xff, 0x00]);
- }
- #[test]
- fn move_bit_or_const_to_register() {
- let mut program = BpfCode::new();
- program.bit_or(Source::Imm, Arch::X32).set_dst(0x02).set_imm(0x00_11_00_22).push();
- assert_eq!(program.into_bytes(), &[0x44, 0x02, 0x00, 0x00, 0x22, 0x00, 0x11, 0x00]);
- }
- #[test]
- fn move_bit_and_const_to_register() {
- let mut program = BpfCode::new();
- program.bit_and(Source::Imm, Arch::X32).set_dst(0x02).set_imm(0x11_22_33_44).push();
- assert_eq!(program.into_bytes(), &[0x54, 0x02, 0x00, 0x00, 0x44, 0x33, 0x22, 0x11]);
- }
- #[test]
- fn move_left_shift_const_to_register() {
- let mut program = BpfCode::new();
- program.left_shift(Source::Imm, Arch::X32).set_dst(0x01).push();
- assert_eq!(program.into_bytes(), &[0x64, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_logical_right_shift_const_to_register() {
- let mut program = BpfCode::new();
- program.right_shift(Source::Imm, Arch::X32).set_dst(0x01).push();
- assert_eq!(program.into_bytes(), &[0x74, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_negate_register() {
- let mut program = BpfCode::new();
- program.negate(Arch::X32).set_dst(0x02).push();
- assert_eq!(program.into_bytes(), &[0x84, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_mod_const_to_register() {
- let mut program = BpfCode::new();
- program.modulo(Source::Imm, Arch::X32).set_dst(0x02).push();
- assert_eq!(program.into_bytes(), &[0x94, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_bit_xor_const_to_register() {
- let mut program = BpfCode::new();
- program.bit_xor(Source::Imm, Arch::X32).set_dst(0x03).push();
- assert_eq!(program.into_bytes(), &[0xa4, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_const_to_register() {
- let mut program = BpfCode::new();
- program.mov(Source::Imm, Arch::X32).set_dst(0x01).set_imm(0x00_00_00_FF).push();
- assert_eq!(program.into_bytes(), &[0xb4, 0x01, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_signed_right_shift_const_to_register() {
- let mut program = BpfCode::new();
- program.signed_right_shift(Source::Imm, Arch::X32).set_dst(0x05).push();
- assert_eq!(program.into_bytes(), &[0xc4, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- }
- #[cfg(test)]
- mod register {
- use super::super::super::super::*;
- #[test]
- fn move_and_add_from_register() {
- let mut program = BpfCode::new();
- program.add(Source::Reg, Arch::X32).set_dst(0x03).set_src(0x02).push();
- assert_eq!(program.into_bytes(), &[0x0c, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_sub_from_register_to_register() {
- let mut program = BpfCode::new();
- program.sub(Source::Reg, Arch::X32).set_dst(0x03).set_src(0x04).push();
- assert_eq!(program.into_bytes(), &[0x1c, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_mul_from_register_to_register() {
- let mut program = BpfCode::new();
- program.mul(Source::Reg, Arch::X32).set_dst(0x04).set_src(0x03).push();
- assert_eq!(program.into_bytes(), &[0x2c, 0x34, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_div_from_register_to_register() {
- let mut program = BpfCode::new();
- program.div(Source::Reg, Arch::X32).set_dst(0x01).set_src(0x00).push();
- assert_eq!(program.into_bytes(), &[0x3c, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_bit_or_from_register_to_register() {
- let mut program = BpfCode::new();
- program.bit_or(Source::Reg, Arch::X32).set_dst(0x03).set_src(0x01).push();
- assert_eq!(program.into_bytes(), &[0x4c, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_bit_and_from_register_to_register() {
- let mut program = BpfCode::new();
- program.bit_and(Source::Reg, Arch::X32).set_dst(0x03).set_src(0x02).push();
- assert_eq!(program.into_bytes(), &[0x5c, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_left_shift_from_register_to_register() {
- let mut program = BpfCode::new();
- program.left_shift(Source::Reg, Arch::X32).set_dst(0x02).set_src(0x03).push();
- assert_eq!(program.into_bytes(), &[0x6c, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_logical_right_shift_from_register_to_register() {
- let mut program = BpfCode::new();
- program.right_shift(Source::Reg, Arch::X32).set_dst(0x02).set_src(0x04).push();
- assert_eq!(program.into_bytes(), &[0x7c, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_mod_from_register_to_register() {
- let mut program = BpfCode::new();
- program.modulo(Source::Reg, Arch::X32).set_dst(0x01).set_src(0x02).push();
- assert_eq!(program.into_bytes(), &[0x9c, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_bit_xor_from_register_to_register() {
- let mut program = BpfCode::new();
- program.bit_xor(Source::Reg, Arch::X32).set_dst(0x02).set_src(0x04).push();
- assert_eq!(program.into_bytes(), &[0xac, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_from_register_to_another_register() {
- let mut program = BpfCode::new();
- program.mov(Source::Reg, Arch::X32).set_dst(0x00).set_src(0x01).push();
- assert_eq!(program.into_bytes(), &[0xbc, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- #[test]
- fn move_signed_right_shift_from_register_to_register() {
- let mut program = BpfCode::new();
- program.signed_right_shift(Source::Reg, Arch::X32).set_dst(0x02).set_src(0x03).push();
- assert_eq!(program.into_bytes(), &[0xcc, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00]);
- }
- }
- }
- }
- #[cfg(test)]
- mod programs {
- use super::super::*;
- #[test]
- fn example_from_assembler() {
- let mut program = BpfCode::new();
- program.add(Source::Imm, Arch::X64).set_dst(1).set_imm(0x605).push()
- .mov(Source::Imm, Arch::X64).set_dst(2).set_imm(0x32).push()
- .mov(Source::Reg, Arch::X64).set_src(0).set_dst(1).push()
- .swap_bytes(Endian::Big).set_dst(0).set_imm(0x10).push()
- .negate(Arch::X64).set_dst(2).push()
- .exit().push();
- let bytecode = program.into_bytes();
- let ref_prog = &[
- 0x07, 0x01, 0x00, 0x00, 0x05, 0x06, 0x00, 0x00,
- 0xb7, 0x02, 0x00, 0x00, 0x32, 0x00, 0x00, 0x00,
- 0xbf, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0xdc, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00,
- 0x87, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
- 0x95, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
- ];
- // cargo says: "`[{integer}; 48]` cannot be formatted using `{:?}`
- // because it doesn't implement `std::fmt::Debug`"
- // So let's check in two steps.
- assert_eq!(bytecode[..32], ref_prog[..32]);
- assert_eq!(bytecode[33..], ref_prog[33..]);
- }
- }
- }
|