builtin-script.c 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include "builtin.h"
  3. #include "perf.h"
  4. #include "util/cache.h"
  5. #include "util/debug.h"
  6. #include <subcmd/exec-cmd.h>
  7. #include "util/header.h"
  8. #include <subcmd/parse-options.h>
  9. #include "util/perf_regs.h"
  10. #include "util/session.h"
  11. #include "util/tool.h"
  12. #include "util/symbol.h"
  13. #include "util/thread.h"
  14. #include "util/trace-event.h"
  15. #include "util/util.h"
  16. #include "util/evlist.h"
  17. #include "util/evsel.h"
  18. #include "util/sort.h"
  19. #include "util/data.h"
  20. #include "util/auxtrace.h"
  21. #include "util/cpumap.h"
  22. #include "util/thread_map.h"
  23. #include "util/stat.h"
  24. #include "util/color.h"
  25. #include "util/string2.h"
  26. #include "util/thread-stack.h"
  27. #include "util/time-utils.h"
  28. #include "util/path.h"
  29. #include "print_binary.h"
  30. #include <linux/bitmap.h>
  31. #include <linux/kernel.h>
  32. #include <linux/stringify.h>
  33. #include <linux/time64.h>
  34. #include "asm/bug.h"
  35. #include "util/mem-events.h"
  36. #include "util/dump-insn.h"
  37. #include <dirent.h>
  38. #include <errno.h>
  39. #include <inttypes.h>
  40. #include <signal.h>
  41. #include <sys/param.h>
  42. #include <sys/types.h>
  43. #include <sys/stat.h>
  44. #include <fcntl.h>
  45. #include <unistd.h>
  46. #include "sane_ctype.h"
  47. static char const *script_name;
  48. static char const *generate_script_lang;
  49. static bool debug_mode;
  50. static u64 last_timestamp;
  51. static u64 nr_unordered;
  52. static bool no_callchain;
  53. static bool latency_format;
  54. static bool system_wide;
  55. static bool print_flags;
  56. static bool nanosecs;
  57. static const char *cpu_list;
  58. static DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
  59. static struct perf_stat_config stat_config;
  60. static int max_blocks;
  61. unsigned int scripting_max_stack = PERF_MAX_STACK_DEPTH;
  62. enum perf_output_field {
  63. PERF_OUTPUT_COMM = 1U << 0,
  64. PERF_OUTPUT_TID = 1U << 1,
  65. PERF_OUTPUT_PID = 1U << 2,
  66. PERF_OUTPUT_TIME = 1U << 3,
  67. PERF_OUTPUT_CPU = 1U << 4,
  68. PERF_OUTPUT_EVNAME = 1U << 5,
  69. PERF_OUTPUT_TRACE = 1U << 6,
  70. PERF_OUTPUT_IP = 1U << 7,
  71. PERF_OUTPUT_SYM = 1U << 8,
  72. PERF_OUTPUT_DSO = 1U << 9,
  73. PERF_OUTPUT_ADDR = 1U << 10,
  74. PERF_OUTPUT_SYMOFFSET = 1U << 11,
  75. PERF_OUTPUT_SRCLINE = 1U << 12,
  76. PERF_OUTPUT_PERIOD = 1U << 13,
  77. PERF_OUTPUT_IREGS = 1U << 14,
  78. PERF_OUTPUT_BRSTACK = 1U << 15,
  79. PERF_OUTPUT_BRSTACKSYM = 1U << 16,
  80. PERF_OUTPUT_DATA_SRC = 1U << 17,
  81. PERF_OUTPUT_WEIGHT = 1U << 18,
  82. PERF_OUTPUT_BPF_OUTPUT = 1U << 19,
  83. PERF_OUTPUT_CALLINDENT = 1U << 20,
  84. PERF_OUTPUT_INSN = 1U << 21,
  85. PERF_OUTPUT_INSNLEN = 1U << 22,
  86. PERF_OUTPUT_BRSTACKINSN = 1U << 23,
  87. PERF_OUTPUT_BRSTACKOFF = 1U << 24,
  88. PERF_OUTPUT_SYNTH = 1U << 25,
  89. PERF_OUTPUT_PHYS_ADDR = 1U << 26,
  90. PERF_OUTPUT_UREGS = 1U << 27,
  91. PERF_OUTPUT_METRIC = 1U << 28,
  92. PERF_OUTPUT_MISC = 1U << 29,
  93. };
  94. struct output_option {
  95. const char *str;
  96. enum perf_output_field field;
  97. } all_output_options[] = {
  98. {.str = "comm", .field = PERF_OUTPUT_COMM},
  99. {.str = "tid", .field = PERF_OUTPUT_TID},
  100. {.str = "pid", .field = PERF_OUTPUT_PID},
  101. {.str = "time", .field = PERF_OUTPUT_TIME},
  102. {.str = "cpu", .field = PERF_OUTPUT_CPU},
  103. {.str = "event", .field = PERF_OUTPUT_EVNAME},
  104. {.str = "trace", .field = PERF_OUTPUT_TRACE},
  105. {.str = "ip", .field = PERF_OUTPUT_IP},
  106. {.str = "sym", .field = PERF_OUTPUT_SYM},
  107. {.str = "dso", .field = PERF_OUTPUT_DSO},
  108. {.str = "addr", .field = PERF_OUTPUT_ADDR},
  109. {.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
  110. {.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
  111. {.str = "period", .field = PERF_OUTPUT_PERIOD},
  112. {.str = "iregs", .field = PERF_OUTPUT_IREGS},
  113. {.str = "uregs", .field = PERF_OUTPUT_UREGS},
  114. {.str = "brstack", .field = PERF_OUTPUT_BRSTACK},
  115. {.str = "brstacksym", .field = PERF_OUTPUT_BRSTACKSYM},
  116. {.str = "data_src", .field = PERF_OUTPUT_DATA_SRC},
  117. {.str = "weight", .field = PERF_OUTPUT_WEIGHT},
  118. {.str = "bpf-output", .field = PERF_OUTPUT_BPF_OUTPUT},
  119. {.str = "callindent", .field = PERF_OUTPUT_CALLINDENT},
  120. {.str = "insn", .field = PERF_OUTPUT_INSN},
  121. {.str = "insnlen", .field = PERF_OUTPUT_INSNLEN},
  122. {.str = "brstackinsn", .field = PERF_OUTPUT_BRSTACKINSN},
  123. {.str = "brstackoff", .field = PERF_OUTPUT_BRSTACKOFF},
  124. {.str = "synth", .field = PERF_OUTPUT_SYNTH},
  125. {.str = "phys_addr", .field = PERF_OUTPUT_PHYS_ADDR},
  126. {.str = "metric", .field = PERF_OUTPUT_METRIC},
  127. {.str = "misc", .field = PERF_OUTPUT_MISC},
  128. };
  129. enum {
  130. OUTPUT_TYPE_SYNTH = PERF_TYPE_MAX,
  131. OUTPUT_TYPE_MAX
  132. };
  133. /* default set to maintain compatibility with current format */
  134. static struct {
  135. bool user_set;
  136. bool wildcard_set;
  137. unsigned int print_ip_opts;
  138. u64 fields;
  139. u64 invalid_fields;
  140. } output[OUTPUT_TYPE_MAX] = {
  141. [PERF_TYPE_HARDWARE] = {
  142. .user_set = false,
  143. .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
  144. PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
  145. PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
  146. PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
  147. PERF_OUTPUT_PERIOD,
  148. .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
  149. },
  150. [PERF_TYPE_SOFTWARE] = {
  151. .user_set = false,
  152. .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
  153. PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
  154. PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
  155. PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
  156. PERF_OUTPUT_PERIOD | PERF_OUTPUT_BPF_OUTPUT,
  157. .invalid_fields = PERF_OUTPUT_TRACE,
  158. },
  159. [PERF_TYPE_TRACEPOINT] = {
  160. .user_set = false,
  161. .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
  162. PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
  163. PERF_OUTPUT_EVNAME | PERF_OUTPUT_TRACE
  164. },
  165. [PERF_TYPE_RAW] = {
  166. .user_set = false,
  167. .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
  168. PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
  169. PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
  170. PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
  171. PERF_OUTPUT_PERIOD | PERF_OUTPUT_ADDR |
  172. PERF_OUTPUT_DATA_SRC | PERF_OUTPUT_WEIGHT |
  173. PERF_OUTPUT_PHYS_ADDR,
  174. .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
  175. },
  176. [PERF_TYPE_BREAKPOINT] = {
  177. .user_set = false,
  178. .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
  179. PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
  180. PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
  181. PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
  182. PERF_OUTPUT_PERIOD,
  183. .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
  184. },
  185. [OUTPUT_TYPE_SYNTH] = {
  186. .user_set = false,
  187. .fields = PERF_OUTPUT_COMM | PERF_OUTPUT_TID |
  188. PERF_OUTPUT_CPU | PERF_OUTPUT_TIME |
  189. PERF_OUTPUT_EVNAME | PERF_OUTPUT_IP |
  190. PERF_OUTPUT_SYM | PERF_OUTPUT_DSO |
  191. PERF_OUTPUT_SYNTH,
  192. .invalid_fields = PERF_OUTPUT_TRACE | PERF_OUTPUT_BPF_OUTPUT,
  193. },
  194. };
  195. struct perf_evsel_script {
  196. char *filename;
  197. FILE *fp;
  198. u64 samples;
  199. /* For metric output */
  200. u64 val;
  201. int gnum;
  202. };
  203. static inline struct perf_evsel_script *evsel_script(struct perf_evsel *evsel)
  204. {
  205. return (struct perf_evsel_script *)evsel->priv;
  206. }
  207. static struct perf_evsel_script *perf_evsel_script__new(struct perf_evsel *evsel,
  208. struct perf_data *data)
  209. {
  210. struct perf_evsel_script *es = zalloc(sizeof(*es));
  211. if (es != NULL) {
  212. if (asprintf(&es->filename, "%s.%s.dump", data->file.path, perf_evsel__name(evsel)) < 0)
  213. goto out_free;
  214. es->fp = fopen(es->filename, "w");
  215. if (es->fp == NULL)
  216. goto out_free_filename;
  217. }
  218. return es;
  219. out_free_filename:
  220. zfree(&es->filename);
  221. out_free:
  222. free(es);
  223. return NULL;
  224. }
  225. static void perf_evsel_script__delete(struct perf_evsel_script *es)
  226. {
  227. zfree(&es->filename);
  228. fclose(es->fp);
  229. es->fp = NULL;
  230. free(es);
  231. }
  232. static int perf_evsel_script__fprintf(struct perf_evsel_script *es, FILE *fp)
  233. {
  234. struct stat st;
  235. fstat(fileno(es->fp), &st);
  236. return fprintf(fp, "[ perf script: Wrote %.3f MB %s (%" PRIu64 " samples) ]\n",
  237. st.st_size / 1024.0 / 1024.0, es->filename, es->samples);
  238. }
  239. static inline int output_type(unsigned int type)
  240. {
  241. switch (type) {
  242. case PERF_TYPE_SYNTH:
  243. return OUTPUT_TYPE_SYNTH;
  244. default:
  245. return type;
  246. }
  247. }
  248. static inline unsigned int attr_type(unsigned int type)
  249. {
  250. switch (type) {
  251. case OUTPUT_TYPE_SYNTH:
  252. return PERF_TYPE_SYNTH;
  253. default:
  254. return type;
  255. }
  256. }
  257. static bool output_set_by_user(void)
  258. {
  259. int j;
  260. for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
  261. if (output[j].user_set)
  262. return true;
  263. }
  264. return false;
  265. }
  266. static const char *output_field2str(enum perf_output_field field)
  267. {
  268. int i, imax = ARRAY_SIZE(all_output_options);
  269. const char *str = "";
  270. for (i = 0; i < imax; ++i) {
  271. if (all_output_options[i].field == field) {
  272. str = all_output_options[i].str;
  273. break;
  274. }
  275. }
  276. return str;
  277. }
  278. #define PRINT_FIELD(x) (output[output_type(attr->type)].fields & PERF_OUTPUT_##x)
  279. static int perf_evsel__do_check_stype(struct perf_evsel *evsel,
  280. u64 sample_type, const char *sample_msg,
  281. enum perf_output_field field,
  282. bool allow_user_set)
  283. {
  284. struct perf_event_attr *attr = &evsel->attr;
  285. int type = output_type(attr->type);
  286. const char *evname;
  287. if (attr->sample_type & sample_type)
  288. return 0;
  289. if (output[type].user_set) {
  290. if (allow_user_set)
  291. return 0;
  292. evname = perf_evsel__name(evsel);
  293. pr_err("Samples for '%s' event do not have %s attribute set. "
  294. "Cannot print '%s' field.\n",
  295. evname, sample_msg, output_field2str(field));
  296. return -1;
  297. }
  298. /* user did not ask for it explicitly so remove from the default list */
  299. output[type].fields &= ~field;
  300. evname = perf_evsel__name(evsel);
  301. pr_debug("Samples for '%s' event do not have %s attribute set. "
  302. "Skipping '%s' field.\n",
  303. evname, sample_msg, output_field2str(field));
  304. return 0;
  305. }
  306. static int perf_evsel__check_stype(struct perf_evsel *evsel,
  307. u64 sample_type, const char *sample_msg,
  308. enum perf_output_field field)
  309. {
  310. return perf_evsel__do_check_stype(evsel, sample_type, sample_msg, field,
  311. false);
  312. }
  313. static int perf_evsel__check_attr(struct perf_evsel *evsel,
  314. struct perf_session *session)
  315. {
  316. struct perf_event_attr *attr = &evsel->attr;
  317. bool allow_user_set;
  318. if (perf_header__has_feat(&session->header, HEADER_STAT))
  319. return 0;
  320. allow_user_set = perf_header__has_feat(&session->header,
  321. HEADER_AUXTRACE);
  322. if (PRINT_FIELD(TRACE) &&
  323. !perf_session__has_traces(session, "record -R"))
  324. return -EINVAL;
  325. if (PRINT_FIELD(IP)) {
  326. if (perf_evsel__check_stype(evsel, PERF_SAMPLE_IP, "IP",
  327. PERF_OUTPUT_IP))
  328. return -EINVAL;
  329. }
  330. if (PRINT_FIELD(ADDR) &&
  331. perf_evsel__do_check_stype(evsel, PERF_SAMPLE_ADDR, "ADDR",
  332. PERF_OUTPUT_ADDR, allow_user_set))
  333. return -EINVAL;
  334. if (PRINT_FIELD(DATA_SRC) &&
  335. perf_evsel__check_stype(evsel, PERF_SAMPLE_DATA_SRC, "DATA_SRC",
  336. PERF_OUTPUT_DATA_SRC))
  337. return -EINVAL;
  338. if (PRINT_FIELD(WEIGHT) &&
  339. perf_evsel__check_stype(evsel, PERF_SAMPLE_WEIGHT, "WEIGHT",
  340. PERF_OUTPUT_WEIGHT))
  341. return -EINVAL;
  342. if (PRINT_FIELD(SYM) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR)) {
  343. pr_err("Display of symbols requested but neither sample IP nor "
  344. "sample address\nis selected. Hence, no addresses to convert "
  345. "to symbols.\n");
  346. return -EINVAL;
  347. }
  348. if (PRINT_FIELD(SYMOFFSET) && !PRINT_FIELD(SYM)) {
  349. pr_err("Display of offsets requested but symbol is not"
  350. "selected.\n");
  351. return -EINVAL;
  352. }
  353. if (PRINT_FIELD(DSO) && !PRINT_FIELD(IP) && !PRINT_FIELD(ADDR) &&
  354. !PRINT_FIELD(BRSTACK) && !PRINT_FIELD(BRSTACKSYM) && !PRINT_FIELD(BRSTACKOFF)) {
  355. pr_err("Display of DSO requested but no address to convert. Select\n"
  356. "sample IP, sample address, brstack, brstacksym, or brstackoff.\n");
  357. return -EINVAL;
  358. }
  359. if (PRINT_FIELD(SRCLINE) && !PRINT_FIELD(IP)) {
  360. pr_err("Display of source line number requested but sample IP is not\n"
  361. "selected. Hence, no address to lookup the source line number.\n");
  362. return -EINVAL;
  363. }
  364. if (PRINT_FIELD(BRSTACKINSN) &&
  365. !(perf_evlist__combined_branch_type(session->evlist) &
  366. PERF_SAMPLE_BRANCH_ANY)) {
  367. pr_err("Display of branch stack assembler requested, but non all-branch filter set\n"
  368. "Hint: run 'perf record -b ...'\n");
  369. return -EINVAL;
  370. }
  371. if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
  372. perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
  373. PERF_OUTPUT_TID|PERF_OUTPUT_PID))
  374. return -EINVAL;
  375. if (PRINT_FIELD(TIME) &&
  376. perf_evsel__check_stype(evsel, PERF_SAMPLE_TIME, "TIME",
  377. PERF_OUTPUT_TIME))
  378. return -EINVAL;
  379. if (PRINT_FIELD(CPU) &&
  380. perf_evsel__do_check_stype(evsel, PERF_SAMPLE_CPU, "CPU",
  381. PERF_OUTPUT_CPU, allow_user_set))
  382. return -EINVAL;
  383. if (PRINT_FIELD(IREGS) &&
  384. perf_evsel__check_stype(evsel, PERF_SAMPLE_REGS_INTR, "IREGS",
  385. PERF_OUTPUT_IREGS))
  386. return -EINVAL;
  387. if (PRINT_FIELD(UREGS) &&
  388. perf_evsel__check_stype(evsel, PERF_SAMPLE_REGS_USER, "UREGS",
  389. PERF_OUTPUT_UREGS))
  390. return -EINVAL;
  391. if (PRINT_FIELD(PHYS_ADDR) &&
  392. perf_evsel__check_stype(evsel, PERF_SAMPLE_PHYS_ADDR, "PHYS_ADDR",
  393. PERF_OUTPUT_PHYS_ADDR))
  394. return -EINVAL;
  395. return 0;
  396. }
  397. static void set_print_ip_opts(struct perf_event_attr *attr)
  398. {
  399. unsigned int type = output_type(attr->type);
  400. output[type].print_ip_opts = 0;
  401. if (PRINT_FIELD(IP))
  402. output[type].print_ip_opts |= EVSEL__PRINT_IP;
  403. if (PRINT_FIELD(SYM))
  404. output[type].print_ip_opts |= EVSEL__PRINT_SYM;
  405. if (PRINT_FIELD(DSO))
  406. output[type].print_ip_opts |= EVSEL__PRINT_DSO;
  407. if (PRINT_FIELD(SYMOFFSET))
  408. output[type].print_ip_opts |= EVSEL__PRINT_SYMOFFSET;
  409. if (PRINT_FIELD(SRCLINE))
  410. output[type].print_ip_opts |= EVSEL__PRINT_SRCLINE;
  411. }
  412. /*
  413. * verify all user requested events exist and the samples
  414. * have the expected data
  415. */
  416. static int perf_session__check_output_opt(struct perf_session *session)
  417. {
  418. unsigned int j;
  419. struct perf_evsel *evsel;
  420. for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
  421. evsel = perf_session__find_first_evtype(session, attr_type(j));
  422. /*
  423. * even if fields is set to 0 (ie., show nothing) event must
  424. * exist if user explicitly includes it on the command line
  425. */
  426. if (!evsel && output[j].user_set && !output[j].wildcard_set &&
  427. j != OUTPUT_TYPE_SYNTH) {
  428. pr_err("%s events do not exist. "
  429. "Remove corresponding -F option to proceed.\n",
  430. event_type(j));
  431. return -1;
  432. }
  433. if (evsel && output[j].fields &&
  434. perf_evsel__check_attr(evsel, session))
  435. return -1;
  436. if (evsel == NULL)
  437. continue;
  438. set_print_ip_opts(&evsel->attr);
  439. }
  440. if (!no_callchain) {
  441. bool use_callchain = false;
  442. bool not_pipe = false;
  443. evlist__for_each_entry(session->evlist, evsel) {
  444. not_pipe = true;
  445. if (evsel->attr.sample_type & PERF_SAMPLE_CALLCHAIN) {
  446. use_callchain = true;
  447. break;
  448. }
  449. }
  450. if (not_pipe && !use_callchain)
  451. symbol_conf.use_callchain = false;
  452. }
  453. /*
  454. * set default for tracepoints to print symbols only
  455. * if callchains are present
  456. */
  457. if (symbol_conf.use_callchain &&
  458. !output[PERF_TYPE_TRACEPOINT].user_set) {
  459. struct perf_event_attr *attr;
  460. j = PERF_TYPE_TRACEPOINT;
  461. evlist__for_each_entry(session->evlist, evsel) {
  462. if (evsel->attr.type != j)
  463. continue;
  464. attr = &evsel->attr;
  465. if (attr->sample_type & PERF_SAMPLE_CALLCHAIN) {
  466. output[j].fields |= PERF_OUTPUT_IP;
  467. output[j].fields |= PERF_OUTPUT_SYM;
  468. output[j].fields |= PERF_OUTPUT_DSO;
  469. set_print_ip_opts(attr);
  470. goto out;
  471. }
  472. }
  473. }
  474. out:
  475. return 0;
  476. }
  477. static int perf_sample__fprintf_iregs(struct perf_sample *sample,
  478. struct perf_event_attr *attr, FILE *fp)
  479. {
  480. struct regs_dump *regs = &sample->intr_regs;
  481. uint64_t mask = attr->sample_regs_intr;
  482. unsigned i = 0, r;
  483. int printed = 0;
  484. if (!regs)
  485. return 0;
  486. for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
  487. u64 val = regs->regs[i++];
  488. printed += fprintf(fp, "%5s:0x%"PRIx64" ", perf_reg_name(r), val);
  489. }
  490. return printed;
  491. }
  492. static int perf_sample__fprintf_uregs(struct perf_sample *sample,
  493. struct perf_event_attr *attr, FILE *fp)
  494. {
  495. struct regs_dump *regs = &sample->user_regs;
  496. uint64_t mask = attr->sample_regs_user;
  497. unsigned i = 0, r;
  498. int printed = 0;
  499. if (!regs || !regs->regs)
  500. return 0;
  501. printed += fprintf(fp, " ABI:%" PRIu64 " ", regs->abi);
  502. for_each_set_bit(r, (unsigned long *) &mask, sizeof(mask) * 8) {
  503. u64 val = regs->regs[i++];
  504. printed += fprintf(fp, "%5s:0x%"PRIx64" ", perf_reg_name(r), val);
  505. }
  506. return printed;
  507. }
  508. static int perf_sample__fprintf_start(struct perf_sample *sample,
  509. struct thread *thread,
  510. struct perf_evsel *evsel,
  511. u32 type, FILE *fp)
  512. {
  513. struct perf_event_attr *attr = &evsel->attr;
  514. unsigned long secs;
  515. unsigned long long nsecs;
  516. int printed = 0;
  517. if (PRINT_FIELD(COMM)) {
  518. if (latency_format)
  519. printed += fprintf(fp, "%8.8s ", thread__comm_str(thread));
  520. else if (PRINT_FIELD(IP) && symbol_conf.use_callchain)
  521. printed += fprintf(fp, "%s ", thread__comm_str(thread));
  522. else
  523. printed += fprintf(fp, "%16s ", thread__comm_str(thread));
  524. }
  525. if (PRINT_FIELD(PID) && PRINT_FIELD(TID))
  526. printed += fprintf(fp, "%5d/%-5d ", sample->pid, sample->tid);
  527. else if (PRINT_FIELD(PID))
  528. printed += fprintf(fp, "%5d ", sample->pid);
  529. else if (PRINT_FIELD(TID))
  530. printed += fprintf(fp, "%5d ", sample->tid);
  531. if (PRINT_FIELD(CPU)) {
  532. if (latency_format)
  533. printed += fprintf(fp, "%3d ", sample->cpu);
  534. else
  535. printed += fprintf(fp, "[%03d] ", sample->cpu);
  536. }
  537. if (PRINT_FIELD(MISC)) {
  538. int ret = 0;
  539. #define has(m) \
  540. (sample->misc & PERF_RECORD_MISC_##m) == PERF_RECORD_MISC_##m
  541. if (has(KERNEL))
  542. ret += fprintf(fp, "K");
  543. if (has(USER))
  544. ret += fprintf(fp, "U");
  545. if (has(HYPERVISOR))
  546. ret += fprintf(fp, "H");
  547. if (has(GUEST_KERNEL))
  548. ret += fprintf(fp, "G");
  549. if (has(GUEST_USER))
  550. ret += fprintf(fp, "g");
  551. switch (type) {
  552. case PERF_RECORD_MMAP:
  553. case PERF_RECORD_MMAP2:
  554. if (has(MMAP_DATA))
  555. ret += fprintf(fp, "M");
  556. break;
  557. case PERF_RECORD_COMM:
  558. if (has(COMM_EXEC))
  559. ret += fprintf(fp, "E");
  560. break;
  561. case PERF_RECORD_SWITCH:
  562. case PERF_RECORD_SWITCH_CPU_WIDE:
  563. if (has(SWITCH_OUT))
  564. ret += fprintf(fp, "S");
  565. default:
  566. break;
  567. }
  568. #undef has
  569. ret += fprintf(fp, "%*s", 6 - ret, " ");
  570. printed += ret;
  571. }
  572. if (PRINT_FIELD(TIME)) {
  573. nsecs = sample->time;
  574. secs = nsecs / NSEC_PER_SEC;
  575. nsecs -= secs * NSEC_PER_SEC;
  576. if (nanosecs)
  577. printed += fprintf(fp, "%5lu.%09llu: ", secs, nsecs);
  578. else {
  579. char sample_time[32];
  580. timestamp__scnprintf_usec(sample->time, sample_time, sizeof(sample_time));
  581. printed += fprintf(fp, "%12s: ", sample_time);
  582. }
  583. }
  584. return printed;
  585. }
  586. static inline char
  587. mispred_str(struct branch_entry *br)
  588. {
  589. if (!(br->flags.mispred || br->flags.predicted))
  590. return '-';
  591. return br->flags.predicted ? 'P' : 'M';
  592. }
  593. static int perf_sample__fprintf_brstack(struct perf_sample *sample,
  594. struct thread *thread,
  595. struct perf_event_attr *attr, FILE *fp)
  596. {
  597. struct branch_stack *br = sample->branch_stack;
  598. struct addr_location alf, alt;
  599. u64 i, from, to;
  600. int printed = 0;
  601. if (!(br && br->nr))
  602. return 0;
  603. for (i = 0; i < br->nr; i++) {
  604. from = br->entries[i].from;
  605. to = br->entries[i].to;
  606. if (PRINT_FIELD(DSO)) {
  607. memset(&alf, 0, sizeof(alf));
  608. memset(&alt, 0, sizeof(alt));
  609. thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
  610. thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
  611. }
  612. printed += fprintf(fp, " 0x%"PRIx64, from);
  613. if (PRINT_FIELD(DSO)) {
  614. printed += fprintf(fp, "(");
  615. printed += map__fprintf_dsoname(alf.map, fp);
  616. printed += fprintf(fp, ")");
  617. }
  618. printed += fprintf(fp, "/0x%"PRIx64, to);
  619. if (PRINT_FIELD(DSO)) {
  620. printed += fprintf(fp, "(");
  621. printed += map__fprintf_dsoname(alt.map, fp);
  622. printed += fprintf(fp, ")");
  623. }
  624. printed += fprintf(fp, "/%c/%c/%c/%d ",
  625. mispred_str( br->entries + i),
  626. br->entries[i].flags.in_tx? 'X' : '-',
  627. br->entries[i].flags.abort? 'A' : '-',
  628. br->entries[i].flags.cycles);
  629. }
  630. return printed;
  631. }
  632. static int perf_sample__fprintf_brstacksym(struct perf_sample *sample,
  633. struct thread *thread,
  634. struct perf_event_attr *attr, FILE *fp)
  635. {
  636. struct branch_stack *br = sample->branch_stack;
  637. struct addr_location alf, alt;
  638. u64 i, from, to;
  639. int printed = 0;
  640. if (!(br && br->nr))
  641. return 0;
  642. for (i = 0; i < br->nr; i++) {
  643. memset(&alf, 0, sizeof(alf));
  644. memset(&alt, 0, sizeof(alt));
  645. from = br->entries[i].from;
  646. to = br->entries[i].to;
  647. thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
  648. if (alf.map)
  649. alf.sym = map__find_symbol(alf.map, alf.addr);
  650. thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
  651. if (alt.map)
  652. alt.sym = map__find_symbol(alt.map, alt.addr);
  653. printed += symbol__fprintf_symname_offs(alf.sym, &alf, fp);
  654. if (PRINT_FIELD(DSO)) {
  655. printed += fprintf(fp, "(");
  656. printed += map__fprintf_dsoname(alf.map, fp);
  657. printed += fprintf(fp, ")");
  658. }
  659. printed += fprintf(fp, "%c", '/');
  660. printed += symbol__fprintf_symname_offs(alt.sym, &alt, fp);
  661. if (PRINT_FIELD(DSO)) {
  662. printed += fprintf(fp, "(");
  663. printed += map__fprintf_dsoname(alt.map, fp);
  664. printed += fprintf(fp, ")");
  665. }
  666. printed += fprintf(fp, "/%c/%c/%c/%d ",
  667. mispred_str( br->entries + i),
  668. br->entries[i].flags.in_tx? 'X' : '-',
  669. br->entries[i].flags.abort? 'A' : '-',
  670. br->entries[i].flags.cycles);
  671. }
  672. return printed;
  673. }
  674. static int perf_sample__fprintf_brstackoff(struct perf_sample *sample,
  675. struct thread *thread,
  676. struct perf_event_attr *attr, FILE *fp)
  677. {
  678. struct branch_stack *br = sample->branch_stack;
  679. struct addr_location alf, alt;
  680. u64 i, from, to;
  681. int printed = 0;
  682. if (!(br && br->nr))
  683. return 0;
  684. for (i = 0; i < br->nr; i++) {
  685. memset(&alf, 0, sizeof(alf));
  686. memset(&alt, 0, sizeof(alt));
  687. from = br->entries[i].from;
  688. to = br->entries[i].to;
  689. thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, from, &alf);
  690. if (alf.map && !alf.map->dso->adjust_symbols)
  691. from = map__map_ip(alf.map, from);
  692. thread__find_addr_map(thread, sample->cpumode, MAP__FUNCTION, to, &alt);
  693. if (alt.map && !alt.map->dso->adjust_symbols)
  694. to = map__map_ip(alt.map, to);
  695. printed += fprintf(fp, " 0x%"PRIx64, from);
  696. if (PRINT_FIELD(DSO)) {
  697. printed += fprintf(fp, "(");
  698. printed += map__fprintf_dsoname(alf.map, fp);
  699. printed += fprintf(fp, ")");
  700. }
  701. printed += fprintf(fp, "/0x%"PRIx64, to);
  702. if (PRINT_FIELD(DSO)) {
  703. printed += fprintf(fp, "(");
  704. printed += map__fprintf_dsoname(alt.map, fp);
  705. printed += fprintf(fp, ")");
  706. }
  707. printed += fprintf(fp, "/%c/%c/%c/%d ",
  708. mispred_str(br->entries + i),
  709. br->entries[i].flags.in_tx ? 'X' : '-',
  710. br->entries[i].flags.abort ? 'A' : '-',
  711. br->entries[i].flags.cycles);
  712. }
  713. return printed;
  714. }
  715. #define MAXBB 16384UL
  716. static int grab_bb(u8 *buffer, u64 start, u64 end,
  717. struct machine *machine, struct thread *thread,
  718. bool *is64bit, u8 *cpumode, bool last)
  719. {
  720. long offset, len;
  721. struct addr_location al;
  722. bool kernel;
  723. if (!start || !end)
  724. return 0;
  725. kernel = machine__kernel_ip(machine, start);
  726. if (kernel)
  727. *cpumode = PERF_RECORD_MISC_KERNEL;
  728. else
  729. *cpumode = PERF_RECORD_MISC_USER;
  730. /*
  731. * Block overlaps between kernel and user.
  732. * This can happen due to ring filtering
  733. * On Intel CPUs the entry into the kernel is filtered,
  734. * but the exit is not. Let the caller patch it up.
  735. */
  736. if (kernel != machine__kernel_ip(machine, end)) {
  737. pr_debug("\tblock %" PRIx64 "-%" PRIx64 " transfers between kernel and user\n", start, end);
  738. return -ENXIO;
  739. }
  740. memset(&al, 0, sizeof(al));
  741. if (end - start > MAXBB - MAXINSN) {
  742. if (last)
  743. pr_debug("\tbrstack does not reach to final jump (%" PRIx64 "-%" PRIx64 ")\n", start, end);
  744. else
  745. pr_debug("\tblock %" PRIx64 "-%" PRIx64 " (%" PRIu64 ") too long to dump\n", start, end, end - start);
  746. return 0;
  747. }
  748. thread__find_addr_map(thread, *cpumode, MAP__FUNCTION, start, &al);
  749. if (!al.map || !al.map->dso) {
  750. pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
  751. return 0;
  752. }
  753. if (al.map->dso->data.status == DSO_DATA_STATUS_ERROR) {
  754. pr_debug("\tcannot resolve %" PRIx64 "-%" PRIx64 "\n", start, end);
  755. return 0;
  756. }
  757. /* Load maps to ensure dso->is_64_bit has been updated */
  758. map__load(al.map);
  759. offset = al.map->map_ip(al.map, start);
  760. len = dso__data_read_offset(al.map->dso, machine, offset, (u8 *)buffer,
  761. end - start + MAXINSN);
  762. *is64bit = al.map->dso->is_64_bit;
  763. if (len <= 0)
  764. pr_debug("\tcannot fetch code for block at %" PRIx64 "-%" PRIx64 "\n",
  765. start, end);
  766. return len;
  767. }
  768. static int ip__fprintf_jump(uint64_t ip, struct branch_entry *en,
  769. struct perf_insn *x, u8 *inbuf, int len,
  770. int insn, FILE *fp)
  771. {
  772. int printed = fprintf(fp, "\t%016" PRIx64 "\t%-30s\t#%s%s%s%s", ip,
  773. dump_insn(x, ip, inbuf, len, NULL),
  774. en->flags.predicted ? " PRED" : "",
  775. en->flags.mispred ? " MISPRED" : "",
  776. en->flags.in_tx ? " INTX" : "",
  777. en->flags.abort ? " ABORT" : "");
  778. if (en->flags.cycles) {
  779. printed += fprintf(fp, " %d cycles", en->flags.cycles);
  780. if (insn)
  781. printed += fprintf(fp, " %.2f IPC", (float)insn / en->flags.cycles);
  782. }
  783. return printed + fprintf(fp, "\n");
  784. }
  785. static int ip__fprintf_sym(uint64_t addr, struct thread *thread,
  786. u8 cpumode, int cpu, struct symbol **lastsym,
  787. struct perf_event_attr *attr, FILE *fp)
  788. {
  789. struct addr_location al;
  790. int off, printed = 0;
  791. memset(&al, 0, sizeof(al));
  792. thread__find_addr_map(thread, cpumode, MAP__FUNCTION, addr, &al);
  793. if (!al.map)
  794. thread__find_addr_map(thread, cpumode, MAP__VARIABLE,
  795. addr, &al);
  796. if ((*lastsym) && al.addr >= (*lastsym)->start && al.addr < (*lastsym)->end)
  797. return 0;
  798. al.cpu = cpu;
  799. al.sym = NULL;
  800. if (al.map)
  801. al.sym = map__find_symbol(al.map, al.addr);
  802. if (!al.sym)
  803. return 0;
  804. if (al.addr < al.sym->end)
  805. off = al.addr - al.sym->start;
  806. else
  807. off = al.addr - al.map->start - al.sym->start;
  808. printed += fprintf(fp, "\t%s", al.sym->name);
  809. if (off)
  810. printed += fprintf(fp, "%+d", off);
  811. printed += fprintf(fp, ":");
  812. if (PRINT_FIELD(SRCLINE))
  813. printed += map__fprintf_srcline(al.map, al.addr, "\t", fp);
  814. printed += fprintf(fp, "\n");
  815. *lastsym = al.sym;
  816. return printed;
  817. }
  818. static int perf_sample__fprintf_brstackinsn(struct perf_sample *sample,
  819. struct thread *thread,
  820. struct perf_event_attr *attr,
  821. struct machine *machine, FILE *fp)
  822. {
  823. struct branch_stack *br = sample->branch_stack;
  824. u64 start, end;
  825. int i, insn, len, nr, ilen, printed = 0;
  826. struct perf_insn x;
  827. u8 buffer[MAXBB];
  828. unsigned off;
  829. struct symbol *lastsym = NULL;
  830. if (!(br && br->nr))
  831. return 0;
  832. nr = br->nr;
  833. if (max_blocks && nr > max_blocks + 1)
  834. nr = max_blocks + 1;
  835. x.thread = thread;
  836. x.cpu = sample->cpu;
  837. printed += fprintf(fp, "%c", '\n');
  838. /* Handle first from jump, of which we don't know the entry. */
  839. len = grab_bb(buffer, br->entries[nr-1].from,
  840. br->entries[nr-1].from,
  841. machine, thread, &x.is64bit, &x.cpumode, false);
  842. if (len > 0) {
  843. printed += ip__fprintf_sym(br->entries[nr - 1].from, thread,
  844. x.cpumode, x.cpu, &lastsym, attr, fp);
  845. printed += ip__fprintf_jump(br->entries[nr - 1].from, &br->entries[nr - 1],
  846. &x, buffer, len, 0, fp);
  847. }
  848. /* Print all blocks */
  849. for (i = nr - 2; i >= 0; i--) {
  850. if (br->entries[i].from || br->entries[i].to)
  851. pr_debug("%d: %" PRIx64 "-%" PRIx64 "\n", i,
  852. br->entries[i].from,
  853. br->entries[i].to);
  854. start = br->entries[i + 1].to;
  855. end = br->entries[i].from;
  856. len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
  857. /* Patch up missing kernel transfers due to ring filters */
  858. if (len == -ENXIO && i > 0) {
  859. end = br->entries[--i].from;
  860. pr_debug("\tpatching up to %" PRIx64 "-%" PRIx64 "\n", start, end);
  861. len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, false);
  862. }
  863. if (len <= 0)
  864. continue;
  865. insn = 0;
  866. for (off = 0;; off += ilen) {
  867. uint64_t ip = start + off;
  868. printed += ip__fprintf_sym(ip, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
  869. if (ip == end) {
  870. printed += ip__fprintf_jump(ip, &br->entries[i], &x, buffer + off, len - off, insn, fp);
  871. break;
  872. } else {
  873. printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", ip,
  874. dump_insn(&x, ip, buffer + off, len - off, &ilen));
  875. if (ilen == 0)
  876. break;
  877. insn++;
  878. }
  879. }
  880. }
  881. /*
  882. * Hit the branch? In this case we are already done, and the target
  883. * has not been executed yet.
  884. */
  885. if (br->entries[0].from == sample->ip)
  886. goto out;
  887. if (br->entries[0].flags.abort)
  888. goto out;
  889. /*
  890. * Print final block upto sample
  891. */
  892. start = br->entries[0].to;
  893. end = sample->ip;
  894. len = grab_bb(buffer, start, end, machine, thread, &x.is64bit, &x.cpumode, true);
  895. printed += ip__fprintf_sym(start, thread, x.cpumode, x.cpu, &lastsym, attr, fp);
  896. if (len <= 0) {
  897. /* Print at least last IP if basic block did not work */
  898. len = grab_bb(buffer, sample->ip, sample->ip,
  899. machine, thread, &x.is64bit, &x.cpumode, false);
  900. if (len <= 0)
  901. goto out;
  902. printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", sample->ip,
  903. dump_insn(&x, sample->ip, buffer, len, NULL));
  904. goto out;
  905. }
  906. for (off = 0; off <= end - start; off += ilen) {
  907. printed += fprintf(fp, "\t%016" PRIx64 "\t%s\n", start + off,
  908. dump_insn(&x, start + off, buffer + off, len - off, &ilen));
  909. if (ilen == 0)
  910. break;
  911. }
  912. out:
  913. return printed;
  914. }
  915. static int perf_sample__fprintf_addr(struct perf_sample *sample,
  916. struct thread *thread,
  917. struct perf_event_attr *attr, FILE *fp)
  918. {
  919. struct addr_location al;
  920. int printed = fprintf(fp, "%16" PRIx64, sample->addr);
  921. if (!sample_addr_correlates_sym(attr))
  922. goto out;
  923. thread__resolve(thread, &al, sample);
  924. if (PRINT_FIELD(SYM)) {
  925. printed += fprintf(fp, " ");
  926. if (PRINT_FIELD(SYMOFFSET))
  927. printed += symbol__fprintf_symname_offs(al.sym, &al, fp);
  928. else
  929. printed += symbol__fprintf_symname(al.sym, fp);
  930. }
  931. if (PRINT_FIELD(DSO)) {
  932. printed += fprintf(fp, " (");
  933. printed += map__fprintf_dsoname(al.map, fp);
  934. printed += fprintf(fp, ")");
  935. }
  936. out:
  937. return printed;
  938. }
  939. static int perf_sample__fprintf_callindent(struct perf_sample *sample,
  940. struct perf_evsel *evsel,
  941. struct thread *thread,
  942. struct addr_location *al, FILE *fp)
  943. {
  944. struct perf_event_attr *attr = &evsel->attr;
  945. size_t depth = thread_stack__depth(thread);
  946. struct addr_location addr_al;
  947. const char *name = NULL;
  948. static int spacing;
  949. int len = 0;
  950. u64 ip = 0;
  951. /*
  952. * The 'return' has already been popped off the stack so the depth has
  953. * to be adjusted to match the 'call'.
  954. */
  955. if (thread->ts && sample->flags & PERF_IP_FLAG_RETURN)
  956. depth += 1;
  957. if (sample->flags & (PERF_IP_FLAG_CALL | PERF_IP_FLAG_TRACE_BEGIN)) {
  958. if (sample_addr_correlates_sym(attr)) {
  959. thread__resolve(thread, &addr_al, sample);
  960. if (addr_al.sym)
  961. name = addr_al.sym->name;
  962. else
  963. ip = sample->addr;
  964. } else {
  965. ip = sample->addr;
  966. }
  967. } else if (sample->flags & (PERF_IP_FLAG_RETURN | PERF_IP_FLAG_TRACE_END)) {
  968. if (al->sym)
  969. name = al->sym->name;
  970. else
  971. ip = sample->ip;
  972. }
  973. if (name)
  974. len = fprintf(fp, "%*s%s", (int)depth * 4, "", name);
  975. else if (ip)
  976. len = fprintf(fp, "%*s%16" PRIx64, (int)depth * 4, "", ip);
  977. if (len < 0)
  978. return len;
  979. /*
  980. * Try to keep the output length from changing frequently so that the
  981. * output lines up more nicely.
  982. */
  983. if (len > spacing || (len && len < spacing - 52))
  984. spacing = round_up(len + 4, 32);
  985. if (len < spacing)
  986. len += fprintf(fp, "%*s", spacing - len, "");
  987. return len;
  988. }
  989. static int perf_sample__fprintf_insn(struct perf_sample *sample,
  990. struct perf_event_attr *attr,
  991. struct thread *thread,
  992. struct machine *machine, FILE *fp)
  993. {
  994. int printed = 0;
  995. if (PRINT_FIELD(INSNLEN))
  996. printed += fprintf(fp, " ilen: %d", sample->insn_len);
  997. if (PRINT_FIELD(INSN)) {
  998. int i;
  999. printed += fprintf(fp, " insn:");
  1000. for (i = 0; i < sample->insn_len; i++)
  1001. printed += fprintf(fp, " %02x", (unsigned char)sample->insn[i]);
  1002. }
  1003. if (PRINT_FIELD(BRSTACKINSN))
  1004. printed += perf_sample__fprintf_brstackinsn(sample, thread, attr, machine, fp);
  1005. return printed;
  1006. }
  1007. static int perf_sample__fprintf_bts(struct perf_sample *sample,
  1008. struct perf_evsel *evsel,
  1009. struct thread *thread,
  1010. struct addr_location *al,
  1011. struct machine *machine, FILE *fp)
  1012. {
  1013. struct perf_event_attr *attr = &evsel->attr;
  1014. unsigned int type = output_type(attr->type);
  1015. bool print_srcline_last = false;
  1016. int printed = 0;
  1017. if (PRINT_FIELD(CALLINDENT))
  1018. printed += perf_sample__fprintf_callindent(sample, evsel, thread, al, fp);
  1019. /* print branch_from information */
  1020. if (PRINT_FIELD(IP)) {
  1021. unsigned int print_opts = output[type].print_ip_opts;
  1022. struct callchain_cursor *cursor = NULL;
  1023. if (symbol_conf.use_callchain && sample->callchain &&
  1024. thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
  1025. sample, NULL, NULL, scripting_max_stack) == 0)
  1026. cursor = &callchain_cursor;
  1027. if (cursor == NULL) {
  1028. printed += fprintf(fp, " ");
  1029. if (print_opts & EVSEL__PRINT_SRCLINE) {
  1030. print_srcline_last = true;
  1031. print_opts &= ~EVSEL__PRINT_SRCLINE;
  1032. }
  1033. } else
  1034. printed += fprintf(fp, "\n");
  1035. printed += sample__fprintf_sym(sample, al, 0, print_opts, cursor, fp);
  1036. }
  1037. /* print branch_to information */
  1038. if (PRINT_FIELD(ADDR) ||
  1039. ((evsel->attr.sample_type & PERF_SAMPLE_ADDR) &&
  1040. !output[type].user_set)) {
  1041. printed += fprintf(fp, " => ");
  1042. printed += perf_sample__fprintf_addr(sample, thread, attr, fp);
  1043. }
  1044. if (print_srcline_last)
  1045. printed += map__fprintf_srcline(al->map, al->addr, "\n ", fp);
  1046. printed += perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
  1047. return printed + fprintf(fp, "\n");
  1048. }
  1049. static struct {
  1050. u32 flags;
  1051. const char *name;
  1052. } sample_flags[] = {
  1053. {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL, "call"},
  1054. {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN, "return"},
  1055. {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CONDITIONAL, "jcc"},
  1056. {PERF_IP_FLAG_BRANCH, "jmp"},
  1057. {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_INTERRUPT, "int"},
  1058. {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_INTERRUPT, "iret"},
  1059. {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_SYSCALLRET, "syscall"},
  1060. {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_RETURN | PERF_IP_FLAG_SYSCALLRET, "sysret"},
  1061. {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_ASYNC, "async"},
  1062. {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_CALL | PERF_IP_FLAG_ASYNC | PERF_IP_FLAG_INTERRUPT, "hw int"},
  1063. {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TX_ABORT, "tx abrt"},
  1064. {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_BEGIN, "tr strt"},
  1065. {PERF_IP_FLAG_BRANCH | PERF_IP_FLAG_TRACE_END, "tr end"},
  1066. {0, NULL}
  1067. };
  1068. static int perf_sample__fprintf_flags(u32 flags, FILE *fp)
  1069. {
  1070. const char *chars = PERF_IP_FLAG_CHARS;
  1071. const int n = strlen(PERF_IP_FLAG_CHARS);
  1072. bool in_tx = flags & PERF_IP_FLAG_IN_TX;
  1073. const char *name = NULL;
  1074. char str[33];
  1075. int i, pos = 0;
  1076. for (i = 0; sample_flags[i].name ; i++) {
  1077. if (sample_flags[i].flags == (flags & ~PERF_IP_FLAG_IN_TX)) {
  1078. name = sample_flags[i].name;
  1079. break;
  1080. }
  1081. }
  1082. for (i = 0; i < n; i++, flags >>= 1) {
  1083. if (flags & 1)
  1084. str[pos++] = chars[i];
  1085. }
  1086. for (; i < 32; i++, flags >>= 1) {
  1087. if (flags & 1)
  1088. str[pos++] = '?';
  1089. }
  1090. str[pos] = 0;
  1091. if (name)
  1092. return fprintf(fp, " %-7s%4s ", name, in_tx ? "(x)" : "");
  1093. return fprintf(fp, " %-11s ", str);
  1094. }
  1095. struct printer_data {
  1096. int line_no;
  1097. bool hit_nul;
  1098. bool is_printable;
  1099. };
  1100. static int sample__fprintf_bpf_output(enum binary_printer_ops op,
  1101. unsigned int val,
  1102. void *extra, FILE *fp)
  1103. {
  1104. unsigned char ch = (unsigned char)val;
  1105. struct printer_data *printer_data = extra;
  1106. int printed = 0;
  1107. switch (op) {
  1108. case BINARY_PRINT_DATA_BEGIN:
  1109. printed += fprintf(fp, "\n");
  1110. break;
  1111. case BINARY_PRINT_LINE_BEGIN:
  1112. printed += fprintf(fp, "%17s", !printer_data->line_no ? "BPF output:" :
  1113. " ");
  1114. break;
  1115. case BINARY_PRINT_ADDR:
  1116. printed += fprintf(fp, " %04x:", val);
  1117. break;
  1118. case BINARY_PRINT_NUM_DATA:
  1119. printed += fprintf(fp, " %02x", val);
  1120. break;
  1121. case BINARY_PRINT_NUM_PAD:
  1122. printed += fprintf(fp, " ");
  1123. break;
  1124. case BINARY_PRINT_SEP:
  1125. printed += fprintf(fp, " ");
  1126. break;
  1127. case BINARY_PRINT_CHAR_DATA:
  1128. if (printer_data->hit_nul && ch)
  1129. printer_data->is_printable = false;
  1130. if (!isprint(ch)) {
  1131. printed += fprintf(fp, "%c", '.');
  1132. if (!printer_data->is_printable)
  1133. break;
  1134. if (ch == '\0')
  1135. printer_data->hit_nul = true;
  1136. else
  1137. printer_data->is_printable = false;
  1138. } else {
  1139. printed += fprintf(fp, "%c", ch);
  1140. }
  1141. break;
  1142. case BINARY_PRINT_CHAR_PAD:
  1143. printed += fprintf(fp, " ");
  1144. break;
  1145. case BINARY_PRINT_LINE_END:
  1146. printed += fprintf(fp, "\n");
  1147. printer_data->line_no++;
  1148. break;
  1149. case BINARY_PRINT_DATA_END:
  1150. default:
  1151. break;
  1152. }
  1153. return printed;
  1154. }
  1155. static int perf_sample__fprintf_bpf_output(struct perf_sample *sample, FILE *fp)
  1156. {
  1157. unsigned int nr_bytes = sample->raw_size;
  1158. struct printer_data printer_data = {0, false, true};
  1159. int printed = binary__fprintf(sample->raw_data, nr_bytes, 8,
  1160. sample__fprintf_bpf_output, &printer_data, fp);
  1161. if (printer_data.is_printable && printer_data.hit_nul)
  1162. printed += fprintf(fp, "%17s \"%s\"\n", "BPF string:", (char *)(sample->raw_data));
  1163. return printed;
  1164. }
  1165. static int perf_sample__fprintf_spacing(int len, int spacing, FILE *fp)
  1166. {
  1167. if (len > 0 && len < spacing)
  1168. return fprintf(fp, "%*s", spacing - len, "");
  1169. return 0;
  1170. }
  1171. static int perf_sample__fprintf_pt_spacing(int len, FILE *fp)
  1172. {
  1173. return perf_sample__fprintf_spacing(len, 34, fp);
  1174. }
  1175. static int perf_sample__fprintf_synth_ptwrite(struct perf_sample *sample, FILE *fp)
  1176. {
  1177. struct perf_synth_intel_ptwrite *data = perf_sample__synth_ptr(sample);
  1178. int len;
  1179. if (perf_sample__bad_synth_size(sample, *data))
  1180. return 0;
  1181. len = fprintf(fp, " IP: %u payload: %#" PRIx64 " ",
  1182. data->ip, le64_to_cpu(data->payload));
  1183. return len + perf_sample__fprintf_pt_spacing(len, fp);
  1184. }
  1185. static int perf_sample__fprintf_synth_mwait(struct perf_sample *sample, FILE *fp)
  1186. {
  1187. struct perf_synth_intel_mwait *data = perf_sample__synth_ptr(sample);
  1188. int len;
  1189. if (perf_sample__bad_synth_size(sample, *data))
  1190. return 0;
  1191. len = fprintf(fp, " hints: %#x extensions: %#x ",
  1192. data->hints, data->extensions);
  1193. return len + perf_sample__fprintf_pt_spacing(len, fp);
  1194. }
  1195. static int perf_sample__fprintf_synth_pwre(struct perf_sample *sample, FILE *fp)
  1196. {
  1197. struct perf_synth_intel_pwre *data = perf_sample__synth_ptr(sample);
  1198. int len;
  1199. if (perf_sample__bad_synth_size(sample, *data))
  1200. return 0;
  1201. len = fprintf(fp, " hw: %u cstate: %u sub-cstate: %u ",
  1202. data->hw, data->cstate, data->subcstate);
  1203. return len + perf_sample__fprintf_pt_spacing(len, fp);
  1204. }
  1205. static int perf_sample__fprintf_synth_exstop(struct perf_sample *sample, FILE *fp)
  1206. {
  1207. struct perf_synth_intel_exstop *data = perf_sample__synth_ptr(sample);
  1208. int len;
  1209. if (perf_sample__bad_synth_size(sample, *data))
  1210. return 0;
  1211. len = fprintf(fp, " IP: %u ", data->ip);
  1212. return len + perf_sample__fprintf_pt_spacing(len, fp);
  1213. }
  1214. static int perf_sample__fprintf_synth_pwrx(struct perf_sample *sample, FILE *fp)
  1215. {
  1216. struct perf_synth_intel_pwrx *data = perf_sample__synth_ptr(sample);
  1217. int len;
  1218. if (perf_sample__bad_synth_size(sample, *data))
  1219. return 0;
  1220. len = fprintf(fp, " deepest cstate: %u last cstate: %u wake reason: %#x ",
  1221. data->deepest_cstate, data->last_cstate,
  1222. data->wake_reason);
  1223. return len + perf_sample__fprintf_pt_spacing(len, fp);
  1224. }
  1225. static int perf_sample__fprintf_synth_cbr(struct perf_sample *sample, FILE *fp)
  1226. {
  1227. struct perf_synth_intel_cbr *data = perf_sample__synth_ptr(sample);
  1228. unsigned int percent, freq;
  1229. int len;
  1230. if (perf_sample__bad_synth_size(sample, *data))
  1231. return 0;
  1232. freq = (le32_to_cpu(data->freq) + 500) / 1000;
  1233. len = fprintf(fp, " cbr: %2u freq: %4u MHz ", data->cbr, freq);
  1234. if (data->max_nonturbo) {
  1235. percent = (5 + (1000 * data->cbr) / data->max_nonturbo) / 10;
  1236. len += fprintf(fp, "(%3u%%) ", percent);
  1237. }
  1238. return len + perf_sample__fprintf_pt_spacing(len, fp);
  1239. }
  1240. static int perf_sample__fprintf_synth(struct perf_sample *sample,
  1241. struct perf_evsel *evsel, FILE *fp)
  1242. {
  1243. switch (evsel->attr.config) {
  1244. case PERF_SYNTH_INTEL_PTWRITE:
  1245. return perf_sample__fprintf_synth_ptwrite(sample, fp);
  1246. case PERF_SYNTH_INTEL_MWAIT:
  1247. return perf_sample__fprintf_synth_mwait(sample, fp);
  1248. case PERF_SYNTH_INTEL_PWRE:
  1249. return perf_sample__fprintf_synth_pwre(sample, fp);
  1250. case PERF_SYNTH_INTEL_EXSTOP:
  1251. return perf_sample__fprintf_synth_exstop(sample, fp);
  1252. case PERF_SYNTH_INTEL_PWRX:
  1253. return perf_sample__fprintf_synth_pwrx(sample, fp);
  1254. case PERF_SYNTH_INTEL_CBR:
  1255. return perf_sample__fprintf_synth_cbr(sample, fp);
  1256. default:
  1257. break;
  1258. }
  1259. return 0;
  1260. }
  1261. struct perf_script {
  1262. struct perf_tool tool;
  1263. struct perf_session *session;
  1264. bool show_task_events;
  1265. bool show_mmap_events;
  1266. bool show_switch_events;
  1267. bool show_namespace_events;
  1268. bool show_lost_events;
  1269. bool allocated;
  1270. bool per_event_dump;
  1271. struct cpu_map *cpus;
  1272. struct thread_map *threads;
  1273. int name_width;
  1274. const char *time_str;
  1275. struct perf_time_interval *ptime_range;
  1276. int range_size;
  1277. int range_num;
  1278. };
  1279. static int perf_evlist__max_name_len(struct perf_evlist *evlist)
  1280. {
  1281. struct perf_evsel *evsel;
  1282. int max = 0;
  1283. evlist__for_each_entry(evlist, evsel) {
  1284. int len = strlen(perf_evsel__name(evsel));
  1285. max = MAX(len, max);
  1286. }
  1287. return max;
  1288. }
  1289. static int data_src__fprintf(u64 data_src, FILE *fp)
  1290. {
  1291. struct mem_info mi = { .data_src.val = data_src };
  1292. char decode[100];
  1293. char out[100];
  1294. static int maxlen;
  1295. int len;
  1296. perf_script__meminfo_scnprintf(decode, 100, &mi);
  1297. len = scnprintf(out, 100, "%16" PRIx64 " %s", data_src, decode);
  1298. if (maxlen < len)
  1299. maxlen = len;
  1300. return fprintf(fp, "%-*s", maxlen, out);
  1301. }
  1302. struct metric_ctx {
  1303. struct perf_sample *sample;
  1304. struct thread *thread;
  1305. struct perf_evsel *evsel;
  1306. FILE *fp;
  1307. };
  1308. static void script_print_metric(void *ctx, const char *color,
  1309. const char *fmt,
  1310. const char *unit, double val)
  1311. {
  1312. struct metric_ctx *mctx = ctx;
  1313. if (!fmt)
  1314. return;
  1315. perf_sample__fprintf_start(mctx->sample, mctx->thread, mctx->evsel,
  1316. PERF_RECORD_SAMPLE, mctx->fp);
  1317. fputs("\tmetric: ", mctx->fp);
  1318. if (color)
  1319. color_fprintf(mctx->fp, color, fmt, val);
  1320. else
  1321. printf(fmt, val);
  1322. fprintf(mctx->fp, " %s\n", unit);
  1323. }
  1324. static void script_new_line(void *ctx)
  1325. {
  1326. struct metric_ctx *mctx = ctx;
  1327. perf_sample__fprintf_start(mctx->sample, mctx->thread, mctx->evsel,
  1328. PERF_RECORD_SAMPLE, mctx->fp);
  1329. fputs("\tmetric: ", mctx->fp);
  1330. }
  1331. static void perf_sample__fprint_metric(struct perf_script *script,
  1332. struct thread *thread,
  1333. struct perf_evsel *evsel,
  1334. struct perf_sample *sample,
  1335. FILE *fp)
  1336. {
  1337. struct perf_stat_output_ctx ctx = {
  1338. .print_metric = script_print_metric,
  1339. .new_line = script_new_line,
  1340. .ctx = &(struct metric_ctx) {
  1341. .sample = sample,
  1342. .thread = thread,
  1343. .evsel = evsel,
  1344. .fp = fp,
  1345. },
  1346. .force_header = false,
  1347. };
  1348. struct perf_evsel *ev2;
  1349. static bool init;
  1350. u64 val;
  1351. if (!init) {
  1352. perf_stat__init_shadow_stats();
  1353. init = true;
  1354. }
  1355. if (!evsel->stats)
  1356. perf_evlist__alloc_stats(script->session->evlist, false);
  1357. if (evsel_script(evsel->leader)->gnum++ == 0)
  1358. perf_stat__reset_shadow_stats();
  1359. val = sample->period * evsel->scale;
  1360. perf_stat__update_shadow_stats(evsel,
  1361. val,
  1362. sample->cpu,
  1363. &rt_stat);
  1364. evsel_script(evsel)->val = val;
  1365. if (evsel_script(evsel->leader)->gnum == evsel->leader->nr_members) {
  1366. for_each_group_member (ev2, evsel->leader) {
  1367. perf_stat__print_shadow_stats(ev2,
  1368. evsel_script(ev2)->val,
  1369. sample->cpu,
  1370. &ctx,
  1371. NULL,
  1372. &rt_stat);
  1373. }
  1374. evsel_script(evsel->leader)->gnum = 0;
  1375. }
  1376. }
  1377. static void process_event(struct perf_script *script,
  1378. struct perf_sample *sample, struct perf_evsel *evsel,
  1379. struct addr_location *al,
  1380. struct machine *machine)
  1381. {
  1382. struct thread *thread = al->thread;
  1383. struct perf_event_attr *attr = &evsel->attr;
  1384. unsigned int type = output_type(attr->type);
  1385. struct perf_evsel_script *es = evsel->priv;
  1386. FILE *fp = es->fp;
  1387. if (output[type].fields == 0)
  1388. return;
  1389. ++es->samples;
  1390. perf_sample__fprintf_start(sample, thread, evsel,
  1391. PERF_RECORD_SAMPLE, fp);
  1392. if (PRINT_FIELD(PERIOD))
  1393. fprintf(fp, "%10" PRIu64 " ", sample->period);
  1394. if (PRINT_FIELD(EVNAME)) {
  1395. const char *evname = perf_evsel__name(evsel);
  1396. if (!script->name_width)
  1397. script->name_width = perf_evlist__max_name_len(script->session->evlist);
  1398. fprintf(fp, "%*s: ", script->name_width, evname ?: "[unknown]");
  1399. }
  1400. if (print_flags)
  1401. perf_sample__fprintf_flags(sample->flags, fp);
  1402. if (is_bts_event(attr)) {
  1403. perf_sample__fprintf_bts(sample, evsel, thread, al, machine, fp);
  1404. return;
  1405. }
  1406. if (PRINT_FIELD(TRACE)) {
  1407. event_format__fprintf(evsel->tp_format, sample->cpu,
  1408. sample->raw_data, sample->raw_size, fp);
  1409. }
  1410. if (attr->type == PERF_TYPE_SYNTH && PRINT_FIELD(SYNTH))
  1411. perf_sample__fprintf_synth(sample, evsel, fp);
  1412. if (PRINT_FIELD(ADDR))
  1413. perf_sample__fprintf_addr(sample, thread, attr, fp);
  1414. if (PRINT_FIELD(DATA_SRC))
  1415. data_src__fprintf(sample->data_src, fp);
  1416. if (PRINT_FIELD(WEIGHT))
  1417. fprintf(fp, "%16" PRIu64, sample->weight);
  1418. if (PRINT_FIELD(IP)) {
  1419. struct callchain_cursor *cursor = NULL;
  1420. if (symbol_conf.use_callchain && sample->callchain &&
  1421. thread__resolve_callchain(al->thread, &callchain_cursor, evsel,
  1422. sample, NULL, NULL, scripting_max_stack) == 0)
  1423. cursor = &callchain_cursor;
  1424. fputc(cursor ? '\n' : ' ', fp);
  1425. sample__fprintf_sym(sample, al, 0, output[type].print_ip_opts, cursor, fp);
  1426. }
  1427. if (PRINT_FIELD(IREGS))
  1428. perf_sample__fprintf_iregs(sample, attr, fp);
  1429. if (PRINT_FIELD(UREGS))
  1430. perf_sample__fprintf_uregs(sample, attr, fp);
  1431. if (PRINT_FIELD(BRSTACK))
  1432. perf_sample__fprintf_brstack(sample, thread, attr, fp);
  1433. else if (PRINT_FIELD(BRSTACKSYM))
  1434. perf_sample__fprintf_brstacksym(sample, thread, attr, fp);
  1435. else if (PRINT_FIELD(BRSTACKOFF))
  1436. perf_sample__fprintf_brstackoff(sample, thread, attr, fp);
  1437. if (perf_evsel__is_bpf_output(evsel) && PRINT_FIELD(BPF_OUTPUT))
  1438. perf_sample__fprintf_bpf_output(sample, fp);
  1439. perf_sample__fprintf_insn(sample, attr, thread, machine, fp);
  1440. if (PRINT_FIELD(PHYS_ADDR))
  1441. fprintf(fp, "%16" PRIx64, sample->phys_addr);
  1442. fprintf(fp, "\n");
  1443. if (PRINT_FIELD(METRIC))
  1444. perf_sample__fprint_metric(script, thread, evsel, sample, fp);
  1445. }
  1446. static struct scripting_ops *scripting_ops;
  1447. static void __process_stat(struct perf_evsel *counter, u64 tstamp)
  1448. {
  1449. int nthreads = thread_map__nr(counter->threads);
  1450. int ncpus = perf_evsel__nr_cpus(counter);
  1451. int cpu, thread;
  1452. static int header_printed;
  1453. if (counter->system_wide)
  1454. nthreads = 1;
  1455. if (!header_printed) {
  1456. printf("%3s %8s %15s %15s %15s %15s %s\n",
  1457. "CPU", "THREAD", "VAL", "ENA", "RUN", "TIME", "EVENT");
  1458. header_printed = 1;
  1459. }
  1460. for (thread = 0; thread < nthreads; thread++) {
  1461. for (cpu = 0; cpu < ncpus; cpu++) {
  1462. struct perf_counts_values *counts;
  1463. counts = perf_counts(counter->counts, cpu, thread);
  1464. printf("%3d %8d %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %15" PRIu64 " %s\n",
  1465. counter->cpus->map[cpu],
  1466. thread_map__pid(counter->threads, thread),
  1467. counts->val,
  1468. counts->ena,
  1469. counts->run,
  1470. tstamp,
  1471. perf_evsel__name(counter));
  1472. }
  1473. }
  1474. }
  1475. static void process_stat(struct perf_evsel *counter, u64 tstamp)
  1476. {
  1477. if (scripting_ops && scripting_ops->process_stat)
  1478. scripting_ops->process_stat(&stat_config, counter, tstamp);
  1479. else
  1480. __process_stat(counter, tstamp);
  1481. }
  1482. static void process_stat_interval(u64 tstamp)
  1483. {
  1484. if (scripting_ops && scripting_ops->process_stat_interval)
  1485. scripting_ops->process_stat_interval(tstamp);
  1486. }
  1487. static void setup_scripting(void)
  1488. {
  1489. setup_perl_scripting();
  1490. setup_python_scripting();
  1491. }
  1492. static int flush_scripting(void)
  1493. {
  1494. return scripting_ops ? scripting_ops->flush_script() : 0;
  1495. }
  1496. static int cleanup_scripting(void)
  1497. {
  1498. pr_debug("\nperf script stopped\n");
  1499. return scripting_ops ? scripting_ops->stop_script() : 0;
  1500. }
  1501. static int process_sample_event(struct perf_tool *tool,
  1502. union perf_event *event,
  1503. struct perf_sample *sample,
  1504. struct perf_evsel *evsel,
  1505. struct machine *machine)
  1506. {
  1507. struct perf_script *scr = container_of(tool, struct perf_script, tool);
  1508. struct addr_location al;
  1509. if (perf_time__ranges_skip_sample(scr->ptime_range, scr->range_num,
  1510. sample->time)) {
  1511. return 0;
  1512. }
  1513. if (debug_mode) {
  1514. if (sample->time < last_timestamp) {
  1515. pr_err("Samples misordered, previous: %" PRIu64
  1516. " this: %" PRIu64 "\n", last_timestamp,
  1517. sample->time);
  1518. nr_unordered++;
  1519. }
  1520. last_timestamp = sample->time;
  1521. return 0;
  1522. }
  1523. if (machine__resolve(machine, &al, sample) < 0) {
  1524. pr_err("problem processing %d event, skipping it.\n",
  1525. event->header.type);
  1526. return -1;
  1527. }
  1528. if (al.filtered)
  1529. goto out_put;
  1530. if (cpu_list && !test_bit(sample->cpu, cpu_bitmap))
  1531. goto out_put;
  1532. if (scripting_ops)
  1533. scripting_ops->process_event(event, sample, evsel, &al);
  1534. else
  1535. process_event(scr, sample, evsel, &al, machine);
  1536. out_put:
  1537. addr_location__put(&al);
  1538. return 0;
  1539. }
  1540. static int process_attr(struct perf_tool *tool, union perf_event *event,
  1541. struct perf_evlist **pevlist)
  1542. {
  1543. struct perf_script *scr = container_of(tool, struct perf_script, tool);
  1544. struct perf_evlist *evlist;
  1545. struct perf_evsel *evsel, *pos;
  1546. int err;
  1547. err = perf_event__process_attr(tool, event, pevlist);
  1548. if (err)
  1549. return err;
  1550. evlist = *pevlist;
  1551. evsel = perf_evlist__last(*pevlist);
  1552. if (evsel->attr.type >= PERF_TYPE_MAX &&
  1553. evsel->attr.type != PERF_TYPE_SYNTH)
  1554. return 0;
  1555. evlist__for_each_entry(evlist, pos) {
  1556. if (pos->attr.type == evsel->attr.type && pos != evsel)
  1557. return 0;
  1558. }
  1559. set_print_ip_opts(&evsel->attr);
  1560. if (evsel->attr.sample_type)
  1561. err = perf_evsel__check_attr(evsel, scr->session);
  1562. return err;
  1563. }
  1564. static int process_comm_event(struct perf_tool *tool,
  1565. union perf_event *event,
  1566. struct perf_sample *sample,
  1567. struct machine *machine)
  1568. {
  1569. struct thread *thread;
  1570. struct perf_script *script = container_of(tool, struct perf_script, tool);
  1571. struct perf_session *session = script->session;
  1572. struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
  1573. int ret = -1;
  1574. thread = machine__findnew_thread(machine, event->comm.pid, event->comm.tid);
  1575. if (thread == NULL) {
  1576. pr_debug("problem processing COMM event, skipping it.\n");
  1577. return -1;
  1578. }
  1579. if (perf_event__process_comm(tool, event, sample, machine) < 0)
  1580. goto out;
  1581. if (!evsel->attr.sample_id_all) {
  1582. sample->cpu = 0;
  1583. sample->time = 0;
  1584. sample->tid = event->comm.tid;
  1585. sample->pid = event->comm.pid;
  1586. }
  1587. perf_sample__fprintf_start(sample, thread, evsel,
  1588. PERF_RECORD_COMM, stdout);
  1589. perf_event__fprintf(event, stdout);
  1590. ret = 0;
  1591. out:
  1592. thread__put(thread);
  1593. return ret;
  1594. }
  1595. static int process_namespaces_event(struct perf_tool *tool,
  1596. union perf_event *event,
  1597. struct perf_sample *sample,
  1598. struct machine *machine)
  1599. {
  1600. struct thread *thread;
  1601. struct perf_script *script = container_of(tool, struct perf_script, tool);
  1602. struct perf_session *session = script->session;
  1603. struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
  1604. int ret = -1;
  1605. thread = machine__findnew_thread(machine, event->namespaces.pid,
  1606. event->namespaces.tid);
  1607. if (thread == NULL) {
  1608. pr_debug("problem processing NAMESPACES event, skipping it.\n");
  1609. return -1;
  1610. }
  1611. if (perf_event__process_namespaces(tool, event, sample, machine) < 0)
  1612. goto out;
  1613. if (!evsel->attr.sample_id_all) {
  1614. sample->cpu = 0;
  1615. sample->time = 0;
  1616. sample->tid = event->namespaces.tid;
  1617. sample->pid = event->namespaces.pid;
  1618. }
  1619. perf_sample__fprintf_start(sample, thread, evsel,
  1620. PERF_RECORD_NAMESPACES, stdout);
  1621. perf_event__fprintf(event, stdout);
  1622. ret = 0;
  1623. out:
  1624. thread__put(thread);
  1625. return ret;
  1626. }
  1627. static int process_fork_event(struct perf_tool *tool,
  1628. union perf_event *event,
  1629. struct perf_sample *sample,
  1630. struct machine *machine)
  1631. {
  1632. struct thread *thread;
  1633. struct perf_script *script = container_of(tool, struct perf_script, tool);
  1634. struct perf_session *session = script->session;
  1635. struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
  1636. if (perf_event__process_fork(tool, event, sample, machine) < 0)
  1637. return -1;
  1638. thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
  1639. if (thread == NULL) {
  1640. pr_debug("problem processing FORK event, skipping it.\n");
  1641. return -1;
  1642. }
  1643. if (!evsel->attr.sample_id_all) {
  1644. sample->cpu = 0;
  1645. sample->time = event->fork.time;
  1646. sample->tid = event->fork.tid;
  1647. sample->pid = event->fork.pid;
  1648. }
  1649. perf_sample__fprintf_start(sample, thread, evsel,
  1650. PERF_RECORD_FORK, stdout);
  1651. perf_event__fprintf(event, stdout);
  1652. thread__put(thread);
  1653. return 0;
  1654. }
  1655. static int process_exit_event(struct perf_tool *tool,
  1656. union perf_event *event,
  1657. struct perf_sample *sample,
  1658. struct machine *machine)
  1659. {
  1660. int err = 0;
  1661. struct thread *thread;
  1662. struct perf_script *script = container_of(tool, struct perf_script, tool);
  1663. struct perf_session *session = script->session;
  1664. struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
  1665. thread = machine__findnew_thread(machine, event->fork.pid, event->fork.tid);
  1666. if (thread == NULL) {
  1667. pr_debug("problem processing EXIT event, skipping it.\n");
  1668. return -1;
  1669. }
  1670. if (!evsel->attr.sample_id_all) {
  1671. sample->cpu = 0;
  1672. sample->time = 0;
  1673. sample->tid = event->fork.tid;
  1674. sample->pid = event->fork.pid;
  1675. }
  1676. perf_sample__fprintf_start(sample, thread, evsel,
  1677. PERF_RECORD_EXIT, stdout);
  1678. perf_event__fprintf(event, stdout);
  1679. if (perf_event__process_exit(tool, event, sample, machine) < 0)
  1680. err = -1;
  1681. thread__put(thread);
  1682. return err;
  1683. }
  1684. static int process_mmap_event(struct perf_tool *tool,
  1685. union perf_event *event,
  1686. struct perf_sample *sample,
  1687. struct machine *machine)
  1688. {
  1689. struct thread *thread;
  1690. struct perf_script *script = container_of(tool, struct perf_script, tool);
  1691. struct perf_session *session = script->session;
  1692. struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
  1693. if (perf_event__process_mmap(tool, event, sample, machine) < 0)
  1694. return -1;
  1695. thread = machine__findnew_thread(machine, event->mmap.pid, event->mmap.tid);
  1696. if (thread == NULL) {
  1697. pr_debug("problem processing MMAP event, skipping it.\n");
  1698. return -1;
  1699. }
  1700. if (!evsel->attr.sample_id_all) {
  1701. sample->cpu = 0;
  1702. sample->time = 0;
  1703. sample->tid = event->mmap.tid;
  1704. sample->pid = event->mmap.pid;
  1705. }
  1706. perf_sample__fprintf_start(sample, thread, evsel,
  1707. PERF_RECORD_MMAP, stdout);
  1708. perf_event__fprintf(event, stdout);
  1709. thread__put(thread);
  1710. return 0;
  1711. }
  1712. static int process_mmap2_event(struct perf_tool *tool,
  1713. union perf_event *event,
  1714. struct perf_sample *sample,
  1715. struct machine *machine)
  1716. {
  1717. struct thread *thread;
  1718. struct perf_script *script = container_of(tool, struct perf_script, tool);
  1719. struct perf_session *session = script->session;
  1720. struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
  1721. if (perf_event__process_mmap2(tool, event, sample, machine) < 0)
  1722. return -1;
  1723. thread = machine__findnew_thread(machine, event->mmap2.pid, event->mmap2.tid);
  1724. if (thread == NULL) {
  1725. pr_debug("problem processing MMAP2 event, skipping it.\n");
  1726. return -1;
  1727. }
  1728. if (!evsel->attr.sample_id_all) {
  1729. sample->cpu = 0;
  1730. sample->time = 0;
  1731. sample->tid = event->mmap2.tid;
  1732. sample->pid = event->mmap2.pid;
  1733. }
  1734. perf_sample__fprintf_start(sample, thread, evsel,
  1735. PERF_RECORD_MMAP2, stdout);
  1736. perf_event__fprintf(event, stdout);
  1737. thread__put(thread);
  1738. return 0;
  1739. }
  1740. static int process_switch_event(struct perf_tool *tool,
  1741. union perf_event *event,
  1742. struct perf_sample *sample,
  1743. struct machine *machine)
  1744. {
  1745. struct thread *thread;
  1746. struct perf_script *script = container_of(tool, struct perf_script, tool);
  1747. struct perf_session *session = script->session;
  1748. struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
  1749. if (perf_event__process_switch(tool, event, sample, machine) < 0)
  1750. return -1;
  1751. thread = machine__findnew_thread(machine, sample->pid,
  1752. sample->tid);
  1753. if (thread == NULL) {
  1754. pr_debug("problem processing SWITCH event, skipping it.\n");
  1755. return -1;
  1756. }
  1757. perf_sample__fprintf_start(sample, thread, evsel,
  1758. PERF_RECORD_SWITCH, stdout);
  1759. perf_event__fprintf(event, stdout);
  1760. thread__put(thread);
  1761. return 0;
  1762. }
  1763. static int
  1764. process_lost_event(struct perf_tool *tool,
  1765. union perf_event *event,
  1766. struct perf_sample *sample,
  1767. struct machine *machine)
  1768. {
  1769. struct perf_script *script = container_of(tool, struct perf_script, tool);
  1770. struct perf_session *session = script->session;
  1771. struct perf_evsel *evsel = perf_evlist__id2evsel(session->evlist, sample->id);
  1772. struct thread *thread;
  1773. thread = machine__findnew_thread(machine, sample->pid,
  1774. sample->tid);
  1775. if (thread == NULL)
  1776. return -1;
  1777. perf_sample__fprintf_start(sample, thread, evsel,
  1778. PERF_RECORD_LOST, stdout);
  1779. perf_event__fprintf(event, stdout);
  1780. thread__put(thread);
  1781. return 0;
  1782. }
  1783. static void sig_handler(int sig __maybe_unused)
  1784. {
  1785. session_done = 1;
  1786. }
  1787. static void perf_script__fclose_per_event_dump(struct perf_script *script)
  1788. {
  1789. struct perf_evlist *evlist = script->session->evlist;
  1790. struct perf_evsel *evsel;
  1791. evlist__for_each_entry(evlist, evsel) {
  1792. if (!evsel->priv)
  1793. break;
  1794. perf_evsel_script__delete(evsel->priv);
  1795. evsel->priv = NULL;
  1796. }
  1797. }
  1798. static int perf_script__fopen_per_event_dump(struct perf_script *script)
  1799. {
  1800. struct perf_evsel *evsel;
  1801. evlist__for_each_entry(script->session->evlist, evsel) {
  1802. /*
  1803. * Already setup? I.e. we may be called twice in cases like
  1804. * Intel PT, one for the intel_pt// and dummy events, then
  1805. * for the evsels syntheized from the auxtrace info.
  1806. *
  1807. * Ses perf_script__process_auxtrace_info.
  1808. */
  1809. if (evsel->priv != NULL)
  1810. continue;
  1811. evsel->priv = perf_evsel_script__new(evsel, script->session->data);
  1812. if (evsel->priv == NULL)
  1813. goto out_err_fclose;
  1814. }
  1815. return 0;
  1816. out_err_fclose:
  1817. perf_script__fclose_per_event_dump(script);
  1818. return -1;
  1819. }
  1820. static int perf_script__setup_per_event_dump(struct perf_script *script)
  1821. {
  1822. struct perf_evsel *evsel;
  1823. static struct perf_evsel_script es_stdout;
  1824. if (script->per_event_dump)
  1825. return perf_script__fopen_per_event_dump(script);
  1826. es_stdout.fp = stdout;
  1827. evlist__for_each_entry(script->session->evlist, evsel)
  1828. evsel->priv = &es_stdout;
  1829. return 0;
  1830. }
  1831. static void perf_script__exit_per_event_dump_stats(struct perf_script *script)
  1832. {
  1833. struct perf_evsel *evsel;
  1834. evlist__for_each_entry(script->session->evlist, evsel) {
  1835. struct perf_evsel_script *es = evsel->priv;
  1836. perf_evsel_script__fprintf(es, stdout);
  1837. perf_evsel_script__delete(es);
  1838. evsel->priv = NULL;
  1839. }
  1840. }
  1841. static int __cmd_script(struct perf_script *script)
  1842. {
  1843. int ret;
  1844. signal(SIGINT, sig_handler);
  1845. /* override event processing functions */
  1846. if (script->show_task_events) {
  1847. script->tool.comm = process_comm_event;
  1848. script->tool.fork = process_fork_event;
  1849. script->tool.exit = process_exit_event;
  1850. }
  1851. if (script->show_mmap_events) {
  1852. script->tool.mmap = process_mmap_event;
  1853. script->tool.mmap2 = process_mmap2_event;
  1854. }
  1855. if (script->show_switch_events)
  1856. script->tool.context_switch = process_switch_event;
  1857. if (script->show_namespace_events)
  1858. script->tool.namespaces = process_namespaces_event;
  1859. if (script->show_lost_events)
  1860. script->tool.lost = process_lost_event;
  1861. if (perf_script__setup_per_event_dump(script)) {
  1862. pr_err("Couldn't create the per event dump files\n");
  1863. return -1;
  1864. }
  1865. ret = perf_session__process_events(script->session);
  1866. if (script->per_event_dump)
  1867. perf_script__exit_per_event_dump_stats(script);
  1868. if (debug_mode)
  1869. pr_err("Misordered timestamps: %" PRIu64 "\n", nr_unordered);
  1870. return ret;
  1871. }
  1872. struct script_spec {
  1873. struct list_head node;
  1874. struct scripting_ops *ops;
  1875. char spec[0];
  1876. };
  1877. static LIST_HEAD(script_specs);
  1878. static struct script_spec *script_spec__new(const char *spec,
  1879. struct scripting_ops *ops)
  1880. {
  1881. struct script_spec *s = malloc(sizeof(*s) + strlen(spec) + 1);
  1882. if (s != NULL) {
  1883. strcpy(s->spec, spec);
  1884. s->ops = ops;
  1885. }
  1886. return s;
  1887. }
  1888. static void script_spec__add(struct script_spec *s)
  1889. {
  1890. list_add_tail(&s->node, &script_specs);
  1891. }
  1892. static struct script_spec *script_spec__find(const char *spec)
  1893. {
  1894. struct script_spec *s;
  1895. list_for_each_entry(s, &script_specs, node)
  1896. if (strcasecmp(s->spec, spec) == 0)
  1897. return s;
  1898. return NULL;
  1899. }
  1900. int script_spec_register(const char *spec, struct scripting_ops *ops)
  1901. {
  1902. struct script_spec *s;
  1903. s = script_spec__find(spec);
  1904. if (s)
  1905. return -1;
  1906. s = script_spec__new(spec, ops);
  1907. if (!s)
  1908. return -1;
  1909. else
  1910. script_spec__add(s);
  1911. return 0;
  1912. }
  1913. static struct scripting_ops *script_spec__lookup(const char *spec)
  1914. {
  1915. struct script_spec *s = script_spec__find(spec);
  1916. if (!s)
  1917. return NULL;
  1918. return s->ops;
  1919. }
  1920. static void list_available_languages(void)
  1921. {
  1922. struct script_spec *s;
  1923. fprintf(stderr, "\n");
  1924. fprintf(stderr, "Scripting language extensions (used in "
  1925. "perf script -s [spec:]script.[spec]):\n\n");
  1926. list_for_each_entry(s, &script_specs, node)
  1927. fprintf(stderr, " %-42s [%s]\n", s->spec, s->ops->name);
  1928. fprintf(stderr, "\n");
  1929. }
  1930. static int parse_scriptname(const struct option *opt __maybe_unused,
  1931. const char *str, int unset __maybe_unused)
  1932. {
  1933. char spec[PATH_MAX];
  1934. const char *script, *ext;
  1935. int len;
  1936. if (strcmp(str, "lang") == 0) {
  1937. list_available_languages();
  1938. exit(0);
  1939. }
  1940. script = strchr(str, ':');
  1941. if (script) {
  1942. len = script - str;
  1943. if (len >= PATH_MAX) {
  1944. fprintf(stderr, "invalid language specifier");
  1945. return -1;
  1946. }
  1947. strncpy(spec, str, len);
  1948. spec[len] = '\0';
  1949. scripting_ops = script_spec__lookup(spec);
  1950. if (!scripting_ops) {
  1951. fprintf(stderr, "invalid language specifier");
  1952. return -1;
  1953. }
  1954. script++;
  1955. } else {
  1956. script = str;
  1957. ext = strrchr(script, '.');
  1958. if (!ext) {
  1959. fprintf(stderr, "invalid script extension");
  1960. return -1;
  1961. }
  1962. scripting_ops = script_spec__lookup(++ext);
  1963. if (!scripting_ops) {
  1964. fprintf(stderr, "invalid script extension");
  1965. return -1;
  1966. }
  1967. }
  1968. script_name = strdup(script);
  1969. return 0;
  1970. }
  1971. static int parse_output_fields(const struct option *opt __maybe_unused,
  1972. const char *arg, int unset __maybe_unused)
  1973. {
  1974. char *tok, *strtok_saveptr = NULL;
  1975. int i, imax = ARRAY_SIZE(all_output_options);
  1976. int j;
  1977. int rc = 0;
  1978. char *str = strdup(arg);
  1979. int type = -1;
  1980. enum { DEFAULT, SET, ADD, REMOVE } change = DEFAULT;
  1981. if (!str)
  1982. return -ENOMEM;
  1983. /* first word can state for which event type the user is specifying
  1984. * the fields. If no type exists, the specified fields apply to all
  1985. * event types found in the file minus the invalid fields for a type.
  1986. */
  1987. tok = strchr(str, ':');
  1988. if (tok) {
  1989. *tok = '\0';
  1990. tok++;
  1991. if (!strcmp(str, "hw"))
  1992. type = PERF_TYPE_HARDWARE;
  1993. else if (!strcmp(str, "sw"))
  1994. type = PERF_TYPE_SOFTWARE;
  1995. else if (!strcmp(str, "trace"))
  1996. type = PERF_TYPE_TRACEPOINT;
  1997. else if (!strcmp(str, "raw"))
  1998. type = PERF_TYPE_RAW;
  1999. else if (!strcmp(str, "break"))
  2000. type = PERF_TYPE_BREAKPOINT;
  2001. else if (!strcmp(str, "synth"))
  2002. type = OUTPUT_TYPE_SYNTH;
  2003. else {
  2004. fprintf(stderr, "Invalid event type in field string.\n");
  2005. rc = -EINVAL;
  2006. goto out;
  2007. }
  2008. if (output[type].user_set)
  2009. pr_warning("Overriding previous field request for %s events.\n",
  2010. event_type(type));
  2011. output[type].fields = 0;
  2012. output[type].user_set = true;
  2013. output[type].wildcard_set = false;
  2014. } else {
  2015. tok = str;
  2016. if (strlen(str) == 0) {
  2017. fprintf(stderr,
  2018. "Cannot set fields to 'none' for all event types.\n");
  2019. rc = -EINVAL;
  2020. goto out;
  2021. }
  2022. /* Don't override defaults for +- */
  2023. if (strchr(str, '+') || strchr(str, '-'))
  2024. goto parse;
  2025. if (output_set_by_user())
  2026. pr_warning("Overriding previous field request for all events.\n");
  2027. for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
  2028. output[j].fields = 0;
  2029. output[j].user_set = true;
  2030. output[j].wildcard_set = true;
  2031. }
  2032. }
  2033. parse:
  2034. for (tok = strtok_r(tok, ",", &strtok_saveptr); tok; tok = strtok_r(NULL, ",", &strtok_saveptr)) {
  2035. if (*tok == '+') {
  2036. if (change == SET)
  2037. goto out_badmix;
  2038. change = ADD;
  2039. tok++;
  2040. } else if (*tok == '-') {
  2041. if (change == SET)
  2042. goto out_badmix;
  2043. change = REMOVE;
  2044. tok++;
  2045. } else {
  2046. if (change != SET && change != DEFAULT)
  2047. goto out_badmix;
  2048. change = SET;
  2049. }
  2050. for (i = 0; i < imax; ++i) {
  2051. if (strcmp(tok, all_output_options[i].str) == 0)
  2052. break;
  2053. }
  2054. if (i == imax && strcmp(tok, "flags") == 0) {
  2055. print_flags = change == REMOVE ? false : true;
  2056. continue;
  2057. }
  2058. if (i == imax) {
  2059. fprintf(stderr, "Invalid field requested.\n");
  2060. rc = -EINVAL;
  2061. goto out;
  2062. }
  2063. if (type == -1) {
  2064. /* add user option to all events types for
  2065. * which it is valid
  2066. */
  2067. for (j = 0; j < OUTPUT_TYPE_MAX; ++j) {
  2068. if (output[j].invalid_fields & all_output_options[i].field) {
  2069. pr_warning("\'%s\' not valid for %s events. Ignoring.\n",
  2070. all_output_options[i].str, event_type(j));
  2071. } else {
  2072. if (change == REMOVE)
  2073. output[j].fields &= ~all_output_options[i].field;
  2074. else
  2075. output[j].fields |= all_output_options[i].field;
  2076. }
  2077. }
  2078. } else {
  2079. if (output[type].invalid_fields & all_output_options[i].field) {
  2080. fprintf(stderr, "\'%s\' not valid for %s events.\n",
  2081. all_output_options[i].str, event_type(type));
  2082. rc = -EINVAL;
  2083. goto out;
  2084. }
  2085. output[type].fields |= all_output_options[i].field;
  2086. }
  2087. }
  2088. if (type >= 0) {
  2089. if (output[type].fields == 0) {
  2090. pr_debug("No fields requested for %s type. "
  2091. "Events will not be displayed.\n", event_type(type));
  2092. }
  2093. }
  2094. goto out;
  2095. out_badmix:
  2096. fprintf(stderr, "Cannot mix +-field with overridden fields\n");
  2097. rc = -EINVAL;
  2098. out:
  2099. free(str);
  2100. return rc;
  2101. }
  2102. #define for_each_lang(scripts_path, scripts_dir, lang_dirent) \
  2103. while ((lang_dirent = readdir(scripts_dir)) != NULL) \
  2104. if ((lang_dirent->d_type == DT_DIR || \
  2105. (lang_dirent->d_type == DT_UNKNOWN && \
  2106. is_directory(scripts_path, lang_dirent))) && \
  2107. (strcmp(lang_dirent->d_name, ".")) && \
  2108. (strcmp(lang_dirent->d_name, "..")))
  2109. #define for_each_script(lang_path, lang_dir, script_dirent) \
  2110. while ((script_dirent = readdir(lang_dir)) != NULL) \
  2111. if (script_dirent->d_type != DT_DIR && \
  2112. (script_dirent->d_type != DT_UNKNOWN || \
  2113. !is_directory(lang_path, script_dirent)))
  2114. #define RECORD_SUFFIX "-record"
  2115. #define REPORT_SUFFIX "-report"
  2116. struct script_desc {
  2117. struct list_head node;
  2118. char *name;
  2119. char *half_liner;
  2120. char *args;
  2121. };
  2122. static LIST_HEAD(script_descs);
  2123. static struct script_desc *script_desc__new(const char *name)
  2124. {
  2125. struct script_desc *s = zalloc(sizeof(*s));
  2126. if (s != NULL && name)
  2127. s->name = strdup(name);
  2128. return s;
  2129. }
  2130. static void script_desc__delete(struct script_desc *s)
  2131. {
  2132. zfree(&s->name);
  2133. zfree(&s->half_liner);
  2134. zfree(&s->args);
  2135. free(s);
  2136. }
  2137. static void script_desc__add(struct script_desc *s)
  2138. {
  2139. list_add_tail(&s->node, &script_descs);
  2140. }
  2141. static struct script_desc *script_desc__find(const char *name)
  2142. {
  2143. struct script_desc *s;
  2144. list_for_each_entry(s, &script_descs, node)
  2145. if (strcasecmp(s->name, name) == 0)
  2146. return s;
  2147. return NULL;
  2148. }
  2149. static struct script_desc *script_desc__findnew(const char *name)
  2150. {
  2151. struct script_desc *s = script_desc__find(name);
  2152. if (s)
  2153. return s;
  2154. s = script_desc__new(name);
  2155. if (!s)
  2156. return NULL;
  2157. script_desc__add(s);
  2158. return s;
  2159. }
  2160. static const char *ends_with(const char *str, const char *suffix)
  2161. {
  2162. size_t suffix_len = strlen(suffix);
  2163. const char *p = str;
  2164. if (strlen(str) > suffix_len) {
  2165. p = str + strlen(str) - suffix_len;
  2166. if (!strncmp(p, suffix, suffix_len))
  2167. return p;
  2168. }
  2169. return NULL;
  2170. }
  2171. static int read_script_info(struct script_desc *desc, const char *filename)
  2172. {
  2173. char line[BUFSIZ], *p;
  2174. FILE *fp;
  2175. fp = fopen(filename, "r");
  2176. if (!fp)
  2177. return -1;
  2178. while (fgets(line, sizeof(line), fp)) {
  2179. p = ltrim(line);
  2180. if (strlen(p) == 0)
  2181. continue;
  2182. if (*p != '#')
  2183. continue;
  2184. p++;
  2185. if (strlen(p) && *p == '!')
  2186. continue;
  2187. p = ltrim(p);
  2188. if (strlen(p) && p[strlen(p) - 1] == '\n')
  2189. p[strlen(p) - 1] = '\0';
  2190. if (!strncmp(p, "description:", strlen("description:"))) {
  2191. p += strlen("description:");
  2192. desc->half_liner = strdup(ltrim(p));
  2193. continue;
  2194. }
  2195. if (!strncmp(p, "args:", strlen("args:"))) {
  2196. p += strlen("args:");
  2197. desc->args = strdup(ltrim(p));
  2198. continue;
  2199. }
  2200. }
  2201. fclose(fp);
  2202. return 0;
  2203. }
  2204. static char *get_script_root(struct dirent *script_dirent, const char *suffix)
  2205. {
  2206. char *script_root, *str;
  2207. script_root = strdup(script_dirent->d_name);
  2208. if (!script_root)
  2209. return NULL;
  2210. str = (char *)ends_with(script_root, suffix);
  2211. if (!str) {
  2212. free(script_root);
  2213. return NULL;
  2214. }
  2215. *str = '\0';
  2216. return script_root;
  2217. }
  2218. static int list_available_scripts(const struct option *opt __maybe_unused,
  2219. const char *s __maybe_unused,
  2220. int unset __maybe_unused)
  2221. {
  2222. struct dirent *script_dirent, *lang_dirent;
  2223. char scripts_path[MAXPATHLEN];
  2224. DIR *scripts_dir, *lang_dir;
  2225. char script_path[MAXPATHLEN];
  2226. char lang_path[MAXPATHLEN];
  2227. struct script_desc *desc;
  2228. char first_half[BUFSIZ];
  2229. char *script_root;
  2230. snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
  2231. scripts_dir = opendir(scripts_path);
  2232. if (!scripts_dir) {
  2233. fprintf(stdout,
  2234. "open(%s) failed.\n"
  2235. "Check \"PERF_EXEC_PATH\" env to set scripts dir.\n",
  2236. scripts_path);
  2237. exit(-1);
  2238. }
  2239. for_each_lang(scripts_path, scripts_dir, lang_dirent) {
  2240. snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
  2241. lang_dirent->d_name);
  2242. lang_dir = opendir(lang_path);
  2243. if (!lang_dir)
  2244. continue;
  2245. for_each_script(lang_path, lang_dir, script_dirent) {
  2246. script_root = get_script_root(script_dirent, REPORT_SUFFIX);
  2247. if (script_root) {
  2248. desc = script_desc__findnew(script_root);
  2249. snprintf(script_path, MAXPATHLEN, "%s/%s",
  2250. lang_path, script_dirent->d_name);
  2251. read_script_info(desc, script_path);
  2252. free(script_root);
  2253. }
  2254. }
  2255. }
  2256. fprintf(stdout, "List of available trace scripts:\n");
  2257. list_for_each_entry(desc, &script_descs, node) {
  2258. sprintf(first_half, "%s %s", desc->name,
  2259. desc->args ? desc->args : "");
  2260. fprintf(stdout, " %-36s %s\n", first_half,
  2261. desc->half_liner ? desc->half_liner : "");
  2262. }
  2263. exit(0);
  2264. }
  2265. /*
  2266. * Some scripts specify the required events in their "xxx-record" file,
  2267. * this function will check if the events in perf.data match those
  2268. * mentioned in the "xxx-record".
  2269. *
  2270. * Fixme: All existing "xxx-record" are all in good formats "-e event ",
  2271. * which is covered well now. And new parsing code should be added to
  2272. * cover the future complexing formats like event groups etc.
  2273. */
  2274. static int check_ev_match(char *dir_name, char *scriptname,
  2275. struct perf_session *session)
  2276. {
  2277. char filename[MAXPATHLEN], evname[128];
  2278. char line[BUFSIZ], *p;
  2279. struct perf_evsel *pos;
  2280. int match, len;
  2281. FILE *fp;
  2282. sprintf(filename, "%s/bin/%s-record", dir_name, scriptname);
  2283. fp = fopen(filename, "r");
  2284. if (!fp)
  2285. return -1;
  2286. while (fgets(line, sizeof(line), fp)) {
  2287. p = ltrim(line);
  2288. if (*p == '#')
  2289. continue;
  2290. while (strlen(p)) {
  2291. p = strstr(p, "-e");
  2292. if (!p)
  2293. break;
  2294. p += 2;
  2295. p = ltrim(p);
  2296. len = strcspn(p, " \t");
  2297. if (!len)
  2298. break;
  2299. snprintf(evname, len + 1, "%s", p);
  2300. match = 0;
  2301. evlist__for_each_entry(session->evlist, pos) {
  2302. if (!strcmp(perf_evsel__name(pos), evname)) {
  2303. match = 1;
  2304. break;
  2305. }
  2306. }
  2307. if (!match) {
  2308. fclose(fp);
  2309. return -1;
  2310. }
  2311. }
  2312. }
  2313. fclose(fp);
  2314. return 0;
  2315. }
  2316. /*
  2317. * Return -1 if none is found, otherwise the actual scripts number.
  2318. *
  2319. * Currently the only user of this function is the script browser, which
  2320. * will list all statically runnable scripts, select one, execute it and
  2321. * show the output in a perf browser.
  2322. */
  2323. int find_scripts(char **scripts_array, char **scripts_path_array)
  2324. {
  2325. struct dirent *script_dirent, *lang_dirent;
  2326. char scripts_path[MAXPATHLEN], lang_path[MAXPATHLEN];
  2327. DIR *scripts_dir, *lang_dir;
  2328. struct perf_session *session;
  2329. struct perf_data data = {
  2330. .file = {
  2331. .path = input_name,
  2332. },
  2333. .mode = PERF_DATA_MODE_READ,
  2334. };
  2335. char *temp;
  2336. int i = 0;
  2337. session = perf_session__new(&data, false, NULL);
  2338. if (!session)
  2339. return -1;
  2340. snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
  2341. scripts_dir = opendir(scripts_path);
  2342. if (!scripts_dir) {
  2343. perf_session__delete(session);
  2344. return -1;
  2345. }
  2346. for_each_lang(scripts_path, scripts_dir, lang_dirent) {
  2347. snprintf(lang_path, MAXPATHLEN, "%s/%s", scripts_path,
  2348. lang_dirent->d_name);
  2349. #ifdef NO_LIBPERL
  2350. if (strstr(lang_path, "perl"))
  2351. continue;
  2352. #endif
  2353. #ifdef NO_LIBPYTHON
  2354. if (strstr(lang_path, "python"))
  2355. continue;
  2356. #endif
  2357. lang_dir = opendir(lang_path);
  2358. if (!lang_dir)
  2359. continue;
  2360. for_each_script(lang_path, lang_dir, script_dirent) {
  2361. /* Skip those real time scripts: xxxtop.p[yl] */
  2362. if (strstr(script_dirent->d_name, "top."))
  2363. continue;
  2364. sprintf(scripts_path_array[i], "%s/%s", lang_path,
  2365. script_dirent->d_name);
  2366. temp = strchr(script_dirent->d_name, '.');
  2367. snprintf(scripts_array[i],
  2368. (temp - script_dirent->d_name) + 1,
  2369. "%s", script_dirent->d_name);
  2370. if (check_ev_match(lang_path,
  2371. scripts_array[i], session))
  2372. continue;
  2373. i++;
  2374. }
  2375. closedir(lang_dir);
  2376. }
  2377. closedir(scripts_dir);
  2378. perf_session__delete(session);
  2379. return i;
  2380. }
  2381. static char *get_script_path(const char *script_root, const char *suffix)
  2382. {
  2383. struct dirent *script_dirent, *lang_dirent;
  2384. char scripts_path[MAXPATHLEN];
  2385. char script_path[MAXPATHLEN];
  2386. DIR *scripts_dir, *lang_dir;
  2387. char lang_path[MAXPATHLEN];
  2388. char *__script_root;
  2389. snprintf(scripts_path, MAXPATHLEN, "%s/scripts", get_argv_exec_path());
  2390. scripts_dir = opendir(scripts_path);
  2391. if (!scripts_dir)
  2392. return NULL;
  2393. for_each_lang(scripts_path, scripts_dir, lang_dirent) {
  2394. snprintf(lang_path, MAXPATHLEN, "%s/%s/bin", scripts_path,
  2395. lang_dirent->d_name);
  2396. lang_dir = opendir(lang_path);
  2397. if (!lang_dir)
  2398. continue;
  2399. for_each_script(lang_path, lang_dir, script_dirent) {
  2400. __script_root = get_script_root(script_dirent, suffix);
  2401. if (__script_root && !strcmp(script_root, __script_root)) {
  2402. free(__script_root);
  2403. closedir(lang_dir);
  2404. closedir(scripts_dir);
  2405. snprintf(script_path, MAXPATHLEN, "%s/%s",
  2406. lang_path, script_dirent->d_name);
  2407. return strdup(script_path);
  2408. }
  2409. free(__script_root);
  2410. }
  2411. closedir(lang_dir);
  2412. }
  2413. closedir(scripts_dir);
  2414. return NULL;
  2415. }
  2416. static bool is_top_script(const char *script_path)
  2417. {
  2418. return ends_with(script_path, "top") == NULL ? false : true;
  2419. }
  2420. static int has_required_arg(char *script_path)
  2421. {
  2422. struct script_desc *desc;
  2423. int n_args = 0;
  2424. char *p;
  2425. desc = script_desc__new(NULL);
  2426. if (read_script_info(desc, script_path))
  2427. goto out;
  2428. if (!desc->args)
  2429. goto out;
  2430. for (p = desc->args; *p; p++)
  2431. if (*p == '<')
  2432. n_args++;
  2433. out:
  2434. script_desc__delete(desc);
  2435. return n_args;
  2436. }
  2437. static int have_cmd(int argc, const char **argv)
  2438. {
  2439. char **__argv = malloc(sizeof(const char *) * argc);
  2440. if (!__argv) {
  2441. pr_err("malloc failed\n");
  2442. return -1;
  2443. }
  2444. memcpy(__argv, argv, sizeof(const char *) * argc);
  2445. argc = parse_options(argc, (const char **)__argv, record_options,
  2446. NULL, PARSE_OPT_STOP_AT_NON_OPTION);
  2447. free(__argv);
  2448. system_wide = (argc == 0);
  2449. return 0;
  2450. }
  2451. static void script__setup_sample_type(struct perf_script *script)
  2452. {
  2453. struct perf_session *session = script->session;
  2454. u64 sample_type = perf_evlist__combined_sample_type(session->evlist);
  2455. if (symbol_conf.use_callchain || symbol_conf.cumulate_callchain) {
  2456. if ((sample_type & PERF_SAMPLE_REGS_USER) &&
  2457. (sample_type & PERF_SAMPLE_STACK_USER)) {
  2458. callchain_param.record_mode = CALLCHAIN_DWARF;
  2459. dwarf_callchain_users = true;
  2460. } else if (sample_type & PERF_SAMPLE_BRANCH_STACK)
  2461. callchain_param.record_mode = CALLCHAIN_LBR;
  2462. else
  2463. callchain_param.record_mode = CALLCHAIN_FP;
  2464. }
  2465. }
  2466. static int process_stat_round_event(struct perf_tool *tool __maybe_unused,
  2467. union perf_event *event,
  2468. struct perf_session *session)
  2469. {
  2470. struct stat_round_event *round = &event->stat_round;
  2471. struct perf_evsel *counter;
  2472. evlist__for_each_entry(session->evlist, counter) {
  2473. perf_stat_process_counter(&stat_config, counter);
  2474. process_stat(counter, round->time);
  2475. }
  2476. process_stat_interval(round->time);
  2477. return 0;
  2478. }
  2479. static int process_stat_config_event(struct perf_tool *tool __maybe_unused,
  2480. union perf_event *event,
  2481. struct perf_session *session __maybe_unused)
  2482. {
  2483. perf_event__read_stat_config(&stat_config, &event->stat_config);
  2484. return 0;
  2485. }
  2486. static int set_maps(struct perf_script *script)
  2487. {
  2488. struct perf_evlist *evlist = script->session->evlist;
  2489. if (!script->cpus || !script->threads)
  2490. return 0;
  2491. if (WARN_ONCE(script->allocated, "stats double allocation\n"))
  2492. return -EINVAL;
  2493. perf_evlist__set_maps(evlist, script->cpus, script->threads);
  2494. if (perf_evlist__alloc_stats(evlist, true))
  2495. return -ENOMEM;
  2496. script->allocated = true;
  2497. return 0;
  2498. }
  2499. static
  2500. int process_thread_map_event(struct perf_tool *tool,
  2501. union perf_event *event,
  2502. struct perf_session *session __maybe_unused)
  2503. {
  2504. struct perf_script *script = container_of(tool, struct perf_script, tool);
  2505. if (script->threads) {
  2506. pr_warning("Extra thread map event, ignoring.\n");
  2507. return 0;
  2508. }
  2509. script->threads = thread_map__new_event(&event->thread_map);
  2510. if (!script->threads)
  2511. return -ENOMEM;
  2512. return set_maps(script);
  2513. }
  2514. static
  2515. int process_cpu_map_event(struct perf_tool *tool __maybe_unused,
  2516. union perf_event *event,
  2517. struct perf_session *session __maybe_unused)
  2518. {
  2519. struct perf_script *script = container_of(tool, struct perf_script, tool);
  2520. if (script->cpus) {
  2521. pr_warning("Extra cpu map event, ignoring.\n");
  2522. return 0;
  2523. }
  2524. script->cpus = cpu_map__new_data(&event->cpu_map.data);
  2525. if (!script->cpus)
  2526. return -ENOMEM;
  2527. return set_maps(script);
  2528. }
  2529. #ifdef HAVE_AUXTRACE_SUPPORT
  2530. static int perf_script__process_auxtrace_info(struct perf_tool *tool,
  2531. union perf_event *event,
  2532. struct perf_session *session)
  2533. {
  2534. int ret = perf_event__process_auxtrace_info(tool, event, session);
  2535. if (ret == 0) {
  2536. struct perf_script *script = container_of(tool, struct perf_script, tool);
  2537. ret = perf_script__setup_per_event_dump(script);
  2538. }
  2539. return ret;
  2540. }
  2541. #else
  2542. #define perf_script__process_auxtrace_info 0
  2543. #endif
  2544. int cmd_script(int argc, const char **argv)
  2545. {
  2546. bool show_full_info = false;
  2547. bool header = false;
  2548. bool header_only = false;
  2549. bool script_started = false;
  2550. char *rec_script_path = NULL;
  2551. char *rep_script_path = NULL;
  2552. struct perf_session *session;
  2553. struct itrace_synth_opts itrace_synth_opts = { .set = false, };
  2554. char *script_path = NULL;
  2555. const char **__argv;
  2556. int i, j, err = 0;
  2557. struct perf_script script = {
  2558. .tool = {
  2559. .sample = process_sample_event,
  2560. .mmap = perf_event__process_mmap,
  2561. .mmap2 = perf_event__process_mmap2,
  2562. .comm = perf_event__process_comm,
  2563. .namespaces = perf_event__process_namespaces,
  2564. .exit = perf_event__process_exit,
  2565. .fork = perf_event__process_fork,
  2566. .attr = process_attr,
  2567. .event_update = perf_event__process_event_update,
  2568. .tracing_data = perf_event__process_tracing_data,
  2569. .feature = perf_event__process_feature,
  2570. .build_id = perf_event__process_build_id,
  2571. .id_index = perf_event__process_id_index,
  2572. .auxtrace_info = perf_script__process_auxtrace_info,
  2573. .auxtrace = perf_event__process_auxtrace,
  2574. .auxtrace_error = perf_event__process_auxtrace_error,
  2575. .stat = perf_event__process_stat_event,
  2576. .stat_round = process_stat_round_event,
  2577. .stat_config = process_stat_config_event,
  2578. .thread_map = process_thread_map_event,
  2579. .cpu_map = process_cpu_map_event,
  2580. .ordered_events = true,
  2581. .ordering_requires_timestamps = true,
  2582. },
  2583. };
  2584. struct perf_data data = {
  2585. .mode = PERF_DATA_MODE_READ,
  2586. };
  2587. const struct option options[] = {
  2588. OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace,
  2589. "dump raw trace in ASCII"),
  2590. OPT_INCR('v', "verbose", &verbose,
  2591. "be more verbose (show symbol address, etc)"),
  2592. OPT_BOOLEAN('L', "Latency", &latency_format,
  2593. "show latency attributes (irqs/preemption disabled, etc)"),
  2594. OPT_CALLBACK_NOOPT('l', "list", NULL, NULL, "list available scripts",
  2595. list_available_scripts),
  2596. OPT_CALLBACK('s', "script", NULL, "name",
  2597. "script file name (lang:script name, script name, or *)",
  2598. parse_scriptname),
  2599. OPT_STRING('g', "gen-script", &generate_script_lang, "lang",
  2600. "generate perf-script.xx script in specified language"),
  2601. OPT_STRING('i', "input", &input_name, "file", "input file name"),
  2602. OPT_BOOLEAN('d', "debug-mode", &debug_mode,
  2603. "do various checks like samples ordering and lost events"),
  2604. OPT_BOOLEAN(0, "header", &header, "Show data header."),
  2605. OPT_BOOLEAN(0, "header-only", &header_only, "Show only data header."),
  2606. OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name,
  2607. "file", "vmlinux pathname"),
  2608. OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name,
  2609. "file", "kallsyms pathname"),
  2610. OPT_BOOLEAN('G', "hide-call-graph", &no_callchain,
  2611. "When printing symbols do not display call chain"),
  2612. OPT_CALLBACK(0, "symfs", NULL, "directory",
  2613. "Look for files with symbols relative to this directory",
  2614. symbol__config_symfs),
  2615. OPT_CALLBACK('F', "fields", NULL, "str",
  2616. "comma separated output fields prepend with 'type:'. "
  2617. "+field to add and -field to remove."
  2618. "Valid types: hw,sw,trace,raw,synth. "
  2619. "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,"
  2620. "addr,symoff,period,iregs,uregs,brstack,brstacksym,flags,"
  2621. "bpf-output,callindent,insn,insnlen,brstackinsn,synth,phys_addr",
  2622. parse_output_fields),
  2623. OPT_BOOLEAN('a', "all-cpus", &system_wide,
  2624. "system-wide collection from all CPUs"),
  2625. OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]",
  2626. "only consider these symbols"),
  2627. OPT_STRING(0, "stop-bt", &symbol_conf.bt_stop_list_str, "symbol[,symbol...]",
  2628. "Stop display of callgraph at these symbols"),
  2629. OPT_STRING('C', "cpu", &cpu_list, "cpu", "list of cpus to profile"),
  2630. OPT_STRING('c', "comms", &symbol_conf.comm_list_str, "comm[,comm...]",
  2631. "only display events for these comms"),
  2632. OPT_STRING(0, "pid", &symbol_conf.pid_list_str, "pid[,pid...]",
  2633. "only consider symbols in these pids"),
  2634. OPT_STRING(0, "tid", &symbol_conf.tid_list_str, "tid[,tid...]",
  2635. "only consider symbols in these tids"),
  2636. OPT_UINTEGER(0, "max-stack", &scripting_max_stack,
  2637. "Set the maximum stack depth when parsing the callchain, "
  2638. "anything beyond the specified depth will be ignored. "
  2639. "Default: kernel.perf_event_max_stack or " __stringify(PERF_MAX_STACK_DEPTH)),
  2640. OPT_BOOLEAN('I', "show-info", &show_full_info,
  2641. "display extended information from perf.data file"),
  2642. OPT_BOOLEAN('\0', "show-kernel-path", &symbol_conf.show_kernel_path,
  2643. "Show the path of [kernel.kallsyms]"),
  2644. OPT_BOOLEAN('\0', "show-task-events", &script.show_task_events,
  2645. "Show the fork/comm/exit events"),
  2646. OPT_BOOLEAN('\0', "show-mmap-events", &script.show_mmap_events,
  2647. "Show the mmap events"),
  2648. OPT_BOOLEAN('\0', "show-switch-events", &script.show_switch_events,
  2649. "Show context switch events (if recorded)"),
  2650. OPT_BOOLEAN('\0', "show-namespace-events", &script.show_namespace_events,
  2651. "Show namespace events (if recorded)"),
  2652. OPT_BOOLEAN('\0', "show-lost-events", &script.show_lost_events,
  2653. "Show lost events (if recorded)"),
  2654. OPT_BOOLEAN('\0', "per-event-dump", &script.per_event_dump,
  2655. "Dump trace output to files named by the monitored events"),
  2656. OPT_BOOLEAN('f', "force", &symbol_conf.force, "don't complain, do it"),
  2657. OPT_INTEGER(0, "max-blocks", &max_blocks,
  2658. "Maximum number of code blocks to dump with brstackinsn"),
  2659. OPT_BOOLEAN(0, "ns", &nanosecs,
  2660. "Use 9 decimal places when displaying time"),
  2661. OPT_CALLBACK_OPTARG(0, "itrace", &itrace_synth_opts, NULL, "opts",
  2662. "Instruction Tracing options",
  2663. itrace_parse_synth_opts),
  2664. OPT_BOOLEAN(0, "full-source-path", &srcline_full_filename,
  2665. "Show full source file name path for source lines"),
  2666. OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle,
  2667. "Enable symbol demangling"),
  2668. OPT_BOOLEAN(0, "demangle-kernel", &symbol_conf.demangle_kernel,
  2669. "Enable kernel symbol demangling"),
  2670. OPT_STRING(0, "time", &script.time_str, "str",
  2671. "Time span of interest (start,stop)"),
  2672. OPT_BOOLEAN(0, "inline", &symbol_conf.inline_name,
  2673. "Show inline function"),
  2674. OPT_END()
  2675. };
  2676. const char * const script_subcommands[] = { "record", "report", NULL };
  2677. const char *script_usage[] = {
  2678. "perf script [<options>]",
  2679. "perf script [<options>] record <script> [<record-options>] <command>",
  2680. "perf script [<options>] report <script> [script-args]",
  2681. "perf script [<options>] <script> [<record-options>] <command>",
  2682. "perf script [<options>] <top-script> [script-args]",
  2683. NULL
  2684. };
  2685. perf_set_singlethreaded();
  2686. setup_scripting();
  2687. argc = parse_options_subcommand(argc, argv, options, script_subcommands, script_usage,
  2688. PARSE_OPT_STOP_AT_NON_OPTION);
  2689. data.file.path = input_name;
  2690. data.force = symbol_conf.force;
  2691. if (argc > 1 && !strncmp(argv[0], "rec", strlen("rec"))) {
  2692. rec_script_path = get_script_path(argv[1], RECORD_SUFFIX);
  2693. if (!rec_script_path)
  2694. return cmd_record(argc, argv);
  2695. }
  2696. if (argc > 1 && !strncmp(argv[0], "rep", strlen("rep"))) {
  2697. rep_script_path = get_script_path(argv[1], REPORT_SUFFIX);
  2698. if (!rep_script_path) {
  2699. fprintf(stderr,
  2700. "Please specify a valid report script"
  2701. "(see 'perf script -l' for listing)\n");
  2702. return -1;
  2703. }
  2704. }
  2705. if (itrace_synth_opts.callchain &&
  2706. itrace_synth_opts.callchain_sz > scripting_max_stack)
  2707. scripting_max_stack = itrace_synth_opts.callchain_sz;
  2708. /* make sure PERF_EXEC_PATH is set for scripts */
  2709. set_argv_exec_path(get_argv_exec_path());
  2710. if (argc && !script_name && !rec_script_path && !rep_script_path) {
  2711. int live_pipe[2];
  2712. int rep_args;
  2713. pid_t pid;
  2714. rec_script_path = get_script_path(argv[0], RECORD_SUFFIX);
  2715. rep_script_path = get_script_path(argv[0], REPORT_SUFFIX);
  2716. if (!rec_script_path && !rep_script_path) {
  2717. usage_with_options_msg(script_usage, options,
  2718. "Couldn't find script `%s'\n\n See perf"
  2719. " script -l for available scripts.\n", argv[0]);
  2720. }
  2721. if (is_top_script(argv[0])) {
  2722. rep_args = argc - 1;
  2723. } else {
  2724. int rec_args;
  2725. rep_args = has_required_arg(rep_script_path);
  2726. rec_args = (argc - 1) - rep_args;
  2727. if (rec_args < 0) {
  2728. usage_with_options_msg(script_usage, options,
  2729. "`%s' script requires options."
  2730. "\n\n See perf script -l for available "
  2731. "scripts and options.\n", argv[0]);
  2732. }
  2733. }
  2734. if (pipe(live_pipe) < 0) {
  2735. perror("failed to create pipe");
  2736. return -1;
  2737. }
  2738. pid = fork();
  2739. if (pid < 0) {
  2740. perror("failed to fork");
  2741. return -1;
  2742. }
  2743. if (!pid) {
  2744. j = 0;
  2745. dup2(live_pipe[1], 1);
  2746. close(live_pipe[0]);
  2747. if (is_top_script(argv[0])) {
  2748. system_wide = true;
  2749. } else if (!system_wide) {
  2750. if (have_cmd(argc - rep_args, &argv[rep_args]) != 0) {
  2751. err = -1;
  2752. goto out;
  2753. }
  2754. }
  2755. __argv = malloc((argc + 6) * sizeof(const char *));
  2756. if (!__argv) {
  2757. pr_err("malloc failed\n");
  2758. err = -ENOMEM;
  2759. goto out;
  2760. }
  2761. __argv[j++] = "/bin/sh";
  2762. __argv[j++] = rec_script_path;
  2763. if (system_wide)
  2764. __argv[j++] = "-a";
  2765. __argv[j++] = "-q";
  2766. __argv[j++] = "-o";
  2767. __argv[j++] = "-";
  2768. for (i = rep_args + 1; i < argc; i++)
  2769. __argv[j++] = argv[i];
  2770. __argv[j++] = NULL;
  2771. execvp("/bin/sh", (char **)__argv);
  2772. free(__argv);
  2773. exit(-1);
  2774. }
  2775. dup2(live_pipe[0], 0);
  2776. close(live_pipe[1]);
  2777. __argv = malloc((argc + 4) * sizeof(const char *));
  2778. if (!__argv) {
  2779. pr_err("malloc failed\n");
  2780. err = -ENOMEM;
  2781. goto out;
  2782. }
  2783. j = 0;
  2784. __argv[j++] = "/bin/sh";
  2785. __argv[j++] = rep_script_path;
  2786. for (i = 1; i < rep_args + 1; i++)
  2787. __argv[j++] = argv[i];
  2788. __argv[j++] = "-i";
  2789. __argv[j++] = "-";
  2790. __argv[j++] = NULL;
  2791. execvp("/bin/sh", (char **)__argv);
  2792. free(__argv);
  2793. exit(-1);
  2794. }
  2795. if (rec_script_path)
  2796. script_path = rec_script_path;
  2797. if (rep_script_path)
  2798. script_path = rep_script_path;
  2799. if (script_path) {
  2800. j = 0;
  2801. if (!rec_script_path)
  2802. system_wide = false;
  2803. else if (!system_wide) {
  2804. if (have_cmd(argc - 1, &argv[1]) != 0) {
  2805. err = -1;
  2806. goto out;
  2807. }
  2808. }
  2809. __argv = malloc((argc + 2) * sizeof(const char *));
  2810. if (!__argv) {
  2811. pr_err("malloc failed\n");
  2812. err = -ENOMEM;
  2813. goto out;
  2814. }
  2815. __argv[j++] = "/bin/sh";
  2816. __argv[j++] = script_path;
  2817. if (system_wide)
  2818. __argv[j++] = "-a";
  2819. for (i = 2; i < argc; i++)
  2820. __argv[j++] = argv[i];
  2821. __argv[j++] = NULL;
  2822. execvp("/bin/sh", (char **)__argv);
  2823. free(__argv);
  2824. exit(-1);
  2825. }
  2826. if (!script_name)
  2827. setup_pager();
  2828. session = perf_session__new(&data, false, &script.tool);
  2829. if (session == NULL)
  2830. return -1;
  2831. if (header || header_only) {
  2832. script.tool.show_feat_hdr = SHOW_FEAT_HEADER;
  2833. perf_session__fprintf_info(session, stdout, show_full_info);
  2834. if (header_only)
  2835. goto out_delete;
  2836. }
  2837. if (show_full_info)
  2838. script.tool.show_feat_hdr = SHOW_FEAT_HEADER_FULL_INFO;
  2839. if (symbol__init(&session->header.env) < 0)
  2840. goto out_delete;
  2841. script.session = session;
  2842. script__setup_sample_type(&script);
  2843. if (output[PERF_TYPE_HARDWARE].fields & PERF_OUTPUT_CALLINDENT)
  2844. itrace_synth_opts.thread_stack = true;
  2845. session->itrace_synth_opts = &itrace_synth_opts;
  2846. if (cpu_list) {
  2847. err = perf_session__cpu_bitmap(session, cpu_list, cpu_bitmap);
  2848. if (err < 0)
  2849. goto out_delete;
  2850. itrace_synth_opts.cpu_bitmap = cpu_bitmap;
  2851. }
  2852. if (!no_callchain)
  2853. symbol_conf.use_callchain = true;
  2854. else
  2855. symbol_conf.use_callchain = false;
  2856. if (session->tevent.pevent &&
  2857. pevent_set_function_resolver(session->tevent.pevent,
  2858. machine__resolve_kernel_addr,
  2859. &session->machines.host) < 0) {
  2860. pr_err("%s: failed to set libtraceevent function resolver\n", __func__);
  2861. err = -1;
  2862. goto out_delete;
  2863. }
  2864. if (generate_script_lang) {
  2865. struct stat perf_stat;
  2866. int input;
  2867. if (output_set_by_user()) {
  2868. fprintf(stderr,
  2869. "custom fields not supported for generated scripts");
  2870. err = -EINVAL;
  2871. goto out_delete;
  2872. }
  2873. input = open(data.file.path, O_RDONLY); /* input_name */
  2874. if (input < 0) {
  2875. err = -errno;
  2876. perror("failed to open file");
  2877. goto out_delete;
  2878. }
  2879. err = fstat(input, &perf_stat);
  2880. if (err < 0) {
  2881. perror("failed to stat file");
  2882. goto out_delete;
  2883. }
  2884. if (!perf_stat.st_size) {
  2885. fprintf(stderr, "zero-sized file, nothing to do!\n");
  2886. goto out_delete;
  2887. }
  2888. scripting_ops = script_spec__lookup(generate_script_lang);
  2889. if (!scripting_ops) {
  2890. fprintf(stderr, "invalid language specifier");
  2891. err = -ENOENT;
  2892. goto out_delete;
  2893. }
  2894. err = scripting_ops->generate_script(session->tevent.pevent,
  2895. "perf-script");
  2896. goto out_delete;
  2897. }
  2898. if (script_name) {
  2899. err = scripting_ops->start_script(script_name, argc, argv);
  2900. if (err)
  2901. goto out_delete;
  2902. pr_debug("perf script started with script %s\n\n", script_name);
  2903. script_started = true;
  2904. }
  2905. err = perf_session__check_output_opt(session);
  2906. if (err < 0)
  2907. goto out_delete;
  2908. script.ptime_range = perf_time__range_alloc(script.time_str,
  2909. &script.range_size);
  2910. if (!script.ptime_range) {
  2911. err = -ENOMEM;
  2912. goto out_delete;
  2913. }
  2914. /* needs to be parsed after looking up reference time */
  2915. if (perf_time__parse_str(script.ptime_range, script.time_str) != 0) {
  2916. if (session->evlist->first_sample_time == 0 &&
  2917. session->evlist->last_sample_time == 0) {
  2918. pr_err("HINT: no first/last sample time found in perf data.\n"
  2919. "Please use latest perf binary to execute 'perf record'\n"
  2920. "(if '--buildid-all' is enabled, please set '--timestamp-boundary').\n");
  2921. err = -EINVAL;
  2922. goto out_delete;
  2923. }
  2924. script.range_num = perf_time__percent_parse_str(
  2925. script.ptime_range, script.range_size,
  2926. script.time_str,
  2927. session->evlist->first_sample_time,
  2928. session->evlist->last_sample_time);
  2929. if (script.range_num < 0) {
  2930. pr_err("Invalid time string\n");
  2931. err = -EINVAL;
  2932. goto out_delete;
  2933. }
  2934. } else {
  2935. script.range_num = 1;
  2936. }
  2937. err = __cmd_script(&script);
  2938. flush_scripting();
  2939. out_delete:
  2940. zfree(&script.ptime_range);
  2941. perf_evlist__free_stats(session->evlist);
  2942. perf_session__delete(session);
  2943. if (script_started)
  2944. cleanup_scripting();
  2945. out:
  2946. return err;
  2947. }