linux_bindings_armv7.rs 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164
  1. /* automatically generated by rust-bindgen 0.71.1 */
  2. #[repr(C)]
  3. #[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
  4. pub struct __BindgenBitfieldUnit<Storage> {
  5. storage: Storage,
  6. }
  7. impl<Storage> __BindgenBitfieldUnit<Storage> {
  8. #[inline]
  9. pub const fn new(storage: Storage) -> Self {
  10. Self { storage }
  11. }
  12. }
  13. impl<Storage> __BindgenBitfieldUnit<Storage>
  14. where
  15. Storage: AsRef<[u8]> + AsMut<[u8]>,
  16. {
  17. #[inline]
  18. fn extract_bit(byte: u8, index: usize) -> bool {
  19. let bit_index = if cfg!(target_endian = "big") {
  20. 7 - (index % 8)
  21. } else {
  22. index % 8
  23. };
  24. let mask = 1 << bit_index;
  25. byte & mask == mask
  26. }
  27. #[inline]
  28. pub fn get_bit(&self, index: usize) -> bool {
  29. debug_assert!(index / 8 < self.storage.as_ref().len());
  30. let byte_index = index / 8;
  31. let byte = self.storage.as_ref()[byte_index];
  32. Self::extract_bit(byte, index)
  33. }
  34. #[inline]
  35. pub unsafe fn raw_get_bit(this: *const Self, index: usize) -> bool {
  36. debug_assert!(index / 8 < core::mem::size_of::<Storage>());
  37. let byte_index = index / 8;
  38. let byte = *(core::ptr::addr_of!((*this).storage) as *const u8).offset(byte_index as isize);
  39. Self::extract_bit(byte, index)
  40. }
  41. #[inline]
  42. fn change_bit(byte: u8, index: usize, val: bool) -> u8 {
  43. let bit_index = if cfg!(target_endian = "big") {
  44. 7 - (index % 8)
  45. } else {
  46. index % 8
  47. };
  48. let mask = 1 << bit_index;
  49. if val { byte | mask } else { byte & !mask }
  50. }
  51. #[inline]
  52. pub fn set_bit(&mut self, index: usize, val: bool) {
  53. debug_assert!(index / 8 < self.storage.as_ref().len());
  54. let byte_index = index / 8;
  55. let byte = &mut self.storage.as_mut()[byte_index];
  56. *byte = Self::change_bit(*byte, index, val);
  57. }
  58. #[inline]
  59. pub unsafe fn raw_set_bit(this: *mut Self, index: usize, val: bool) {
  60. debug_assert!(index / 8 < core::mem::size_of::<Storage>());
  61. let byte_index = index / 8;
  62. let byte =
  63. (core::ptr::addr_of_mut!((*this).storage) as *mut u8).offset(byte_index as isize);
  64. *byte = Self::change_bit(*byte, index, val);
  65. }
  66. #[inline]
  67. pub fn get(&self, bit_offset: usize, bit_width: u8) -> u64 {
  68. debug_assert!(bit_width <= 64);
  69. debug_assert!(bit_offset / 8 < self.storage.as_ref().len());
  70. debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len());
  71. let mut val = 0;
  72. for i in 0..(bit_width as usize) {
  73. if self.get_bit(i + bit_offset) {
  74. let index = if cfg!(target_endian = "big") {
  75. bit_width as usize - 1 - i
  76. } else {
  77. i
  78. };
  79. val |= 1 << index;
  80. }
  81. }
  82. val
  83. }
  84. #[inline]
  85. pub unsafe fn raw_get(this: *const Self, bit_offset: usize, bit_width: u8) -> u64 {
  86. debug_assert!(bit_width <= 64);
  87. debug_assert!(bit_offset / 8 < core::mem::size_of::<Storage>());
  88. debug_assert!((bit_offset + (bit_width as usize)) / 8 <= core::mem::size_of::<Storage>());
  89. let mut val = 0;
  90. for i in 0..(bit_width as usize) {
  91. if Self::raw_get_bit(this, i + bit_offset) {
  92. let index = if cfg!(target_endian = "big") {
  93. bit_width as usize - 1 - i
  94. } else {
  95. i
  96. };
  97. val |= 1 << index;
  98. }
  99. }
  100. val
  101. }
  102. #[inline]
  103. pub fn set(&mut self, bit_offset: usize, bit_width: u8, val: u64) {
  104. debug_assert!(bit_width <= 64);
  105. debug_assert!(bit_offset / 8 < self.storage.as_ref().len());
  106. debug_assert!((bit_offset + (bit_width as usize)) / 8 <= self.storage.as_ref().len());
  107. for i in 0..(bit_width as usize) {
  108. let mask = 1 << i;
  109. let val_bit_is_set = val & mask == mask;
  110. let index = if cfg!(target_endian = "big") {
  111. bit_width as usize - 1 - i
  112. } else {
  113. i
  114. };
  115. self.set_bit(index + bit_offset, val_bit_is_set);
  116. }
  117. }
  118. #[inline]
  119. pub unsafe fn raw_set(this: *mut Self, bit_offset: usize, bit_width: u8, val: u64) {
  120. debug_assert!(bit_width <= 64);
  121. debug_assert!(bit_offset / 8 < core::mem::size_of::<Storage>());
  122. debug_assert!((bit_offset + (bit_width as usize)) / 8 <= core::mem::size_of::<Storage>());
  123. for i in 0..(bit_width as usize) {
  124. let mask = 1 << i;
  125. let val_bit_is_set = val & mask == mask;
  126. let index = if cfg!(target_endian = "big") {
  127. bit_width as usize - 1 - i
  128. } else {
  129. i
  130. };
  131. Self::raw_set_bit(this, index + bit_offset, val_bit_is_set);
  132. }
  133. }
  134. }
  135. #[repr(C)]
  136. #[derive(Default)]
  137. pub struct __IncompleteArrayField<T>(::core::marker::PhantomData<T>, [T; 0]);
  138. impl<T> __IncompleteArrayField<T> {
  139. #[inline]
  140. pub const fn new() -> Self {
  141. __IncompleteArrayField(::core::marker::PhantomData, [])
  142. }
  143. #[inline]
  144. pub fn as_ptr(&self) -> *const T {
  145. self as *const _ as *const T
  146. }
  147. #[inline]
  148. pub fn as_mut_ptr(&mut self) -> *mut T {
  149. self as *mut _ as *mut T
  150. }
  151. #[inline]
  152. pub unsafe fn as_slice(&self, len: usize) -> &[T] {
  153. ::core::slice::from_raw_parts(self.as_ptr(), len)
  154. }
  155. #[inline]
  156. pub unsafe fn as_mut_slice(&mut self, len: usize) -> &mut [T] {
  157. ::core::slice::from_raw_parts_mut(self.as_mut_ptr(), len)
  158. }
  159. }
  160. impl<T> ::core::fmt::Debug for __IncompleteArrayField<T> {
  161. fn fmt(&self, fmt: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
  162. fmt.write_str("__IncompleteArrayField")
  163. }
  164. }
  165. pub const BPF_LD: u32 = 0;
  166. pub const BPF_LDX: u32 = 1;
  167. pub const BPF_ST: u32 = 2;
  168. pub const BPF_STX: u32 = 3;
  169. pub const BPF_ALU: u32 = 4;
  170. pub const BPF_JMP: u32 = 5;
  171. pub const BPF_RET: u32 = 6;
  172. pub const BPF_MISC: u32 = 7;
  173. pub const BPF_W: u32 = 0;
  174. pub const BPF_H: u32 = 8;
  175. pub const BPF_B: u32 = 16;
  176. pub const BPF_IMM: u32 = 0;
  177. pub const BPF_ABS: u32 = 32;
  178. pub const BPF_IND: u32 = 64;
  179. pub const BPF_MEM: u32 = 96;
  180. pub const BPF_LEN: u32 = 128;
  181. pub const BPF_MSH: u32 = 160;
  182. pub const BPF_ADD: u32 = 0;
  183. pub const BPF_SUB: u32 = 16;
  184. pub const BPF_MUL: u32 = 32;
  185. pub const BPF_DIV: u32 = 48;
  186. pub const BPF_OR: u32 = 64;
  187. pub const BPF_AND: u32 = 80;
  188. pub const BPF_LSH: u32 = 96;
  189. pub const BPF_RSH: u32 = 112;
  190. pub const BPF_NEG: u32 = 128;
  191. pub const BPF_MOD: u32 = 144;
  192. pub const BPF_XOR: u32 = 160;
  193. pub const BPF_JA: u32 = 0;
  194. pub const BPF_JEQ: u32 = 16;
  195. pub const BPF_JGT: u32 = 32;
  196. pub const BPF_JGE: u32 = 48;
  197. pub const BPF_JSET: u32 = 64;
  198. pub const BPF_K: u32 = 0;
  199. pub const BPF_X: u32 = 8;
  200. pub const BPF_MAXINSNS: u32 = 4096;
  201. pub const BPF_JMP32: u32 = 6;
  202. pub const BPF_ALU64: u32 = 7;
  203. pub const BPF_DW: u32 = 24;
  204. pub const BPF_MEMSX: u32 = 128;
  205. pub const BPF_ATOMIC: u32 = 192;
  206. pub const BPF_XADD: u32 = 192;
  207. pub const BPF_MOV: u32 = 176;
  208. pub const BPF_ARSH: u32 = 192;
  209. pub const BPF_END: u32 = 208;
  210. pub const BPF_TO_LE: u32 = 0;
  211. pub const BPF_TO_BE: u32 = 8;
  212. pub const BPF_FROM_LE: u32 = 0;
  213. pub const BPF_FROM_BE: u32 = 8;
  214. pub const BPF_JNE: u32 = 80;
  215. pub const BPF_JLT: u32 = 160;
  216. pub const BPF_JLE: u32 = 176;
  217. pub const BPF_JSGT: u32 = 96;
  218. pub const BPF_JSGE: u32 = 112;
  219. pub const BPF_JSLT: u32 = 192;
  220. pub const BPF_JSLE: u32 = 208;
  221. pub const BPF_JCOND: u32 = 224;
  222. pub const BPF_CALL: u32 = 128;
  223. pub const BPF_EXIT: u32 = 144;
  224. pub const BPF_FETCH: u32 = 1;
  225. pub const BPF_XCHG: u32 = 225;
  226. pub const BPF_CMPXCHG: u32 = 241;
  227. pub const BPF_F_ALLOW_OVERRIDE: u32 = 1;
  228. pub const BPF_F_ALLOW_MULTI: u32 = 2;
  229. pub const BPF_F_REPLACE: u32 = 4;
  230. pub const BPF_F_BEFORE: u32 = 8;
  231. pub const BPF_F_AFTER: u32 = 16;
  232. pub const BPF_F_ID: u32 = 32;
  233. pub const BPF_F_STRICT_ALIGNMENT: u32 = 1;
  234. pub const BPF_F_ANY_ALIGNMENT: u32 = 2;
  235. pub const BPF_F_TEST_RND_HI32: u32 = 4;
  236. pub const BPF_F_TEST_STATE_FREQ: u32 = 8;
  237. pub const BPF_F_SLEEPABLE: u32 = 16;
  238. pub const BPF_F_XDP_HAS_FRAGS: u32 = 32;
  239. pub const BPF_F_XDP_DEV_BOUND_ONLY: u32 = 64;
  240. pub const BPF_F_TEST_REG_INVARIANTS: u32 = 128;
  241. pub const BPF_F_NETFILTER_IP_DEFRAG: u32 = 1;
  242. pub const BPF_PSEUDO_MAP_FD: u32 = 1;
  243. pub const BPF_PSEUDO_MAP_IDX: u32 = 5;
  244. pub const BPF_PSEUDO_MAP_VALUE: u32 = 2;
  245. pub const BPF_PSEUDO_MAP_IDX_VALUE: u32 = 6;
  246. pub const BPF_PSEUDO_BTF_ID: u32 = 3;
  247. pub const BPF_PSEUDO_FUNC: u32 = 4;
  248. pub const BPF_PSEUDO_CALL: u32 = 1;
  249. pub const BPF_PSEUDO_KFUNC_CALL: u32 = 2;
  250. pub const BPF_F_QUERY_EFFECTIVE: u32 = 1;
  251. pub const BPF_F_TEST_RUN_ON_CPU: u32 = 1;
  252. pub const BPF_F_TEST_XDP_LIVE_FRAMES: u32 = 2;
  253. pub const BPF_BUILD_ID_SIZE: u32 = 20;
  254. pub const BPF_OBJ_NAME_LEN: u32 = 16;
  255. pub const BPF_TAG_SIZE: u32 = 8;
  256. pub const BTF_INT_SIGNED: u32 = 1;
  257. pub const BTF_INT_CHAR: u32 = 2;
  258. pub const BTF_INT_BOOL: u32 = 4;
  259. pub const NLMSG_ALIGNTO: u32 = 4;
  260. pub const XDP_FLAGS_UPDATE_IF_NOEXIST: u32 = 1;
  261. pub const XDP_FLAGS_SKB_MODE: u32 = 2;
  262. pub const XDP_FLAGS_DRV_MODE: u32 = 4;
  263. pub const XDP_FLAGS_HW_MODE: u32 = 8;
  264. pub const XDP_FLAGS_REPLACE: u32 = 16;
  265. pub const XDP_FLAGS_MODES: u32 = 14;
  266. pub const XDP_FLAGS_MASK: u32 = 31;
  267. pub const PERF_EVENT_IOC_ENABLE: u32 = 9216;
  268. pub const PERF_EVENT_IOC_DISABLE: u32 = 9217;
  269. pub const PERF_EVENT_IOC_REFRESH: u32 = 9218;
  270. pub const PERF_EVENT_IOC_RESET: u32 = 9219;
  271. pub const PERF_EVENT_IOC_PERIOD: u32 = 1074275332;
  272. pub const PERF_EVENT_IOC_SET_OUTPUT: u32 = 9221;
  273. pub const PERF_EVENT_IOC_SET_FILTER: u32 = 1074013190;
  274. pub const PERF_EVENT_IOC_ID: u32 = 2147755015;
  275. pub const PERF_EVENT_IOC_SET_BPF: u32 = 1074013192;
  276. pub const PERF_EVENT_IOC_PAUSE_OUTPUT: u32 = 1074013193;
  277. pub const PERF_EVENT_IOC_QUERY_BPF: u32 = 3221496842;
  278. pub const PERF_EVENT_IOC_MODIFY_ATTRIBUTES: u32 = 1074013195;
  279. pub const PERF_MAX_STACK_DEPTH: u32 = 127;
  280. pub const PERF_MAX_CONTEXTS_PER_STACK: u32 = 8;
  281. pub const PERF_FLAG_FD_NO_GROUP: u32 = 1;
  282. pub const PERF_FLAG_FD_OUTPUT: u32 = 2;
  283. pub const PERF_FLAG_PID_CGROUP: u32 = 4;
  284. pub const PERF_FLAG_FD_CLOEXEC: u32 = 8;
  285. pub const TC_H_MAJ_MASK: u32 = 4294901760;
  286. pub const TC_H_MIN_MASK: u32 = 65535;
  287. pub const TC_H_UNSPEC: u32 = 0;
  288. pub const TC_H_ROOT: u32 = 4294967295;
  289. pub const TC_H_INGRESS: u32 = 4294967281;
  290. pub const TC_H_CLSACT: u32 = 4294967281;
  291. pub const TC_H_MIN_PRIORITY: u32 = 65504;
  292. pub const TC_H_MIN_INGRESS: u32 = 65522;
  293. pub const TC_H_MIN_EGRESS: u32 = 65523;
  294. pub const TCA_BPF_FLAG_ACT_DIRECT: u32 = 1;
  295. pub const SO_ATTACH_BPF: u32 = 50;
  296. pub const SO_DETACH_BPF: u32 = 27;
  297. pub type __u8 = ::core::ffi::c_uchar;
  298. pub type __s16 = ::core::ffi::c_short;
  299. pub type __u16 = ::core::ffi::c_ushort;
  300. pub type __s32 = ::core::ffi::c_int;
  301. pub type __u32 = ::core::ffi::c_uint;
  302. pub type __s64 = ::core::ffi::c_longlong;
  303. pub type __u64 = ::core::ffi::c_ulonglong;
  304. pub const BPF_REG_0: _bindgen_ty_1 = _bindgen_ty_1::BPF_REG_0;
  305. pub const BPF_REG_1: _bindgen_ty_1 = _bindgen_ty_1::BPF_REG_1;
  306. pub const BPF_REG_2: _bindgen_ty_1 = _bindgen_ty_1::BPF_REG_2;
  307. pub const BPF_REG_3: _bindgen_ty_1 = _bindgen_ty_1::BPF_REG_3;
  308. pub const BPF_REG_4: _bindgen_ty_1 = _bindgen_ty_1::BPF_REG_4;
  309. pub const BPF_REG_5: _bindgen_ty_1 = _bindgen_ty_1::BPF_REG_5;
  310. pub const BPF_REG_6: _bindgen_ty_1 = _bindgen_ty_1::BPF_REG_6;
  311. pub const BPF_REG_7: _bindgen_ty_1 = _bindgen_ty_1::BPF_REG_7;
  312. pub const BPF_REG_8: _bindgen_ty_1 = _bindgen_ty_1::BPF_REG_8;
  313. pub const BPF_REG_9: _bindgen_ty_1 = _bindgen_ty_1::BPF_REG_9;
  314. pub const BPF_REG_10: _bindgen_ty_1 = _bindgen_ty_1::BPF_REG_10;
  315. pub const __MAX_BPF_REG: _bindgen_ty_1 = _bindgen_ty_1::__MAX_BPF_REG;
  316. #[repr(u32)]
  317. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  318. pub enum _bindgen_ty_1 {
  319. BPF_REG_0 = 0,
  320. BPF_REG_1 = 1,
  321. BPF_REG_2 = 2,
  322. BPF_REG_3 = 3,
  323. BPF_REG_4 = 4,
  324. BPF_REG_5 = 5,
  325. BPF_REG_6 = 6,
  326. BPF_REG_7 = 7,
  327. BPF_REG_8 = 8,
  328. BPF_REG_9 = 9,
  329. BPF_REG_10 = 10,
  330. __MAX_BPF_REG = 11,
  331. }
  332. #[repr(C)]
  333. #[derive(Debug, Copy, Clone)]
  334. pub struct bpf_insn {
  335. pub code: __u8,
  336. pub _bitfield_align_1: [u8; 0],
  337. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1usize]>,
  338. pub off: __s16,
  339. pub imm: __s32,
  340. }
  341. impl bpf_insn {
  342. #[inline]
  343. pub fn dst_reg(&self) -> __u8 {
  344. unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 4u8) as u8) }
  345. }
  346. #[inline]
  347. pub fn set_dst_reg(&mut self, val: __u8) {
  348. unsafe {
  349. let val: u8 = ::core::mem::transmute(val);
  350. self._bitfield_1.set(0usize, 4u8, val as u64)
  351. }
  352. }
  353. #[inline]
  354. pub unsafe fn dst_reg_raw(this: *const Self) -> __u8 {
  355. unsafe {
  356. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 1usize]>>::raw_get(
  357. ::core::ptr::addr_of!((*this)._bitfield_1),
  358. 0usize,
  359. 4u8,
  360. ) as u8)
  361. }
  362. }
  363. #[inline]
  364. pub unsafe fn set_dst_reg_raw(this: *mut Self, val: __u8) {
  365. unsafe {
  366. let val: u8 = ::core::mem::transmute(val);
  367. <__BindgenBitfieldUnit<[u8; 1usize]>>::raw_set(
  368. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  369. 0usize,
  370. 4u8,
  371. val as u64,
  372. )
  373. }
  374. }
  375. #[inline]
  376. pub fn src_reg(&self) -> __u8 {
  377. unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 4u8) as u8) }
  378. }
  379. #[inline]
  380. pub fn set_src_reg(&mut self, val: __u8) {
  381. unsafe {
  382. let val: u8 = ::core::mem::transmute(val);
  383. self._bitfield_1.set(4usize, 4u8, val as u64)
  384. }
  385. }
  386. #[inline]
  387. pub unsafe fn src_reg_raw(this: *const Self) -> __u8 {
  388. unsafe {
  389. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 1usize]>>::raw_get(
  390. ::core::ptr::addr_of!((*this)._bitfield_1),
  391. 4usize,
  392. 4u8,
  393. ) as u8)
  394. }
  395. }
  396. #[inline]
  397. pub unsafe fn set_src_reg_raw(this: *mut Self, val: __u8) {
  398. unsafe {
  399. let val: u8 = ::core::mem::transmute(val);
  400. <__BindgenBitfieldUnit<[u8; 1usize]>>::raw_set(
  401. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  402. 4usize,
  403. 4u8,
  404. val as u64,
  405. )
  406. }
  407. }
  408. #[inline]
  409. pub fn new_bitfield_1(dst_reg: __u8, src_reg: __u8) -> __BindgenBitfieldUnit<[u8; 1usize]> {
  410. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 1usize]> = Default::default();
  411. __bindgen_bitfield_unit.set(0usize, 4u8, {
  412. let dst_reg: u8 = unsafe { ::core::mem::transmute(dst_reg) };
  413. dst_reg as u64
  414. });
  415. __bindgen_bitfield_unit.set(4usize, 4u8, {
  416. let src_reg: u8 = unsafe { ::core::mem::transmute(src_reg) };
  417. src_reg as u64
  418. });
  419. __bindgen_bitfield_unit
  420. }
  421. }
  422. #[repr(C)]
  423. #[derive(Debug)]
  424. pub struct bpf_lpm_trie_key {
  425. pub prefixlen: __u32,
  426. pub data: __IncompleteArrayField<__u8>,
  427. }
  428. #[repr(u32)]
  429. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  430. pub enum bpf_cgroup_iter_order {
  431. BPF_CGROUP_ITER_ORDER_UNSPEC = 0,
  432. BPF_CGROUP_ITER_SELF_ONLY = 1,
  433. BPF_CGROUP_ITER_DESCENDANTS_PRE = 2,
  434. BPF_CGROUP_ITER_DESCENDANTS_POST = 3,
  435. BPF_CGROUP_ITER_ANCESTORS_UP = 4,
  436. }
  437. impl bpf_cmd {
  438. pub const BPF_PROG_RUN: bpf_cmd = bpf_cmd::BPF_PROG_TEST_RUN;
  439. }
  440. #[repr(u32)]
  441. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  442. pub enum bpf_cmd {
  443. BPF_MAP_CREATE = 0,
  444. BPF_MAP_LOOKUP_ELEM = 1,
  445. BPF_MAP_UPDATE_ELEM = 2,
  446. BPF_MAP_DELETE_ELEM = 3,
  447. BPF_MAP_GET_NEXT_KEY = 4,
  448. BPF_PROG_LOAD = 5,
  449. BPF_OBJ_PIN = 6,
  450. BPF_OBJ_GET = 7,
  451. BPF_PROG_ATTACH = 8,
  452. BPF_PROG_DETACH = 9,
  453. BPF_PROG_TEST_RUN = 10,
  454. BPF_PROG_GET_NEXT_ID = 11,
  455. BPF_MAP_GET_NEXT_ID = 12,
  456. BPF_PROG_GET_FD_BY_ID = 13,
  457. BPF_MAP_GET_FD_BY_ID = 14,
  458. BPF_OBJ_GET_INFO_BY_FD = 15,
  459. BPF_PROG_QUERY = 16,
  460. BPF_RAW_TRACEPOINT_OPEN = 17,
  461. BPF_BTF_LOAD = 18,
  462. BPF_BTF_GET_FD_BY_ID = 19,
  463. BPF_TASK_FD_QUERY = 20,
  464. BPF_MAP_LOOKUP_AND_DELETE_ELEM = 21,
  465. BPF_MAP_FREEZE = 22,
  466. BPF_BTF_GET_NEXT_ID = 23,
  467. BPF_MAP_LOOKUP_BATCH = 24,
  468. BPF_MAP_LOOKUP_AND_DELETE_BATCH = 25,
  469. BPF_MAP_UPDATE_BATCH = 26,
  470. BPF_MAP_DELETE_BATCH = 27,
  471. BPF_LINK_CREATE = 28,
  472. BPF_LINK_UPDATE = 29,
  473. BPF_LINK_GET_FD_BY_ID = 30,
  474. BPF_LINK_GET_NEXT_ID = 31,
  475. BPF_ENABLE_STATS = 32,
  476. BPF_ITER_CREATE = 33,
  477. BPF_LINK_DETACH = 34,
  478. BPF_PROG_BIND_MAP = 35,
  479. BPF_TOKEN_CREATE = 36,
  480. __MAX_BPF_CMD = 37,
  481. }
  482. impl bpf_map_type {
  483. pub const BPF_MAP_TYPE_CGROUP_STORAGE: bpf_map_type =
  484. bpf_map_type::BPF_MAP_TYPE_CGROUP_STORAGE_DEPRECATED;
  485. }
  486. impl bpf_map_type {
  487. pub const BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE: bpf_map_type =
  488. bpf_map_type::BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE_DEPRECATED;
  489. }
  490. #[repr(u32)]
  491. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  492. pub enum bpf_map_type {
  493. BPF_MAP_TYPE_UNSPEC = 0,
  494. BPF_MAP_TYPE_HASH = 1,
  495. BPF_MAP_TYPE_ARRAY = 2,
  496. BPF_MAP_TYPE_PROG_ARRAY = 3,
  497. BPF_MAP_TYPE_PERF_EVENT_ARRAY = 4,
  498. BPF_MAP_TYPE_PERCPU_HASH = 5,
  499. BPF_MAP_TYPE_PERCPU_ARRAY = 6,
  500. BPF_MAP_TYPE_STACK_TRACE = 7,
  501. BPF_MAP_TYPE_CGROUP_ARRAY = 8,
  502. BPF_MAP_TYPE_LRU_HASH = 9,
  503. BPF_MAP_TYPE_LRU_PERCPU_HASH = 10,
  504. BPF_MAP_TYPE_LPM_TRIE = 11,
  505. BPF_MAP_TYPE_ARRAY_OF_MAPS = 12,
  506. BPF_MAP_TYPE_HASH_OF_MAPS = 13,
  507. BPF_MAP_TYPE_DEVMAP = 14,
  508. BPF_MAP_TYPE_SOCKMAP = 15,
  509. BPF_MAP_TYPE_CPUMAP = 16,
  510. BPF_MAP_TYPE_XSKMAP = 17,
  511. BPF_MAP_TYPE_SOCKHASH = 18,
  512. BPF_MAP_TYPE_CGROUP_STORAGE_DEPRECATED = 19,
  513. BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 20,
  514. BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE_DEPRECATED = 21,
  515. BPF_MAP_TYPE_QUEUE = 22,
  516. BPF_MAP_TYPE_STACK = 23,
  517. BPF_MAP_TYPE_SK_STORAGE = 24,
  518. BPF_MAP_TYPE_DEVMAP_HASH = 25,
  519. BPF_MAP_TYPE_STRUCT_OPS = 26,
  520. BPF_MAP_TYPE_RINGBUF = 27,
  521. BPF_MAP_TYPE_INODE_STORAGE = 28,
  522. BPF_MAP_TYPE_TASK_STORAGE = 29,
  523. BPF_MAP_TYPE_BLOOM_FILTER = 30,
  524. BPF_MAP_TYPE_USER_RINGBUF = 31,
  525. BPF_MAP_TYPE_CGRP_STORAGE = 32,
  526. BPF_MAP_TYPE_ARENA = 33,
  527. __MAX_BPF_MAP_TYPE = 34,
  528. }
  529. #[repr(u32)]
  530. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  531. pub enum bpf_prog_type {
  532. BPF_PROG_TYPE_UNSPEC = 0,
  533. BPF_PROG_TYPE_SOCKET_FILTER = 1,
  534. BPF_PROG_TYPE_KPROBE = 2,
  535. BPF_PROG_TYPE_SCHED_CLS = 3,
  536. BPF_PROG_TYPE_SCHED_ACT = 4,
  537. BPF_PROG_TYPE_TRACEPOINT = 5,
  538. BPF_PROG_TYPE_XDP = 6,
  539. BPF_PROG_TYPE_PERF_EVENT = 7,
  540. BPF_PROG_TYPE_CGROUP_SKB = 8,
  541. BPF_PROG_TYPE_CGROUP_SOCK = 9,
  542. BPF_PROG_TYPE_LWT_IN = 10,
  543. BPF_PROG_TYPE_LWT_OUT = 11,
  544. BPF_PROG_TYPE_LWT_XMIT = 12,
  545. BPF_PROG_TYPE_SOCK_OPS = 13,
  546. BPF_PROG_TYPE_SK_SKB = 14,
  547. BPF_PROG_TYPE_CGROUP_DEVICE = 15,
  548. BPF_PROG_TYPE_SK_MSG = 16,
  549. BPF_PROG_TYPE_RAW_TRACEPOINT = 17,
  550. BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 18,
  551. BPF_PROG_TYPE_LWT_SEG6LOCAL = 19,
  552. BPF_PROG_TYPE_LIRC_MODE2 = 20,
  553. BPF_PROG_TYPE_SK_REUSEPORT = 21,
  554. BPF_PROG_TYPE_FLOW_DISSECTOR = 22,
  555. BPF_PROG_TYPE_CGROUP_SYSCTL = 23,
  556. BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 24,
  557. BPF_PROG_TYPE_CGROUP_SOCKOPT = 25,
  558. BPF_PROG_TYPE_TRACING = 26,
  559. BPF_PROG_TYPE_STRUCT_OPS = 27,
  560. BPF_PROG_TYPE_EXT = 28,
  561. BPF_PROG_TYPE_LSM = 29,
  562. BPF_PROG_TYPE_SK_LOOKUP = 30,
  563. BPF_PROG_TYPE_SYSCALL = 31,
  564. BPF_PROG_TYPE_NETFILTER = 32,
  565. __MAX_BPF_PROG_TYPE = 33,
  566. }
  567. #[repr(u32)]
  568. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  569. pub enum bpf_attach_type {
  570. BPF_CGROUP_INET_INGRESS = 0,
  571. BPF_CGROUP_INET_EGRESS = 1,
  572. BPF_CGROUP_INET_SOCK_CREATE = 2,
  573. BPF_CGROUP_SOCK_OPS = 3,
  574. BPF_SK_SKB_STREAM_PARSER = 4,
  575. BPF_SK_SKB_STREAM_VERDICT = 5,
  576. BPF_CGROUP_DEVICE = 6,
  577. BPF_SK_MSG_VERDICT = 7,
  578. BPF_CGROUP_INET4_BIND = 8,
  579. BPF_CGROUP_INET6_BIND = 9,
  580. BPF_CGROUP_INET4_CONNECT = 10,
  581. BPF_CGROUP_INET6_CONNECT = 11,
  582. BPF_CGROUP_INET4_POST_BIND = 12,
  583. BPF_CGROUP_INET6_POST_BIND = 13,
  584. BPF_CGROUP_UDP4_SENDMSG = 14,
  585. BPF_CGROUP_UDP6_SENDMSG = 15,
  586. BPF_LIRC_MODE2 = 16,
  587. BPF_FLOW_DISSECTOR = 17,
  588. BPF_CGROUP_SYSCTL = 18,
  589. BPF_CGROUP_UDP4_RECVMSG = 19,
  590. BPF_CGROUP_UDP6_RECVMSG = 20,
  591. BPF_CGROUP_GETSOCKOPT = 21,
  592. BPF_CGROUP_SETSOCKOPT = 22,
  593. BPF_TRACE_RAW_TP = 23,
  594. BPF_TRACE_FENTRY = 24,
  595. BPF_TRACE_FEXIT = 25,
  596. BPF_MODIFY_RETURN = 26,
  597. BPF_LSM_MAC = 27,
  598. BPF_TRACE_ITER = 28,
  599. BPF_CGROUP_INET4_GETPEERNAME = 29,
  600. BPF_CGROUP_INET6_GETPEERNAME = 30,
  601. BPF_CGROUP_INET4_GETSOCKNAME = 31,
  602. BPF_CGROUP_INET6_GETSOCKNAME = 32,
  603. BPF_XDP_DEVMAP = 33,
  604. BPF_CGROUP_INET_SOCK_RELEASE = 34,
  605. BPF_XDP_CPUMAP = 35,
  606. BPF_SK_LOOKUP = 36,
  607. BPF_XDP = 37,
  608. BPF_SK_SKB_VERDICT = 38,
  609. BPF_SK_REUSEPORT_SELECT = 39,
  610. BPF_SK_REUSEPORT_SELECT_OR_MIGRATE = 40,
  611. BPF_PERF_EVENT = 41,
  612. BPF_TRACE_KPROBE_MULTI = 42,
  613. BPF_LSM_CGROUP = 43,
  614. BPF_STRUCT_OPS = 44,
  615. BPF_NETFILTER = 45,
  616. BPF_TCX_INGRESS = 46,
  617. BPF_TCX_EGRESS = 47,
  618. BPF_TRACE_UPROBE_MULTI = 48,
  619. BPF_CGROUP_UNIX_CONNECT = 49,
  620. BPF_CGROUP_UNIX_SENDMSG = 50,
  621. BPF_CGROUP_UNIX_RECVMSG = 51,
  622. BPF_CGROUP_UNIX_GETPEERNAME = 52,
  623. BPF_CGROUP_UNIX_GETSOCKNAME = 53,
  624. BPF_NETKIT_PRIMARY = 54,
  625. BPF_NETKIT_PEER = 55,
  626. __MAX_BPF_ATTACH_TYPE = 56,
  627. }
  628. #[repr(u32)]
  629. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  630. pub enum bpf_link_type {
  631. BPF_LINK_TYPE_UNSPEC = 0,
  632. BPF_LINK_TYPE_RAW_TRACEPOINT = 1,
  633. BPF_LINK_TYPE_TRACING = 2,
  634. BPF_LINK_TYPE_CGROUP = 3,
  635. BPF_LINK_TYPE_ITER = 4,
  636. BPF_LINK_TYPE_NETNS = 5,
  637. BPF_LINK_TYPE_XDP = 6,
  638. BPF_LINK_TYPE_PERF_EVENT = 7,
  639. BPF_LINK_TYPE_KPROBE_MULTI = 8,
  640. BPF_LINK_TYPE_STRUCT_OPS = 9,
  641. BPF_LINK_TYPE_NETFILTER = 10,
  642. BPF_LINK_TYPE_TCX = 11,
  643. BPF_LINK_TYPE_UPROBE_MULTI = 12,
  644. BPF_LINK_TYPE_NETKIT = 13,
  645. __MAX_BPF_LINK_TYPE = 14,
  646. }
  647. #[repr(u32)]
  648. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  649. pub enum bpf_perf_event_type {
  650. BPF_PERF_EVENT_UNSPEC = 0,
  651. BPF_PERF_EVENT_UPROBE = 1,
  652. BPF_PERF_EVENT_URETPROBE = 2,
  653. BPF_PERF_EVENT_KPROBE = 3,
  654. BPF_PERF_EVENT_KRETPROBE = 4,
  655. BPF_PERF_EVENT_TRACEPOINT = 5,
  656. BPF_PERF_EVENT_EVENT = 6,
  657. }
  658. pub const BPF_F_KPROBE_MULTI_RETURN: _bindgen_ty_2 = 1;
  659. pub type _bindgen_ty_2 = ::core::ffi::c_uint;
  660. pub const BPF_F_UPROBE_MULTI_RETURN: _bindgen_ty_3 = 1;
  661. pub type _bindgen_ty_3 = ::core::ffi::c_uint;
  662. pub const BPF_ANY: _bindgen_ty_4 = 0;
  663. pub const BPF_NOEXIST: _bindgen_ty_4 = 1;
  664. pub const BPF_EXIST: _bindgen_ty_4 = 2;
  665. pub const BPF_F_LOCK: _bindgen_ty_4 = 4;
  666. pub type _bindgen_ty_4 = ::core::ffi::c_uint;
  667. pub const BPF_F_NO_PREALLOC: _bindgen_ty_5 = 1;
  668. pub const BPF_F_NO_COMMON_LRU: _bindgen_ty_5 = 2;
  669. pub const BPF_F_NUMA_NODE: _bindgen_ty_5 = 4;
  670. pub const BPF_F_RDONLY: _bindgen_ty_5 = 8;
  671. pub const BPF_F_WRONLY: _bindgen_ty_5 = 16;
  672. pub const BPF_F_STACK_BUILD_ID: _bindgen_ty_5 = 32;
  673. pub const BPF_F_ZERO_SEED: _bindgen_ty_5 = 64;
  674. pub const BPF_F_RDONLY_PROG: _bindgen_ty_5 = 128;
  675. pub const BPF_F_WRONLY_PROG: _bindgen_ty_5 = 256;
  676. pub const BPF_F_CLONE: _bindgen_ty_5 = 512;
  677. pub const BPF_F_MMAPABLE: _bindgen_ty_5 = 1024;
  678. pub const BPF_F_PRESERVE_ELEMS: _bindgen_ty_5 = 2048;
  679. pub const BPF_F_INNER_MAP: _bindgen_ty_5 = 4096;
  680. pub const BPF_F_LINK: _bindgen_ty_5 = 8192;
  681. pub const BPF_F_PATH_FD: _bindgen_ty_5 = 16384;
  682. pub const BPF_F_VTYPE_BTF_OBJ_FD: _bindgen_ty_5 = 32768;
  683. pub const BPF_F_TOKEN_FD: _bindgen_ty_5 = 65536;
  684. pub const BPF_F_SEGV_ON_FAULT: _bindgen_ty_5 = 131072;
  685. pub const BPF_F_NO_USER_CONV: _bindgen_ty_5 = 262144;
  686. pub type _bindgen_ty_5 = ::core::ffi::c_uint;
  687. #[repr(u32)]
  688. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  689. pub enum bpf_stats_type {
  690. BPF_STATS_RUN_TIME = 0,
  691. }
  692. #[repr(C)]
  693. #[derive(Copy, Clone)]
  694. pub union bpf_attr {
  695. pub __bindgen_anon_1: bpf_attr__bindgen_ty_1,
  696. pub __bindgen_anon_2: bpf_attr__bindgen_ty_2,
  697. pub batch: bpf_attr__bindgen_ty_3,
  698. pub __bindgen_anon_3: bpf_attr__bindgen_ty_4,
  699. pub __bindgen_anon_4: bpf_attr__bindgen_ty_5,
  700. pub __bindgen_anon_5: bpf_attr__bindgen_ty_6,
  701. pub test: bpf_attr__bindgen_ty_7,
  702. pub __bindgen_anon_6: bpf_attr__bindgen_ty_8,
  703. pub info: bpf_attr__bindgen_ty_9,
  704. pub query: bpf_attr__bindgen_ty_10,
  705. pub raw_tracepoint: bpf_attr__bindgen_ty_11,
  706. pub __bindgen_anon_7: bpf_attr__bindgen_ty_12,
  707. pub task_fd_query: bpf_attr__bindgen_ty_13,
  708. pub link_create: bpf_attr__bindgen_ty_14,
  709. pub link_update: bpf_attr__bindgen_ty_15,
  710. pub link_detach: bpf_attr__bindgen_ty_16,
  711. pub enable_stats: bpf_attr__bindgen_ty_17,
  712. pub iter_create: bpf_attr__bindgen_ty_18,
  713. pub prog_bind_map: bpf_attr__bindgen_ty_19,
  714. pub token_create: bpf_attr__bindgen_ty_20,
  715. }
  716. #[repr(C)]
  717. #[derive(Debug, Copy, Clone)]
  718. pub struct bpf_attr__bindgen_ty_1 {
  719. pub map_type: __u32,
  720. pub key_size: __u32,
  721. pub value_size: __u32,
  722. pub max_entries: __u32,
  723. pub map_flags: __u32,
  724. pub inner_map_fd: __u32,
  725. pub numa_node: __u32,
  726. pub map_name: [::core::ffi::c_char; 16usize],
  727. pub map_ifindex: __u32,
  728. pub btf_fd: __u32,
  729. pub btf_key_type_id: __u32,
  730. pub btf_value_type_id: __u32,
  731. pub btf_vmlinux_value_type_id: __u32,
  732. pub map_extra: __u64,
  733. pub value_type_btf_obj_fd: __s32,
  734. pub map_token_fd: __s32,
  735. }
  736. #[repr(C)]
  737. #[derive(Copy, Clone)]
  738. pub struct bpf_attr__bindgen_ty_2 {
  739. pub map_fd: __u32,
  740. pub key: __u64,
  741. pub __bindgen_anon_1: bpf_attr__bindgen_ty_2__bindgen_ty_1,
  742. pub flags: __u64,
  743. }
  744. #[repr(C)]
  745. #[derive(Copy, Clone)]
  746. pub union bpf_attr__bindgen_ty_2__bindgen_ty_1 {
  747. pub value: __u64,
  748. pub next_key: __u64,
  749. }
  750. #[repr(C)]
  751. #[derive(Debug, Copy, Clone)]
  752. pub struct bpf_attr__bindgen_ty_3 {
  753. pub in_batch: __u64,
  754. pub out_batch: __u64,
  755. pub keys: __u64,
  756. pub values: __u64,
  757. pub count: __u32,
  758. pub map_fd: __u32,
  759. pub elem_flags: __u64,
  760. pub flags: __u64,
  761. }
  762. #[repr(C)]
  763. #[derive(Copy, Clone)]
  764. pub struct bpf_attr__bindgen_ty_4 {
  765. pub prog_type: __u32,
  766. pub insn_cnt: __u32,
  767. pub insns: __u64,
  768. pub license: __u64,
  769. pub log_level: __u32,
  770. pub log_size: __u32,
  771. pub log_buf: __u64,
  772. pub kern_version: __u32,
  773. pub prog_flags: __u32,
  774. pub prog_name: [::core::ffi::c_char; 16usize],
  775. pub prog_ifindex: __u32,
  776. pub expected_attach_type: __u32,
  777. pub prog_btf_fd: __u32,
  778. pub func_info_rec_size: __u32,
  779. pub func_info: __u64,
  780. pub func_info_cnt: __u32,
  781. pub line_info_rec_size: __u32,
  782. pub line_info: __u64,
  783. pub line_info_cnt: __u32,
  784. pub attach_btf_id: __u32,
  785. pub __bindgen_anon_1: bpf_attr__bindgen_ty_4__bindgen_ty_1,
  786. pub core_relo_cnt: __u32,
  787. pub fd_array: __u64,
  788. pub core_relos: __u64,
  789. pub core_relo_rec_size: __u32,
  790. pub log_true_size: __u32,
  791. pub prog_token_fd: __s32,
  792. }
  793. #[repr(C)]
  794. #[derive(Copy, Clone)]
  795. pub union bpf_attr__bindgen_ty_4__bindgen_ty_1 {
  796. pub attach_prog_fd: __u32,
  797. pub attach_btf_obj_fd: __u32,
  798. }
  799. #[repr(C)]
  800. #[derive(Debug, Copy, Clone)]
  801. pub struct bpf_attr__bindgen_ty_5 {
  802. pub pathname: __u64,
  803. pub bpf_fd: __u32,
  804. pub file_flags: __u32,
  805. pub path_fd: __s32,
  806. }
  807. #[repr(C)]
  808. #[derive(Copy, Clone)]
  809. pub struct bpf_attr__bindgen_ty_6 {
  810. pub __bindgen_anon_1: bpf_attr__bindgen_ty_6__bindgen_ty_1,
  811. pub attach_bpf_fd: __u32,
  812. pub attach_type: __u32,
  813. pub attach_flags: __u32,
  814. pub replace_bpf_fd: __u32,
  815. pub __bindgen_anon_2: bpf_attr__bindgen_ty_6__bindgen_ty_2,
  816. pub expected_revision: __u64,
  817. }
  818. #[repr(C)]
  819. #[derive(Copy, Clone)]
  820. pub union bpf_attr__bindgen_ty_6__bindgen_ty_1 {
  821. pub target_fd: __u32,
  822. pub target_ifindex: __u32,
  823. }
  824. #[repr(C)]
  825. #[derive(Copy, Clone)]
  826. pub union bpf_attr__bindgen_ty_6__bindgen_ty_2 {
  827. pub relative_fd: __u32,
  828. pub relative_id: __u32,
  829. }
  830. #[repr(C)]
  831. #[derive(Debug, Copy, Clone)]
  832. pub struct bpf_attr__bindgen_ty_7 {
  833. pub prog_fd: __u32,
  834. pub retval: __u32,
  835. pub data_size_in: __u32,
  836. pub data_size_out: __u32,
  837. pub data_in: __u64,
  838. pub data_out: __u64,
  839. pub repeat: __u32,
  840. pub duration: __u32,
  841. pub ctx_size_in: __u32,
  842. pub ctx_size_out: __u32,
  843. pub ctx_in: __u64,
  844. pub ctx_out: __u64,
  845. pub flags: __u32,
  846. pub cpu: __u32,
  847. pub batch_size: __u32,
  848. }
  849. #[repr(C)]
  850. #[derive(Copy, Clone)]
  851. pub struct bpf_attr__bindgen_ty_8 {
  852. pub __bindgen_anon_1: bpf_attr__bindgen_ty_8__bindgen_ty_1,
  853. pub next_id: __u32,
  854. pub open_flags: __u32,
  855. }
  856. #[repr(C)]
  857. #[derive(Copy, Clone)]
  858. pub union bpf_attr__bindgen_ty_8__bindgen_ty_1 {
  859. pub start_id: __u32,
  860. pub prog_id: __u32,
  861. pub map_id: __u32,
  862. pub btf_id: __u32,
  863. pub link_id: __u32,
  864. }
  865. #[repr(C)]
  866. #[derive(Debug, Copy, Clone)]
  867. pub struct bpf_attr__bindgen_ty_9 {
  868. pub bpf_fd: __u32,
  869. pub info_len: __u32,
  870. pub info: __u64,
  871. }
  872. #[repr(C)]
  873. #[derive(Copy, Clone)]
  874. pub struct bpf_attr__bindgen_ty_10 {
  875. pub __bindgen_anon_1: bpf_attr__bindgen_ty_10__bindgen_ty_1,
  876. pub attach_type: __u32,
  877. pub query_flags: __u32,
  878. pub attach_flags: __u32,
  879. pub prog_ids: __u64,
  880. pub __bindgen_anon_2: bpf_attr__bindgen_ty_10__bindgen_ty_2,
  881. pub _bitfield_align_1: [u8; 0],
  882. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4usize]>,
  883. pub prog_attach_flags: __u64,
  884. pub link_ids: __u64,
  885. pub link_attach_flags: __u64,
  886. pub revision: __u64,
  887. }
  888. #[repr(C)]
  889. #[derive(Copy, Clone)]
  890. pub union bpf_attr__bindgen_ty_10__bindgen_ty_1 {
  891. pub target_fd: __u32,
  892. pub target_ifindex: __u32,
  893. }
  894. #[repr(C)]
  895. #[derive(Copy, Clone)]
  896. pub union bpf_attr__bindgen_ty_10__bindgen_ty_2 {
  897. pub prog_cnt: __u32,
  898. pub count: __u32,
  899. }
  900. impl bpf_attr__bindgen_ty_10 {
  901. #[inline]
  902. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 4usize]> {
  903. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 4usize]> = Default::default();
  904. __bindgen_bitfield_unit
  905. }
  906. }
  907. #[repr(C)]
  908. #[derive(Debug, Copy, Clone)]
  909. pub struct bpf_attr__bindgen_ty_11 {
  910. pub name: __u64,
  911. pub prog_fd: __u32,
  912. pub _bitfield_align_1: [u8; 0],
  913. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4usize]>,
  914. pub cookie: __u64,
  915. }
  916. impl bpf_attr__bindgen_ty_11 {
  917. #[inline]
  918. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 4usize]> {
  919. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 4usize]> = Default::default();
  920. __bindgen_bitfield_unit
  921. }
  922. }
  923. #[repr(C)]
  924. #[derive(Debug, Copy, Clone)]
  925. pub struct bpf_attr__bindgen_ty_12 {
  926. pub btf: __u64,
  927. pub btf_log_buf: __u64,
  928. pub btf_size: __u32,
  929. pub btf_log_size: __u32,
  930. pub btf_log_level: __u32,
  931. pub btf_log_true_size: __u32,
  932. pub btf_flags: __u32,
  933. pub btf_token_fd: __s32,
  934. }
  935. #[repr(C)]
  936. #[derive(Debug, Copy, Clone)]
  937. pub struct bpf_attr__bindgen_ty_13 {
  938. pub pid: __u32,
  939. pub fd: __u32,
  940. pub flags: __u32,
  941. pub buf_len: __u32,
  942. pub buf: __u64,
  943. pub prog_id: __u32,
  944. pub fd_type: __u32,
  945. pub probe_offset: __u64,
  946. pub probe_addr: __u64,
  947. }
  948. #[repr(C)]
  949. #[derive(Copy, Clone)]
  950. pub struct bpf_attr__bindgen_ty_14 {
  951. pub __bindgen_anon_1: bpf_attr__bindgen_ty_14__bindgen_ty_1,
  952. pub __bindgen_anon_2: bpf_attr__bindgen_ty_14__bindgen_ty_2,
  953. pub attach_type: __u32,
  954. pub flags: __u32,
  955. pub __bindgen_anon_3: bpf_attr__bindgen_ty_14__bindgen_ty_3,
  956. }
  957. #[repr(C)]
  958. #[derive(Copy, Clone)]
  959. pub union bpf_attr__bindgen_ty_14__bindgen_ty_1 {
  960. pub prog_fd: __u32,
  961. pub map_fd: __u32,
  962. }
  963. #[repr(C)]
  964. #[derive(Copy, Clone)]
  965. pub union bpf_attr__bindgen_ty_14__bindgen_ty_2 {
  966. pub target_fd: __u32,
  967. pub target_ifindex: __u32,
  968. }
  969. #[repr(C)]
  970. #[derive(Copy, Clone)]
  971. pub union bpf_attr__bindgen_ty_14__bindgen_ty_3 {
  972. pub target_btf_id: __u32,
  973. pub __bindgen_anon_1: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1,
  974. pub perf_event: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2,
  975. pub kprobe_multi: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3,
  976. pub tracing: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4,
  977. pub netfilter: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5,
  978. pub tcx: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6,
  979. pub uprobe_multi: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_7,
  980. pub netkit: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8,
  981. }
  982. #[repr(C)]
  983. #[derive(Debug, Copy, Clone)]
  984. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_1 {
  985. pub iter_info: __u64,
  986. pub iter_info_len: __u32,
  987. }
  988. #[repr(C)]
  989. #[derive(Debug, Copy, Clone)]
  990. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_2 {
  991. pub bpf_cookie: __u64,
  992. }
  993. #[repr(C)]
  994. #[derive(Debug, Copy, Clone)]
  995. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_3 {
  996. pub flags: __u32,
  997. pub cnt: __u32,
  998. pub syms: __u64,
  999. pub addrs: __u64,
  1000. pub cookies: __u64,
  1001. }
  1002. #[repr(C)]
  1003. #[derive(Debug, Copy, Clone)]
  1004. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_4 {
  1005. pub target_btf_id: __u32,
  1006. pub cookie: __u64,
  1007. }
  1008. #[repr(C)]
  1009. #[derive(Debug, Copy, Clone)]
  1010. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_5 {
  1011. pub pf: __u32,
  1012. pub hooknum: __u32,
  1013. pub priority: __s32,
  1014. pub flags: __u32,
  1015. }
  1016. #[repr(C)]
  1017. #[derive(Copy, Clone)]
  1018. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6 {
  1019. pub __bindgen_anon_1: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1,
  1020. pub expected_revision: __u64,
  1021. }
  1022. #[repr(C)]
  1023. #[derive(Copy, Clone)]
  1024. pub union bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_6__bindgen_ty_1 {
  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_14__bindgen_ty_3__bindgen_ty_7 {
  1031. pub path: __u64,
  1032. pub offsets: __u64,
  1033. pub ref_ctr_offsets: __u64,
  1034. pub cookies: __u64,
  1035. pub cnt: __u32,
  1036. pub flags: __u32,
  1037. pub pid: __u32,
  1038. }
  1039. #[repr(C)]
  1040. #[derive(Copy, Clone)]
  1041. pub struct bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8 {
  1042. pub __bindgen_anon_1: bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1,
  1043. pub expected_revision: __u64,
  1044. }
  1045. #[repr(C)]
  1046. #[derive(Copy, Clone)]
  1047. pub union bpf_attr__bindgen_ty_14__bindgen_ty_3__bindgen_ty_8__bindgen_ty_1 {
  1048. pub relative_fd: __u32,
  1049. pub relative_id: __u32,
  1050. }
  1051. #[repr(C)]
  1052. #[derive(Copy, Clone)]
  1053. pub struct bpf_attr__bindgen_ty_15 {
  1054. pub link_fd: __u32,
  1055. pub __bindgen_anon_1: bpf_attr__bindgen_ty_15__bindgen_ty_1,
  1056. pub flags: __u32,
  1057. pub __bindgen_anon_2: bpf_attr__bindgen_ty_15__bindgen_ty_2,
  1058. }
  1059. #[repr(C)]
  1060. #[derive(Copy, Clone)]
  1061. pub union bpf_attr__bindgen_ty_15__bindgen_ty_1 {
  1062. pub new_prog_fd: __u32,
  1063. pub new_map_fd: __u32,
  1064. }
  1065. #[repr(C)]
  1066. #[derive(Copy, Clone)]
  1067. pub union bpf_attr__bindgen_ty_15__bindgen_ty_2 {
  1068. pub old_prog_fd: __u32,
  1069. pub old_map_fd: __u32,
  1070. }
  1071. #[repr(C)]
  1072. #[derive(Debug, Copy, Clone)]
  1073. pub struct bpf_attr__bindgen_ty_16 {
  1074. pub link_fd: __u32,
  1075. }
  1076. #[repr(C)]
  1077. #[derive(Debug, Copy, Clone)]
  1078. pub struct bpf_attr__bindgen_ty_17 {
  1079. pub type_: __u32,
  1080. }
  1081. #[repr(C)]
  1082. #[derive(Debug, Copy, Clone)]
  1083. pub struct bpf_attr__bindgen_ty_18 {
  1084. pub link_fd: __u32,
  1085. pub flags: __u32,
  1086. }
  1087. #[repr(C)]
  1088. #[derive(Debug, Copy, Clone)]
  1089. pub struct bpf_attr__bindgen_ty_19 {
  1090. pub prog_fd: __u32,
  1091. pub map_fd: __u32,
  1092. pub flags: __u32,
  1093. }
  1094. #[repr(C)]
  1095. #[derive(Debug, Copy, Clone)]
  1096. pub struct bpf_attr__bindgen_ty_20 {
  1097. pub flags: __u32,
  1098. pub bpffs_fd: __u32,
  1099. }
  1100. #[repr(u32)]
  1101. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1102. pub enum bpf_func_id {
  1103. BPF_FUNC_unspec = 0,
  1104. BPF_FUNC_map_lookup_elem = 1,
  1105. BPF_FUNC_map_update_elem = 2,
  1106. BPF_FUNC_map_delete_elem = 3,
  1107. BPF_FUNC_probe_read = 4,
  1108. BPF_FUNC_ktime_get_ns = 5,
  1109. BPF_FUNC_trace_printk = 6,
  1110. BPF_FUNC_get_prandom_u32 = 7,
  1111. BPF_FUNC_get_smp_processor_id = 8,
  1112. BPF_FUNC_skb_store_bytes = 9,
  1113. BPF_FUNC_l3_csum_replace = 10,
  1114. BPF_FUNC_l4_csum_replace = 11,
  1115. BPF_FUNC_tail_call = 12,
  1116. BPF_FUNC_clone_redirect = 13,
  1117. BPF_FUNC_get_current_pid_tgid = 14,
  1118. BPF_FUNC_get_current_uid_gid = 15,
  1119. BPF_FUNC_get_current_comm = 16,
  1120. BPF_FUNC_get_cgroup_classid = 17,
  1121. BPF_FUNC_skb_vlan_push = 18,
  1122. BPF_FUNC_skb_vlan_pop = 19,
  1123. BPF_FUNC_skb_get_tunnel_key = 20,
  1124. BPF_FUNC_skb_set_tunnel_key = 21,
  1125. BPF_FUNC_perf_event_read = 22,
  1126. BPF_FUNC_redirect = 23,
  1127. BPF_FUNC_get_route_realm = 24,
  1128. BPF_FUNC_perf_event_output = 25,
  1129. BPF_FUNC_skb_load_bytes = 26,
  1130. BPF_FUNC_get_stackid = 27,
  1131. BPF_FUNC_csum_diff = 28,
  1132. BPF_FUNC_skb_get_tunnel_opt = 29,
  1133. BPF_FUNC_skb_set_tunnel_opt = 30,
  1134. BPF_FUNC_skb_change_proto = 31,
  1135. BPF_FUNC_skb_change_type = 32,
  1136. BPF_FUNC_skb_under_cgroup = 33,
  1137. BPF_FUNC_get_hash_recalc = 34,
  1138. BPF_FUNC_get_current_task = 35,
  1139. BPF_FUNC_probe_write_user = 36,
  1140. BPF_FUNC_current_task_under_cgroup = 37,
  1141. BPF_FUNC_skb_change_tail = 38,
  1142. BPF_FUNC_skb_pull_data = 39,
  1143. BPF_FUNC_csum_update = 40,
  1144. BPF_FUNC_set_hash_invalid = 41,
  1145. BPF_FUNC_get_numa_node_id = 42,
  1146. BPF_FUNC_skb_change_head = 43,
  1147. BPF_FUNC_xdp_adjust_head = 44,
  1148. BPF_FUNC_probe_read_str = 45,
  1149. BPF_FUNC_get_socket_cookie = 46,
  1150. BPF_FUNC_get_socket_uid = 47,
  1151. BPF_FUNC_set_hash = 48,
  1152. BPF_FUNC_setsockopt = 49,
  1153. BPF_FUNC_skb_adjust_room = 50,
  1154. BPF_FUNC_redirect_map = 51,
  1155. BPF_FUNC_sk_redirect_map = 52,
  1156. BPF_FUNC_sock_map_update = 53,
  1157. BPF_FUNC_xdp_adjust_meta = 54,
  1158. BPF_FUNC_perf_event_read_value = 55,
  1159. BPF_FUNC_perf_prog_read_value = 56,
  1160. BPF_FUNC_getsockopt = 57,
  1161. BPF_FUNC_override_return = 58,
  1162. BPF_FUNC_sock_ops_cb_flags_set = 59,
  1163. BPF_FUNC_msg_redirect_map = 60,
  1164. BPF_FUNC_msg_apply_bytes = 61,
  1165. BPF_FUNC_msg_cork_bytes = 62,
  1166. BPF_FUNC_msg_pull_data = 63,
  1167. BPF_FUNC_bind = 64,
  1168. BPF_FUNC_xdp_adjust_tail = 65,
  1169. BPF_FUNC_skb_get_xfrm_state = 66,
  1170. BPF_FUNC_get_stack = 67,
  1171. BPF_FUNC_skb_load_bytes_relative = 68,
  1172. BPF_FUNC_fib_lookup = 69,
  1173. BPF_FUNC_sock_hash_update = 70,
  1174. BPF_FUNC_msg_redirect_hash = 71,
  1175. BPF_FUNC_sk_redirect_hash = 72,
  1176. BPF_FUNC_lwt_push_encap = 73,
  1177. BPF_FUNC_lwt_seg6_store_bytes = 74,
  1178. BPF_FUNC_lwt_seg6_adjust_srh = 75,
  1179. BPF_FUNC_lwt_seg6_action = 76,
  1180. BPF_FUNC_rc_repeat = 77,
  1181. BPF_FUNC_rc_keydown = 78,
  1182. BPF_FUNC_skb_cgroup_id = 79,
  1183. BPF_FUNC_get_current_cgroup_id = 80,
  1184. BPF_FUNC_get_local_storage = 81,
  1185. BPF_FUNC_sk_select_reuseport = 82,
  1186. BPF_FUNC_skb_ancestor_cgroup_id = 83,
  1187. BPF_FUNC_sk_lookup_tcp = 84,
  1188. BPF_FUNC_sk_lookup_udp = 85,
  1189. BPF_FUNC_sk_release = 86,
  1190. BPF_FUNC_map_push_elem = 87,
  1191. BPF_FUNC_map_pop_elem = 88,
  1192. BPF_FUNC_map_peek_elem = 89,
  1193. BPF_FUNC_msg_push_data = 90,
  1194. BPF_FUNC_msg_pop_data = 91,
  1195. BPF_FUNC_rc_pointer_rel = 92,
  1196. BPF_FUNC_spin_lock = 93,
  1197. BPF_FUNC_spin_unlock = 94,
  1198. BPF_FUNC_sk_fullsock = 95,
  1199. BPF_FUNC_tcp_sock = 96,
  1200. BPF_FUNC_skb_ecn_set_ce = 97,
  1201. BPF_FUNC_get_listener_sock = 98,
  1202. BPF_FUNC_skc_lookup_tcp = 99,
  1203. BPF_FUNC_tcp_check_syncookie = 100,
  1204. BPF_FUNC_sysctl_get_name = 101,
  1205. BPF_FUNC_sysctl_get_current_value = 102,
  1206. BPF_FUNC_sysctl_get_new_value = 103,
  1207. BPF_FUNC_sysctl_set_new_value = 104,
  1208. BPF_FUNC_strtol = 105,
  1209. BPF_FUNC_strtoul = 106,
  1210. BPF_FUNC_sk_storage_get = 107,
  1211. BPF_FUNC_sk_storage_delete = 108,
  1212. BPF_FUNC_send_signal = 109,
  1213. BPF_FUNC_tcp_gen_syncookie = 110,
  1214. BPF_FUNC_skb_output = 111,
  1215. BPF_FUNC_probe_read_user = 112,
  1216. BPF_FUNC_probe_read_kernel = 113,
  1217. BPF_FUNC_probe_read_user_str = 114,
  1218. BPF_FUNC_probe_read_kernel_str = 115,
  1219. BPF_FUNC_tcp_send_ack = 116,
  1220. BPF_FUNC_send_signal_thread = 117,
  1221. BPF_FUNC_jiffies64 = 118,
  1222. BPF_FUNC_read_branch_records = 119,
  1223. BPF_FUNC_get_ns_current_pid_tgid = 120,
  1224. BPF_FUNC_xdp_output = 121,
  1225. BPF_FUNC_get_netns_cookie = 122,
  1226. BPF_FUNC_get_current_ancestor_cgroup_id = 123,
  1227. BPF_FUNC_sk_assign = 124,
  1228. BPF_FUNC_ktime_get_boot_ns = 125,
  1229. BPF_FUNC_seq_printf = 126,
  1230. BPF_FUNC_seq_write = 127,
  1231. BPF_FUNC_sk_cgroup_id = 128,
  1232. BPF_FUNC_sk_ancestor_cgroup_id = 129,
  1233. BPF_FUNC_ringbuf_output = 130,
  1234. BPF_FUNC_ringbuf_reserve = 131,
  1235. BPF_FUNC_ringbuf_submit = 132,
  1236. BPF_FUNC_ringbuf_discard = 133,
  1237. BPF_FUNC_ringbuf_query = 134,
  1238. BPF_FUNC_csum_level = 135,
  1239. BPF_FUNC_skc_to_tcp6_sock = 136,
  1240. BPF_FUNC_skc_to_tcp_sock = 137,
  1241. BPF_FUNC_skc_to_tcp_timewait_sock = 138,
  1242. BPF_FUNC_skc_to_tcp_request_sock = 139,
  1243. BPF_FUNC_skc_to_udp6_sock = 140,
  1244. BPF_FUNC_get_task_stack = 141,
  1245. BPF_FUNC_load_hdr_opt = 142,
  1246. BPF_FUNC_store_hdr_opt = 143,
  1247. BPF_FUNC_reserve_hdr_opt = 144,
  1248. BPF_FUNC_inode_storage_get = 145,
  1249. BPF_FUNC_inode_storage_delete = 146,
  1250. BPF_FUNC_d_path = 147,
  1251. BPF_FUNC_copy_from_user = 148,
  1252. BPF_FUNC_snprintf_btf = 149,
  1253. BPF_FUNC_seq_printf_btf = 150,
  1254. BPF_FUNC_skb_cgroup_classid = 151,
  1255. BPF_FUNC_redirect_neigh = 152,
  1256. BPF_FUNC_per_cpu_ptr = 153,
  1257. BPF_FUNC_this_cpu_ptr = 154,
  1258. BPF_FUNC_redirect_peer = 155,
  1259. BPF_FUNC_task_storage_get = 156,
  1260. BPF_FUNC_task_storage_delete = 157,
  1261. BPF_FUNC_get_current_task_btf = 158,
  1262. BPF_FUNC_bprm_opts_set = 159,
  1263. BPF_FUNC_ktime_get_coarse_ns = 160,
  1264. BPF_FUNC_ima_inode_hash = 161,
  1265. BPF_FUNC_sock_from_file = 162,
  1266. BPF_FUNC_check_mtu = 163,
  1267. BPF_FUNC_for_each_map_elem = 164,
  1268. BPF_FUNC_snprintf = 165,
  1269. BPF_FUNC_sys_bpf = 166,
  1270. BPF_FUNC_btf_find_by_name_kind = 167,
  1271. BPF_FUNC_sys_close = 168,
  1272. BPF_FUNC_timer_init = 169,
  1273. BPF_FUNC_timer_set_callback = 170,
  1274. BPF_FUNC_timer_start = 171,
  1275. BPF_FUNC_timer_cancel = 172,
  1276. BPF_FUNC_get_func_ip = 173,
  1277. BPF_FUNC_get_attach_cookie = 174,
  1278. BPF_FUNC_task_pt_regs = 175,
  1279. BPF_FUNC_get_branch_snapshot = 176,
  1280. BPF_FUNC_trace_vprintk = 177,
  1281. BPF_FUNC_skc_to_unix_sock = 178,
  1282. BPF_FUNC_kallsyms_lookup_name = 179,
  1283. BPF_FUNC_find_vma = 180,
  1284. BPF_FUNC_loop = 181,
  1285. BPF_FUNC_strncmp = 182,
  1286. BPF_FUNC_get_func_arg = 183,
  1287. BPF_FUNC_get_func_ret = 184,
  1288. BPF_FUNC_get_func_arg_cnt = 185,
  1289. BPF_FUNC_get_retval = 186,
  1290. BPF_FUNC_set_retval = 187,
  1291. BPF_FUNC_xdp_get_buff_len = 188,
  1292. BPF_FUNC_xdp_load_bytes = 189,
  1293. BPF_FUNC_xdp_store_bytes = 190,
  1294. BPF_FUNC_copy_from_user_task = 191,
  1295. BPF_FUNC_skb_set_tstamp = 192,
  1296. BPF_FUNC_ima_file_hash = 193,
  1297. BPF_FUNC_kptr_xchg = 194,
  1298. BPF_FUNC_map_lookup_percpu_elem = 195,
  1299. BPF_FUNC_skc_to_mptcp_sock = 196,
  1300. BPF_FUNC_dynptr_from_mem = 197,
  1301. BPF_FUNC_ringbuf_reserve_dynptr = 198,
  1302. BPF_FUNC_ringbuf_submit_dynptr = 199,
  1303. BPF_FUNC_ringbuf_discard_dynptr = 200,
  1304. BPF_FUNC_dynptr_read = 201,
  1305. BPF_FUNC_dynptr_write = 202,
  1306. BPF_FUNC_dynptr_data = 203,
  1307. BPF_FUNC_tcp_raw_gen_syncookie_ipv4 = 204,
  1308. BPF_FUNC_tcp_raw_gen_syncookie_ipv6 = 205,
  1309. BPF_FUNC_tcp_raw_check_syncookie_ipv4 = 206,
  1310. BPF_FUNC_tcp_raw_check_syncookie_ipv6 = 207,
  1311. BPF_FUNC_ktime_get_tai_ns = 208,
  1312. BPF_FUNC_user_ringbuf_drain = 209,
  1313. BPF_FUNC_cgrp_storage_get = 210,
  1314. BPF_FUNC_cgrp_storage_delete = 211,
  1315. __BPF_FUNC_MAX_ID = 212,
  1316. }
  1317. pub const BPF_F_RECOMPUTE_CSUM: _bindgen_ty_6 = 1;
  1318. pub const BPF_F_INVALIDATE_HASH: _bindgen_ty_6 = 2;
  1319. pub type _bindgen_ty_6 = ::core::ffi::c_uint;
  1320. pub const BPF_F_HDR_FIELD_MASK: _bindgen_ty_7 = 15;
  1321. pub type _bindgen_ty_7 = ::core::ffi::c_uint;
  1322. pub const BPF_F_PSEUDO_HDR: _bindgen_ty_8 = 16;
  1323. pub const BPF_F_MARK_MANGLED_0: _bindgen_ty_8 = 32;
  1324. pub const BPF_F_MARK_ENFORCE: _bindgen_ty_8 = 64;
  1325. pub type _bindgen_ty_8 = ::core::ffi::c_uint;
  1326. pub const BPF_F_INGRESS: _bindgen_ty_9 = 1;
  1327. pub type _bindgen_ty_9 = ::core::ffi::c_uint;
  1328. pub const BPF_F_TUNINFO_IPV6: _bindgen_ty_10 = 1;
  1329. pub type _bindgen_ty_10 = ::core::ffi::c_uint;
  1330. pub const BPF_F_SKIP_FIELD_MASK: _bindgen_ty_11 = 255;
  1331. pub const BPF_F_USER_STACK: _bindgen_ty_11 = 256;
  1332. pub const BPF_F_FAST_STACK_CMP: _bindgen_ty_11 = 512;
  1333. pub const BPF_F_REUSE_STACKID: _bindgen_ty_11 = 1024;
  1334. pub const BPF_F_USER_BUILD_ID: _bindgen_ty_11 = 2048;
  1335. pub type _bindgen_ty_11 = ::core::ffi::c_uint;
  1336. pub const BPF_F_ZERO_CSUM_TX: _bindgen_ty_12 = 2;
  1337. pub const BPF_F_DONT_FRAGMENT: _bindgen_ty_12 = 4;
  1338. pub const BPF_F_SEQ_NUMBER: _bindgen_ty_12 = 8;
  1339. pub const BPF_F_NO_TUNNEL_KEY: _bindgen_ty_12 = 16;
  1340. pub type _bindgen_ty_12 = ::core::ffi::c_uint;
  1341. pub const BPF_F_TUNINFO_FLAGS: _bindgen_ty_13 = 16;
  1342. pub type _bindgen_ty_13 = ::core::ffi::c_uint;
  1343. pub const BPF_F_INDEX_MASK: _bindgen_ty_14 = 4294967295;
  1344. pub const BPF_F_CURRENT_CPU: _bindgen_ty_14 = 4294967295;
  1345. pub const BPF_F_CTXLEN_MASK: _bindgen_ty_14 = 4503595332403200;
  1346. pub type _bindgen_ty_14 = ::core::ffi::c_ulonglong;
  1347. pub const BPF_F_CURRENT_NETNS: _bindgen_ty_15 = -1;
  1348. pub type _bindgen_ty_15 = ::core::ffi::c_int;
  1349. pub const BPF_CSUM_LEVEL_QUERY: _bindgen_ty_16 = _bindgen_ty_16::BPF_CSUM_LEVEL_QUERY;
  1350. pub const BPF_CSUM_LEVEL_INC: _bindgen_ty_16 = _bindgen_ty_16::BPF_CSUM_LEVEL_INC;
  1351. pub const BPF_CSUM_LEVEL_DEC: _bindgen_ty_16 = _bindgen_ty_16::BPF_CSUM_LEVEL_DEC;
  1352. pub const BPF_CSUM_LEVEL_RESET: _bindgen_ty_16 = _bindgen_ty_16::BPF_CSUM_LEVEL_RESET;
  1353. #[repr(u32)]
  1354. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1355. pub enum _bindgen_ty_16 {
  1356. BPF_CSUM_LEVEL_QUERY = 0,
  1357. BPF_CSUM_LEVEL_INC = 1,
  1358. BPF_CSUM_LEVEL_DEC = 2,
  1359. BPF_CSUM_LEVEL_RESET = 3,
  1360. }
  1361. pub const BPF_F_ADJ_ROOM_FIXED_GSO: _bindgen_ty_17 = 1;
  1362. pub const BPF_F_ADJ_ROOM_ENCAP_L3_IPV4: _bindgen_ty_17 = 2;
  1363. pub const BPF_F_ADJ_ROOM_ENCAP_L3_IPV6: _bindgen_ty_17 = 4;
  1364. pub const BPF_F_ADJ_ROOM_ENCAP_L4_GRE: _bindgen_ty_17 = 8;
  1365. pub const BPF_F_ADJ_ROOM_ENCAP_L4_UDP: _bindgen_ty_17 = 16;
  1366. pub const BPF_F_ADJ_ROOM_NO_CSUM_RESET: _bindgen_ty_17 = 32;
  1367. pub const BPF_F_ADJ_ROOM_ENCAP_L2_ETH: _bindgen_ty_17 = 64;
  1368. pub const BPF_F_ADJ_ROOM_DECAP_L3_IPV4: _bindgen_ty_17 = 128;
  1369. pub const BPF_F_ADJ_ROOM_DECAP_L3_IPV6: _bindgen_ty_17 = 256;
  1370. pub type _bindgen_ty_17 = ::core::ffi::c_uint;
  1371. pub const BPF_ADJ_ROOM_ENCAP_L2_MASK: _bindgen_ty_18 = _bindgen_ty_18::BPF_ADJ_ROOM_ENCAP_L2_MASK;
  1372. pub const BPF_ADJ_ROOM_ENCAP_L2_SHIFT: _bindgen_ty_18 = _bindgen_ty_18::BPF_ADJ_ROOM_ENCAP_L2_SHIFT;
  1373. #[repr(u32)]
  1374. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1375. pub enum _bindgen_ty_18 {
  1376. BPF_ADJ_ROOM_ENCAP_L2_MASK = 255,
  1377. BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 56,
  1378. }
  1379. pub const BPF_F_SYSCTL_BASE_NAME: _bindgen_ty_19 = 1;
  1380. pub type _bindgen_ty_19 = ::core::ffi::c_uint;
  1381. pub const BPF_LOCAL_STORAGE_GET_F_CREATE: _bindgen_ty_20 =
  1382. _bindgen_ty_20::BPF_LOCAL_STORAGE_GET_F_CREATE;
  1383. pub const BPF_SK_STORAGE_GET_F_CREATE: _bindgen_ty_20 =
  1384. _bindgen_ty_20::BPF_LOCAL_STORAGE_GET_F_CREATE;
  1385. #[repr(u32)]
  1386. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1387. pub enum _bindgen_ty_20 {
  1388. BPF_LOCAL_STORAGE_GET_F_CREATE = 1,
  1389. }
  1390. pub const BPF_F_GET_BRANCH_RECORDS_SIZE: _bindgen_ty_21 = 1;
  1391. pub type _bindgen_ty_21 = ::core::ffi::c_uint;
  1392. pub const BPF_RB_NO_WAKEUP: _bindgen_ty_22 = _bindgen_ty_22::BPF_RB_NO_WAKEUP;
  1393. pub const BPF_RB_FORCE_WAKEUP: _bindgen_ty_22 = _bindgen_ty_22::BPF_RB_FORCE_WAKEUP;
  1394. #[repr(u32)]
  1395. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1396. pub enum _bindgen_ty_22 {
  1397. BPF_RB_NO_WAKEUP = 1,
  1398. BPF_RB_FORCE_WAKEUP = 2,
  1399. }
  1400. pub const BPF_RB_AVAIL_DATA: _bindgen_ty_23 = _bindgen_ty_23::BPF_RB_AVAIL_DATA;
  1401. pub const BPF_RB_RING_SIZE: _bindgen_ty_23 = _bindgen_ty_23::BPF_RB_RING_SIZE;
  1402. pub const BPF_RB_CONS_POS: _bindgen_ty_23 = _bindgen_ty_23::BPF_RB_CONS_POS;
  1403. pub const BPF_RB_PROD_POS: _bindgen_ty_23 = _bindgen_ty_23::BPF_RB_PROD_POS;
  1404. #[repr(u32)]
  1405. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1406. pub enum _bindgen_ty_23 {
  1407. BPF_RB_AVAIL_DATA = 0,
  1408. BPF_RB_RING_SIZE = 1,
  1409. BPF_RB_CONS_POS = 2,
  1410. BPF_RB_PROD_POS = 3,
  1411. }
  1412. pub const BPF_RINGBUF_BUSY_BIT: _bindgen_ty_24 = 2147483648;
  1413. pub const BPF_RINGBUF_DISCARD_BIT: _bindgen_ty_24 = 1073741824;
  1414. pub const BPF_RINGBUF_HDR_SZ: _bindgen_ty_24 = 8;
  1415. pub type _bindgen_ty_24 = ::core::ffi::c_uint;
  1416. pub const BPF_SK_LOOKUP_F_REPLACE: _bindgen_ty_25 = _bindgen_ty_25::BPF_SK_LOOKUP_F_REPLACE;
  1417. pub const BPF_SK_LOOKUP_F_NO_REUSEPORT: _bindgen_ty_25 =
  1418. _bindgen_ty_25::BPF_SK_LOOKUP_F_NO_REUSEPORT;
  1419. #[repr(u32)]
  1420. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1421. pub enum _bindgen_ty_25 {
  1422. BPF_SK_LOOKUP_F_REPLACE = 1,
  1423. BPF_SK_LOOKUP_F_NO_REUSEPORT = 2,
  1424. }
  1425. pub const BPF_F_BPRM_SECUREEXEC: _bindgen_ty_26 = 1;
  1426. pub type _bindgen_ty_26 = ::core::ffi::c_uint;
  1427. pub const BPF_F_BROADCAST: _bindgen_ty_27 = 8;
  1428. pub const BPF_F_EXCLUDE_INGRESS: _bindgen_ty_27 = 16;
  1429. pub type _bindgen_ty_27 = ::core::ffi::c_uint;
  1430. pub const BPF_SKB_TSTAMP_UNSPEC: _bindgen_ty_28 = _bindgen_ty_28::BPF_SKB_TSTAMP_UNSPEC;
  1431. pub const BPF_SKB_TSTAMP_DELIVERY_MONO: _bindgen_ty_28 =
  1432. _bindgen_ty_28::BPF_SKB_TSTAMP_DELIVERY_MONO;
  1433. #[repr(u32)]
  1434. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1435. pub enum _bindgen_ty_28 {
  1436. BPF_SKB_TSTAMP_UNSPEC = 0,
  1437. BPF_SKB_TSTAMP_DELIVERY_MONO = 1,
  1438. }
  1439. #[repr(C)]
  1440. #[derive(Copy, Clone)]
  1441. pub struct bpf_devmap_val {
  1442. pub ifindex: __u32,
  1443. pub bpf_prog: bpf_devmap_val__bindgen_ty_1,
  1444. }
  1445. #[repr(C)]
  1446. #[derive(Copy, Clone)]
  1447. pub union bpf_devmap_val__bindgen_ty_1 {
  1448. pub fd: ::core::ffi::c_int,
  1449. pub id: __u32,
  1450. }
  1451. #[repr(C)]
  1452. #[derive(Copy, Clone)]
  1453. pub struct bpf_cpumap_val {
  1454. pub qsize: __u32,
  1455. pub bpf_prog: bpf_cpumap_val__bindgen_ty_1,
  1456. }
  1457. #[repr(C)]
  1458. #[derive(Copy, Clone)]
  1459. pub union bpf_cpumap_val__bindgen_ty_1 {
  1460. pub fd: ::core::ffi::c_int,
  1461. pub id: __u32,
  1462. }
  1463. #[repr(C)]
  1464. #[derive(Debug, Copy, Clone)]
  1465. pub struct bpf_prog_info {
  1466. pub type_: __u32,
  1467. pub id: __u32,
  1468. pub tag: [__u8; 8usize],
  1469. pub jited_prog_len: __u32,
  1470. pub xlated_prog_len: __u32,
  1471. pub jited_prog_insns: __u64,
  1472. pub xlated_prog_insns: __u64,
  1473. pub load_time: __u64,
  1474. pub created_by_uid: __u32,
  1475. pub nr_map_ids: __u32,
  1476. pub map_ids: __u64,
  1477. pub name: [::core::ffi::c_char; 16usize],
  1478. pub ifindex: __u32,
  1479. pub _bitfield_align_1: [u8; 0],
  1480. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4usize]>,
  1481. pub netns_dev: __u64,
  1482. pub netns_ino: __u64,
  1483. pub nr_jited_ksyms: __u32,
  1484. pub nr_jited_func_lens: __u32,
  1485. pub jited_ksyms: __u64,
  1486. pub jited_func_lens: __u64,
  1487. pub btf_id: __u32,
  1488. pub func_info_rec_size: __u32,
  1489. pub func_info: __u64,
  1490. pub nr_func_info: __u32,
  1491. pub nr_line_info: __u32,
  1492. pub line_info: __u64,
  1493. pub jited_line_info: __u64,
  1494. pub nr_jited_line_info: __u32,
  1495. pub line_info_rec_size: __u32,
  1496. pub jited_line_info_rec_size: __u32,
  1497. pub nr_prog_tags: __u32,
  1498. pub prog_tags: __u64,
  1499. pub run_time_ns: __u64,
  1500. pub run_cnt: __u64,
  1501. pub recursion_misses: __u64,
  1502. pub verified_insns: __u32,
  1503. pub attach_btf_obj_id: __u32,
  1504. pub attach_btf_id: __u32,
  1505. }
  1506. impl bpf_prog_info {
  1507. #[inline]
  1508. pub fn gpl_compatible(&self) -> __u32 {
  1509. unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 1u8) as u32) }
  1510. }
  1511. #[inline]
  1512. pub fn set_gpl_compatible(&mut self, val: __u32) {
  1513. unsafe {
  1514. let val: u32 = ::core::mem::transmute(val);
  1515. self._bitfield_1.set(0usize, 1u8, val as u64)
  1516. }
  1517. }
  1518. #[inline]
  1519. pub unsafe fn gpl_compatible_raw(this: *const Self) -> __u32 {
  1520. unsafe {
  1521. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 4usize]>>::raw_get(
  1522. ::core::ptr::addr_of!((*this)._bitfield_1),
  1523. 0usize,
  1524. 1u8,
  1525. ) as u32)
  1526. }
  1527. }
  1528. #[inline]
  1529. pub unsafe fn set_gpl_compatible_raw(this: *mut Self, val: __u32) {
  1530. unsafe {
  1531. let val: u32 = ::core::mem::transmute(val);
  1532. <__BindgenBitfieldUnit<[u8; 4usize]>>::raw_set(
  1533. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  1534. 0usize,
  1535. 1u8,
  1536. val as u64,
  1537. )
  1538. }
  1539. }
  1540. #[inline]
  1541. pub fn new_bitfield_1(gpl_compatible: __u32) -> __BindgenBitfieldUnit<[u8; 4usize]> {
  1542. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 4usize]> = Default::default();
  1543. __bindgen_bitfield_unit.set(0usize, 1u8, {
  1544. let gpl_compatible: u32 = unsafe { ::core::mem::transmute(gpl_compatible) };
  1545. gpl_compatible as u64
  1546. });
  1547. __bindgen_bitfield_unit
  1548. }
  1549. }
  1550. #[repr(C)]
  1551. #[derive(Debug, Copy, Clone)]
  1552. pub struct bpf_map_info {
  1553. pub type_: __u32,
  1554. pub id: __u32,
  1555. pub key_size: __u32,
  1556. pub value_size: __u32,
  1557. pub max_entries: __u32,
  1558. pub map_flags: __u32,
  1559. pub name: [::core::ffi::c_char; 16usize],
  1560. pub ifindex: __u32,
  1561. pub btf_vmlinux_value_type_id: __u32,
  1562. pub netns_dev: __u64,
  1563. pub netns_ino: __u64,
  1564. pub btf_id: __u32,
  1565. pub btf_key_type_id: __u32,
  1566. pub btf_value_type_id: __u32,
  1567. pub btf_vmlinux_id: __u32,
  1568. pub map_extra: __u64,
  1569. }
  1570. #[repr(C)]
  1571. #[derive(Debug, Copy, Clone)]
  1572. pub struct bpf_btf_info {
  1573. pub btf: __u64,
  1574. pub btf_size: __u32,
  1575. pub id: __u32,
  1576. pub name: __u64,
  1577. pub name_len: __u32,
  1578. pub kernel_btf: __u32,
  1579. }
  1580. #[repr(C)]
  1581. #[derive(Copy, Clone)]
  1582. pub struct bpf_link_info {
  1583. pub type_: __u32,
  1584. pub id: __u32,
  1585. pub prog_id: __u32,
  1586. pub __bindgen_anon_1: bpf_link_info__bindgen_ty_1,
  1587. }
  1588. #[repr(C)]
  1589. #[derive(Copy, Clone)]
  1590. pub union bpf_link_info__bindgen_ty_1 {
  1591. pub raw_tracepoint: bpf_link_info__bindgen_ty_1__bindgen_ty_1,
  1592. pub tracing: bpf_link_info__bindgen_ty_1__bindgen_ty_2,
  1593. pub cgroup: bpf_link_info__bindgen_ty_1__bindgen_ty_3,
  1594. pub iter: bpf_link_info__bindgen_ty_1__bindgen_ty_4,
  1595. pub netns: bpf_link_info__bindgen_ty_1__bindgen_ty_5,
  1596. pub xdp: bpf_link_info__bindgen_ty_1__bindgen_ty_6,
  1597. pub struct_ops: bpf_link_info__bindgen_ty_1__bindgen_ty_7,
  1598. pub netfilter: bpf_link_info__bindgen_ty_1__bindgen_ty_8,
  1599. pub kprobe_multi: bpf_link_info__bindgen_ty_1__bindgen_ty_9,
  1600. pub uprobe_multi: bpf_link_info__bindgen_ty_1__bindgen_ty_10,
  1601. pub perf_event: bpf_link_info__bindgen_ty_1__bindgen_ty_11,
  1602. pub tcx: bpf_link_info__bindgen_ty_1__bindgen_ty_12,
  1603. pub netkit: bpf_link_info__bindgen_ty_1__bindgen_ty_13,
  1604. }
  1605. #[repr(C)]
  1606. #[derive(Debug, Copy, Clone)]
  1607. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_1 {
  1608. pub tp_name: __u64,
  1609. pub tp_name_len: __u32,
  1610. }
  1611. #[repr(C)]
  1612. #[derive(Debug, Copy, Clone)]
  1613. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_2 {
  1614. pub attach_type: __u32,
  1615. pub target_obj_id: __u32,
  1616. pub target_btf_id: __u32,
  1617. }
  1618. #[repr(C)]
  1619. #[derive(Debug, Copy, Clone)]
  1620. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_3 {
  1621. pub cgroup_id: __u64,
  1622. pub attach_type: __u32,
  1623. }
  1624. #[repr(C)]
  1625. #[derive(Copy, Clone)]
  1626. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_4 {
  1627. pub target_name: __u64,
  1628. pub target_name_len: __u32,
  1629. pub __bindgen_anon_1: bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1,
  1630. pub __bindgen_anon_2: bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2,
  1631. }
  1632. #[repr(C)]
  1633. #[derive(Copy, Clone)]
  1634. pub union bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1 {
  1635. pub map: bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1,
  1636. }
  1637. #[repr(C)]
  1638. #[derive(Debug, Copy, Clone)]
  1639. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_1__bindgen_ty_1 {
  1640. pub map_id: __u32,
  1641. }
  1642. #[repr(C)]
  1643. #[derive(Copy, Clone)]
  1644. pub union bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2 {
  1645. pub cgroup: bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1,
  1646. pub task: bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2,
  1647. }
  1648. #[repr(C)]
  1649. #[derive(Debug, Copy, Clone)]
  1650. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_1 {
  1651. pub cgroup_id: __u64,
  1652. pub order: __u32,
  1653. }
  1654. #[repr(C)]
  1655. #[derive(Debug, Copy, Clone)]
  1656. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_4__bindgen_ty_2__bindgen_ty_2 {
  1657. pub tid: __u32,
  1658. pub pid: __u32,
  1659. }
  1660. #[repr(C)]
  1661. #[derive(Debug, Copy, Clone)]
  1662. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_5 {
  1663. pub netns_ino: __u32,
  1664. pub attach_type: __u32,
  1665. }
  1666. #[repr(C)]
  1667. #[derive(Debug, Copy, Clone)]
  1668. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_6 {
  1669. pub ifindex: __u32,
  1670. }
  1671. #[repr(C)]
  1672. #[derive(Debug, Copy, Clone)]
  1673. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_7 {
  1674. pub map_id: __u32,
  1675. }
  1676. #[repr(C)]
  1677. #[derive(Debug, Copy, Clone)]
  1678. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_8 {
  1679. pub pf: __u32,
  1680. pub hooknum: __u32,
  1681. pub priority: __s32,
  1682. pub flags: __u32,
  1683. }
  1684. #[repr(C)]
  1685. #[derive(Debug, Copy, Clone)]
  1686. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_9 {
  1687. pub addrs: __u64,
  1688. pub count: __u32,
  1689. pub flags: __u32,
  1690. pub missed: __u64,
  1691. pub cookies: __u64,
  1692. }
  1693. #[repr(C)]
  1694. #[derive(Debug, Copy, Clone)]
  1695. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_10 {
  1696. pub path: __u64,
  1697. pub offsets: __u64,
  1698. pub ref_ctr_offsets: __u64,
  1699. pub cookies: __u64,
  1700. pub path_size: __u32,
  1701. pub count: __u32,
  1702. pub flags: __u32,
  1703. pub pid: __u32,
  1704. }
  1705. #[repr(C)]
  1706. #[derive(Copy, Clone)]
  1707. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_11 {
  1708. pub type_: __u32,
  1709. pub _bitfield_align_1: [u8; 0],
  1710. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4usize]>,
  1711. pub __bindgen_anon_1: bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1,
  1712. }
  1713. #[repr(C)]
  1714. #[derive(Copy, Clone)]
  1715. pub union bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1 {
  1716. pub uprobe: bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1,
  1717. pub kprobe: bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2,
  1718. pub tracepoint: bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3,
  1719. pub event: bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4,
  1720. }
  1721. #[repr(C)]
  1722. #[derive(Debug, Copy, Clone)]
  1723. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_1 {
  1724. pub file_name: __u64,
  1725. pub name_len: __u32,
  1726. pub offset: __u32,
  1727. pub cookie: __u64,
  1728. }
  1729. #[repr(C)]
  1730. #[derive(Debug, Copy, Clone)]
  1731. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_2 {
  1732. pub func_name: __u64,
  1733. pub name_len: __u32,
  1734. pub offset: __u32,
  1735. pub addr: __u64,
  1736. pub missed: __u64,
  1737. pub cookie: __u64,
  1738. }
  1739. #[repr(C)]
  1740. #[derive(Debug, Copy, Clone)]
  1741. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3 {
  1742. pub tp_name: __u64,
  1743. pub name_len: __u32,
  1744. pub _bitfield_align_1: [u8; 0],
  1745. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4usize]>,
  1746. pub cookie: __u64,
  1747. }
  1748. impl bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_3 {
  1749. #[inline]
  1750. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 4usize]> {
  1751. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 4usize]> = Default::default();
  1752. __bindgen_bitfield_unit
  1753. }
  1754. }
  1755. #[repr(C)]
  1756. #[derive(Debug, Copy, Clone)]
  1757. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4 {
  1758. pub config: __u64,
  1759. pub type_: __u32,
  1760. pub _bitfield_align_1: [u8; 0],
  1761. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4usize]>,
  1762. pub cookie: __u64,
  1763. }
  1764. impl bpf_link_info__bindgen_ty_1__bindgen_ty_11__bindgen_ty_1__bindgen_ty_4 {
  1765. #[inline]
  1766. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 4usize]> {
  1767. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 4usize]> = Default::default();
  1768. __bindgen_bitfield_unit
  1769. }
  1770. }
  1771. impl bpf_link_info__bindgen_ty_1__bindgen_ty_11 {
  1772. #[inline]
  1773. pub fn new_bitfield_1() -> __BindgenBitfieldUnit<[u8; 4usize]> {
  1774. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 4usize]> = Default::default();
  1775. __bindgen_bitfield_unit
  1776. }
  1777. }
  1778. #[repr(C)]
  1779. #[derive(Debug, Copy, Clone)]
  1780. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_12 {
  1781. pub ifindex: __u32,
  1782. pub attach_type: __u32,
  1783. }
  1784. #[repr(C)]
  1785. #[derive(Debug, Copy, Clone)]
  1786. pub struct bpf_link_info__bindgen_ty_1__bindgen_ty_13 {
  1787. pub ifindex: __u32,
  1788. pub attach_type: __u32,
  1789. }
  1790. pub const BPF_SOCK_OPS_RTO_CB_FLAG: _bindgen_ty_29 = _bindgen_ty_29::BPF_SOCK_OPS_RTO_CB_FLAG;
  1791. pub const BPF_SOCK_OPS_RETRANS_CB_FLAG: _bindgen_ty_29 =
  1792. _bindgen_ty_29::BPF_SOCK_OPS_RETRANS_CB_FLAG;
  1793. pub const BPF_SOCK_OPS_STATE_CB_FLAG: _bindgen_ty_29 = _bindgen_ty_29::BPF_SOCK_OPS_STATE_CB_FLAG;
  1794. pub const BPF_SOCK_OPS_RTT_CB_FLAG: _bindgen_ty_29 = _bindgen_ty_29::BPF_SOCK_OPS_RTT_CB_FLAG;
  1795. pub const BPF_SOCK_OPS_PARSE_ALL_HDR_OPT_CB_FLAG: _bindgen_ty_29 =
  1796. _bindgen_ty_29::BPF_SOCK_OPS_PARSE_ALL_HDR_OPT_CB_FLAG;
  1797. pub const BPF_SOCK_OPS_PARSE_UNKNOWN_HDR_OPT_CB_FLAG: _bindgen_ty_29 =
  1798. _bindgen_ty_29::BPF_SOCK_OPS_PARSE_UNKNOWN_HDR_OPT_CB_FLAG;
  1799. pub const BPF_SOCK_OPS_WRITE_HDR_OPT_CB_FLAG: _bindgen_ty_29 =
  1800. _bindgen_ty_29::BPF_SOCK_OPS_WRITE_HDR_OPT_CB_FLAG;
  1801. pub const BPF_SOCK_OPS_ALL_CB_FLAGS: _bindgen_ty_29 = _bindgen_ty_29::BPF_SOCK_OPS_ALL_CB_FLAGS;
  1802. #[repr(u32)]
  1803. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1804. pub enum _bindgen_ty_29 {
  1805. BPF_SOCK_OPS_RTO_CB_FLAG = 1,
  1806. BPF_SOCK_OPS_RETRANS_CB_FLAG = 2,
  1807. BPF_SOCK_OPS_STATE_CB_FLAG = 4,
  1808. BPF_SOCK_OPS_RTT_CB_FLAG = 8,
  1809. BPF_SOCK_OPS_PARSE_ALL_HDR_OPT_CB_FLAG = 16,
  1810. BPF_SOCK_OPS_PARSE_UNKNOWN_HDR_OPT_CB_FLAG = 32,
  1811. BPF_SOCK_OPS_WRITE_HDR_OPT_CB_FLAG = 64,
  1812. BPF_SOCK_OPS_ALL_CB_FLAGS = 127,
  1813. }
  1814. pub const BPF_SOCK_OPS_VOID: _bindgen_ty_30 = _bindgen_ty_30::BPF_SOCK_OPS_VOID;
  1815. pub const BPF_SOCK_OPS_TIMEOUT_INIT: _bindgen_ty_30 = _bindgen_ty_30::BPF_SOCK_OPS_TIMEOUT_INIT;
  1816. pub const BPF_SOCK_OPS_RWND_INIT: _bindgen_ty_30 = _bindgen_ty_30::BPF_SOCK_OPS_RWND_INIT;
  1817. pub const BPF_SOCK_OPS_TCP_CONNECT_CB: _bindgen_ty_30 = _bindgen_ty_30::BPF_SOCK_OPS_TCP_CONNECT_CB;
  1818. pub const BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB: _bindgen_ty_30 =
  1819. _bindgen_ty_30::BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB;
  1820. pub const BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB: _bindgen_ty_30 =
  1821. _bindgen_ty_30::BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB;
  1822. pub const BPF_SOCK_OPS_NEEDS_ECN: _bindgen_ty_30 = _bindgen_ty_30::BPF_SOCK_OPS_NEEDS_ECN;
  1823. pub const BPF_SOCK_OPS_BASE_RTT: _bindgen_ty_30 = _bindgen_ty_30::BPF_SOCK_OPS_BASE_RTT;
  1824. pub const BPF_SOCK_OPS_RTO_CB: _bindgen_ty_30 = _bindgen_ty_30::BPF_SOCK_OPS_RTO_CB;
  1825. pub const BPF_SOCK_OPS_RETRANS_CB: _bindgen_ty_30 = _bindgen_ty_30::BPF_SOCK_OPS_RETRANS_CB;
  1826. pub const BPF_SOCK_OPS_STATE_CB: _bindgen_ty_30 = _bindgen_ty_30::BPF_SOCK_OPS_STATE_CB;
  1827. pub const BPF_SOCK_OPS_TCP_LISTEN_CB: _bindgen_ty_30 = _bindgen_ty_30::BPF_SOCK_OPS_TCP_LISTEN_CB;
  1828. pub const BPF_SOCK_OPS_RTT_CB: _bindgen_ty_30 = _bindgen_ty_30::BPF_SOCK_OPS_RTT_CB;
  1829. pub const BPF_SOCK_OPS_PARSE_HDR_OPT_CB: _bindgen_ty_30 =
  1830. _bindgen_ty_30::BPF_SOCK_OPS_PARSE_HDR_OPT_CB;
  1831. pub const BPF_SOCK_OPS_HDR_OPT_LEN_CB: _bindgen_ty_30 = _bindgen_ty_30::BPF_SOCK_OPS_HDR_OPT_LEN_CB;
  1832. pub const BPF_SOCK_OPS_WRITE_HDR_OPT_CB: _bindgen_ty_30 =
  1833. _bindgen_ty_30::BPF_SOCK_OPS_WRITE_HDR_OPT_CB;
  1834. #[repr(u32)]
  1835. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1836. pub enum _bindgen_ty_30 {
  1837. BPF_SOCK_OPS_VOID = 0,
  1838. BPF_SOCK_OPS_TIMEOUT_INIT = 1,
  1839. BPF_SOCK_OPS_RWND_INIT = 2,
  1840. BPF_SOCK_OPS_TCP_CONNECT_CB = 3,
  1841. BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 4,
  1842. BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 5,
  1843. BPF_SOCK_OPS_NEEDS_ECN = 6,
  1844. BPF_SOCK_OPS_BASE_RTT = 7,
  1845. BPF_SOCK_OPS_RTO_CB = 8,
  1846. BPF_SOCK_OPS_RETRANS_CB = 9,
  1847. BPF_SOCK_OPS_STATE_CB = 10,
  1848. BPF_SOCK_OPS_TCP_LISTEN_CB = 11,
  1849. BPF_SOCK_OPS_RTT_CB = 12,
  1850. BPF_SOCK_OPS_PARSE_HDR_OPT_CB = 13,
  1851. BPF_SOCK_OPS_HDR_OPT_LEN_CB = 14,
  1852. BPF_SOCK_OPS_WRITE_HDR_OPT_CB = 15,
  1853. }
  1854. pub const BPF_TCP_ESTABLISHED: _bindgen_ty_31 = _bindgen_ty_31::BPF_TCP_ESTABLISHED;
  1855. pub const BPF_TCP_SYN_SENT: _bindgen_ty_31 = _bindgen_ty_31::BPF_TCP_SYN_SENT;
  1856. pub const BPF_TCP_SYN_RECV: _bindgen_ty_31 = _bindgen_ty_31::BPF_TCP_SYN_RECV;
  1857. pub const BPF_TCP_FIN_WAIT1: _bindgen_ty_31 = _bindgen_ty_31::BPF_TCP_FIN_WAIT1;
  1858. pub const BPF_TCP_FIN_WAIT2: _bindgen_ty_31 = _bindgen_ty_31::BPF_TCP_FIN_WAIT2;
  1859. pub const BPF_TCP_TIME_WAIT: _bindgen_ty_31 = _bindgen_ty_31::BPF_TCP_TIME_WAIT;
  1860. pub const BPF_TCP_CLOSE: _bindgen_ty_31 = _bindgen_ty_31::BPF_TCP_CLOSE;
  1861. pub const BPF_TCP_CLOSE_WAIT: _bindgen_ty_31 = _bindgen_ty_31::BPF_TCP_CLOSE_WAIT;
  1862. pub const BPF_TCP_LAST_ACK: _bindgen_ty_31 = _bindgen_ty_31::BPF_TCP_LAST_ACK;
  1863. pub const BPF_TCP_LISTEN: _bindgen_ty_31 = _bindgen_ty_31::BPF_TCP_LISTEN;
  1864. pub const BPF_TCP_CLOSING: _bindgen_ty_31 = _bindgen_ty_31::BPF_TCP_CLOSING;
  1865. pub const BPF_TCP_NEW_SYN_RECV: _bindgen_ty_31 = _bindgen_ty_31::BPF_TCP_NEW_SYN_RECV;
  1866. pub const BPF_TCP_BOUND_INACTIVE: _bindgen_ty_31 = _bindgen_ty_31::BPF_TCP_BOUND_INACTIVE;
  1867. pub const BPF_TCP_MAX_STATES: _bindgen_ty_31 = _bindgen_ty_31::BPF_TCP_MAX_STATES;
  1868. #[repr(u32)]
  1869. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1870. pub enum _bindgen_ty_31 {
  1871. BPF_TCP_ESTABLISHED = 1,
  1872. BPF_TCP_SYN_SENT = 2,
  1873. BPF_TCP_SYN_RECV = 3,
  1874. BPF_TCP_FIN_WAIT1 = 4,
  1875. BPF_TCP_FIN_WAIT2 = 5,
  1876. BPF_TCP_TIME_WAIT = 6,
  1877. BPF_TCP_CLOSE = 7,
  1878. BPF_TCP_CLOSE_WAIT = 8,
  1879. BPF_TCP_LAST_ACK = 9,
  1880. BPF_TCP_LISTEN = 10,
  1881. BPF_TCP_CLOSING = 11,
  1882. BPF_TCP_NEW_SYN_RECV = 12,
  1883. BPF_TCP_BOUND_INACTIVE = 13,
  1884. BPF_TCP_MAX_STATES = 14,
  1885. }
  1886. pub const BPF_LOAD_HDR_OPT_TCP_SYN: _bindgen_ty_33 = _bindgen_ty_33::BPF_LOAD_HDR_OPT_TCP_SYN;
  1887. #[repr(u32)]
  1888. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1889. pub enum _bindgen_ty_33 {
  1890. BPF_LOAD_HDR_OPT_TCP_SYN = 1,
  1891. }
  1892. pub const BPF_WRITE_HDR_TCP_CURRENT_MSS: _bindgen_ty_34 =
  1893. _bindgen_ty_34::BPF_WRITE_HDR_TCP_CURRENT_MSS;
  1894. pub const BPF_WRITE_HDR_TCP_SYNACK_COOKIE: _bindgen_ty_34 =
  1895. _bindgen_ty_34::BPF_WRITE_HDR_TCP_SYNACK_COOKIE;
  1896. #[repr(u32)]
  1897. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1898. pub enum _bindgen_ty_34 {
  1899. BPF_WRITE_HDR_TCP_CURRENT_MSS = 1,
  1900. BPF_WRITE_HDR_TCP_SYNACK_COOKIE = 2,
  1901. }
  1902. pub const BPF_DEVCG_ACC_MKNOD: _bindgen_ty_35 = _bindgen_ty_35::BPF_DEVCG_ACC_MKNOD;
  1903. pub const BPF_DEVCG_ACC_READ: _bindgen_ty_35 = _bindgen_ty_35::BPF_DEVCG_ACC_READ;
  1904. pub const BPF_DEVCG_ACC_WRITE: _bindgen_ty_35 = _bindgen_ty_35::BPF_DEVCG_ACC_WRITE;
  1905. #[repr(u32)]
  1906. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1907. pub enum _bindgen_ty_35 {
  1908. BPF_DEVCG_ACC_MKNOD = 1,
  1909. BPF_DEVCG_ACC_READ = 2,
  1910. BPF_DEVCG_ACC_WRITE = 4,
  1911. }
  1912. pub const BPF_DEVCG_DEV_BLOCK: _bindgen_ty_36 = _bindgen_ty_36::BPF_DEVCG_DEV_BLOCK;
  1913. pub const BPF_DEVCG_DEV_CHAR: _bindgen_ty_36 = _bindgen_ty_36::BPF_DEVCG_DEV_CHAR;
  1914. #[repr(u32)]
  1915. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1916. pub enum _bindgen_ty_36 {
  1917. BPF_DEVCG_DEV_BLOCK = 1,
  1918. BPF_DEVCG_DEV_CHAR = 2,
  1919. }
  1920. pub const BPF_FIB_LOOKUP_DIRECT: _bindgen_ty_37 = _bindgen_ty_37::BPF_FIB_LOOKUP_DIRECT;
  1921. pub const BPF_FIB_LOOKUP_OUTPUT: _bindgen_ty_37 = _bindgen_ty_37::BPF_FIB_LOOKUP_OUTPUT;
  1922. pub const BPF_FIB_LOOKUP_SKIP_NEIGH: _bindgen_ty_37 = _bindgen_ty_37::BPF_FIB_LOOKUP_SKIP_NEIGH;
  1923. pub const BPF_FIB_LOOKUP_TBID: _bindgen_ty_37 = _bindgen_ty_37::BPF_FIB_LOOKUP_TBID;
  1924. pub const BPF_FIB_LOOKUP_SRC: _bindgen_ty_37 = _bindgen_ty_37::BPF_FIB_LOOKUP_SRC;
  1925. #[repr(u32)]
  1926. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1927. pub enum _bindgen_ty_37 {
  1928. BPF_FIB_LOOKUP_DIRECT = 1,
  1929. BPF_FIB_LOOKUP_OUTPUT = 2,
  1930. BPF_FIB_LOOKUP_SKIP_NEIGH = 4,
  1931. BPF_FIB_LOOKUP_TBID = 8,
  1932. BPF_FIB_LOOKUP_SRC = 16,
  1933. }
  1934. pub const BPF_FIB_LKUP_RET_SUCCESS: _bindgen_ty_38 = _bindgen_ty_38::BPF_FIB_LKUP_RET_SUCCESS;
  1935. pub const BPF_FIB_LKUP_RET_BLACKHOLE: _bindgen_ty_38 = _bindgen_ty_38::BPF_FIB_LKUP_RET_BLACKHOLE;
  1936. pub const BPF_FIB_LKUP_RET_UNREACHABLE: _bindgen_ty_38 =
  1937. _bindgen_ty_38::BPF_FIB_LKUP_RET_UNREACHABLE;
  1938. pub const BPF_FIB_LKUP_RET_PROHIBIT: _bindgen_ty_38 = _bindgen_ty_38::BPF_FIB_LKUP_RET_PROHIBIT;
  1939. pub const BPF_FIB_LKUP_RET_NOT_FWDED: _bindgen_ty_38 = _bindgen_ty_38::BPF_FIB_LKUP_RET_NOT_FWDED;
  1940. pub const BPF_FIB_LKUP_RET_FWD_DISABLED: _bindgen_ty_38 =
  1941. _bindgen_ty_38::BPF_FIB_LKUP_RET_FWD_DISABLED;
  1942. pub const BPF_FIB_LKUP_RET_UNSUPP_LWT: _bindgen_ty_38 = _bindgen_ty_38::BPF_FIB_LKUP_RET_UNSUPP_LWT;
  1943. pub const BPF_FIB_LKUP_RET_NO_NEIGH: _bindgen_ty_38 = _bindgen_ty_38::BPF_FIB_LKUP_RET_NO_NEIGH;
  1944. pub const BPF_FIB_LKUP_RET_FRAG_NEEDED: _bindgen_ty_38 =
  1945. _bindgen_ty_38::BPF_FIB_LKUP_RET_FRAG_NEEDED;
  1946. pub const BPF_FIB_LKUP_RET_NO_SRC_ADDR: _bindgen_ty_38 =
  1947. _bindgen_ty_38::BPF_FIB_LKUP_RET_NO_SRC_ADDR;
  1948. #[repr(u32)]
  1949. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1950. pub enum _bindgen_ty_38 {
  1951. BPF_FIB_LKUP_RET_SUCCESS = 0,
  1952. BPF_FIB_LKUP_RET_BLACKHOLE = 1,
  1953. BPF_FIB_LKUP_RET_UNREACHABLE = 2,
  1954. BPF_FIB_LKUP_RET_PROHIBIT = 3,
  1955. BPF_FIB_LKUP_RET_NOT_FWDED = 4,
  1956. BPF_FIB_LKUP_RET_FWD_DISABLED = 5,
  1957. BPF_FIB_LKUP_RET_UNSUPP_LWT = 6,
  1958. BPF_FIB_LKUP_RET_NO_NEIGH = 7,
  1959. BPF_FIB_LKUP_RET_FRAG_NEEDED = 8,
  1960. BPF_FIB_LKUP_RET_NO_SRC_ADDR = 9,
  1961. }
  1962. #[repr(u32)]
  1963. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1964. pub enum bpf_task_fd_type {
  1965. BPF_FD_TYPE_RAW_TRACEPOINT = 0,
  1966. BPF_FD_TYPE_TRACEPOINT = 1,
  1967. BPF_FD_TYPE_KPROBE = 2,
  1968. BPF_FD_TYPE_KRETPROBE = 3,
  1969. BPF_FD_TYPE_UPROBE = 4,
  1970. BPF_FD_TYPE_URETPROBE = 5,
  1971. }
  1972. pub const BPF_FLOW_DISSECTOR_F_PARSE_1ST_FRAG: _bindgen_ty_39 =
  1973. _bindgen_ty_39::BPF_FLOW_DISSECTOR_F_PARSE_1ST_FRAG;
  1974. pub const BPF_FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL: _bindgen_ty_39 =
  1975. _bindgen_ty_39::BPF_FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL;
  1976. pub const BPF_FLOW_DISSECTOR_F_STOP_AT_ENCAP: _bindgen_ty_39 =
  1977. _bindgen_ty_39::BPF_FLOW_DISSECTOR_F_STOP_AT_ENCAP;
  1978. #[repr(u32)]
  1979. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  1980. pub enum _bindgen_ty_39 {
  1981. BPF_FLOW_DISSECTOR_F_PARSE_1ST_FRAG = 1,
  1982. BPF_FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL = 2,
  1983. BPF_FLOW_DISSECTOR_F_STOP_AT_ENCAP = 4,
  1984. }
  1985. #[repr(C)]
  1986. #[derive(Debug, Copy, Clone)]
  1987. pub struct bpf_func_info {
  1988. pub insn_off: __u32,
  1989. pub type_id: __u32,
  1990. }
  1991. #[repr(C)]
  1992. #[derive(Debug, Copy, Clone)]
  1993. pub struct bpf_line_info {
  1994. pub insn_off: __u32,
  1995. pub file_name_off: __u32,
  1996. pub line_off: __u32,
  1997. pub line_col: __u32,
  1998. }
  1999. pub const BPF_F_TIMER_ABS: _bindgen_ty_41 = 1;
  2000. pub const BPF_F_TIMER_CPU_PIN: _bindgen_ty_41 = 2;
  2001. pub type _bindgen_ty_41 = ::core::ffi::c_uint;
  2002. #[repr(C)]
  2003. #[derive(Debug, Copy, Clone)]
  2004. pub struct btf_header {
  2005. pub magic: __u16,
  2006. pub version: __u8,
  2007. pub flags: __u8,
  2008. pub hdr_len: __u32,
  2009. pub type_off: __u32,
  2010. pub type_len: __u32,
  2011. pub str_off: __u32,
  2012. pub str_len: __u32,
  2013. }
  2014. #[repr(C)]
  2015. #[derive(Copy, Clone)]
  2016. pub struct btf_type {
  2017. pub name_off: __u32,
  2018. pub info: __u32,
  2019. pub __bindgen_anon_1: btf_type__bindgen_ty_1,
  2020. }
  2021. #[repr(C)]
  2022. #[derive(Copy, Clone)]
  2023. pub union btf_type__bindgen_ty_1 {
  2024. pub size: __u32,
  2025. pub type_: __u32,
  2026. }
  2027. pub const BTF_KIND_UNKN: _bindgen_ty_42 = 0;
  2028. pub const BTF_KIND_INT: _bindgen_ty_42 = 1;
  2029. pub const BTF_KIND_PTR: _bindgen_ty_42 = 2;
  2030. pub const BTF_KIND_ARRAY: _bindgen_ty_42 = 3;
  2031. pub const BTF_KIND_STRUCT: _bindgen_ty_42 = 4;
  2032. pub const BTF_KIND_UNION: _bindgen_ty_42 = 5;
  2033. pub const BTF_KIND_ENUM: _bindgen_ty_42 = 6;
  2034. pub const BTF_KIND_FWD: _bindgen_ty_42 = 7;
  2035. pub const BTF_KIND_TYPEDEF: _bindgen_ty_42 = 8;
  2036. pub const BTF_KIND_VOLATILE: _bindgen_ty_42 = 9;
  2037. pub const BTF_KIND_CONST: _bindgen_ty_42 = 10;
  2038. pub const BTF_KIND_RESTRICT: _bindgen_ty_42 = 11;
  2039. pub const BTF_KIND_FUNC: _bindgen_ty_42 = 12;
  2040. pub const BTF_KIND_FUNC_PROTO: _bindgen_ty_42 = 13;
  2041. pub const BTF_KIND_VAR: _bindgen_ty_42 = 14;
  2042. pub const BTF_KIND_DATASEC: _bindgen_ty_42 = 15;
  2043. pub const BTF_KIND_FLOAT: _bindgen_ty_42 = 16;
  2044. pub const BTF_KIND_DECL_TAG: _bindgen_ty_42 = 17;
  2045. pub const BTF_KIND_TYPE_TAG: _bindgen_ty_42 = 18;
  2046. pub const BTF_KIND_ENUM64: _bindgen_ty_42 = 19;
  2047. pub const NR_BTF_KINDS: _bindgen_ty_42 = 20;
  2048. pub const BTF_KIND_MAX: _bindgen_ty_42 = 19;
  2049. pub type _bindgen_ty_42 = ::core::ffi::c_uint;
  2050. #[repr(C)]
  2051. #[derive(Debug, Copy, Clone)]
  2052. pub struct btf_enum {
  2053. pub name_off: __u32,
  2054. pub val: __s32,
  2055. }
  2056. #[repr(C)]
  2057. #[derive(Debug, Copy, Clone)]
  2058. pub struct btf_array {
  2059. pub type_: __u32,
  2060. pub index_type: __u32,
  2061. pub nelems: __u32,
  2062. }
  2063. #[repr(C)]
  2064. #[derive(Debug, Copy, Clone)]
  2065. pub struct btf_member {
  2066. pub name_off: __u32,
  2067. pub type_: __u32,
  2068. pub offset: __u32,
  2069. }
  2070. #[repr(C)]
  2071. #[derive(Debug, Copy, Clone)]
  2072. pub struct btf_param {
  2073. pub name_off: __u32,
  2074. pub type_: __u32,
  2075. }
  2076. pub const BTF_VAR_STATIC: _bindgen_ty_43 = 0;
  2077. pub const BTF_VAR_GLOBAL_ALLOCATED: _bindgen_ty_43 = 1;
  2078. pub const BTF_VAR_GLOBAL_EXTERN: _bindgen_ty_43 = 2;
  2079. pub type _bindgen_ty_43 = ::core::ffi::c_uint;
  2080. #[repr(u32)]
  2081. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  2082. pub enum btf_func_linkage {
  2083. BTF_FUNC_STATIC = 0,
  2084. BTF_FUNC_GLOBAL = 1,
  2085. BTF_FUNC_EXTERN = 2,
  2086. }
  2087. #[repr(C)]
  2088. #[derive(Debug, Copy, Clone)]
  2089. pub struct btf_var {
  2090. pub linkage: __u32,
  2091. }
  2092. #[repr(C)]
  2093. #[derive(Debug, Copy, Clone)]
  2094. pub struct btf_var_secinfo {
  2095. pub type_: __u32,
  2096. pub offset: __u32,
  2097. pub size: __u32,
  2098. }
  2099. #[repr(C)]
  2100. #[derive(Debug, Copy, Clone)]
  2101. pub struct btf_decl_tag {
  2102. pub component_idx: __s32,
  2103. }
  2104. impl nlmsgerr_attrs {
  2105. pub const NLMSGERR_ATTR_MAX: nlmsgerr_attrs = nlmsgerr_attrs::NLMSGERR_ATTR_COOKIE;
  2106. }
  2107. #[repr(u32)]
  2108. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  2109. pub enum nlmsgerr_attrs {
  2110. NLMSGERR_ATTR_UNUSED = 0,
  2111. NLMSGERR_ATTR_MSG = 1,
  2112. NLMSGERR_ATTR_OFFS = 2,
  2113. NLMSGERR_ATTR_COOKIE = 3,
  2114. __NLMSGERR_ATTR_MAX = 4,
  2115. }
  2116. pub const IFLA_XDP_UNSPEC: _bindgen_ty_92 = 0;
  2117. pub const IFLA_XDP_FD: _bindgen_ty_92 = 1;
  2118. pub const IFLA_XDP_ATTACHED: _bindgen_ty_92 = 2;
  2119. pub const IFLA_XDP_FLAGS: _bindgen_ty_92 = 3;
  2120. pub const IFLA_XDP_PROG_ID: _bindgen_ty_92 = 4;
  2121. pub const IFLA_XDP_DRV_PROG_ID: _bindgen_ty_92 = 5;
  2122. pub const IFLA_XDP_SKB_PROG_ID: _bindgen_ty_92 = 6;
  2123. pub const IFLA_XDP_HW_PROG_ID: _bindgen_ty_92 = 7;
  2124. pub const IFLA_XDP_EXPECTED_FD: _bindgen_ty_92 = 8;
  2125. pub const __IFLA_XDP_MAX: _bindgen_ty_92 = 9;
  2126. pub type _bindgen_ty_92 = ::core::ffi::c_uint;
  2127. impl nf_inet_hooks {
  2128. pub const NF_INET_INGRESS: nf_inet_hooks = nf_inet_hooks::NF_INET_NUMHOOKS;
  2129. }
  2130. #[repr(u32)]
  2131. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  2132. pub enum nf_inet_hooks {
  2133. NF_INET_PRE_ROUTING = 0,
  2134. NF_INET_LOCAL_IN = 1,
  2135. NF_INET_FORWARD = 2,
  2136. NF_INET_LOCAL_OUT = 3,
  2137. NF_INET_POST_ROUTING = 4,
  2138. NF_INET_NUMHOOKS = 5,
  2139. }
  2140. pub const NFPROTO_UNSPEC: _bindgen_ty_99 = 0;
  2141. pub const NFPROTO_INET: _bindgen_ty_99 = 1;
  2142. pub const NFPROTO_IPV4: _bindgen_ty_99 = 2;
  2143. pub const NFPROTO_ARP: _bindgen_ty_99 = 3;
  2144. pub const NFPROTO_NETDEV: _bindgen_ty_99 = 5;
  2145. pub const NFPROTO_BRIDGE: _bindgen_ty_99 = 7;
  2146. pub const NFPROTO_IPV6: _bindgen_ty_99 = 10;
  2147. pub const NFPROTO_DECNET: _bindgen_ty_99 = 12;
  2148. pub const NFPROTO_NUMPROTO: _bindgen_ty_99 = 13;
  2149. pub type _bindgen_ty_99 = ::core::ffi::c_uint;
  2150. #[repr(u32)]
  2151. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  2152. pub enum perf_type_id {
  2153. PERF_TYPE_HARDWARE = 0,
  2154. PERF_TYPE_SOFTWARE = 1,
  2155. PERF_TYPE_TRACEPOINT = 2,
  2156. PERF_TYPE_HW_CACHE = 3,
  2157. PERF_TYPE_RAW = 4,
  2158. PERF_TYPE_BREAKPOINT = 5,
  2159. PERF_TYPE_MAX = 6,
  2160. }
  2161. #[repr(u32)]
  2162. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  2163. pub enum perf_hw_id {
  2164. PERF_COUNT_HW_CPU_CYCLES = 0,
  2165. PERF_COUNT_HW_INSTRUCTIONS = 1,
  2166. PERF_COUNT_HW_CACHE_REFERENCES = 2,
  2167. PERF_COUNT_HW_CACHE_MISSES = 3,
  2168. PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 4,
  2169. PERF_COUNT_HW_BRANCH_MISSES = 5,
  2170. PERF_COUNT_HW_BUS_CYCLES = 6,
  2171. PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 7,
  2172. PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 8,
  2173. PERF_COUNT_HW_REF_CPU_CYCLES = 9,
  2174. PERF_COUNT_HW_MAX = 10,
  2175. }
  2176. #[repr(u32)]
  2177. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  2178. pub enum perf_hw_cache_id {
  2179. PERF_COUNT_HW_CACHE_L1D = 0,
  2180. PERF_COUNT_HW_CACHE_L1I = 1,
  2181. PERF_COUNT_HW_CACHE_LL = 2,
  2182. PERF_COUNT_HW_CACHE_DTLB = 3,
  2183. PERF_COUNT_HW_CACHE_ITLB = 4,
  2184. PERF_COUNT_HW_CACHE_BPU = 5,
  2185. PERF_COUNT_HW_CACHE_NODE = 6,
  2186. PERF_COUNT_HW_CACHE_MAX = 7,
  2187. }
  2188. #[repr(u32)]
  2189. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  2190. pub enum perf_hw_cache_op_id {
  2191. PERF_COUNT_HW_CACHE_OP_READ = 0,
  2192. PERF_COUNT_HW_CACHE_OP_WRITE = 1,
  2193. PERF_COUNT_HW_CACHE_OP_PREFETCH = 2,
  2194. PERF_COUNT_HW_CACHE_OP_MAX = 3,
  2195. }
  2196. #[repr(u32)]
  2197. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  2198. pub enum perf_hw_cache_op_result_id {
  2199. PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0,
  2200. PERF_COUNT_HW_CACHE_RESULT_MISS = 1,
  2201. PERF_COUNT_HW_CACHE_RESULT_MAX = 2,
  2202. }
  2203. #[repr(u32)]
  2204. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  2205. pub enum perf_sw_ids {
  2206. PERF_COUNT_SW_CPU_CLOCK = 0,
  2207. PERF_COUNT_SW_TASK_CLOCK = 1,
  2208. PERF_COUNT_SW_PAGE_FAULTS = 2,
  2209. PERF_COUNT_SW_CONTEXT_SWITCHES = 3,
  2210. PERF_COUNT_SW_CPU_MIGRATIONS = 4,
  2211. PERF_COUNT_SW_PAGE_FAULTS_MIN = 5,
  2212. PERF_COUNT_SW_PAGE_FAULTS_MAJ = 6,
  2213. PERF_COUNT_SW_ALIGNMENT_FAULTS = 7,
  2214. PERF_COUNT_SW_EMULATION_FAULTS = 8,
  2215. PERF_COUNT_SW_DUMMY = 9,
  2216. PERF_COUNT_SW_BPF_OUTPUT = 10,
  2217. PERF_COUNT_SW_CGROUP_SWITCHES = 11,
  2218. PERF_COUNT_SW_MAX = 12,
  2219. }
  2220. #[repr(u32)]
  2221. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  2222. pub enum perf_event_sample_format {
  2223. PERF_SAMPLE_IP = 1,
  2224. PERF_SAMPLE_TID = 2,
  2225. PERF_SAMPLE_TIME = 4,
  2226. PERF_SAMPLE_ADDR = 8,
  2227. PERF_SAMPLE_READ = 16,
  2228. PERF_SAMPLE_CALLCHAIN = 32,
  2229. PERF_SAMPLE_ID = 64,
  2230. PERF_SAMPLE_CPU = 128,
  2231. PERF_SAMPLE_PERIOD = 256,
  2232. PERF_SAMPLE_STREAM_ID = 512,
  2233. PERF_SAMPLE_RAW = 1024,
  2234. PERF_SAMPLE_BRANCH_STACK = 2048,
  2235. PERF_SAMPLE_REGS_USER = 4096,
  2236. PERF_SAMPLE_STACK_USER = 8192,
  2237. PERF_SAMPLE_WEIGHT = 16384,
  2238. PERF_SAMPLE_DATA_SRC = 32768,
  2239. PERF_SAMPLE_IDENTIFIER = 65536,
  2240. PERF_SAMPLE_TRANSACTION = 131072,
  2241. PERF_SAMPLE_REGS_INTR = 262144,
  2242. PERF_SAMPLE_PHYS_ADDR = 524288,
  2243. PERF_SAMPLE_AUX = 1048576,
  2244. PERF_SAMPLE_CGROUP = 2097152,
  2245. PERF_SAMPLE_DATA_PAGE_SIZE = 4194304,
  2246. PERF_SAMPLE_CODE_PAGE_SIZE = 8388608,
  2247. PERF_SAMPLE_WEIGHT_STRUCT = 16777216,
  2248. PERF_SAMPLE_MAX = 33554432,
  2249. }
  2250. #[repr(C)]
  2251. #[derive(Copy, Clone)]
  2252. pub struct perf_event_attr {
  2253. pub type_: __u32,
  2254. pub size: __u32,
  2255. pub config: __u64,
  2256. pub __bindgen_anon_1: perf_event_attr__bindgen_ty_1,
  2257. pub sample_type: __u64,
  2258. pub read_format: __u64,
  2259. pub _bitfield_align_1: [u32; 0],
  2260. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  2261. pub __bindgen_anon_2: perf_event_attr__bindgen_ty_2,
  2262. pub bp_type: __u32,
  2263. pub __bindgen_anon_3: perf_event_attr__bindgen_ty_3,
  2264. pub __bindgen_anon_4: perf_event_attr__bindgen_ty_4,
  2265. pub branch_sample_type: __u64,
  2266. pub sample_regs_user: __u64,
  2267. pub sample_stack_user: __u32,
  2268. pub clockid: __s32,
  2269. pub sample_regs_intr: __u64,
  2270. pub aux_watermark: __u32,
  2271. pub sample_max_stack: __u16,
  2272. pub __reserved_2: __u16,
  2273. pub aux_sample_size: __u32,
  2274. pub __reserved_3: __u32,
  2275. pub sig_data: __u64,
  2276. pub config3: __u64,
  2277. }
  2278. #[repr(C)]
  2279. #[derive(Copy, Clone)]
  2280. pub union perf_event_attr__bindgen_ty_1 {
  2281. pub sample_period: __u64,
  2282. pub sample_freq: __u64,
  2283. }
  2284. #[repr(C)]
  2285. #[derive(Copy, Clone)]
  2286. pub union perf_event_attr__bindgen_ty_2 {
  2287. pub wakeup_events: __u32,
  2288. pub wakeup_watermark: __u32,
  2289. }
  2290. #[repr(C)]
  2291. #[derive(Copy, Clone)]
  2292. pub union perf_event_attr__bindgen_ty_3 {
  2293. pub bp_addr: __u64,
  2294. pub kprobe_func: __u64,
  2295. pub uprobe_path: __u64,
  2296. pub config1: __u64,
  2297. }
  2298. #[repr(C)]
  2299. #[derive(Copy, Clone)]
  2300. pub union perf_event_attr__bindgen_ty_4 {
  2301. pub bp_len: __u64,
  2302. pub kprobe_addr: __u64,
  2303. pub probe_offset: __u64,
  2304. pub config2: __u64,
  2305. }
  2306. impl perf_event_attr {
  2307. #[inline]
  2308. pub fn disabled(&self) -> __u64 {
  2309. unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 1u8) as u64) }
  2310. }
  2311. #[inline]
  2312. pub fn set_disabled(&mut self, val: __u64) {
  2313. unsafe {
  2314. let val: u64 = ::core::mem::transmute(val);
  2315. self._bitfield_1.set(0usize, 1u8, val as u64)
  2316. }
  2317. }
  2318. #[inline]
  2319. pub unsafe fn disabled_raw(this: *const Self) -> __u64 {
  2320. unsafe {
  2321. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2322. ::core::ptr::addr_of!((*this)._bitfield_1),
  2323. 0usize,
  2324. 1u8,
  2325. ) as u64)
  2326. }
  2327. }
  2328. #[inline]
  2329. pub unsafe fn set_disabled_raw(this: *mut Self, val: __u64) {
  2330. unsafe {
  2331. let val: u64 = ::core::mem::transmute(val);
  2332. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2333. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2334. 0usize,
  2335. 1u8,
  2336. val as u64,
  2337. )
  2338. }
  2339. }
  2340. #[inline]
  2341. pub fn inherit(&self) -> __u64 {
  2342. unsafe { ::core::mem::transmute(self._bitfield_1.get(1usize, 1u8) as u64) }
  2343. }
  2344. #[inline]
  2345. pub fn set_inherit(&mut self, val: __u64) {
  2346. unsafe {
  2347. let val: u64 = ::core::mem::transmute(val);
  2348. self._bitfield_1.set(1usize, 1u8, val as u64)
  2349. }
  2350. }
  2351. #[inline]
  2352. pub unsafe fn inherit_raw(this: *const Self) -> __u64 {
  2353. unsafe {
  2354. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2355. ::core::ptr::addr_of!((*this)._bitfield_1),
  2356. 1usize,
  2357. 1u8,
  2358. ) as u64)
  2359. }
  2360. }
  2361. #[inline]
  2362. pub unsafe fn set_inherit_raw(this: *mut Self, val: __u64) {
  2363. unsafe {
  2364. let val: u64 = ::core::mem::transmute(val);
  2365. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2366. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2367. 1usize,
  2368. 1u8,
  2369. val as u64,
  2370. )
  2371. }
  2372. }
  2373. #[inline]
  2374. pub fn pinned(&self) -> __u64 {
  2375. unsafe { ::core::mem::transmute(self._bitfield_1.get(2usize, 1u8) as u64) }
  2376. }
  2377. #[inline]
  2378. pub fn set_pinned(&mut self, val: __u64) {
  2379. unsafe {
  2380. let val: u64 = ::core::mem::transmute(val);
  2381. self._bitfield_1.set(2usize, 1u8, val as u64)
  2382. }
  2383. }
  2384. #[inline]
  2385. pub unsafe fn pinned_raw(this: *const Self) -> __u64 {
  2386. unsafe {
  2387. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2388. ::core::ptr::addr_of!((*this)._bitfield_1),
  2389. 2usize,
  2390. 1u8,
  2391. ) as u64)
  2392. }
  2393. }
  2394. #[inline]
  2395. pub unsafe fn set_pinned_raw(this: *mut Self, val: __u64) {
  2396. unsafe {
  2397. let val: u64 = ::core::mem::transmute(val);
  2398. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2399. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2400. 2usize,
  2401. 1u8,
  2402. val as u64,
  2403. )
  2404. }
  2405. }
  2406. #[inline]
  2407. pub fn exclusive(&self) -> __u64 {
  2408. unsafe { ::core::mem::transmute(self._bitfield_1.get(3usize, 1u8) as u64) }
  2409. }
  2410. #[inline]
  2411. pub fn set_exclusive(&mut self, val: __u64) {
  2412. unsafe {
  2413. let val: u64 = ::core::mem::transmute(val);
  2414. self._bitfield_1.set(3usize, 1u8, val as u64)
  2415. }
  2416. }
  2417. #[inline]
  2418. pub unsafe fn exclusive_raw(this: *const Self) -> __u64 {
  2419. unsafe {
  2420. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2421. ::core::ptr::addr_of!((*this)._bitfield_1),
  2422. 3usize,
  2423. 1u8,
  2424. ) as u64)
  2425. }
  2426. }
  2427. #[inline]
  2428. pub unsafe fn set_exclusive_raw(this: *mut Self, val: __u64) {
  2429. unsafe {
  2430. let val: u64 = ::core::mem::transmute(val);
  2431. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2432. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2433. 3usize,
  2434. 1u8,
  2435. val as u64,
  2436. )
  2437. }
  2438. }
  2439. #[inline]
  2440. pub fn exclude_user(&self) -> __u64 {
  2441. unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 1u8) as u64) }
  2442. }
  2443. #[inline]
  2444. pub fn set_exclude_user(&mut self, val: __u64) {
  2445. unsafe {
  2446. let val: u64 = ::core::mem::transmute(val);
  2447. self._bitfield_1.set(4usize, 1u8, val as u64)
  2448. }
  2449. }
  2450. #[inline]
  2451. pub unsafe fn exclude_user_raw(this: *const Self) -> __u64 {
  2452. unsafe {
  2453. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2454. ::core::ptr::addr_of!((*this)._bitfield_1),
  2455. 4usize,
  2456. 1u8,
  2457. ) as u64)
  2458. }
  2459. }
  2460. #[inline]
  2461. pub unsafe fn set_exclude_user_raw(this: *mut Self, val: __u64) {
  2462. unsafe {
  2463. let val: u64 = ::core::mem::transmute(val);
  2464. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2465. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2466. 4usize,
  2467. 1u8,
  2468. val as u64,
  2469. )
  2470. }
  2471. }
  2472. #[inline]
  2473. pub fn exclude_kernel(&self) -> __u64 {
  2474. unsafe { ::core::mem::transmute(self._bitfield_1.get(5usize, 1u8) as u64) }
  2475. }
  2476. #[inline]
  2477. pub fn set_exclude_kernel(&mut self, val: __u64) {
  2478. unsafe {
  2479. let val: u64 = ::core::mem::transmute(val);
  2480. self._bitfield_1.set(5usize, 1u8, val as u64)
  2481. }
  2482. }
  2483. #[inline]
  2484. pub unsafe fn exclude_kernel_raw(this: *const Self) -> __u64 {
  2485. unsafe {
  2486. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2487. ::core::ptr::addr_of!((*this)._bitfield_1),
  2488. 5usize,
  2489. 1u8,
  2490. ) as u64)
  2491. }
  2492. }
  2493. #[inline]
  2494. pub unsafe fn set_exclude_kernel_raw(this: *mut Self, val: __u64) {
  2495. unsafe {
  2496. let val: u64 = ::core::mem::transmute(val);
  2497. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2498. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2499. 5usize,
  2500. 1u8,
  2501. val as u64,
  2502. )
  2503. }
  2504. }
  2505. #[inline]
  2506. pub fn exclude_hv(&self) -> __u64 {
  2507. unsafe { ::core::mem::transmute(self._bitfield_1.get(6usize, 1u8) as u64) }
  2508. }
  2509. #[inline]
  2510. pub fn set_exclude_hv(&mut self, val: __u64) {
  2511. unsafe {
  2512. let val: u64 = ::core::mem::transmute(val);
  2513. self._bitfield_1.set(6usize, 1u8, val as u64)
  2514. }
  2515. }
  2516. #[inline]
  2517. pub unsafe fn exclude_hv_raw(this: *const Self) -> __u64 {
  2518. unsafe {
  2519. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2520. ::core::ptr::addr_of!((*this)._bitfield_1),
  2521. 6usize,
  2522. 1u8,
  2523. ) as u64)
  2524. }
  2525. }
  2526. #[inline]
  2527. pub unsafe fn set_exclude_hv_raw(this: *mut Self, val: __u64) {
  2528. unsafe {
  2529. let val: u64 = ::core::mem::transmute(val);
  2530. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2531. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2532. 6usize,
  2533. 1u8,
  2534. val as u64,
  2535. )
  2536. }
  2537. }
  2538. #[inline]
  2539. pub fn exclude_idle(&self) -> __u64 {
  2540. unsafe { ::core::mem::transmute(self._bitfield_1.get(7usize, 1u8) as u64) }
  2541. }
  2542. #[inline]
  2543. pub fn set_exclude_idle(&mut self, val: __u64) {
  2544. unsafe {
  2545. let val: u64 = ::core::mem::transmute(val);
  2546. self._bitfield_1.set(7usize, 1u8, val as u64)
  2547. }
  2548. }
  2549. #[inline]
  2550. pub unsafe fn exclude_idle_raw(this: *const Self) -> __u64 {
  2551. unsafe {
  2552. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2553. ::core::ptr::addr_of!((*this)._bitfield_1),
  2554. 7usize,
  2555. 1u8,
  2556. ) as u64)
  2557. }
  2558. }
  2559. #[inline]
  2560. pub unsafe fn set_exclude_idle_raw(this: *mut Self, val: __u64) {
  2561. unsafe {
  2562. let val: u64 = ::core::mem::transmute(val);
  2563. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2564. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2565. 7usize,
  2566. 1u8,
  2567. val as u64,
  2568. )
  2569. }
  2570. }
  2571. #[inline]
  2572. pub fn mmap(&self) -> __u64 {
  2573. unsafe { ::core::mem::transmute(self._bitfield_1.get(8usize, 1u8) as u64) }
  2574. }
  2575. #[inline]
  2576. pub fn set_mmap(&mut self, val: __u64) {
  2577. unsafe {
  2578. let val: u64 = ::core::mem::transmute(val);
  2579. self._bitfield_1.set(8usize, 1u8, val as u64)
  2580. }
  2581. }
  2582. #[inline]
  2583. pub unsafe fn mmap_raw(this: *const Self) -> __u64 {
  2584. unsafe {
  2585. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2586. ::core::ptr::addr_of!((*this)._bitfield_1),
  2587. 8usize,
  2588. 1u8,
  2589. ) as u64)
  2590. }
  2591. }
  2592. #[inline]
  2593. pub unsafe fn set_mmap_raw(this: *mut Self, val: __u64) {
  2594. unsafe {
  2595. let val: u64 = ::core::mem::transmute(val);
  2596. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2597. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2598. 8usize,
  2599. 1u8,
  2600. val as u64,
  2601. )
  2602. }
  2603. }
  2604. #[inline]
  2605. pub fn comm(&self) -> __u64 {
  2606. unsafe { ::core::mem::transmute(self._bitfield_1.get(9usize, 1u8) as u64) }
  2607. }
  2608. #[inline]
  2609. pub fn set_comm(&mut self, val: __u64) {
  2610. unsafe {
  2611. let val: u64 = ::core::mem::transmute(val);
  2612. self._bitfield_1.set(9usize, 1u8, val as u64)
  2613. }
  2614. }
  2615. #[inline]
  2616. pub unsafe fn comm_raw(this: *const Self) -> __u64 {
  2617. unsafe {
  2618. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2619. ::core::ptr::addr_of!((*this)._bitfield_1),
  2620. 9usize,
  2621. 1u8,
  2622. ) as u64)
  2623. }
  2624. }
  2625. #[inline]
  2626. pub unsafe fn set_comm_raw(this: *mut Self, val: __u64) {
  2627. unsafe {
  2628. let val: u64 = ::core::mem::transmute(val);
  2629. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2630. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2631. 9usize,
  2632. 1u8,
  2633. val as u64,
  2634. )
  2635. }
  2636. }
  2637. #[inline]
  2638. pub fn freq(&self) -> __u64 {
  2639. unsafe { ::core::mem::transmute(self._bitfield_1.get(10usize, 1u8) as u64) }
  2640. }
  2641. #[inline]
  2642. pub fn set_freq(&mut self, val: __u64) {
  2643. unsafe {
  2644. let val: u64 = ::core::mem::transmute(val);
  2645. self._bitfield_1.set(10usize, 1u8, val as u64)
  2646. }
  2647. }
  2648. #[inline]
  2649. pub unsafe fn freq_raw(this: *const Self) -> __u64 {
  2650. unsafe {
  2651. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2652. ::core::ptr::addr_of!((*this)._bitfield_1),
  2653. 10usize,
  2654. 1u8,
  2655. ) as u64)
  2656. }
  2657. }
  2658. #[inline]
  2659. pub unsafe fn set_freq_raw(this: *mut Self, val: __u64) {
  2660. unsafe {
  2661. let val: u64 = ::core::mem::transmute(val);
  2662. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2663. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2664. 10usize,
  2665. 1u8,
  2666. val as u64,
  2667. )
  2668. }
  2669. }
  2670. #[inline]
  2671. pub fn inherit_stat(&self) -> __u64 {
  2672. unsafe { ::core::mem::transmute(self._bitfield_1.get(11usize, 1u8) as u64) }
  2673. }
  2674. #[inline]
  2675. pub fn set_inherit_stat(&mut self, val: __u64) {
  2676. unsafe {
  2677. let val: u64 = ::core::mem::transmute(val);
  2678. self._bitfield_1.set(11usize, 1u8, val as u64)
  2679. }
  2680. }
  2681. #[inline]
  2682. pub unsafe fn inherit_stat_raw(this: *const Self) -> __u64 {
  2683. unsafe {
  2684. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2685. ::core::ptr::addr_of!((*this)._bitfield_1),
  2686. 11usize,
  2687. 1u8,
  2688. ) as u64)
  2689. }
  2690. }
  2691. #[inline]
  2692. pub unsafe fn set_inherit_stat_raw(this: *mut Self, val: __u64) {
  2693. unsafe {
  2694. let val: u64 = ::core::mem::transmute(val);
  2695. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2696. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2697. 11usize,
  2698. 1u8,
  2699. val as u64,
  2700. )
  2701. }
  2702. }
  2703. #[inline]
  2704. pub fn enable_on_exec(&self) -> __u64 {
  2705. unsafe { ::core::mem::transmute(self._bitfield_1.get(12usize, 1u8) as u64) }
  2706. }
  2707. #[inline]
  2708. pub fn set_enable_on_exec(&mut self, val: __u64) {
  2709. unsafe {
  2710. let val: u64 = ::core::mem::transmute(val);
  2711. self._bitfield_1.set(12usize, 1u8, val as u64)
  2712. }
  2713. }
  2714. #[inline]
  2715. pub unsafe fn enable_on_exec_raw(this: *const Self) -> __u64 {
  2716. unsafe {
  2717. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2718. ::core::ptr::addr_of!((*this)._bitfield_1),
  2719. 12usize,
  2720. 1u8,
  2721. ) as u64)
  2722. }
  2723. }
  2724. #[inline]
  2725. pub unsafe fn set_enable_on_exec_raw(this: *mut Self, val: __u64) {
  2726. unsafe {
  2727. let val: u64 = ::core::mem::transmute(val);
  2728. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2729. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2730. 12usize,
  2731. 1u8,
  2732. val as u64,
  2733. )
  2734. }
  2735. }
  2736. #[inline]
  2737. pub fn task(&self) -> __u64 {
  2738. unsafe { ::core::mem::transmute(self._bitfield_1.get(13usize, 1u8) as u64) }
  2739. }
  2740. #[inline]
  2741. pub fn set_task(&mut self, val: __u64) {
  2742. unsafe {
  2743. let val: u64 = ::core::mem::transmute(val);
  2744. self._bitfield_1.set(13usize, 1u8, val as u64)
  2745. }
  2746. }
  2747. #[inline]
  2748. pub unsafe fn task_raw(this: *const Self) -> __u64 {
  2749. unsafe {
  2750. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2751. ::core::ptr::addr_of!((*this)._bitfield_1),
  2752. 13usize,
  2753. 1u8,
  2754. ) as u64)
  2755. }
  2756. }
  2757. #[inline]
  2758. pub unsafe fn set_task_raw(this: *mut Self, val: __u64) {
  2759. unsafe {
  2760. let val: u64 = ::core::mem::transmute(val);
  2761. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2762. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2763. 13usize,
  2764. 1u8,
  2765. val as u64,
  2766. )
  2767. }
  2768. }
  2769. #[inline]
  2770. pub fn watermark(&self) -> __u64 {
  2771. unsafe { ::core::mem::transmute(self._bitfield_1.get(14usize, 1u8) as u64) }
  2772. }
  2773. #[inline]
  2774. pub fn set_watermark(&mut self, val: __u64) {
  2775. unsafe {
  2776. let val: u64 = ::core::mem::transmute(val);
  2777. self._bitfield_1.set(14usize, 1u8, val as u64)
  2778. }
  2779. }
  2780. #[inline]
  2781. pub unsafe fn watermark_raw(this: *const Self) -> __u64 {
  2782. unsafe {
  2783. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2784. ::core::ptr::addr_of!((*this)._bitfield_1),
  2785. 14usize,
  2786. 1u8,
  2787. ) as u64)
  2788. }
  2789. }
  2790. #[inline]
  2791. pub unsafe fn set_watermark_raw(this: *mut Self, val: __u64) {
  2792. unsafe {
  2793. let val: u64 = ::core::mem::transmute(val);
  2794. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2795. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2796. 14usize,
  2797. 1u8,
  2798. val as u64,
  2799. )
  2800. }
  2801. }
  2802. #[inline]
  2803. pub fn precise_ip(&self) -> __u64 {
  2804. unsafe { ::core::mem::transmute(self._bitfield_1.get(15usize, 2u8) as u64) }
  2805. }
  2806. #[inline]
  2807. pub fn set_precise_ip(&mut self, val: __u64) {
  2808. unsafe {
  2809. let val: u64 = ::core::mem::transmute(val);
  2810. self._bitfield_1.set(15usize, 2u8, val as u64)
  2811. }
  2812. }
  2813. #[inline]
  2814. pub unsafe fn precise_ip_raw(this: *const Self) -> __u64 {
  2815. unsafe {
  2816. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2817. ::core::ptr::addr_of!((*this)._bitfield_1),
  2818. 15usize,
  2819. 2u8,
  2820. ) as u64)
  2821. }
  2822. }
  2823. #[inline]
  2824. pub unsafe fn set_precise_ip_raw(this: *mut Self, val: __u64) {
  2825. unsafe {
  2826. let val: u64 = ::core::mem::transmute(val);
  2827. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2828. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2829. 15usize,
  2830. 2u8,
  2831. val as u64,
  2832. )
  2833. }
  2834. }
  2835. #[inline]
  2836. pub fn mmap_data(&self) -> __u64 {
  2837. unsafe { ::core::mem::transmute(self._bitfield_1.get(17usize, 1u8) as u64) }
  2838. }
  2839. #[inline]
  2840. pub fn set_mmap_data(&mut self, val: __u64) {
  2841. unsafe {
  2842. let val: u64 = ::core::mem::transmute(val);
  2843. self._bitfield_1.set(17usize, 1u8, val as u64)
  2844. }
  2845. }
  2846. #[inline]
  2847. pub unsafe fn mmap_data_raw(this: *const Self) -> __u64 {
  2848. unsafe {
  2849. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2850. ::core::ptr::addr_of!((*this)._bitfield_1),
  2851. 17usize,
  2852. 1u8,
  2853. ) as u64)
  2854. }
  2855. }
  2856. #[inline]
  2857. pub unsafe fn set_mmap_data_raw(this: *mut Self, val: __u64) {
  2858. unsafe {
  2859. let val: u64 = ::core::mem::transmute(val);
  2860. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2861. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2862. 17usize,
  2863. 1u8,
  2864. val as u64,
  2865. )
  2866. }
  2867. }
  2868. #[inline]
  2869. pub fn sample_id_all(&self) -> __u64 {
  2870. unsafe { ::core::mem::transmute(self._bitfield_1.get(18usize, 1u8) as u64) }
  2871. }
  2872. #[inline]
  2873. pub fn set_sample_id_all(&mut self, val: __u64) {
  2874. unsafe {
  2875. let val: u64 = ::core::mem::transmute(val);
  2876. self._bitfield_1.set(18usize, 1u8, val as u64)
  2877. }
  2878. }
  2879. #[inline]
  2880. pub unsafe fn sample_id_all_raw(this: *const Self) -> __u64 {
  2881. unsafe {
  2882. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2883. ::core::ptr::addr_of!((*this)._bitfield_1),
  2884. 18usize,
  2885. 1u8,
  2886. ) as u64)
  2887. }
  2888. }
  2889. #[inline]
  2890. pub unsafe fn set_sample_id_all_raw(this: *mut Self, val: __u64) {
  2891. unsafe {
  2892. let val: u64 = ::core::mem::transmute(val);
  2893. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2894. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2895. 18usize,
  2896. 1u8,
  2897. val as u64,
  2898. )
  2899. }
  2900. }
  2901. #[inline]
  2902. pub fn exclude_host(&self) -> __u64 {
  2903. unsafe { ::core::mem::transmute(self._bitfield_1.get(19usize, 1u8) as u64) }
  2904. }
  2905. #[inline]
  2906. pub fn set_exclude_host(&mut self, val: __u64) {
  2907. unsafe {
  2908. let val: u64 = ::core::mem::transmute(val);
  2909. self._bitfield_1.set(19usize, 1u8, val as u64)
  2910. }
  2911. }
  2912. #[inline]
  2913. pub unsafe fn exclude_host_raw(this: *const Self) -> __u64 {
  2914. unsafe {
  2915. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2916. ::core::ptr::addr_of!((*this)._bitfield_1),
  2917. 19usize,
  2918. 1u8,
  2919. ) as u64)
  2920. }
  2921. }
  2922. #[inline]
  2923. pub unsafe fn set_exclude_host_raw(this: *mut Self, val: __u64) {
  2924. unsafe {
  2925. let val: u64 = ::core::mem::transmute(val);
  2926. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2927. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2928. 19usize,
  2929. 1u8,
  2930. val as u64,
  2931. )
  2932. }
  2933. }
  2934. #[inline]
  2935. pub fn exclude_guest(&self) -> __u64 {
  2936. unsafe { ::core::mem::transmute(self._bitfield_1.get(20usize, 1u8) as u64) }
  2937. }
  2938. #[inline]
  2939. pub fn set_exclude_guest(&mut self, val: __u64) {
  2940. unsafe {
  2941. let val: u64 = ::core::mem::transmute(val);
  2942. self._bitfield_1.set(20usize, 1u8, val as u64)
  2943. }
  2944. }
  2945. #[inline]
  2946. pub unsafe fn exclude_guest_raw(this: *const Self) -> __u64 {
  2947. unsafe {
  2948. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2949. ::core::ptr::addr_of!((*this)._bitfield_1),
  2950. 20usize,
  2951. 1u8,
  2952. ) as u64)
  2953. }
  2954. }
  2955. #[inline]
  2956. pub unsafe fn set_exclude_guest_raw(this: *mut Self, val: __u64) {
  2957. unsafe {
  2958. let val: u64 = ::core::mem::transmute(val);
  2959. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2960. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2961. 20usize,
  2962. 1u8,
  2963. val as u64,
  2964. )
  2965. }
  2966. }
  2967. #[inline]
  2968. pub fn exclude_callchain_kernel(&self) -> __u64 {
  2969. unsafe { ::core::mem::transmute(self._bitfield_1.get(21usize, 1u8) as u64) }
  2970. }
  2971. #[inline]
  2972. pub fn set_exclude_callchain_kernel(&mut self, val: __u64) {
  2973. unsafe {
  2974. let val: u64 = ::core::mem::transmute(val);
  2975. self._bitfield_1.set(21usize, 1u8, val as u64)
  2976. }
  2977. }
  2978. #[inline]
  2979. pub unsafe fn exclude_callchain_kernel_raw(this: *const Self) -> __u64 {
  2980. unsafe {
  2981. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  2982. ::core::ptr::addr_of!((*this)._bitfield_1),
  2983. 21usize,
  2984. 1u8,
  2985. ) as u64)
  2986. }
  2987. }
  2988. #[inline]
  2989. pub unsafe fn set_exclude_callchain_kernel_raw(this: *mut Self, val: __u64) {
  2990. unsafe {
  2991. let val: u64 = ::core::mem::transmute(val);
  2992. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  2993. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  2994. 21usize,
  2995. 1u8,
  2996. val as u64,
  2997. )
  2998. }
  2999. }
  3000. #[inline]
  3001. pub fn exclude_callchain_user(&self) -> __u64 {
  3002. unsafe { ::core::mem::transmute(self._bitfield_1.get(22usize, 1u8) as u64) }
  3003. }
  3004. #[inline]
  3005. pub fn set_exclude_callchain_user(&mut self, val: __u64) {
  3006. unsafe {
  3007. let val: u64 = ::core::mem::transmute(val);
  3008. self._bitfield_1.set(22usize, 1u8, val as u64)
  3009. }
  3010. }
  3011. #[inline]
  3012. pub unsafe fn exclude_callchain_user_raw(this: *const Self) -> __u64 {
  3013. unsafe {
  3014. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3015. ::core::ptr::addr_of!((*this)._bitfield_1),
  3016. 22usize,
  3017. 1u8,
  3018. ) as u64)
  3019. }
  3020. }
  3021. #[inline]
  3022. pub unsafe fn set_exclude_callchain_user_raw(this: *mut Self, val: __u64) {
  3023. unsafe {
  3024. let val: u64 = ::core::mem::transmute(val);
  3025. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3026. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3027. 22usize,
  3028. 1u8,
  3029. val as u64,
  3030. )
  3031. }
  3032. }
  3033. #[inline]
  3034. pub fn mmap2(&self) -> __u64 {
  3035. unsafe { ::core::mem::transmute(self._bitfield_1.get(23usize, 1u8) as u64) }
  3036. }
  3037. #[inline]
  3038. pub fn set_mmap2(&mut self, val: __u64) {
  3039. unsafe {
  3040. let val: u64 = ::core::mem::transmute(val);
  3041. self._bitfield_1.set(23usize, 1u8, val as u64)
  3042. }
  3043. }
  3044. #[inline]
  3045. pub unsafe fn mmap2_raw(this: *const Self) -> __u64 {
  3046. unsafe {
  3047. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3048. ::core::ptr::addr_of!((*this)._bitfield_1),
  3049. 23usize,
  3050. 1u8,
  3051. ) as u64)
  3052. }
  3053. }
  3054. #[inline]
  3055. pub unsafe fn set_mmap2_raw(this: *mut Self, val: __u64) {
  3056. unsafe {
  3057. let val: u64 = ::core::mem::transmute(val);
  3058. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3059. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3060. 23usize,
  3061. 1u8,
  3062. val as u64,
  3063. )
  3064. }
  3065. }
  3066. #[inline]
  3067. pub fn comm_exec(&self) -> __u64 {
  3068. unsafe { ::core::mem::transmute(self._bitfield_1.get(24usize, 1u8) as u64) }
  3069. }
  3070. #[inline]
  3071. pub fn set_comm_exec(&mut self, val: __u64) {
  3072. unsafe {
  3073. let val: u64 = ::core::mem::transmute(val);
  3074. self._bitfield_1.set(24usize, 1u8, val as u64)
  3075. }
  3076. }
  3077. #[inline]
  3078. pub unsafe fn comm_exec_raw(this: *const Self) -> __u64 {
  3079. unsafe {
  3080. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3081. ::core::ptr::addr_of!((*this)._bitfield_1),
  3082. 24usize,
  3083. 1u8,
  3084. ) as u64)
  3085. }
  3086. }
  3087. #[inline]
  3088. pub unsafe fn set_comm_exec_raw(this: *mut Self, val: __u64) {
  3089. unsafe {
  3090. let val: u64 = ::core::mem::transmute(val);
  3091. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3092. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3093. 24usize,
  3094. 1u8,
  3095. val as u64,
  3096. )
  3097. }
  3098. }
  3099. #[inline]
  3100. pub fn use_clockid(&self) -> __u64 {
  3101. unsafe { ::core::mem::transmute(self._bitfield_1.get(25usize, 1u8) as u64) }
  3102. }
  3103. #[inline]
  3104. pub fn set_use_clockid(&mut self, val: __u64) {
  3105. unsafe {
  3106. let val: u64 = ::core::mem::transmute(val);
  3107. self._bitfield_1.set(25usize, 1u8, val as u64)
  3108. }
  3109. }
  3110. #[inline]
  3111. pub unsafe fn use_clockid_raw(this: *const Self) -> __u64 {
  3112. unsafe {
  3113. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3114. ::core::ptr::addr_of!((*this)._bitfield_1),
  3115. 25usize,
  3116. 1u8,
  3117. ) as u64)
  3118. }
  3119. }
  3120. #[inline]
  3121. pub unsafe fn set_use_clockid_raw(this: *mut Self, val: __u64) {
  3122. unsafe {
  3123. let val: u64 = ::core::mem::transmute(val);
  3124. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3125. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3126. 25usize,
  3127. 1u8,
  3128. val as u64,
  3129. )
  3130. }
  3131. }
  3132. #[inline]
  3133. pub fn context_switch(&self) -> __u64 {
  3134. unsafe { ::core::mem::transmute(self._bitfield_1.get(26usize, 1u8) as u64) }
  3135. }
  3136. #[inline]
  3137. pub fn set_context_switch(&mut self, val: __u64) {
  3138. unsafe {
  3139. let val: u64 = ::core::mem::transmute(val);
  3140. self._bitfield_1.set(26usize, 1u8, val as u64)
  3141. }
  3142. }
  3143. #[inline]
  3144. pub unsafe fn context_switch_raw(this: *const Self) -> __u64 {
  3145. unsafe {
  3146. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3147. ::core::ptr::addr_of!((*this)._bitfield_1),
  3148. 26usize,
  3149. 1u8,
  3150. ) as u64)
  3151. }
  3152. }
  3153. #[inline]
  3154. pub unsafe fn set_context_switch_raw(this: *mut Self, val: __u64) {
  3155. unsafe {
  3156. let val: u64 = ::core::mem::transmute(val);
  3157. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3158. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3159. 26usize,
  3160. 1u8,
  3161. val as u64,
  3162. )
  3163. }
  3164. }
  3165. #[inline]
  3166. pub fn write_backward(&self) -> __u64 {
  3167. unsafe { ::core::mem::transmute(self._bitfield_1.get(27usize, 1u8) as u64) }
  3168. }
  3169. #[inline]
  3170. pub fn set_write_backward(&mut self, val: __u64) {
  3171. unsafe {
  3172. let val: u64 = ::core::mem::transmute(val);
  3173. self._bitfield_1.set(27usize, 1u8, val as u64)
  3174. }
  3175. }
  3176. #[inline]
  3177. pub unsafe fn write_backward_raw(this: *const Self) -> __u64 {
  3178. unsafe {
  3179. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3180. ::core::ptr::addr_of!((*this)._bitfield_1),
  3181. 27usize,
  3182. 1u8,
  3183. ) as u64)
  3184. }
  3185. }
  3186. #[inline]
  3187. pub unsafe fn set_write_backward_raw(this: *mut Self, val: __u64) {
  3188. unsafe {
  3189. let val: u64 = ::core::mem::transmute(val);
  3190. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3191. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3192. 27usize,
  3193. 1u8,
  3194. val as u64,
  3195. )
  3196. }
  3197. }
  3198. #[inline]
  3199. pub fn namespaces(&self) -> __u64 {
  3200. unsafe { ::core::mem::transmute(self._bitfield_1.get(28usize, 1u8) as u64) }
  3201. }
  3202. #[inline]
  3203. pub fn set_namespaces(&mut self, val: __u64) {
  3204. unsafe {
  3205. let val: u64 = ::core::mem::transmute(val);
  3206. self._bitfield_1.set(28usize, 1u8, val as u64)
  3207. }
  3208. }
  3209. #[inline]
  3210. pub unsafe fn namespaces_raw(this: *const Self) -> __u64 {
  3211. unsafe {
  3212. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3213. ::core::ptr::addr_of!((*this)._bitfield_1),
  3214. 28usize,
  3215. 1u8,
  3216. ) as u64)
  3217. }
  3218. }
  3219. #[inline]
  3220. pub unsafe fn set_namespaces_raw(this: *mut Self, val: __u64) {
  3221. unsafe {
  3222. let val: u64 = ::core::mem::transmute(val);
  3223. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3224. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3225. 28usize,
  3226. 1u8,
  3227. val as u64,
  3228. )
  3229. }
  3230. }
  3231. #[inline]
  3232. pub fn ksymbol(&self) -> __u64 {
  3233. unsafe { ::core::mem::transmute(self._bitfield_1.get(29usize, 1u8) as u64) }
  3234. }
  3235. #[inline]
  3236. pub fn set_ksymbol(&mut self, val: __u64) {
  3237. unsafe {
  3238. let val: u64 = ::core::mem::transmute(val);
  3239. self._bitfield_1.set(29usize, 1u8, val as u64)
  3240. }
  3241. }
  3242. #[inline]
  3243. pub unsafe fn ksymbol_raw(this: *const Self) -> __u64 {
  3244. unsafe {
  3245. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3246. ::core::ptr::addr_of!((*this)._bitfield_1),
  3247. 29usize,
  3248. 1u8,
  3249. ) as u64)
  3250. }
  3251. }
  3252. #[inline]
  3253. pub unsafe fn set_ksymbol_raw(this: *mut Self, val: __u64) {
  3254. unsafe {
  3255. let val: u64 = ::core::mem::transmute(val);
  3256. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3257. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3258. 29usize,
  3259. 1u8,
  3260. val as u64,
  3261. )
  3262. }
  3263. }
  3264. #[inline]
  3265. pub fn bpf_event(&self) -> __u64 {
  3266. unsafe { ::core::mem::transmute(self._bitfield_1.get(30usize, 1u8) as u64) }
  3267. }
  3268. #[inline]
  3269. pub fn set_bpf_event(&mut self, val: __u64) {
  3270. unsafe {
  3271. let val: u64 = ::core::mem::transmute(val);
  3272. self._bitfield_1.set(30usize, 1u8, val as u64)
  3273. }
  3274. }
  3275. #[inline]
  3276. pub unsafe fn bpf_event_raw(this: *const Self) -> __u64 {
  3277. unsafe {
  3278. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3279. ::core::ptr::addr_of!((*this)._bitfield_1),
  3280. 30usize,
  3281. 1u8,
  3282. ) as u64)
  3283. }
  3284. }
  3285. #[inline]
  3286. pub unsafe fn set_bpf_event_raw(this: *mut Self, val: __u64) {
  3287. unsafe {
  3288. let val: u64 = ::core::mem::transmute(val);
  3289. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3290. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3291. 30usize,
  3292. 1u8,
  3293. val as u64,
  3294. )
  3295. }
  3296. }
  3297. #[inline]
  3298. pub fn aux_output(&self) -> __u64 {
  3299. unsafe { ::core::mem::transmute(self._bitfield_1.get(31usize, 1u8) as u64) }
  3300. }
  3301. #[inline]
  3302. pub fn set_aux_output(&mut self, val: __u64) {
  3303. unsafe {
  3304. let val: u64 = ::core::mem::transmute(val);
  3305. self._bitfield_1.set(31usize, 1u8, val as u64)
  3306. }
  3307. }
  3308. #[inline]
  3309. pub unsafe fn aux_output_raw(this: *const Self) -> __u64 {
  3310. unsafe {
  3311. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3312. ::core::ptr::addr_of!((*this)._bitfield_1),
  3313. 31usize,
  3314. 1u8,
  3315. ) as u64)
  3316. }
  3317. }
  3318. #[inline]
  3319. pub unsafe fn set_aux_output_raw(this: *mut Self, val: __u64) {
  3320. unsafe {
  3321. let val: u64 = ::core::mem::transmute(val);
  3322. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3323. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3324. 31usize,
  3325. 1u8,
  3326. val as u64,
  3327. )
  3328. }
  3329. }
  3330. #[inline]
  3331. pub fn cgroup(&self) -> __u64 {
  3332. unsafe { ::core::mem::transmute(self._bitfield_1.get(32usize, 1u8) as u64) }
  3333. }
  3334. #[inline]
  3335. pub fn set_cgroup(&mut self, val: __u64) {
  3336. unsafe {
  3337. let val: u64 = ::core::mem::transmute(val);
  3338. self._bitfield_1.set(32usize, 1u8, val as u64)
  3339. }
  3340. }
  3341. #[inline]
  3342. pub unsafe fn cgroup_raw(this: *const Self) -> __u64 {
  3343. unsafe {
  3344. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3345. ::core::ptr::addr_of!((*this)._bitfield_1),
  3346. 32usize,
  3347. 1u8,
  3348. ) as u64)
  3349. }
  3350. }
  3351. #[inline]
  3352. pub unsafe fn set_cgroup_raw(this: *mut Self, val: __u64) {
  3353. unsafe {
  3354. let val: u64 = ::core::mem::transmute(val);
  3355. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3356. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3357. 32usize,
  3358. 1u8,
  3359. val as u64,
  3360. )
  3361. }
  3362. }
  3363. #[inline]
  3364. pub fn text_poke(&self) -> __u64 {
  3365. unsafe { ::core::mem::transmute(self._bitfield_1.get(33usize, 1u8) as u64) }
  3366. }
  3367. #[inline]
  3368. pub fn set_text_poke(&mut self, val: __u64) {
  3369. unsafe {
  3370. let val: u64 = ::core::mem::transmute(val);
  3371. self._bitfield_1.set(33usize, 1u8, val as u64)
  3372. }
  3373. }
  3374. #[inline]
  3375. pub unsafe fn text_poke_raw(this: *const Self) -> __u64 {
  3376. unsafe {
  3377. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3378. ::core::ptr::addr_of!((*this)._bitfield_1),
  3379. 33usize,
  3380. 1u8,
  3381. ) as u64)
  3382. }
  3383. }
  3384. #[inline]
  3385. pub unsafe fn set_text_poke_raw(this: *mut Self, val: __u64) {
  3386. unsafe {
  3387. let val: u64 = ::core::mem::transmute(val);
  3388. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3389. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3390. 33usize,
  3391. 1u8,
  3392. val as u64,
  3393. )
  3394. }
  3395. }
  3396. #[inline]
  3397. pub fn build_id(&self) -> __u64 {
  3398. unsafe { ::core::mem::transmute(self._bitfield_1.get(34usize, 1u8) as u64) }
  3399. }
  3400. #[inline]
  3401. pub fn set_build_id(&mut self, val: __u64) {
  3402. unsafe {
  3403. let val: u64 = ::core::mem::transmute(val);
  3404. self._bitfield_1.set(34usize, 1u8, val as u64)
  3405. }
  3406. }
  3407. #[inline]
  3408. pub unsafe fn build_id_raw(this: *const Self) -> __u64 {
  3409. unsafe {
  3410. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3411. ::core::ptr::addr_of!((*this)._bitfield_1),
  3412. 34usize,
  3413. 1u8,
  3414. ) as u64)
  3415. }
  3416. }
  3417. #[inline]
  3418. pub unsafe fn set_build_id_raw(this: *mut Self, val: __u64) {
  3419. unsafe {
  3420. let val: u64 = ::core::mem::transmute(val);
  3421. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3422. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3423. 34usize,
  3424. 1u8,
  3425. val as u64,
  3426. )
  3427. }
  3428. }
  3429. #[inline]
  3430. pub fn inherit_thread(&self) -> __u64 {
  3431. unsafe { ::core::mem::transmute(self._bitfield_1.get(35usize, 1u8) as u64) }
  3432. }
  3433. #[inline]
  3434. pub fn set_inherit_thread(&mut self, val: __u64) {
  3435. unsafe {
  3436. let val: u64 = ::core::mem::transmute(val);
  3437. self._bitfield_1.set(35usize, 1u8, val as u64)
  3438. }
  3439. }
  3440. #[inline]
  3441. pub unsafe fn inherit_thread_raw(this: *const Self) -> __u64 {
  3442. unsafe {
  3443. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3444. ::core::ptr::addr_of!((*this)._bitfield_1),
  3445. 35usize,
  3446. 1u8,
  3447. ) as u64)
  3448. }
  3449. }
  3450. #[inline]
  3451. pub unsafe fn set_inherit_thread_raw(this: *mut Self, val: __u64) {
  3452. unsafe {
  3453. let val: u64 = ::core::mem::transmute(val);
  3454. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3455. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3456. 35usize,
  3457. 1u8,
  3458. val as u64,
  3459. )
  3460. }
  3461. }
  3462. #[inline]
  3463. pub fn remove_on_exec(&self) -> __u64 {
  3464. unsafe { ::core::mem::transmute(self._bitfield_1.get(36usize, 1u8) as u64) }
  3465. }
  3466. #[inline]
  3467. pub fn set_remove_on_exec(&mut self, val: __u64) {
  3468. unsafe {
  3469. let val: u64 = ::core::mem::transmute(val);
  3470. self._bitfield_1.set(36usize, 1u8, val as u64)
  3471. }
  3472. }
  3473. #[inline]
  3474. pub unsafe fn remove_on_exec_raw(this: *const Self) -> __u64 {
  3475. unsafe {
  3476. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3477. ::core::ptr::addr_of!((*this)._bitfield_1),
  3478. 36usize,
  3479. 1u8,
  3480. ) as u64)
  3481. }
  3482. }
  3483. #[inline]
  3484. pub unsafe fn set_remove_on_exec_raw(this: *mut Self, val: __u64) {
  3485. unsafe {
  3486. let val: u64 = ::core::mem::transmute(val);
  3487. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3488. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3489. 36usize,
  3490. 1u8,
  3491. val as u64,
  3492. )
  3493. }
  3494. }
  3495. #[inline]
  3496. pub fn sigtrap(&self) -> __u64 {
  3497. unsafe { ::core::mem::transmute(self._bitfield_1.get(37usize, 1u8) as u64) }
  3498. }
  3499. #[inline]
  3500. pub fn set_sigtrap(&mut self, val: __u64) {
  3501. unsafe {
  3502. let val: u64 = ::core::mem::transmute(val);
  3503. self._bitfield_1.set(37usize, 1u8, val as u64)
  3504. }
  3505. }
  3506. #[inline]
  3507. pub unsafe fn sigtrap_raw(this: *const Self) -> __u64 {
  3508. unsafe {
  3509. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3510. ::core::ptr::addr_of!((*this)._bitfield_1),
  3511. 37usize,
  3512. 1u8,
  3513. ) as u64)
  3514. }
  3515. }
  3516. #[inline]
  3517. pub unsafe fn set_sigtrap_raw(this: *mut Self, val: __u64) {
  3518. unsafe {
  3519. let val: u64 = ::core::mem::transmute(val);
  3520. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3521. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3522. 37usize,
  3523. 1u8,
  3524. val as u64,
  3525. )
  3526. }
  3527. }
  3528. #[inline]
  3529. pub fn __reserved_1(&self) -> __u64 {
  3530. unsafe { ::core::mem::transmute(self._bitfield_1.get(38usize, 26u8) as u64) }
  3531. }
  3532. #[inline]
  3533. pub fn set___reserved_1(&mut self, val: __u64) {
  3534. unsafe {
  3535. let val: u64 = ::core::mem::transmute(val);
  3536. self._bitfield_1.set(38usize, 26u8, val as u64)
  3537. }
  3538. }
  3539. #[inline]
  3540. pub unsafe fn __reserved_1_raw(this: *const Self) -> __u64 {
  3541. unsafe {
  3542. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3543. ::core::ptr::addr_of!((*this)._bitfield_1),
  3544. 38usize,
  3545. 26u8,
  3546. ) as u64)
  3547. }
  3548. }
  3549. #[inline]
  3550. pub unsafe fn set___reserved_1_raw(this: *mut Self, val: __u64) {
  3551. unsafe {
  3552. let val: u64 = ::core::mem::transmute(val);
  3553. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3554. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3555. 38usize,
  3556. 26u8,
  3557. val as u64,
  3558. )
  3559. }
  3560. }
  3561. #[inline]
  3562. pub fn new_bitfield_1(
  3563. disabled: __u64,
  3564. inherit: __u64,
  3565. pinned: __u64,
  3566. exclusive: __u64,
  3567. exclude_user: __u64,
  3568. exclude_kernel: __u64,
  3569. exclude_hv: __u64,
  3570. exclude_idle: __u64,
  3571. mmap: __u64,
  3572. comm: __u64,
  3573. freq: __u64,
  3574. inherit_stat: __u64,
  3575. enable_on_exec: __u64,
  3576. task: __u64,
  3577. watermark: __u64,
  3578. precise_ip: __u64,
  3579. mmap_data: __u64,
  3580. sample_id_all: __u64,
  3581. exclude_host: __u64,
  3582. exclude_guest: __u64,
  3583. exclude_callchain_kernel: __u64,
  3584. exclude_callchain_user: __u64,
  3585. mmap2: __u64,
  3586. comm_exec: __u64,
  3587. use_clockid: __u64,
  3588. context_switch: __u64,
  3589. write_backward: __u64,
  3590. namespaces: __u64,
  3591. ksymbol: __u64,
  3592. bpf_event: __u64,
  3593. aux_output: __u64,
  3594. cgroup: __u64,
  3595. text_poke: __u64,
  3596. build_id: __u64,
  3597. inherit_thread: __u64,
  3598. remove_on_exec: __u64,
  3599. sigtrap: __u64,
  3600. __reserved_1: __u64,
  3601. ) -> __BindgenBitfieldUnit<[u8; 8usize]> {
  3602. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  3603. __bindgen_bitfield_unit.set(0usize, 1u8, {
  3604. let disabled: u64 = unsafe { ::core::mem::transmute(disabled) };
  3605. disabled as u64
  3606. });
  3607. __bindgen_bitfield_unit.set(1usize, 1u8, {
  3608. let inherit: u64 = unsafe { ::core::mem::transmute(inherit) };
  3609. inherit as u64
  3610. });
  3611. __bindgen_bitfield_unit.set(2usize, 1u8, {
  3612. let pinned: u64 = unsafe { ::core::mem::transmute(pinned) };
  3613. pinned as u64
  3614. });
  3615. __bindgen_bitfield_unit.set(3usize, 1u8, {
  3616. let exclusive: u64 = unsafe { ::core::mem::transmute(exclusive) };
  3617. exclusive as u64
  3618. });
  3619. __bindgen_bitfield_unit.set(4usize, 1u8, {
  3620. let exclude_user: u64 = unsafe { ::core::mem::transmute(exclude_user) };
  3621. exclude_user as u64
  3622. });
  3623. __bindgen_bitfield_unit.set(5usize, 1u8, {
  3624. let exclude_kernel: u64 = unsafe { ::core::mem::transmute(exclude_kernel) };
  3625. exclude_kernel as u64
  3626. });
  3627. __bindgen_bitfield_unit.set(6usize, 1u8, {
  3628. let exclude_hv: u64 = unsafe { ::core::mem::transmute(exclude_hv) };
  3629. exclude_hv as u64
  3630. });
  3631. __bindgen_bitfield_unit.set(7usize, 1u8, {
  3632. let exclude_idle: u64 = unsafe { ::core::mem::transmute(exclude_idle) };
  3633. exclude_idle as u64
  3634. });
  3635. __bindgen_bitfield_unit.set(8usize, 1u8, {
  3636. let mmap: u64 = unsafe { ::core::mem::transmute(mmap) };
  3637. mmap as u64
  3638. });
  3639. __bindgen_bitfield_unit.set(9usize, 1u8, {
  3640. let comm: u64 = unsafe { ::core::mem::transmute(comm) };
  3641. comm as u64
  3642. });
  3643. __bindgen_bitfield_unit.set(10usize, 1u8, {
  3644. let freq: u64 = unsafe { ::core::mem::transmute(freq) };
  3645. freq as u64
  3646. });
  3647. __bindgen_bitfield_unit.set(11usize, 1u8, {
  3648. let inherit_stat: u64 = unsafe { ::core::mem::transmute(inherit_stat) };
  3649. inherit_stat as u64
  3650. });
  3651. __bindgen_bitfield_unit.set(12usize, 1u8, {
  3652. let enable_on_exec: u64 = unsafe { ::core::mem::transmute(enable_on_exec) };
  3653. enable_on_exec as u64
  3654. });
  3655. __bindgen_bitfield_unit.set(13usize, 1u8, {
  3656. let task: u64 = unsafe { ::core::mem::transmute(task) };
  3657. task as u64
  3658. });
  3659. __bindgen_bitfield_unit.set(14usize, 1u8, {
  3660. let watermark: u64 = unsafe { ::core::mem::transmute(watermark) };
  3661. watermark as u64
  3662. });
  3663. __bindgen_bitfield_unit.set(15usize, 2u8, {
  3664. let precise_ip: u64 = unsafe { ::core::mem::transmute(precise_ip) };
  3665. precise_ip as u64
  3666. });
  3667. __bindgen_bitfield_unit.set(17usize, 1u8, {
  3668. let mmap_data: u64 = unsafe { ::core::mem::transmute(mmap_data) };
  3669. mmap_data as u64
  3670. });
  3671. __bindgen_bitfield_unit.set(18usize, 1u8, {
  3672. let sample_id_all: u64 = unsafe { ::core::mem::transmute(sample_id_all) };
  3673. sample_id_all as u64
  3674. });
  3675. __bindgen_bitfield_unit.set(19usize, 1u8, {
  3676. let exclude_host: u64 = unsafe { ::core::mem::transmute(exclude_host) };
  3677. exclude_host as u64
  3678. });
  3679. __bindgen_bitfield_unit.set(20usize, 1u8, {
  3680. let exclude_guest: u64 = unsafe { ::core::mem::transmute(exclude_guest) };
  3681. exclude_guest as u64
  3682. });
  3683. __bindgen_bitfield_unit.set(21usize, 1u8, {
  3684. let exclude_callchain_kernel: u64 =
  3685. unsafe { ::core::mem::transmute(exclude_callchain_kernel) };
  3686. exclude_callchain_kernel as u64
  3687. });
  3688. __bindgen_bitfield_unit.set(22usize, 1u8, {
  3689. let exclude_callchain_user: u64 =
  3690. unsafe { ::core::mem::transmute(exclude_callchain_user) };
  3691. exclude_callchain_user as u64
  3692. });
  3693. __bindgen_bitfield_unit.set(23usize, 1u8, {
  3694. let mmap2: u64 = unsafe { ::core::mem::transmute(mmap2) };
  3695. mmap2 as u64
  3696. });
  3697. __bindgen_bitfield_unit.set(24usize, 1u8, {
  3698. let comm_exec: u64 = unsafe { ::core::mem::transmute(comm_exec) };
  3699. comm_exec as u64
  3700. });
  3701. __bindgen_bitfield_unit.set(25usize, 1u8, {
  3702. let use_clockid: u64 = unsafe { ::core::mem::transmute(use_clockid) };
  3703. use_clockid as u64
  3704. });
  3705. __bindgen_bitfield_unit.set(26usize, 1u8, {
  3706. let context_switch: u64 = unsafe { ::core::mem::transmute(context_switch) };
  3707. context_switch as u64
  3708. });
  3709. __bindgen_bitfield_unit.set(27usize, 1u8, {
  3710. let write_backward: u64 = unsafe { ::core::mem::transmute(write_backward) };
  3711. write_backward as u64
  3712. });
  3713. __bindgen_bitfield_unit.set(28usize, 1u8, {
  3714. let namespaces: u64 = unsafe { ::core::mem::transmute(namespaces) };
  3715. namespaces as u64
  3716. });
  3717. __bindgen_bitfield_unit.set(29usize, 1u8, {
  3718. let ksymbol: u64 = unsafe { ::core::mem::transmute(ksymbol) };
  3719. ksymbol as u64
  3720. });
  3721. __bindgen_bitfield_unit.set(30usize, 1u8, {
  3722. let bpf_event: u64 = unsafe { ::core::mem::transmute(bpf_event) };
  3723. bpf_event as u64
  3724. });
  3725. __bindgen_bitfield_unit.set(31usize, 1u8, {
  3726. let aux_output: u64 = unsafe { ::core::mem::transmute(aux_output) };
  3727. aux_output as u64
  3728. });
  3729. __bindgen_bitfield_unit.set(32usize, 1u8, {
  3730. let cgroup: u64 = unsafe { ::core::mem::transmute(cgroup) };
  3731. cgroup as u64
  3732. });
  3733. __bindgen_bitfield_unit.set(33usize, 1u8, {
  3734. let text_poke: u64 = unsafe { ::core::mem::transmute(text_poke) };
  3735. text_poke as u64
  3736. });
  3737. __bindgen_bitfield_unit.set(34usize, 1u8, {
  3738. let build_id: u64 = unsafe { ::core::mem::transmute(build_id) };
  3739. build_id as u64
  3740. });
  3741. __bindgen_bitfield_unit.set(35usize, 1u8, {
  3742. let inherit_thread: u64 = unsafe { ::core::mem::transmute(inherit_thread) };
  3743. inherit_thread as u64
  3744. });
  3745. __bindgen_bitfield_unit.set(36usize, 1u8, {
  3746. let remove_on_exec: u64 = unsafe { ::core::mem::transmute(remove_on_exec) };
  3747. remove_on_exec as u64
  3748. });
  3749. __bindgen_bitfield_unit.set(37usize, 1u8, {
  3750. let sigtrap: u64 = unsafe { ::core::mem::transmute(sigtrap) };
  3751. sigtrap as u64
  3752. });
  3753. __bindgen_bitfield_unit.set(38usize, 26u8, {
  3754. let __reserved_1: u64 = unsafe { ::core::mem::transmute(__reserved_1) };
  3755. __reserved_1 as u64
  3756. });
  3757. __bindgen_bitfield_unit
  3758. }
  3759. }
  3760. #[repr(C)]
  3761. #[derive(Copy, Clone)]
  3762. pub struct perf_event_mmap_page {
  3763. pub version: __u32,
  3764. pub compat_version: __u32,
  3765. pub lock: __u32,
  3766. pub index: __u32,
  3767. pub offset: __s64,
  3768. pub time_enabled: __u64,
  3769. pub time_running: __u64,
  3770. pub __bindgen_anon_1: perf_event_mmap_page__bindgen_ty_1,
  3771. pub pmc_width: __u16,
  3772. pub time_shift: __u16,
  3773. pub time_mult: __u32,
  3774. pub time_offset: __u64,
  3775. pub time_zero: __u64,
  3776. pub size: __u32,
  3777. pub __reserved_1: __u32,
  3778. pub time_cycles: __u64,
  3779. pub time_mask: __u64,
  3780. pub __reserved: [__u8; 928usize],
  3781. pub data_head: __u64,
  3782. pub data_tail: __u64,
  3783. pub data_offset: __u64,
  3784. pub data_size: __u64,
  3785. pub aux_head: __u64,
  3786. pub aux_tail: __u64,
  3787. pub aux_offset: __u64,
  3788. pub aux_size: __u64,
  3789. }
  3790. #[repr(C)]
  3791. #[derive(Copy, Clone)]
  3792. pub union perf_event_mmap_page__bindgen_ty_1 {
  3793. pub capabilities: __u64,
  3794. pub __bindgen_anon_1: perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1,
  3795. }
  3796. #[repr(C)]
  3797. #[derive(Debug, Copy, Clone)]
  3798. pub struct perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 {
  3799. pub _bitfield_align_1: [u64; 0],
  3800. pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8usize]>,
  3801. }
  3802. impl perf_event_mmap_page__bindgen_ty_1__bindgen_ty_1 {
  3803. #[inline]
  3804. pub fn cap_bit0(&self) -> __u64 {
  3805. unsafe { ::core::mem::transmute(self._bitfield_1.get(0usize, 1u8) as u64) }
  3806. }
  3807. #[inline]
  3808. pub fn set_cap_bit0(&mut self, val: __u64) {
  3809. unsafe {
  3810. let val: u64 = ::core::mem::transmute(val);
  3811. self._bitfield_1.set(0usize, 1u8, val as u64)
  3812. }
  3813. }
  3814. #[inline]
  3815. pub unsafe fn cap_bit0_raw(this: *const Self) -> __u64 {
  3816. unsafe {
  3817. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3818. ::core::ptr::addr_of!((*this)._bitfield_1),
  3819. 0usize,
  3820. 1u8,
  3821. ) as u64)
  3822. }
  3823. }
  3824. #[inline]
  3825. pub unsafe fn set_cap_bit0_raw(this: *mut Self, val: __u64) {
  3826. unsafe {
  3827. let val: u64 = ::core::mem::transmute(val);
  3828. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3829. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3830. 0usize,
  3831. 1u8,
  3832. val as u64,
  3833. )
  3834. }
  3835. }
  3836. #[inline]
  3837. pub fn cap_bit0_is_deprecated(&self) -> __u64 {
  3838. unsafe { ::core::mem::transmute(self._bitfield_1.get(1usize, 1u8) as u64) }
  3839. }
  3840. #[inline]
  3841. pub fn set_cap_bit0_is_deprecated(&mut self, val: __u64) {
  3842. unsafe {
  3843. let val: u64 = ::core::mem::transmute(val);
  3844. self._bitfield_1.set(1usize, 1u8, val as u64)
  3845. }
  3846. }
  3847. #[inline]
  3848. pub unsafe fn cap_bit0_is_deprecated_raw(this: *const Self) -> __u64 {
  3849. unsafe {
  3850. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3851. ::core::ptr::addr_of!((*this)._bitfield_1),
  3852. 1usize,
  3853. 1u8,
  3854. ) as u64)
  3855. }
  3856. }
  3857. #[inline]
  3858. pub unsafe fn set_cap_bit0_is_deprecated_raw(this: *mut Self, val: __u64) {
  3859. unsafe {
  3860. let val: u64 = ::core::mem::transmute(val);
  3861. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3862. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3863. 1usize,
  3864. 1u8,
  3865. val as u64,
  3866. )
  3867. }
  3868. }
  3869. #[inline]
  3870. pub fn cap_user_rdpmc(&self) -> __u64 {
  3871. unsafe { ::core::mem::transmute(self._bitfield_1.get(2usize, 1u8) as u64) }
  3872. }
  3873. #[inline]
  3874. pub fn set_cap_user_rdpmc(&mut self, val: __u64) {
  3875. unsafe {
  3876. let val: u64 = ::core::mem::transmute(val);
  3877. self._bitfield_1.set(2usize, 1u8, val as u64)
  3878. }
  3879. }
  3880. #[inline]
  3881. pub unsafe fn cap_user_rdpmc_raw(this: *const Self) -> __u64 {
  3882. unsafe {
  3883. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3884. ::core::ptr::addr_of!((*this)._bitfield_1),
  3885. 2usize,
  3886. 1u8,
  3887. ) as u64)
  3888. }
  3889. }
  3890. #[inline]
  3891. pub unsafe fn set_cap_user_rdpmc_raw(this: *mut Self, val: __u64) {
  3892. unsafe {
  3893. let val: u64 = ::core::mem::transmute(val);
  3894. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3895. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3896. 2usize,
  3897. 1u8,
  3898. val as u64,
  3899. )
  3900. }
  3901. }
  3902. #[inline]
  3903. pub fn cap_user_time(&self) -> __u64 {
  3904. unsafe { ::core::mem::transmute(self._bitfield_1.get(3usize, 1u8) as u64) }
  3905. }
  3906. #[inline]
  3907. pub fn set_cap_user_time(&mut self, val: __u64) {
  3908. unsafe {
  3909. let val: u64 = ::core::mem::transmute(val);
  3910. self._bitfield_1.set(3usize, 1u8, val as u64)
  3911. }
  3912. }
  3913. #[inline]
  3914. pub unsafe fn cap_user_time_raw(this: *const Self) -> __u64 {
  3915. unsafe {
  3916. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3917. ::core::ptr::addr_of!((*this)._bitfield_1),
  3918. 3usize,
  3919. 1u8,
  3920. ) as u64)
  3921. }
  3922. }
  3923. #[inline]
  3924. pub unsafe fn set_cap_user_time_raw(this: *mut Self, val: __u64) {
  3925. unsafe {
  3926. let val: u64 = ::core::mem::transmute(val);
  3927. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3928. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3929. 3usize,
  3930. 1u8,
  3931. val as u64,
  3932. )
  3933. }
  3934. }
  3935. #[inline]
  3936. pub fn cap_user_time_zero(&self) -> __u64 {
  3937. unsafe { ::core::mem::transmute(self._bitfield_1.get(4usize, 1u8) as u64) }
  3938. }
  3939. #[inline]
  3940. pub fn set_cap_user_time_zero(&mut self, val: __u64) {
  3941. unsafe {
  3942. let val: u64 = ::core::mem::transmute(val);
  3943. self._bitfield_1.set(4usize, 1u8, val as u64)
  3944. }
  3945. }
  3946. #[inline]
  3947. pub unsafe fn cap_user_time_zero_raw(this: *const Self) -> __u64 {
  3948. unsafe {
  3949. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3950. ::core::ptr::addr_of!((*this)._bitfield_1),
  3951. 4usize,
  3952. 1u8,
  3953. ) as u64)
  3954. }
  3955. }
  3956. #[inline]
  3957. pub unsafe fn set_cap_user_time_zero_raw(this: *mut Self, val: __u64) {
  3958. unsafe {
  3959. let val: u64 = ::core::mem::transmute(val);
  3960. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3961. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3962. 4usize,
  3963. 1u8,
  3964. val as u64,
  3965. )
  3966. }
  3967. }
  3968. #[inline]
  3969. pub fn cap_user_time_short(&self) -> __u64 {
  3970. unsafe { ::core::mem::transmute(self._bitfield_1.get(5usize, 1u8) as u64) }
  3971. }
  3972. #[inline]
  3973. pub fn set_cap_user_time_short(&mut self, val: __u64) {
  3974. unsafe {
  3975. let val: u64 = ::core::mem::transmute(val);
  3976. self._bitfield_1.set(5usize, 1u8, val as u64)
  3977. }
  3978. }
  3979. #[inline]
  3980. pub unsafe fn cap_user_time_short_raw(this: *const Self) -> __u64 {
  3981. unsafe {
  3982. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  3983. ::core::ptr::addr_of!((*this)._bitfield_1),
  3984. 5usize,
  3985. 1u8,
  3986. ) as u64)
  3987. }
  3988. }
  3989. #[inline]
  3990. pub unsafe fn set_cap_user_time_short_raw(this: *mut Self, val: __u64) {
  3991. unsafe {
  3992. let val: u64 = ::core::mem::transmute(val);
  3993. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  3994. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  3995. 5usize,
  3996. 1u8,
  3997. val as u64,
  3998. )
  3999. }
  4000. }
  4001. #[inline]
  4002. pub fn cap_____res(&self) -> __u64 {
  4003. unsafe { ::core::mem::transmute(self._bitfield_1.get(6usize, 58u8) as u64) }
  4004. }
  4005. #[inline]
  4006. pub fn set_cap_____res(&mut self, val: __u64) {
  4007. unsafe {
  4008. let val: u64 = ::core::mem::transmute(val);
  4009. self._bitfield_1.set(6usize, 58u8, val as u64)
  4010. }
  4011. }
  4012. #[inline]
  4013. pub unsafe fn cap_____res_raw(this: *const Self) -> __u64 {
  4014. unsafe {
  4015. ::core::mem::transmute(<__BindgenBitfieldUnit<[u8; 8usize]>>::raw_get(
  4016. ::core::ptr::addr_of!((*this)._bitfield_1),
  4017. 6usize,
  4018. 58u8,
  4019. ) as u64)
  4020. }
  4021. }
  4022. #[inline]
  4023. pub unsafe fn set_cap_____res_raw(this: *mut Self, val: __u64) {
  4024. unsafe {
  4025. let val: u64 = ::core::mem::transmute(val);
  4026. <__BindgenBitfieldUnit<[u8; 8usize]>>::raw_set(
  4027. ::core::ptr::addr_of_mut!((*this)._bitfield_1),
  4028. 6usize,
  4029. 58u8,
  4030. val as u64,
  4031. )
  4032. }
  4033. }
  4034. #[inline]
  4035. pub fn new_bitfield_1(
  4036. cap_bit0: __u64,
  4037. cap_bit0_is_deprecated: __u64,
  4038. cap_user_rdpmc: __u64,
  4039. cap_user_time: __u64,
  4040. cap_user_time_zero: __u64,
  4041. cap_user_time_short: __u64,
  4042. cap_____res: __u64,
  4043. ) -> __BindgenBitfieldUnit<[u8; 8usize]> {
  4044. let mut __bindgen_bitfield_unit: __BindgenBitfieldUnit<[u8; 8usize]> = Default::default();
  4045. __bindgen_bitfield_unit.set(0usize, 1u8, {
  4046. let cap_bit0: u64 = unsafe { ::core::mem::transmute(cap_bit0) };
  4047. cap_bit0 as u64
  4048. });
  4049. __bindgen_bitfield_unit.set(1usize, 1u8, {
  4050. let cap_bit0_is_deprecated: u64 =
  4051. unsafe { ::core::mem::transmute(cap_bit0_is_deprecated) };
  4052. cap_bit0_is_deprecated as u64
  4053. });
  4054. __bindgen_bitfield_unit.set(2usize, 1u8, {
  4055. let cap_user_rdpmc: u64 = unsafe { ::core::mem::transmute(cap_user_rdpmc) };
  4056. cap_user_rdpmc as u64
  4057. });
  4058. __bindgen_bitfield_unit.set(3usize, 1u8, {
  4059. let cap_user_time: u64 = unsafe { ::core::mem::transmute(cap_user_time) };
  4060. cap_user_time as u64
  4061. });
  4062. __bindgen_bitfield_unit.set(4usize, 1u8, {
  4063. let cap_user_time_zero: u64 = unsafe { ::core::mem::transmute(cap_user_time_zero) };
  4064. cap_user_time_zero as u64
  4065. });
  4066. __bindgen_bitfield_unit.set(5usize, 1u8, {
  4067. let cap_user_time_short: u64 = unsafe { ::core::mem::transmute(cap_user_time_short) };
  4068. cap_user_time_short as u64
  4069. });
  4070. __bindgen_bitfield_unit.set(6usize, 58u8, {
  4071. let cap_____res: u64 = unsafe { ::core::mem::transmute(cap_____res) };
  4072. cap_____res as u64
  4073. });
  4074. __bindgen_bitfield_unit
  4075. }
  4076. }
  4077. #[repr(C)]
  4078. #[derive(Debug, Copy, Clone)]
  4079. pub struct perf_event_header {
  4080. pub type_: __u32,
  4081. pub misc: __u16,
  4082. pub size: __u16,
  4083. }
  4084. #[repr(u32)]
  4085. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
  4086. pub enum perf_event_type {
  4087. PERF_RECORD_MMAP = 1,
  4088. PERF_RECORD_LOST = 2,
  4089. PERF_RECORD_COMM = 3,
  4090. PERF_RECORD_EXIT = 4,
  4091. PERF_RECORD_THROTTLE = 5,
  4092. PERF_RECORD_UNTHROTTLE = 6,
  4093. PERF_RECORD_FORK = 7,
  4094. PERF_RECORD_READ = 8,
  4095. PERF_RECORD_SAMPLE = 9,
  4096. PERF_RECORD_MMAP2 = 10,
  4097. PERF_RECORD_AUX = 11,
  4098. PERF_RECORD_ITRACE_START = 12,
  4099. PERF_RECORD_LOST_SAMPLES = 13,
  4100. PERF_RECORD_SWITCH = 14,
  4101. PERF_RECORD_SWITCH_CPU_WIDE = 15,
  4102. PERF_RECORD_NAMESPACES = 16,
  4103. PERF_RECORD_KSYMBOL = 17,
  4104. PERF_RECORD_BPF_EVENT = 18,
  4105. PERF_RECORD_CGROUP = 19,
  4106. PERF_RECORD_TEXT_POKE = 20,
  4107. PERF_RECORD_AUX_OUTPUT_HW_ID = 21,
  4108. PERF_RECORD_MAX = 22,
  4109. }
  4110. pub const TCA_BPF_UNSPEC: _bindgen_ty_154 = 0;
  4111. pub const TCA_BPF_ACT: _bindgen_ty_154 = 1;
  4112. pub const TCA_BPF_POLICE: _bindgen_ty_154 = 2;
  4113. pub const TCA_BPF_CLASSID: _bindgen_ty_154 = 3;
  4114. pub const TCA_BPF_OPS_LEN: _bindgen_ty_154 = 4;
  4115. pub const TCA_BPF_OPS: _bindgen_ty_154 = 5;
  4116. pub const TCA_BPF_FD: _bindgen_ty_154 = 6;
  4117. pub const TCA_BPF_NAME: _bindgen_ty_154 = 7;
  4118. pub const TCA_BPF_FLAGS: _bindgen_ty_154 = 8;
  4119. pub const TCA_BPF_FLAGS_GEN: _bindgen_ty_154 = 9;
  4120. pub const TCA_BPF_TAG: _bindgen_ty_154 = 10;
  4121. pub const TCA_BPF_ID: _bindgen_ty_154 = 11;
  4122. pub const __TCA_BPF_MAX: _bindgen_ty_154 = 12;
  4123. pub type _bindgen_ty_154 = ::core::ffi::c_uint;
  4124. #[repr(C)]
  4125. #[derive(Debug, Copy, Clone)]
  4126. pub struct ifinfomsg {
  4127. pub ifi_family: ::core::ffi::c_uchar,
  4128. pub __ifi_pad: ::core::ffi::c_uchar,
  4129. pub ifi_type: ::core::ffi::c_ushort,
  4130. pub ifi_index: ::core::ffi::c_int,
  4131. pub ifi_flags: ::core::ffi::c_uint,
  4132. pub ifi_change: ::core::ffi::c_uint,
  4133. }
  4134. #[repr(C)]
  4135. #[derive(Debug, Copy, Clone)]
  4136. pub struct tcmsg {
  4137. pub tcm_family: ::core::ffi::c_uchar,
  4138. pub tcm__pad1: ::core::ffi::c_uchar,
  4139. pub tcm__pad2: ::core::ffi::c_ushort,
  4140. pub tcm_ifindex: ::core::ffi::c_int,
  4141. pub tcm_handle: __u32,
  4142. pub tcm_parent: __u32,
  4143. pub tcm_info: __u32,
  4144. }
  4145. pub const TCA_UNSPEC: _bindgen_ty_174 = 0;
  4146. pub const TCA_KIND: _bindgen_ty_174 = 1;
  4147. pub const TCA_OPTIONS: _bindgen_ty_174 = 2;
  4148. pub const TCA_STATS: _bindgen_ty_174 = 3;
  4149. pub const TCA_XSTATS: _bindgen_ty_174 = 4;
  4150. pub const TCA_RATE: _bindgen_ty_174 = 5;
  4151. pub const TCA_FCNT: _bindgen_ty_174 = 6;
  4152. pub const TCA_STATS2: _bindgen_ty_174 = 7;
  4153. pub const TCA_STAB: _bindgen_ty_174 = 8;
  4154. pub const TCA_PAD: _bindgen_ty_174 = 9;
  4155. pub const TCA_DUMP_INVISIBLE: _bindgen_ty_174 = 10;
  4156. pub const TCA_CHAIN: _bindgen_ty_174 = 11;
  4157. pub const TCA_HW_OFFLOAD: _bindgen_ty_174 = 12;
  4158. pub const TCA_INGRESS_BLOCK: _bindgen_ty_174 = 13;
  4159. pub const TCA_EGRESS_BLOCK: _bindgen_ty_174 = 14;
  4160. pub const TCA_DUMP_FLAGS: _bindgen_ty_174 = 15;
  4161. pub const TCA_EXT_WARN_MSG: _bindgen_ty_174 = 16;
  4162. pub const __TCA_MAX: _bindgen_ty_174 = 17;
  4163. pub type _bindgen_ty_174 = ::core::ffi::c_uint;