bindings.rs 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916
  1. #[repr(C)]
  2. #[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
  3. pub struct __BindgenBitfieldUnit<Storage> {
  4. storage: Storage,
  5. }
  6. impl<Storage> __BindgenBitfieldUnit<Storage> {
  7. #[inline]
  8. pub const fn new(storage: Storage) -> Self {
  9. Self { storage }
  10. }
  11. }
  12. impl<Storage> __BindgenBitfieldUnit<Storage>
  13. where
  14. Storage: AsRef<[u8]> + AsMut<[u8]>,
  15. {
  16. #[inline]
  17. fn extract_bit(byte: u8, index: usize) -> bool {
  18. let bit_index = if cfg!(target_endian = "big") {
  19. 7 - (index % 8)
  20. } else {
  21. index % 8
  22. };
  23. let mask = 1 << bit_index;
  24. byte & mask == mask
  25. }
  26. #[inline]
  27. pub fn get_bit(&self, index: usize) -> bool {
  28. debug_assert!(index / 8 < self.storage.as_ref().len());
  29. let byte_index = index / 8;
  30. let byte = self.storage.as_ref()[byte_index];
  31. Self::extract_bit(byte, index)
  32. }
  33. #[inline]
  34. pub unsafe fn raw_get_bit(this: *const Self, index: usize) -> bool {
  35. debug_assert!(index / 8 < core::mem::size_of::<Storage>());
  36. let byte_index = index / 8;
  37. let byte = *(core::ptr::addr_of!((*this).storage) as *const u8).offset(byte_index as isize);
  38. Self::extract_bit(byte, index)
  39. }
  40. #[inline]
  41. fn change_bit(byte: u8, index: usize, val: bool) -> u8 {
  42. let bit_index = if cfg!(target_endian = "big") {
  43. 7 - (index % 8)
  44. } else {
  45. index % 8
  46. };
  47. let mask = 1 << bit_index;
  48. if val {
  49. byte | mask
  50. } else {
  51. byte & !mask
  52. }
  53. }
  54. #[inline]
  55. pub fn set_bit(&mut self, index: usize, val: bool) {
  56. debug_assert!(index / 8 < self.storage.as_ref().len());
  57. let byte_index = index / 8;
  58. let byte = &mut self.storage.as_mut()[byte_index];
  59. *byte = Self::change_bit(*byte, index, val);
  60. }
  61. #[inline]
  62. pub unsafe fn raw_set_bit(this: *mut Self, index: usize, val: bool) {
  63. debug_assert!(index / 8 < core::mem::size_of::<Storage>());
  64. let byte_index = index / 8;
  65. let byte =
  66. (core::ptr::addr_of_mut!((*this).storage) as *mut u8).offset(byte_index as isize);
  67. *byte = Self::change_bit(*byte, index, val);
  68. }
  69. #[inline]
  70. pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 {
  71. debug_assert!(bit_width <= 64);
  72. debug_assert!(bit_offset / 8 < self.storage.as_ref().len());
  73. debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len());
  74. let mut val = 0;
  75. for i in 0..(bit_width as usize) {
  76. if self.get_bit(i + bit_offset) {
  77. let index = if cfg!(target_endian = "big") {
  78. bit_width as usize - 1 - i
  79. } else {
  80. i
  81. };
  82. val |= 1 << index;
  83. }
  84. }
  85. val
  86. }
  87. #[inline]
  88. pub unsafe fn raw_get(this: *const Self, bit_offset: usize, bit_width: u8) -> u64 {
  89. debug_assert!(bit_width <= 64);
  90. debug_assert!(bit_offset / 8 < core::mem::size_of::<Storage>());
  91. debug_assert!((bit_offset + (bit_width as usize)) / 8 <= core::mem::size_of::<Storage>());
  92. let mut val = 0;
  93. for i in 0..(bit_width as usize) {
  94. if Self::raw_get_bit(this, i + bit_offset) {
  95. let index = if cfg!(target_endian = "big") {
  96. bit_width as usize - 1 - i
  97. } else {
  98. i
  99. };
  100. val |= 1 << index;
  101. }
  102. }
  103. val
  104. }
  105. #[inline]
  106. pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) {
  107. debug_assert!(bit_width <= 64);
  108. debug_assert!(bit_offset / 8 < self.storage.as_ref().len());
  109. debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len());
  110. for i in 0..(bit_width as usize) {
  111. let mask = 1 << i;
  112. let val_bit_is_set = val & mask == mask;
  113. let index = if cfg!(target_endian = "big") {
  114. bit_width as usize - 1 - i
  115. } else {
  116. i
  117. };
  118. self.set_bit(index + bit_offset, val_bit_is_set);
  119. }
  120. }
  121. #[inline]
  122. pub unsafe fn raw_set(this: *mut Self, bit_offset: usize, bit_width: u8, val: u64) {
  123. debug_assert!(bit_width <= 64);
  124. debug_assert!(bit_offset / 8 < core::mem::size_of::<Storage>());
  125. debug_assert!((bit_offset + (bit_width as usize)) / 8 <= core::mem::size_of::<Storage>());
  126. for i in 0..(bit_width as usize) {
  127. let mask = 1 << i;
  128. let val_bit_is_set = val & mask == mask;
  129. let index = if cfg!(target_endian = "big") {
  130. bit_width as usize - 1 - i
  131. } else {
  132. i
  133. };
  134. Self::raw_set_bit(this, index + bit_offset, val_bit_is_set);
  135. }
  136. }
  137. }
  138. #[repr(C)]
  139. #[derive(Default)]
  140. pub struct __IncompleteArrayField<T>(::core::marker::PhantomData<T>, [T; 0]);
  141. impl<T> __IncompleteArrayField<T> {
  142. #[inline]
  143. pub const fn new() -> Self {
  144. __IncompleteArrayField(::core::marker::PhantomData, [])
  145. }
  146. #[inline]
  147. pub fn as_ptr(&self) -> *const T {
  148. self as *const _ as *const T
  149. }
  150. #[inline]
  151. pub fn as_mut_ptr(&mut self) -> *mut T {
  152. self as *mut _ as *mut T
  153. }
  154. #[inline]
  155. pub unsafe fn as_slice(&self, len: usize) -> &[T] {
  156. ::core::slice::from_raw_parts(self.as_ptr(), len)
  157. }
  158. #[inline]
  159. pub unsafe fn as_mut_slice(&mut self, len: usize) -> &mut [T] {
  160. ::core::slice::from_raw_parts_mut(self.as_mut_ptr(), len)
  161. }
  162. }
  163. impl<T> ::core::fmt::Debug for __IncompleteArrayField<T> {
  164. fn fmt(&self, fmt: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
  165. fmt.write_str("__IncompleteArrayField")
  166. }
  167. }
  168. pub const BPF_LD: u32 = 0;
  169. pub const BPF_LDX: u32 = 1;
  170. pub const BPF_ST: u32 = 2;
  171. pub const BPF_STX: u32 = 3;
  172. pub const BPF_ALU: u32 = 4;
  173. pub const BPF_JMP: u32 = 5;
  174. pub const BPF_RET: u32 = 6;
  175. pub const BPF_MISC: u32 = 7;
  176. pub const BPF_W: u32 = 0;
  177. pub const BPF_H: u32 = 8;
  178. pub const BPF_B: u32 = 16;
  179. pub const BPF_IMM: u32 = 0;
  180. pub const BPF_ABS: u32 = 32;
  181. pub const BPF_IND: u32 = 64;
  182. pub const BPF_MEM: u32 = 96;
  183. pub const BPF_LEN: u32 = 128;
  184. pub const BPF_MSH: u32 = 160;
  185. pub const BPF_ADD: u32 = 0;
  186. pub const BPF_SUB: u32 = 16;
  187. pub const BPF_MUL: u32 = 32;
  188. pub const BPF_DIV: u32 = 48;
  189. pub const BPF_OR: u32 = 64;
  190. pub const BPF_AND: u32 = 80;
  191. pub const BPF_LSH: u32 = 96;
  192. pub const BPF_RSH: u32 = 112;
  193. pub const BPF_NEG: u32 = 128;
  194. pub const BPF_MOD: u32 = 144;
  195. pub const BPF_XOR: u32 = 160;
  196. pub const BPF_JA: u32 = 0;
  197. pub const BPF_JEQ: u32 = 16;
  198. pub const BPF_JGT: u32 = 32;
  199. pub const BPF_JGE: u32 = 48;
  200. pub const BPF_JSET: u32 = 64;
  201. pub const BPF_K: u32 = 0;
  202. pub const BPF_X: u32 = 8;
  203. pub const BPF_MAXINSNS: u32 = 4096;
  204. pub const BPF_JMP32: u32 = 6;
  205. pub const BPF_ALU64: u32 = 7;
  206. pub const BPF_DW: u32 = 24;
  207. pub const BPF_MEMSX: u32 = 128;
  208. pub const BPF_ATOMIC: u32 = 192;
  209. pub const BPF_XADD: u32 = 192;
  210. pub const BPF_MOV: u32 = 176;
  211. pub const BPF_ARSH: u32 = 192;
  212. pub const BPF_END: u32 = 208;
  213. pub const BPF_TO_LE: u32 = 0;
  214. pub const BPF_TO_BE: u32 = 8;
  215. pub const BPF_FROM_LE: u32 = 0;
  216. pub const BPF_FROM_BE: u32 = 8;
  217. pub const BPF_JNE: u32 = 80;
  218. pub const BPF_JLT: u32 = 160;
  219. pub const BPF_JLE: u32 = 176;
  220. pub const BPF_JSGT: u32 = 96;
  221. pub const BPF_JSGE: u32 = 112;
  222. pub const BPF_JSLT: u32 = 192;
  223. pub const BPF_JSLE: u32 = 208;
  224. pub const BPF_JCOND: u32 = 224;
  225. pub const BPF_CALL: u32 = 128;
  226. pub const BPF_EXIT: u32 = 144;
  227. pub const BPF_FETCH: u32 = 1;
  228. pub const BPF_XCHG: u32 = 225;
  229. pub const BPF_CMPXCHG: u32 = 241;
  230. pub const BPF_F_ALLOW_OVERRIDE: u32 = 1;
  231. pub const BPF_F_ALLOW_MULTI: u32 = 2;
  232. pub const BPF_F_REPLACE: u32 = 4;
  233. pub const BPF_F_BEFORE: u32 = 8;
  234. pub const BPF_F_AFTER: u32 = 16;
  235. pub const BPF_F_ID: u32 = 32;
  236. pub const BPF_F_STRICT_ALIGNMENT: u32 = 1;
  237. pub const BPF_F_ANY_ALIGNMENT: u32 = 2;
  238. pub const BPF_F_TEST_RND_HI32: u32 = 4;
  239. pub const BPF_F_TEST_STATE_FREQ: u32 = 8;
  240. pub const BPF_F_SLEEPABLE: u32 = 16;
  241. pub const BPF_F_XDP_HAS_FRAGS: u32 = 32;
  242. pub const BPF_F_XDP_DEV_BOUND_ONLY: u32 = 64;
  243. pub const BPF_F_TEST_REG_INVARIANTS: u32 = 128;
  244. pub const BPF_F_NETFILTER_IP_DEFRAG: u32 = 1;
  245. pub const BPF_PSEUDO_MAP_FD: u32 = 1;
  246. pub const BPF_PSEUDO_MAP_IDX: u32 = 5;
  247. pub const BPF_PSEUDO_MAP_VALUE: u32 = 2;
  248. pub const BPF_PSEUDO_MAP_IDX_VALUE: u32 = 6;
  249. pub const BPF_PSEUDO_BTF_ID: u32 = 3;
  250. pub const BPF_PSEUDO_FUNC: u32 = 4;
  251. pub const BPF_PSEUDO_CALL: u32 = 1;
  252. pub const BPF_PSEUDO_KFUNC_CALL: u32 = 2;
  253. pub const BPF_F_QUERY_EFFECTIVE: u32 = 1;
  254. pub const BPF_F_TEST_RUN_ON_CPU: u32 = 1;
  255. pub const BPF_F_TEST_XDP_LIVE_FRAMES: u32 = 2;
  256. pub const BPF_BUILD_ID_SIZE: u32 = 20;
  257. pub const BPF_OBJ_NAME_LEN: u32 = 16;
  258. pub const BPF_TAG_SIZE: u32 = 8;
  259. pub const TC_ACT_UNSPEC: i32 = -1;
  260. pub const TC_ACT_OK: u32 = 0;
  261. pub const TC_ACT_RECLASSIFY: u32 = 1;
  262. pub const TC_ACT_SHOT: u32 = 2;
  263. pub const TC_ACT_PIPE: u32 = 3;
  264. pub const TC_ACT_STOLEN: u32 = 4;
  265. pub const TC_ACT_QUEUED: u32 = 5;
  266. pub const TC_ACT_REPEAT: u32 = 6;
  267. pub const TC_ACT_REDIRECT: u32 = 7;
  268. pub const TC_ACT_TRAP: u32 = 8;
  269. pub const TC_ACT_VALUE_MAX: u32 = 8;
  270. pub const TC_ACT_EXT_VAL_MASK: u32 = 268435455;
  271. pub const TC_ACT_JUMP: u32 = 268435456;
  272. pub const TC_ACT_GOTO_CHAIN: u32 = 536870912;
  273. pub const TC_ACT_EXT_OPCODE_MAX: u32 = 536870912;
  274. pub const SOL_SOCKET: u32 = 1;
  275. pub const SO_DEBUG: u32 = 1;
  276. pub const SO_REUSEADDR: u32 = 2;
  277. pub const SO_TYPE: u32 = 3;
  278. pub const SO_ERROR: u32 = 4;
  279. pub const SO_DONTROUTE: u32 = 5;
  280. pub const SO_BROADCAST: u32 = 6;
  281. pub const SO_SNDBUF: u32 = 7;
  282. pub const SO_RCVBUF: u32 = 8;
  283. pub const SO_SNDBUFFORCE: u32 = 32;
  284. pub const SO_RCVBUFFORCE: u32 = 33;
  285. pub const SO_KEEPALIVE: u32 = 9;
  286. pub const SO_OOBINLINE: u32 = 10;
  287. pub const SO_NO_CHECK: u32 = 11;
  288. pub const SO_PRIORITY: u32 = 12;
  289. pub const SO_LINGER: u32 = 13;
  290. pub const SO_BSDCOMPAT: u32 = 14;
  291. pub const SO_REUSEPORT: u32 = 15;
  292. pub const SO_PASSCRED: u32 = 16;
  293. pub const SO_PEERCRED: u32 = 17;
  294. pub const SO_RCVLOWAT: u32 = 18;
  295. pub const SO_SNDLOWAT: u32 = 19;
  296. pub const SO_RCVTIMEO_OLD: u32 = 20;
  297. pub const SO_SNDTIMEO_OLD: u32 = 21;
  298. pub const SO_SECURITY_AUTHENTICATION: u32 = 22;
  299. pub const SO_SECURITY_ENCRYPTION_TRANSPORT: u32 = 23;
  300. pub const SO_SECURITY_ENCRYPTION_NETWORK: u32 = 24;
  301. pub const SO_BINDTODEVICE: u32 = 25;
  302. pub const SO_ATTACH_FILTER: u32 = 26;
  303. pub const SO_DETACH_FILTER: u32 = 27;
  304. pub const SO_GET_FILTER: u32 = 26;
  305. pub const SO_PEERNAME: u32 = 28;
  306. pub const SO_ACCEPTCONN: u32 = 30;
  307. pub const SO_PEERSEC: u32 = 31;
  308. pub const SO_PASSSEC: u32 = 34;
  309. pub const SO_MARK: u32 = 36;
  310. pub const SO_PROTOCOL: u32 = 38;
  311. pub const SO_DOMAIN: u32 = 39;
  312. pub const SO_RXQ_OVFL: u32 = 40;
  313. pub const SO_WIFI_STATUS: u32 = 41;
  314. pub const SO_PEEK_OFF: u32 = 42;
  315. pub const SO_NOFCS: u32 = 43;
  316. pub const SO_LOCK_FILTER: u32 = 44;
  317. pub const SO_SELECT_ERR_QUEUE: u32 = 45;
  318. pub const SO_BUSY_POLL: u32 = 46;
  319. pub const SO_MAX_PACING_RATE: u32 = 47;
  320. pub const SO_BPF_EXTENSIONS: u32 = 48;
  321. pub const SO_INCOMING_CPU: u32 = 49;
  322. pub const SO_ATTACH_BPF: u32 = 50;
  323. pub const SO_DETACH_BPF: u32 = 27;
  324. pub const SO_ATTACH_REUSEPORT_CBPF: u32 = 51;
  325. pub const SO_ATTACH_REUSEPORT_EBPF: u32 = 52;
  326. pub const SO_CNX_ADVICE: u32 = 53;
  327. pub const SO_MEMINFO: u32 = 55;
  328. pub const SO_INCOMING_NAPI_ID: u32 = 56;
  329. pub const SO_COOKIE: u32 = 57;
  330. pub const SO_PEERGROUPS: u32 = 59;
  331. pub const SO_ZEROCOPY: u32 = 60;
  332. pub const SO_TXTIME: u32 = 61;
  333. pub const SO_BINDTOIFINDEX: u32 = 62;
  334. pub const SO_TIMESTAMP_OLD: u32 = 29;
  335. pub const SO_TIMESTAMPNS_OLD: u32 = 35;
  336. pub const SO_TIMESTAMPING_OLD: u32 = 37;
  337. pub const SO_TIMESTAMP_NEW: u32 = 63;
  338. pub const SO_TIMESTAMPNS_NEW: u32 = 64;
  339. pub const SO_TIMESTAMPING_NEW: u32 = 65;
  340. pub const SO_RCVTIMEO_NEW: u32 = 66;
  341. pub const SO_SNDTIMEO_NEW: u32 = 67;
  342. pub const SO_DETACH_REUSEPORT_BPF: u32 = 68;
  343. pub const SO_TIMESTAMP: u32 = 29;
  344. pub const SO_TIMESTAMPNS: u32 = 35;
  345. pub const SO_TIMESTAMPING: u32 = 37;
  346. pub const SO_RCVTIMEO: u32 = 20;
  347. pub const SO_SNDTIMEO: u32 = 21;
  348. pub type __u8 = ::aya_ebpf_cty::c_uchar;
  349. pub type __s16 = ::aya_ebpf_cty::c_short;
  350. pub type __u16 = ::aya_ebpf_cty::c_ushort;
  351. pub type __s32 = ::aya_ebpf_cty::c_int;
  352. pub type __u32 = ::aya_ebpf_cty::c_uint;
  353. pub type __s64 = ::aya_ebpf_cty::c_longlong;
  354. pub type __u64 = ::aya_ebpf_cty::c_ulonglong;
  355. pub type __be16 = __u16;
  356. pub type __be32 = __u32;
  357. pub type __wsum = __u32;
  358. #[repr(C)]
  359. #[derive(Debug, Copy, Clone)]
  360. pub struct bpf_perf_event_data {
  361. _unused: [u8; 0],
  362. }
  363. #[repr(C)]
  364. #[derive(Debug, Copy, Clone)]
  365. pub struct linux_binprm {
  366. _unused: [u8; 0],
  367. }
  368. #[repr(C)]
  369. #[derive(Debug, Copy, Clone)]
  370. pub struct pt_regs {
  371. _unused: [u8; 0],
  372. }
  373. #[repr(C)]
  374. #[derive(Debug, Copy, Clone)]
  375. pub struct tcphdr {
  376. _unused: [u8; 0],
  377. }
  378. #[repr(C)]
  379. #[derive(Debug, Copy, Clone)]
  380. pub struct seq_file {
  381. _unused: [u8; 0],
  382. }
  383. #[repr(C)]
  384. #[derive(Debug, Copy, Clone)]
  385. pub struct tcp6_sock {
  386. _unused: [u8; 0],
  387. }
  388. #[repr(C)]
  389. #[derive(Debug, Copy, Clone)]
  390. pub struct tcp_sock {
  391. _unused: [u8; 0],
  392. }
  393. #[repr(C)]
  394. #[derive(Debug, Copy, Clone)]
  395. pub struct tcp_timewait_sock {
  396. _unused: [u8; 0],
  397. }
  398. #[repr(C)]
  399. #[derive(Debug, Copy, Clone)]
  400. pub struct tcp_request_sock {
  401. _unused: [u8; 0],
  402. }
  403. #[repr(C)]
  404. #[derive(Debug, Copy, Clone)]
  405. pub struct udp6_sock {
  406. _unused: [u8; 0],
  407. }
  408. #[repr(C)]
  409. #[derive(Debug, Copy, Clone)]
  410. pub struct unix_sock {
  411. _unused: [u8; 0],
  412. }
  413. #[repr(C)]
  414. #[derive(Debug, Copy, Clone)]
  415. pub struct task_struct {
  416. _unused: [u8; 0],
  417. }
  418. #[repr(C)]
  419. #[derive(Debug, Copy, Clone)]
  420. pub struct cgroup {
  421. _unused: [u8; 0],
  422. }
  423. #[repr(C)]
  424. #[derive(Debug, Copy, Clone)]
  425. pub struct path {
  426. _unused: [u8; 0],
  427. }
  428. #[repr(C)]
  429. #[derive(Debug, Copy, Clone)]
  430. pub struct inode {
  431. _unused: [u8; 0],
  432. }
  433. #[repr(C)]
  434. #[derive(Debug, Copy, Clone)]
  435. pub struct socket {
  436. _unused: [u8; 0],
  437. }
  438. #[repr(C)]
  439. #[derive(Debug, Copy, Clone)]
  440. pub struct file {
  441. _unused: [u8; 0],
  442. }
  443. #[repr(C)]
  444. #[derive(Debug, Copy, Clone)]
  445. pub struct mptcp_sock {
  446. _unused: [u8; 0],
  447. }
  448. #[repr(C)]
  449. #[derive(Debug, Copy, Clone)]
  450. pub struct iphdr {
  451. _unused: [u8; 0],
  452. }
  453. #[repr(C)]
  454. #[derive(Debug, Copy, Clone)]
  455. pub struct ipv6hdr {
  456. _unused: [u8; 0],
  457. }
  458. pub mod bpf_cond_pseudo_jmp {
  459. pub type Type = ::aya_ebpf_cty::c_uint;
  460. pub const BPF_MAY_GOTO: Type = 0;
  461. }
  462. pub const BPF_REG_0: _bindgen_ty_1 = 0;
  463. pub const BPF_REG_1: _bindgen_ty_1 = 1;
  464. pub const BPF_REG_2: _bindgen_ty_1 = 2;
  465. pub const BPF_REG_3: _bindgen_ty_1 = 3;
  466. pub const BPF_REG_4: _bindgen_ty_1 = 4;
  467. pub const BPF_REG_5: _bindgen_ty_1 = 5;
  468. pub const BPF_REG_6: _bindgen_ty_1 = 6;
  469. pub const BPF_REG_7: _bindgen_ty_1 = 7;
  470. pub const BPF_REG_8: _bindgen_ty_1 = 8;
  471. pub const BPF_REG_9: _bindgen_ty_1 = 9;
  472. pub const BPF_REG_10: _bindgen_ty_1 = 10;
  473. pub const __MAX_BPF_REG: _bindgen_ty_1 = 11;
  474. pub type _bindgen_ty_1 = ::aya_ebpf_cty::c_uint;
  475. #[repr(C)]
  476. #[derive(Debug, Copy, Clone)]
  477. pub struct bpf_insn {
  478. pub code: __u8,
  479. pub _bitfield_align_1: [u8; 0],
  480. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1usize]>,
  481. pub off: __s16,
  482. pub imm: __s32,
  483. }
  484. impl bpf_insn {
  485. #[inline]
  486. pub fn dst_reg(&self) -> __u8 {
  487. unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 4u8) as u8) }
  488. }
  489. #[inline]
  490. pub fn set_dst_reg(&mut self, val: __u8) {
  491. unsafe {
  492. let val: u8 = ::core::mem::transmute(val);
  493. self._bitfield_1.set(0usize, 4u8, val as u64)
  494. }
  495. }
  496. #[inline]
  497. pub unsafe fn dst_reg_raw(this: *const Self) -> __u8 {
  498. unsafe {
  499. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 1usize]>>::raw_get(
  500. ::core::ptr::addr_of!((*this)._bitfield_1),
  501. 0usize,
  502. 4u8,
  503. ) as u8)
  504. }
  505. }
  506. #[inline]
  507. pub unsafe fn set_dst_reg_raw(this: *mut Self, val: __u8) {
  508. unsafe {
  509. let val: u8 = ::core::mem::transmute(val);
  510. <__BindgenBitfieldUnit<[u8; 1usize]>>::raw_set(
  511. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  512. 0usize,
  513. 4u8,
  514. val as u64,
  515. )
  516. }
  517. }
  518. #[inline]
  519. pub fn src_reg(&self) -> __u8 {
  520. unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 4u8) as u8) }
  521. }
  522. #[inline]
  523. pub fn set_src_reg(&mut self, val: __u8) {
  524. unsafe {
  525. let val: u8 = ::core::mem::transmute(val);
  526. self._bitfield_1.set(4usize, 4u8, val as u64)
  527. }
  528. }
  529. #[inline]
  530. pub unsafe fn src_reg_raw(this: *const Self) -> __u8 {
  531. unsafe {
  532. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 1usize]>>::raw_get(
  533. ::core::ptr::addr_of!((*this)._bitfield_1),
  534. 4usize,
  535. 4u8,
  536. ) as u8)
  537. }
  538. }
  539. #[inline]
  540. pub unsafe fn set_src_reg_raw(this: *mut Self, val: __u8) {
  541. unsafe {
  542. let val: u8 = ::core::mem::transmute(val);
  543. <__BindgenBitfieldUnit<[u8; 1usize]>>::raw_set(
  544. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  545. 4usize,
  546. 4u8,
  547. val as u64,
  548. )
  549. }
  550. }
  551. #[inline]
  552. pub fn new_bitfield_1(dst_reg: __u8, src_reg: __u8) -> __BindgenBitfieldUnit<[u8; 1usize]> {
  553. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 1usize]> = Default::default();
  554. __bindgen_bitfield_unit.set(0usize, 4u8, {
  555. let dst_reg: u8 = unsafe { ::core::mem::transmute(dst_reg) };
  556. dst_reg as u64
  557. });
  558. __bindgen_bitfield_unit.set(4usize, 4u8, {
  559. let src_reg: u8 = unsafe { ::core::mem::transmute(src_reg) };
  560. src_reg as u64
  561. });
  562. __bindgen_bitfield_unit
  563. }
  564. }
  565. #[repr(C)]
  566. #[derive(Debug)]
  567. pub struct bpf_lpm_trie_key {
  568. pub prefixlen: __u32,
  569. pub data: __IncompleteArrayField<__u8>,
  570. }
  571. #[repr(C)]
  572. #[derive(Debug, Copy, Clone)]
  573. pub struct bpf_lpm_trie_key_hdr {
  574. pub prefixlen: __u32,
  575. }
  576. #[repr(C)]
  577. pub struct bpf_lpm_trie_key_u8 {
  578. pub __bindgen_anon_1: bpf_lpm_trie_key_u8__bindgen_ty_1,
  579. pub data: __IncompleteArrayField<__u8>,
  580. }
  581. #[repr(C)]
  582. #[derive(Copy, Clone)]
  583. pub union bpf_lpm_trie_key_u8__bindgen_ty_1 {
  584. pub hdr: bpf_lpm_trie_key_hdr,
  585. pub prefixlen: __u32,
  586. }
  587. #[repr(C)]
  588. #[derive(Debug, Copy, Clone)]
  589. pub struct bpf_cgroup_storage_key {
  590. pub cgroup_inode_id: __u64,
  591. pub attach_type: __u32,
  592. }
  593. pub mod bpf_cgroup_iter_order {
  594. pub type Type = ::aya_ebpf_cty::c_uint;
  595. pub const BPF_CGROUP_ITER_ORDER_UNSPEC: Type = 0;
  596. pub const BPF_CGROUP_ITER_SELF_ONLY: Type = 1;
  597. pub const BPF_CGROUP_ITER_DESCENDANTS_PRE: Type = 2;
  598. pub const BPF_CGROUP_ITER_DESCENDANTS_POST: Type = 3;
  599. pub const BPF_CGROUP_ITER_ANCESTORS_UP: Type = 4;
  600. }
  601. #[repr(C)]
  602. #[derive(Copy, Clone)]
  603. pub union bpf_iter_link_info {
  604. pub map: bpf_iter_link_info__bindgen_ty_1,
  605. pub cgroup: bpf_iter_link_info__bindgen_ty_2,
  606. pub task: bpf_iter_link_info__bindgen_ty_3,
  607. }
  608. #[repr(C)]
  609. #[derive(Debug, Copy, Clone)]
  610. pub struct bpf_iter_link_info__bindgen_ty_1 {
  611. pub map_fd: __u32,
  612. }
  613. #[repr(C)]
  614. #[derive(Debug, Copy, Clone)]
  615. pub struct bpf_iter_link_info__bindgen_ty_2 {
  616. pub order: bpf_cgroup_iter_order::Type,
  617. pub cgroup_fd: __u32,
  618. pub cgroup_id: __u64,
  619. }
  620. #[repr(C)]
  621. #[derive(Debug, Copy, Clone)]
  622. pub struct bpf_iter_link_info__bindgen_ty_3 {
  623. pub tid: __u32,
  624. pub pid: __u32,
  625. pub pid_fd: __u32,
  626. }
  627. pub mod bpf_cmd {
  628. pub type Type = ::aya_ebpf_cty::c_uint;
  629. pub const BPF_MAP_CREATE: Type = 0;
  630. pub const BPF_MAP_LOOKUP_ELEM: Type = 1;
  631. pub const BPF_MAP_UPDATE_ELEM: Type = 2;
  632. pub const BPF_MAP_DELETE_ELEM: Type = 3;
  633. pub const BPF_MAP_GET_NEXT_KEY: Type = 4;
  634. pub const BPF_PROG_LOAD: Type = 5;
  635. pub const BPF_OBJ_PIN: Type = 6;
  636. pub const BPF_OBJ_GET: Type = 7;
  637. pub const BPF_PROG_ATTACH: Type = 8;
  638. pub const BPF_PROG_DETACH: Type = 9;
  639. pub const BPF_PROG_TEST_RUN: Type = 10;
  640. pub const BPF_PROG_RUN: Type = 10;
  641. pub const BPF_PROG_GET_NEXT_ID: Type = 11;
  642. pub const BPF_MAP_GET_NEXT_ID: Type = 12;
  643. pub const BPF_PROG_GET_FD_BY_ID: Type = 13;
  644. pub const BPF_MAP_GET_FD_BY_ID: Type = 14;
  645. pub const BPF_OBJ_GET_INFO_BY_FD: Type = 15;
  646. pub const BPF_PROG_QUERY: Type = 16;
  647. pub const BPF_RAW_TRACEPOINT_OPEN: Type = 17;
  648. pub const BPF_BTF_LOAD: Type = 18;
  649. pub const BPF_BTF_GET_FD_BY_ID: Type = 19;
  650. pub const BPF_TASK_FD_QUERY: Type = 20;
  651. pub const BPF_MAP_LOOKUP_AND_DELETE_ELEM: Type = 21;
  652. pub const BPF_MAP_FREEZE: Type = 22;
  653. pub const BPF_BTF_GET_NEXT_ID: Type = 23;
  654. pub const BPF_MAP_LOOKUP_BATCH: Type = 24;
  655. pub const BPF_MAP_LOOKUP_AND_DELETE_BATCH: Type = 25;
  656. pub const BPF_MAP_UPDATE_BATCH: Type = 26;
  657. pub const BPF_MAP_DELETE_BATCH: Type = 27;
  658. pub const BPF_LINK_CREATE: Type = 28;
  659. pub const BPF_LINK_UPDATE: Type = 29;
  660. pub const BPF_LINK_GET_FD_BY_ID: Type = 30;
  661. pub const BPF_LINK_GET_NEXT_ID: Type = 31;
  662. pub const BPF_ENABLE_STATS: Type = 32;
  663. pub const BPF_ITER_CREATE: Type = 33;
  664. pub const BPF_LINK_DETACH: Type = 34;
  665. pub const BPF_PROG_BIND_MAP: Type = 35;
  666. pub const BPF_TOKEN_CREATE: Type = 36;
  667. pub const __MAX_BPF_CMD: Type = 37;
  668. }
  669. pub mod bpf_map_type {
  670. pub type Type = ::aya_ebpf_cty::c_uint;
  671. pub const BPF_MAP_TYPE_UNSPEC: Type = 0;
  672. pub const BPF_MAP_TYPE_HASH: Type = 1;
  673. pub const BPF_MAP_TYPE_ARRAY: Type = 2;
  674. pub const BPF_MAP_TYPE_PROG_ARRAY: Type = 3;
  675. pub const BPF_MAP_TYPE_PERF_EVENT_ARRAY: Type = 4;
  676. pub const BPF_MAP_TYPE_PERCPU_HASH: Type = 5;
  677. pub const BPF_MAP_TYPE_PERCPU_ARRAY: Type = 6;
  678. pub const BPF_MAP_TYPE_STACK_TRACE: Type = 7;
  679. pub const BPF_MAP_TYPE_CGROUP_ARRAY: Type = 8;
  680. pub const BPF_MAP_TYPE_LRU_HASH: Type = 9;
  681. pub const BPF_MAP_TYPE_LRU_PERCPU_HASH: Type = 10;
  682. pub const BPF_MAP_TYPE_LPM_TRIE: Type = 11;
  683. pub const BPF_MAP_TYPE_ARRAY_OF_MAPS: Type = 12;
  684. pub const BPF_MAP_TYPE_HASH_OF_MAPS: Type = 13;
  685. pub const BPF_MAP_TYPE_DEVMAP: Type = 14;
  686. pub const BPF_MAP_TYPE_SOCKMAP: Type = 15;
  687. pub const BPF_MAP_TYPE_CPUMAP: Type = 16;
  688. pub const BPF_MAP_TYPE_XSKMAP: Type = 17;
  689. pub const BPF_MAP_TYPE_SOCKHASH: Type = 18;
  690. pub const BPF_MAP_TYPE_CGROUP_STORAGE_DEPRECATED: Type = 19;
  691. pub const BPF_MAP_TYPE_CGROUP_STORAGE: Type = 19;
  692. pub const BPF_MAP_TYPE_REUSEPORT_SOCKARRAY: Type = 20;
  693. pub const BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE_DEPRECATED: Type = 21;
  694. pub const BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE: Type = 21;
  695. pub const BPF_MAP_TYPE_QUEUE: Type = 22;
  696. pub const BPF_MAP_TYPE_STACK: Type = 23;
  697. pub const BPF_MAP_TYPE_SK_STORAGE: Type = 24;
  698. pub const BPF_MAP_TYPE_DEVMAP_HASH: Type = 25;
  699. pub const BPF_MAP_TYPE_STRUCT_OPS: Type = 26;
  700. pub const BPF_MAP_TYPE_RINGBUF: Type = 27;
  701. pub const BPF_MAP_TYPE_INODE_STORAGE: Type = 28;
  702. pub const BPF_MAP_TYPE_TASK_STORAGE: Type = 29;
  703. pub const BPF_MAP_TYPE_BLOOM_FILTER: Type = 30;
  704. pub const BPF_MAP_TYPE_USER_RINGBUF: Type = 31;
  705. pub const BPF_MAP_TYPE_CGRP_STORAGE: Type = 32;
  706. pub const BPF_MAP_TYPE_ARENA: Type = 33;
  707. pub const __MAX_BPF_MAP_TYPE: Type = 34;
  708. }
  709. pub mod bpf_prog_type {
  710. pub type Type = ::aya_ebpf_cty::c_uint;
  711. pub const BPF_PROG_TYPE_UNSPEC: Type = 0;
  712. pub const BPF_PROG_TYPE_SOCKET_FILTER: Type = 1;
  713. pub const BPF_PROG_TYPE_KPROBE: Type = 2;
  714. pub const BPF_PROG_TYPE_SCHED_CLS: Type = 3;
  715. pub const BPF_PROG_TYPE_SCHED_ACT: Type = 4;
  716. pub const BPF_PROG_TYPE_TRACEPOINT: Type = 5;
  717. pub const BPF_PROG_TYPE_XDP: Type = 6;
  718. pub const BPF_PROG_TYPE_PERF_EVENT: Type = 7;
  719. pub const BPF_PROG_TYPE_CGROUP_SKB: Type = 8;
  720. pub const BPF_PROG_TYPE_CGROUP_SOCK: Type = 9;
  721. pub const BPF_PROG_TYPE_LWT_IN: Type = 10;
  722. pub const BPF_PROG_TYPE_LWT_OUT: Type = 11;
  723. pub const BPF_PROG_TYPE_LWT_XMIT: Type = 12;
  724. pub const BPF_PROG_TYPE_SOCK_OPS: Type = 13;
  725. pub const BPF_PROG_TYPE_SK_SKB: Type = 14;
  726. pub const BPF_PROG_TYPE_CGROUP_DEVICE: Type = 15;
  727. pub const BPF_PROG_TYPE_SK_MSG: Type = 16;
  728. pub const BPF_PROG_TYPE_RAW_TRACEPOINT: Type = 17;
  729. pub const BPF_PROG_TYPE_CGROUP_SOCK_ADDR: Type = 18;
  730. pub const BPF_PROG_TYPE_LWT_SEG6LOCAL: Type = 19;
  731. pub const BPF_PROG_TYPE_LIRC_MODE2: Type = 20;
  732. pub const BPF_PROG_TYPE_SK_REUSEPORT: Type = 21;
  733. pub const BPF_PROG_TYPE_FLOW_DISSECTOR: Type = 22;
  734. pub const BPF_PROG_TYPE_CGROUP_SYSCTL: Type = 23;
  735. pub const BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE: Type = 24;
  736. pub const BPF_PROG_TYPE_CGROUP_SOCKOPT: Type = 25;
  737. pub const BPF_PROG_TYPE_TRACING: Type = 26;
  738. pub const BPF_PROG_TYPE_STRUCT_OPS: Type = 27;
  739. pub const BPF_PROG_TYPE_EXT: Type = 28;
  740. pub const BPF_PROG_TYPE_LSM: Type = 29;
  741. pub const BPF_PROG_TYPE_SK_LOOKUP: Type = 30;
  742. pub const BPF_PROG_TYPE_SYSCALL: Type = 31;
  743. pub const BPF_PROG_TYPE_NETFILTER: Type = 32;
  744. pub const __MAX_BPF_PROG_TYPE: Type = 33;
  745. }
  746. pub mod bpf_attach_type {
  747. pub type Type = ::aya_ebpf_cty::c_uint;
  748. pub const BPF_CGROUP_INET_INGRESS: Type = 0;
  749. pub const BPF_CGROUP_INET_EGRESS: Type = 1;
  750. pub const BPF_CGROUP_INET_SOCK_CREATE: Type = 2;
  751. pub const BPF_CGROUP_SOCK_OPS: Type = 3;
  752. pub const BPF_SK_SKB_STREAM_PARSER: Type = 4;
  753. pub const BPF_SK_SKB_STREAM_VERDICT: Type = 5;
  754. pub const BPF_CGROUP_DEVICE: Type = 6;
  755. pub const BPF_SK_MSG_VERDICT: Type = 7;
  756. pub const BPF_CGROUP_INET4_BIND: Type = 8;
  757. pub const BPF_CGROUP_INET6_BIND: Type = 9;
  758. pub const BPF_CGROUP_INET4_CONNECT: Type = 10;
  759. pub const BPF_CGROUP_INET6_CONNECT: Type = 11;
  760. pub const BPF_CGROUP_INET4_POST_BIND: Type = 12;
  761. pub const BPF_CGROUP_INET6_POST_BIND: Type = 13;
  762. pub const BPF_CGROUP_UDP4_SENDMSG: Type = 14;
  763. pub const BPF_CGROUP_UDP6_SENDMSG: Type = 15;
  764. pub const BPF_LIRC_MODE2: Type = 16;
  765. pub const BPF_FLOW_DISSECTOR: Type = 17;
  766. pub const BPF_CGROUP_SYSCTL: Type = 18;
  767. pub const BPF_CGROUP_UDP4_RECVMSG: Type = 19;
  768. pub const BPF_CGROUP_UDP6_RECVMSG: Type = 20;
  769. pub const BPF_CGROUP_GETSOCKOPT: Type = 21;
  770. pub const BPF_CGROUP_SETSOCKOPT: Type = 22;
  771. pub const BPF_TRACE_RAW_TP: Type = 23;
  772. pub const BPF_TRACE_FENTRY: Type = 24;
  773. pub const BPF_TRACE_FEXIT: Type = 25;
  774. pub const BPF_MODIFY_RETURN: Type = 26;
  775. pub const BPF_LSM_MAC: Type = 27;
  776. pub const BPF_TRACE_ITER: Type = 28;
  777. pub const BPF_CGROUP_INET4_GETPEERNAME: Type = 29;
  778. pub const BPF_CGROUP_INET6_GETPEERNAME: Type = 30;
  779. pub const BPF_CGROUP_INET4_GETSOCKNAME: Type = 31;
  780. pub const BPF_CGROUP_INET6_GETSOCKNAME: Type = 32;
  781. pub const BPF_XDP_DEVMAP: Type = 33;
  782. pub const BPF_CGROUP_INET_SOCK_RELEASE: Type = 34;
  783. pub const BPF_XDP_CPUMAP: Type = 35;
  784. pub const BPF_SK_LOOKUP: Type = 36;
  785. pub const BPF_XDP: Type = 37;
  786. pub const BPF_SK_SKB_VERDICT: Type = 38;
  787. pub const BPF_SK_REUSEPORT_SELECT: Type = 39;
  788. pub const BPF_SK_REUSEPORT_SELECT_OR_MIGRATE: Type = 40;
  789. pub const BPF_PERF_EVENT: Type = 41;
  790. pub const BPF_TRACE_KPROBE_MULTI: Type = 42;
  791. pub const BPF_LSM_CGROUP: Type = 43;
  792. pub const BPF_STRUCT_OPS: Type = 44;
  793. pub const BPF_NETFILTER: Type = 45;
  794. pub const BPF_TCX_INGRESS: Type = 46;
  795. pub const BPF_TCX_EGRESS: Type = 47;
  796. pub const BPF_TRACE_UPROBE_MULTI: Type = 48;
  797. pub const BPF_CGROUP_UNIX_CONNECT: Type = 49;
  798. pub const BPF_CGROUP_UNIX_SENDMSG: Type = 50;
  799. pub const BPF_CGROUP_UNIX_RECVMSG: Type = 51;
  800. pub const BPF_CGROUP_UNIX_GETPEERNAME: Type = 52;
  801. pub const BPF_CGROUP_UNIX_GETSOCKNAME: Type = 53;
  802. pub const BPF_NETKIT_PRIMARY: Type = 54;
  803. pub const BPF_NETKIT_PEER: Type = 55;
  804. pub const __MAX_BPF_ATTACH_TYPE: Type = 56;
  805. }
  806. pub mod bpf_link_type {
  807. pub type Type = ::aya_ebpf_cty::c_uint;
  808. pub const BPF_LINK_TYPE_UNSPEC: Type = 0;
  809. pub const BPF_LINK_TYPE_RAW_TRACEPOINT: Type = 1;
  810. pub const BPF_LINK_TYPE_TRACING: Type = 2;
  811. pub const BPF_LINK_TYPE_CGROUP: Type = 3;
  812. pub const BPF_LINK_TYPE_ITER: Type = 4;
  813. pub const BPF_LINK_TYPE_NETNS: Type = 5;
  814. pub const BPF_LINK_TYPE_XDP: Type = 6;
  815. pub const BPF_LINK_TYPE_PERF_EVENT: Type = 7;
  816. pub const BPF_LINK_TYPE_KPROBE_MULTI: Type = 8;
  817. pub const BPF_LINK_TYPE_STRUCT_OPS: Type = 9;
  818. pub const BPF_LINK_TYPE_NETFILTER: Type = 10;
  819. pub const BPF_LINK_TYPE_TCX: Type = 11;
  820. pub const BPF_LINK_TYPE_UPROBE_MULTI: Type = 12;
  821. pub const BPF_LINK_TYPE_NETKIT: Type = 13;
  822. pub const __MAX_BPF_LINK_TYPE: Type = 14;
  823. }
  824. pub mod bpf_perf_event_type {
  825. pub type Type = ::aya_ebpf_cty::c_uint;
  826. pub const BPF_PERF_EVENT_UNSPEC: Type = 0;
  827. pub const BPF_PERF_EVENT_UPROBE: Type = 1;
  828. pub const BPF_PERF_EVENT_URETPROBE: Type = 2;
  829. pub const BPF_PERF_EVENT_KPROBE: Type = 3;
  830. pub const BPF_PERF_EVENT_KRETPROBE: Type = 4;
  831. pub const BPF_PERF_EVENT_TRACEPOINT: Type = 5;
  832. pub const BPF_PERF_EVENT_EVENT: Type = 6;
  833. }
  834. pub const BPF_F_KPROBE_MULTI_RETURN: _bindgen_ty_2 = 1;
  835. pub type _bindgen_ty_2 = ::aya_ebpf_cty::c_uint;
  836. pub const BPF_F_UPROBE_MULTI_RETURN: _bindgen_ty_3 = 1;
  837. pub type _bindgen_ty_3 = ::aya_ebpf_cty::c_uint;
  838. pub mod bpf_addr_space_cast {
  839. pub type Type = ::aya_ebpf_cty::c_uint;
  840. pub const BPF_ADDR_SPACE_CAST: Type = 1;
  841. }
  842. pub const BPF_ANY: _bindgen_ty_4 = 0;
  843. pub const BPF_NOEXIST: _bindgen_ty_4 = 1;
  844. pub const BPF_EXIST: _bindgen_ty_4 = 2;
  845. pub const BPF_F_LOCK: _bindgen_ty_4 = 4;
  846. pub type _bindgen_ty_4 = ::aya_ebpf_cty::c_uint;
  847. pub const BPF_F_NO_PREALLOC: _bindgen_ty_5 = 1;
  848. pub const BPF_F_NO_COMMON_LRU: _bindgen_ty_5 = 2;
  849. pub const BPF_F_NUMA_NODE: _bindgen_ty_5 = 4;
  850. pub const BPF_F_RDONLY: _bindgen_ty_5 = 8;
  851. pub const BPF_F_WRONLY: _bindgen_ty_5 = 16;
  852. pub const BPF_F_STACK_BUILD_ID: _bindgen_ty_5 = 32;
  853. pub const BPF_F_ZERO_SEED: _bindgen_ty_5 = 64;
  854. pub const BPF_F_RDONLY_PROG: _bindgen_ty_5 = 128;
  855. pub const BPF_F_WRONLY_PROG: _bindgen_ty_5 = 256;
  856. pub const BPF_F_CLONE: _bindgen_ty_5 = 512;
  857. pub const BPF_F_MMAPABLE: _bindgen_ty_5 = 1024;
  858. pub const BPF_F_PRESERVE_ELEMS: _bindgen_ty_5 = 2048;
  859. pub const BPF_F_INNER_MAP: _bindgen_ty_5 = 4096;
  860. pub const BPF_F_LINK: _bindgen_ty_5 = 8192;
  861. pub const BPF_F_PATH_FD: _bindgen_ty_5 = 16384;
  862. pub const BPF_F_VTYPE_BTF_OBJ_FD: _bindgen_ty_5 = 32768;
  863. pub const BPF_F_TOKEN_FD: _bindgen_ty_5 = 65536;
  864. pub const BPF_F_SEGV_ON_FAULT: _bindgen_ty_5 = 131072;
  865. pub const BPF_F_NO_USER_CONV: _bindgen_ty_5 = 262144;
  866. pub type _bindgen_ty_5 = ::aya_ebpf_cty::c_uint;
  867. pub mod bpf_stats_type {
  868. pub type Type = ::aya_ebpf_cty::c_uint;
  869. pub const BPF_STATS_RUN_TIME: Type = 0;
  870. }
  871. pub mod bpf_stack_build_id_status {
  872. pub type Type = ::aya_ebpf_cty::c_uint;
  873. pub const BPF_STACK_BUILD_ID_EMPTY: Type = 0;
  874. pub const BPF_STACK_BUILD_ID_VALID: Type = 1;
  875. pub const BPF_STACK_BUILD_ID_IP: Type = 2;
  876. }
  877. #[repr(C)]
  878. #[derive(Copy, Clone)]
  879. pub struct bpf_stack_build_id {
  880. pub status: __s32,
  881. pub build_id: [::aya_ebpf_cty::c_uchar; 20usize],
  882. pub __bindgen_anon_1: bpf_stack_build_id__bindgen_ty_1,
  883. }
  884. #[repr(C)]
  885. #[derive(Copy, Clone)]
  886. pub union bpf_stack_build_id__bindgen_ty_1 {
  887. pub offset: __u64,
  888. pub ip: __u64,
  889. }
  890. #[repr(C)]
  891. #[derive(Copy, Clone)]
  892. pub union bpf_attr {
  893. pub __bindgen_anon_1: bpf_attr__bindgen_ty_1,
  894. pub __bindgen_anon_2: bpf_attr__bindgen_ty_2,
  895. pub batch: bpf_attr__bindgen_ty_3,
  896. pub __bindgen_anon_3: bpf_attr__bindgen_ty_4,
  897. pub __bindgen_anon_4: bpf_attr__bindgen_ty_5,
  898. pub __bindgen_anon_5: bpf_attr__bindgen_ty_6,
  899. pub test: bpf_attr__bindgen_ty_7,
  900. pub __bindgen_anon_6: bpf_attr__bindgen_ty_8,
  901. pub info: bpf_attr__bindgen_ty_9,
  902. pub query: bpf_attr__bindgen_ty_10,
  903. pub raw_tracepoint: bpf_attr__bindgen_ty_11,
  904. pub __bindgen_anon_7: bpf_attr__bindgen_ty_12,
  905. pub task_fd_query: bpf_attr__bindgen_ty_13,
  906. pub link_create: bpf_attr__bindgen_ty_14,
  907. pub link_update: bpf_attr__bindgen_ty_15,
  908. pub link_detach: bpf_attr__bindgen_ty_16,
  909. pub enable_stats: bpf_attr__bindgen_ty_17,
  910. pub iter_create: bpf_attr__bindgen_ty_18,
  911. pub prog_bind_map: bpf_attr__bindgen_ty_19,
  912. pub token_create: bpf_attr__bindgen_ty_20,
  913. }
  914. #[repr(C)]
  915. #[derive(Debug, Copy, Clone)]
  916. pub struct bpf_attr__bindgen_ty_1 {
  917. pub map_type: __u32,
  918. pub key_size: __u32,
  919. pub value_size: __u32,
  920. pub max_entries: __u32,
  921. pub map_flags: __u32,
  922. pub inner_map_fd: __u32,
  923. pub numa_node: __u32,
  924. pub map_name: [::aya_ebpf_cty::c_char; 16usize],
  925. pub map_ifindex: __u32,
  926. pub btf_fd: __u32,
  927. pub btf_key_type_id: __u32,
  928. pub btf_value_type_id: __u32,
  929. pub btf_vmlinux_value_type_id: __u32,
  930. pub map_extra: __u64,
  931. pub value_type_btf_obj_fd: __s32,
  932. pub map_token_fd: __s32,
  933. }
  934. #[repr(C)]
  935. #[derive(Copy, Clone)]
  936. pub struct bpf_attr__bindgen_ty_2 {
  937. pub map_fd: __u32,
  938. pub key: __u64,
  939. pub __bindgen_anon_1: bpf_attr__bindgen_ty_2__bindgen_ty_1,
  940. pub flags: __u64,
  941. }
  942. #[repr(C)]
  943. #[derive(Copy, Clone)]
  944. pub union bpf_attr__bindgen_ty_2__bindgen_ty_1 {
  945. pub value: __u64,
  946. pub next_key: __u64,
  947. }
  948. #[repr(C)]
  949. #[derive(Debug, Copy, Clone)]
  950. pub struct bpf_attr__bindgen_ty_3 {
  951. pub in_batch: __u64,
  952. pub out_batch: __u64,
  953. pub keys: __u64,
  954. pub values: __u64,
  955. pub count: __u32,
  956. pub map_fd: __u32,
  957. pub elem_flags: __u64,
  958. pub flags: __u64,
  959. }
  960. #[repr(C)]
  961. #[derive(Copy, Clone)]
  962. pub struct bpf_attr__bindgen_ty_4 {
  963. pub prog_type: __u32,
  964. pub insn_cnt: __u32,
  965. pub insns: __u64,
  966. pub license: __u64,
  967. pub log_level: __u32,
  968. pub log_size: __u32,
  969. pub log_buf: __u64,
  970. pub kern_version: __u32,
  971. pub prog_flags: __u32,
  972. pub prog_name: [::aya_ebpf_cty::c_char; 16usize],
  973. pub prog_ifindex: __u32,
  974. pub expected_attach_type: __u32,
  975. pub prog_btf_fd: __u32,
  976. pub func_info_rec_size: __u32,
  977. pub func_info: __u64,
  978. pub func_info_cnt: __u32,
  979. pub line_info_rec_size: __u32,
  980. pub line_info: __u64,
  981. pub line_info_cnt: __u32,
  982. pub attach_btf_id: __u32,
  983. pub __bindgen_anon_1: bpf_attr__bindgen_ty_4__bindgen_ty_1,
  984. pub core_relo_cnt: __u32,
  985. pub fd_array: __u64,
  986. pub core_relos: __u64,
  987. pub core_relo_rec_size: __u32,
  988. pub log_true_size: __u32,
  989. pub prog_token_fd: __s32,
  990. }
  991. #[repr(C)]
  992. #[derive(Copy, Clone)]
  993. pub union bpf_attr__bindgen_ty_4__bindgen_ty_1 {
  994. pub attach_prog_fd: __u32,
  995. pub attach_btf_obj_fd: __u32,
  996. }
  997. #[repr(C)]
  998. #[derive(Debug, Copy, Clone)]
  999. pub struct bpf_attr__bindgen_ty_5 {
  1000. pub pathname: __u64,
  1001. pub bpf_fd: __u32,
  1002. pub file_flags: __u32,
  1003. pub path_fd: __s32,
  1004. }
  1005. #[repr(C)]
  1006. #[derive(Copy, Clone)]
  1007. pub struct bpf_attr__bindgen_ty_6 {
  1008. pub __bindgen_anon_1: bpf_attr__bindgen_ty_6__bindgen_ty_1,
  1009. pub attach_bpf_fd: __u32,
  1010. pub attach_type: __u32,
  1011. pub attach_flags: __u32,
  1012. pub replace_bpf_fd: __u32,
  1013. pub __bindgen_anon_2: bpf_attr__bindgen_ty_6__bindgen_ty_2,
  1014. pub expected_revision: __u64,
  1015. }
  1016. #[repr(C)]
  1017. #[derive(Copy, Clone)]
  1018. pub union bpf_attr__bindgen_ty_6__bindgen_ty_1 {
  1019. pub target_fd: __u32,
  1020. pub target_ifindex: __u32,
  1021. }
  1022. #[repr(C)]
  1023. #[derive(Copy, Clone)]
  1024. pub union bpf_attr__bindgen_ty_6__bindgen_ty_2 {
  1025. pub relative_fd: __u32,
  1026. pub relative_id: __u32,
  1027. }
  1028. #[repr(C)]
  1029. #[derive(Debug, Copy, Clone)]
  1030. pub struct bpf_attr__bindgen_ty_7 {
  1031. pub prog_fd: __u32,
  1032. pub retval: __u32,
  1033. pub data_size_in: __u32,
  1034. pub data_size_out: __u32,
  1035. pub data_in: __u64,
  1036. pub data_out: __u64,
  1037. pub repeat: __u32,
  1038. pub duration: __u32,
  1039. pub ctx_size_in: __u32,
  1040. pub ctx_size_out: __u32,
  1041. pub ctx_in: __u64,
  1042. pub ctx_out: __u64,
  1043. pub flags: __u32,
  1044. pub cpu: __u32,
  1045. pub batch_size: __u32,
  1046. }
  1047. #[repr(C)]
  1048. #[derive(Copy, Clone)]
  1049. pub struct bpf_attr__bindgen_ty_8 {
  1050. pub __bindgen_anon_1: bpf_attr__bindgen_ty_8__bindgen_ty_1,
  1051. pub next_id: __u32,
  1052. pub open_flags: __u32,
  1053. }
  1054. #[repr(C)]
  1055. #[derive(Copy, Clone)]
  1056. pub union bpf_attr__bindgen_ty_8__bindgen_ty_1 {
  1057. pub start_id: __u32,
  1058. pub prog_id: __u32,
  1059. pub map_id: __u32,
  1060. pub btf_id: __u32,
  1061. pub link_id: __u32,
  1062. }
  1063. #[repr(C)]
  1064. #[derive(Debug, Copy, Clone)]
  1065. pub struct bpf_attr__bindgen_ty_9 {
  1066. pub bpf_fd: __u32,
  1067. pub info_len: __u32,
  1068. pub info: __u64,
  1069. }
  1070. #[repr(C)]
  1071. #[derive(Copy, Clone)]
  1072. pub struct bpf_attr__bindgen_ty_10 {
  1073. pub __bindgen_anon_1: bpf_attr__bindgen_ty_10__bindgen_ty_1,
  1074. pub attach_type: __u32,
  1075. pub query_flags: __u32,
  1076. pub attach_flags: __u32,
  1077. pub prog_ids: __u64,
  1078. pub __bindgen_anon_2: bpf_attr__bindgen_ty_10__bindgen_ty_2,
  1079. pub _bitfield_align_1: [u8; 0],
  1080. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4usize]>,
  1081. pub prog_attach_flags: __u64,
  1082. pub link_ids: __u64,
  1083. pub link_attach_flags: __u64,
  1084. pub revision: __u64,
  1085. }
  1086. #[repr(C)]
  1087. #[derive(Copy, Clone)]
  1088. pub union bpf_attr__bindgen_ty_10__bindgen_ty_1 {
  1089. pub target_fd: __u32,
  1090. pub target_ifindex: __u32,
  1091. }
  1092. #[repr(C)]
  1093. #[derive(Copy, Clone)]
  1094. pub union bpf_attr__bindgen_ty_10__bindgen_ty_2 {
  1095. pub prog_cnt: __u32,
  1096. pub count: __u32,
  1097. }
  1098. impl bpf_attr__bindgen_ty_10 {
  1099. #[inline]
  1100. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 4usize]> {
  1101. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 4usize]> = Default::default();
  1102. __bindgen_bitfield_unit
  1103. }
  1104. }
  1105. #[repr(C)]
  1106. #[derive(Debug, Copy, Clone)]
  1107. pub struct bpf_attr__bindgen_ty_11 {
  1108. pub name: __u64,
  1109. pub prog_fd: __u32,
  1110. pub _bitfield_align_1: [u8; 0],
  1111. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4usize]>,
  1112. pub cookie: __u64,
  1113. }
  1114. impl bpf_attr__bindgen_ty_11 {
  1115. #[inline]
  1116. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 4usize]> {
  1117. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 4usize]> = Default::default();
  1118. __bindgen_bitfield_unit
  1119. }
  1120. }
  1121. #[repr(C)]
  1122. #[derive(Debug, Copy, Clone)]
  1123. pub struct bpf_attr__bindgen_ty_12 {
  1124. pub btf: __u64,
  1125. pub btf_log_buf: __u64,
  1126. pub btf_size: __u32,
  1127. pub btf_log_size: __u32,
  1128. pub btf_log_level: __u32,
  1129. pub btf_log_true_size: __u32,
  1130. pub btf_flags: __u32,
  1131. pub btf_token_fd: __s32,
  1132. }
  1133. #[repr(C)]
  1134. #[derive(Debug, Copy, Clone)]
  1135. pub struct bpf_attr__bindgen_ty_13 {
  1136. pub pid: __u32,
  1137. pub fd: __u32,
  1138. pub flags: __u32,
  1139. pub buf_len: __u32,
  1140. pub buf: __u64,
  1141. pub prog_id: __u32,
  1142. pub fd_type: __u32,
  1143. pub probe_offset: __u64,
  1144. pub probe_addr: __u64,
  1145. }
  1146. #[repr(C)]
  1147. #[derive(Copy, Clone)]
  1148. pub struct bpf_attr__bindgen_ty_14 {
  1149. pub __bindgen_anon_1: bpf_attr__bindgen_ty_14__bindgen_ty_1,
  1150. pub __bindgen_anon_2: bpf_attr__bindgen_ty_14__bindgen_ty_2,
  1151. pub attach_type: __u32,
  1152. pub flags: __u32,
  1153. pub __bindgen_anon_3: bpf_attr__bindgen_ty_14__bindgen_ty_3,
  1154. }
  1155. #[repr(C)]
  1156. #[derive(Copy, Clone)]
  1157. pub union bpf_attr__bindgen_ty_14__bindgen_ty_1 {
  1158. pub prog_fd: __u32,
  1159. pub map_fd: __u32,
  1160. }
  1161. #[repr(C)]
  1162. #[derive(Copy, Clone)]
  1163. pub union bpf_attr__bindgen_ty_14__bindgen_ty_2 {
  1164. pub target_fd: __u32,
  1165. pub target_ifindex: __u32,
  1166. }
  1167. #[repr(C)]
  1168. #[derive(Copy, Clone)]
  1169. pub union bpf_attr__bindgen_ty_14__bindgen_ty_3 {
  1170. pub target_btf_id: __u32,
  1171. pub __bindgen_anon_1: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1,
  1172. pub perf_event: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2,
  1173. pub kprobe_multi: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3,
  1174. pub tracing: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4,
  1175. pub netfilter: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5,
  1176. pub tcx: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6,
  1177. pub uprobe_multi: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7,
  1178. pub netkit: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8,
  1179. }
  1180. #[repr(C)]
  1181. #[derive(Debug, Copy, Clone)]
  1182. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 {
  1183. pub iter_info: __u64,
  1184. pub iter_info_len: __u32,
  1185. }
  1186. #[repr(C)]
  1187. #[derive(Debug, Copy, Clone)]
  1188. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 {
  1189. pub bpf_cookie: __u64,
  1190. }
  1191. #[repr(C)]
  1192. #[derive(Debug, Copy, Clone)]
  1193. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 {
  1194. pub flags: __u32,
  1195. pub cnt: __u32,
  1196. pub syms: __u64,
  1197. pub addrs: __u64,
  1198. pub cookies: __u64,
  1199. }
  1200. #[repr(C)]
  1201. #[derive(Debug, Copy, Clone)]
  1202. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 {
  1203. pub target_btf_id: __u32,
  1204. pub cookie: __u64,
  1205. }
  1206. #[repr(C)]
  1207. #[derive(Debug, Copy, Clone)]
  1208. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 {
  1209. pub pf: __u32,
  1210. pub hooknum: __u32,
  1211. pub priority: __s32,
  1212. pub flags: __u32,
  1213. }
  1214. #[repr(C)]
  1215. #[derive(Copy, Clone)]
  1216. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6 {
  1217. pub __bindgen_anon_1: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1,
  1218. pub expected_revision: __u64,
  1219. }
  1220. #[repr(C)]
  1221. #[derive(Copy, Clone)]
  1222. pub union bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1 {
  1223. pub relative_fd: __u32,
  1224. pub relative_id: __u32,
  1225. }
  1226. #[repr(C)]
  1227. #[derive(Debug, Copy, Clone)]
  1228. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7 {
  1229. pub path: __u64,
  1230. pub offsets: __u64,
  1231. pub ref_ctr_offsets: __u64,
  1232. pub cookies: __u64,
  1233. pub cnt: __u32,
  1234. pub flags: __u32,
  1235. pub pid: __u32,
  1236. }
  1237. #[repr(C)]
  1238. #[derive(Copy, Clone)]
  1239. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8 {
  1240. pub __bindgen_anon_1: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1,
  1241. pub expected_revision: __u64,
  1242. }
  1243. #[repr(C)]
  1244. #[derive(Copy, Clone)]
  1245. pub union bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1 {
  1246. pub relative_fd: __u32,
  1247. pub relative_id: __u32,
  1248. }
  1249. #[repr(C)]
  1250. #[derive(Copy, Clone)]
  1251. pub struct bpf_attr__bindgen_ty_15 {
  1252. pub link_fd: __u32,
  1253. pub __bindgen_anon_1: bpf_attr__bindgen_ty_15__bindgen_ty_1,
  1254. pub flags: __u32,
  1255. pub __bindgen_anon_2: bpf_attr__bindgen_ty_15__bindgen_ty_2,
  1256. }
  1257. #[repr(C)]
  1258. #[derive(Copy, Clone)]
  1259. pub union bpf_attr__bindgen_ty_15__bindgen_ty_1 {
  1260. pub new_prog_fd: __u32,
  1261. pub new_map_fd: __u32,
  1262. }
  1263. #[repr(C)]
  1264. #[derive(Copy, Clone)]
  1265. pub union bpf_attr__bindgen_ty_15__bindgen_ty_2 {
  1266. pub old_prog_fd: __u32,
  1267. pub old_map_fd: __u32,
  1268. }
  1269. #[repr(C)]
  1270. #[derive(Debug, Copy, Clone)]
  1271. pub struct bpf_attr__bindgen_ty_16 {
  1272. pub link_fd: __u32,
  1273. }
  1274. #[repr(C)]
  1275. #[derive(Debug, Copy, Clone)]
  1276. pub struct bpf_attr__bindgen_ty_17 {
  1277. pub type_: __u32,
  1278. }
  1279. #[repr(C)]
  1280. #[derive(Debug, Copy, Clone)]
  1281. pub struct bpf_attr__bindgen_ty_18 {
  1282. pub link_fd: __u32,
  1283. pub flags: __u32,
  1284. }
  1285. #[repr(C)]
  1286. #[derive(Debug, Copy, Clone)]
  1287. pub struct bpf_attr__bindgen_ty_19 {
  1288. pub prog_fd: __u32,
  1289. pub map_fd: __u32,
  1290. pub flags: __u32,
  1291. }
  1292. #[repr(C)]
  1293. #[derive(Debug, Copy, Clone)]
  1294. pub struct bpf_attr__bindgen_ty_20 {
  1295. pub flags: __u32,
  1296. pub bpffs_fd: __u32,
  1297. }
  1298. pub mod bpf_func_id {
  1299. pub type Type = ::aya_ebpf_cty::c_uint;
  1300. pub const BPF_FUNC_unspec: Type = 0;
  1301. pub const BPF_FUNC_map_lookup_elem: Type = 1;
  1302. pub const BPF_FUNC_map_update_elem: Type = 2;
  1303. pub const BPF_FUNC_map_delete_elem: Type = 3;
  1304. pub const BPF_FUNC_probe_read: Type = 4;
  1305. pub const BPF_FUNC_ktime_get_ns: Type = 5;
  1306. pub const BPF_FUNC_trace_printk: Type = 6;
  1307. pub const BPF_FUNC_get_prandom_u32: Type = 7;
  1308. pub const BPF_FUNC_get_smp_processor_id: Type = 8;
  1309. pub const BPF_FUNC_skb_store_bytes: Type = 9;
  1310. pub const BPF_FUNC_l3_csum_replace: Type = 10;
  1311. pub const BPF_FUNC_l4_csum_replace: Type = 11;
  1312. pub const BPF_FUNC_tail_call: Type = 12;
  1313. pub const BPF_FUNC_clone_redirect: Type = 13;
  1314. pub const BPF_FUNC_get_current_pid_tgid: Type = 14;
  1315. pub const BPF_FUNC_get_current_uid_gid: Type = 15;
  1316. pub const BPF_FUNC_get_current_comm: Type = 16;
  1317. pub const BPF_FUNC_get_cgroup_classid: Type = 17;
  1318. pub const BPF_FUNC_skb_vlan_push: Type = 18;
  1319. pub const BPF_FUNC_skb_vlan_pop: Type = 19;
  1320. pub const BPF_FUNC_skb_get_tunnel_key: Type = 20;
  1321. pub const BPF_FUNC_skb_set_tunnel_key: Type = 21;
  1322. pub const BPF_FUNC_perf_event_read: Type = 22;
  1323. pub const BPF_FUNC_redirect: Type = 23;
  1324. pub const BPF_FUNC_get_route_realm: Type = 24;
  1325. pub const BPF_FUNC_perf_event_output: Type = 25;
  1326. pub const BPF_FUNC_skb_load_bytes: Type = 26;
  1327. pub const BPF_FUNC_get_stackid: Type = 27;
  1328. pub const BPF_FUNC_csum_diff: Type = 28;
  1329. pub const BPF_FUNC_skb_get_tunnel_opt: Type = 29;
  1330. pub const BPF_FUNC_skb_set_tunnel_opt: Type = 30;
  1331. pub const BPF_FUNC_skb_change_proto: Type = 31;
  1332. pub const BPF_FUNC_skb_change_type: Type = 32;
  1333. pub const BPF_FUNC_skb_under_cgroup: Type = 33;
  1334. pub const BPF_FUNC_get_hash_recalc: Type = 34;
  1335. pub const BPF_FUNC_get_current_task: Type = 35;
  1336. pub const BPF_FUNC_probe_write_user: Type = 36;
  1337. pub const BPF_FUNC_current_task_under_cgroup: Type = 37;
  1338. pub const BPF_FUNC_skb_change_tail: Type = 38;
  1339. pub const BPF_FUNC_skb_pull_data: Type = 39;
  1340. pub const BPF_FUNC_csum_update: Type = 40;
  1341. pub const BPF_FUNC_set_hash_invalid: Type = 41;
  1342. pub const BPF_FUNC_get_numa_node_id: Type = 42;
  1343. pub const BPF_FUNC_skb_change_head: Type = 43;
  1344. pub const BPF_FUNC_xdp_adjust_head: Type = 44;
  1345. pub const BPF_FUNC_probe_read_str: Type = 45;
  1346. pub const BPF_FUNC_get_socket_cookie: Type = 46;
  1347. pub const BPF_FUNC_get_socket_uid: Type = 47;
  1348. pub const BPF_FUNC_set_hash: Type = 48;
  1349. pub const BPF_FUNC_setsockopt: Type = 49;
  1350. pub const BPF_FUNC_skb_adjust_room: Type = 50;
  1351. pub const BPF_FUNC_redirect_map: Type = 51;
  1352. pub const BPF_FUNC_sk_redirect_map: Type = 52;
  1353. pub const BPF_FUNC_sock_map_update: Type = 53;
  1354. pub const BPF_FUNC_xdp_adjust_meta: Type = 54;
  1355. pub const BPF_FUNC_perf_event_read_value: Type = 55;
  1356. pub const BPF_FUNC_perf_prog_read_value: Type = 56;
  1357. pub const BPF_FUNC_getsockopt: Type = 57;
  1358. pub const BPF_FUNC_override_return: Type = 58;
  1359. pub const BPF_FUNC_sock_ops_cb_flags_set: Type = 59;
  1360. pub const BPF_FUNC_msg_redirect_map: Type = 60;
  1361. pub const BPF_FUNC_msg_apply_bytes: Type = 61;
  1362. pub const BPF_FUNC_msg_cork_bytes: Type = 62;
  1363. pub const BPF_FUNC_msg_pull_data: Type = 63;
  1364. pub const BPF_FUNC_bind: Type = 64;
  1365. pub const BPF_FUNC_xdp_adjust_tail: Type = 65;
  1366. pub const BPF_FUNC_skb_get_xfrm_state: Type = 66;
  1367. pub const BPF_FUNC_get_stack: Type = 67;
  1368. pub const BPF_FUNC_skb_load_bytes_relative: Type = 68;
  1369. pub const BPF_FUNC_fib_lookup: Type = 69;
  1370. pub const BPF_FUNC_sock_hash_update: Type = 70;
  1371. pub const BPF_FUNC_msg_redirect_hash: Type = 71;
  1372. pub const BPF_FUNC_sk_redirect_hash: Type = 72;
  1373. pub const BPF_FUNC_lwt_push_encap: Type = 73;
  1374. pub const BPF_FUNC_lwt_seg6_store_bytes: Type = 74;
  1375. pub const BPF_FUNC_lwt_seg6_adjust_srh: Type = 75;
  1376. pub const BPF_FUNC_lwt_seg6_action: Type = 76;
  1377. pub const BPF_FUNC_rc_repeat: Type = 77;
  1378. pub const BPF_FUNC_rc_keydown: Type = 78;
  1379. pub const BPF_FUNC_skb_cgroup_id: Type = 79;
  1380. pub const BPF_FUNC_get_current_cgroup_id: Type = 80;
  1381. pub const BPF_FUNC_get_local_storage: Type = 81;
  1382. pub const BPF_FUNC_sk_select_reuseport: Type = 82;
  1383. pub const BPF_FUNC_skb_ancestor_cgroup_id: Type = 83;
  1384. pub const BPF_FUNC_sk_lookup_tcp: Type = 84;
  1385. pub const BPF_FUNC_sk_lookup_udp: Type = 85;
  1386. pub const BPF_FUNC_sk_release: Type = 86;
  1387. pub const BPF_FUNC_map_push_elem: Type = 87;
  1388. pub const BPF_FUNC_map_pop_elem: Type = 88;
  1389. pub const BPF_FUNC_map_peek_elem: Type = 89;
  1390. pub const BPF_FUNC_msg_push_data: Type = 90;
  1391. pub const BPF_FUNC_msg_pop_data: Type = 91;
  1392. pub const BPF_FUNC_rc_pointer_rel: Type = 92;
  1393. pub const BPF_FUNC_spin_lock: Type = 93;
  1394. pub const BPF_FUNC_spin_unlock: Type = 94;
  1395. pub const BPF_FUNC_sk_fullsock: Type = 95;
  1396. pub const BPF_FUNC_tcp_sock: Type = 96;
  1397. pub const BPF_FUNC_skb_ecn_set_ce: Type = 97;
  1398. pub const BPF_FUNC_get_listener_sock: Type = 98;
  1399. pub const BPF_FUNC_skc_lookup_tcp: Type = 99;
  1400. pub const BPF_FUNC_tcp_check_syncookie: Type = 100;
  1401. pub const BPF_FUNC_sysctl_get_name: Type = 101;
  1402. pub const BPF_FUNC_sysctl_get_current_value: Type = 102;
  1403. pub const BPF_FUNC_sysctl_get_new_value: Type = 103;
  1404. pub const BPF_FUNC_sysctl_set_new_value: Type = 104;
  1405. pub const BPF_FUNC_strtol: Type = 105;
  1406. pub const BPF_FUNC_strtoul: Type = 106;
  1407. pub const BPF_FUNC_sk_storage_get: Type = 107;
  1408. pub const BPF_FUNC_sk_storage_delete: Type = 108;
  1409. pub const BPF_FUNC_send_signal: Type = 109;
  1410. pub const BPF_FUNC_tcp_gen_syncookie: Type = 110;
  1411. pub const BPF_FUNC_skb_output: Type = 111;
  1412. pub const BPF_FUNC_probe_read_user: Type = 112;
  1413. pub const BPF_FUNC_probe_read_kernel: Type = 113;
  1414. pub const BPF_FUNC_probe_read_user_str: Type = 114;
  1415. pub const BPF_FUNC_probe_read_kernel_str: Type = 115;
  1416. pub const BPF_FUNC_tcp_send_ack: Type = 116;
  1417. pub const BPF_FUNC_send_signal_thread: Type = 117;
  1418. pub const BPF_FUNC_jiffies64: Type = 118;
  1419. pub const BPF_FUNC_read_branch_records: Type = 119;
  1420. pub const BPF_FUNC_get_ns_current_pid_tgid: Type = 120;
  1421. pub const BPF_FUNC_xdp_output: Type = 121;
  1422. pub const BPF_FUNC_get_netns_cookie: Type = 122;
  1423. pub const BPF_FUNC_get_current_ancestor_cgroup_id: Type = 123;
  1424. pub const BPF_FUNC_sk_assign: Type = 124;
  1425. pub const BPF_FUNC_ktime_get_boot_ns: Type = 125;
  1426. pub const BPF_FUNC_seq_printf: Type = 126;
  1427. pub const BPF_FUNC_seq_write: Type = 127;
  1428. pub const BPF_FUNC_sk_cgroup_id: Type = 128;
  1429. pub const BPF_FUNC_sk_ancestor_cgroup_id: Type = 129;
  1430. pub const BPF_FUNC_ringbuf_output: Type = 130;
  1431. pub const BPF_FUNC_ringbuf_reserve: Type = 131;
  1432. pub const BPF_FUNC_ringbuf_submit: Type = 132;
  1433. pub const BPF_FUNC_ringbuf_discard: Type = 133;
  1434. pub const BPF_FUNC_ringbuf_query: Type = 134;
  1435. pub const BPF_FUNC_csum_level: Type = 135;
  1436. pub const BPF_FUNC_skc_to_tcp6_sock: Type = 136;
  1437. pub const BPF_FUNC_skc_to_tcp_sock: Type = 137;
  1438. pub const BPF_FUNC_skc_to_tcp_timewait_sock: Type = 138;
  1439. pub const BPF_FUNC_skc_to_tcp_request_sock: Type = 139;
  1440. pub const BPF_FUNC_skc_to_udp6_sock: Type = 140;
  1441. pub const BPF_FUNC_get_task_stack: Type = 141;
  1442. pub const BPF_FUNC_load_hdr_opt: Type = 142;
  1443. pub const BPF_FUNC_store_hdr_opt: Type = 143;
  1444. pub const BPF_FUNC_reserve_hdr_opt: Type = 144;
  1445. pub const BPF_FUNC_inode_storage_get: Type = 145;
  1446. pub const BPF_FUNC_inode_storage_delete: Type = 146;
  1447. pub const BPF_FUNC_d_path: Type = 147;
  1448. pub const BPF_FUNC_copy_from_user: Type = 148;
  1449. pub const BPF_FUNC_snprintf_btf: Type = 149;
  1450. pub const BPF_FUNC_seq_printf_btf: Type = 150;
  1451. pub const BPF_FUNC_skb_cgroup_classid: Type = 151;
  1452. pub const BPF_FUNC_redirect_neigh: Type = 152;
  1453. pub const BPF_FUNC_per_cpu_ptr: Type = 153;
  1454. pub const BPF_FUNC_this_cpu_ptr: Type = 154;
  1455. pub const BPF_FUNC_redirect_peer: Type = 155;
  1456. pub const BPF_FUNC_task_storage_get: Type = 156;
  1457. pub const BPF_FUNC_task_storage_delete: Type = 157;
  1458. pub const BPF_FUNC_get_current_task_btf: Type = 158;
  1459. pub const BPF_FUNC_bprm_opts_set: Type = 159;
  1460. pub const BPF_FUNC_ktime_get_coarse_ns: Type = 160;
  1461. pub const BPF_FUNC_ima_inode_hash: Type = 161;
  1462. pub const BPF_FUNC_sock_from_file: Type = 162;
  1463. pub const BPF_FUNC_check_mtu: Type = 163;
  1464. pub const BPF_FUNC_for_each_map_elem: Type = 164;
  1465. pub const BPF_FUNC_snprintf: Type = 165;
  1466. pub const BPF_FUNC_sys_bpf: Type = 166;
  1467. pub const BPF_FUNC_btf_find_by_name_kind: Type = 167;
  1468. pub const BPF_FUNC_sys_close: Type = 168;
  1469. pub const BPF_FUNC_timer_init: Type = 169;
  1470. pub const BPF_FUNC_timer_set_callback: Type = 170;
  1471. pub const BPF_FUNC_timer_start: Type = 171;
  1472. pub const BPF_FUNC_timer_cancel: Type = 172;
  1473. pub const BPF_FUNC_get_func_ip: Type = 173;
  1474. pub const BPF_FUNC_get_attach_cookie: Type = 174;
  1475. pub const BPF_FUNC_task_pt_regs: Type = 175;
  1476. pub const BPF_FUNC_get_branch_snapshot: Type = 176;
  1477. pub const BPF_FUNC_trace_vprintk: Type = 177;
  1478. pub const BPF_FUNC_skc_to_unix_sock: Type = 178;
  1479. pub const BPF_FUNC_kallsyms_lookup_name: Type = 179;
  1480. pub const BPF_FUNC_find_vma: Type = 180;
  1481. pub const BPF_FUNC_loop: Type = 181;
  1482. pub const BPF_FUNC_strncmp: Type = 182;
  1483. pub const BPF_FUNC_get_func_arg: Type = 183;
  1484. pub const BPF_FUNC_get_func_ret: Type = 184;
  1485. pub const BPF_FUNC_get_func_arg_cnt: Type = 185;
  1486. pub const BPF_FUNC_get_retval: Type = 186;
  1487. pub const BPF_FUNC_set_retval: Type = 187;
  1488. pub const BPF_FUNC_xdp_get_buff_len: Type = 188;
  1489. pub const BPF_FUNC_xdp_load_bytes: Type = 189;
  1490. pub const BPF_FUNC_xdp_store_bytes: Type = 190;
  1491. pub const BPF_FUNC_copy_from_user_task: Type = 191;
  1492. pub const BPF_FUNC_skb_set_tstamp: Type = 192;
  1493. pub const BPF_FUNC_ima_file_hash: Type = 193;
  1494. pub const BPF_FUNC_kptr_xchg: Type = 194;
  1495. pub const BPF_FUNC_map_lookup_percpu_elem: Type = 195;
  1496. pub const BPF_FUNC_skc_to_mptcp_sock: Type = 196;
  1497. pub const BPF_FUNC_dynptr_from_mem: Type = 197;
  1498. pub const BPF_FUNC_ringbuf_reserve_dynptr: Type = 198;
  1499. pub const BPF_FUNC_ringbuf_submit_dynptr: Type = 199;
  1500. pub const BPF_FUNC_ringbuf_discard_dynptr: Type = 200;
  1501. pub const BPF_FUNC_dynptr_read: Type = 201;
  1502. pub const BPF_FUNC_dynptr_write: Type = 202;
  1503. pub const BPF_FUNC_dynptr_data: Type = 203;
  1504. pub const BPF_FUNC_tcp_raw_gen_syncookie_ipv4: Type = 204;
  1505. pub const BPF_FUNC_tcp_raw_gen_syncookie_ipv6: Type = 205;
  1506. pub const BPF_FUNC_tcp_raw_check_syncookie_ipv4: Type = 206;
  1507. pub const BPF_FUNC_tcp_raw_check_syncookie_ipv6: Type = 207;
  1508. pub const BPF_FUNC_ktime_get_tai_ns: Type = 208;
  1509. pub const BPF_FUNC_user_ringbuf_drain: Type = 209;
  1510. pub const BPF_FUNC_cgrp_storage_get: Type = 210;
  1511. pub const BPF_FUNC_cgrp_storage_delete: Type = 211;
  1512. pub const __BPF_FUNC_MAX_ID: Type = 212;
  1513. }
  1514. pub const BPF_F_RECOMPUTE_CSUM: _bindgen_ty_6 = 1;
  1515. pub const BPF_F_INVALIDATE_HASH: _bindgen_ty_6 = 2;
  1516. pub type _bindgen_ty_6 = ::aya_ebpf_cty::c_uint;
  1517. pub const BPF_F_HDR_FIELD_MASK: _bindgen_ty_7 = 15;
  1518. pub type _bindgen_ty_7 = ::aya_ebpf_cty::c_uint;
  1519. pub const BPF_F_PSEUDO_HDR: _bindgen_ty_8 = 16;
  1520. pub const BPF_F_MARK_MANGLED_0: _bindgen_ty_8 = 32;
  1521. pub const BPF_F_MARK_ENFORCE: _bindgen_ty_8 = 64;
  1522. pub type _bindgen_ty_8 = ::aya_ebpf_cty::c_uint;
  1523. pub const BPF_F_INGRESS: _bindgen_ty_9 = 1;
  1524. pub type _bindgen_ty_9 = ::aya_ebpf_cty::c_uint;
  1525. pub const BPF_F_TUNINFO_IPV6: _bindgen_ty_10 = 1;
  1526. pub type _bindgen_ty_10 = ::aya_ebpf_cty::c_uint;
  1527. pub const BPF_F_SKIP_FIELD_MASK: _bindgen_ty_11 = 255;
  1528. pub const BPF_F_USER_STACK: _bindgen_ty_11 = 256;
  1529. pub const BPF_F_FAST_STACK_CMP: _bindgen_ty_11 = 512;
  1530. pub const BPF_F_REUSE_STACKID: _bindgen_ty_11 = 1024;
  1531. pub const BPF_F_USER_BUILD_ID: _bindgen_ty_11 = 2048;
  1532. pub type _bindgen_ty_11 = ::aya_ebpf_cty::c_uint;
  1533. pub const BPF_F_ZERO_CSUM_TX: _bindgen_ty_12 = 2;
  1534. pub const BPF_F_DONT_FRAGMENT: _bindgen_ty_12 = 4;
  1535. pub const BPF_F_SEQ_NUMBER: _bindgen_ty_12 = 8;
  1536. pub const BPF_F_NO_TUNNEL_KEY: _bindgen_ty_12 = 16;
  1537. pub type _bindgen_ty_12 = ::aya_ebpf_cty::c_uint;
  1538. pub const BPF_F_TUNINFO_FLAGS: _bindgen_ty_13 = 16;
  1539. pub type _bindgen_ty_13 = ::aya_ebpf_cty::c_uint;
  1540. pub const BPF_F_INDEX_MASK: _bindgen_ty_14 = 4294967295;
  1541. pub const BPF_F_CURRENT_CPU: _bindgen_ty_14 = 4294967295;
  1542. pub const BPF_F_CTXLEN_MASK: _bindgen_ty_14 = 4503595332403200;
  1543. pub type _bindgen_ty_14 = ::aya_ebpf_cty::c_ulong;
  1544. pub const BPF_F_CURRENT_NETNS: _bindgen_ty_15 = -1;
  1545. pub type _bindgen_ty_15 = ::aya_ebpf_cty::c_int;
  1546. pub const BPF_CSUM_LEVEL_QUERY: _bindgen_ty_16 = 0;
  1547. pub const BPF_CSUM_LEVEL_INC: _bindgen_ty_16 = 1;
  1548. pub const BPF_CSUM_LEVEL_DEC: _bindgen_ty_16 = 2;
  1549. pub const BPF_CSUM_LEVEL_RESET: _bindgen_ty_16 = 3;
  1550. pub type _bindgen_ty_16 = ::aya_ebpf_cty::c_uint;
  1551. pub const BPF_F_ADJ_ROOM_FIXED_GSO: _bindgen_ty_17 = 1;
  1552. pub const BPF_F_ADJ_ROOM_ENCAP_L3_IPV4: _bindgen_ty_17 = 2;
  1553. pub const BPF_F_ADJ_ROOM_ENCAP_L3_IPV6: _bindgen_ty_17 = 4;
  1554. pub const BPF_F_ADJ_ROOM_ENCAP_L4_GRE: _bindgen_ty_17 = 8;
  1555. pub const BPF_F_ADJ_ROOM_ENCAP_L4_UDP: _bindgen_ty_17 = 16;
  1556. pub const BPF_F_ADJ_ROOM_NO_CSUM_RESET: _bindgen_ty_17 = 32;
  1557. pub const BPF_F_ADJ_ROOM_ENCAP_L2_ETH: _bindgen_ty_17 = 64;
  1558. pub const BPF_F_ADJ_ROOM_DECAP_L3_IPV4: _bindgen_ty_17 = 128;
  1559. pub const BPF_F_ADJ_ROOM_DECAP_L3_IPV6: _bindgen_ty_17 = 256;
  1560. pub type _bindgen_ty_17 = ::aya_ebpf_cty::c_uint;
  1561. pub const BPF_ADJ_ROOM_ENCAP_L2_MASK: _bindgen_ty_18 = 255;
  1562. pub const BPF_ADJ_ROOM_ENCAP_L2_SHIFT: _bindgen_ty_18 = 56;
  1563. pub type _bindgen_ty_18 = ::aya_ebpf_cty::c_uint;
  1564. pub const BPF_F_SYSCTL_BASE_NAME: _bindgen_ty_19 = 1;
  1565. pub type _bindgen_ty_19 = ::aya_ebpf_cty::c_uint;
  1566. pub const BPF_LOCAL_STORAGE_GET_F_CREATE: _bindgen_ty_20 = 1;
  1567. pub const BPF_SK_STORAGE_GET_F_CREATE: _bindgen_ty_20 = 1;
  1568. pub type _bindgen_ty_20 = ::aya_ebpf_cty::c_uint;
  1569. pub const BPF_F_GET_BRANCH_RECORDS_SIZE: _bindgen_ty_21 = 1;
  1570. pub type _bindgen_ty_21 = ::aya_ebpf_cty::c_uint;
  1571. pub const BPF_RB_NO_WAKEUP: _bindgen_ty_22 = 1;
  1572. pub const BPF_RB_FORCE_WAKEUP: _bindgen_ty_22 = 2;
  1573. pub type _bindgen_ty_22 = ::aya_ebpf_cty::c_uint;
  1574. pub const BPF_RB_AVAIL_DATA: _bindgen_ty_23 = 0;
  1575. pub const BPF_RB_RING_SIZE: _bindgen_ty_23 = 1;
  1576. pub const BPF_RB_CONS_POS: _bindgen_ty_23 = 2;
  1577. pub const BPF_RB_PROD_POS: _bindgen_ty_23 = 3;
  1578. pub type _bindgen_ty_23 = ::aya_ebpf_cty::c_uint;
  1579. pub const BPF_RINGBUF_BUSY_BIT: _bindgen_ty_24 = 2147483648;
  1580. pub const BPF_RINGBUF_DISCARD_BIT: _bindgen_ty_24 = 1073741824;
  1581. pub const BPF_RINGBUF_HDR_SZ: _bindgen_ty_24 = 8;
  1582. pub type _bindgen_ty_24 = ::aya_ebpf_cty::c_uint;
  1583. pub const BPF_SK_LOOKUP_F_REPLACE: _bindgen_ty_25 = 1;
  1584. pub const BPF_SK_LOOKUP_F_NO_REUSEPORT: _bindgen_ty_25 = 2;
  1585. pub type _bindgen_ty_25 = ::aya_ebpf_cty::c_uint;
  1586. pub mod bpf_adj_room_mode {
  1587. pub type Type = ::aya_ebpf_cty::c_uint;
  1588. pub const BPF_ADJ_ROOM_NET: Type = 0;
  1589. pub const BPF_ADJ_ROOM_MAC: Type = 1;
  1590. }
  1591. pub mod bpf_hdr_start_off {
  1592. pub type Type = ::aya_ebpf_cty::c_uint;
  1593. pub const BPF_HDR_START_MAC: Type = 0;
  1594. pub const BPF_HDR_START_NET: Type = 1;
  1595. }
  1596. pub mod bpf_lwt_encap_mode {
  1597. pub type Type = ::aya_ebpf_cty::c_uint;
  1598. pub const BPF_LWT_ENCAP_SEG6: Type = 0;
  1599. pub const BPF_LWT_ENCAP_SEG6_INLINE: Type = 1;
  1600. pub const BPF_LWT_ENCAP_IP: Type = 2;
  1601. }
  1602. pub const BPF_F_BPRM_SECUREEXEC: _bindgen_ty_26 = 1;
  1603. pub type _bindgen_ty_26 = ::aya_ebpf_cty::c_uint;
  1604. pub const BPF_F_BROADCAST: _bindgen_ty_27 = 8;
  1605. pub const BPF_F_EXCLUDE_INGRESS: _bindgen_ty_27 = 16;
  1606. pub type _bindgen_ty_27 = ::aya_ebpf_cty::c_uint;
  1607. pub mod _bindgen_ty_28 {
  1608. pub type Type = ::aya_ebpf_cty::c_uint;
  1609. pub const BPF_SKB_TSTAMP_UNSPEC: Type = 0;
  1610. pub const BPF_SKB_TSTAMP_DELIVERY_MONO: Type = 1;
  1611. }
  1612. #[repr(C)]
  1613. #[derive(Copy, Clone)]
  1614. pub struct __sk_buff {
  1615. pub len: __u32,
  1616. pub pkt_type: __u32,
  1617. pub mark: __u32,
  1618. pub queue_mapping: __u32,
  1619. pub protocol: __u32,
  1620. pub vlan_present: __u32,
  1621. pub vlan_tci: __u32,
  1622. pub vlan_proto: __u32,
  1623. pub priority: __u32,
  1624. pub ingress_ifindex: __u32,
  1625. pub ifindex: __u32,
  1626. pub tc_index: __u32,
  1627. pub cb: [__u32; 5usize],
  1628. pub hash: __u32,
  1629. pub tc_classid: __u32,
  1630. pub data: __u32,
  1631. pub data_end: __u32,
  1632. pub napi_id: __u32,
  1633. pub family: __u32,
  1634. pub remote_ip4: __u32,
  1635. pub local_ip4: __u32,
  1636. pub remote_ip6: [__u32; 4usize],
  1637. pub local_ip6: [__u32; 4usize],
  1638. pub remote_port: __u32,
  1639. pub local_port: __u32,
  1640. pub data_meta: __u32,
  1641. pub __bindgen_anon_1: __sk_buff__bindgen_ty_1,
  1642. pub tstamp: __u64,
  1643. pub wire_len: __u32,
  1644. pub gso_segs: __u32,
  1645. pub __bindgen_anon_2: __sk_buff__bindgen_ty_2,
  1646. pub gso_size: __u32,
  1647. pub tstamp_type: __u8,
  1648. pub _bitfield_align_1: [u8; 0],
  1649. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 3usize]>,
  1650. pub hwtstamp: __u64,
  1651. }
  1652. #[repr(C)]
  1653. #[derive(Copy, Clone)]
  1654. pub union __sk_buff__bindgen_ty_1 {
  1655. pub flow_keys: *mut bpf_flow_keys,
  1656. pub _bitfield_align_1: [u8; 0],
  1657. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  1658. }
  1659. impl __sk_buff__bindgen_ty_1 {
  1660. #[inline]
  1661. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  1662. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  1663. __bindgen_bitfield_unit
  1664. }
  1665. }
  1666. #[repr(C)]
  1667. #[derive(Copy, Clone)]
  1668. pub union __sk_buff__bindgen_ty_2 {
  1669. pub sk: *mut bpf_sock,
  1670. pub _bitfield_align_1: [u8; 0],
  1671. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  1672. }
  1673. impl __sk_buff__bindgen_ty_2 {
  1674. #[inline]
  1675. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  1676. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  1677. __bindgen_bitfield_unit
  1678. }
  1679. }
  1680. impl __sk_buff {
  1681. #[inline]
  1682. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 3usize]> {
  1683. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 3usize]> = Default::default();
  1684. __bindgen_bitfield_unit
  1685. }
  1686. }
  1687. #[repr(C)]
  1688. #[derive(Copy, Clone)]
  1689. pub struct bpf_tunnel_key {
  1690. pub tunnel_id: __u32,
  1691. pub __bindgen_anon_1: bpf_tunnel_key__bindgen_ty_1,
  1692. pub tunnel_tos: __u8,
  1693. pub tunnel_ttl: __u8,
  1694. pub __bindgen_anon_2: bpf_tunnel_key__bindgen_ty_2,
  1695. pub tunnel_label: __u32,
  1696. pub __bindgen_anon_3: bpf_tunnel_key__bindgen_ty_3,
  1697. }
  1698. #[repr(C)]
  1699. #[derive(Copy, Clone)]
  1700. pub union bpf_tunnel_key__bindgen_ty_1 {
  1701. pub remote_ipv4: __u32,
  1702. pub remote_ipv6: [__u32; 4usize],
  1703. }
  1704. #[repr(C)]
  1705. #[derive(Copy, Clone)]
  1706. pub union bpf_tunnel_key__bindgen_ty_2 {
  1707. pub tunnel_ext: __u16,
  1708. pub tunnel_flags: __be16,
  1709. }
  1710. #[repr(C)]
  1711. #[derive(Copy, Clone)]
  1712. pub union bpf_tunnel_key__bindgen_ty_3 {
  1713. pub local_ipv4: __u32,
  1714. pub local_ipv6: [__u32; 4usize],
  1715. }
  1716. #[repr(C)]
  1717. #[derive(Copy, Clone)]
  1718. pub struct bpf_xfrm_state {
  1719. pub reqid: __u32,
  1720. pub spi: __u32,
  1721. pub family: __u16,
  1722. pub ext: __u16,
  1723. pub __bindgen_anon_1: bpf_xfrm_state__bindgen_ty_1,
  1724. }
  1725. #[repr(C)]
  1726. #[derive(Copy, Clone)]
  1727. pub union bpf_xfrm_state__bindgen_ty_1 {
  1728. pub remote_ipv4: __u32,
  1729. pub remote_ipv6: [__u32; 4usize],
  1730. }
  1731. pub mod bpf_ret_code {
  1732. pub type Type = ::aya_ebpf_cty::c_uint;
  1733. pub const BPF_OK: Type = 0;
  1734. pub const BPF_DROP: Type = 2;
  1735. pub const BPF_REDIRECT: Type = 7;
  1736. pub const BPF_LWT_REROUTE: Type = 128;
  1737. pub const BPF_FLOW_DISSECTOR_CONTINUE: Type = 129;
  1738. }
  1739. #[repr(C)]
  1740. #[derive(Debug, Copy, Clone)]
  1741. pub struct bpf_sock {
  1742. pub bound_dev_if: __u32,
  1743. pub family: __u32,
  1744. pub type_: __u32,
  1745. pub protocol: __u32,
  1746. pub mark: __u32,
  1747. pub priority: __u32,
  1748. pub src_ip4: __u32,
  1749. pub src_ip6: [__u32; 4usize],
  1750. pub src_port: __u32,
  1751. pub dst_port: __be16,
  1752. pub _bitfield_align_1: [u8; 0],
  1753. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2usize]>,
  1754. pub dst_ip4: __u32,
  1755. pub dst_ip6: [__u32; 4usize],
  1756. pub state: __u32,
  1757. pub rx_queue_mapping: __s32,
  1758. }
  1759. impl bpf_sock {
  1760. #[inline]
  1761. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 2usize]> {
  1762. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 2usize]> = Default::default();
  1763. __bindgen_bitfield_unit
  1764. }
  1765. }
  1766. #[repr(C)]
  1767. #[derive(Debug, Copy, Clone)]
  1768. pub struct bpf_tcp_sock {
  1769. pub snd_cwnd: __u32,
  1770. pub srtt_us: __u32,
  1771. pub rtt_min: __u32,
  1772. pub snd_ssthresh: __u32,
  1773. pub rcv_nxt: __u32,
  1774. pub snd_nxt: __u32,
  1775. pub snd_una: __u32,
  1776. pub mss_cache: __u32,
  1777. pub ecn_flags: __u32,
  1778. pub rate_delivered: __u32,
  1779. pub rate_interval_us: __u32,
  1780. pub packets_out: __u32,
  1781. pub retrans_out: __u32,
  1782. pub total_retrans: __u32,
  1783. pub segs_in: __u32,
  1784. pub data_segs_in: __u32,
  1785. pub segs_out: __u32,
  1786. pub data_segs_out: __u32,
  1787. pub lost_out: __u32,
  1788. pub sacked_out: __u32,
  1789. pub bytes_received: __u64,
  1790. pub bytes_acked: __u64,
  1791. pub dsack_dups: __u32,
  1792. pub delivered: __u32,
  1793. pub delivered_ce: __u32,
  1794. pub icsk_retransmits: __u32,
  1795. }
  1796. #[repr(C)]
  1797. #[derive(Copy, Clone)]
  1798. pub struct bpf_sock_tuple {
  1799. pub __bindgen_anon_1: bpf_sock_tuple__bindgen_ty_1,
  1800. }
  1801. #[repr(C)]
  1802. #[derive(Copy, Clone)]
  1803. pub union bpf_sock_tuple__bindgen_ty_1 {
  1804. pub ipv4: bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1,
  1805. pub ipv6: bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2,
  1806. }
  1807. #[repr(C)]
  1808. #[derive(Debug, Copy, Clone)]
  1809. pub struct bpf_sock_tuple__bindgen_ty_1__bindgen_ty_1 {
  1810. pub saddr: __be32,
  1811. pub daddr: __be32,
  1812. pub sport: __be16,
  1813. pub dport: __be16,
  1814. }
  1815. #[repr(C)]
  1816. #[derive(Debug, Copy, Clone)]
  1817. pub struct bpf_sock_tuple__bindgen_ty_1__bindgen_ty_2 {
  1818. pub saddr: [__be32; 4usize],
  1819. pub daddr: [__be32; 4usize],
  1820. pub sport: __be16,
  1821. pub dport: __be16,
  1822. }
  1823. pub mod tcx_action_base {
  1824. pub type Type = ::aya_ebpf_cty::c_int;
  1825. pub const TCX_NEXT: Type = -1;
  1826. pub const TCX_PASS: Type = 0;
  1827. pub const TCX_DROP: Type = 2;
  1828. pub const TCX_REDIRECT: Type = 7;
  1829. }
  1830. #[repr(C)]
  1831. #[derive(Debug, Copy, Clone)]
  1832. pub struct bpf_xdp_sock {
  1833. pub queue_id: __u32,
  1834. }
  1835. pub mod xdp_action {
  1836. pub type Type = ::aya_ebpf_cty::c_uint;
  1837. pub const XDP_ABORTED: Type = 0;
  1838. pub const XDP_DROP: Type = 1;
  1839. pub const XDP_PASS: Type = 2;
  1840. pub const XDP_TX: Type = 3;
  1841. pub const XDP_REDIRECT: Type = 4;
  1842. }
  1843. #[repr(C)]
  1844. #[derive(Debug, Copy, Clone)]
  1845. pub struct xdp_md {
  1846. pub data: __u32,
  1847. pub data_end: __u32,
  1848. pub data_meta: __u32,
  1849. pub ingress_ifindex: __u32,
  1850. pub rx_queue_index: __u32,
  1851. pub egress_ifindex: __u32,
  1852. }
  1853. #[repr(C)]
  1854. #[derive(Copy, Clone)]
  1855. pub struct bpf_devmap_val {
  1856. pub ifindex: __u32,
  1857. pub bpf_prog: bpf_devmap_val__bindgen_ty_1,
  1858. }
  1859. #[repr(C)]
  1860. #[derive(Copy, Clone)]
  1861. pub union bpf_devmap_val__bindgen_ty_1 {
  1862. pub fd: ::aya_ebpf_cty::c_int,
  1863. pub id: __u32,
  1864. }
  1865. #[repr(C)]
  1866. #[derive(Copy, Clone)]
  1867. pub struct bpf_cpumap_val {
  1868. pub qsize: __u32,
  1869. pub bpf_prog: bpf_cpumap_val__bindgen_ty_1,
  1870. }
  1871. #[repr(C)]
  1872. #[derive(Copy, Clone)]
  1873. pub union bpf_cpumap_val__bindgen_ty_1 {
  1874. pub fd: ::aya_ebpf_cty::c_int,
  1875. pub id: __u32,
  1876. }
  1877. pub mod sk_action {
  1878. pub type Type = ::aya_ebpf_cty::c_uint;
  1879. pub const SK_DROP: Type = 0;
  1880. pub const SK_PASS: Type = 1;
  1881. }
  1882. #[repr(C)]
  1883. #[derive(Copy, Clone)]
  1884. pub struct sk_msg_md {
  1885. pub __bindgen_anon_1: sk_msg_md__bindgen_ty_1,
  1886. pub __bindgen_anon_2: sk_msg_md__bindgen_ty_2,
  1887. pub family: __u32,
  1888. pub remote_ip4: __u32,
  1889. pub local_ip4: __u32,
  1890. pub remote_ip6: [__u32; 4usize],
  1891. pub local_ip6: [__u32; 4usize],
  1892. pub remote_port: __u32,
  1893. pub local_port: __u32,
  1894. pub size: __u32,
  1895. pub __bindgen_anon_3: sk_msg_md__bindgen_ty_3,
  1896. }
  1897. #[repr(C)]
  1898. #[derive(Copy, Clone)]
  1899. pub union sk_msg_md__bindgen_ty_1 {
  1900. pub data: *mut ::aya_ebpf_cty::c_void,
  1901. pub _bitfield_align_1: [u8; 0],
  1902. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  1903. }
  1904. impl sk_msg_md__bindgen_ty_1 {
  1905. #[inline]
  1906. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  1907. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  1908. __bindgen_bitfield_unit
  1909. }
  1910. }
  1911. #[repr(C)]
  1912. #[derive(Copy, Clone)]
  1913. pub union sk_msg_md__bindgen_ty_2 {
  1914. pub data_end: *mut ::aya_ebpf_cty::c_void,
  1915. pub _bitfield_align_1: [u8; 0],
  1916. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  1917. }
  1918. impl sk_msg_md__bindgen_ty_2 {
  1919. #[inline]
  1920. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  1921. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  1922. __bindgen_bitfield_unit
  1923. }
  1924. }
  1925. #[repr(C)]
  1926. #[derive(Copy, Clone)]
  1927. pub union sk_msg_md__bindgen_ty_3 {
  1928. pub sk: *mut bpf_sock,
  1929. pub _bitfield_align_1: [u8; 0],
  1930. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  1931. }
  1932. impl sk_msg_md__bindgen_ty_3 {
  1933. #[inline]
  1934. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  1935. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  1936. __bindgen_bitfield_unit
  1937. }
  1938. }
  1939. #[repr(C)]
  1940. #[derive(Copy, Clone)]
  1941. pub struct sk_reuseport_md {
  1942. pub __bindgen_anon_1: sk_reuseport_md__bindgen_ty_1,
  1943. pub __bindgen_anon_2: sk_reuseport_md__bindgen_ty_2,
  1944. pub len: __u32,
  1945. pub eth_protocol: __u32,
  1946. pub ip_protocol: __u32,
  1947. pub bind_inany: __u32,
  1948. pub hash: __u32,
  1949. pub __bindgen_anon_3: sk_reuseport_md__bindgen_ty_3,
  1950. pub __bindgen_anon_4: sk_reuseport_md__bindgen_ty_4,
  1951. }
  1952. #[repr(C)]
  1953. #[derive(Copy, Clone)]
  1954. pub union sk_reuseport_md__bindgen_ty_1 {
  1955. pub data: *mut ::aya_ebpf_cty::c_void,
  1956. pub _bitfield_align_1: [u8; 0],
  1957. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  1958. }
  1959. impl sk_reuseport_md__bindgen_ty_1 {
  1960. #[inline]
  1961. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  1962. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  1963. __bindgen_bitfield_unit
  1964. }
  1965. }
  1966. #[repr(C)]
  1967. #[derive(Copy, Clone)]
  1968. pub union sk_reuseport_md__bindgen_ty_2 {
  1969. pub data_end: *mut ::aya_ebpf_cty::c_void,
  1970. pub _bitfield_align_1: [u8; 0],
  1971. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  1972. }
  1973. impl sk_reuseport_md__bindgen_ty_2 {
  1974. #[inline]
  1975. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  1976. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  1977. __bindgen_bitfield_unit
  1978. }
  1979. }
  1980. #[repr(C)]
  1981. #[derive(Copy, Clone)]
  1982. pub union sk_reuseport_md__bindgen_ty_3 {
  1983. pub sk: *mut bpf_sock,
  1984. pub _bitfield_align_1: [u8; 0],
  1985. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  1986. }
  1987. impl sk_reuseport_md__bindgen_ty_3 {
  1988. #[inline]
  1989. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  1990. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  1991. __bindgen_bitfield_unit
  1992. }
  1993. }
  1994. #[repr(C)]
  1995. #[derive(Copy, Clone)]
  1996. pub union sk_reuseport_md__bindgen_ty_4 {
  1997. pub migrating_sk: *mut bpf_sock,
  1998. pub _bitfield_align_1: [u8; 0],
  1999. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  2000. }
  2001. impl sk_reuseport_md__bindgen_ty_4 {
  2002. #[inline]
  2003. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  2004. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  2005. __bindgen_bitfield_unit
  2006. }
  2007. }
  2008. #[repr(C)]
  2009. #[derive(Debug, Copy, Clone)]
  2010. pub struct bpf_prog_info {
  2011. pub type_: __u32,
  2012. pub id: __u32,
  2013. pub tag: [__u8; 8usize],
  2014. pub jited_prog_len: __u32,
  2015. pub xlated_prog_len: __u32,
  2016. pub jited_prog_insns: __u64,
  2017. pub xlated_prog_insns: __u64,
  2018. pub load_time: __u64,
  2019. pub created_by_uid: __u32,
  2020. pub nr_map_ids: __u32,
  2021. pub map_ids: __u64,
  2022. pub name: [::aya_ebpf_cty::c_char; 16usize],
  2023. pub ifindex: __u32,
  2024. pub _bitfield_align_1: [u8; 0],
  2025. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4usize]>,
  2026. pub netns_dev: __u64,
  2027. pub netns_ino: __u64,
  2028. pub nr_jited_ksyms: __u32,
  2029. pub nr_jited_func_lens: __u32,
  2030. pub jited_ksyms: __u64,
  2031. pub jited_func_lens: __u64,
  2032. pub btf_id: __u32,
  2033. pub func_info_rec_size: __u32,
  2034. pub func_info: __u64,
  2035. pub nr_func_info: __u32,
  2036. pub nr_line_info: __u32,
  2037. pub line_info: __u64,
  2038. pub jited_line_info: __u64,
  2039. pub nr_jited_line_info: __u32,
  2040. pub line_info_rec_size: __u32,
  2041. pub jited_line_info_rec_size: __u32,
  2042. pub nr_prog_tags: __u32,
  2043. pub prog_tags: __u64,
  2044. pub run_time_ns: __u64,
  2045. pub run_cnt: __u64,
  2046. pub recursion_misses: __u64,
  2047. pub verified_insns: __u32,
  2048. pub attach_btf_obj_id: __u32,
  2049. pub attach_btf_id: __u32,
  2050. }
  2051. impl bpf_prog_info {
  2052. #[inline]
  2053. pub fn gpl_compatible(&self) -> __u32 {
  2054. unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 1u8) as u32) }
  2055. }
  2056. #[inline]
  2057. pub fn set_gpl_compatible(&mut self, val: __u32) {
  2058. unsafe {
  2059. let val: u32 = ::core::mem::transmute(val);
  2060. self._bitfield_1.set(0usize, 1u8, val as u64)
  2061. }
  2062. }
  2063. #[inline]
  2064. pub unsafe fn gpl_compatible_raw(this: *const Self) -> __u32 {
  2065. unsafe {
  2066. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
  2067. ::core::ptr::addr_of!((*this)._bitfield_1),
  2068. 0usize,
  2069. 1u8,
  2070. ) as u32)
  2071. }
  2072. }
  2073. #[inline]
  2074. pub unsafe fn set_gpl_compatible_raw(this: *mut Self, val: __u32) {
  2075. unsafe {
  2076. let val: u32 = ::core::mem::transmute(val);
  2077. <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
  2078. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2079. 0usize,
  2080. 1u8,
  2081. val as u64,
  2082. )
  2083. }
  2084. }
  2085. #[inline]
  2086. pub fn new_bitfield_1(gpl_compatible: __u32) -> __BindgenBitfieldUnit<[u8; 4usize]> {
  2087. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 4usize]> = Default::default();
  2088. __bindgen_bitfield_unit.set(0usize, 1u8, {
  2089. let gpl_compatible: u32 = unsafe { ::core::mem::transmute(gpl_compatible) };
  2090. gpl_compatible as u64
  2091. });
  2092. __bindgen_bitfield_unit
  2093. }
  2094. }
  2095. #[repr(C)]
  2096. #[derive(Debug, Copy, Clone)]
  2097. pub struct bpf_map_info {
  2098. pub type_: __u32,
  2099. pub id: __u32,
  2100. pub key_size: __u32,
  2101. pub value_size: __u32,
  2102. pub max_entries: __u32,
  2103. pub map_flags: __u32,
  2104. pub name: [::aya_ebpf_cty::c_char; 16usize],
  2105. pub ifindex: __u32,
  2106. pub btf_vmlinux_value_type_id: __u32,
  2107. pub netns_dev: __u64,
  2108. pub netns_ino: __u64,
  2109. pub btf_id: __u32,
  2110. pub btf_key_type_id: __u32,
  2111. pub btf_value_type_id: __u32,
  2112. pub btf_vmlinux_id: __u32,
  2113. pub map_extra: __u64,
  2114. }
  2115. #[repr(C)]
  2116. #[derive(Debug, Copy, Clone)]
  2117. pub struct bpf_btf_info {
  2118. pub btf: __u64,
  2119. pub btf_size: __u32,
  2120. pub id: __u32,
  2121. pub name: __u64,
  2122. pub name_len: __u32,
  2123. pub kernel_btf: __u32,
  2124. }
  2125. #[repr(C)]
  2126. #[derive(Copy, Clone)]
  2127. pub struct bpf_link_info {
  2128. pub type_: __u32,
  2129. pub id: __u32,
  2130. pub prog_id: __u32,
  2131. pub __bindgen_anon_1: bpf_link_info__bindgen_ty_1,
  2132. }
  2133. #[repr(C)]
  2134. #[derive(Copy, Clone)]
  2135. pub union bpf_link_info__bindgen_ty_1 {
  2136. pub raw_tracepoint: bpf_link_info__bindgen_ty_1__bindgen_ty_1,
  2137. pub tracing: bpf_link_info__bindgen_ty_1__bindgen_ty_2,
  2138. pub cgroup: bpf_link_info__bindgen_ty_1__bindgen_ty_3,
  2139. pub iter: bpf_link_info__bindgen_ty_1__bindgen_ty_4,
  2140. pub netns: bpf_link_info__bindgen_ty_1__bindgen_ty_5,
  2141. pub xdp: bpf_link_info__bindgen_ty_1__bindgen_ty_6,
  2142. pub struct_ops: bpf_link_info__bindgen_ty_1__bindgen_ty_7,
  2143. pub netfilter: bpf_link_info__bindgen_ty_1__bindgen_ty_8,
  2144. pub kprobe_multi: bpf_link_info__bindgen_ty_1__bindgen_ty_9,
  2145. pub uprobe_multi: bpf_link_info__bindgen_ty_1__bindgen_ty_10,
  2146. pub perf_event: bpf_link_info__bindgen_ty_1__bindgen_ty_11,
  2147. pub tcx: bpf_link_info__bindgen_ty_1__bindgen_ty_12,
  2148. pub netkit: bpf_link_info__bindgen_ty_1__bindgen_ty_13,
  2149. }
  2150. #[repr(C)]
  2151. #[derive(Debug, Copy, Clone)]
  2152. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_1 {
  2153. pub tp_name: __u64,
  2154. pub tp_name_len: __u32,
  2155. }
  2156. #[repr(C)]
  2157. #[derive(Debug, Copy, Clone)]
  2158. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_2 {
  2159. pub attach_type: __u32,
  2160. pub target_obj_id: __u32,
  2161. pub target_btf_id: __u32,
  2162. }
  2163. #[repr(C)]
  2164. #[derive(Debug, Copy, Clone)]
  2165. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_3 {
  2166. pub cgroup_id: __u64,
  2167. pub attach_type: __u32,
  2168. }
  2169. #[repr(C)]
  2170. #[derive(Copy, Clone)]
  2171. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_4 {
  2172. pub target_name: __u64,
  2173. pub target_name_len: __u32,
  2174. pub __bindgen_anon_1: bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1,
  2175. pub __bindgen_anon_2: bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2,
  2176. }
  2177. #[repr(C)]
  2178. #[derive(Copy, Clone)]
  2179. pub union bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 {
  2180. pub map: bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1,
  2181. }
  2182. #[repr(C)]
  2183. #[derive(Debug, Copy, Clone)]
  2184. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 {
  2185. pub map_id: __u32,
  2186. }
  2187. #[repr(C)]
  2188. #[derive(Copy, Clone)]
  2189. pub union bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 {
  2190. pub cgroup: bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1,
  2191. pub task: bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2,
  2192. }
  2193. #[repr(C)]
  2194. #[derive(Debug, Copy, Clone)]
  2195. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 {
  2196. pub cgroup_id: __u64,
  2197. pub order: __u32,
  2198. }
  2199. #[repr(C)]
  2200. #[derive(Debug, Copy, Clone)]
  2201. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 {
  2202. pub tid: __u32,
  2203. pub pid: __u32,
  2204. }
  2205. #[repr(C)]
  2206. #[derive(Debug, Copy, Clone)]
  2207. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_5 {
  2208. pub netns_ino: __u32,
  2209. pub attach_type: __u32,
  2210. }
  2211. #[repr(C)]
  2212. #[derive(Debug, Copy, Clone)]
  2213. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_6 {
  2214. pub ifindex: __u32,
  2215. }
  2216. #[repr(C)]
  2217. #[derive(Debug, Copy, Clone)]
  2218. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_7 {
  2219. pub map_id: __u32,
  2220. }
  2221. #[repr(C)]
  2222. #[derive(Debug, Copy, Clone)]
  2223. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_8 {
  2224. pub pf: __u32,
  2225. pub hooknum: __u32,
  2226. pub priority: __s32,
  2227. pub flags: __u32,
  2228. }
  2229. #[repr(C)]
  2230. #[derive(Debug, Copy, Clone)]
  2231. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_9 {
  2232. pub addrs: __u64,
  2233. pub count: __u32,
  2234. pub flags: __u32,
  2235. pub missed: __u64,
  2236. pub cookies: __u64,
  2237. }
  2238. #[repr(C)]
  2239. #[derive(Debug, Copy, Clone)]
  2240. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_10 {
  2241. pub path: __u64,
  2242. pub offsets: __u64,
  2243. pub ref_ctr_offsets: __u64,
  2244. pub cookies: __u64,
  2245. pub path_size: __u32,
  2246. pub count: __u32,
  2247. pub flags: __u32,
  2248. pub pid: __u32,
  2249. }
  2250. #[repr(C)]
  2251. #[derive(Copy, Clone)]
  2252. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_11 {
  2253. pub type_: __u32,
  2254. pub _bitfield_align_1: [u8; 0],
  2255. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4usize]>,
  2256. pub __bindgen_anon_1: bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1,
  2257. }
  2258. #[repr(C)]
  2259. #[derive(Copy, Clone)]
  2260. pub union bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1 {
  2261. pub uprobe: bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1,
  2262. pub kprobe: bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2,
  2263. pub tracepoint: bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3,
  2264. pub event: bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4,
  2265. }
  2266. #[repr(C)]
  2267. #[derive(Debug, Copy, Clone)]
  2268. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1 {
  2269. pub file_name: __u64,
  2270. pub name_len: __u32,
  2271. pub offset: __u32,
  2272. pub cookie: __u64,
  2273. }
  2274. #[repr(C)]
  2275. #[derive(Debug, Copy, Clone)]
  2276. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2 {
  2277. pub func_name: __u64,
  2278. pub name_len: __u32,
  2279. pub offset: __u32,
  2280. pub addr: __u64,
  2281. pub missed: __u64,
  2282. pub cookie: __u64,
  2283. }
  2284. #[repr(C)]
  2285. #[derive(Debug, Copy, Clone)]
  2286. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3 {
  2287. pub tp_name: __u64,
  2288. pub name_len: __u32,
  2289. pub _bitfield_align_1: [u8; 0],
  2290. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4usize]>,
  2291. pub cookie: __u64,
  2292. }
  2293. impl bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3 {
  2294. #[inline]
  2295. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 4usize]> {
  2296. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 4usize]> = Default::default();
  2297. __bindgen_bitfield_unit
  2298. }
  2299. }
  2300. #[repr(C)]
  2301. #[derive(Debug, Copy, Clone)]
  2302. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4 {
  2303. pub config: __u64,
  2304. pub type_: __u32,
  2305. pub _bitfield_align_1: [u8; 0],
  2306. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4usize]>,
  2307. pub cookie: __u64,
  2308. }
  2309. impl bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4 {
  2310. #[inline]
  2311. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 4usize]> {
  2312. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 4usize]> = Default::default();
  2313. __bindgen_bitfield_unit
  2314. }
  2315. }
  2316. impl bpf_link_info__bindgen_ty_1__bindgen_ty_11 {
  2317. #[inline]
  2318. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 4usize]> {
  2319. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 4usize]> = Default::default();
  2320. __bindgen_bitfield_unit
  2321. }
  2322. }
  2323. #[repr(C)]
  2324. #[derive(Debug, Copy, Clone)]
  2325. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_12 {
  2326. pub ifindex: __u32,
  2327. pub attach_type: __u32,
  2328. }
  2329. #[repr(C)]
  2330. #[derive(Debug, Copy, Clone)]
  2331. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_13 {
  2332. pub ifindex: __u32,
  2333. pub attach_type: __u32,
  2334. }
  2335. #[repr(C)]
  2336. #[derive(Copy, Clone)]
  2337. pub struct bpf_sock_addr {
  2338. pub user_family: __u32,
  2339. pub user_ip4: __u32,
  2340. pub user_ip6: [__u32; 4usize],
  2341. pub user_port: __u32,
  2342. pub family: __u32,
  2343. pub type_: __u32,
  2344. pub protocol: __u32,
  2345. pub msg_src_ip4: __u32,
  2346. pub msg_src_ip6: [__u32; 4usize],
  2347. pub __bindgen_anon_1: bpf_sock_addr__bindgen_ty_1,
  2348. }
  2349. #[repr(C)]
  2350. #[derive(Copy, Clone)]
  2351. pub union bpf_sock_addr__bindgen_ty_1 {
  2352. pub sk: *mut bpf_sock,
  2353. pub _bitfield_align_1: [u8; 0],
  2354. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  2355. }
  2356. impl bpf_sock_addr__bindgen_ty_1 {
  2357. #[inline]
  2358. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  2359. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  2360. __bindgen_bitfield_unit
  2361. }
  2362. }
  2363. #[repr(C)]
  2364. #[derive(Copy, Clone)]
  2365. pub struct bpf_sock_ops {
  2366. pub op: __u32,
  2367. pub __bindgen_anon_1: bpf_sock_ops__bindgen_ty_1,
  2368. pub family: __u32,
  2369. pub remote_ip4: __u32,
  2370. pub local_ip4: __u32,
  2371. pub remote_ip6: [__u32; 4usize],
  2372. pub local_ip6: [__u32; 4usize],
  2373. pub remote_port: __u32,
  2374. pub local_port: __u32,
  2375. pub is_fullsock: __u32,
  2376. pub snd_cwnd: __u32,
  2377. pub srtt_us: __u32,
  2378. pub bpf_sock_ops_cb_flags: __u32,
  2379. pub state: __u32,
  2380. pub rtt_min: __u32,
  2381. pub snd_ssthresh: __u32,
  2382. pub rcv_nxt: __u32,
  2383. pub snd_nxt: __u32,
  2384. pub snd_una: __u32,
  2385. pub mss_cache: __u32,
  2386. pub ecn_flags: __u32,
  2387. pub rate_delivered: __u32,
  2388. pub rate_interval_us: __u32,
  2389. pub packets_out: __u32,
  2390. pub retrans_out: __u32,
  2391. pub total_retrans: __u32,
  2392. pub segs_in: __u32,
  2393. pub data_segs_in: __u32,
  2394. pub segs_out: __u32,
  2395. pub data_segs_out: __u32,
  2396. pub lost_out: __u32,
  2397. pub sacked_out: __u32,
  2398. pub sk_txhash: __u32,
  2399. pub bytes_received: __u64,
  2400. pub bytes_acked: __u64,
  2401. pub __bindgen_anon_2: bpf_sock_ops__bindgen_ty_2,
  2402. pub __bindgen_anon_3: bpf_sock_ops__bindgen_ty_3,
  2403. pub __bindgen_anon_4: bpf_sock_ops__bindgen_ty_4,
  2404. pub skb_len: __u32,
  2405. pub skb_tcp_flags: __u32,
  2406. pub skb_hwtstamp: __u64,
  2407. }
  2408. #[repr(C)]
  2409. #[derive(Copy, Clone)]
  2410. pub union bpf_sock_ops__bindgen_ty_1 {
  2411. pub args: [__u32; 4usize],
  2412. pub reply: __u32,
  2413. pub replylong: [__u32; 4usize],
  2414. }
  2415. #[repr(C)]
  2416. #[derive(Copy, Clone)]
  2417. pub union bpf_sock_ops__bindgen_ty_2 {
  2418. pub sk: *mut bpf_sock,
  2419. pub _bitfield_align_1: [u8; 0],
  2420. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  2421. }
  2422. impl bpf_sock_ops__bindgen_ty_2 {
  2423. #[inline]
  2424. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  2425. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  2426. __bindgen_bitfield_unit
  2427. }
  2428. }
  2429. #[repr(C)]
  2430. #[derive(Copy, Clone)]
  2431. pub union bpf_sock_ops__bindgen_ty_3 {
  2432. pub skb_data: *mut ::aya_ebpf_cty::c_void,
  2433. pub _bitfield_align_1: [u8; 0],
  2434. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  2435. }
  2436. impl bpf_sock_ops__bindgen_ty_3 {
  2437. #[inline]
  2438. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  2439. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  2440. __bindgen_bitfield_unit
  2441. }
  2442. }
  2443. #[repr(C)]
  2444. #[derive(Copy, Clone)]
  2445. pub union bpf_sock_ops__bindgen_ty_4 {
  2446. pub skb_data_end: *mut ::aya_ebpf_cty::c_void,
  2447. pub _bitfield_align_1: [u8; 0],
  2448. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  2449. }
  2450. impl bpf_sock_ops__bindgen_ty_4 {
  2451. #[inline]
  2452. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  2453. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  2454. __bindgen_bitfield_unit
  2455. }
  2456. }
  2457. pub const BPF_SOCK_OPS_RTO_CB_FLAG: _bindgen_ty_29 = 1;
  2458. pub const BPF_SOCK_OPS_RETRANS_CB_FLAG: _bindgen_ty_29 = 2;
  2459. pub const BPF_SOCK_OPS_STATE_CB_FLAG: _bindgen_ty_29 = 4;
  2460. pub const BPF_SOCK_OPS_RTT_CB_FLAG: _bindgen_ty_29 = 8;
  2461. pub const BPF_SOCK_OPS_PARSE_ALL_HDR_OPT_CB_FLAG: _bindgen_ty_29 = 16;
  2462. pub const BPF_SOCK_OPS_PARSE_UNKNOWN_HDR_OPT_CB_FLAG: _bindgen_ty_29 = 32;
  2463. pub const BPF_SOCK_OPS_WRITE_HDR_OPT_CB_FLAG: _bindgen_ty_29 = 64;
  2464. pub const BPF_SOCK_OPS_ALL_CB_FLAGS: _bindgen_ty_29 = 127;
  2465. pub type _bindgen_ty_29 = ::aya_ebpf_cty::c_uint;
  2466. pub const BPF_SOCK_OPS_VOID: _bindgen_ty_30 = 0;
  2467. pub const BPF_SOCK_OPS_TIMEOUT_INIT: _bindgen_ty_30 = 1;
  2468. pub const BPF_SOCK_OPS_RWND_INIT: _bindgen_ty_30 = 2;
  2469. pub const BPF_SOCK_OPS_TCP_CONNECT_CB: _bindgen_ty_30 = 3;
  2470. pub const BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB: _bindgen_ty_30 = 4;
  2471. pub const BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB: _bindgen_ty_30 = 5;
  2472. pub const BPF_SOCK_OPS_NEEDS_ECN: _bindgen_ty_30 = 6;
  2473. pub const BPF_SOCK_OPS_BASE_RTT: _bindgen_ty_30 = 7;
  2474. pub const BPF_SOCK_OPS_RTO_CB: _bindgen_ty_30 = 8;
  2475. pub const BPF_SOCK_OPS_RETRANS_CB: _bindgen_ty_30 = 9;
  2476. pub const BPF_SOCK_OPS_STATE_CB: _bindgen_ty_30 = 10;
  2477. pub const BPF_SOCK_OPS_TCP_LISTEN_CB: _bindgen_ty_30 = 11;
  2478. pub const BPF_SOCK_OPS_RTT_CB: _bindgen_ty_30 = 12;
  2479. pub const BPF_SOCK_OPS_PARSE_HDR_OPT_CB: _bindgen_ty_30 = 13;
  2480. pub const BPF_SOCK_OPS_HDR_OPT_LEN_CB: _bindgen_ty_30 = 14;
  2481. pub const BPF_SOCK_OPS_WRITE_HDR_OPT_CB: _bindgen_ty_30 = 15;
  2482. pub type _bindgen_ty_30 = ::aya_ebpf_cty::c_uint;
  2483. pub const BPF_TCP_ESTABLISHED: _bindgen_ty_31 = 1;
  2484. pub const BPF_TCP_SYN_SENT: _bindgen_ty_31 = 2;
  2485. pub const BPF_TCP_SYN_RECV: _bindgen_ty_31 = 3;
  2486. pub const BPF_TCP_FIN_WAIT1: _bindgen_ty_31 = 4;
  2487. pub const BPF_TCP_FIN_WAIT2: _bindgen_ty_31 = 5;
  2488. pub const BPF_TCP_TIME_WAIT: _bindgen_ty_31 = 6;
  2489. pub const BPF_TCP_CLOSE: _bindgen_ty_31 = 7;
  2490. pub const BPF_TCP_CLOSE_WAIT: _bindgen_ty_31 = 8;
  2491. pub const BPF_TCP_LAST_ACK: _bindgen_ty_31 = 9;
  2492. pub const BPF_TCP_LISTEN: _bindgen_ty_31 = 10;
  2493. pub const BPF_TCP_CLOSING: _bindgen_ty_31 = 11;
  2494. pub const BPF_TCP_NEW_SYN_RECV: _bindgen_ty_31 = 12;
  2495. pub const BPF_TCP_BOUND_INACTIVE: _bindgen_ty_31 = 13;
  2496. pub const BPF_TCP_MAX_STATES: _bindgen_ty_31 = 14;
  2497. pub type _bindgen_ty_31 = ::aya_ebpf_cty::c_uint;
  2498. pub mod _bindgen_ty_33 {
  2499. pub type Type = ::aya_ebpf_cty::c_uint;
  2500. pub const BPF_LOAD_HDR_OPT_TCP_SYN: Type = 1;
  2501. }
  2502. pub mod _bindgen_ty_34 {
  2503. pub type Type = ::aya_ebpf_cty::c_uint;
  2504. pub const BPF_WRITE_HDR_TCP_CURRENT_MSS: Type = 1;
  2505. pub const BPF_WRITE_HDR_TCP_SYNACK_COOKIE: Type = 2;
  2506. }
  2507. #[repr(C)]
  2508. #[derive(Debug, Copy, Clone)]
  2509. pub struct bpf_perf_event_value {
  2510. pub counter: __u64,
  2511. pub enabled: __u64,
  2512. pub running: __u64,
  2513. }
  2514. pub const BPF_DEVCG_ACC_MKNOD: _bindgen_ty_35 = 1;
  2515. pub const BPF_DEVCG_ACC_READ: _bindgen_ty_35 = 2;
  2516. pub const BPF_DEVCG_ACC_WRITE: _bindgen_ty_35 = 4;
  2517. pub type _bindgen_ty_35 = ::aya_ebpf_cty::c_uint;
  2518. pub const BPF_DEVCG_DEV_BLOCK: _bindgen_ty_36 = 1;
  2519. pub const BPF_DEVCG_DEV_CHAR: _bindgen_ty_36 = 2;
  2520. pub type _bindgen_ty_36 = ::aya_ebpf_cty::c_uint;
  2521. #[repr(C)]
  2522. #[derive(Debug, Copy, Clone)]
  2523. pub struct bpf_cgroup_dev_ctx {
  2524. pub access_type: __u32,
  2525. pub major: __u32,
  2526. pub minor: __u32,
  2527. }
  2528. #[repr(C)]
  2529. #[derive(Debug)]
  2530. pub struct bpf_raw_tracepoint_args {
  2531. pub args: __IncompleteArrayField<__u64>,
  2532. }
  2533. pub const BPF_FIB_LOOKUP_DIRECT: _bindgen_ty_37 = 1;
  2534. pub const BPF_FIB_LOOKUP_OUTPUT: _bindgen_ty_37 = 2;
  2535. pub const BPF_FIB_LOOKUP_SKIP_NEIGH: _bindgen_ty_37 = 4;
  2536. pub const BPF_FIB_LOOKUP_TBID: _bindgen_ty_37 = 8;
  2537. pub const BPF_FIB_LOOKUP_SRC: _bindgen_ty_37 = 16;
  2538. pub type _bindgen_ty_37 = ::aya_ebpf_cty::c_uint;
  2539. pub const BPF_FIB_LKUP_RET_SUCCESS: _bindgen_ty_38 = 0;
  2540. pub const BPF_FIB_LKUP_RET_BLACKHOLE: _bindgen_ty_38 = 1;
  2541. pub const BPF_FIB_LKUP_RET_UNREACHABLE: _bindgen_ty_38 = 2;
  2542. pub const BPF_FIB_LKUP_RET_PROHIBIT: _bindgen_ty_38 = 3;
  2543. pub const BPF_FIB_LKUP_RET_NOT_FWDED: _bindgen_ty_38 = 4;
  2544. pub const BPF_FIB_LKUP_RET_FWD_DISABLED: _bindgen_ty_38 = 5;
  2545. pub const BPF_FIB_LKUP_RET_UNSUPP_LWT: _bindgen_ty_38 = 6;
  2546. pub const BPF_FIB_LKUP_RET_NO_NEIGH: _bindgen_ty_38 = 7;
  2547. pub const BPF_FIB_LKUP_RET_FRAG_NEEDED: _bindgen_ty_38 = 8;
  2548. pub const BPF_FIB_LKUP_RET_NO_SRC_ADDR: _bindgen_ty_38 = 9;
  2549. pub type _bindgen_ty_38 = ::aya_ebpf_cty::c_uint;
  2550. #[repr(C)]
  2551. #[derive(Copy, Clone)]
  2552. pub struct bpf_fib_lookup {
  2553. pub family: __u8,
  2554. pub l4_protocol: __u8,
  2555. pub sport: __be16,
  2556. pub dport: __be16,
  2557. pub __bindgen_anon_1: bpf_fib_lookup__bindgen_ty_1,
  2558. pub ifindex: __u32,
  2559. pub __bindgen_anon_2: bpf_fib_lookup__bindgen_ty_2,
  2560. pub __bindgen_anon_3: bpf_fib_lookup__bindgen_ty_3,
  2561. pub __bindgen_anon_4: bpf_fib_lookup__bindgen_ty_4,
  2562. pub __bindgen_anon_5: bpf_fib_lookup__bindgen_ty_5,
  2563. pub smac: [__u8; 6usize],
  2564. pub dmac: [__u8; 6usize],
  2565. }
  2566. #[repr(C)]
  2567. #[derive(Copy, Clone)]
  2568. pub union bpf_fib_lookup__bindgen_ty_1 {
  2569. pub tot_len: __u16,
  2570. pub mtu_result: __u16,
  2571. }
  2572. #[repr(C)]
  2573. #[derive(Copy, Clone)]
  2574. pub union bpf_fib_lookup__bindgen_ty_2 {
  2575. pub tos: __u8,
  2576. pub flowinfo: __be32,
  2577. pub rt_metric: __u32,
  2578. }
  2579. #[repr(C)]
  2580. #[derive(Copy, Clone)]
  2581. pub union bpf_fib_lookup__bindgen_ty_3 {
  2582. pub ipv4_src: __be32,
  2583. pub ipv6_src: [__u32; 4usize],
  2584. }
  2585. #[repr(C)]
  2586. #[derive(Copy, Clone)]
  2587. pub union bpf_fib_lookup__bindgen_ty_4 {
  2588. pub ipv4_dst: __be32,
  2589. pub ipv6_dst: [__u32; 4usize],
  2590. }
  2591. #[repr(C)]
  2592. #[derive(Copy, Clone)]
  2593. pub union bpf_fib_lookup__bindgen_ty_5 {
  2594. pub __bindgen_anon_1: bpf_fib_lookup__bindgen_ty_5__bindgen_ty_1,
  2595. pub tbid: __u32,
  2596. }
  2597. #[repr(C)]
  2598. #[derive(Debug, Copy, Clone)]
  2599. pub struct bpf_fib_lookup__bindgen_ty_5__bindgen_ty_1 {
  2600. pub h_vlan_proto: __be16,
  2601. pub h_vlan_TCI: __be16,
  2602. }
  2603. #[repr(C)]
  2604. #[derive(Copy, Clone)]
  2605. pub struct bpf_redir_neigh {
  2606. pub nh_family: __u32,
  2607. pub __bindgen_anon_1: bpf_redir_neigh__bindgen_ty_1,
  2608. }
  2609. #[repr(C)]
  2610. #[derive(Copy, Clone)]
  2611. pub union bpf_redir_neigh__bindgen_ty_1 {
  2612. pub ipv4_nh: __be32,
  2613. pub ipv6_nh: [__u32; 4usize],
  2614. }
  2615. pub mod bpf_check_mtu_flags {
  2616. pub type Type = ::aya_ebpf_cty::c_uint;
  2617. pub const BPF_MTU_CHK_SEGS: Type = 1;
  2618. }
  2619. pub mod bpf_check_mtu_ret {
  2620. pub type Type = ::aya_ebpf_cty::c_uint;
  2621. pub const BPF_MTU_CHK_RET_SUCCESS: Type = 0;
  2622. pub const BPF_MTU_CHK_RET_FRAG_NEEDED: Type = 1;
  2623. pub const BPF_MTU_CHK_RET_SEGS_TOOBIG: Type = 2;
  2624. }
  2625. pub mod bpf_task_fd_type {
  2626. pub type Type = ::aya_ebpf_cty::c_uint;
  2627. pub const BPF_FD_TYPE_RAW_TRACEPOINT: Type = 0;
  2628. pub const BPF_FD_TYPE_TRACEPOINT: Type = 1;
  2629. pub const BPF_FD_TYPE_KPROBE: Type = 2;
  2630. pub const BPF_FD_TYPE_KRETPROBE: Type = 3;
  2631. pub const BPF_FD_TYPE_UPROBE: Type = 4;
  2632. pub const BPF_FD_TYPE_URETPROBE: Type = 5;
  2633. }
  2634. pub const BPF_FLOW_DISSECTOR_F_PARSE_1ST_FRAG: _bindgen_ty_39 = 1;
  2635. pub const BPF_FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL: _bindgen_ty_39 = 2;
  2636. pub const BPF_FLOW_DISSECTOR_F_STOP_AT_ENCAP: _bindgen_ty_39 = 4;
  2637. pub type _bindgen_ty_39 = ::aya_ebpf_cty::c_uint;
  2638. #[repr(C)]
  2639. #[derive(Copy, Clone)]
  2640. pub struct bpf_flow_keys {
  2641. pub nhoff: __u16,
  2642. pub thoff: __u16,
  2643. pub addr_proto: __u16,
  2644. pub is_frag: __u8,
  2645. pub is_first_frag: __u8,
  2646. pub is_encap: __u8,
  2647. pub ip_proto: __u8,
  2648. pub n_proto: __be16,
  2649. pub sport: __be16,
  2650. pub dport: __be16,
  2651. pub __bindgen_anon_1: bpf_flow_keys__bindgen_ty_1,
  2652. pub flags: __u32,
  2653. pub flow_label: __be32,
  2654. }
  2655. #[repr(C)]
  2656. #[derive(Copy, Clone)]
  2657. pub union bpf_flow_keys__bindgen_ty_1 {
  2658. pub __bindgen_anon_1: bpf_flow_keys__bindgen_ty_1__bindgen_ty_1,
  2659. pub __bindgen_anon_2: bpf_flow_keys__bindgen_ty_1__bindgen_ty_2,
  2660. }
  2661. #[repr(C)]
  2662. #[derive(Debug, Copy, Clone)]
  2663. pub struct bpf_flow_keys__bindgen_ty_1__bindgen_ty_1 {
  2664. pub ipv4_src: __be32,
  2665. pub ipv4_dst: __be32,
  2666. }
  2667. #[repr(C)]
  2668. #[derive(Debug, Copy, Clone)]
  2669. pub struct bpf_flow_keys__bindgen_ty_1__bindgen_ty_2 {
  2670. pub ipv6_src: [__u32; 4usize],
  2671. pub ipv6_dst: [__u32; 4usize],
  2672. }
  2673. #[repr(C)]
  2674. #[derive(Debug, Copy, Clone)]
  2675. pub struct bpf_func_info {
  2676. pub insn_off: __u32,
  2677. pub type_id: __u32,
  2678. }
  2679. #[repr(C)]
  2680. #[derive(Debug, Copy, Clone)]
  2681. pub struct bpf_line_info {
  2682. pub insn_off: __u32,
  2683. pub file_name_off: __u32,
  2684. pub line_off: __u32,
  2685. pub line_col: __u32,
  2686. }
  2687. #[repr(C)]
  2688. #[derive(Debug, Copy, Clone)]
  2689. pub struct bpf_spin_lock {
  2690. pub val: __u32,
  2691. }
  2692. #[repr(C)]
  2693. #[derive(Debug, Copy, Clone)]
  2694. pub struct bpf_timer {
  2695. pub __opaque: [__u64; 2usize],
  2696. }
  2697. #[repr(C)]
  2698. #[derive(Debug, Copy, Clone)]
  2699. pub struct bpf_dynptr {
  2700. pub __opaque: [__u64; 2usize],
  2701. }
  2702. #[repr(C)]
  2703. #[derive(Debug, Copy, Clone)]
  2704. pub struct bpf_list_head {
  2705. pub __opaque: [__u64; 2usize],
  2706. }
  2707. #[repr(C)]
  2708. #[derive(Debug, Copy, Clone)]
  2709. pub struct bpf_list_node {
  2710. pub __opaque: [__u64; 3usize],
  2711. }
  2712. #[repr(C)]
  2713. #[derive(Debug, Copy, Clone)]
  2714. pub struct bpf_rb_root {
  2715. pub __opaque: [__u64; 2usize],
  2716. }
  2717. #[repr(C)]
  2718. #[derive(Debug, Copy, Clone)]
  2719. pub struct bpf_rb_node {
  2720. pub __opaque: [__u64; 4usize],
  2721. }
  2722. #[repr(C)]
  2723. #[derive(Debug, Copy, Clone)]
  2724. pub struct bpf_refcount {
  2725. pub __opaque: [__u32; 1usize],
  2726. }
  2727. #[repr(C)]
  2728. #[derive(Debug, Copy, Clone)]
  2729. pub struct bpf_sysctl {
  2730. pub write: __u32,
  2731. pub file_pos: __u32,
  2732. }
  2733. #[repr(C)]
  2734. #[derive(Copy, Clone)]
  2735. pub struct bpf_sockopt {
  2736. pub __bindgen_anon_1: bpf_sockopt__bindgen_ty_1,
  2737. pub __bindgen_anon_2: bpf_sockopt__bindgen_ty_2,
  2738. pub __bindgen_anon_3: bpf_sockopt__bindgen_ty_3,
  2739. pub level: __s32,
  2740. pub optname: __s32,
  2741. pub optlen: __s32,
  2742. pub retval: __s32,
  2743. }
  2744. #[repr(C)]
  2745. #[derive(Copy, Clone)]
  2746. pub union bpf_sockopt__bindgen_ty_1 {
  2747. pub sk: *mut bpf_sock,
  2748. pub _bitfield_align_1: [u8; 0],
  2749. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  2750. }
  2751. impl bpf_sockopt__bindgen_ty_1 {
  2752. #[inline]
  2753. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  2754. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  2755. __bindgen_bitfield_unit
  2756. }
  2757. }
  2758. #[repr(C)]
  2759. #[derive(Copy, Clone)]
  2760. pub union bpf_sockopt__bindgen_ty_2 {
  2761. pub optval: *mut ::aya_ebpf_cty::c_void,
  2762. pub _bitfield_align_1: [u8; 0],
  2763. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  2764. }
  2765. impl bpf_sockopt__bindgen_ty_2 {
  2766. #[inline]
  2767. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  2768. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  2769. __bindgen_bitfield_unit
  2770. }
  2771. }
  2772. #[repr(C)]
  2773. #[derive(Copy, Clone)]
  2774. pub union bpf_sockopt__bindgen_ty_3 {
  2775. pub optval_end: *mut ::aya_ebpf_cty::c_void,
  2776. pub _bitfield_align_1: [u8; 0],
  2777. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  2778. }
  2779. impl bpf_sockopt__bindgen_ty_3 {
  2780. #[inline]
  2781. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  2782. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  2783. __bindgen_bitfield_unit
  2784. }
  2785. }
  2786. #[repr(C)]
  2787. #[derive(Debug, Copy, Clone)]
  2788. pub struct bpf_pidns_info {
  2789. pub pid: __u32,
  2790. pub tgid: __u32,
  2791. }
  2792. #[repr(C)]
  2793. #[derive(Copy, Clone)]
  2794. pub struct bpf_sk_lookup {
  2795. pub __bindgen_anon_1: bpf_sk_lookup__bindgen_ty_1,
  2796. pub family: __u32,
  2797. pub protocol: __u32,
  2798. pub remote_ip4: __u32,
  2799. pub remote_ip6: [__u32; 4usize],
  2800. pub remote_port: __be16,
  2801. pub _bitfield_align_1: [u8; 0],
  2802. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2usize]>,
  2803. pub local_ip4: __u32,
  2804. pub local_ip6: [__u32; 4usize],
  2805. pub local_port: __u32,
  2806. pub ingress_ifindex: __u32,
  2807. }
  2808. #[repr(C)]
  2809. #[derive(Copy, Clone)]
  2810. pub union bpf_sk_lookup__bindgen_ty_1 {
  2811. pub __bindgen_anon_1: bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1,
  2812. pub cookie: __u64,
  2813. }
  2814. #[repr(C)]
  2815. #[derive(Copy, Clone)]
  2816. pub union bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 {
  2817. pub sk: *mut bpf_sock,
  2818. pub _bitfield_align_1: [u8; 0],
  2819. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  2820. }
  2821. impl bpf_sk_lookup__bindgen_ty_1__bindgen_ty_1 {
  2822. #[inline]
  2823. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 8usize]> {
  2824. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  2825. __bindgen_bitfield_unit
  2826. }
  2827. }
  2828. impl bpf_sk_lookup {
  2829. #[inline]
  2830. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 2usize]> {
  2831. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 2usize]> = Default::default();
  2832. __bindgen_bitfield_unit
  2833. }
  2834. }
  2835. #[repr(C)]
  2836. #[derive(Debug, Copy, Clone)]
  2837. pub struct btf_ptr {
  2838. pub ptr: *mut ::aya_ebpf_cty::c_void,
  2839. pub type_id: __u32,
  2840. pub flags: __u32,
  2841. }
  2842. pub mod bpf_core_relo_kind {
  2843. pub type Type = ::aya_ebpf_cty::c_uint;
  2844. pub const BPF_CORE_FIELD_BYTE_OFFSET: Type = 0;
  2845. pub const BPF_CORE_FIELD_BYTE_SIZE: Type = 1;
  2846. pub const BPF_CORE_FIELD_EXISTS: Type = 2;
  2847. pub const BPF_CORE_FIELD_SIGNED: Type = 3;
  2848. pub const BPF_CORE_FIELD_LSHIFT_U64: Type = 4;
  2849. pub const BPF_CORE_FIELD_RSHIFT_U64: Type = 5;
  2850. pub const BPF_CORE_TYPE_ID_LOCAL: Type = 6;
  2851. pub const BPF_CORE_TYPE_ID_TARGET: Type = 7;
  2852. pub const BPF_CORE_TYPE_EXISTS: Type = 8;
  2853. pub const BPF_CORE_TYPE_SIZE: Type = 9;
  2854. pub const BPF_CORE_ENUMVAL_EXISTS: Type = 10;
  2855. pub const BPF_CORE_ENUMVAL_VALUE: Type = 11;
  2856. pub const BPF_CORE_TYPE_MATCHES: Type = 12;
  2857. }
  2858. #[repr(C)]
  2859. #[derive(Debug, Copy, Clone)]
  2860. pub struct bpf_core_relo {
  2861. pub insn_off: __u32,
  2862. pub type_id: __u32,
  2863. pub access_str_off: __u32,
  2864. pub kind: bpf_core_relo_kind::Type,
  2865. }
  2866. pub const BPF_F_TIMER_ABS: _bindgen_ty_41 = 1;
  2867. pub const BPF_F_TIMER_CPU_PIN: _bindgen_ty_41 = 2;
  2868. pub type _bindgen_ty_41 = ::aya_ebpf_cty::c_uint;
  2869. #[repr(C)]
  2870. #[derive(Debug, Copy, Clone)]
  2871. pub struct bpf_iter_num {
  2872. pub __opaque: [__u64; 1usize],
  2873. }
  2874. #[repr(C)]
  2875. #[derive(Debug, Copy, Clone)]
  2876. pub struct user_regs_struct {
  2877. pub pc: ::aya_ebpf_cty::c_ulong,
  2878. pub ra: ::aya_ebpf_cty::c_ulong,
  2879. pub sp: ::aya_ebpf_cty::c_ulong,
  2880. pub gp: ::aya_ebpf_cty::c_ulong,
  2881. pub tp: ::aya_ebpf_cty::c_ulong,
  2882. pub t0: ::aya_ebpf_cty::c_ulong,
  2883. pub t1: ::aya_ebpf_cty::c_ulong,
  2884. pub t2: ::aya_ebpf_cty::c_ulong,
  2885. pub s0: ::aya_ebpf_cty::c_ulong,
  2886. pub s1: ::aya_ebpf_cty::c_ulong,
  2887. pub a0: ::aya_ebpf_cty::c_ulong,
  2888. pub a1: ::aya_ebpf_cty::c_ulong,
  2889. pub a2: ::aya_ebpf_cty::c_ulong,
  2890. pub a3: ::aya_ebpf_cty::c_ulong,
  2891. pub a4: ::aya_ebpf_cty::c_ulong,
  2892. pub a5: ::aya_ebpf_cty::c_ulong,
  2893. pub a6: ::aya_ebpf_cty::c_ulong,
  2894. pub a7: ::aya_ebpf_cty::c_ulong,
  2895. pub s2: ::aya_ebpf_cty::c_ulong,
  2896. pub s3: ::aya_ebpf_cty::c_ulong,
  2897. pub s4: ::aya_ebpf_cty::c_ulong,
  2898. pub s5: ::aya_ebpf_cty::c_ulong,
  2899. pub s6: ::aya_ebpf_cty::c_ulong,
  2900. pub s7: ::aya_ebpf_cty::c_ulong,
  2901. pub s8: ::aya_ebpf_cty::c_ulong,
  2902. pub s9: ::aya_ebpf_cty::c_ulong,
  2903. pub s10: ::aya_ebpf_cty::c_ulong,
  2904. pub s11: ::aya_ebpf_cty::c_ulong,
  2905. pub t3: ::aya_ebpf_cty::c_ulong,
  2906. pub t4: ::aya_ebpf_cty::c_ulong,
  2907. pub t5: ::aya_ebpf_cty::c_ulong,
  2908. pub t6: ::aya_ebpf_cty::c_ulong,
  2909. }
  2910. pub type sa_family_t = ::aya_ebpf_cty::c_ushort;
  2911. #[repr(C)]
  2912. #[derive(Debug, Copy, Clone)]
  2913. pub struct sockaddr {
  2914. pub sa_family: sa_family_t,
  2915. pub sa_data: [::aya_ebpf_cty::c_char; 14usize],
  2916. }