probe-event.c 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352
  1. /*
  2. * probe-event.c : perf-probe definition to probe_events format converter
  3. *
  4. * Written by Masami Hiramatsu <mhiramat@redhat.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. *
  20. */
  21. #include <sys/utsname.h>
  22. #include <sys/types.h>
  23. #include <sys/stat.h>
  24. #include <fcntl.h>
  25. #include <errno.h>
  26. #include <stdio.h>
  27. #include <unistd.h>
  28. #include <stdlib.h>
  29. #include <string.h>
  30. #include <stdarg.h>
  31. #include <limits.h>
  32. #include <elf.h>
  33. #include "util.h"
  34. #include "event.h"
  35. #include "strlist.h"
  36. #include "debug.h"
  37. #include "cache.h"
  38. #include "color.h"
  39. #include "symbol.h"
  40. #include "thread.h"
  41. #include "debugfs.h"
  42. #include "trace-event.h" /* For __maybe_unused */
  43. #include "probe-event.h"
  44. #include "probe-finder.h"
  45. #include "session.h"
  46. #define MAX_CMDLEN 256
  47. #define MAX_PROBE_ARGS 128
  48. #define PERFPROBE_GROUP "probe"
  49. bool probe_event_dry_run; /* Dry run flag */
  50. #define semantic_error(msg ...) pr_err("Semantic error :" msg)
  51. /* If there is no space to write, returns -E2BIG. */
  52. static int e_snprintf(char *str, size_t size, const char *format, ...)
  53. __attribute__((format(printf, 3, 4)));
  54. static int e_snprintf(char *str, size_t size, const char *format, ...)
  55. {
  56. int ret;
  57. va_list ap;
  58. va_start(ap, format);
  59. ret = vsnprintf(str, size, format, ap);
  60. va_end(ap);
  61. if (ret >= (int)size)
  62. ret = -E2BIG;
  63. return ret;
  64. }
  65. static char *synthesize_perf_probe_point(struct perf_probe_point *pp);
  66. static int convert_name_to_addr(struct perf_probe_event *pev,
  67. const char *exec);
  68. static struct machine machine;
  69. /* Initialize symbol maps and path of vmlinux/modules */
  70. static int init_vmlinux(void)
  71. {
  72. int ret;
  73. symbol_conf.sort_by_name = true;
  74. if (symbol_conf.vmlinux_name == NULL)
  75. symbol_conf.try_vmlinux_path = true;
  76. else
  77. pr_debug("Use vmlinux: %s\n", symbol_conf.vmlinux_name);
  78. ret = symbol__init();
  79. if (ret < 0) {
  80. pr_debug("Failed to init symbol map.\n");
  81. goto out;
  82. }
  83. ret = machine__init(&machine, "", HOST_KERNEL_ID);
  84. if (ret < 0)
  85. goto out;
  86. if (machine__create_kernel_maps(&machine) < 0) {
  87. pr_debug("machine__create_kernel_maps() failed.\n");
  88. goto out;
  89. }
  90. out:
  91. if (ret < 0)
  92. pr_warning("Failed to init vmlinux path.\n");
  93. return ret;
  94. }
  95. static struct symbol *__find_kernel_function_by_name(const char *name,
  96. struct map **mapp)
  97. {
  98. return machine__find_kernel_function_by_name(&machine, name, mapp,
  99. NULL);
  100. }
  101. static struct map *kernel_get_module_map(const char *module)
  102. {
  103. struct rb_node *nd;
  104. struct map_groups *grp = &machine.kmaps;
  105. /* A file path -- this is an offline module */
  106. if (module && strchr(module, '/'))
  107. return machine__new_module(&machine, 0, module);
  108. if (!module)
  109. module = "kernel";
  110. for (nd = rb_first(&grp->maps[MAP__FUNCTION]); nd; nd = rb_next(nd)) {
  111. struct map *pos = rb_entry(nd, struct map, rb_node);
  112. if (strncmp(pos->dso->short_name + 1, module,
  113. pos->dso->short_name_len - 2) == 0) {
  114. return pos;
  115. }
  116. }
  117. return NULL;
  118. }
  119. static struct dso *kernel_get_module_dso(const char *module)
  120. {
  121. struct dso *dso;
  122. struct map *map;
  123. const char *vmlinux_name;
  124. if (module) {
  125. list_for_each_entry(dso, &machine.kernel_dsos, node) {
  126. if (strncmp(dso->short_name + 1, module,
  127. dso->short_name_len - 2) == 0)
  128. goto found;
  129. }
  130. pr_debug("Failed to find module %s.\n", module);
  131. return NULL;
  132. }
  133. map = machine.vmlinux_maps[MAP__FUNCTION];
  134. dso = map->dso;
  135. vmlinux_name = symbol_conf.vmlinux_name;
  136. if (vmlinux_name) {
  137. if (dso__load_vmlinux(dso, map, vmlinux_name, NULL) <= 0)
  138. return NULL;
  139. } else {
  140. if (dso__load_vmlinux_path(dso, map, NULL) <= 0) {
  141. pr_debug("Failed to load kernel map.\n");
  142. return NULL;
  143. }
  144. }
  145. found:
  146. return dso;
  147. }
  148. const char *kernel_get_module_path(const char *module)
  149. {
  150. struct dso *dso = kernel_get_module_dso(module);
  151. return (dso) ? dso->long_name : NULL;
  152. }
  153. static int init_user_exec(void)
  154. {
  155. int ret = 0;
  156. symbol_conf.try_vmlinux_path = false;
  157. symbol_conf.sort_by_name = true;
  158. ret = symbol__init();
  159. if (ret < 0)
  160. pr_debug("Failed to init symbol map.\n");
  161. return ret;
  162. }
  163. static int convert_to_perf_probe_point(struct probe_trace_point *tp,
  164. struct perf_probe_point *pp)
  165. {
  166. pp->function = strdup(tp->symbol);
  167. if (pp->function == NULL)
  168. return -ENOMEM;
  169. pp->offset = tp->offset;
  170. pp->retprobe = tp->retprobe;
  171. return 0;
  172. }
  173. #ifdef DWARF_SUPPORT
  174. /* Open new debuginfo of given module */
  175. static struct debuginfo *open_debuginfo(const char *module)
  176. {
  177. const char *path;
  178. /* A file path -- this is an offline module */
  179. if (module && strchr(module, '/'))
  180. path = module;
  181. else {
  182. path = kernel_get_module_path(module);
  183. if (!path) {
  184. pr_err("Failed to find path of %s module.\n",
  185. module ?: "kernel");
  186. return NULL;
  187. }
  188. }
  189. return debuginfo__new(path);
  190. }
  191. /*
  192. * Convert trace point to probe point with debuginfo
  193. * Currently only handles kprobes.
  194. */
  195. static int kprobe_convert_to_perf_probe(struct probe_trace_point *tp,
  196. struct perf_probe_point *pp)
  197. {
  198. struct symbol *sym;
  199. struct map *map;
  200. u64 addr;
  201. int ret = -ENOENT;
  202. struct debuginfo *dinfo;
  203. sym = __find_kernel_function_by_name(tp->symbol, &map);
  204. if (sym) {
  205. addr = map->unmap_ip(map, sym->start + tp->offset);
  206. pr_debug("try to find %s+%ld@%" PRIx64 "\n", tp->symbol,
  207. tp->offset, addr);
  208. dinfo = debuginfo__new_online_kernel(addr);
  209. if (dinfo) {
  210. ret = debuginfo__find_probe_point(dinfo,
  211. (unsigned long)addr, pp);
  212. debuginfo__delete(dinfo);
  213. } else {
  214. pr_debug("Failed to open debuginfo at 0x%" PRIx64 "\n",
  215. addr);
  216. ret = -ENOENT;
  217. }
  218. }
  219. if (ret <= 0) {
  220. pr_debug("Failed to find corresponding probes from "
  221. "debuginfo. Use kprobe event information.\n");
  222. return convert_to_perf_probe_point(tp, pp);
  223. }
  224. pp->retprobe = tp->retprobe;
  225. return 0;
  226. }
  227. static int add_module_to_probe_trace_events(struct probe_trace_event *tevs,
  228. int ntevs, const char *module)
  229. {
  230. int i, ret = 0;
  231. char *tmp;
  232. if (!module)
  233. return 0;
  234. tmp = strrchr(module, '/');
  235. if (tmp) {
  236. /* This is a module path -- get the module name */
  237. module = strdup(tmp + 1);
  238. if (!module)
  239. return -ENOMEM;
  240. tmp = strchr(module, '.');
  241. if (tmp)
  242. *tmp = '\0';
  243. tmp = (char *)module; /* For free() */
  244. }
  245. for (i = 0; i < ntevs; i++) {
  246. tevs[i].point.module = strdup(module);
  247. if (!tevs[i].point.module) {
  248. ret = -ENOMEM;
  249. break;
  250. }
  251. }
  252. if (tmp)
  253. free(tmp);
  254. return ret;
  255. }
  256. /* Try to find perf_probe_event with debuginfo */
  257. static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
  258. struct probe_trace_event **tevs,
  259. int max_tevs, const char *target)
  260. {
  261. bool need_dwarf = perf_probe_event_need_dwarf(pev);
  262. struct debuginfo *dinfo;
  263. int ntevs, ret = 0;
  264. if (pev->uprobes) {
  265. if (need_dwarf) {
  266. pr_warning("Debuginfo-analysis is not yet supported"
  267. " with -x/--exec option.\n");
  268. return -ENOSYS;
  269. }
  270. return convert_name_to_addr(pev, target);
  271. }
  272. dinfo = open_debuginfo(target);
  273. if (!dinfo) {
  274. if (need_dwarf) {
  275. pr_warning("Failed to open debuginfo file.\n");
  276. return -ENOENT;
  277. }
  278. pr_debug("Could not open debuginfo. Try to use symbols.\n");
  279. return 0;
  280. }
  281. /* Searching trace events corresponding to a probe event */
  282. ntevs = debuginfo__find_trace_events(dinfo, pev, tevs, max_tevs);
  283. debuginfo__delete(dinfo);
  284. if (ntevs > 0) { /* Succeeded to find trace events */
  285. pr_debug("find %d probe_trace_events.\n", ntevs);
  286. if (target)
  287. ret = add_module_to_probe_trace_events(*tevs, ntevs,
  288. target);
  289. return ret < 0 ? ret : ntevs;
  290. }
  291. if (ntevs == 0) { /* No error but failed to find probe point. */
  292. pr_warning("Probe point '%s' not found.\n",
  293. synthesize_perf_probe_point(&pev->point));
  294. return -ENOENT;
  295. }
  296. /* Error path : ntevs < 0 */
  297. pr_debug("An error occurred in debuginfo analysis (%d).\n", ntevs);
  298. if (ntevs == -EBADF) {
  299. pr_warning("Warning: No dwarf info found in the vmlinux - "
  300. "please rebuild kernel with CONFIG_DEBUG_INFO=y.\n");
  301. if (!need_dwarf) {
  302. pr_debug("Trying to use symbols.\n");
  303. return 0;
  304. }
  305. }
  306. return ntevs;
  307. }
  308. /*
  309. * Find a src file from a DWARF tag path. Prepend optional source path prefix
  310. * and chop off leading directories that do not exist. Result is passed back as
  311. * a newly allocated path on success.
  312. * Return 0 if file was found and readable, -errno otherwise.
  313. */
  314. static int get_real_path(const char *raw_path, const char *comp_dir,
  315. char **new_path)
  316. {
  317. const char *prefix = symbol_conf.source_prefix;
  318. if (!prefix) {
  319. if (raw_path[0] != '/' && comp_dir)
  320. /* If not an absolute path, try to use comp_dir */
  321. prefix = comp_dir;
  322. else {
  323. if (access(raw_path, R_OK) == 0) {
  324. *new_path = strdup(raw_path);
  325. return 0;
  326. } else
  327. return -errno;
  328. }
  329. }
  330. *new_path = malloc((strlen(prefix) + strlen(raw_path) + 2));
  331. if (!*new_path)
  332. return -ENOMEM;
  333. for (;;) {
  334. sprintf(*new_path, "%s/%s", prefix, raw_path);
  335. if (access(*new_path, R_OK) == 0)
  336. return 0;
  337. if (!symbol_conf.source_prefix)
  338. /* In case of searching comp_dir, don't retry */
  339. return -errno;
  340. switch (errno) {
  341. case ENAMETOOLONG:
  342. case ENOENT:
  343. case EROFS:
  344. case EFAULT:
  345. raw_path = strchr(++raw_path, '/');
  346. if (!raw_path) {
  347. free(*new_path);
  348. *new_path = NULL;
  349. return -ENOENT;
  350. }
  351. continue;
  352. default:
  353. free(*new_path);
  354. *new_path = NULL;
  355. return -errno;
  356. }
  357. }
  358. }
  359. #define LINEBUF_SIZE 256
  360. #define NR_ADDITIONAL_LINES 2
  361. static int __show_one_line(FILE *fp, int l, bool skip, bool show_num)
  362. {
  363. char buf[LINEBUF_SIZE];
  364. const char *color = show_num ? "" : PERF_COLOR_BLUE;
  365. const char *prefix = NULL;
  366. do {
  367. if (fgets(buf, LINEBUF_SIZE, fp) == NULL)
  368. goto error;
  369. if (skip)
  370. continue;
  371. if (!prefix) {
  372. prefix = show_num ? "%7d " : " ";
  373. color_fprintf(stdout, color, prefix, l);
  374. }
  375. color_fprintf(stdout, color, "%s", buf);
  376. } while (strchr(buf, '\n') == NULL);
  377. return 1;
  378. error:
  379. if (ferror(fp)) {
  380. pr_warning("File read error: %s\n", strerror(errno));
  381. return -1;
  382. }
  383. return 0;
  384. }
  385. static int _show_one_line(FILE *fp, int l, bool skip, bool show_num)
  386. {
  387. int rv = __show_one_line(fp, l, skip, show_num);
  388. if (rv == 0) {
  389. pr_warning("Source file is shorter than expected.\n");
  390. rv = -1;
  391. }
  392. return rv;
  393. }
  394. #define show_one_line_with_num(f,l) _show_one_line(f,l,false,true)
  395. #define show_one_line(f,l) _show_one_line(f,l,false,false)
  396. #define skip_one_line(f,l) _show_one_line(f,l,true,false)
  397. #define show_one_line_or_eof(f,l) __show_one_line(f,l,false,false)
  398. /*
  399. * Show line-range always requires debuginfo to find source file and
  400. * line number.
  401. */
  402. int show_line_range(struct line_range *lr, const char *module)
  403. {
  404. int l = 1;
  405. struct line_node *ln;
  406. struct debuginfo *dinfo;
  407. FILE *fp;
  408. int ret;
  409. char *tmp;
  410. /* Search a line range */
  411. ret = init_vmlinux();
  412. if (ret < 0)
  413. return ret;
  414. dinfo = open_debuginfo(module);
  415. if (!dinfo) {
  416. pr_warning("Failed to open debuginfo file.\n");
  417. return -ENOENT;
  418. }
  419. ret = debuginfo__find_line_range(dinfo, lr);
  420. debuginfo__delete(dinfo);
  421. if (ret == 0) {
  422. pr_warning("Specified source line is not found.\n");
  423. return -ENOENT;
  424. } else if (ret < 0) {
  425. pr_warning("Debuginfo analysis failed. (%d)\n", ret);
  426. return ret;
  427. }
  428. /* Convert source file path */
  429. tmp = lr->path;
  430. ret = get_real_path(tmp, lr->comp_dir, &lr->path);
  431. free(tmp); /* Free old path */
  432. if (ret < 0) {
  433. pr_warning("Failed to find source file. (%d)\n", ret);
  434. return ret;
  435. }
  436. setup_pager();
  437. if (lr->function)
  438. fprintf(stdout, "<%s@%s:%d>\n", lr->function, lr->path,
  439. lr->start - lr->offset);
  440. else
  441. fprintf(stdout, "<%s:%d>\n", lr->path, lr->start);
  442. fp = fopen(lr->path, "r");
  443. if (fp == NULL) {
  444. pr_warning("Failed to open %s: %s\n", lr->path,
  445. strerror(errno));
  446. return -errno;
  447. }
  448. /* Skip to starting line number */
  449. while (l < lr->start) {
  450. ret = skip_one_line(fp, l++);
  451. if (ret < 0)
  452. goto end;
  453. }
  454. list_for_each_entry(ln, &lr->line_list, list) {
  455. for (; ln->line > l; l++) {
  456. ret = show_one_line(fp, l - lr->offset);
  457. if (ret < 0)
  458. goto end;
  459. }
  460. ret = show_one_line_with_num(fp, l++ - lr->offset);
  461. if (ret < 0)
  462. goto end;
  463. }
  464. if (lr->end == INT_MAX)
  465. lr->end = l + NR_ADDITIONAL_LINES;
  466. while (l <= lr->end) {
  467. ret = show_one_line_or_eof(fp, l++ - lr->offset);
  468. if (ret <= 0)
  469. break;
  470. }
  471. end:
  472. fclose(fp);
  473. return ret;
  474. }
  475. static int show_available_vars_at(struct debuginfo *dinfo,
  476. struct perf_probe_event *pev,
  477. int max_vls, struct strfilter *_filter,
  478. bool externs)
  479. {
  480. char *buf;
  481. int ret, i, nvars;
  482. struct str_node *node;
  483. struct variable_list *vls = NULL, *vl;
  484. const char *var;
  485. buf = synthesize_perf_probe_point(&pev->point);
  486. if (!buf)
  487. return -EINVAL;
  488. pr_debug("Searching variables at %s\n", buf);
  489. ret = debuginfo__find_available_vars_at(dinfo, pev, &vls,
  490. max_vls, externs);
  491. if (ret <= 0) {
  492. pr_err("Failed to find variables at %s (%d)\n", buf, ret);
  493. goto end;
  494. }
  495. /* Some variables are found */
  496. fprintf(stdout, "Available variables at %s\n", buf);
  497. for (i = 0; i < ret; i++) {
  498. vl = &vls[i];
  499. /*
  500. * A probe point might be converted to
  501. * several trace points.
  502. */
  503. fprintf(stdout, "\t@<%s+%lu>\n", vl->point.symbol,
  504. vl->point.offset);
  505. free(vl->point.symbol);
  506. nvars = 0;
  507. if (vl->vars) {
  508. strlist__for_each(node, vl->vars) {
  509. var = strchr(node->s, '\t') + 1;
  510. if (strfilter__compare(_filter, var)) {
  511. fprintf(stdout, "\t\t%s\n", node->s);
  512. nvars++;
  513. }
  514. }
  515. strlist__delete(vl->vars);
  516. }
  517. if (nvars == 0)
  518. fprintf(stdout, "\t\t(No matched variables)\n");
  519. }
  520. free(vls);
  521. end:
  522. free(buf);
  523. return ret;
  524. }
  525. /* Show available variables on given probe point */
  526. int show_available_vars(struct perf_probe_event *pevs, int npevs,
  527. int max_vls, const char *module,
  528. struct strfilter *_filter, bool externs)
  529. {
  530. int i, ret = 0;
  531. struct debuginfo *dinfo;
  532. ret = init_vmlinux();
  533. if (ret < 0)
  534. return ret;
  535. dinfo = open_debuginfo(module);
  536. if (!dinfo) {
  537. pr_warning("Failed to open debuginfo file.\n");
  538. return -ENOENT;
  539. }
  540. setup_pager();
  541. for (i = 0; i < npevs && ret >= 0; i++)
  542. ret = show_available_vars_at(dinfo, &pevs[i], max_vls, _filter,
  543. externs);
  544. debuginfo__delete(dinfo);
  545. return ret;
  546. }
  547. #else /* !DWARF_SUPPORT */
  548. static int kprobe_convert_to_perf_probe(struct probe_trace_point *tp,
  549. struct perf_probe_point *pp)
  550. {
  551. struct symbol *sym;
  552. sym = __find_kernel_function_by_name(tp->symbol, NULL);
  553. if (!sym) {
  554. pr_err("Failed to find symbol %s in kernel.\n", tp->symbol);
  555. return -ENOENT;
  556. }
  557. return convert_to_perf_probe_point(tp, pp);
  558. }
  559. static int try_to_find_probe_trace_events(struct perf_probe_event *pev,
  560. struct probe_trace_event **tevs __maybe_unused,
  561. int max_tevs __maybe_unused, const char *target)
  562. {
  563. if (perf_probe_event_need_dwarf(pev)) {
  564. pr_warning("Debuginfo-analysis is not supported.\n");
  565. return -ENOSYS;
  566. }
  567. if (pev->uprobes)
  568. return convert_name_to_addr(pev, target);
  569. return 0;
  570. }
  571. int show_line_range(struct line_range *lr __maybe_unused,
  572. const char *module __maybe_unused)
  573. {
  574. pr_warning("Debuginfo-analysis is not supported.\n");
  575. return -ENOSYS;
  576. }
  577. int show_available_vars(struct perf_probe_event *pevs __maybe_unused,
  578. int npevs __maybe_unused, int max_vls __maybe_unused,
  579. const char *module __maybe_unused,
  580. struct strfilter *filter __maybe_unused,
  581. bool externs __maybe_unused)
  582. {
  583. pr_warning("Debuginfo-analysis is not supported.\n");
  584. return -ENOSYS;
  585. }
  586. #endif
  587. static int parse_line_num(char **ptr, int *val, const char *what)
  588. {
  589. const char *start = *ptr;
  590. errno = 0;
  591. *val = strtol(*ptr, ptr, 0);
  592. if (errno || *ptr == start) {
  593. semantic_error("'%s' is not a valid number.\n", what);
  594. return -EINVAL;
  595. }
  596. return 0;
  597. }
  598. /*
  599. * Stuff 'lr' according to the line range described by 'arg'.
  600. * The line range syntax is described by:
  601. *
  602. * SRC[:SLN[+NUM|-ELN]]
  603. * FNC[@SRC][:SLN[+NUM|-ELN]]
  604. */
  605. int parse_line_range_desc(const char *arg, struct line_range *lr)
  606. {
  607. char *range, *file, *name = strdup(arg);
  608. int err;
  609. if (!name)
  610. return -ENOMEM;
  611. lr->start = 0;
  612. lr->end = INT_MAX;
  613. range = strchr(name, ':');
  614. if (range) {
  615. *range++ = '\0';
  616. err = parse_line_num(&range, &lr->start, "start line");
  617. if (err)
  618. goto err;
  619. if (*range == '+' || *range == '-') {
  620. const char c = *range++;
  621. err = parse_line_num(&range, &lr->end, "end line");
  622. if (err)
  623. goto err;
  624. if (c == '+') {
  625. lr->end += lr->start;
  626. /*
  627. * Adjust the number of lines here.
  628. * If the number of lines == 1, the
  629. * the end of line should be equal to
  630. * the start of line.
  631. */
  632. lr->end--;
  633. }
  634. }
  635. pr_debug("Line range is %d to %d\n", lr->start, lr->end);
  636. err = -EINVAL;
  637. if (lr->start > lr->end) {
  638. semantic_error("Start line must be smaller"
  639. " than end line.\n");
  640. goto err;
  641. }
  642. if (*range != '\0') {
  643. semantic_error("Tailing with invalid str '%s'.\n", range);
  644. goto err;
  645. }
  646. }
  647. file = strchr(name, '@');
  648. if (file) {
  649. *file = '\0';
  650. lr->file = strdup(++file);
  651. if (lr->file == NULL) {
  652. err = -ENOMEM;
  653. goto err;
  654. }
  655. lr->function = name;
  656. } else if (strchr(name, '.'))
  657. lr->file = name;
  658. else
  659. lr->function = name;
  660. return 0;
  661. err:
  662. free(name);
  663. return err;
  664. }
  665. /* Check the name is good for event/group */
  666. static bool check_event_name(const char *name)
  667. {
  668. if (!isalpha(*name) && *name != '_')
  669. return false;
  670. while (*++name != '\0') {
  671. if (!isalpha(*name) && !isdigit(*name) && *name != '_')
  672. return false;
  673. }
  674. return true;
  675. }
  676. /* Parse probepoint definition. */
  677. static int parse_perf_probe_point(char *arg, struct perf_probe_event *pev)
  678. {
  679. struct perf_probe_point *pp = &pev->point;
  680. char *ptr, *tmp;
  681. char c, nc = 0;
  682. /*
  683. * <Syntax>
  684. * perf probe [EVENT=]SRC[:LN|;PTN]
  685. * perf probe [EVENT=]FUNC[@SRC][+OFFS|%return|:LN|;PAT]
  686. *
  687. * TODO:Group name support
  688. */
  689. ptr = strpbrk(arg, ";=@+%");
  690. if (ptr && *ptr == '=') { /* Event name */
  691. *ptr = '\0';
  692. tmp = ptr + 1;
  693. if (strchr(arg, ':')) {
  694. semantic_error("Group name is not supported yet.\n");
  695. return -ENOTSUP;
  696. }
  697. if (!check_event_name(arg)) {
  698. semantic_error("%s is bad for event name -it must "
  699. "follow C symbol-naming rule.\n", arg);
  700. return -EINVAL;
  701. }
  702. pev->event = strdup(arg);
  703. if (pev->event == NULL)
  704. return -ENOMEM;
  705. pev->group = NULL;
  706. arg = tmp;
  707. }
  708. ptr = strpbrk(arg, ";:+@%");
  709. if (ptr) {
  710. nc = *ptr;
  711. *ptr++ = '\0';
  712. }
  713. tmp = strdup(arg);
  714. if (tmp == NULL)
  715. return -ENOMEM;
  716. /* Check arg is function or file and copy it */
  717. if (strchr(tmp, '.')) /* File */
  718. pp->file = tmp;
  719. else /* Function */
  720. pp->function = tmp;
  721. /* Parse other options */
  722. while (ptr) {
  723. arg = ptr;
  724. c = nc;
  725. if (c == ';') { /* Lazy pattern must be the last part */
  726. pp->lazy_line = strdup(arg);
  727. if (pp->lazy_line == NULL)
  728. return -ENOMEM;
  729. break;
  730. }
  731. ptr = strpbrk(arg, ";:+@%");
  732. if (ptr) {
  733. nc = *ptr;
  734. *ptr++ = '\0';
  735. }
  736. switch (c) {
  737. case ':': /* Line number */
  738. pp->line = strtoul(arg, &tmp, 0);
  739. if (*tmp != '\0') {
  740. semantic_error("There is non-digit char"
  741. " in line number.\n");
  742. return -EINVAL;
  743. }
  744. break;
  745. case '+': /* Byte offset from a symbol */
  746. pp->offset = strtoul(arg, &tmp, 0);
  747. if (*tmp != '\0') {
  748. semantic_error("There is non-digit character"
  749. " in offset.\n");
  750. return -EINVAL;
  751. }
  752. break;
  753. case '@': /* File name */
  754. if (pp->file) {
  755. semantic_error("SRC@SRC is not allowed.\n");
  756. return -EINVAL;
  757. }
  758. pp->file = strdup(arg);
  759. if (pp->file == NULL)
  760. return -ENOMEM;
  761. break;
  762. case '%': /* Probe places */
  763. if (strcmp(arg, "return") == 0) {
  764. pp->retprobe = 1;
  765. } else { /* Others not supported yet */
  766. semantic_error("%%%s is not supported.\n", arg);
  767. return -ENOTSUP;
  768. }
  769. break;
  770. default: /* Buggy case */
  771. pr_err("This program has a bug at %s:%d.\n",
  772. __FILE__, __LINE__);
  773. return -ENOTSUP;
  774. break;
  775. }
  776. }
  777. /* Exclusion check */
  778. if (pp->lazy_line && pp->line) {
  779. semantic_error("Lazy pattern can't be used with"
  780. " line number.\n");
  781. return -EINVAL;
  782. }
  783. if (pp->lazy_line && pp->offset) {
  784. semantic_error("Lazy pattern can't be used with offset.\n");
  785. return -EINVAL;
  786. }
  787. if (pp->line && pp->offset) {
  788. semantic_error("Offset can't be used with line number.\n");
  789. return -EINVAL;
  790. }
  791. if (!pp->line && !pp->lazy_line && pp->file && !pp->function) {
  792. semantic_error("File always requires line number or "
  793. "lazy pattern.\n");
  794. return -EINVAL;
  795. }
  796. if (pp->offset && !pp->function) {
  797. semantic_error("Offset requires an entry function.\n");
  798. return -EINVAL;
  799. }
  800. if (pp->retprobe && !pp->function) {
  801. semantic_error("Return probe requires an entry function.\n");
  802. return -EINVAL;
  803. }
  804. if ((pp->offset || pp->line || pp->lazy_line) && pp->retprobe) {
  805. semantic_error("Offset/Line/Lazy pattern can't be used with "
  806. "return probe.\n");
  807. return -EINVAL;
  808. }
  809. pr_debug("symbol:%s file:%s line:%d offset:%lu return:%d lazy:%s\n",
  810. pp->function, pp->file, pp->line, pp->offset, pp->retprobe,
  811. pp->lazy_line);
  812. return 0;
  813. }
  814. /* Parse perf-probe event argument */
  815. static int parse_perf_probe_arg(char *str, struct perf_probe_arg *arg)
  816. {
  817. char *tmp, *goodname;
  818. struct perf_probe_arg_field **fieldp;
  819. pr_debug("parsing arg: %s into ", str);
  820. tmp = strchr(str, '=');
  821. if (tmp) {
  822. arg->name = strndup(str, tmp - str);
  823. if (arg->name == NULL)
  824. return -ENOMEM;
  825. pr_debug("name:%s ", arg->name);
  826. str = tmp + 1;
  827. }
  828. tmp = strchr(str, ':');
  829. if (tmp) { /* Type setting */
  830. *tmp = '\0';
  831. arg->type = strdup(tmp + 1);
  832. if (arg->type == NULL)
  833. return -ENOMEM;
  834. pr_debug("type:%s ", arg->type);
  835. }
  836. tmp = strpbrk(str, "-.[");
  837. if (!is_c_varname(str) || !tmp) {
  838. /* A variable, register, symbol or special value */
  839. arg->var = strdup(str);
  840. if (arg->var == NULL)
  841. return -ENOMEM;
  842. pr_debug("%s\n", arg->var);
  843. return 0;
  844. }
  845. /* Structure fields or array element */
  846. arg->var = strndup(str, tmp - str);
  847. if (arg->var == NULL)
  848. return -ENOMEM;
  849. goodname = arg->var;
  850. pr_debug("%s, ", arg->var);
  851. fieldp = &arg->field;
  852. do {
  853. *fieldp = zalloc(sizeof(struct perf_probe_arg_field));
  854. if (*fieldp == NULL)
  855. return -ENOMEM;
  856. if (*tmp == '[') { /* Array */
  857. str = tmp;
  858. (*fieldp)->index = strtol(str + 1, &tmp, 0);
  859. (*fieldp)->ref = true;
  860. if (*tmp != ']' || tmp == str + 1) {
  861. semantic_error("Array index must be a"
  862. " number.\n");
  863. return -EINVAL;
  864. }
  865. tmp++;
  866. if (*tmp == '\0')
  867. tmp = NULL;
  868. } else { /* Structure */
  869. if (*tmp == '.') {
  870. str = tmp + 1;
  871. (*fieldp)->ref = false;
  872. } else if (tmp[1] == '>') {
  873. str = tmp + 2;
  874. (*fieldp)->ref = true;
  875. } else {
  876. semantic_error("Argument parse error: %s\n",
  877. str);
  878. return -EINVAL;
  879. }
  880. tmp = strpbrk(str, "-.[");
  881. }
  882. if (tmp) {
  883. (*fieldp)->name = strndup(str, tmp - str);
  884. if ((*fieldp)->name == NULL)
  885. return -ENOMEM;
  886. if (*str != '[')
  887. goodname = (*fieldp)->name;
  888. pr_debug("%s(%d), ", (*fieldp)->name, (*fieldp)->ref);
  889. fieldp = &(*fieldp)->next;
  890. }
  891. } while (tmp);
  892. (*fieldp)->name = strdup(str);
  893. if ((*fieldp)->name == NULL)
  894. return -ENOMEM;
  895. if (*str != '[')
  896. goodname = (*fieldp)->name;
  897. pr_debug("%s(%d)\n", (*fieldp)->name, (*fieldp)->ref);
  898. /* If no name is specified, set the last field name (not array index)*/
  899. if (!arg->name) {
  900. arg->name = strdup(goodname);
  901. if (arg->name == NULL)
  902. return -ENOMEM;
  903. }
  904. return 0;
  905. }
  906. /* Parse perf-probe event command */
  907. int parse_perf_probe_command(const char *cmd, struct perf_probe_event *pev)
  908. {
  909. char **argv;
  910. int argc, i, ret = 0;
  911. argv = argv_split(cmd, &argc);
  912. if (!argv) {
  913. pr_debug("Failed to split arguments.\n");
  914. return -ENOMEM;
  915. }
  916. if (argc - 1 > MAX_PROBE_ARGS) {
  917. semantic_error("Too many probe arguments (%d).\n", argc - 1);
  918. ret = -ERANGE;
  919. goto out;
  920. }
  921. /* Parse probe point */
  922. ret = parse_perf_probe_point(argv[0], pev);
  923. if (ret < 0)
  924. goto out;
  925. /* Copy arguments and ensure return probe has no C argument */
  926. pev->nargs = argc - 1;
  927. pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
  928. if (pev->args == NULL) {
  929. ret = -ENOMEM;
  930. goto out;
  931. }
  932. for (i = 0; i < pev->nargs && ret >= 0; i++) {
  933. ret = parse_perf_probe_arg(argv[i + 1], &pev->args[i]);
  934. if (ret >= 0 &&
  935. is_c_varname(pev->args[i].var) && pev->point.retprobe) {
  936. semantic_error("You can't specify local variable for"
  937. " kretprobe.\n");
  938. ret = -EINVAL;
  939. }
  940. }
  941. out:
  942. argv_free(argv);
  943. return ret;
  944. }
  945. /* Return true if this perf_probe_event requires debuginfo */
  946. bool perf_probe_event_need_dwarf(struct perf_probe_event *pev)
  947. {
  948. int i;
  949. if (pev->point.file || pev->point.line || pev->point.lazy_line)
  950. return true;
  951. for (i = 0; i < pev->nargs; i++)
  952. if (is_c_varname(pev->args[i].var))
  953. return true;
  954. return false;
  955. }
  956. /* Parse probe_events event into struct probe_point */
  957. static int parse_probe_trace_command(const char *cmd,
  958. struct probe_trace_event *tev)
  959. {
  960. struct probe_trace_point *tp = &tev->point;
  961. char pr;
  962. char *p;
  963. int ret, i, argc;
  964. char **argv;
  965. pr_debug("Parsing probe_events: %s\n", cmd);
  966. argv = argv_split(cmd, &argc);
  967. if (!argv) {
  968. pr_debug("Failed to split arguments.\n");
  969. return -ENOMEM;
  970. }
  971. if (argc < 2) {
  972. semantic_error("Too few probe arguments.\n");
  973. ret = -ERANGE;
  974. goto out;
  975. }
  976. /* Scan event and group name. */
  977. ret = sscanf(argv[0], "%c:%a[^/ \t]/%a[^ \t]",
  978. &pr, (float *)(void *)&tev->group,
  979. (float *)(void *)&tev->event);
  980. if (ret != 3) {
  981. semantic_error("Failed to parse event name: %s\n", argv[0]);
  982. ret = -EINVAL;
  983. goto out;
  984. }
  985. pr_debug("Group:%s Event:%s probe:%c\n", tev->group, tev->event, pr);
  986. tp->retprobe = (pr == 'r');
  987. /* Scan module name(if there), function name and offset */
  988. p = strchr(argv[1], ':');
  989. if (p) {
  990. tp->module = strndup(argv[1], p - argv[1]);
  991. p++;
  992. } else
  993. p = argv[1];
  994. ret = sscanf(p, "%a[^+]+%lu", (float *)(void *)&tp->symbol,
  995. &tp->offset);
  996. if (ret == 1)
  997. tp->offset = 0;
  998. tev->nargs = argc - 2;
  999. tev->args = zalloc(sizeof(struct probe_trace_arg) * tev->nargs);
  1000. if (tev->args == NULL) {
  1001. ret = -ENOMEM;
  1002. goto out;
  1003. }
  1004. for (i = 0; i < tev->nargs; i++) {
  1005. p = strchr(argv[i + 2], '=');
  1006. if (p) /* We don't need which register is assigned. */
  1007. *p++ = '\0';
  1008. else
  1009. p = argv[i + 2];
  1010. tev->args[i].name = strdup(argv[i + 2]);
  1011. /* TODO: parse regs and offset */
  1012. tev->args[i].value = strdup(p);
  1013. if (tev->args[i].name == NULL || tev->args[i].value == NULL) {
  1014. ret = -ENOMEM;
  1015. goto out;
  1016. }
  1017. }
  1018. ret = 0;
  1019. out:
  1020. argv_free(argv);
  1021. return ret;
  1022. }
  1023. /* Compose only probe arg */
  1024. int synthesize_perf_probe_arg(struct perf_probe_arg *pa, char *buf, size_t len)
  1025. {
  1026. struct perf_probe_arg_field *field = pa->field;
  1027. int ret;
  1028. char *tmp = buf;
  1029. if (pa->name && pa->var)
  1030. ret = e_snprintf(tmp, len, "%s=%s", pa->name, pa->var);
  1031. else
  1032. ret = e_snprintf(tmp, len, "%s", pa->name ? pa->name : pa->var);
  1033. if (ret <= 0)
  1034. goto error;
  1035. tmp += ret;
  1036. len -= ret;
  1037. while (field) {
  1038. if (field->name[0] == '[')
  1039. ret = e_snprintf(tmp, len, "%s", field->name);
  1040. else
  1041. ret = e_snprintf(tmp, len, "%s%s",
  1042. field->ref ? "->" : ".", field->name);
  1043. if (ret <= 0)
  1044. goto error;
  1045. tmp += ret;
  1046. len -= ret;
  1047. field = field->next;
  1048. }
  1049. if (pa->type) {
  1050. ret = e_snprintf(tmp, len, ":%s", pa->type);
  1051. if (ret <= 0)
  1052. goto error;
  1053. tmp += ret;
  1054. len -= ret;
  1055. }
  1056. return tmp - buf;
  1057. error:
  1058. pr_debug("Failed to synthesize perf probe argument: %s\n",
  1059. strerror(-ret));
  1060. return ret;
  1061. }
  1062. /* Compose only probe point (not argument) */
  1063. static char *synthesize_perf_probe_point(struct perf_probe_point *pp)
  1064. {
  1065. char *buf, *tmp;
  1066. char offs[32] = "", line[32] = "", file[32] = "";
  1067. int ret, len;
  1068. buf = zalloc(MAX_CMDLEN);
  1069. if (buf == NULL) {
  1070. ret = -ENOMEM;
  1071. goto error;
  1072. }
  1073. if (pp->offset) {
  1074. ret = e_snprintf(offs, 32, "+%lu", pp->offset);
  1075. if (ret <= 0)
  1076. goto error;
  1077. }
  1078. if (pp->line) {
  1079. ret = e_snprintf(line, 32, ":%d", pp->line);
  1080. if (ret <= 0)
  1081. goto error;
  1082. }
  1083. if (pp->file) {
  1084. tmp = pp->file;
  1085. len = strlen(tmp);
  1086. if (len > 30) {
  1087. tmp = strchr(pp->file + len - 30, '/');
  1088. tmp = tmp ? tmp + 1 : pp->file + len - 30;
  1089. }
  1090. ret = e_snprintf(file, 32, "@%s", tmp);
  1091. if (ret <= 0)
  1092. goto error;
  1093. }
  1094. if (pp->function)
  1095. ret = e_snprintf(buf, MAX_CMDLEN, "%s%s%s%s%s", pp->function,
  1096. offs, pp->retprobe ? "%return" : "", line,
  1097. file);
  1098. else
  1099. ret = e_snprintf(buf, MAX_CMDLEN, "%s%s", file, line);
  1100. if (ret <= 0)
  1101. goto error;
  1102. return buf;
  1103. error:
  1104. pr_debug("Failed to synthesize perf probe point: %s\n",
  1105. strerror(-ret));
  1106. if (buf)
  1107. free(buf);
  1108. return NULL;
  1109. }
  1110. #if 0
  1111. char *synthesize_perf_probe_command(struct perf_probe_event *pev)
  1112. {
  1113. char *buf;
  1114. int i, len, ret;
  1115. buf = synthesize_perf_probe_point(&pev->point);
  1116. if (!buf)
  1117. return NULL;
  1118. len = strlen(buf);
  1119. for (i = 0; i < pev->nargs; i++) {
  1120. ret = e_snprintf(&buf[len], MAX_CMDLEN - len, " %s",
  1121. pev->args[i].name);
  1122. if (ret <= 0) {
  1123. free(buf);
  1124. return NULL;
  1125. }
  1126. len += ret;
  1127. }
  1128. return buf;
  1129. }
  1130. #endif
  1131. static int __synthesize_probe_trace_arg_ref(struct probe_trace_arg_ref *ref,
  1132. char **buf, size_t *buflen,
  1133. int depth)
  1134. {
  1135. int ret;
  1136. if (ref->next) {
  1137. depth = __synthesize_probe_trace_arg_ref(ref->next, buf,
  1138. buflen, depth + 1);
  1139. if (depth < 0)
  1140. goto out;
  1141. }
  1142. ret = e_snprintf(*buf, *buflen, "%+ld(", ref->offset);
  1143. if (ret < 0)
  1144. depth = ret;
  1145. else {
  1146. *buf += ret;
  1147. *buflen -= ret;
  1148. }
  1149. out:
  1150. return depth;
  1151. }
  1152. static int synthesize_probe_trace_arg(struct probe_trace_arg *arg,
  1153. char *buf, size_t buflen)
  1154. {
  1155. struct probe_trace_arg_ref *ref = arg->ref;
  1156. int ret, depth = 0;
  1157. char *tmp = buf;
  1158. /* Argument name or separator */
  1159. if (arg->name)
  1160. ret = e_snprintf(buf, buflen, " %s=", arg->name);
  1161. else
  1162. ret = e_snprintf(buf, buflen, " ");
  1163. if (ret < 0)
  1164. return ret;
  1165. buf += ret;
  1166. buflen -= ret;
  1167. /* Special case: @XXX */
  1168. if (arg->value[0] == '@' && arg->ref)
  1169. ref = ref->next;
  1170. /* Dereferencing arguments */
  1171. if (ref) {
  1172. depth = __synthesize_probe_trace_arg_ref(ref, &buf,
  1173. &buflen, 1);
  1174. if (depth < 0)
  1175. return depth;
  1176. }
  1177. /* Print argument value */
  1178. if (arg->value[0] == '@' && arg->ref)
  1179. ret = e_snprintf(buf, buflen, "%s%+ld", arg->value,
  1180. arg->ref->offset);
  1181. else
  1182. ret = e_snprintf(buf, buflen, "%s", arg->value);
  1183. if (ret < 0)
  1184. return ret;
  1185. buf += ret;
  1186. buflen -= ret;
  1187. /* Closing */
  1188. while (depth--) {
  1189. ret = e_snprintf(buf, buflen, ")");
  1190. if (ret < 0)
  1191. return ret;
  1192. buf += ret;
  1193. buflen -= ret;
  1194. }
  1195. /* Print argument type */
  1196. if (arg->type) {
  1197. ret = e_snprintf(buf, buflen, ":%s", arg->type);
  1198. if (ret <= 0)
  1199. return ret;
  1200. buf += ret;
  1201. }
  1202. return buf - tmp;
  1203. }
  1204. char *synthesize_probe_trace_command(struct probe_trace_event *tev)
  1205. {
  1206. struct probe_trace_point *tp = &tev->point;
  1207. char *buf;
  1208. int i, len, ret;
  1209. buf = zalloc(MAX_CMDLEN);
  1210. if (buf == NULL)
  1211. return NULL;
  1212. if (tev->uprobes)
  1213. len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s:%s",
  1214. tp->retprobe ? 'r' : 'p',
  1215. tev->group, tev->event,
  1216. tp->module, tp->symbol);
  1217. else
  1218. len = e_snprintf(buf, MAX_CMDLEN, "%c:%s/%s %s%s%s+%lu",
  1219. tp->retprobe ? 'r' : 'p',
  1220. tev->group, tev->event,
  1221. tp->module ?: "", tp->module ? ":" : "",
  1222. tp->symbol, tp->offset);
  1223. if (len <= 0)
  1224. goto error;
  1225. for (i = 0; i < tev->nargs; i++) {
  1226. ret = synthesize_probe_trace_arg(&tev->args[i], buf + len,
  1227. MAX_CMDLEN - len);
  1228. if (ret <= 0)
  1229. goto error;
  1230. len += ret;
  1231. }
  1232. return buf;
  1233. error:
  1234. free(buf);
  1235. return NULL;
  1236. }
  1237. static int convert_to_perf_probe_event(struct probe_trace_event *tev,
  1238. struct perf_probe_event *pev, bool is_kprobe)
  1239. {
  1240. char buf[64] = "";
  1241. int i, ret;
  1242. /* Convert event/group name */
  1243. pev->event = strdup(tev->event);
  1244. pev->group = strdup(tev->group);
  1245. if (pev->event == NULL || pev->group == NULL)
  1246. return -ENOMEM;
  1247. /* Convert trace_point to probe_point */
  1248. if (is_kprobe)
  1249. ret = kprobe_convert_to_perf_probe(&tev->point, &pev->point);
  1250. else
  1251. ret = convert_to_perf_probe_point(&tev->point, &pev->point);
  1252. if (ret < 0)
  1253. return ret;
  1254. /* Convert trace_arg to probe_arg */
  1255. pev->nargs = tev->nargs;
  1256. pev->args = zalloc(sizeof(struct perf_probe_arg) * pev->nargs);
  1257. if (pev->args == NULL)
  1258. return -ENOMEM;
  1259. for (i = 0; i < tev->nargs && ret >= 0; i++) {
  1260. if (tev->args[i].name)
  1261. pev->args[i].name = strdup(tev->args[i].name);
  1262. else {
  1263. ret = synthesize_probe_trace_arg(&tev->args[i],
  1264. buf, 64);
  1265. pev->args[i].name = strdup(buf);
  1266. }
  1267. if (pev->args[i].name == NULL && ret >= 0)
  1268. ret = -ENOMEM;
  1269. }
  1270. if (ret < 0)
  1271. clear_perf_probe_event(pev);
  1272. return ret;
  1273. }
  1274. void clear_perf_probe_event(struct perf_probe_event *pev)
  1275. {
  1276. struct perf_probe_point *pp = &pev->point;
  1277. struct perf_probe_arg_field *field, *next;
  1278. int i;
  1279. if (pev->event)
  1280. free(pev->event);
  1281. if (pev->group)
  1282. free(pev->group);
  1283. if (pp->file)
  1284. free(pp->file);
  1285. if (pp->function)
  1286. free(pp->function);
  1287. if (pp->lazy_line)
  1288. free(pp->lazy_line);
  1289. for (i = 0; i < pev->nargs; i++) {
  1290. if (pev->args[i].name)
  1291. free(pev->args[i].name);
  1292. if (pev->args[i].var)
  1293. free(pev->args[i].var);
  1294. if (pev->args[i].type)
  1295. free(pev->args[i].type);
  1296. field = pev->args[i].field;
  1297. while (field) {
  1298. next = field->next;
  1299. if (field->name)
  1300. free(field->name);
  1301. free(field);
  1302. field = next;
  1303. }
  1304. }
  1305. if (pev->args)
  1306. free(pev->args);
  1307. memset(pev, 0, sizeof(*pev));
  1308. }
  1309. static void clear_probe_trace_event(struct probe_trace_event *tev)
  1310. {
  1311. struct probe_trace_arg_ref *ref, *next;
  1312. int i;
  1313. if (tev->event)
  1314. free(tev->event);
  1315. if (tev->group)
  1316. free(tev->group);
  1317. if (tev->point.symbol)
  1318. free(tev->point.symbol);
  1319. if (tev->point.module)
  1320. free(tev->point.module);
  1321. for (i = 0; i < tev->nargs; i++) {
  1322. if (tev->args[i].name)
  1323. free(tev->args[i].name);
  1324. if (tev->args[i].value)
  1325. free(tev->args[i].value);
  1326. if (tev->args[i].type)
  1327. free(tev->args[i].type);
  1328. ref = tev->args[i].ref;
  1329. while (ref) {
  1330. next = ref->next;
  1331. free(ref);
  1332. ref = next;
  1333. }
  1334. }
  1335. if (tev->args)
  1336. free(tev->args);
  1337. memset(tev, 0, sizeof(*tev));
  1338. }
  1339. static void print_warn_msg(const char *file, bool is_kprobe)
  1340. {
  1341. if (errno == ENOENT) {
  1342. const char *config;
  1343. if (!is_kprobe)
  1344. config = "CONFIG_UPROBE_EVENTS";
  1345. else
  1346. config = "CONFIG_KPROBE_EVENTS";
  1347. pr_warning("%s file does not exist - please rebuild kernel"
  1348. " with %s.\n", file, config);
  1349. } else
  1350. pr_warning("Failed to open %s file: %s\n", file,
  1351. strerror(errno));
  1352. }
  1353. static int open_probe_events(const char *trace_file, bool readwrite,
  1354. bool is_kprobe)
  1355. {
  1356. char buf[PATH_MAX];
  1357. const char *__debugfs;
  1358. int ret;
  1359. __debugfs = debugfs_find_mountpoint();
  1360. if (__debugfs == NULL) {
  1361. pr_warning("Debugfs is not mounted.\n");
  1362. return -ENOENT;
  1363. }
  1364. ret = e_snprintf(buf, PATH_MAX, "%s/%s", __debugfs, trace_file);
  1365. if (ret >= 0) {
  1366. pr_debug("Opening %s write=%d\n", buf, readwrite);
  1367. if (readwrite && !probe_event_dry_run)
  1368. ret = open(buf, O_RDWR, O_APPEND);
  1369. else
  1370. ret = open(buf, O_RDONLY, 0);
  1371. if (ret < 0)
  1372. print_warn_msg(buf, is_kprobe);
  1373. }
  1374. return ret;
  1375. }
  1376. static int open_kprobe_events(bool readwrite)
  1377. {
  1378. return open_probe_events("tracing/kprobe_events", readwrite, true);
  1379. }
  1380. static int open_uprobe_events(bool readwrite)
  1381. {
  1382. return open_probe_events("tracing/uprobe_events", readwrite, false);
  1383. }
  1384. /* Get raw string list of current kprobe_events or uprobe_events */
  1385. static struct strlist *get_probe_trace_command_rawlist(int fd)
  1386. {
  1387. int ret, idx;
  1388. FILE *fp;
  1389. char buf[MAX_CMDLEN];
  1390. char *p;
  1391. struct strlist *sl;
  1392. sl = strlist__new(true, NULL);
  1393. fp = fdopen(dup(fd), "r");
  1394. while (!feof(fp)) {
  1395. p = fgets(buf, MAX_CMDLEN, fp);
  1396. if (!p)
  1397. break;
  1398. idx = strlen(p) - 1;
  1399. if (p[idx] == '\n')
  1400. p[idx] = '\0';
  1401. ret = strlist__add(sl, buf);
  1402. if (ret < 0) {
  1403. pr_debug("strlist__add failed: %s\n", strerror(-ret));
  1404. strlist__delete(sl);
  1405. return NULL;
  1406. }
  1407. }
  1408. fclose(fp);
  1409. return sl;
  1410. }
  1411. /* Show an event */
  1412. static int show_perf_probe_event(struct perf_probe_event *pev)
  1413. {
  1414. int i, ret;
  1415. char buf[128];
  1416. char *place;
  1417. /* Synthesize only event probe point */
  1418. place = synthesize_perf_probe_point(&pev->point);
  1419. if (!place)
  1420. return -EINVAL;
  1421. ret = e_snprintf(buf, 128, "%s:%s", pev->group, pev->event);
  1422. if (ret < 0)
  1423. return ret;
  1424. printf(" %-20s (on %s", buf, place);
  1425. if (pev->nargs > 0) {
  1426. printf(" with");
  1427. for (i = 0; i < pev->nargs; i++) {
  1428. ret = synthesize_perf_probe_arg(&pev->args[i],
  1429. buf, 128);
  1430. if (ret < 0)
  1431. break;
  1432. printf(" %s", buf);
  1433. }
  1434. }
  1435. printf(")\n");
  1436. free(place);
  1437. return ret;
  1438. }
  1439. static int __show_perf_probe_events(int fd, bool is_kprobe)
  1440. {
  1441. int ret = 0;
  1442. struct probe_trace_event tev;
  1443. struct perf_probe_event pev;
  1444. struct strlist *rawlist;
  1445. struct str_node *ent;
  1446. memset(&tev, 0, sizeof(tev));
  1447. memset(&pev, 0, sizeof(pev));
  1448. rawlist = get_probe_trace_command_rawlist(fd);
  1449. if (!rawlist)
  1450. return -ENOENT;
  1451. strlist__for_each(ent, rawlist) {
  1452. ret = parse_probe_trace_command(ent->s, &tev);
  1453. if (ret >= 0) {
  1454. ret = convert_to_perf_probe_event(&tev, &pev,
  1455. is_kprobe);
  1456. if (ret >= 0)
  1457. ret = show_perf_probe_event(&pev);
  1458. }
  1459. clear_perf_probe_event(&pev);
  1460. clear_probe_trace_event(&tev);
  1461. if (ret < 0)
  1462. break;
  1463. }
  1464. strlist__delete(rawlist);
  1465. return ret;
  1466. }
  1467. /* List up current perf-probe events */
  1468. int show_perf_probe_events(void)
  1469. {
  1470. int fd, ret;
  1471. setup_pager();
  1472. fd = open_kprobe_events(false);
  1473. if (fd < 0)
  1474. return fd;
  1475. ret = init_vmlinux();
  1476. if (ret < 0)
  1477. return ret;
  1478. ret = __show_perf_probe_events(fd, true);
  1479. close(fd);
  1480. fd = open_uprobe_events(false);
  1481. if (fd >= 0) {
  1482. ret = __show_perf_probe_events(fd, false);
  1483. close(fd);
  1484. }
  1485. return ret;
  1486. }
  1487. /* Get current perf-probe event names */
  1488. static struct strlist *get_probe_trace_event_names(int fd, bool include_group)
  1489. {
  1490. char buf[128];
  1491. struct strlist *sl, *rawlist;
  1492. struct str_node *ent;
  1493. struct probe_trace_event tev;
  1494. int ret = 0;
  1495. memset(&tev, 0, sizeof(tev));
  1496. rawlist = get_probe_trace_command_rawlist(fd);
  1497. sl = strlist__new(true, NULL);
  1498. strlist__for_each(ent, rawlist) {
  1499. ret = parse_probe_trace_command(ent->s, &tev);
  1500. if (ret < 0)
  1501. break;
  1502. if (include_group) {
  1503. ret = e_snprintf(buf, 128, "%s:%s", tev.group,
  1504. tev.event);
  1505. if (ret >= 0)
  1506. ret = strlist__add(sl, buf);
  1507. } else
  1508. ret = strlist__add(sl, tev.event);
  1509. clear_probe_trace_event(&tev);
  1510. if (ret < 0)
  1511. break;
  1512. }
  1513. strlist__delete(rawlist);
  1514. if (ret < 0) {
  1515. strlist__delete(sl);
  1516. return NULL;
  1517. }
  1518. return sl;
  1519. }
  1520. static int write_probe_trace_event(int fd, struct probe_trace_event *tev)
  1521. {
  1522. int ret = 0;
  1523. char *buf = synthesize_probe_trace_command(tev);
  1524. if (!buf) {
  1525. pr_debug("Failed to synthesize probe trace event.\n");
  1526. return -EINVAL;
  1527. }
  1528. pr_debug("Writing event: %s\n", buf);
  1529. if (!probe_event_dry_run) {
  1530. ret = write(fd, buf, strlen(buf));
  1531. if (ret <= 0)
  1532. pr_warning("Failed to write event: %s\n",
  1533. strerror(errno));
  1534. }
  1535. free(buf);
  1536. return ret;
  1537. }
  1538. static int get_new_event_name(char *buf, size_t len, const char *base,
  1539. struct strlist *namelist, bool allow_suffix)
  1540. {
  1541. int i, ret;
  1542. /* Try no suffix */
  1543. ret = e_snprintf(buf, len, "%s", base);
  1544. if (ret < 0) {
  1545. pr_debug("snprintf() failed: %s\n", strerror(-ret));
  1546. return ret;
  1547. }
  1548. if (!strlist__has_entry(namelist, buf))
  1549. return 0;
  1550. if (!allow_suffix) {
  1551. pr_warning("Error: event \"%s\" already exists. "
  1552. "(Use -f to force duplicates.)\n", base);
  1553. return -EEXIST;
  1554. }
  1555. /* Try to add suffix */
  1556. for (i = 1; i < MAX_EVENT_INDEX; i++) {
  1557. ret = e_snprintf(buf, len, "%s_%d", base, i);
  1558. if (ret < 0) {
  1559. pr_debug("snprintf() failed: %s\n", strerror(-ret));
  1560. return ret;
  1561. }
  1562. if (!strlist__has_entry(namelist, buf))
  1563. break;
  1564. }
  1565. if (i == MAX_EVENT_INDEX) {
  1566. pr_warning("Too many events are on the same function.\n");
  1567. ret = -ERANGE;
  1568. }
  1569. return ret;
  1570. }
  1571. static int __add_probe_trace_events(struct perf_probe_event *pev,
  1572. struct probe_trace_event *tevs,
  1573. int ntevs, bool allow_suffix)
  1574. {
  1575. int i, fd, ret;
  1576. struct probe_trace_event *tev = NULL;
  1577. char buf[64];
  1578. const char *event, *group;
  1579. struct strlist *namelist;
  1580. if (pev->uprobes)
  1581. fd = open_uprobe_events(true);
  1582. else
  1583. fd = open_kprobe_events(true);
  1584. if (fd < 0)
  1585. return fd;
  1586. /* Get current event names */
  1587. namelist = get_probe_trace_event_names(fd, false);
  1588. if (!namelist) {
  1589. pr_debug("Failed to get current event list.\n");
  1590. return -EIO;
  1591. }
  1592. ret = 0;
  1593. printf("Added new event%s\n", (ntevs > 1) ? "s:" : ":");
  1594. for (i = 0; i < ntevs; i++) {
  1595. tev = &tevs[i];
  1596. if (pev->event)
  1597. event = pev->event;
  1598. else
  1599. if (pev->point.function)
  1600. event = pev->point.function;
  1601. else
  1602. event = tev->point.symbol;
  1603. if (pev->group)
  1604. group = pev->group;
  1605. else
  1606. group = PERFPROBE_GROUP;
  1607. /* Get an unused new event name */
  1608. ret = get_new_event_name(buf, 64, event,
  1609. namelist, allow_suffix);
  1610. if (ret < 0)
  1611. break;
  1612. event = buf;
  1613. tev->event = strdup(event);
  1614. tev->group = strdup(group);
  1615. if (tev->event == NULL || tev->group == NULL) {
  1616. ret = -ENOMEM;
  1617. break;
  1618. }
  1619. ret = write_probe_trace_event(fd, tev);
  1620. if (ret < 0)
  1621. break;
  1622. /* Add added event name to namelist */
  1623. strlist__add(namelist, event);
  1624. /* Trick here - save current event/group */
  1625. event = pev->event;
  1626. group = pev->group;
  1627. pev->event = tev->event;
  1628. pev->group = tev->group;
  1629. show_perf_probe_event(pev);
  1630. /* Trick here - restore current event/group */
  1631. pev->event = (char *)event;
  1632. pev->group = (char *)group;
  1633. /*
  1634. * Probes after the first probe which comes from same
  1635. * user input are always allowed to add suffix, because
  1636. * there might be several addresses corresponding to
  1637. * one code line.
  1638. */
  1639. allow_suffix = true;
  1640. }
  1641. if (ret >= 0) {
  1642. /* Show how to use the event. */
  1643. printf("\nYou can now use it in all perf tools, such as:\n\n");
  1644. printf("\tperf record -e %s:%s -aR sleep 1\n\n", tev->group,
  1645. tev->event);
  1646. }
  1647. strlist__delete(namelist);
  1648. close(fd);
  1649. return ret;
  1650. }
  1651. static int convert_to_probe_trace_events(struct perf_probe_event *pev,
  1652. struct probe_trace_event **tevs,
  1653. int max_tevs, const char *target)
  1654. {
  1655. struct symbol *sym;
  1656. int ret = 0, i;
  1657. struct probe_trace_event *tev;
  1658. /* Convert perf_probe_event with debuginfo */
  1659. ret = try_to_find_probe_trace_events(pev, tevs, max_tevs, target);
  1660. if (ret != 0)
  1661. return ret; /* Found in debuginfo or got an error */
  1662. /* Allocate trace event buffer */
  1663. tev = *tevs = zalloc(sizeof(struct probe_trace_event));
  1664. if (tev == NULL)
  1665. return -ENOMEM;
  1666. /* Copy parameters */
  1667. tev->point.symbol = strdup(pev->point.function);
  1668. if (tev->point.symbol == NULL) {
  1669. ret = -ENOMEM;
  1670. goto error;
  1671. }
  1672. if (target) {
  1673. tev->point.module = strdup(target);
  1674. if (tev->point.module == NULL) {
  1675. ret = -ENOMEM;
  1676. goto error;
  1677. }
  1678. }
  1679. tev->point.offset = pev->point.offset;
  1680. tev->point.retprobe = pev->point.retprobe;
  1681. tev->nargs = pev->nargs;
  1682. tev->uprobes = pev->uprobes;
  1683. if (tev->nargs) {
  1684. tev->args = zalloc(sizeof(struct probe_trace_arg)
  1685. * tev->nargs);
  1686. if (tev->args == NULL) {
  1687. ret = -ENOMEM;
  1688. goto error;
  1689. }
  1690. for (i = 0; i < tev->nargs; i++) {
  1691. if (pev->args[i].name) {
  1692. tev->args[i].name = strdup(pev->args[i].name);
  1693. if (tev->args[i].name == NULL) {
  1694. ret = -ENOMEM;
  1695. goto error;
  1696. }
  1697. }
  1698. tev->args[i].value = strdup(pev->args[i].var);
  1699. if (tev->args[i].value == NULL) {
  1700. ret = -ENOMEM;
  1701. goto error;
  1702. }
  1703. if (pev->args[i].type) {
  1704. tev->args[i].type = strdup(pev->args[i].type);
  1705. if (tev->args[i].type == NULL) {
  1706. ret = -ENOMEM;
  1707. goto error;
  1708. }
  1709. }
  1710. }
  1711. }
  1712. if (pev->uprobes)
  1713. return 1;
  1714. /* Currently just checking function name from symbol map */
  1715. sym = __find_kernel_function_by_name(tev->point.symbol, NULL);
  1716. if (!sym) {
  1717. pr_warning("Kernel symbol \'%s\' not found.\n",
  1718. tev->point.symbol);
  1719. ret = -ENOENT;
  1720. goto error;
  1721. } else if (tev->point.offset > sym->end - sym->start) {
  1722. pr_warning("Offset specified is greater than size of %s\n",
  1723. tev->point.symbol);
  1724. ret = -ENOENT;
  1725. goto error;
  1726. }
  1727. return 1;
  1728. error:
  1729. clear_probe_trace_event(tev);
  1730. free(tev);
  1731. *tevs = NULL;
  1732. return ret;
  1733. }
  1734. struct __event_package {
  1735. struct perf_probe_event *pev;
  1736. struct probe_trace_event *tevs;
  1737. int ntevs;
  1738. };
  1739. int add_perf_probe_events(struct perf_probe_event *pevs, int npevs,
  1740. int max_tevs, const char *target, bool force_add)
  1741. {
  1742. int i, j, ret;
  1743. struct __event_package *pkgs;
  1744. ret = 0;
  1745. pkgs = zalloc(sizeof(struct __event_package) * npevs);
  1746. if (pkgs == NULL)
  1747. return -ENOMEM;
  1748. if (!pevs->uprobes)
  1749. /* Init vmlinux path */
  1750. ret = init_vmlinux();
  1751. else
  1752. ret = init_user_exec();
  1753. if (ret < 0) {
  1754. free(pkgs);
  1755. return ret;
  1756. }
  1757. /* Loop 1: convert all events */
  1758. for (i = 0; i < npevs; i++) {
  1759. pkgs[i].pev = &pevs[i];
  1760. /* Convert with or without debuginfo */
  1761. ret = convert_to_probe_trace_events(pkgs[i].pev,
  1762. &pkgs[i].tevs,
  1763. max_tevs,
  1764. target);
  1765. if (ret < 0)
  1766. goto end;
  1767. pkgs[i].ntevs = ret;
  1768. }
  1769. /* Loop 2: add all events */
  1770. for (i = 0; i < npevs; i++) {
  1771. ret = __add_probe_trace_events(pkgs[i].pev, pkgs[i].tevs,
  1772. pkgs[i].ntevs, force_add);
  1773. if (ret < 0)
  1774. break;
  1775. }
  1776. end:
  1777. /* Loop 3: cleanup and free trace events */
  1778. for (i = 0; i < npevs; i++) {
  1779. for (j = 0; j < pkgs[i].ntevs; j++)
  1780. clear_probe_trace_event(&pkgs[i].tevs[j]);
  1781. free(pkgs[i].tevs);
  1782. }
  1783. free(pkgs);
  1784. return ret;
  1785. }
  1786. static int __del_trace_probe_event(int fd, struct str_node *ent)
  1787. {
  1788. char *p;
  1789. char buf[128];
  1790. int ret;
  1791. /* Convert from perf-probe event to trace-probe event */
  1792. ret = e_snprintf(buf, 128, "-:%s", ent->s);
  1793. if (ret < 0)
  1794. goto error;
  1795. p = strchr(buf + 2, ':');
  1796. if (!p) {
  1797. pr_debug("Internal error: %s should have ':' but not.\n",
  1798. ent->s);
  1799. ret = -ENOTSUP;
  1800. goto error;
  1801. }
  1802. *p = '/';
  1803. pr_debug("Writing event: %s\n", buf);
  1804. ret = write(fd, buf, strlen(buf));
  1805. if (ret < 0) {
  1806. ret = -errno;
  1807. goto error;
  1808. }
  1809. printf("Removed event: %s\n", ent->s);
  1810. return 0;
  1811. error:
  1812. pr_warning("Failed to delete event: %s\n", strerror(-ret));
  1813. return ret;
  1814. }
  1815. static int del_trace_probe_event(int fd, const char *buf,
  1816. struct strlist *namelist)
  1817. {
  1818. struct str_node *ent, *n;
  1819. int ret = -1;
  1820. if (strpbrk(buf, "*?")) { /* Glob-exp */
  1821. strlist__for_each_safe(ent, n, namelist)
  1822. if (strglobmatch(ent->s, buf)) {
  1823. ret = __del_trace_probe_event(fd, ent);
  1824. if (ret < 0)
  1825. break;
  1826. strlist__remove(namelist, ent);
  1827. }
  1828. } else {
  1829. ent = strlist__find(namelist, buf);
  1830. if (ent) {
  1831. ret = __del_trace_probe_event(fd, ent);
  1832. if (ret >= 0)
  1833. strlist__remove(namelist, ent);
  1834. }
  1835. }
  1836. return ret;
  1837. }
  1838. int del_perf_probe_events(struct strlist *dellist)
  1839. {
  1840. int ret = -1, ufd = -1, kfd = -1;
  1841. char buf[128];
  1842. const char *group, *event;
  1843. char *p, *str;
  1844. struct str_node *ent;
  1845. struct strlist *namelist = NULL, *unamelist = NULL;
  1846. /* Get current event names */
  1847. kfd = open_kprobe_events(true);
  1848. if (kfd < 0)
  1849. return kfd;
  1850. namelist = get_probe_trace_event_names(kfd, true);
  1851. ufd = open_uprobe_events(true);
  1852. if (ufd >= 0)
  1853. unamelist = get_probe_trace_event_names(ufd, true);
  1854. if (namelist == NULL && unamelist == NULL)
  1855. goto error;
  1856. strlist__for_each(ent, dellist) {
  1857. str = strdup(ent->s);
  1858. if (str == NULL) {
  1859. ret = -ENOMEM;
  1860. goto error;
  1861. }
  1862. pr_debug("Parsing: %s\n", str);
  1863. p = strchr(str, ':');
  1864. if (p) {
  1865. group = str;
  1866. *p = '\0';
  1867. event = p + 1;
  1868. } else {
  1869. group = "*";
  1870. event = str;
  1871. }
  1872. ret = e_snprintf(buf, 128, "%s:%s", group, event);
  1873. if (ret < 0) {
  1874. pr_err("Failed to copy event.");
  1875. free(str);
  1876. goto error;
  1877. }
  1878. pr_debug("Group: %s, Event: %s\n", group, event);
  1879. if (namelist)
  1880. ret = del_trace_probe_event(kfd, buf, namelist);
  1881. if (unamelist && ret != 0)
  1882. ret = del_trace_probe_event(ufd, buf, unamelist);
  1883. if (ret != 0)
  1884. pr_info("Info: Event \"%s\" does not exist.\n", buf);
  1885. free(str);
  1886. }
  1887. error:
  1888. if (kfd >= 0) {
  1889. strlist__delete(namelist);
  1890. close(kfd);
  1891. }
  1892. if (ufd >= 0) {
  1893. strlist__delete(unamelist);
  1894. close(ufd);
  1895. }
  1896. return ret;
  1897. }
  1898. /* TODO: don't use a global variable for filter ... */
  1899. static struct strfilter *available_func_filter;
  1900. /*
  1901. * If a symbol corresponds to a function with global binding and
  1902. * matches filter return 0. For all others return 1.
  1903. */
  1904. static int filter_available_functions(struct map *map __maybe_unused,
  1905. struct symbol *sym)
  1906. {
  1907. if (sym->binding == STB_GLOBAL &&
  1908. strfilter__compare(available_func_filter, sym->name))
  1909. return 0;
  1910. return 1;
  1911. }
  1912. static int __show_available_funcs(struct map *map)
  1913. {
  1914. if (map__load(map, filter_available_functions)) {
  1915. pr_err("Failed to load map.\n");
  1916. return -EINVAL;
  1917. }
  1918. if (!dso__sorted_by_name(map->dso, map->type))
  1919. dso__sort_by_name(map->dso, map->type);
  1920. dso__fprintf_symbols_by_name(map->dso, map->type, stdout);
  1921. return 0;
  1922. }
  1923. static int available_kernel_funcs(const char *module)
  1924. {
  1925. struct map *map;
  1926. int ret;
  1927. ret = init_vmlinux();
  1928. if (ret < 0)
  1929. return ret;
  1930. map = kernel_get_module_map(module);
  1931. if (!map) {
  1932. pr_err("Failed to find %s map.\n", (module) ? : "kernel");
  1933. return -EINVAL;
  1934. }
  1935. return __show_available_funcs(map);
  1936. }
  1937. static int available_user_funcs(const char *target)
  1938. {
  1939. struct map *map;
  1940. int ret;
  1941. ret = init_user_exec();
  1942. if (ret < 0)
  1943. return ret;
  1944. map = dso__new_map(target);
  1945. ret = __show_available_funcs(map);
  1946. dso__delete(map->dso);
  1947. map__delete(map);
  1948. return ret;
  1949. }
  1950. int show_available_funcs(const char *target, struct strfilter *_filter,
  1951. bool user)
  1952. {
  1953. setup_pager();
  1954. available_func_filter = _filter;
  1955. if (!user)
  1956. return available_kernel_funcs(target);
  1957. return available_user_funcs(target);
  1958. }
  1959. /*
  1960. * uprobe_events only accepts address:
  1961. * Convert function and any offset to address
  1962. */
  1963. static int convert_name_to_addr(struct perf_probe_event *pev, const char *exec)
  1964. {
  1965. struct perf_probe_point *pp = &pev->point;
  1966. struct symbol *sym;
  1967. struct map *map = NULL;
  1968. char *function = NULL, *name = NULL;
  1969. int ret = -EINVAL;
  1970. unsigned long long vaddr = 0;
  1971. if (!pp->function) {
  1972. pr_warning("No function specified for uprobes");
  1973. goto out;
  1974. }
  1975. function = strdup(pp->function);
  1976. if (!function) {
  1977. pr_warning("Failed to allocate memory by strdup.\n");
  1978. ret = -ENOMEM;
  1979. goto out;
  1980. }
  1981. name = realpath(exec, NULL);
  1982. if (!name) {
  1983. pr_warning("Cannot find realpath for %s.\n", exec);
  1984. goto out;
  1985. }
  1986. map = dso__new_map(name);
  1987. if (!map) {
  1988. pr_warning("Cannot find appropriate DSO for %s.\n", exec);
  1989. goto out;
  1990. }
  1991. available_func_filter = strfilter__new(function, NULL);
  1992. if (map__load(map, filter_available_functions)) {
  1993. pr_err("Failed to load map.\n");
  1994. goto out;
  1995. }
  1996. sym = map__find_symbol_by_name(map, function, NULL);
  1997. if (!sym) {
  1998. pr_warning("Cannot find %s in DSO %s\n", function, exec);
  1999. goto out;
  2000. }
  2001. if (map->start > sym->start)
  2002. vaddr = map->start;
  2003. vaddr += sym->start + pp->offset + map->pgoff;
  2004. pp->offset = 0;
  2005. if (!pev->event) {
  2006. pev->event = function;
  2007. function = NULL;
  2008. }
  2009. if (!pev->group) {
  2010. char *ptr1, *ptr2, *exec_copy;
  2011. pev->group = zalloc(sizeof(char *) * 64);
  2012. exec_copy = strdup(exec);
  2013. if (!exec_copy) {
  2014. ret = -ENOMEM;
  2015. pr_warning("Failed to copy exec string.\n");
  2016. goto out;
  2017. }
  2018. ptr1 = strdup(basename(exec_copy));
  2019. if (ptr1) {
  2020. ptr2 = strpbrk(ptr1, "-._");
  2021. if (ptr2)
  2022. *ptr2 = '\0';
  2023. e_snprintf(pev->group, 64, "%s_%s", PERFPROBE_GROUP,
  2024. ptr1);
  2025. free(ptr1);
  2026. }
  2027. free(exec_copy);
  2028. }
  2029. free(pp->function);
  2030. pp->function = zalloc(sizeof(char *) * MAX_PROBE_ARGS);
  2031. if (!pp->function) {
  2032. ret = -ENOMEM;
  2033. pr_warning("Failed to allocate memory by zalloc.\n");
  2034. goto out;
  2035. }
  2036. e_snprintf(pp->function, MAX_PROBE_ARGS, "0x%llx", vaddr);
  2037. ret = 0;
  2038. out:
  2039. if (map) {
  2040. dso__delete(map->dso);
  2041. map__delete(map);
  2042. }
  2043. if (function)
  2044. free(function);
  2045. if (name)
  2046. free(name);
  2047. return ret;
  2048. }