1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Common code for probe-based Dynamic events. 4 * 5 * This code was copied from kernel/trace/trace_kprobe.c written by 6 * Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> 7 * 8 * Updates to make this generic: 9 * Copyright (C) IBM Corporation, 2010-2011 10 * Author: Srikar Dronamraju 11 */ 12 #define pr_fmt(fmt) "trace_probe: " fmt 13 14 #include <linux/bpf.h> 15 #include "trace_btf.h" 16 17 #include "trace_probe.h" 18 19 #undef C 20 #define C(a, b) b 21 22 static const char *trace_probe_err_text[] = { ERRORS }; 23 24 static const char *reserved_field_names[] = { 25 "common_type", 26 "common_flags", 27 "common_preempt_count", 28 "common_pid", 29 "common_tgid", 30 FIELD_STRING_IP, 31 FIELD_STRING_RETIP, 32 FIELD_STRING_FUNC, 33 }; 34 35 /* Printing in basic type function template */ 36 #define DEFINE_BASIC_PRINT_TYPE_FUNC(tname, type, fmt) \ 37 int PRINT_TYPE_FUNC_NAME(tname)(struct trace_seq *s, void *data, void *ent)\ 38 { \ 39 trace_seq_printf(s, fmt, *(type *)data); \ 40 return !trace_seq_has_overflowed(s); \ 41 } \ 42 const char PRINT_TYPE_FMT_NAME(tname)[] = fmt; 43 44 DEFINE_BASIC_PRINT_TYPE_FUNC(u8, u8, "%u") 45 DEFINE_BASIC_PRINT_TYPE_FUNC(u16, u16, "%u") 46 DEFINE_BASIC_PRINT_TYPE_FUNC(u32, u32, "%u") 47 DEFINE_BASIC_PRINT_TYPE_FUNC(u64, u64, "%Lu") 48 DEFINE_BASIC_PRINT_TYPE_FUNC(s8, s8, "%d") 49 DEFINE_BASIC_PRINT_TYPE_FUNC(s16, s16, "%d") 50 DEFINE_BASIC_PRINT_TYPE_FUNC(s32, s32, "%d") 51 DEFINE_BASIC_PRINT_TYPE_FUNC(s64, s64, "%Ld") 52 DEFINE_BASIC_PRINT_TYPE_FUNC(x8, u8, "0x%x") 53 DEFINE_BASIC_PRINT_TYPE_FUNC(x16, u16, "0x%x") 54 DEFINE_BASIC_PRINT_TYPE_FUNC(x32, u32, "0x%x") 55 DEFINE_BASIC_PRINT_TYPE_FUNC(x64, u64, "0x%Lx") 56 DEFINE_BASIC_PRINT_TYPE_FUNC(char, u8, "'%c'") 57 58 int PRINT_TYPE_FUNC_NAME(symbol)(struct trace_seq *s, void *data, void *ent) 59 { 60 trace_seq_printf(s, "%pS", (void *)*(unsigned long *)data); 61 return !trace_seq_has_overflowed(s); 62 } 63 const char PRINT_TYPE_FMT_NAME(symbol)[] = "%pS"; 64 65 /* Print type function for string type */ 66 int PRINT_TYPE_FUNC_NAME(string)(struct trace_seq *s, void *data, void *ent) 67 { 68 int len = *(u32 *)data >> 16; 69 70 if (!len) 71 trace_seq_puts(s, FAULT_STRING); 72 else 73 trace_seq_printf(s, "\"%s\"", 74 (const char *)get_loc_data(data, ent)); 75 return !trace_seq_has_overflowed(s); 76 } 77 78 const char PRINT_TYPE_FMT_NAME(string)[] = "\\\"%s\\\""; 79 80 /* Fetch type information table */ 81 static const struct fetch_type probe_fetch_types[] = { 82 /* Special types */ 83 __ASSIGN_FETCH_TYPE("string", string, string, sizeof(u32), 1, 1, 84 "__data_loc char[]"), 85 __ASSIGN_FETCH_TYPE("ustring", string, string, sizeof(u32), 1, 1, 86 "__data_loc char[]"), 87 __ASSIGN_FETCH_TYPE("symstr", string, string, sizeof(u32), 1, 1, 88 "__data_loc char[]"), 89 /* Basic types */ 90 ASSIGN_FETCH_TYPE(u8, u8, 0), 91 ASSIGN_FETCH_TYPE(u16, u16, 0), 92 ASSIGN_FETCH_TYPE(u32, u32, 0), 93 ASSIGN_FETCH_TYPE(u64, u64, 0), 94 ASSIGN_FETCH_TYPE(s8, u8, 1), 95 ASSIGN_FETCH_TYPE(s16, u16, 1), 96 ASSIGN_FETCH_TYPE(s32, u32, 1), 97 ASSIGN_FETCH_TYPE(s64, u64, 1), 98 ASSIGN_FETCH_TYPE_ALIAS(x8, u8, u8, 0), 99 ASSIGN_FETCH_TYPE_ALIAS(x16, u16, u16, 0), 100 ASSIGN_FETCH_TYPE_ALIAS(x32, u32, u32, 0), 101 ASSIGN_FETCH_TYPE_ALIAS(x64, u64, u64, 0), 102 ASSIGN_FETCH_TYPE_ALIAS(char, u8, u8, 0), 103 ASSIGN_FETCH_TYPE_ALIAS(symbol, ADDR_FETCH_TYPE, ADDR_FETCH_TYPE, 0), 104 105 ASSIGN_FETCH_TYPE_END 106 }; 107 108 static const struct fetch_type *find_fetch_type(const char *type, unsigned long flags) 109 { 110 int i; 111 112 /* Reject the symbol/symstr for uprobes */ 113 if (type && (flags & TPARG_FL_USER) && 114 (!strcmp(type, "symbol") || !strcmp(type, "symstr"))) 115 return NULL; 116 117 if (!type) 118 type = DEFAULT_FETCH_TYPE_STR; 119 120 /* Special case: bitfield */ 121 if (*type == 'b') { 122 unsigned long bs; 123 124 type = strchr(type, '/'); 125 if (!type) 126 goto fail; 127 128 type++; 129 if (kstrtoul(type, 0, &bs)) 130 goto fail; 131 132 switch (bs) { 133 case 8: 134 return find_fetch_type("u8", flags); 135 case 16: 136 return find_fetch_type("u16", flags); 137 case 32: 138 return find_fetch_type("u32", flags); 139 case 64: 140 return find_fetch_type("u64", flags); 141 default: 142 goto fail; 143 } 144 } 145 146 for (i = 0; probe_fetch_types[i].name; i++) { 147 if (strcmp(type, probe_fetch_types[i].name) == 0) 148 return &probe_fetch_types[i]; 149 } 150 151 fail: 152 return NULL; 153 } 154 155 static struct trace_probe_log trace_probe_log; 156 157 void trace_probe_log_init(const char *subsystem, int argc, const char **argv) 158 { 159 trace_probe_log.subsystem = subsystem; 160 trace_probe_log.argc = argc; 161 trace_probe_log.argv = argv; 162 trace_probe_log.index = 0; 163 } 164 165 void trace_probe_log_clear(void) 166 { 167 memset(&trace_probe_log, 0, sizeof(trace_probe_log)); 168 } 169 170 void trace_probe_log_set_index(int index) 171 { 172 trace_probe_log.index = index; 173 } 174 175 void __trace_probe_log_err(int offset, int err_type) 176 { 177 char *command, *p; 178 int i, len = 0, pos = 0; 179 180 if (!trace_probe_log.argv) 181 return; 182 183 /* Recalculate the length and allocate buffer */ 184 for (i = 0; i < trace_probe_log.argc; i++) { 185 if (i == trace_probe_log.index) 186 pos = len; 187 len += strlen(trace_probe_log.argv[i]) + 1; 188 } 189 command = kzalloc(len, GFP_KERNEL); 190 if (!command) 191 return; 192 193 if (trace_probe_log.index >= trace_probe_log.argc) { 194 /** 195 * Set the error position is next to the last arg + space. 196 * Note that len includes the terminal null and the cursor 197 * appears at pos + 1. 198 */ 199 pos = len; 200 offset = 0; 201 } 202 203 /* And make a command string from argv array */ 204 p = command; 205 for (i = 0; i < trace_probe_log.argc; i++) { 206 len = strlen(trace_probe_log.argv[i]); 207 strcpy(p, trace_probe_log.argv[i]); 208 p[len] = ' '; 209 p += len + 1; 210 } 211 *(p - 1) = '\0'; 212 213 tracing_log_err(NULL, trace_probe_log.subsystem, command, 214 trace_probe_err_text, err_type, pos + offset); 215 216 kfree(command); 217 } 218 219 /* Split symbol and offset. */ 220 int traceprobe_split_symbol_offset(char *symbol, long *offset) 221 { 222 char *tmp; 223 int ret; 224 225 if (!offset) 226 return -EINVAL; 227 228 tmp = strpbrk(symbol, "+-"); 229 if (tmp) { 230 ret = kstrtol(tmp, 0, offset); 231 if (ret) 232 return ret; 233 *tmp = '\0'; 234 } else 235 *offset = 0; 236 237 return 0; 238 } 239 240 /* @buf must has MAX_EVENT_NAME_LEN size */ 241 int traceprobe_parse_event_name(const char **pevent, const char **pgroup, 242 char *buf, int offset) 243 { 244 const char *slash, *event = *pevent; 245 int len; 246 247 slash = strchr(event, '/'); 248 if (!slash) 249 slash = strchr(event, '.'); 250 251 if (slash) { 252 if (slash == event) { 253 trace_probe_log_err(offset, NO_GROUP_NAME); 254 return -EINVAL; 255 } 256 if (slash - event + 1 > MAX_EVENT_NAME_LEN) { 257 trace_probe_log_err(offset, GROUP_TOO_LONG); 258 return -EINVAL; 259 } 260 strscpy(buf, event, slash - event + 1); 261 if (!is_good_system_name(buf)) { 262 trace_probe_log_err(offset, BAD_GROUP_NAME); 263 return -EINVAL; 264 } 265 *pgroup = buf; 266 *pevent = slash + 1; 267 offset += slash - event + 1; 268 event = *pevent; 269 } 270 len = strlen(event); 271 if (len == 0) { 272 if (slash) { 273 *pevent = NULL; 274 return 0; 275 } 276 trace_probe_log_err(offset, NO_EVENT_NAME); 277 return -EINVAL; 278 } else if (len > MAX_EVENT_NAME_LEN) { 279 trace_probe_log_err(offset, EVENT_TOO_LONG); 280 return -EINVAL; 281 } 282 if (!is_good_name(event)) { 283 trace_probe_log_err(offset, BAD_EVENT_NAME); 284 return -EINVAL; 285 } 286 return 0; 287 } 288 289 static int parse_trace_event_arg(char *arg, struct fetch_insn *code, 290 struct traceprobe_parse_context *ctx) 291 { 292 struct ftrace_event_field *field; 293 struct list_head *head; 294 295 head = trace_get_fields(ctx->event); 296 list_for_each_entry(field, head, link) { 297 if (!strcmp(arg, field->name)) { 298 code->op = FETCH_OP_TP_ARG; 299 code->data = field; 300 return 0; 301 } 302 } 303 return -ENOENT; 304 } 305 306 #ifdef CONFIG_PROBE_EVENTS_BTF_ARGS 307 308 static u32 btf_type_int(const struct btf_type *t) 309 { 310 return *(u32 *)(t + 1); 311 } 312 313 static bool btf_type_is_char_ptr(struct btf *btf, const struct btf_type *type) 314 { 315 const struct btf_type *real_type; 316 u32 intdata; 317 s32 tid; 318 319 real_type = btf_type_skip_modifiers(btf, type->type, &tid); 320 if (!real_type) 321 return false; 322 323 if (BTF_INFO_KIND(real_type->info) != BTF_KIND_INT) 324 return false; 325 326 intdata = btf_type_int(real_type); 327 return !(BTF_INT_ENCODING(intdata) & BTF_INT_SIGNED) 328 && BTF_INT_BITS(intdata) == 8; 329 } 330 331 static bool btf_type_is_char_array(struct btf *btf, const struct btf_type *type) 332 { 333 const struct btf_type *real_type; 334 const struct btf_array *array; 335 u32 intdata; 336 s32 tid; 337 338 if (BTF_INFO_KIND(type->info) != BTF_KIND_ARRAY) 339 return false; 340 341 array = (const struct btf_array *)(type + 1); 342 343 real_type = btf_type_skip_modifiers(btf, array->type, &tid); 344 345 intdata = btf_type_int(real_type); 346 return !(BTF_INT_ENCODING(intdata) & BTF_INT_SIGNED) 347 && BTF_INT_BITS(intdata) == 8; 348 } 349 350 static int check_prepare_btf_string_fetch(char *typename, 351 struct fetch_insn **pcode, 352 struct traceprobe_parse_context *ctx) 353 { 354 struct btf *btf = ctx->btf; 355 356 if (!btf || !ctx->last_type) 357 return 0; 358 359 /* char [] does not need any change. */ 360 if (btf_type_is_char_array(btf, ctx->last_type)) 361 return 0; 362 363 /* char * requires dereference the pointer. */ 364 if (btf_type_is_char_ptr(btf, ctx->last_type)) { 365 struct fetch_insn *code = *pcode + 1; 366 367 if (code->op == FETCH_OP_END) { 368 trace_probe_log_err(ctx->offset, TOO_MANY_OPS); 369 return -E2BIG; 370 } 371 if (typename[0] == 'u') 372 code->op = FETCH_OP_UDEREF; 373 else 374 code->op = FETCH_OP_DEREF; 375 code->offset = 0; 376 *pcode = code; 377 return 0; 378 } 379 /* Other types are not available for string */ 380 trace_probe_log_err(ctx->offset, BAD_TYPE4STR); 381 return -EINVAL; 382 } 383 384 static const char *fetch_type_from_btf_type(struct btf *btf, 385 const struct btf_type *type, 386 struct traceprobe_parse_context *ctx) 387 { 388 u32 intdata; 389 390 /* TODO: const char * could be converted as a string */ 391 switch (BTF_INFO_KIND(type->info)) { 392 case BTF_KIND_ENUM: 393 /* enum is "int", so convert to "s32" */ 394 return "s32"; 395 case BTF_KIND_ENUM64: 396 return "s64"; 397 case BTF_KIND_PTR: 398 /* pointer will be converted to "x??" */ 399 if (IS_ENABLED(CONFIG_64BIT)) 400 return "x64"; 401 else 402 return "x32"; 403 case BTF_KIND_INT: 404 intdata = btf_type_int(type); 405 if (BTF_INT_ENCODING(intdata) & BTF_INT_SIGNED) { 406 switch (BTF_INT_BITS(intdata)) { 407 case 8: 408 return "s8"; 409 case 16: 410 return "s16"; 411 case 32: 412 return "s32"; 413 case 64: 414 return "s64"; 415 } 416 } else { /* unsigned */ 417 switch (BTF_INT_BITS(intdata)) { 418 case 8: 419 return "u8"; 420 case 16: 421 return "u16"; 422 case 32: 423 return "u32"; 424 case 64: 425 return "u64"; 426 } 427 /* bitfield, size is encoded in the type */ 428 ctx->last_bitsize = BTF_INT_BITS(intdata); 429 ctx->last_bitoffs += BTF_INT_OFFSET(intdata); 430 return "u64"; 431 } 432 } 433 /* TODO: support other types */ 434 435 return NULL; 436 } 437 438 static int query_btf_context(struct traceprobe_parse_context *ctx) 439 { 440 const struct btf_param *param; 441 const struct btf_type *type; 442 struct btf *btf; 443 s32 nr; 444 445 if (ctx->btf) 446 return 0; 447 448 if (!ctx->funcname) 449 return -EINVAL; 450 451 type = btf_find_func_proto(ctx->funcname, &btf); 452 if (!type) 453 return -ENOENT; 454 455 ctx->btf = btf; 456 ctx->proto = type; 457 458 /* ctx->params is optional, since func(void) will not have params. */ 459 nr = 0; 460 param = btf_get_func_param(type, &nr); 461 if (!IS_ERR_OR_NULL(param)) { 462 /* Hide the first 'data' argument of tracepoint */ 463 if (ctx->flags & TPARG_FL_TPOINT) { 464 nr--; 465 param++; 466 } 467 } 468 469 if (nr > 0) { 470 ctx->nr_params = nr; 471 ctx->params = param; 472 } else { 473 ctx->nr_params = 0; 474 ctx->params = NULL; 475 } 476 477 return 0; 478 } 479 480 static void clear_btf_context(struct traceprobe_parse_context *ctx) 481 { 482 if (ctx->btf) { 483 btf_put(ctx->btf); 484 ctx->btf = NULL; 485 ctx->proto = NULL; 486 ctx->params = NULL; 487 ctx->nr_params = 0; 488 } 489 } 490 491 /* Return 1 if the field separater is arrow operator ('->') */ 492 static int split_next_field(char *varname, char **next_field, 493 struct traceprobe_parse_context *ctx) 494 { 495 char *field; 496 int ret = 0; 497 498 field = strpbrk(varname, ".-"); 499 if (field) { 500 if (field[0] == '-' && field[1] == '>') { 501 field[0] = '\0'; 502 field += 2; 503 ret = 1; 504 } else if (field[0] == '.') { 505 field[0] = '\0'; 506 field += 1; 507 } else { 508 trace_probe_log_err(ctx->offset + field - varname, BAD_HYPHEN); 509 return -EINVAL; 510 } 511 *next_field = field; 512 } 513 514 return ret; 515 } 516 517 /* 518 * Parse the field of data structure. The @type must be a pointer type 519 * pointing the target data structure type. 520 */ 521 static int parse_btf_field(char *fieldname, const struct btf_type *type, 522 struct fetch_insn **pcode, struct fetch_insn *end, 523 struct traceprobe_parse_context *ctx) 524 { 525 struct fetch_insn *code = *pcode; 526 const struct btf_member *field; 527 u32 bitoffs, anon_offs; 528 char *next; 529 int is_ptr; 530 s32 tid; 531 532 do { 533 /* Outer loop for solving arrow operator ('->') */ 534 if (BTF_INFO_KIND(type->info) != BTF_KIND_PTR) { 535 trace_probe_log_err(ctx->offset, NO_PTR_STRCT); 536 return -EINVAL; 537 } 538 /* Convert a struct pointer type to a struct type */ 539 type = btf_type_skip_modifiers(ctx->btf, type->type, &tid); 540 if (!type) { 541 trace_probe_log_err(ctx->offset, BAD_BTF_TID); 542 return -EINVAL; 543 } 544 545 bitoffs = 0; 546 do { 547 /* Inner loop for solving dot operator ('.') */ 548 next = NULL; 549 is_ptr = split_next_field(fieldname, &next, ctx); 550 if (is_ptr < 0) 551 return is_ptr; 552 553 anon_offs = 0; 554 field = btf_find_struct_member(ctx->btf, type, fieldname, 555 &anon_offs); 556 if (!field) { 557 trace_probe_log_err(ctx->offset, NO_BTF_FIELD); 558 return -ENOENT; 559 } 560 /* Add anonymous structure/union offset */ 561 bitoffs += anon_offs; 562 563 /* Accumulate the bit-offsets of the dot-connected fields */ 564 if (btf_type_kflag(type)) { 565 bitoffs += BTF_MEMBER_BIT_OFFSET(field->offset); 566 ctx->last_bitsize = BTF_MEMBER_BITFIELD_SIZE(field->offset); 567 } else { 568 bitoffs += field->offset; 569 ctx->last_bitsize = 0; 570 } 571 572 type = btf_type_skip_modifiers(ctx->btf, field->type, &tid); 573 if (!type) { 574 trace_probe_log_err(ctx->offset, BAD_BTF_TID); 575 return -EINVAL; 576 } 577 578 ctx->offset += next - fieldname; 579 fieldname = next; 580 } while (!is_ptr && fieldname); 581 582 if (++code == end) { 583 trace_probe_log_err(ctx->offset, TOO_MANY_OPS); 584 return -EINVAL; 585 } 586 code->op = FETCH_OP_DEREF; /* TODO: user deref support */ 587 code->offset = bitoffs / 8; 588 *pcode = code; 589 590 ctx->last_bitoffs = bitoffs % 8; 591 ctx->last_type = type; 592 } while (fieldname); 593 594 return 0; 595 } 596 597 static int __store_entry_arg(struct trace_probe *tp, int argnum); 598 599 static int parse_btf_arg(char *varname, 600 struct fetch_insn **pcode, struct fetch_insn *end, 601 struct traceprobe_parse_context *ctx) 602 { 603 struct fetch_insn *code = *pcode; 604 const struct btf_param *params; 605 const struct btf_type *type; 606 char *field = NULL; 607 int i, is_ptr, ret; 608 u32 tid; 609 610 if (WARN_ON_ONCE(!ctx->funcname)) 611 return -EINVAL; 612 613 is_ptr = split_next_field(varname, &field, ctx); 614 if (is_ptr < 0) 615 return is_ptr; 616 if (!is_ptr && field) { 617 /* dot-connected field on an argument is not supported. */ 618 trace_probe_log_err(ctx->offset + field - varname, 619 NOSUP_DAT_ARG); 620 return -EOPNOTSUPP; 621 } 622 623 if (ctx->flags & TPARG_FL_RETURN && !strcmp(varname, "$retval")) { 624 code->op = FETCH_OP_RETVAL; 625 /* Check whether the function return type is not void */ 626 if (query_btf_context(ctx) == 0) { 627 if (ctx->proto->type == 0) { 628 trace_probe_log_err(ctx->offset, NO_RETVAL); 629 return -ENOENT; 630 } 631 tid = ctx->proto->type; 632 goto found; 633 } 634 if (field) { 635 trace_probe_log_err(ctx->offset + field - varname, 636 NO_BTF_ENTRY); 637 return -ENOENT; 638 } 639 return 0; 640 } 641 642 if (!ctx->btf) { 643 ret = query_btf_context(ctx); 644 if (ret < 0 || ctx->nr_params == 0) { 645 trace_probe_log_err(ctx->offset, NO_BTF_ENTRY); 646 return PTR_ERR(params); 647 } 648 } 649 params = ctx->params; 650 651 for (i = 0; i < ctx->nr_params; i++) { 652 const char *name = btf_name_by_offset(ctx->btf, params[i].name_off); 653 654 if (name && !strcmp(name, varname)) { 655 if (tparg_is_function_entry(ctx->flags)) { 656 code->op = FETCH_OP_ARG; 657 if (ctx->flags & TPARG_FL_TPOINT) 658 code->param = i + 1; 659 else 660 code->param = i; 661 } else if (tparg_is_function_return(ctx->flags)) { 662 code->op = FETCH_OP_EDATA; 663 ret = __store_entry_arg(ctx->tp, i); 664 if (ret < 0) { 665 /* internal error */ 666 return ret; 667 } 668 code->offset = ret; 669 } 670 tid = params[i].type; 671 goto found; 672 } 673 } 674 trace_probe_log_err(ctx->offset, NO_BTFARG); 675 return -ENOENT; 676 677 found: 678 type = btf_type_skip_modifiers(ctx->btf, tid, &tid); 679 if (!type) { 680 trace_probe_log_err(ctx->offset, BAD_BTF_TID); 681 return -EINVAL; 682 } 683 /* Initialize the last type information */ 684 ctx->last_type = type; 685 ctx->last_bitoffs = 0; 686 ctx->last_bitsize = 0; 687 if (field) { 688 ctx->offset += field - varname; 689 return parse_btf_field(field, type, pcode, end, ctx); 690 } 691 return 0; 692 } 693 694 static const struct fetch_type *find_fetch_type_from_btf_type( 695 struct traceprobe_parse_context *ctx) 696 { 697 struct btf *btf = ctx->btf; 698 const char *typestr = NULL; 699 700 if (btf && ctx->last_type) 701 typestr = fetch_type_from_btf_type(btf, ctx->last_type, ctx); 702 703 return find_fetch_type(typestr, ctx->flags); 704 } 705 706 static int parse_btf_bitfield(struct fetch_insn **pcode, 707 struct traceprobe_parse_context *ctx) 708 { 709 struct fetch_insn *code = *pcode; 710 711 if ((ctx->last_bitsize % 8 == 0) && ctx->last_bitoffs == 0) 712 return 0; 713 714 code++; 715 if (code->op != FETCH_OP_NOP) { 716 trace_probe_log_err(ctx->offset, TOO_MANY_OPS); 717 return -EINVAL; 718 } 719 *pcode = code; 720 721 code->op = FETCH_OP_MOD_BF; 722 code->lshift = 64 - (ctx->last_bitsize + ctx->last_bitoffs); 723 code->rshift = 64 - ctx->last_bitsize; 724 code->basesize = 64 / 8; 725 return 0; 726 } 727 728 #else 729 static void clear_btf_context(struct traceprobe_parse_context *ctx) 730 { 731 ctx->btf = NULL; 732 } 733 734 static int query_btf_context(struct traceprobe_parse_context *ctx) 735 { 736 return -EOPNOTSUPP; 737 } 738 739 static int parse_btf_arg(char *varname, 740 struct fetch_insn **pcode, struct fetch_insn *end, 741 struct traceprobe_parse_context *ctx) 742 { 743 trace_probe_log_err(ctx->offset, NOSUP_BTFARG); 744 return -EOPNOTSUPP; 745 } 746 747 static int parse_btf_bitfield(struct fetch_insn **pcode, 748 struct traceprobe_parse_context *ctx) 749 { 750 trace_probe_log_err(ctx->offset, NOSUP_BTFARG); 751 return -EOPNOTSUPP; 752 } 753 754 #define find_fetch_type_from_btf_type(ctx) \ 755 find_fetch_type(NULL, ctx->flags) 756 757 static int check_prepare_btf_string_fetch(char *typename, 758 struct fetch_insn **pcode, 759 struct traceprobe_parse_context *ctx) 760 { 761 return 0; 762 } 763 764 #endif 765 766 #ifdef CONFIG_HAVE_FUNCTION_ARG_ACCESS_API 767 768 static int __store_entry_arg(struct trace_probe *tp, int argnum) 769 { 770 struct probe_entry_arg *earg = tp->entry_arg; 771 bool match = false; 772 int i, offset; 773 774 if (!earg) { 775 earg = kzalloc(sizeof(*tp->entry_arg), GFP_KERNEL); 776 if (!earg) 777 return -ENOMEM; 778 earg->size = 2 * tp->nr_args + 1; 779 earg->code = kcalloc(earg->size, sizeof(struct fetch_insn), 780 GFP_KERNEL); 781 if (!earg->code) { 782 kfree(earg); 783 return -ENOMEM; 784 } 785 /* Fill the code buffer with 'end' to simplify it */ 786 for (i = 0; i < earg->size; i++) 787 earg->code[i].op = FETCH_OP_END; 788 tp->entry_arg = earg; 789 } 790 791 offset = 0; 792 for (i = 0; i < earg->size - 1; i++) { 793 switch (earg->code[i].op) { 794 case FETCH_OP_END: 795 earg->code[i].op = FETCH_OP_ARG; 796 earg->code[i].param = argnum; 797 earg->code[i + 1].op = FETCH_OP_ST_EDATA; 798 earg->code[i + 1].offset = offset; 799 return offset; 800 case FETCH_OP_ARG: 801 match = (earg->code[i].param == argnum); 802 break; 803 case FETCH_OP_ST_EDATA: 804 offset = earg->code[i].offset; 805 if (match) 806 return offset; 807 offset += sizeof(unsigned long); 808 break; 809 default: 810 break; 811 } 812 } 813 return -ENOSPC; 814 } 815 816 int traceprobe_get_entry_data_size(struct trace_probe *tp) 817 { 818 struct probe_entry_arg *earg = tp->entry_arg; 819 int i, size = 0; 820 821 if (!earg) 822 return 0; 823 824 for (i = 0; i < earg->size; i++) { 825 switch (earg->code[i].op) { 826 case FETCH_OP_END: 827 goto out; 828 case FETCH_OP_ST_EDATA: 829 size = earg->code[i].offset + sizeof(unsigned long); 830 break; 831 default: 832 break; 833 } 834 } 835 out: 836 return size; 837 } 838 839 void store_trace_entry_data(void *edata, struct trace_probe *tp, struct pt_regs *regs) 840 { 841 struct probe_entry_arg *earg = tp->entry_arg; 842 unsigned long val = 0; 843 int i; 844 845 if (!earg) 846 return; 847 848 for (i = 0; i < earg->size; i++) { 849 struct fetch_insn *code = &earg->code[i]; 850 851 switch (code->op) { 852 case FETCH_OP_ARG: 853 val = regs_get_kernel_argument(regs, code->param); 854 break; 855 case FETCH_OP_ST_EDATA: 856 *(unsigned long *)((unsigned long)edata + code->offset) = val; 857 break; 858 case FETCH_OP_END: 859 goto end; 860 default: 861 break; 862 } 863 } 864 end: 865 return; 866 } 867 NOKPROBE_SYMBOL(store_trace_entry_data) 868 #endif 869 870 #define PARAM_MAX_STACK (THREAD_SIZE / sizeof(unsigned long)) 871 872 /* Parse $vars. @orig_arg points '$', which syncs to @ctx->offset */ 873 static int parse_probe_vars(char *orig_arg, const struct fetch_type *t, 874 struct fetch_insn **pcode, 875 struct fetch_insn *end, 876 struct traceprobe_parse_context *ctx) 877 { 878 struct fetch_insn *code = *pcode; 879 int err = TP_ERR_BAD_VAR; 880 char *arg = orig_arg + 1; 881 unsigned long param; 882 int ret = 0; 883 int len; 884 885 if (ctx->flags & TPARG_FL_TEVENT) { 886 if (code->data) 887 return -EFAULT; 888 ret = parse_trace_event_arg(arg, code, ctx); 889 if (!ret) 890 return 0; 891 if (strcmp(arg, "comm") == 0 || strcmp(arg, "COMM") == 0) { 892 code->op = FETCH_OP_COMM; 893 return 0; 894 } 895 /* backward compatibility */ 896 ctx->offset = 0; 897 goto inval; 898 } 899 900 if (str_has_prefix(arg, "retval")) { 901 if (!(ctx->flags & TPARG_FL_RETURN)) { 902 err = TP_ERR_RETVAL_ON_PROBE; 903 goto inval; 904 } 905 if (!(ctx->flags & TPARG_FL_KERNEL) || 906 !IS_ENABLED(CONFIG_PROBE_EVENTS_BTF_ARGS)) { 907 code->op = FETCH_OP_RETVAL; 908 return 0; 909 } 910 return parse_btf_arg(orig_arg, pcode, end, ctx); 911 } 912 913 len = str_has_prefix(arg, "stack"); 914 if (len) { 915 916 if (arg[len] == '\0') { 917 code->op = FETCH_OP_STACKP; 918 return 0; 919 } 920 921 if (isdigit(arg[len])) { 922 ret = kstrtoul(arg + len, 10, ¶m); 923 if (ret) 924 goto inval; 925 926 if ((ctx->flags & TPARG_FL_KERNEL) && 927 param > PARAM_MAX_STACK) { 928 err = TP_ERR_BAD_STACK_NUM; 929 goto inval; 930 } 931 code->op = FETCH_OP_STACK; 932 code->param = (unsigned int)param; 933 return 0; 934 } 935 goto inval; 936 } 937 938 if (strcmp(arg, "comm") == 0 || strcmp(arg, "COMM") == 0) { 939 code->op = FETCH_OP_COMM; 940 return 0; 941 } 942 943 #ifdef CONFIG_HAVE_FUNCTION_ARG_ACCESS_API 944 len = str_has_prefix(arg, "arg"); 945 if (len) { 946 ret = kstrtoul(arg + len, 10, ¶m); 947 if (ret) 948 goto inval; 949 950 if (!param || param > PARAM_MAX_STACK) { 951 err = TP_ERR_BAD_ARG_NUM; 952 goto inval; 953 } 954 param--; /* argN starts from 1, but internal arg[N] starts from 0 */ 955 956 if (tparg_is_function_entry(ctx->flags)) { 957 code->op = FETCH_OP_ARG; 958 code->param = (unsigned int)param; 959 /* 960 * The tracepoint probe will probe a stub function, and the 961 * first parameter of the stub is a dummy and should be ignored. 962 */ 963 if (ctx->flags & TPARG_FL_TPOINT) 964 code->param++; 965 } else if (tparg_is_function_return(ctx->flags)) { 966 /* function entry argument access from return probe */ 967 ret = __store_entry_arg(ctx->tp, param); 968 if (ret < 0) /* This error should be an internal error */ 969 return ret; 970 971 code->op = FETCH_OP_EDATA; 972 code->offset = ret; 973 } else { 974 err = TP_ERR_NOFENTRY_ARGS; 975 goto inval; 976 } 977 return 0; 978 } 979 #endif 980 981 inval: 982 __trace_probe_log_err(ctx->offset, err); 983 return -EINVAL; 984 } 985 986 static int str_to_immediate(char *str, unsigned long *imm) 987 { 988 if (isdigit(str[0])) 989 return kstrtoul(str, 0, imm); 990 else if (str[0] == '-') 991 return kstrtol(str, 0, (long *)imm); 992 else if (str[0] == '+') 993 return kstrtol(str + 1, 0, (long *)imm); 994 return -EINVAL; 995 } 996 997 static int __parse_imm_string(char *str, char **pbuf, int offs) 998 { 999 size_t len = strlen(str); 1000 1001 if (str[len - 1] != '"') { 1002 trace_probe_log_err(offs + len, IMMSTR_NO_CLOSE); 1003 return -EINVAL; 1004 } 1005 *pbuf = kstrndup(str, len - 1, GFP_KERNEL); 1006 if (!*pbuf) 1007 return -ENOMEM; 1008 return 0; 1009 } 1010 1011 /* Recursive argument parser */ 1012 static int 1013 parse_probe_arg(char *arg, const struct fetch_type *type, 1014 struct fetch_insn **pcode, struct fetch_insn *end, 1015 struct traceprobe_parse_context *ctx) 1016 { 1017 struct fetch_insn *code = *pcode; 1018 unsigned long param; 1019 int deref = FETCH_OP_DEREF; 1020 long offset = 0; 1021 char *tmp; 1022 int ret = 0; 1023 1024 switch (arg[0]) { 1025 case '$': 1026 ret = parse_probe_vars(arg, type, pcode, end, ctx); 1027 break; 1028 1029 case '%': /* named register */ 1030 if (ctx->flags & (TPARG_FL_TEVENT | TPARG_FL_FPROBE)) { 1031 /* eprobe and fprobe do not handle registers */ 1032 trace_probe_log_err(ctx->offset, BAD_VAR); 1033 break; 1034 } 1035 ret = regs_query_register_offset(arg + 1); 1036 if (ret >= 0) { 1037 code->op = FETCH_OP_REG; 1038 code->param = (unsigned int)ret; 1039 ret = 0; 1040 } else 1041 trace_probe_log_err(ctx->offset, BAD_REG_NAME); 1042 break; 1043 1044 case '@': /* memory, file-offset or symbol */ 1045 if (isdigit(arg[1])) { 1046 ret = kstrtoul(arg + 1, 0, ¶m); 1047 if (ret) { 1048 trace_probe_log_err(ctx->offset, BAD_MEM_ADDR); 1049 break; 1050 } 1051 /* load address */ 1052 code->op = FETCH_OP_IMM; 1053 code->immediate = param; 1054 } else if (arg[1] == '+') { 1055 /* kprobes don't support file offsets */ 1056 if (ctx->flags & TPARG_FL_KERNEL) { 1057 trace_probe_log_err(ctx->offset, FILE_ON_KPROBE); 1058 return -EINVAL; 1059 } 1060 ret = kstrtol(arg + 2, 0, &offset); 1061 if (ret) { 1062 trace_probe_log_err(ctx->offset, BAD_FILE_OFFS); 1063 break; 1064 } 1065 1066 code->op = FETCH_OP_FOFFS; 1067 code->immediate = (unsigned long)offset; // imm64? 1068 } else { 1069 /* uprobes don't support symbols */ 1070 if (!(ctx->flags & TPARG_FL_KERNEL)) { 1071 trace_probe_log_err(ctx->offset, SYM_ON_UPROBE); 1072 return -EINVAL; 1073 } 1074 /* Preserve symbol for updating */ 1075 code->op = FETCH_NOP_SYMBOL; 1076 code->data = kstrdup(arg + 1, GFP_KERNEL); 1077 if (!code->data) 1078 return -ENOMEM; 1079 if (++code == end) { 1080 trace_probe_log_err(ctx->offset, TOO_MANY_OPS); 1081 return -EINVAL; 1082 } 1083 code->op = FETCH_OP_IMM; 1084 code->immediate = 0; 1085 } 1086 /* These are fetching from memory */ 1087 if (++code == end) { 1088 trace_probe_log_err(ctx->offset, TOO_MANY_OPS); 1089 return -EINVAL; 1090 } 1091 *pcode = code; 1092 code->op = FETCH_OP_DEREF; 1093 code->offset = offset; 1094 break; 1095 1096 case '+': /* deref memory */ 1097 case '-': 1098 if (arg[1] == 'u') { 1099 deref = FETCH_OP_UDEREF; 1100 arg[1] = arg[0]; 1101 arg++; 1102 } 1103 if (arg[0] == '+') 1104 arg++; /* Skip '+', because kstrtol() rejects it. */ 1105 tmp = strchr(arg, '('); 1106 if (!tmp) { 1107 trace_probe_log_err(ctx->offset, DEREF_NEED_BRACE); 1108 return -EINVAL; 1109 } 1110 *tmp = '\0'; 1111 ret = kstrtol(arg, 0, &offset); 1112 if (ret) { 1113 trace_probe_log_err(ctx->offset, BAD_DEREF_OFFS); 1114 break; 1115 } 1116 ctx->offset += (tmp + 1 - arg) + (arg[0] != '-' ? 1 : 0); 1117 arg = tmp + 1; 1118 tmp = strrchr(arg, ')'); 1119 if (!tmp) { 1120 trace_probe_log_err(ctx->offset + strlen(arg), 1121 DEREF_OPEN_BRACE); 1122 return -EINVAL; 1123 } else { 1124 const struct fetch_type *t2 = find_fetch_type(NULL, ctx->flags); 1125 int cur_offs = ctx->offset; 1126 1127 *tmp = '\0'; 1128 ret = parse_probe_arg(arg, t2, &code, end, ctx); 1129 if (ret) 1130 break; 1131 ctx->offset = cur_offs; 1132 if (code->op == FETCH_OP_COMM || 1133 code->op == FETCH_OP_DATA) { 1134 trace_probe_log_err(ctx->offset, COMM_CANT_DEREF); 1135 return -EINVAL; 1136 } 1137 if (++code == end) { 1138 trace_probe_log_err(ctx->offset, TOO_MANY_OPS); 1139 return -EINVAL; 1140 } 1141 *pcode = code; 1142 1143 code->op = deref; 1144 code->offset = offset; 1145 /* Reset the last type if used */ 1146 ctx->last_type = NULL; 1147 } 1148 break; 1149 case '\\': /* Immediate value */ 1150 if (arg[1] == '"') { /* Immediate string */ 1151 ret = __parse_imm_string(arg + 2, &tmp, ctx->offset + 2); 1152 if (ret) 1153 break; 1154 code->op = FETCH_OP_DATA; 1155 code->data = tmp; 1156 } else { 1157 ret = str_to_immediate(arg + 1, &code->immediate); 1158 if (ret) 1159 trace_probe_log_err(ctx->offset + 1, BAD_IMM); 1160 else 1161 code->op = FETCH_OP_IMM; 1162 } 1163 break; 1164 default: 1165 if (isalpha(arg[0]) || arg[0] == '_') { /* BTF variable */ 1166 if (!tparg_is_function_entry(ctx->flags) && 1167 !tparg_is_function_return(ctx->flags)) { 1168 trace_probe_log_err(ctx->offset, NOSUP_BTFARG); 1169 return -EINVAL; 1170 } 1171 ret = parse_btf_arg(arg, pcode, end, ctx); 1172 break; 1173 } 1174 } 1175 if (!ret && code->op == FETCH_OP_NOP) { 1176 /* Parsed, but do not find fetch method */ 1177 trace_probe_log_err(ctx->offset, BAD_FETCH_ARG); 1178 ret = -EINVAL; 1179 } 1180 return ret; 1181 } 1182 1183 /* Bitfield type needs to be parsed into a fetch function */ 1184 static int __parse_bitfield_probe_arg(const char *bf, 1185 const struct fetch_type *t, 1186 struct fetch_insn **pcode) 1187 { 1188 struct fetch_insn *code = *pcode; 1189 unsigned long bw, bo; 1190 char *tail; 1191 1192 if (*bf != 'b') 1193 return 0; 1194 1195 bw = simple_strtoul(bf + 1, &tail, 0); /* Use simple one */ 1196 1197 if (bw == 0 || *tail != '@') 1198 return -EINVAL; 1199 1200 bf = tail + 1; 1201 bo = simple_strtoul(bf, &tail, 0); 1202 1203 if (tail == bf || *tail != '/') 1204 return -EINVAL; 1205 code++; 1206 if (code->op != FETCH_OP_NOP) 1207 return -EINVAL; 1208 *pcode = code; 1209 1210 code->op = FETCH_OP_MOD_BF; 1211 code->lshift = BYTES_TO_BITS(t->size) - (bw + bo); 1212 code->rshift = BYTES_TO_BITS(t->size) - bw; 1213 code->basesize = t->size; 1214 1215 return (BYTES_TO_BITS(t->size) < (bw + bo)) ? -EINVAL : 0; 1216 } 1217 1218 /* Split type part from @arg and return it. */ 1219 static char *parse_probe_arg_type(char *arg, struct probe_arg *parg, 1220 struct traceprobe_parse_context *ctx) 1221 { 1222 char *t = NULL, *t2, *t3; 1223 int offs; 1224 1225 t = strchr(arg, ':'); 1226 if (t) { 1227 *t++ = '\0'; 1228 t2 = strchr(t, '['); 1229 if (t2) { 1230 *t2++ = '\0'; 1231 t3 = strchr(t2, ']'); 1232 if (!t3) { 1233 offs = t2 + strlen(t2) - arg; 1234 1235 trace_probe_log_err(ctx->offset + offs, 1236 ARRAY_NO_CLOSE); 1237 return ERR_PTR(-EINVAL); 1238 } else if (t3[1] != '\0') { 1239 trace_probe_log_err(ctx->offset + t3 + 1 - arg, 1240 BAD_ARRAY_SUFFIX); 1241 return ERR_PTR(-EINVAL); 1242 } 1243 *t3 = '\0'; 1244 if (kstrtouint(t2, 0, &parg->count) || !parg->count) { 1245 trace_probe_log_err(ctx->offset + t2 - arg, 1246 BAD_ARRAY_NUM); 1247 return ERR_PTR(-EINVAL); 1248 } 1249 if (parg->count > MAX_ARRAY_LEN) { 1250 trace_probe_log_err(ctx->offset + t2 - arg, 1251 ARRAY_TOO_BIG); 1252 return ERR_PTR(-EINVAL); 1253 } 1254 } 1255 } 1256 offs = t ? t - arg : 0; 1257 1258 /* 1259 * Since $comm and immediate string can not be dereferenced, 1260 * we can find those by strcmp. But ignore for eprobes. 1261 */ 1262 if (!(ctx->flags & TPARG_FL_TEVENT) && 1263 (strcmp(arg, "$comm") == 0 || strcmp(arg, "$COMM") == 0 || 1264 strncmp(arg, "\\\"", 2) == 0)) { 1265 /* The type of $comm must be "string", and not an array type. */ 1266 if (parg->count || (t && strcmp(t, "string"))) { 1267 trace_probe_log_err(ctx->offset + offs, NEED_STRING_TYPE); 1268 return ERR_PTR(-EINVAL); 1269 } 1270 parg->type = find_fetch_type("string", ctx->flags); 1271 } else 1272 parg->type = find_fetch_type(t, ctx->flags); 1273 1274 if (!parg->type) { 1275 trace_probe_log_err(ctx->offset + offs, BAD_TYPE); 1276 return ERR_PTR(-EINVAL); 1277 } 1278 1279 return t; 1280 } 1281 1282 /* After parsing, adjust the fetch_insn according to the probe_arg */ 1283 static int finalize_fetch_insn(struct fetch_insn *code, 1284 struct probe_arg *parg, 1285 char *type, 1286 int type_offset, 1287 struct traceprobe_parse_context *ctx) 1288 { 1289 struct fetch_insn *scode; 1290 int ret; 1291 1292 /* Store operation */ 1293 if (parg->type->is_string) { 1294 /* Check bad combination of the type and the last fetch_insn. */ 1295 if (!strcmp(parg->type->name, "symstr")) { 1296 if (code->op != FETCH_OP_REG && code->op != FETCH_OP_STACK && 1297 code->op != FETCH_OP_RETVAL && code->op != FETCH_OP_ARG && 1298 code->op != FETCH_OP_DEREF && code->op != FETCH_OP_TP_ARG) { 1299 trace_probe_log_err(ctx->offset + type_offset, 1300 BAD_SYMSTRING); 1301 return -EINVAL; 1302 } 1303 } else { 1304 if (code->op != FETCH_OP_DEREF && code->op != FETCH_OP_UDEREF && 1305 code->op != FETCH_OP_IMM && code->op != FETCH_OP_COMM && 1306 code->op != FETCH_OP_DATA && code->op != FETCH_OP_TP_ARG) { 1307 trace_probe_log_err(ctx->offset + type_offset, 1308 BAD_STRING); 1309 return -EINVAL; 1310 } 1311 } 1312 1313 if (!strcmp(parg->type->name, "symstr") || 1314 (code->op == FETCH_OP_IMM || code->op == FETCH_OP_COMM || 1315 code->op == FETCH_OP_DATA) || code->op == FETCH_OP_TP_ARG || 1316 parg->count) { 1317 /* 1318 * IMM, DATA and COMM is pointing actual address, those 1319 * must be kept, and if parg->count != 0, this is an 1320 * array of string pointers instead of string address 1321 * itself. 1322 * For the symstr, it doesn't need to dereference, thus 1323 * it just get the value. 1324 */ 1325 code++; 1326 if (code->op != FETCH_OP_NOP) { 1327 trace_probe_log_err(ctx->offset, TOO_MANY_OPS); 1328 return -EINVAL; 1329 } 1330 } 1331 1332 /* If op == DEREF, replace it with STRING */ 1333 if (!strcmp(parg->type->name, "ustring") || 1334 code->op == FETCH_OP_UDEREF) 1335 code->op = FETCH_OP_ST_USTRING; 1336 else if (!strcmp(parg->type->name, "symstr")) 1337 code->op = FETCH_OP_ST_SYMSTR; 1338 else 1339 code->op = FETCH_OP_ST_STRING; 1340 code->size = parg->type->size; 1341 parg->dynamic = true; 1342 } else if (code->op == FETCH_OP_DEREF) { 1343 code->op = FETCH_OP_ST_MEM; 1344 code->size = parg->type->size; 1345 } else if (code->op == FETCH_OP_UDEREF) { 1346 code->op = FETCH_OP_ST_UMEM; 1347 code->size = parg->type->size; 1348 } else { 1349 code++; 1350 if (code->op != FETCH_OP_NOP) { 1351 trace_probe_log_err(ctx->offset, TOO_MANY_OPS); 1352 return -E2BIG; 1353 } 1354 code->op = FETCH_OP_ST_RAW; 1355 code->size = parg->type->size; 1356 } 1357 1358 /* Save storing fetch_insn. */ 1359 scode = code; 1360 1361 /* Modify operation */ 1362 if (type != NULL) { 1363 /* Bitfield needs a special fetch_insn. */ 1364 ret = __parse_bitfield_probe_arg(type, parg->type, &code); 1365 if (ret) { 1366 trace_probe_log_err(ctx->offset + type_offset, BAD_BITFIELD); 1367 return ret; 1368 } 1369 } else if (IS_ENABLED(CONFIG_PROBE_EVENTS_BTF_ARGS) && 1370 ctx->last_type) { 1371 /* If user not specified the type, try parsing BTF bitfield. */ 1372 ret = parse_btf_bitfield(&code, ctx); 1373 if (ret) 1374 return ret; 1375 } 1376 1377 /* Loop(Array) operation */ 1378 if (parg->count) { 1379 if (scode->op != FETCH_OP_ST_MEM && 1380 scode->op != FETCH_OP_ST_STRING && 1381 scode->op != FETCH_OP_ST_USTRING) { 1382 trace_probe_log_err(ctx->offset + type_offset, BAD_STRING); 1383 return -EINVAL; 1384 } 1385 code++; 1386 if (code->op != FETCH_OP_NOP) { 1387 trace_probe_log_err(ctx->offset, TOO_MANY_OPS); 1388 return -E2BIG; 1389 } 1390 code->op = FETCH_OP_LP_ARRAY; 1391 code->param = parg->count; 1392 } 1393 1394 /* Finalize the fetch_insn array. */ 1395 code++; 1396 code->op = FETCH_OP_END; 1397 1398 return 0; 1399 } 1400 1401 /* String length checking wrapper */ 1402 static int traceprobe_parse_probe_arg_body(const char *argv, ssize_t *size, 1403 struct probe_arg *parg, 1404 struct traceprobe_parse_context *ctx) 1405 { 1406 struct fetch_insn *code, *tmp = NULL; 1407 char *type, *arg; 1408 int ret, len; 1409 1410 len = strlen(argv); 1411 if (len > MAX_ARGSTR_LEN) { 1412 trace_probe_log_err(ctx->offset, ARG_TOO_LONG); 1413 return -E2BIG; 1414 } else if (len == 0) { 1415 trace_probe_log_err(ctx->offset, NO_ARG_BODY); 1416 return -EINVAL; 1417 } 1418 1419 arg = kstrdup(argv, GFP_KERNEL); 1420 if (!arg) 1421 return -ENOMEM; 1422 1423 parg->comm = kstrdup(arg, GFP_KERNEL); 1424 if (!parg->comm) { 1425 ret = -ENOMEM; 1426 goto out; 1427 } 1428 1429 type = parse_probe_arg_type(arg, parg, ctx); 1430 if (IS_ERR(type)) { 1431 ret = PTR_ERR(type); 1432 goto out; 1433 } 1434 1435 code = tmp = kcalloc(FETCH_INSN_MAX, sizeof(*code), GFP_KERNEL); 1436 if (!code) { 1437 ret = -ENOMEM; 1438 goto out; 1439 } 1440 code[FETCH_INSN_MAX - 1].op = FETCH_OP_END; 1441 1442 ctx->last_type = NULL; 1443 ret = parse_probe_arg(arg, parg->type, &code, &code[FETCH_INSN_MAX - 1], 1444 ctx); 1445 if (ret < 0) 1446 goto fail; 1447 1448 /* Update storing type if BTF is available */ 1449 if (IS_ENABLED(CONFIG_PROBE_EVENTS_BTF_ARGS) && 1450 ctx->last_type) { 1451 if (!type) { 1452 parg->type = find_fetch_type_from_btf_type(ctx); 1453 } else if (strstr(type, "string")) { 1454 ret = check_prepare_btf_string_fetch(type, &code, ctx); 1455 if (ret) 1456 goto fail; 1457 } 1458 } 1459 parg->offset = *size; 1460 *size += parg->type->size * (parg->count ?: 1); 1461 1462 if (parg->count) { 1463 len = strlen(parg->type->fmttype) + 6; 1464 parg->fmt = kmalloc(len, GFP_KERNEL); 1465 if (!parg->fmt) { 1466 ret = -ENOMEM; 1467 goto out; 1468 } 1469 snprintf(parg->fmt, len, "%s[%d]", parg->type->fmttype, 1470 parg->count); 1471 } 1472 1473 ret = finalize_fetch_insn(code, parg, type, type ? type - arg : 0, ctx); 1474 if (ret < 0) 1475 goto fail; 1476 1477 for (; code < tmp + FETCH_INSN_MAX; code++) 1478 if (code->op == FETCH_OP_END) 1479 break; 1480 /* Shrink down the code buffer */ 1481 parg->code = kcalloc(code - tmp + 1, sizeof(*code), GFP_KERNEL); 1482 if (!parg->code) 1483 ret = -ENOMEM; 1484 else 1485 memcpy(parg->code, tmp, sizeof(*code) * (code - tmp + 1)); 1486 1487 fail: 1488 if (ret < 0) { 1489 for (code = tmp; code < tmp + FETCH_INSN_MAX; code++) 1490 if (code->op == FETCH_NOP_SYMBOL || 1491 code->op == FETCH_OP_DATA) 1492 kfree(code->data); 1493 } 1494 kfree(tmp); 1495 out: 1496 kfree(arg); 1497 1498 return ret; 1499 } 1500 1501 /* Return 1 if name is reserved or already used by another argument */ 1502 static int traceprobe_conflict_field_name(const char *name, 1503 struct probe_arg *args, int narg) 1504 { 1505 int i; 1506 1507 for (i = 0; i < ARRAY_SIZE(reserved_field_names); i++) 1508 if (strcmp(reserved_field_names[i], name) == 0) 1509 return 1; 1510 1511 for (i = 0; i < narg; i++) 1512 if (strcmp(args[i].name, name) == 0) 1513 return 1; 1514 1515 return 0; 1516 } 1517 1518 static char *generate_probe_arg_name(const char *arg, int idx) 1519 { 1520 char *name = NULL; 1521 const char *end; 1522 1523 /* 1524 * If argument name is omitted, try arg as a name (BTF variable) 1525 * or "argN". 1526 */ 1527 if (IS_ENABLED(CONFIG_PROBE_EVENTS_BTF_ARGS)) { 1528 end = strchr(arg, ':'); 1529 if (!end) 1530 end = arg + strlen(arg); 1531 1532 name = kmemdup_nul(arg, end - arg, GFP_KERNEL); 1533 if (!name || !is_good_name(name)) { 1534 kfree(name); 1535 name = NULL; 1536 } 1537 } 1538 1539 if (!name) 1540 name = kasprintf(GFP_KERNEL, "arg%d", idx + 1); 1541 1542 return name; 1543 } 1544 1545 int traceprobe_parse_probe_arg(struct trace_probe *tp, int i, const char *arg, 1546 struct traceprobe_parse_context *ctx) 1547 { 1548 struct probe_arg *parg = &tp->args[i]; 1549 const char *body; 1550 1551 ctx->tp = tp; 1552 body = strchr(arg, '='); 1553 if (body) { 1554 if (body - arg > MAX_ARG_NAME_LEN) { 1555 trace_probe_log_err(0, ARG_NAME_TOO_LONG); 1556 return -EINVAL; 1557 } else if (body == arg) { 1558 trace_probe_log_err(0, NO_ARG_NAME); 1559 return -EINVAL; 1560 } 1561 parg->name = kmemdup_nul(arg, body - arg, GFP_KERNEL); 1562 body++; 1563 } else { 1564 parg->name = generate_probe_arg_name(arg, i); 1565 body = arg; 1566 } 1567 if (!parg->name) 1568 return -ENOMEM; 1569 1570 if (!is_good_name(parg->name)) { 1571 trace_probe_log_err(0, BAD_ARG_NAME); 1572 return -EINVAL; 1573 } 1574 if (traceprobe_conflict_field_name(parg->name, tp->args, i)) { 1575 trace_probe_log_err(0, USED_ARG_NAME); 1576 return -EINVAL; 1577 } 1578 ctx->offset = body - arg; 1579 /* Parse fetch argument */ 1580 return traceprobe_parse_probe_arg_body(body, &tp->size, parg, ctx); 1581 } 1582 1583 void traceprobe_free_probe_arg(struct probe_arg *arg) 1584 { 1585 struct fetch_insn *code = arg->code; 1586 1587 while (code && code->op != FETCH_OP_END) { 1588 if (code->op == FETCH_NOP_SYMBOL || 1589 code->op == FETCH_OP_DATA) 1590 kfree(code->data); 1591 code++; 1592 } 1593 kfree(arg->code); 1594 kfree(arg->name); 1595 kfree(arg->comm); 1596 kfree(arg->fmt); 1597 } 1598 1599 static int argv_has_var_arg(int argc, const char *argv[], int *args_idx, 1600 struct traceprobe_parse_context *ctx) 1601 { 1602 int i, found = 0; 1603 1604 for (i = 0; i < argc; i++) 1605 if (str_has_prefix(argv[i], "$arg")) { 1606 trace_probe_log_set_index(i + 2); 1607 1608 if (!tparg_is_function_entry(ctx->flags) && 1609 !tparg_is_function_return(ctx->flags)) { 1610 trace_probe_log_err(0, NOFENTRY_ARGS); 1611 return -EINVAL; 1612 } 1613 1614 if (isdigit(argv[i][4])) { 1615 found = 1; 1616 continue; 1617 } 1618 1619 if (argv[i][4] != '*') { 1620 trace_probe_log_err(0, BAD_VAR); 1621 return -EINVAL; 1622 } 1623 1624 if (*args_idx >= 0 && *args_idx < argc) { 1625 trace_probe_log_err(0, DOUBLE_ARGS); 1626 return -EINVAL; 1627 } 1628 found = 1; 1629 *args_idx = i; 1630 } 1631 1632 return found; 1633 } 1634 1635 static int sprint_nth_btf_arg(int idx, const char *type, 1636 char *buf, int bufsize, 1637 struct traceprobe_parse_context *ctx) 1638 { 1639 const char *name; 1640 int ret; 1641 1642 if (idx >= ctx->nr_params) { 1643 trace_probe_log_err(0, NO_BTFARG); 1644 return -ENOENT; 1645 } 1646 name = btf_name_by_offset(ctx->btf, ctx->params[idx].name_off); 1647 if (!name) { 1648 trace_probe_log_err(0, NO_BTF_ENTRY); 1649 return -ENOENT; 1650 } 1651 ret = snprintf(buf, bufsize, "%s%s", name, type); 1652 if (ret >= bufsize) { 1653 trace_probe_log_err(0, ARGS_2LONG); 1654 return -E2BIG; 1655 } 1656 return ret; 1657 } 1658 1659 /* Return new_argv which must be freed after use */ 1660 const char **traceprobe_expand_meta_args(int argc, const char *argv[], 1661 int *new_argc, char *buf, int bufsize, 1662 struct traceprobe_parse_context *ctx) 1663 { 1664 const struct btf_param *params = NULL; 1665 int i, j, n, used, ret, args_idx = -1; 1666 const char **new_argv = NULL; 1667 1668 ret = argv_has_var_arg(argc, argv, &args_idx, ctx); 1669 if (ret < 0) 1670 return ERR_PTR(ret); 1671 1672 if (!ret) { 1673 *new_argc = argc; 1674 return NULL; 1675 } 1676 1677 ret = query_btf_context(ctx); 1678 if (ret < 0 || ctx->nr_params == 0) { 1679 if (args_idx != -1) { 1680 /* $arg* requires BTF info */ 1681 trace_probe_log_err(0, NOSUP_BTFARG); 1682 return (const char **)params; 1683 } 1684 *new_argc = argc; 1685 return NULL; 1686 } 1687 1688 if (args_idx >= 0) 1689 *new_argc = argc + ctx->nr_params - 1; 1690 else 1691 *new_argc = argc; 1692 1693 new_argv = kcalloc(*new_argc, sizeof(char *), GFP_KERNEL); 1694 if (!new_argv) 1695 return ERR_PTR(-ENOMEM); 1696 1697 used = 0; 1698 for (i = 0, j = 0; i < argc; i++) { 1699 trace_probe_log_set_index(i + 2); 1700 if (i == args_idx) { 1701 for (n = 0; n < ctx->nr_params; n++) { 1702 ret = sprint_nth_btf_arg(n, "", buf + used, 1703 bufsize - used, ctx); 1704 if (ret < 0) 1705 goto error; 1706 1707 new_argv[j++] = buf + used; 1708 used += ret + 1; 1709 } 1710 continue; 1711 } 1712 1713 if (str_has_prefix(argv[i], "$arg")) { 1714 char *type = NULL; 1715 1716 n = simple_strtoul(argv[i] + 4, &type, 10); 1717 if (type && !(*type == ':' || *type == '\0')) { 1718 trace_probe_log_err(0, BAD_VAR); 1719 ret = -ENOENT; 1720 goto error; 1721 } 1722 /* Note: $argN starts from $arg1 */ 1723 ret = sprint_nth_btf_arg(n - 1, type, buf + used, 1724 bufsize - used, ctx); 1725 if (ret < 0) 1726 goto error; 1727 new_argv[j++] = buf + used; 1728 used += ret + 1; 1729 } else 1730 new_argv[j++] = argv[i]; 1731 } 1732 1733 return new_argv; 1734 1735 error: 1736 kfree(new_argv); 1737 return ERR_PTR(ret); 1738 } 1739 1740 void traceprobe_finish_parse(struct traceprobe_parse_context *ctx) 1741 { 1742 clear_btf_context(ctx); 1743 } 1744 1745 int traceprobe_update_arg(struct probe_arg *arg) 1746 { 1747 struct fetch_insn *code = arg->code; 1748 long offset; 1749 char *tmp; 1750 char c; 1751 int ret = 0; 1752 1753 while (code && code->op != FETCH_OP_END) { 1754 if (code->op == FETCH_NOP_SYMBOL) { 1755 if (code[1].op != FETCH_OP_IMM) 1756 return -EINVAL; 1757 1758 tmp = strpbrk(code->data, "+-"); 1759 if (tmp) 1760 c = *tmp; 1761 ret = traceprobe_split_symbol_offset(code->data, 1762 &offset); 1763 if (ret) 1764 return ret; 1765 1766 code[1].immediate = 1767 (unsigned long)kallsyms_lookup_name(code->data); 1768 if (tmp) 1769 *tmp = c; 1770 if (!code[1].immediate) 1771 return -ENOENT; 1772 code[1].immediate += offset; 1773 } 1774 code++; 1775 } 1776 return 0; 1777 } 1778 1779 /* When len=0, we just calculate the needed length */ 1780 #define LEN_OR_ZERO (len ? len - pos : 0) 1781 static int __set_print_fmt(struct trace_probe *tp, char *buf, int len, 1782 enum probe_print_type ptype) 1783 { 1784 struct probe_arg *parg; 1785 int i, j; 1786 int pos = 0; 1787 const char *fmt, *arg; 1788 1789 switch (ptype) { 1790 case PROBE_PRINT_NORMAL: 1791 fmt = "(%lx)"; 1792 arg = ", REC->" FIELD_STRING_IP; 1793 break; 1794 case PROBE_PRINT_RETURN: 1795 fmt = "(%lx <- %lx)"; 1796 arg = ", REC->" FIELD_STRING_FUNC ", REC->" FIELD_STRING_RETIP; 1797 break; 1798 case PROBE_PRINT_EVENT: 1799 fmt = ""; 1800 arg = ""; 1801 break; 1802 default: 1803 WARN_ON_ONCE(1); 1804 return 0; 1805 } 1806 1807 pos += snprintf(buf + pos, LEN_OR_ZERO, "\"%s", fmt); 1808 1809 for (i = 0; i < tp->nr_args; i++) { 1810 parg = tp->args + i; 1811 pos += snprintf(buf + pos, LEN_OR_ZERO, " %s=", parg->name); 1812 if (parg->count) { 1813 pos += snprintf(buf + pos, LEN_OR_ZERO, "{%s", 1814 parg->type->fmt); 1815 for (j = 1; j < parg->count; j++) 1816 pos += snprintf(buf + pos, LEN_OR_ZERO, ",%s", 1817 parg->type->fmt); 1818 pos += snprintf(buf + pos, LEN_OR_ZERO, "}"); 1819 } else 1820 pos += snprintf(buf + pos, LEN_OR_ZERO, "%s", 1821 parg->type->fmt); 1822 } 1823 1824 pos += snprintf(buf + pos, LEN_OR_ZERO, "\"%s", arg); 1825 1826 for (i = 0; i < tp->nr_args; i++) { 1827 parg = tp->args + i; 1828 if (parg->count) { 1829 if (parg->type->is_string) 1830 fmt = ", __get_str(%s[%d])"; 1831 else 1832 fmt = ", REC->%s[%d]"; 1833 for (j = 0; j < parg->count; j++) 1834 pos += snprintf(buf + pos, LEN_OR_ZERO, 1835 fmt, parg->name, j); 1836 } else { 1837 if (parg->type->is_string) 1838 fmt = ", __get_str(%s)"; 1839 else 1840 fmt = ", REC->%s"; 1841 pos += snprintf(buf + pos, LEN_OR_ZERO, 1842 fmt, parg->name); 1843 } 1844 } 1845 1846 /* return the length of print_fmt */ 1847 return pos; 1848 } 1849 #undef LEN_OR_ZERO 1850 1851 int traceprobe_set_print_fmt(struct trace_probe *tp, enum probe_print_type ptype) 1852 { 1853 struct trace_event_call *call = trace_probe_event_call(tp); 1854 int len; 1855 char *print_fmt; 1856 1857 /* First: called with 0 length to calculate the needed length */ 1858 len = __set_print_fmt(tp, NULL, 0, ptype); 1859 print_fmt = kmalloc(len + 1, GFP_KERNEL); 1860 if (!print_fmt) 1861 return -ENOMEM; 1862 1863 /* Second: actually write the @print_fmt */ 1864 __set_print_fmt(tp, print_fmt, len + 1, ptype); 1865 call->print_fmt = print_fmt; 1866 1867 return 0; 1868 } 1869 1870 int traceprobe_define_arg_fields(struct trace_event_call *event_call, 1871 size_t offset, struct trace_probe *tp) 1872 { 1873 int ret, i; 1874 1875 /* Set argument names as fields */ 1876 for (i = 0; i < tp->nr_args; i++) { 1877 struct probe_arg *parg = &tp->args[i]; 1878 const char *fmt = parg->type->fmttype; 1879 int size = parg->type->size; 1880 1881 if (parg->fmt) 1882 fmt = parg->fmt; 1883 if (parg->count) 1884 size *= parg->count; 1885 ret = trace_define_field(event_call, fmt, parg->name, 1886 offset + parg->offset, size, 1887 parg->type->is_signed, 1888 FILTER_OTHER); 1889 if (ret) 1890 return ret; 1891 } 1892 return 0; 1893 } 1894 1895 static void trace_probe_event_free(struct trace_probe_event *tpe) 1896 { 1897 kfree(tpe->class.system); 1898 kfree(tpe->call.name); 1899 kfree(tpe->call.print_fmt); 1900 kfree(tpe); 1901 } 1902 1903 int trace_probe_append(struct trace_probe *tp, struct trace_probe *to) 1904 { 1905 if (trace_probe_has_sibling(tp)) 1906 return -EBUSY; 1907 1908 list_del_init(&tp->list); 1909 trace_probe_event_free(tp->event); 1910 1911 tp->event = to->event; 1912 list_add_tail(&tp->list, trace_probe_probe_list(to)); 1913 1914 return 0; 1915 } 1916 1917 void trace_probe_unlink(struct trace_probe *tp) 1918 { 1919 list_del_init(&tp->list); 1920 if (list_empty(trace_probe_probe_list(tp))) 1921 trace_probe_event_free(tp->event); 1922 tp->event = NULL; 1923 } 1924 1925 void trace_probe_cleanup(struct trace_probe *tp) 1926 { 1927 int i; 1928 1929 for (i = 0; i < tp->nr_args; i++) 1930 traceprobe_free_probe_arg(&tp->args[i]); 1931 1932 if (tp->entry_arg) { 1933 kfree(tp->entry_arg->code); 1934 kfree(tp->entry_arg); 1935 tp->entry_arg = NULL; 1936 } 1937 1938 if (tp->event) 1939 trace_probe_unlink(tp); 1940 } 1941 1942 int trace_probe_init(struct trace_probe *tp, const char *event, 1943 const char *group, bool alloc_filter, int nargs) 1944 { 1945 struct trace_event_call *call; 1946 size_t size = sizeof(struct trace_probe_event); 1947 int ret = 0; 1948 1949 if (!event || !group) 1950 return -EINVAL; 1951 1952 if (alloc_filter) 1953 size += sizeof(struct trace_uprobe_filter); 1954 1955 tp->event = kzalloc(size, GFP_KERNEL); 1956 if (!tp->event) 1957 return -ENOMEM; 1958 1959 INIT_LIST_HEAD(&tp->event->files); 1960 INIT_LIST_HEAD(&tp->event->class.fields); 1961 INIT_LIST_HEAD(&tp->event->probes); 1962 INIT_LIST_HEAD(&tp->list); 1963 list_add(&tp->list, &tp->event->probes); 1964 1965 call = trace_probe_event_call(tp); 1966 call->class = &tp->event->class; 1967 call->name = kstrdup(event, GFP_KERNEL); 1968 if (!call->name) { 1969 ret = -ENOMEM; 1970 goto error; 1971 } 1972 1973 tp->event->class.system = kstrdup(group, GFP_KERNEL); 1974 if (!tp->event->class.system) { 1975 ret = -ENOMEM; 1976 goto error; 1977 } 1978 1979 tp->nr_args = nargs; 1980 /* Make sure pointers in args[] are NULL */ 1981 if (nargs) 1982 memset(tp->args, 0, sizeof(tp->args[0]) * nargs); 1983 1984 return 0; 1985 1986 error: 1987 trace_probe_cleanup(tp); 1988 return ret; 1989 } 1990 1991 static struct trace_event_call * 1992 find_trace_event_call(const char *system, const char *event_name) 1993 { 1994 struct trace_event_call *tp_event; 1995 const char *name; 1996 1997 list_for_each_entry(tp_event, &ftrace_events, list) { 1998 if (!tp_event->class->system || 1999 strcmp(system, tp_event->class->system)) 2000 continue; 2001 name = trace_event_name(tp_event); 2002 if (!name || strcmp(event_name, name)) 2003 continue; 2004 return tp_event; 2005 } 2006 2007 return NULL; 2008 } 2009 2010 int trace_probe_register_event_call(struct trace_probe *tp) 2011 { 2012 struct trace_event_call *call = trace_probe_event_call(tp); 2013 int ret; 2014 2015 lockdep_assert_held(&event_mutex); 2016 2017 if (find_trace_event_call(trace_probe_group_name(tp), 2018 trace_probe_name(tp))) 2019 return -EEXIST; 2020 2021 ret = register_trace_event(&call->event); 2022 if (!ret) 2023 return -ENODEV; 2024 2025 ret = trace_add_event_call(call); 2026 if (ret) 2027 unregister_trace_event(&call->event); 2028 2029 return ret; 2030 } 2031 2032 int trace_probe_add_file(struct trace_probe *tp, struct trace_event_file *file) 2033 { 2034 struct event_file_link *link; 2035 2036 link = kmalloc(sizeof(*link), GFP_KERNEL); 2037 if (!link) 2038 return -ENOMEM; 2039 2040 link->file = file; 2041 INIT_LIST_HEAD(&link->list); 2042 list_add_tail_rcu(&link->list, &tp->event->files); 2043 trace_probe_set_flag(tp, TP_FLAG_TRACE); 2044 return 0; 2045 } 2046 2047 struct event_file_link *trace_probe_get_file_link(struct trace_probe *tp, 2048 struct trace_event_file *file) 2049 { 2050 struct event_file_link *link; 2051 2052 trace_probe_for_each_link(link, tp) { 2053 if (link->file == file) 2054 return link; 2055 } 2056 2057 return NULL; 2058 } 2059 2060 int trace_probe_remove_file(struct trace_probe *tp, 2061 struct trace_event_file *file) 2062 { 2063 struct event_file_link *link; 2064 2065 link = trace_probe_get_file_link(tp, file); 2066 if (!link) 2067 return -ENOENT; 2068 2069 list_del_rcu(&link->list); 2070 kvfree_rcu_mightsleep(link); 2071 2072 if (list_empty(&tp->event->files)) 2073 trace_probe_clear_flag(tp, TP_FLAG_TRACE); 2074 2075 return 0; 2076 } 2077 2078 /* 2079 * Return the smallest index of different type argument (start from 1). 2080 * If all argument types and name are same, return 0. 2081 */ 2082 int trace_probe_compare_arg_type(struct trace_probe *a, struct trace_probe *b) 2083 { 2084 int i; 2085 2086 /* In case of more arguments */ 2087 if (a->nr_args < b->nr_args) 2088 return a->nr_args + 1; 2089 if (a->nr_args > b->nr_args) 2090 return b->nr_args + 1; 2091 2092 for (i = 0; i < a->nr_args; i++) { 2093 if ((b->nr_args <= i) || 2094 ((a->args[i].type != b->args[i].type) || 2095 (a->args[i].count != b->args[i].count) || 2096 strcmp(a->args[i].name, b->args[i].name))) 2097 return i + 1; 2098 } 2099 2100 return 0; 2101 } 2102 2103 bool trace_probe_match_command_args(struct trace_probe *tp, 2104 int argc, const char **argv) 2105 { 2106 char buf[MAX_ARGSTR_LEN + 1]; 2107 int i; 2108 2109 if (tp->nr_args < argc) 2110 return false; 2111 2112 for (i = 0; i < argc; i++) { 2113 snprintf(buf, sizeof(buf), "%s=%s", 2114 tp->args[i].name, tp->args[i].comm); 2115 if (strcmp(buf, argv[i])) 2116 return false; 2117 } 2118 return true; 2119 } 2120 2121 int trace_probe_create(const char *raw_command, int (*createfn)(int, const char **)) 2122 { 2123 int argc = 0, ret = 0; 2124 char **argv; 2125 2126 argv = argv_split(GFP_KERNEL, raw_command, &argc); 2127 if (!argv) 2128 return -ENOMEM; 2129 2130 if (argc) 2131 ret = createfn(argc, (const char **)argv); 2132 2133 argv_free(argv); 2134 2135 return ret; 2136 } 2137 2138 int trace_probe_print_args(struct trace_seq *s, struct probe_arg *args, int nr_args, 2139 u8 *data, void *field) 2140 { 2141 void *p; 2142 int i, j; 2143 2144 for (i = 0; i < nr_args; i++) { 2145 struct probe_arg *a = args + i; 2146 2147 trace_seq_printf(s, " %s=", a->name); 2148 if (likely(!a->count)) { 2149 if (!a->type->print(s, data + a->offset, field)) 2150 return -ENOMEM; 2151 continue; 2152 } 2153 trace_seq_putc(s, '{'); 2154 p = data + a->offset; 2155 for (j = 0; j < a->count; j++) { 2156 if (!a->type->print(s, p, field)) 2157 return -ENOMEM; 2158 trace_seq_putc(s, j == a->count - 1 ? '}' : ','); 2159 p += a->type->size; 2160 } 2161 } 2162 return 0; 2163 } 2164