builtin-script.c 90 KB

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