1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 22 /* 23 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. 24 * Copyright (c) 2011, Joyent Inc. All rights reserved. 25 * Copyright (c) 2012 by Delphix. All rights reserved. 26 */ 27 28 /* 29 * DTrace D Language Compiler 30 * 31 * The code in this source file implements the main engine for the D language 32 * compiler. The driver routine for the compiler is dt_compile(), below. The 33 * compiler operates on either stdio FILEs or in-memory strings as its input 34 * and can produce either dtrace_prog_t structures from a D program or a single 35 * dtrace_difo_t structure from a D expression. Multiple entry points are 36 * provided as wrappers around dt_compile() for the various input/output pairs. 37 * The compiler itself is implemented across the following source files: 38 * 39 * dt_lex.l - lex scanner 40 * dt_grammar.y - yacc grammar 41 * dt_parser.c - parse tree creation and semantic checking 42 * dt_decl.c - declaration stack processing 43 * dt_xlator.c - D translator lookup and creation 44 * dt_ident.c - identifier and symbol table routines 45 * dt_pragma.c - #pragma processing and D pragmas 46 * dt_printf.c - D printf() and printa() argument checking and processing 47 * dt_cc.c - compiler driver and dtrace_prog_t construction 48 * dt_cg.c - DIF code generator 49 * dt_as.c - DIF assembler 50 * dt_dof.c - dtrace_prog_t -> DOF conversion 51 * 52 * Several other source files provide collections of utility routines used by 53 * these major files. The compiler itself is implemented in multiple passes: 54 * 55 * (1) The input program is scanned and parsed by dt_lex.l and dt_grammar.y 56 * and parse tree nodes are constructed using the routines in dt_parser.c. 57 * This node construction pass is described further in dt_parser.c. 58 * 59 * (2) The parse tree is "cooked" by assigning each clause a context (see the 60 * routine dt_setcontext(), below) based on its probe description and then 61 * recursively descending the tree performing semantic checking. The cook 62 * routines are also implemented in dt_parser.c and described there. 63 * 64 * (3) For actions that are DIF expression statements, the DIF code generator 65 * and assembler are invoked to create a finished DIFO for the statement. 66 * 67 * (4) The dtrace_prog_t data structures for the program clauses and actions 68 * are built, containing pointers to any DIFOs created in step (3). 69 * 70 * (5) The caller invokes a routine in dt_dof.c to convert the finished program 71 * into DOF format for use in anonymous tracing or enabling in the kernel. 72 * 73 * In the implementation, steps 2-4 are intertwined in that they are performed 74 * in order for each clause as part of a loop that executes over the clauses. 75 * 76 * The D compiler currently implements nearly no optimization. The compiler 77 * implements integer constant folding as part of pass (1), and a set of very 78 * simple peephole optimizations as part of pass (3). As with any C compiler, 79 * a large number of optimizations are possible on both the intermediate data 80 * structures and the generated DIF code. These possibilities should be 81 * investigated in the context of whether they will have any substantive effect 82 * on the overall DTrace probe effect before they are undertaken. 83 */ 84 85 #include <sys/types.h> 86 #include <sys/wait.h> 87 #include <sys/sysmacros.h> 88 89 #include <assert.h> 90 #include <string.h> 91 #include <strings.h> 92 #include <signal.h> 93 #include <unistd.h> 94 #include <stdlib.h> 95 #include <stdio.h> 96 #include <errno.h> 97 #include <ucontext.h> 98 #include <limits.h> 99 #include <ctype.h> 100 #include <dirent.h> 101 #include <dt_module.h> 102 #include <dt_program.h> 103 #include <dt_provider.h> 104 #include <dt_printf.h> 105 #include <dt_pid.h> 106 #include <dt_grammar.h> 107 #include <dt_ident.h> 108 #include <dt_string.h> 109 #include <dt_impl.h> 110 111 static const dtrace_diftype_t dt_void_rtype = { 112 DIF_TYPE_CTF, CTF_K_INTEGER, 0, 0, 0 113 }; 114 115 static const dtrace_diftype_t dt_int_rtype = { 116 DIF_TYPE_CTF, CTF_K_INTEGER, 0, 0, sizeof (uint64_t) 117 }; 118 119 static void *dt_compile(dtrace_hdl_t *, int, dtrace_probespec_t, void *, 120 uint_t, int, char *const[], FILE *, const char *); 121 122 123 /*ARGSUSED*/ 124 static int 125 dt_idreset(dt_idhash_t *dhp, dt_ident_t *idp, void *ignored) 126 { 127 idp->di_flags &= ~(DT_IDFLG_REF | DT_IDFLG_MOD | 128 DT_IDFLG_DIFR | DT_IDFLG_DIFW); 129 return (0); 130 } 131 132 /*ARGSUSED*/ 133 static int 134 dt_idpragma(dt_idhash_t *dhp, dt_ident_t *idp, void *ignored) 135 { 136 yylineno = idp->di_lineno; 137 xyerror(D_PRAGMA_UNUSED, "unused #pragma %s\n", (char *)idp->di_iarg); 138 return (0); 139 } 140 141 static dtrace_stmtdesc_t * 142 dt_stmt_create(dtrace_hdl_t *dtp, dtrace_ecbdesc_t *edp, 143 dtrace_attribute_t descattr, dtrace_attribute_t stmtattr) 144 { 145 dtrace_stmtdesc_t *sdp = dtrace_stmt_create(dtp, edp); 146 147 if (sdp == NULL) 148 longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 149 150 assert(yypcb->pcb_stmt == NULL); 151 yypcb->pcb_stmt = sdp; 152 153 sdp->dtsd_descattr = descattr; 154 sdp->dtsd_stmtattr = stmtattr; 155 156 return (sdp); 157 } 158 159 static dtrace_actdesc_t * 160 dt_stmt_action(dtrace_hdl_t *dtp, dtrace_stmtdesc_t *sdp) 161 { 162 dtrace_actdesc_t *new; 163 164 if ((new = dtrace_stmt_action(dtp, sdp)) == NULL) 165 longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 166 167 return (new); 168 } 169 170 /* 171 * Utility function to determine if a given action description is destructive. 172 * The dtdo_destructive bit is set for us by the DIF assembler (see dt_as.c). 173 */ 174 static int 175 dt_action_destructive(const dtrace_actdesc_t *ap) 176 { 177 return (DTRACEACT_ISDESTRUCTIVE(ap->dtad_kind) || (ap->dtad_kind == 178 DTRACEACT_DIFEXPR && ap->dtad_difo->dtdo_destructive)); 179 } 180 181 static void 182 dt_stmt_append(dtrace_stmtdesc_t *sdp, const dt_node_t *dnp) 183 { 184 dtrace_ecbdesc_t *edp = sdp->dtsd_ecbdesc; 185 dtrace_actdesc_t *ap, *tap; 186 int commit = 0; 187 int speculate = 0; 188 int datarec = 0; 189 190 /* 191 * Make sure that the new statement jibes with the rest of the ECB. 192 */ 193 for (ap = edp->dted_action; ap != NULL; ap = ap->dtad_next) { 194 if (ap->dtad_kind == DTRACEACT_COMMIT) { 195 if (commit) { 196 dnerror(dnp, D_COMM_COMM, "commit( ) may " 197 "not follow commit( )\n"); 198 } 199 200 if (datarec) { 201 dnerror(dnp, D_COMM_DREC, "commit( ) may " 202 "not follow data-recording action(s)\n"); 203 } 204 205 for (tap = ap; tap != NULL; tap = tap->dtad_next) { 206 if (!DTRACEACT_ISAGG(tap->dtad_kind)) 207 continue; 208 209 dnerror(dnp, D_AGG_COMM, "aggregating actions " 210 "may not follow commit( )\n"); 211 } 212 213 commit = 1; 214 continue; 215 } 216 217 if (ap->dtad_kind == DTRACEACT_SPECULATE) { 218 if (speculate) { 219 dnerror(dnp, D_SPEC_SPEC, "speculate( ) may " 220 "not follow speculate( )\n"); 221 } 222 223 if (commit) { 224 dnerror(dnp, D_SPEC_COMM, "speculate( ) may " 225 "not follow commit( )\n"); 226 } 227 228 if (datarec) { 229 dnerror(dnp, D_SPEC_DREC, "speculate( ) may " 230 "not follow data-recording action(s)\n"); 231 } 232 233 speculate = 1; 234 continue; 235 } 236 237 if (DTRACEACT_ISAGG(ap->dtad_kind)) { 238 if (speculate) { 239 dnerror(dnp, D_AGG_SPEC, "aggregating actions " 240 "may not follow speculate( )\n"); 241 } 242 243 datarec = 1; 244 continue; 245 } 246 247 if (speculate) { 248 if (dt_action_destructive(ap)) { 249 dnerror(dnp, D_ACT_SPEC, "destructive actions " 250 "may not follow speculate( )\n"); 251 } 252 253 if (ap->dtad_kind == DTRACEACT_EXIT) { 254 dnerror(dnp, D_EXIT_SPEC, "exit( ) may not " 255 "follow speculate( )\n"); 256 } 257 } 258 259 /* 260 * Exclude all non data-recording actions. 261 */ 262 if (dt_action_destructive(ap) || 263 ap->dtad_kind == DTRACEACT_DISCARD) 264 continue; 265 266 if (ap->dtad_kind == DTRACEACT_DIFEXPR && 267 ap->dtad_difo->dtdo_rtype.dtdt_kind == DIF_TYPE_CTF && 268 ap->dtad_difo->dtdo_rtype.dtdt_size == 0) 269 continue; 270 271 if (commit) { 272 dnerror(dnp, D_DREC_COMM, "data-recording actions " 273 "may not follow commit( )\n"); 274 } 275 276 if (!speculate) 277 datarec = 1; 278 } 279 280 if (dtrace_stmt_add(yypcb->pcb_hdl, yypcb->pcb_prog, sdp) != 0) 281 longjmp(yypcb->pcb_jmpbuf, dtrace_errno(yypcb->pcb_hdl)); 282 283 if (yypcb->pcb_stmt == sdp) 284 yypcb->pcb_stmt = NULL; 285 } 286 287 /* 288 * For the first element of an aggregation tuple or for printa(), we create a 289 * simple DIF program that simply returns the immediate value that is the ID 290 * of the aggregation itself. This could be optimized in the future by 291 * creating a new in-kernel dtad_kind that just returns an integer. 292 */ 293 static void 294 dt_action_difconst(dtrace_actdesc_t *ap, uint_t id, dtrace_actkind_t kind) 295 { 296 dtrace_hdl_t *dtp = yypcb->pcb_hdl; 297 dtrace_difo_t *dp = dt_zalloc(dtp, sizeof (dtrace_difo_t)); 298 299 if (dp == NULL) 300 longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 301 302 dp->dtdo_buf = dt_alloc(dtp, sizeof (dif_instr_t) * 2); 303 dp->dtdo_inttab = dt_alloc(dtp, sizeof (uint64_t)); 304 305 if (dp->dtdo_buf == NULL || dp->dtdo_inttab == NULL) { 306 dt_difo_free(dtp, dp); 307 longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 308 } 309 310 dp->dtdo_buf[0] = DIF_INSTR_SETX(0, 1); /* setx DIF_INTEGER[0], %r1 */ 311 dp->dtdo_buf[1] = DIF_INSTR_RET(1); /* ret %r1 */ 312 dp->dtdo_len = 2; 313 dp->dtdo_inttab[0] = id; 314 dp->dtdo_intlen = 1; 315 dp->dtdo_rtype = dt_int_rtype; 316 317 ap->dtad_difo = dp; 318 ap->dtad_kind = kind; 319 } 320 321 static void 322 dt_action_clear(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 323 { 324 dt_ident_t *aid; 325 dtrace_actdesc_t *ap; 326 dt_node_t *anp; 327 328 char n[DT_TYPE_NAMELEN]; 329 int argc = 0; 330 331 for (anp = dnp->dn_args; anp != NULL; anp = anp->dn_list) 332 argc++; /* count up arguments for error messages below */ 333 334 if (argc != 1) { 335 dnerror(dnp, D_CLEAR_PROTO, 336 "%s( ) prototype mismatch: %d args passed, 1 expected\n", 337 dnp->dn_ident->di_name, argc); 338 } 339 340 anp = dnp->dn_args; 341 assert(anp != NULL); 342 343 if (anp->dn_kind != DT_NODE_AGG) { 344 dnerror(dnp, D_CLEAR_AGGARG, 345 "%s( ) argument #1 is incompatible with prototype:\n" 346 "\tprototype: aggregation\n\t argument: %s\n", 347 dnp->dn_ident->di_name, 348 dt_node_type_name(anp, n, sizeof (n))); 349 } 350 351 aid = anp->dn_ident; 352 353 if (aid->di_gen == dtp->dt_gen && !(aid->di_flags & DT_IDFLG_MOD)) { 354 dnerror(dnp, D_CLEAR_AGGBAD, 355 "undefined aggregation: @%s\n", aid->di_name); 356 } 357 358 ap = dt_stmt_action(dtp, sdp); 359 dt_action_difconst(ap, anp->dn_ident->di_id, DTRACEACT_LIBACT); 360 ap->dtad_arg = DT_ACT_CLEAR; 361 } 362 363 static void 364 dt_action_normalize(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 365 { 366 dt_ident_t *aid; 367 dtrace_actdesc_t *ap; 368 dt_node_t *anp, *normal; 369 int denormal = (strcmp(dnp->dn_ident->di_name, "denormalize") == 0); 370 371 char n[DT_TYPE_NAMELEN]; 372 int argc = 0; 373 374 for (anp = dnp->dn_args; anp != NULL; anp = anp->dn_list) 375 argc++; /* count up arguments for error messages below */ 376 377 if ((denormal && argc != 1) || (!denormal && argc != 2)) { 378 dnerror(dnp, D_NORMALIZE_PROTO, 379 "%s( ) prototype mismatch: %d args passed, %d expected\n", 380 dnp->dn_ident->di_name, argc, denormal ? 1 : 2); 381 } 382 383 anp = dnp->dn_args; 384 assert(anp != NULL); 385 386 if (anp->dn_kind != DT_NODE_AGG) { 387 dnerror(dnp, D_NORMALIZE_AGGARG, 388 "%s( ) argument #1 is incompatible with prototype:\n" 389 "\tprototype: aggregation\n\t argument: %s\n", 390 dnp->dn_ident->di_name, 391 dt_node_type_name(anp, n, sizeof (n))); 392 } 393 394 if ((normal = anp->dn_list) != NULL && !dt_node_is_scalar(normal)) { 395 dnerror(dnp, D_NORMALIZE_SCALAR, 396 "%s( ) argument #2 must be of scalar type\n", 397 dnp->dn_ident->di_name); 398 } 399 400 aid = anp->dn_ident; 401 402 if (aid->di_gen == dtp->dt_gen && !(aid->di_flags & DT_IDFLG_MOD)) { 403 dnerror(dnp, D_NORMALIZE_AGGBAD, 404 "undefined aggregation: @%s\n", aid->di_name); 405 } 406 407 ap = dt_stmt_action(dtp, sdp); 408 dt_action_difconst(ap, anp->dn_ident->di_id, DTRACEACT_LIBACT); 409 410 if (denormal) { 411 ap->dtad_arg = DT_ACT_DENORMALIZE; 412 return; 413 } 414 415 ap->dtad_arg = DT_ACT_NORMALIZE; 416 417 assert(normal != NULL); 418 ap = dt_stmt_action(dtp, sdp); 419 dt_cg(yypcb, normal); 420 421 ap->dtad_difo = dt_as(yypcb); 422 ap->dtad_kind = DTRACEACT_LIBACT; 423 ap->dtad_arg = DT_ACT_NORMALIZE; 424 } 425 426 static void 427 dt_action_trunc(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 428 { 429 dt_ident_t *aid; 430 dtrace_actdesc_t *ap; 431 dt_node_t *anp, *trunc; 432 433 char n[DT_TYPE_NAMELEN]; 434 int argc = 0; 435 436 for (anp = dnp->dn_args; anp != NULL; anp = anp->dn_list) 437 argc++; /* count up arguments for error messages below */ 438 439 if (argc > 2 || argc < 1) { 440 dnerror(dnp, D_TRUNC_PROTO, 441 "%s( ) prototype mismatch: %d args passed, %s expected\n", 442 dnp->dn_ident->di_name, argc, 443 argc < 1 ? "at least 1" : "no more than 2"); 444 } 445 446 anp = dnp->dn_args; 447 assert(anp != NULL); 448 trunc = anp->dn_list; 449 450 if (anp->dn_kind != DT_NODE_AGG) { 451 dnerror(dnp, D_TRUNC_AGGARG, 452 "%s( ) argument #1 is incompatible with prototype:\n" 453 "\tprototype: aggregation\n\t argument: %s\n", 454 dnp->dn_ident->di_name, 455 dt_node_type_name(anp, n, sizeof (n))); 456 } 457 458 if (argc == 2) { 459 assert(trunc != NULL); 460 if (!dt_node_is_scalar(trunc)) { 461 dnerror(dnp, D_TRUNC_SCALAR, 462 "%s( ) argument #2 must be of scalar type\n", 463 dnp->dn_ident->di_name); 464 } 465 } 466 467 aid = anp->dn_ident; 468 469 if (aid->di_gen == dtp->dt_gen && !(aid->di_flags & DT_IDFLG_MOD)) { 470 dnerror(dnp, D_TRUNC_AGGBAD, 471 "undefined aggregation: @%s\n", aid->di_name); 472 } 473 474 ap = dt_stmt_action(dtp, sdp); 475 dt_action_difconst(ap, anp->dn_ident->di_id, DTRACEACT_LIBACT); 476 ap->dtad_arg = DT_ACT_TRUNC; 477 478 ap = dt_stmt_action(dtp, sdp); 479 480 if (argc == 1) { 481 dt_action_difconst(ap, 0, DTRACEACT_LIBACT); 482 } else { 483 assert(trunc != NULL); 484 dt_cg(yypcb, trunc); 485 ap->dtad_difo = dt_as(yypcb); 486 ap->dtad_kind = DTRACEACT_LIBACT; 487 } 488 489 ap->dtad_arg = DT_ACT_TRUNC; 490 } 491 492 static void 493 dt_action_printa(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 494 { 495 dt_ident_t *aid, *fid; 496 dtrace_actdesc_t *ap; 497 const char *format; 498 dt_node_t *anp, *proto = NULL; 499 500 char n[DT_TYPE_NAMELEN]; 501 int argc = 0, argr = 0; 502 503 for (anp = dnp->dn_args; anp != NULL; anp = anp->dn_list) 504 argc++; /* count up arguments for error messages below */ 505 506 switch (dnp->dn_args->dn_kind) { 507 case DT_NODE_STRING: 508 format = dnp->dn_args->dn_string; 509 anp = dnp->dn_args->dn_list; 510 argr = 2; 511 break; 512 case DT_NODE_AGG: 513 format = NULL; 514 anp = dnp->dn_args; 515 argr = 1; 516 break; 517 default: 518 format = NULL; 519 anp = dnp->dn_args; 520 argr = 1; 521 } 522 523 if (argc < argr) { 524 dnerror(dnp, D_PRINTA_PROTO, 525 "%s( ) prototype mismatch: %d args passed, %d expected\n", 526 dnp->dn_ident->di_name, argc, argr); 527 } 528 529 assert(anp != NULL); 530 531 while (anp != NULL) { 532 if (anp->dn_kind != DT_NODE_AGG) { 533 dnerror(dnp, D_PRINTA_AGGARG, 534 "%s( ) argument #%d is incompatible with " 535 "prototype:\n\tprototype: aggregation\n" 536 "\t argument: %s\n", dnp->dn_ident->di_name, argr, 537 dt_node_type_name(anp, n, sizeof (n))); 538 } 539 540 aid = anp->dn_ident; 541 fid = aid->di_iarg; 542 543 if (aid->di_gen == dtp->dt_gen && 544 !(aid->di_flags & DT_IDFLG_MOD)) { 545 dnerror(dnp, D_PRINTA_AGGBAD, 546 "undefined aggregation: @%s\n", aid->di_name); 547 } 548 549 /* 550 * If we have multiple aggregations, we must be sure that 551 * their key signatures match. 552 */ 553 if (proto != NULL) { 554 dt_printa_validate(proto, anp); 555 } else { 556 proto = anp; 557 } 558 559 if (format != NULL) { 560 yylineno = dnp->dn_line; 561 562 sdp->dtsd_fmtdata = 563 dt_printf_create(yypcb->pcb_hdl, format); 564 dt_printf_validate(sdp->dtsd_fmtdata, 565 DT_PRINTF_AGGREGATION, dnp->dn_ident, 1, 566 fid->di_id, ((dt_idsig_t *)aid->di_data)->dis_args); 567 format = NULL; 568 } 569 570 ap = dt_stmt_action(dtp, sdp); 571 dt_action_difconst(ap, anp->dn_ident->di_id, DTRACEACT_PRINTA); 572 573 anp = anp->dn_list; 574 argr++; 575 } 576 } 577 578 static void 579 dt_action_printflike(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp, 580 dtrace_actkind_t kind) 581 { 582 dt_node_t *anp, *arg1; 583 dtrace_actdesc_t *ap = NULL; 584 char n[DT_TYPE_NAMELEN], *str; 585 586 assert(DTRACEACT_ISPRINTFLIKE(kind)); 587 588 if (dnp->dn_args->dn_kind != DT_NODE_STRING) { 589 dnerror(dnp, D_PRINTF_ARG_FMT, 590 "%s( ) argument #1 is incompatible with prototype:\n" 591 "\tprototype: string constant\n\t argument: %s\n", 592 dnp->dn_ident->di_name, 593 dt_node_type_name(dnp->dn_args, n, sizeof (n))); 594 } 595 596 arg1 = dnp->dn_args->dn_list; 597 yylineno = dnp->dn_line; 598 str = dnp->dn_args->dn_string; 599 600 601 /* 602 * If this is an freopen(), we use an empty string to denote that 603 * stdout should be restored. For other printf()-like actions, an 604 * empty format string is illegal: an empty format string would 605 * result in malformed DOF, and the compiler thus flags an empty 606 * format string as a compile-time error. To avoid propagating the 607 * freopen() special case throughout the system, we simply transpose 608 * an empty string into a sentinel string (DT_FREOPEN_RESTORE) that 609 * denotes that stdout should be restored. 610 */ 611 if (kind == DTRACEACT_FREOPEN) { 612 if (strcmp(str, DT_FREOPEN_RESTORE) == 0) { 613 /* 614 * Our sentinel is always an invalid argument to 615 * freopen(), but if it's been manually specified, we 616 * must fail now instead of when the freopen() is 617 * actually evaluated. 618 */ 619 dnerror(dnp, D_FREOPEN_INVALID, 620 "%s( ) argument #1 cannot be \"%s\"\n", 621 dnp->dn_ident->di_name, DT_FREOPEN_RESTORE); 622 } 623 624 if (str[0] == '\0') 625 str = DT_FREOPEN_RESTORE; 626 } 627 628 sdp->dtsd_fmtdata = dt_printf_create(dtp, str); 629 630 dt_printf_validate(sdp->dtsd_fmtdata, DT_PRINTF_EXACTLEN, 631 dnp->dn_ident, 1, DTRACEACT_AGGREGATION, arg1); 632 633 if (arg1 == NULL) { 634 dif_instr_t *dbuf; 635 dtrace_difo_t *dp; 636 637 if ((dbuf = dt_alloc(dtp, sizeof (dif_instr_t))) == NULL || 638 (dp = dt_zalloc(dtp, sizeof (dtrace_difo_t))) == NULL) { 639 dt_free(dtp, dbuf); 640 longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 641 } 642 643 dbuf[0] = DIF_INSTR_RET(DIF_REG_R0); /* ret %r0 */ 644 645 dp->dtdo_buf = dbuf; 646 dp->dtdo_len = 1; 647 dp->dtdo_rtype = dt_int_rtype; 648 649 ap = dt_stmt_action(dtp, sdp); 650 ap->dtad_difo = dp; 651 ap->dtad_kind = kind; 652 return; 653 } 654 655 for (anp = arg1; anp != NULL; anp = anp->dn_list) { 656 ap = dt_stmt_action(dtp, sdp); 657 dt_cg(yypcb, anp); 658 ap->dtad_difo = dt_as(yypcb); 659 ap->dtad_kind = kind; 660 } 661 } 662 663 static void 664 dt_action_trace(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 665 { 666 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 667 boolean_t istrace = (dnp->dn_ident->di_id == DT_ACT_TRACE); 668 const char *act = istrace ? "trace" : "print"; 669 670 if (dt_node_is_void(dnp->dn_args)) { 671 dnerror(dnp->dn_args, istrace ? D_TRACE_VOID : D_PRINT_VOID, 672 "%s( ) may not be applied to a void expression\n", act); 673 } 674 675 if (dt_node_resolve(dnp->dn_args, DT_IDENT_XLPTR) != NULL) { 676 dnerror(dnp->dn_args, istrace ? D_TRACE_DYN : D_PRINT_DYN, 677 "%s( ) may not be applied to a translated pointer\n", act); 678 } 679 680 dt_cg(yypcb, dnp->dn_args); 681 682 /* 683 * The print() action behaves identically to trace(), except that it 684 * stores the CTF type of the argument (if present) within the DOF for 685 * the DIFEXPR action. To do this, we set the 'dtsd_strdata' to point 686 * to the fully-qualified CTF type ID for the result of the DIF 687 * action. We use the ID instead of the name to handles complex types 688 * like arrays and function pointers that can't be resolved by 689 * ctf_type_lookup(). This is later processed by dtrace_dof_create() 690 * and turned into a reference into the string table so that we can 691 * get the type information when we process the data after the fact. 692 */ 693 if (dnp->dn_ident->di_id == DT_ACT_PRINT) { 694 dt_node_t *dret; 695 size_t n; 696 dt_module_t *dmp; 697 698 dret = yypcb->pcb_dret; 699 dmp = dt_module_lookup_by_ctf(dtp, dret->dn_ctfp); 700 701 n = snprintf(NULL, 0, "%s`%ld", dmp->dm_name, dret->dn_type) + 1; 702 sdp->dtsd_strdata = dt_alloc(dtp, n); 703 if (sdp->dtsd_strdata == NULL) 704 longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 705 (void) snprintf(sdp->dtsd_strdata, n, "%s`%ld", dmp->dm_name, 706 dret->dn_type); 707 } 708 709 ap->dtad_difo = dt_as(yypcb); 710 ap->dtad_kind = DTRACEACT_DIFEXPR; 711 } 712 713 static void 714 dt_action_tracemem(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 715 { 716 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 717 718 dt_node_t *addr = dnp->dn_args; 719 dt_node_t *max = dnp->dn_args->dn_list; 720 dt_node_t *size; 721 722 char n[DT_TYPE_NAMELEN]; 723 724 if (dt_node_is_integer(addr) == 0 && dt_node_is_pointer(addr) == 0) { 725 dnerror(addr, D_TRACEMEM_ADDR, 726 "tracemem( ) argument #1 is incompatible with " 727 "prototype:\n\tprototype: pointer or integer\n" 728 "\t argument: %s\n", 729 dt_node_type_name(addr, n, sizeof (n))); 730 } 731 732 if (dt_node_is_posconst(max) == 0) { 733 dnerror(max, D_TRACEMEM_SIZE, "tracemem( ) argument #2 must " 734 "be a non-zero positive integral constant expression\n"); 735 } 736 737 if ((size = max->dn_list) != NULL) { 738 if (size->dn_list != NULL) { 739 dnerror(size, D_TRACEMEM_ARGS, "tracemem ( ) prototype " 740 "mismatch: expected at most 3 args\n"); 741 } 742 743 if (!dt_node_is_scalar(size)) { 744 dnerror(size, D_TRACEMEM_DYNSIZE, "tracemem ( ) " 745 "dynamic size (argument #3) must be of " 746 "scalar type\n"); 747 } 748 749 dt_cg(yypcb, size); 750 ap->dtad_difo = dt_as(yypcb); 751 ap->dtad_difo->dtdo_rtype = dt_int_rtype; 752 ap->dtad_kind = DTRACEACT_TRACEMEM_DYNSIZE; 753 754 ap = dt_stmt_action(dtp, sdp); 755 } 756 757 dt_cg(yypcb, addr); 758 ap->dtad_difo = dt_as(yypcb); 759 ap->dtad_kind = DTRACEACT_TRACEMEM; 760 761 ap->dtad_difo->dtdo_rtype.dtdt_flags |= DIF_TF_BYREF; 762 ap->dtad_difo->dtdo_rtype.dtdt_size = max->dn_value; 763 } 764 765 static void 766 dt_action_stack_args(dtrace_hdl_t *dtp, dtrace_actdesc_t *ap, dt_node_t *arg0) 767 { 768 ap->dtad_kind = DTRACEACT_STACK; 769 770 if (dtp->dt_options[DTRACEOPT_STACKFRAMES] != DTRACEOPT_UNSET) { 771 ap->dtad_arg = dtp->dt_options[DTRACEOPT_STACKFRAMES]; 772 } else { 773 ap->dtad_arg = 0; 774 } 775 776 if (arg0 != NULL) { 777 if (arg0->dn_list != NULL) { 778 dnerror(arg0, D_STACK_PROTO, "stack( ) prototype " 779 "mismatch: too many arguments\n"); 780 } 781 782 if (dt_node_is_posconst(arg0) == 0) { 783 dnerror(arg0, D_STACK_SIZE, "stack( ) size must be a " 784 "non-zero positive integral constant expression\n"); 785 } 786 787 ap->dtad_arg = arg0->dn_value; 788 } 789 } 790 791 static void 792 dt_action_stack(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 793 { 794 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 795 dt_action_stack_args(dtp, ap, dnp->dn_args); 796 } 797 798 static void 799 dt_action_ustack_args(dtrace_hdl_t *dtp, dtrace_actdesc_t *ap, dt_node_t *dnp) 800 { 801 uint32_t nframes = 0; 802 uint32_t strsize = 0; /* default string table size */ 803 dt_node_t *arg0 = dnp->dn_args; 804 dt_node_t *arg1 = arg0 != NULL ? arg0->dn_list : NULL; 805 806 assert(dnp->dn_ident->di_id == DT_ACT_JSTACK || 807 dnp->dn_ident->di_id == DT_ACT_USTACK); 808 809 if (dnp->dn_ident->di_id == DT_ACT_JSTACK) { 810 if (dtp->dt_options[DTRACEOPT_JSTACKFRAMES] != DTRACEOPT_UNSET) 811 nframes = dtp->dt_options[DTRACEOPT_JSTACKFRAMES]; 812 813 if (dtp->dt_options[DTRACEOPT_JSTACKSTRSIZE] != DTRACEOPT_UNSET) 814 strsize = dtp->dt_options[DTRACEOPT_JSTACKSTRSIZE]; 815 816 ap->dtad_kind = DTRACEACT_JSTACK; 817 } else { 818 assert(dnp->dn_ident->di_id == DT_ACT_USTACK); 819 820 if (dtp->dt_options[DTRACEOPT_USTACKFRAMES] != DTRACEOPT_UNSET) 821 nframes = dtp->dt_options[DTRACEOPT_USTACKFRAMES]; 822 823 ap->dtad_kind = DTRACEACT_USTACK; 824 } 825 826 if (arg0 != NULL) { 827 if (!dt_node_is_posconst(arg0)) { 828 dnerror(arg0, D_USTACK_FRAMES, "ustack( ) argument #1 " 829 "must be a non-zero positive integer constant\n"); 830 } 831 nframes = (uint32_t)arg0->dn_value; 832 } 833 834 if (arg1 != NULL) { 835 if (arg1->dn_kind != DT_NODE_INT || 836 ((arg1->dn_flags & DT_NF_SIGNED) && 837 (int64_t)arg1->dn_value < 0)) { 838 dnerror(arg1, D_USTACK_STRSIZE, "ustack( ) argument #2 " 839 "must be a positive integer constant\n"); 840 } 841 842 if (arg1->dn_list != NULL) { 843 dnerror(arg1, D_USTACK_PROTO, "ustack( ) prototype " 844 "mismatch: too many arguments\n"); 845 } 846 847 strsize = (uint32_t)arg1->dn_value; 848 } 849 850 ap->dtad_arg = DTRACE_USTACK_ARG(nframes, strsize); 851 } 852 853 static void 854 dt_action_ustack(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 855 { 856 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 857 dt_action_ustack_args(dtp, ap, dnp); 858 } 859 860 static void 861 dt_action_setopt(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 862 { 863 dtrace_actdesc_t *ap; 864 dt_node_t *arg0, *arg1; 865 866 /* 867 * The prototype guarantees that we are called with either one or 868 * two arguments, and that any arguments that are present are strings. 869 */ 870 arg0 = dnp->dn_args; 871 arg1 = arg0->dn_list; 872 873 ap = dt_stmt_action(dtp, sdp); 874 dt_cg(yypcb, arg0); 875 ap->dtad_difo = dt_as(yypcb); 876 ap->dtad_kind = DTRACEACT_LIBACT; 877 ap->dtad_arg = DT_ACT_SETOPT; 878 879 ap = dt_stmt_action(dtp, sdp); 880 881 if (arg1 == NULL) { 882 dt_action_difconst(ap, 0, DTRACEACT_LIBACT); 883 } else { 884 dt_cg(yypcb, arg1); 885 ap->dtad_difo = dt_as(yypcb); 886 ap->dtad_kind = DTRACEACT_LIBACT; 887 } 888 889 ap->dtad_arg = DT_ACT_SETOPT; 890 } 891 892 /*ARGSUSED*/ 893 static void 894 dt_action_symmod_args(dtrace_hdl_t *dtp, dtrace_actdesc_t *ap, 895 dt_node_t *dnp, dtrace_actkind_t kind) 896 { 897 assert(kind == DTRACEACT_SYM || kind == DTRACEACT_MOD || 898 kind == DTRACEACT_USYM || kind == DTRACEACT_UMOD || 899 kind == DTRACEACT_UADDR); 900 901 dt_cg(yypcb, dnp); 902 ap->dtad_difo = dt_as(yypcb); 903 ap->dtad_kind = kind; 904 ap->dtad_difo->dtdo_rtype.dtdt_size = sizeof (uint64_t); 905 } 906 907 static void 908 dt_action_symmod(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp, 909 dtrace_actkind_t kind) 910 { 911 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 912 dt_action_symmod_args(dtp, ap, dnp->dn_args, kind); 913 } 914 915 /*ARGSUSED*/ 916 static void 917 dt_action_ftruncate(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 918 { 919 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 920 921 /* 922 * Library actions need a DIFO that serves as an argument. As 923 * ftruncate() doesn't take an argument, we generate the constant 0 924 * in a DIFO; this constant will be ignored when the ftruncate() is 925 * processed. 926 */ 927 dt_action_difconst(ap, 0, DTRACEACT_LIBACT); 928 ap->dtad_arg = DT_ACT_FTRUNCATE; 929 } 930 931 /*ARGSUSED*/ 932 static void 933 dt_action_stop(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 934 { 935 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 936 937 ap->dtad_kind = DTRACEACT_STOP; 938 ap->dtad_arg = 0; 939 } 940 941 /*ARGSUSED*/ 942 static void 943 dt_action_breakpoint(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 944 { 945 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 946 947 ap->dtad_kind = DTRACEACT_BREAKPOINT; 948 ap->dtad_arg = 0; 949 } 950 951 /*ARGSUSED*/ 952 static void 953 dt_action_panic(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 954 { 955 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 956 957 ap->dtad_kind = DTRACEACT_PANIC; 958 ap->dtad_arg = 0; 959 } 960 961 static void 962 dt_action_chill(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 963 { 964 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 965 966 dt_cg(yypcb, dnp->dn_args); 967 ap->dtad_difo = dt_as(yypcb); 968 ap->dtad_kind = DTRACEACT_CHILL; 969 } 970 971 static void 972 dt_action_raise(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 973 { 974 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 975 976 dt_cg(yypcb, dnp->dn_args); 977 ap->dtad_difo = dt_as(yypcb); 978 ap->dtad_kind = DTRACEACT_RAISE; 979 } 980 981 static void 982 dt_action_exit(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 983 { 984 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 985 986 dt_cg(yypcb, dnp->dn_args); 987 ap->dtad_difo = dt_as(yypcb); 988 ap->dtad_kind = DTRACEACT_EXIT; 989 ap->dtad_difo->dtdo_rtype.dtdt_size = sizeof (int); 990 } 991 992 static void 993 dt_action_speculate(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 994 { 995 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 996 997 dt_cg(yypcb, dnp->dn_args); 998 ap->dtad_difo = dt_as(yypcb); 999 ap->dtad_kind = DTRACEACT_SPECULATE; 1000 } 1001 1002 static void 1003 dt_action_printm(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 1004 { 1005 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 1006 1007 dt_node_t *size = dnp->dn_args; 1008 dt_node_t *addr = dnp->dn_args->dn_list; 1009 1010 char n[DT_TYPE_NAMELEN]; 1011 1012 if (dt_node_is_posconst(size) == 0) { 1013 dnerror(size, D_PRINTM_SIZE, "printm( ) argument #1 must " 1014 "be a non-zero positive integral constant expression\n"); 1015 } 1016 1017 if (dt_node_is_pointer(addr) == 0) { 1018 dnerror(addr, D_PRINTM_ADDR, 1019 "printm( ) argument #2 is incompatible with " 1020 "prototype:\n\tprototype: pointer\n" 1021 "\t argument: %s\n", 1022 dt_node_type_name(addr, n, sizeof (n))); 1023 } 1024 1025 dt_cg(yypcb, addr); 1026 ap->dtad_difo = dt_as(yypcb); 1027 ap->dtad_kind = DTRACEACT_PRINTM; 1028 1029 ap->dtad_difo->dtdo_rtype.dtdt_flags |= DIF_TF_BYREF; 1030 ap->dtad_difo->dtdo_rtype.dtdt_size = size->dn_value + sizeof(uintptr_t); 1031 } 1032 1033 static void 1034 dt_action_printt(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 1035 { 1036 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 1037 1038 dt_node_t *size = dnp->dn_args; 1039 dt_node_t *addr = dnp->dn_args->dn_list; 1040 1041 char n[DT_TYPE_NAMELEN]; 1042 1043 if (dt_node_is_posconst(size) == 0) { 1044 dnerror(size, D_PRINTT_SIZE, "printt( ) argument #1 must " 1045 "be a non-zero positive integral constant expression\n"); 1046 } 1047 1048 if (addr == NULL || addr->dn_kind != DT_NODE_FUNC || 1049 addr->dn_ident != dt_idhash_lookup(dtp->dt_globals, "typeref")) { 1050 dnerror(addr, D_PRINTT_ADDR, 1051 "printt( ) argument #2 is incompatible with " 1052 "prototype:\n\tprototype: typeref()\n" 1053 "\t argument: %s\n", 1054 dt_node_type_name(addr, n, sizeof (n))); 1055 } 1056 1057 dt_cg(yypcb, addr); 1058 ap->dtad_difo = dt_as(yypcb); 1059 ap->dtad_kind = DTRACEACT_PRINTT; 1060 1061 ap->dtad_difo->dtdo_rtype.dtdt_flags |= DIF_TF_BYREF; 1062 1063 /* 1064 * Allow additional buffer space for the data size, type size, 1065 * type string length and a stab in the dark (32 bytes) for the 1066 * type string. The type string is part of the typeref() that 1067 * this action references. 1068 */ 1069 ap->dtad_difo->dtdo_rtype.dtdt_size = size->dn_value + 3 * sizeof(uintptr_t) + 32; 1070 1071 } 1072 1073 static void 1074 dt_action_commit(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 1075 { 1076 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 1077 1078 dt_cg(yypcb, dnp->dn_args); 1079 ap->dtad_difo = dt_as(yypcb); 1080 ap->dtad_kind = DTRACEACT_COMMIT; 1081 } 1082 1083 static void 1084 dt_action_discard(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 1085 { 1086 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 1087 1088 dt_cg(yypcb, dnp->dn_args); 1089 ap->dtad_difo = dt_as(yypcb); 1090 ap->dtad_kind = DTRACEACT_DISCARD; 1091 } 1092 1093 static void 1094 dt_compile_fun(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 1095 { 1096 switch (dnp->dn_expr->dn_ident->di_id) { 1097 case DT_ACT_BREAKPOINT: 1098 dt_action_breakpoint(dtp, dnp->dn_expr, sdp); 1099 break; 1100 case DT_ACT_CHILL: 1101 dt_action_chill(dtp, dnp->dn_expr, sdp); 1102 break; 1103 case DT_ACT_CLEAR: 1104 dt_action_clear(dtp, dnp->dn_expr, sdp); 1105 break; 1106 case DT_ACT_COMMIT: 1107 dt_action_commit(dtp, dnp->dn_expr, sdp); 1108 break; 1109 case DT_ACT_DENORMALIZE: 1110 dt_action_normalize(dtp, dnp->dn_expr, sdp); 1111 break; 1112 case DT_ACT_DISCARD: 1113 dt_action_discard(dtp, dnp->dn_expr, sdp); 1114 break; 1115 case DT_ACT_EXIT: 1116 dt_action_exit(dtp, dnp->dn_expr, sdp); 1117 break; 1118 case DT_ACT_FREOPEN: 1119 dt_action_printflike(dtp, dnp->dn_expr, sdp, DTRACEACT_FREOPEN); 1120 break; 1121 case DT_ACT_FTRUNCATE: 1122 dt_action_ftruncate(dtp, dnp->dn_expr, sdp); 1123 break; 1124 case DT_ACT_MOD: 1125 dt_action_symmod(dtp, dnp->dn_expr, sdp, DTRACEACT_MOD); 1126 break; 1127 case DT_ACT_NORMALIZE: 1128 dt_action_normalize(dtp, dnp->dn_expr, sdp); 1129 break; 1130 case DT_ACT_PANIC: 1131 dt_action_panic(dtp, dnp->dn_expr, sdp); 1132 break; 1133 case DT_ACT_PRINT: 1134 dt_action_trace(dtp, dnp->dn_expr, sdp); 1135 break; 1136 case DT_ACT_PRINTA: 1137 dt_action_printa(dtp, dnp->dn_expr, sdp); 1138 break; 1139 case DT_ACT_PRINTF: 1140 dt_action_printflike(dtp, dnp->dn_expr, sdp, DTRACEACT_PRINTF); 1141 break; 1142 case DT_ACT_PRINTM: 1143 dt_action_printm(dtp, dnp->dn_expr, sdp); 1144 break; 1145 case DT_ACT_PRINTT: 1146 dt_action_printt(dtp, dnp->dn_expr, sdp); 1147 break; 1148 case DT_ACT_RAISE: 1149 dt_action_raise(dtp, dnp->dn_expr, sdp); 1150 break; 1151 case DT_ACT_SETOPT: 1152 dt_action_setopt(dtp, dnp->dn_expr, sdp); 1153 break; 1154 case DT_ACT_SPECULATE: 1155 dt_action_speculate(dtp, dnp->dn_expr, sdp); 1156 break; 1157 case DT_ACT_STACK: 1158 dt_action_stack(dtp, dnp->dn_expr, sdp); 1159 break; 1160 case DT_ACT_STOP: 1161 dt_action_stop(dtp, dnp->dn_expr, sdp); 1162 break; 1163 case DT_ACT_SYM: 1164 dt_action_symmod(dtp, dnp->dn_expr, sdp, DTRACEACT_SYM); 1165 break; 1166 case DT_ACT_SYSTEM: 1167 dt_action_printflike(dtp, dnp->dn_expr, sdp, DTRACEACT_SYSTEM); 1168 break; 1169 case DT_ACT_TRACE: 1170 dt_action_trace(dtp, dnp->dn_expr, sdp); 1171 break; 1172 case DT_ACT_TRACEMEM: 1173 dt_action_tracemem(dtp, dnp->dn_expr, sdp); 1174 break; 1175 case DT_ACT_TRUNC: 1176 dt_action_trunc(dtp, dnp->dn_expr, sdp); 1177 break; 1178 case DT_ACT_UADDR: 1179 dt_action_symmod(dtp, dnp->dn_expr, sdp, DTRACEACT_UADDR); 1180 break; 1181 case DT_ACT_UMOD: 1182 dt_action_symmod(dtp, dnp->dn_expr, sdp, DTRACEACT_UMOD); 1183 break; 1184 case DT_ACT_USYM: 1185 dt_action_symmod(dtp, dnp->dn_expr, sdp, DTRACEACT_USYM); 1186 break; 1187 case DT_ACT_USTACK: 1188 case DT_ACT_JSTACK: 1189 dt_action_ustack(dtp, dnp->dn_expr, sdp); 1190 break; 1191 default: 1192 dnerror(dnp->dn_expr, D_UNKNOWN, "tracing function %s( ) is " 1193 "not yet supported\n", dnp->dn_expr->dn_ident->di_name); 1194 } 1195 } 1196 1197 static void 1198 dt_compile_exp(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 1199 { 1200 dtrace_actdesc_t *ap = dt_stmt_action(dtp, sdp); 1201 1202 dt_cg(yypcb, dnp->dn_expr); 1203 ap->dtad_difo = dt_as(yypcb); 1204 ap->dtad_difo->dtdo_rtype = dt_void_rtype; 1205 ap->dtad_kind = DTRACEACT_DIFEXPR; 1206 } 1207 1208 static void 1209 dt_compile_agg(dtrace_hdl_t *dtp, dt_node_t *dnp, dtrace_stmtdesc_t *sdp) 1210 { 1211 dt_ident_t *aid, *fid; 1212 dt_node_t *anp, *incr = NULL; 1213 dtrace_actdesc_t *ap; 1214 uint_t n = 1, argmax; 1215 uint64_t arg = 0; 1216 1217 /* 1218 * If the aggregation has no aggregating function applied to it, then 1219 * this statement has no effect. Flag this as a programming error. 1220 */ 1221 if (dnp->dn_aggfun == NULL) { 1222 dnerror(dnp, D_AGG_NULL, "expression has null effect: @%s\n", 1223 dnp->dn_ident->di_name); 1224 } 1225 1226 aid = dnp->dn_ident; 1227 fid = dnp->dn_aggfun->dn_ident; 1228 1229 if (dnp->dn_aggfun->dn_args != NULL && 1230 dt_node_is_scalar(dnp->dn_aggfun->dn_args) == 0) { 1231 dnerror(dnp->dn_aggfun, D_AGG_SCALAR, "%s( ) argument #1 must " 1232 "be of scalar type\n", fid->di_name); 1233 } 1234 1235 /* 1236 * The ID of the aggregation itself is implicitly recorded as the first 1237 * member of each aggregation tuple so we can distinguish them later. 1238 */ 1239 ap = dt_stmt_action(dtp, sdp); 1240 dt_action_difconst(ap, aid->di_id, DTRACEACT_DIFEXPR); 1241 1242 for (anp = dnp->dn_aggtup; anp != NULL; anp = anp->dn_list) { 1243 ap = dt_stmt_action(dtp, sdp); 1244 n++; 1245 1246 if (anp->dn_kind == DT_NODE_FUNC) { 1247 if (anp->dn_ident->di_id == DT_ACT_STACK) { 1248 dt_action_stack_args(dtp, ap, anp->dn_args); 1249 continue; 1250 } 1251 1252 if (anp->dn_ident->di_id == DT_ACT_USTACK || 1253 anp->dn_ident->di_id == DT_ACT_JSTACK) { 1254 dt_action_ustack_args(dtp, ap, anp); 1255 continue; 1256 } 1257 1258 switch (anp->dn_ident->di_id) { 1259 case DT_ACT_UADDR: 1260 dt_action_symmod_args(dtp, ap, 1261 anp->dn_args, DTRACEACT_UADDR); 1262 continue; 1263 1264 case DT_ACT_USYM: 1265 dt_action_symmod_args(dtp, ap, 1266 anp->dn_args, DTRACEACT_USYM); 1267 continue; 1268 1269 case DT_ACT_UMOD: 1270 dt_action_symmod_args(dtp, ap, 1271 anp->dn_args, DTRACEACT_UMOD); 1272 continue; 1273 1274 case DT_ACT_SYM: 1275 dt_action_symmod_args(dtp, ap, 1276 anp->dn_args, DTRACEACT_SYM); 1277 continue; 1278 1279 case DT_ACT_MOD: 1280 dt_action_symmod_args(dtp, ap, 1281 anp->dn_args, DTRACEACT_MOD); 1282 continue; 1283 1284 default: 1285 break; 1286 } 1287 } 1288 1289 dt_cg(yypcb, anp); 1290 ap->dtad_difo = dt_as(yypcb); 1291 ap->dtad_kind = DTRACEACT_DIFEXPR; 1292 } 1293 1294 if (fid->di_id == DTRACEAGG_LQUANTIZE) { 1295 /* 1296 * For linear quantization, we have between two and four 1297 * arguments in addition to the expression: 1298 * 1299 * arg1 => Base value 1300 * arg2 => Limit value 1301 * arg3 => Quantization level step size (defaults to 1) 1302 * arg4 => Quantization increment value (defaults to 1) 1303 */ 1304 dt_node_t *arg1 = dnp->dn_aggfun->dn_args->dn_list; 1305 dt_node_t *arg2 = arg1->dn_list; 1306 dt_node_t *arg3 = arg2->dn_list; 1307 dt_idsig_t *isp; 1308 uint64_t nlevels, step = 1, oarg; 1309 int64_t baseval, limitval; 1310 1311 if (arg1->dn_kind != DT_NODE_INT) { 1312 dnerror(arg1, D_LQUANT_BASETYPE, "lquantize( ) " 1313 "argument #1 must be an integer constant\n"); 1314 } 1315 1316 baseval = (int64_t)arg1->dn_value; 1317 1318 if (baseval < INT32_MIN || baseval > INT32_MAX) { 1319 dnerror(arg1, D_LQUANT_BASEVAL, "lquantize( ) " 1320 "argument #1 must be a 32-bit quantity\n"); 1321 } 1322 1323 if (arg2->dn_kind != DT_NODE_INT) { 1324 dnerror(arg2, D_LQUANT_LIMTYPE, "lquantize( ) " 1325 "argument #2 must be an integer constant\n"); 1326 } 1327 1328 limitval = (int64_t)arg2->dn_value; 1329 1330 if (limitval < INT32_MIN || limitval > INT32_MAX) { 1331 dnerror(arg2, D_LQUANT_LIMVAL, "lquantize( ) " 1332 "argument #2 must be a 32-bit quantity\n"); 1333 } 1334 1335 if (limitval < baseval) { 1336 dnerror(dnp, D_LQUANT_MISMATCH, 1337 "lquantize( ) base (argument #1) must be less " 1338 "than limit (argument #2)\n"); 1339 } 1340 1341 if (arg3 != NULL) { 1342 if (!dt_node_is_posconst(arg3)) { 1343 dnerror(arg3, D_LQUANT_STEPTYPE, "lquantize( ) " 1344 "argument #3 must be a non-zero positive " 1345 "integer constant\n"); 1346 } 1347 1348 if ((step = arg3->dn_value) > UINT16_MAX) { 1349 dnerror(arg3, D_LQUANT_STEPVAL, "lquantize( ) " 1350 "argument #3 must be a 16-bit quantity\n"); 1351 } 1352 } 1353 1354 nlevels = (limitval - baseval) / step; 1355 1356 if (nlevels == 0) { 1357 dnerror(dnp, D_LQUANT_STEPLARGE, 1358 "lquantize( ) step (argument #3) too large: must " 1359 "have at least one quantization level\n"); 1360 } 1361 1362 if (nlevels > UINT16_MAX) { 1363 dnerror(dnp, D_LQUANT_STEPSMALL, "lquantize( ) step " 1364 "(argument #3) too small: number of quantization " 1365 "levels must be a 16-bit quantity\n"); 1366 } 1367 1368 arg = (step << DTRACE_LQUANTIZE_STEPSHIFT) | 1369 (nlevels << DTRACE_LQUANTIZE_LEVELSHIFT) | 1370 ((baseval << DTRACE_LQUANTIZE_BASESHIFT) & 1371 DTRACE_LQUANTIZE_BASEMASK); 1372 1373 assert(arg != 0); 1374 1375 isp = (dt_idsig_t *)aid->di_data; 1376 1377 if (isp->dis_auxinfo == 0) { 1378 /* 1379 * This is the first time we've seen an lquantize() 1380 * for this aggregation; we'll store our argument 1381 * as the auxiliary signature information. 1382 */ 1383 isp->dis_auxinfo = arg; 1384 } else if ((oarg = isp->dis_auxinfo) != arg) { 1385 /* 1386 * If we have seen this lquantize() before and the 1387 * argument doesn't match the original argument, pick 1388 * the original argument apart to concisely report the 1389 * mismatch. 1390 */ 1391 int obaseval = DTRACE_LQUANTIZE_BASE(oarg); 1392 int onlevels = DTRACE_LQUANTIZE_LEVELS(oarg); 1393 int ostep = DTRACE_LQUANTIZE_STEP(oarg); 1394 1395 if (obaseval != baseval) { 1396 dnerror(dnp, D_LQUANT_MATCHBASE, "lquantize( ) " 1397 "base (argument #1) doesn't match previous " 1398 "declaration: expected %d, found %d\n", 1399 obaseval, (int)baseval); 1400 } 1401 1402 if (onlevels * ostep != nlevels * step) { 1403 dnerror(dnp, D_LQUANT_MATCHLIM, "lquantize( ) " 1404 "limit (argument #2) doesn't match previous" 1405 " declaration: expected %d, found %d\n", 1406 obaseval + onlevels * ostep, 1407 (int)baseval + (int)nlevels * (int)step); 1408 } 1409 1410 if (ostep != step) { 1411 dnerror(dnp, D_LQUANT_MATCHSTEP, "lquantize( ) " 1412 "step (argument #3) doesn't match previous " 1413 "declaration: expected %d, found %d\n", 1414 ostep, (int)step); 1415 } 1416 1417 /* 1418 * We shouldn't be able to get here -- one of the 1419 * parameters must be mismatched if the arguments 1420 * didn't match. 1421 */ 1422 assert(0); 1423 } 1424 1425 incr = arg3 != NULL ? arg3->dn_list : NULL; 1426 argmax = 5; 1427 } 1428 1429 if (fid->di_id == DTRACEAGG_LLQUANTIZE) { 1430 /* 1431 * For log/linear quantizations, we have between one and five 1432 * arguments in addition to the expression: 1433 * 1434 * arg1 => Factor 1435 * arg2 => Low magnitude 1436 * arg3 => High magnitude 1437 * arg4 => Number of steps per magnitude 1438 * arg5 => Quantization increment value (defaults to 1) 1439 */ 1440 dt_node_t *llarg = dnp->dn_aggfun->dn_args->dn_list; 1441 uint64_t oarg, order, v; 1442 dt_idsig_t *isp; 1443 int i; 1444 1445 struct { 1446 char *str; /* string identifier */ 1447 int badtype; /* error on bad type */ 1448 int badval; /* error on bad value */ 1449 int mismatch; /* error on bad match */ 1450 int shift; /* shift value */ 1451 uint16_t value; /* value itself */ 1452 } args[] = { 1453 { "factor", D_LLQUANT_FACTORTYPE, 1454 D_LLQUANT_FACTORVAL, D_LLQUANT_FACTORMATCH, 1455 DTRACE_LLQUANTIZE_FACTORSHIFT }, 1456 { "low magnitude", D_LLQUANT_LOWTYPE, 1457 D_LLQUANT_LOWVAL, D_LLQUANT_LOWMATCH, 1458 DTRACE_LLQUANTIZE_LOWSHIFT }, 1459 { "high magnitude", D_LLQUANT_HIGHTYPE, 1460 D_LLQUANT_HIGHVAL, D_LLQUANT_HIGHMATCH, 1461 DTRACE_LLQUANTIZE_HIGHSHIFT }, 1462 { "linear steps per magnitude", D_LLQUANT_NSTEPTYPE, 1463 D_LLQUANT_NSTEPVAL, D_LLQUANT_NSTEPMATCH, 1464 DTRACE_LLQUANTIZE_NSTEPSHIFT }, 1465 { NULL } 1466 }; 1467 1468 assert(arg == 0); 1469 1470 for (i = 0; args[i].str != NULL; i++) { 1471 if (llarg->dn_kind != DT_NODE_INT) { 1472 dnerror(llarg, args[i].badtype, "llquantize( ) " 1473 "argument #%d (%s) must be an " 1474 "integer constant\n", i + 1, args[i].str); 1475 } 1476 1477 if ((uint64_t)llarg->dn_value > UINT16_MAX) { 1478 dnerror(llarg, args[i].badval, "llquantize( ) " 1479 "argument #%d (%s) must be an unsigned " 1480 "16-bit quantity\n", i + 1, args[i].str); 1481 } 1482 1483 args[i].value = (uint16_t)llarg->dn_value; 1484 1485 assert(!(arg & ((uint64_t)UINT16_MAX << 1486 args[i].shift))); 1487 arg |= ((uint64_t)args[i].value << args[i].shift); 1488 llarg = llarg->dn_list; 1489 } 1490 1491 assert(arg != 0); 1492 1493 if (args[0].value < 2) { 1494 dnerror(dnp, D_LLQUANT_FACTORSMALL, "llquantize( ) " 1495 "factor (argument #1) must be two or more\n"); 1496 } 1497 1498 if (args[1].value >= args[2].value) { 1499 dnerror(dnp, D_LLQUANT_MAGRANGE, "llquantize( ) " 1500 "high magnitude (argument #3) must be greater " 1501 "than low magnitude (argument #2)\n"); 1502 } 1503 1504 if (args[3].value < args[0].value) { 1505 dnerror(dnp, D_LLQUANT_FACTORNSTEPS, "llquantize( ) " 1506 "factor (argument #1) must be less than or " 1507 "equal to the number of linear steps per " 1508 "magnitude (argument #4)\n"); 1509 } 1510 1511 for (v = args[0].value; v < args[3].value; v *= args[0].value) 1512 continue; 1513 1514 if ((args[3].value % args[0].value) || (v % args[3].value)) { 1515 dnerror(dnp, D_LLQUANT_FACTOREVEN, "llquantize( ) " 1516 "factor (argument #1) must evenly divide the " 1517 "number of steps per magnitude (argument #4), " 1518 "and the number of steps per magnitude must evenly " 1519 "divide a power of the factor\n"); 1520 } 1521 1522 for (i = 0, order = 1; i < args[2].value; i++) { 1523 if (order * args[0].value > order) { 1524 order *= args[0].value; 1525 continue; 1526 } 1527 1528 dnerror(dnp, D_LLQUANT_MAGTOOBIG, "llquantize( ) " 1529 "factor (%d) raised to power of high magnitude " 1530 "(%d) overflows 64-bits\n", args[0].value, 1531 args[2].value); 1532 } 1533 1534 isp = (dt_idsig_t *)aid->di_data; 1535 1536 if (isp->dis_auxinfo == 0) { 1537 /* 1538 * This is the first time we've seen an llquantize() 1539 * for this aggregation; we'll store our argument 1540 * as the auxiliary signature information. 1541 */ 1542 isp->dis_auxinfo = arg; 1543 } else if ((oarg = isp->dis_auxinfo) != arg) { 1544 /* 1545 * If we have seen this llquantize() before and the 1546 * argument doesn't match the original argument, pick 1547 * the original argument apart to concisely report the 1548 * mismatch. 1549 */ 1550 int expected = 0, found = 0; 1551 1552 for (i = 0; expected == found; i++) { 1553 assert(args[i].str != NULL); 1554 1555 expected = (oarg >> args[i].shift) & UINT16_MAX; 1556 found = (arg >> args[i].shift) & UINT16_MAX; 1557 } 1558 1559 dnerror(dnp, args[i - 1].mismatch, "llquantize( ) " 1560 "%s (argument #%d) doesn't match previous " 1561 "declaration: expected %d, found %d\n", 1562 args[i - 1].str, i, expected, found); 1563 } 1564 1565 incr = llarg; 1566 argmax = 6; 1567 } 1568 1569 if (fid->di_id == DTRACEAGG_QUANTIZE) { 1570 incr = dnp->dn_aggfun->dn_args->dn_list; 1571 argmax = 2; 1572 } 1573 1574 if (incr != NULL) { 1575 if (!dt_node_is_scalar(incr)) { 1576 dnerror(dnp, D_PROTO_ARG, "%s( ) increment value " 1577 "(argument #%d) must be of scalar type\n", 1578 fid->di_name, argmax); 1579 } 1580 1581 if ((anp = incr->dn_list) != NULL) { 1582 int argc = argmax; 1583 1584 for (; anp != NULL; anp = anp->dn_list) 1585 argc++; 1586 1587 dnerror(incr, D_PROTO_LEN, "%s( ) prototype " 1588 "mismatch: %d args passed, at most %d expected", 1589 fid->di_name, argc, argmax); 1590 } 1591 1592 ap = dt_stmt_action(dtp, sdp); 1593 n++; 1594 1595 dt_cg(yypcb, incr); 1596 ap->dtad_difo = dt_as(yypcb); 1597 ap->dtad_difo->dtdo_rtype = dt_void_rtype; 1598 ap->dtad_kind = DTRACEACT_DIFEXPR; 1599 } 1600 1601 assert(sdp->dtsd_aggdata == NULL); 1602 sdp->dtsd_aggdata = aid; 1603 1604 ap = dt_stmt_action(dtp, sdp); 1605 assert(fid->di_kind == DT_IDENT_AGGFUNC); 1606 assert(DTRACEACT_ISAGG(fid->di_id)); 1607 ap->dtad_kind = fid->di_id; 1608 ap->dtad_ntuple = n; 1609 ap->dtad_arg = arg; 1610 1611 if (dnp->dn_aggfun->dn_args != NULL) { 1612 dt_cg(yypcb, dnp->dn_aggfun->dn_args); 1613 ap->dtad_difo = dt_as(yypcb); 1614 } 1615 } 1616 1617 static void 1618 dt_compile_one_clause(dtrace_hdl_t *dtp, dt_node_t *cnp, dt_node_t *pnp) 1619 { 1620 dtrace_ecbdesc_t *edp; 1621 dtrace_stmtdesc_t *sdp; 1622 dt_node_t *dnp; 1623 1624 yylineno = pnp->dn_line; 1625 dt_setcontext(dtp, pnp->dn_desc); 1626 (void) dt_node_cook(cnp, DT_IDFLG_REF); 1627 1628 if (DT_TREEDUMP_PASS(dtp, 2)) 1629 dt_node_printr(cnp, stderr, 0); 1630 1631 if ((edp = dt_ecbdesc_create(dtp, pnp->dn_desc)) == NULL) 1632 longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 1633 1634 assert(yypcb->pcb_ecbdesc == NULL); 1635 yypcb->pcb_ecbdesc = edp; 1636 1637 if (cnp->dn_pred != NULL) { 1638 dt_cg(yypcb, cnp->dn_pred); 1639 edp->dted_pred.dtpdd_difo = dt_as(yypcb); 1640 } 1641 1642 if (cnp->dn_acts == NULL) { 1643 dt_stmt_append(dt_stmt_create(dtp, edp, 1644 cnp->dn_ctxattr, _dtrace_defattr), cnp); 1645 } 1646 1647 for (dnp = cnp->dn_acts; dnp != NULL; dnp = dnp->dn_list) { 1648 assert(yypcb->pcb_stmt == NULL); 1649 sdp = dt_stmt_create(dtp, edp, cnp->dn_ctxattr, cnp->dn_attr); 1650 1651 switch (dnp->dn_kind) { 1652 case DT_NODE_DEXPR: 1653 if (dnp->dn_expr->dn_kind == DT_NODE_AGG) 1654 dt_compile_agg(dtp, dnp->dn_expr, sdp); 1655 else 1656 dt_compile_exp(dtp, dnp, sdp); 1657 break; 1658 case DT_NODE_DFUNC: 1659 dt_compile_fun(dtp, dnp, sdp); 1660 break; 1661 case DT_NODE_AGG: 1662 dt_compile_agg(dtp, dnp, sdp); 1663 break; 1664 default: 1665 dnerror(dnp, D_UNKNOWN, "internal error -- node kind " 1666 "%u is not a valid statement\n", dnp->dn_kind); 1667 } 1668 1669 assert(yypcb->pcb_stmt == sdp); 1670 dt_stmt_append(sdp, dnp); 1671 } 1672 1673 assert(yypcb->pcb_ecbdesc == edp); 1674 dt_ecbdesc_release(dtp, edp); 1675 dt_endcontext(dtp); 1676 yypcb->pcb_ecbdesc = NULL; 1677 } 1678 1679 static void 1680 dt_compile_clause(dtrace_hdl_t *dtp, dt_node_t *cnp) 1681 { 1682 dt_node_t *pnp; 1683 1684 for (pnp = cnp->dn_pdescs; pnp != NULL; pnp = pnp->dn_list) 1685 dt_compile_one_clause(dtp, cnp, pnp); 1686 } 1687 1688 static void 1689 dt_compile_xlator(dt_node_t *dnp) 1690 { 1691 dt_xlator_t *dxp = dnp->dn_xlator; 1692 dt_node_t *mnp; 1693 1694 for (mnp = dnp->dn_members; mnp != NULL; mnp = mnp->dn_list) { 1695 assert(dxp->dx_membdif[mnp->dn_membid] == NULL); 1696 dt_cg(yypcb, mnp); 1697 dxp->dx_membdif[mnp->dn_membid] = dt_as(yypcb); 1698 } 1699 } 1700 1701 void 1702 dt_setcontext(dtrace_hdl_t *dtp, dtrace_probedesc_t *pdp) 1703 { 1704 const dtrace_pattr_t *pap; 1705 dt_probe_t *prp; 1706 dt_provider_t *pvp; 1707 dt_ident_t *idp; 1708 char attrstr[8]; 1709 int err; 1710 1711 /* 1712 * Both kernel and pid based providers are allowed to have names 1713 * ending with what could be interpreted as a number. We assume it's 1714 * a pid and that we may need to dynamically create probes for 1715 * that process if: 1716 * 1717 * (1) The provider doesn't exist, or, 1718 * (2) The provider exists and has DTRACE_PRIV_PROC privilege. 1719 * 1720 * On an error, dt_pid_create_probes() will set the error message 1721 * and tag -- we just have to longjmp() out of here. 1722 */ 1723 if (isdigit(pdp->dtpd_provider[strlen(pdp->dtpd_provider) - 1]) && 1724 ((pvp = dt_provider_lookup(dtp, pdp->dtpd_provider)) == NULL || 1725 pvp->pv_desc.dtvd_priv.dtpp_flags & DTRACE_PRIV_PROC) && 1726 dt_pid_create_probes(pdp, dtp, yypcb) != 0) { 1727 longjmp(yypcb->pcb_jmpbuf, EDT_COMPILER); 1728 } 1729 1730 /* 1731 * Call dt_probe_info() to get the probe arguments and attributes. If 1732 * a representative probe is found, set 'pap' to the probe provider's 1733 * attributes. Otherwise set 'pap' to default Unstable attributes. 1734 */ 1735 if ((prp = dt_probe_info(dtp, pdp, &yypcb->pcb_pinfo)) == NULL) { 1736 pap = &_dtrace_prvdesc; 1737 err = dtrace_errno(dtp); 1738 bzero(&yypcb->pcb_pinfo, sizeof (dtrace_probeinfo_t)); 1739 yypcb->pcb_pinfo.dtp_attr = pap->dtpa_provider; 1740 yypcb->pcb_pinfo.dtp_arga = pap->dtpa_args; 1741 } else { 1742 pap = &prp->pr_pvp->pv_desc.dtvd_attr; 1743 err = 0; 1744 } 1745 1746 if (err == EDT_NOPROBE && !(yypcb->pcb_cflags & DTRACE_C_ZDEFS)) { 1747 xyerror(D_PDESC_ZERO, "probe description %s:%s:%s:%s does not " 1748 "match any probes\n", pdp->dtpd_provider, pdp->dtpd_mod, 1749 pdp->dtpd_func, pdp->dtpd_name); 1750 } 1751 1752 if (err != EDT_NOPROBE && err != EDT_UNSTABLE && err != 0) 1753 xyerror(D_PDESC_INVAL, "%s\n", dtrace_errmsg(dtp, err)); 1754 1755 dt_dprintf("set context to %s:%s:%s:%s [%u] prp=%p attr=%s argc=%d\n", 1756 pdp->dtpd_provider, pdp->dtpd_mod, pdp->dtpd_func, pdp->dtpd_name, 1757 pdp->dtpd_id, (void *)prp, dt_attr_str(yypcb->pcb_pinfo.dtp_attr, 1758 attrstr, sizeof (attrstr)), yypcb->pcb_pinfo.dtp_argc); 1759 1760 /* 1761 * Reset the stability attributes of D global variables that vary 1762 * based on the attributes of the provider and context itself. 1763 */ 1764 if ((idp = dt_idhash_lookup(dtp->dt_globals, "probeprov")) != NULL) 1765 idp->di_attr = pap->dtpa_provider; 1766 if ((idp = dt_idhash_lookup(dtp->dt_globals, "probemod")) != NULL) 1767 idp->di_attr = pap->dtpa_mod; 1768 if ((idp = dt_idhash_lookup(dtp->dt_globals, "probefunc")) != NULL) 1769 idp->di_attr = pap->dtpa_func; 1770 if ((idp = dt_idhash_lookup(dtp->dt_globals, "probename")) != NULL) 1771 idp->di_attr = pap->dtpa_name; 1772 if ((idp = dt_idhash_lookup(dtp->dt_globals, "args")) != NULL) 1773 idp->di_attr = pap->dtpa_args; 1774 1775 yypcb->pcb_pdesc = pdp; 1776 yypcb->pcb_probe = prp; 1777 } 1778 1779 /* 1780 * Reset context-dependent variables and state at the end of cooking a D probe 1781 * definition clause. This ensures that external declarations between clauses 1782 * do not reference any stale context-dependent data from the previous clause. 1783 */ 1784 void 1785 dt_endcontext(dtrace_hdl_t *dtp) 1786 { 1787 static const char *const cvars[] = { 1788 "probeprov", "probemod", "probefunc", "probename", "args", NULL 1789 }; 1790 1791 dt_ident_t *idp; 1792 int i; 1793 1794 for (i = 0; cvars[i] != NULL; i++) { 1795 if ((idp = dt_idhash_lookup(dtp->dt_globals, cvars[i])) != NULL) 1796 idp->di_attr = _dtrace_defattr; 1797 } 1798 1799 yypcb->pcb_pdesc = NULL; 1800 yypcb->pcb_probe = NULL; 1801 } 1802 1803 static int 1804 dt_reduceid(dt_idhash_t *dhp, dt_ident_t *idp, dtrace_hdl_t *dtp) 1805 { 1806 if (idp->di_vers != 0 && idp->di_vers > dtp->dt_vmax) 1807 dt_idhash_delete(dhp, idp); 1808 1809 return (0); 1810 } 1811 1812 /* 1813 * When dtrace_setopt() is called for "version", it calls dt_reduce() to remove 1814 * any identifiers or translators that have been previously defined as bound to 1815 * a version greater than the specified version. Therefore, in our current 1816 * version implementation, establishing a binding is a one-way transformation. 1817 * In addition, no versioning is currently provided for types as our .d library 1818 * files do not define any types and we reserve prefixes DTRACE_ and dtrace_ 1819 * for our exclusive use. If required, type versioning will require more work. 1820 */ 1821 int 1822 dt_reduce(dtrace_hdl_t *dtp, dt_version_t v) 1823 { 1824 char s[DT_VERSION_STRMAX]; 1825 dt_xlator_t *dxp, *nxp; 1826 1827 if (v > dtp->dt_vmax) 1828 return (dt_set_errno(dtp, EDT_VERSREDUCED)); 1829 else if (v == dtp->dt_vmax) 1830 return (0); /* no reduction necessary */ 1831 1832 dt_dprintf("reducing api version to %s\n", 1833 dt_version_num2str(v, s, sizeof (s))); 1834 1835 dtp->dt_vmax = v; 1836 1837 for (dxp = dt_list_next(&dtp->dt_xlators); dxp != NULL; dxp = nxp) { 1838 nxp = dt_list_next(dxp); 1839 if ((dxp->dx_souid.di_vers != 0 && dxp->dx_souid.di_vers > v) || 1840 (dxp->dx_ptrid.di_vers != 0 && dxp->dx_ptrid.di_vers > v)) 1841 dt_list_delete(&dtp->dt_xlators, dxp); 1842 } 1843 1844 (void) dt_idhash_iter(dtp->dt_macros, (dt_idhash_f *)dt_reduceid, dtp); 1845 (void) dt_idhash_iter(dtp->dt_aggs, (dt_idhash_f *)dt_reduceid, dtp); 1846 (void) dt_idhash_iter(dtp->dt_globals, (dt_idhash_f *)dt_reduceid, dtp); 1847 (void) dt_idhash_iter(dtp->dt_tls, (dt_idhash_f *)dt_reduceid, dtp); 1848 1849 return (0); 1850 } 1851 1852 /* 1853 * Fork and exec the cpp(1) preprocessor to run over the specified input file, 1854 * and return a FILE handle for the cpp output. We use the /dev/fd filesystem 1855 * here to simplify the code by leveraging file descriptor inheritance. 1856 */ 1857 static FILE * 1858 dt_preproc(dtrace_hdl_t *dtp, FILE *ifp) 1859 { 1860 int argc = dtp->dt_cpp_argc; 1861 char **argv = malloc(sizeof (char *) * (argc + 5)); 1862 FILE *ofp = tmpfile(); 1863 1864 #if defined(sun) 1865 char ipath[20], opath[20]; /* big enough for /dev/fd/ + INT_MAX + \0 */ 1866 #endif 1867 char verdef[32]; /* big enough for -D__SUNW_D_VERSION=0x%08x + \0 */ 1868 1869 struct sigaction act, oact; 1870 sigset_t mask, omask; 1871 1872 int wstat, estat; 1873 pid_t pid; 1874 #if defined(sun) 1875 off64_t off; 1876 #else 1877 off_t off = 0; 1878 #endif 1879 int c; 1880 1881 if (argv == NULL || ofp == NULL) { 1882 (void) dt_set_errno(dtp, errno); 1883 goto err; 1884 } 1885 1886 /* 1887 * If the input is a seekable file, see if it is an interpreter file. 1888 * If we see #!, seek past the first line because cpp will choke on it. 1889 * We start cpp just prior to the \n at the end of this line so that 1890 * it still sees the newline, ensuring that #line values are correct. 1891 */ 1892 if (isatty(fileno(ifp)) == 0 && (off = ftello64(ifp)) != -1) { 1893 if ((c = fgetc(ifp)) == '#' && (c = fgetc(ifp)) == '!') { 1894 for (off += 2; c != '\n'; off++) { 1895 if ((c = fgetc(ifp)) == EOF) 1896 break; 1897 } 1898 if (c == '\n') 1899 off--; /* start cpp just prior to \n */ 1900 } 1901 (void) fflush(ifp); 1902 (void) fseeko64(ifp, off, SEEK_SET); 1903 } 1904 1905 #if defined(sun) 1906 (void) snprintf(ipath, sizeof (ipath), "/dev/fd/%d", fileno(ifp)); 1907 (void) snprintf(opath, sizeof (opath), "/dev/fd/%d", fileno(ofp)); 1908 #endif 1909 1910 bcopy(dtp->dt_cpp_argv, argv, sizeof (char *) * argc); 1911 1912 (void) snprintf(verdef, sizeof (verdef), 1913 "-D__SUNW_D_VERSION=0x%08x", dtp->dt_vmax); 1914 argv[argc++] = verdef; 1915 1916 #if defined(sun) 1917 switch (dtp->dt_stdcmode) { 1918 case DT_STDC_XA: 1919 case DT_STDC_XT: 1920 argv[argc++] = "-D__STDC__=0"; 1921 break; 1922 case DT_STDC_XC: 1923 argv[argc++] = "-D__STDC__=1"; 1924 break; 1925 } 1926 1927 argv[argc++] = ipath; 1928 argv[argc++] = opath; 1929 #else 1930 argv[argc++] = "-P"; 1931 #endif 1932 argv[argc] = NULL; 1933 1934 /* 1935 * libdtrace must be able to be embedded in other programs that may 1936 * include application-specific signal handlers. Therefore, if we 1937 * need to fork to run cpp(1), we must avoid generating a SIGCHLD 1938 * that could confuse the containing application. To do this, 1939 * we block SIGCHLD and reset its disposition to SIG_DFL. 1940 * We restore our signal state once we are done. 1941 */ 1942 (void) sigemptyset(&mask); 1943 (void) sigaddset(&mask, SIGCHLD); 1944 (void) sigprocmask(SIG_BLOCK, &mask, &omask); 1945 1946 bzero(&act, sizeof (act)); 1947 act.sa_handler = SIG_DFL; 1948 (void) sigaction(SIGCHLD, &act, &oact); 1949 1950 if ((pid = fork1()) == -1) { 1951 (void) sigaction(SIGCHLD, &oact, NULL); 1952 (void) sigprocmask(SIG_SETMASK, &omask, NULL); 1953 (void) dt_set_errno(dtp, EDT_CPPFORK); 1954 goto err; 1955 } 1956 1957 if (pid == 0) { 1958 #if !defined(sun) 1959 if (isatty(fileno(ifp)) == 0) 1960 lseek(fileno(ifp), off, SEEK_SET); 1961 dup2(fileno(ifp), 0); 1962 dup2(fileno(ofp), 1); 1963 #endif 1964 (void) execvp(dtp->dt_cpp_path, argv); 1965 _exit(errno == ENOENT ? 127 : 126); 1966 } 1967 1968 do { 1969 dt_dprintf("waiting for %s (PID %d)\n", dtp->dt_cpp_path, 1970 (int)pid); 1971 } while (waitpid(pid, &wstat, 0) == -1 && errno == EINTR); 1972 1973 (void) sigaction(SIGCHLD, &oact, NULL); 1974 (void) sigprocmask(SIG_SETMASK, &omask, NULL); 1975 1976 dt_dprintf("%s returned exit status 0x%x\n", dtp->dt_cpp_path, wstat); 1977 estat = WIFEXITED(wstat) ? WEXITSTATUS(wstat) : -1; 1978 1979 if (estat != 0) { 1980 switch (estat) { 1981 case 126: 1982 (void) dt_set_errno(dtp, EDT_CPPEXEC); 1983 break; 1984 case 127: 1985 (void) dt_set_errno(dtp, EDT_CPPENT); 1986 break; 1987 default: 1988 (void) dt_set_errno(dtp, EDT_CPPERR); 1989 } 1990 goto err; 1991 } 1992 1993 free(argv); 1994 (void) fflush(ofp); 1995 (void) fseek(ofp, 0, SEEK_SET); 1996 return (ofp); 1997 1998 err: 1999 free(argv); 2000 (void) fclose(ofp); 2001 return (NULL); 2002 } 2003 2004 static void 2005 dt_lib_depend_error(dtrace_hdl_t *dtp, const char *format, ...) 2006 { 2007 va_list ap; 2008 2009 va_start(ap, format); 2010 dt_set_errmsg(dtp, NULL, NULL, NULL, 0, format, ap); 2011 va_end(ap); 2012 } 2013 2014 int 2015 dt_lib_depend_add(dtrace_hdl_t *dtp, dt_list_t *dlp, const char *arg) 2016 { 2017 dt_lib_depend_t *dld; 2018 const char *end; 2019 2020 assert(arg != NULL); 2021 2022 if ((end = strrchr(arg, '/')) == NULL) 2023 return (dt_set_errno(dtp, EINVAL)); 2024 2025 if ((dld = dt_zalloc(dtp, sizeof (dt_lib_depend_t))) == NULL) 2026 return (-1); 2027 2028 if ((dld->dtld_libpath = dt_alloc(dtp, MAXPATHLEN)) == NULL) { 2029 dt_free(dtp, dld); 2030 return (-1); 2031 } 2032 2033 (void) strlcpy(dld->dtld_libpath, arg, end - arg + 2); 2034 if ((dld->dtld_library = strdup(arg)) == NULL) { 2035 dt_free(dtp, dld->dtld_libpath); 2036 dt_free(dtp, dld); 2037 return (dt_set_errno(dtp, EDT_NOMEM)); 2038 } 2039 2040 dt_list_append(dlp, dld); 2041 return (0); 2042 } 2043 2044 dt_lib_depend_t * 2045 dt_lib_depend_lookup(dt_list_t *dld, const char *arg) 2046 { 2047 dt_lib_depend_t *dldn; 2048 2049 for (dldn = dt_list_next(dld); dldn != NULL; 2050 dldn = dt_list_next(dldn)) { 2051 if (strcmp(dldn->dtld_library, arg) == 0) 2052 return (dldn); 2053 } 2054 2055 return (NULL); 2056 } 2057 2058 /* 2059 * Go through all the library files, and, if any library dependencies exist for 2060 * that file, add it to that node's list of dependents. The result of this 2061 * will be a graph which can then be topologically sorted to produce a 2062 * compilation order. 2063 */ 2064 static int 2065 dt_lib_build_graph(dtrace_hdl_t *dtp) 2066 { 2067 dt_lib_depend_t *dld, *dpld; 2068 2069 for (dld = dt_list_next(&dtp->dt_lib_dep); dld != NULL; 2070 dld = dt_list_next(dld)) { 2071 char *library = dld->dtld_library; 2072 2073 for (dpld = dt_list_next(&dld->dtld_dependencies); dpld != NULL; 2074 dpld = dt_list_next(dpld)) { 2075 dt_lib_depend_t *dlda; 2076 2077 if ((dlda = dt_lib_depend_lookup(&dtp->dt_lib_dep, 2078 dpld->dtld_library)) == NULL) { 2079 dt_lib_depend_error(dtp, 2080 "Invalid library dependency in %s: %s\n", 2081 dld->dtld_library, dpld->dtld_library); 2082 2083 return (dt_set_errno(dtp, EDT_COMPILER)); 2084 } 2085 2086 if ((dt_lib_depend_add(dtp, &dlda->dtld_dependents, 2087 library)) != 0) { 2088 return (-1); /* preserve dt_errno */ 2089 } 2090 } 2091 } 2092 return (0); 2093 } 2094 2095 static int 2096 dt_topo_sort(dtrace_hdl_t *dtp, dt_lib_depend_t *dld, int *count) 2097 { 2098 dt_lib_depend_t *dpld, *dlda, *new; 2099 2100 dld->dtld_start = ++(*count); 2101 2102 for (dpld = dt_list_next(&dld->dtld_dependents); dpld != NULL; 2103 dpld = dt_list_next(dpld)) { 2104 dlda = dt_lib_depend_lookup(&dtp->dt_lib_dep, 2105 dpld->dtld_library); 2106 assert(dlda != NULL); 2107 2108 if (dlda->dtld_start == 0 && 2109 dt_topo_sort(dtp, dlda, count) == -1) 2110 return (-1); 2111 } 2112 2113 if ((new = dt_zalloc(dtp, sizeof (dt_lib_depend_t))) == NULL) 2114 return (-1); 2115 2116 if ((new->dtld_library = strdup(dld->dtld_library)) == NULL) { 2117 dt_free(dtp, new); 2118 return (dt_set_errno(dtp, EDT_NOMEM)); 2119 } 2120 2121 new->dtld_start = dld->dtld_start; 2122 new->dtld_finish = dld->dtld_finish = ++(*count); 2123 dt_list_prepend(&dtp->dt_lib_dep_sorted, new); 2124 2125 dt_dprintf("library %s sorted (%d/%d)\n", new->dtld_library, 2126 new->dtld_start, new->dtld_finish); 2127 2128 return (0); 2129 } 2130 2131 static int 2132 dt_lib_depend_sort(dtrace_hdl_t *dtp) 2133 { 2134 dt_lib_depend_t *dld, *dpld, *dlda; 2135 int count = 0; 2136 2137 if (dt_lib_build_graph(dtp) == -1) 2138 return (-1); /* preserve dt_errno */ 2139 2140 /* 2141 * Perform a topological sort of the graph that hangs off 2142 * dtp->dt_lib_dep. The result of this process will be a 2143 * dependency ordered list located at dtp->dt_lib_dep_sorted. 2144 */ 2145 for (dld = dt_list_next(&dtp->dt_lib_dep); dld != NULL; 2146 dld = dt_list_next(dld)) { 2147 if (dld->dtld_start == 0 && 2148 dt_topo_sort(dtp, dld, &count) == -1) 2149 return (-1); /* preserve dt_errno */; 2150 } 2151 2152 /* 2153 * Check the graph for cycles. If an ancestor's finishing time is 2154 * less than any of its dependent's finishing times then a back edge 2155 * exists in the graph and this is a cycle. 2156 */ 2157 for (dld = dt_list_next(&dtp->dt_lib_dep); dld != NULL; 2158 dld = dt_list_next(dld)) { 2159 for (dpld = dt_list_next(&dld->dtld_dependents); dpld != NULL; 2160 dpld = dt_list_next(dpld)) { 2161 dlda = dt_lib_depend_lookup(&dtp->dt_lib_dep_sorted, 2162 dpld->dtld_library); 2163 assert(dlda != NULL); 2164 2165 if (dlda->dtld_finish > dld->dtld_finish) { 2166 dt_lib_depend_error(dtp, 2167 "Cyclic dependency detected: %s => %s\n", 2168 dld->dtld_library, dpld->dtld_library); 2169 2170 return (dt_set_errno(dtp, EDT_COMPILER)); 2171 } 2172 } 2173 } 2174 2175 return (0); 2176 } 2177 2178 static void 2179 dt_lib_depend_free(dtrace_hdl_t *dtp) 2180 { 2181 dt_lib_depend_t *dld, *dlda; 2182 2183 while ((dld = dt_list_next(&dtp->dt_lib_dep)) != NULL) { 2184 while ((dlda = dt_list_next(&dld->dtld_dependencies)) != NULL) { 2185 dt_list_delete(&dld->dtld_dependencies, dlda); 2186 dt_free(dtp, dlda->dtld_library); 2187 dt_free(dtp, dlda->dtld_libpath); 2188 dt_free(dtp, dlda); 2189 } 2190 while ((dlda = dt_list_next(&dld->dtld_dependents)) != NULL) { 2191 dt_list_delete(&dld->dtld_dependents, dlda); 2192 dt_free(dtp, dlda->dtld_library); 2193 dt_free(dtp, dlda->dtld_libpath); 2194 dt_free(dtp, dlda); 2195 } 2196 dt_list_delete(&dtp->dt_lib_dep, dld); 2197 dt_free(dtp, dld->dtld_library); 2198 dt_free(dtp, dld->dtld_libpath); 2199 dt_free(dtp, dld); 2200 } 2201 2202 while ((dld = dt_list_next(&dtp->dt_lib_dep_sorted)) != NULL) { 2203 dt_list_delete(&dtp->dt_lib_dep_sorted, dld); 2204 dt_free(dtp, dld->dtld_library); 2205 dt_free(dtp, dld); 2206 } 2207 } 2208 2209 /* 2210 * Open all the .d library files found in the specified directory and 2211 * compile each one of them. We silently ignore any missing directories and 2212 * other files found therein. We only fail (and thereby fail dt_load_libs()) if 2213 * we fail to compile a library and the error is something other than #pragma D 2214 * depends_on. Dependency errors are silently ignored to permit a library 2215 * directory to contain libraries which may not be accessible depending on our 2216 * privileges. 2217 */ 2218 static int 2219 dt_load_libs_dir(dtrace_hdl_t *dtp, const char *path) 2220 { 2221 struct dirent *dp; 2222 const char *p, *end; 2223 DIR *dirp; 2224 2225 char fname[PATH_MAX]; 2226 FILE *fp; 2227 void *rv; 2228 dt_lib_depend_t *dld; 2229 2230 if ((dirp = opendir(path)) == NULL) { 2231 dt_dprintf("skipping lib dir %s: %s\n", path, strerror(errno)); 2232 return (0); 2233 } 2234 2235 /* First, parse each file for library dependencies. */ 2236 while ((dp = readdir(dirp)) != NULL) { 2237 if ((p = strrchr(dp->d_name, '.')) == NULL || strcmp(p, ".d")) 2238 continue; /* skip any filename not ending in .d */ 2239 2240 (void) snprintf(fname, sizeof (fname), 2241 "%s/%s", path, dp->d_name); 2242 2243 if ((fp = fopen(fname, "r")) == NULL) { 2244 dt_dprintf("skipping library %s: %s\n", 2245 fname, strerror(errno)); 2246 continue; 2247 } 2248 2249 /* 2250 * Skip files whose name match an already processed library 2251 */ 2252 for (dld = dt_list_next(&dtp->dt_lib_dep); dld != NULL; 2253 dld = dt_list_next(dld)) { 2254 end = strrchr(dld->dtld_library, '/'); 2255 /* dt_lib_depend_add ensures this */ 2256 assert(end != NULL); 2257 if (strcmp(end + 1, dp->d_name) == 0) 2258 break; 2259 } 2260 2261 if (dld != NULL) { 2262 dt_dprintf("skipping library %s, already processed " 2263 "library with the same name: %s", dp->d_name, 2264 dld->dtld_library); 2265 continue; 2266 } 2267 2268 dtp->dt_filetag = fname; 2269 if (dt_lib_depend_add(dtp, &dtp->dt_lib_dep, fname) != 0) 2270 return (-1); /* preserve dt_errno */ 2271 2272 rv = dt_compile(dtp, DT_CTX_DPROG, 2273 DTRACE_PROBESPEC_NAME, NULL, 2274 DTRACE_C_EMPTY | DTRACE_C_CTL, 0, NULL, fp, NULL); 2275 2276 if (rv != NULL && dtp->dt_errno && 2277 (dtp->dt_errno != EDT_COMPILER || 2278 dtp->dt_errtag != dt_errtag(D_PRAGMA_DEPEND))) 2279 return (-1); /* preserve dt_errno */ 2280 2281 if (dtp->dt_errno) 2282 dt_dprintf("error parsing library %s: %s\n", 2283 fname, dtrace_errmsg(dtp, dtrace_errno(dtp))); 2284 2285 (void) fclose(fp); 2286 dtp->dt_filetag = NULL; 2287 } 2288 2289 (void) closedir(dirp); 2290 2291 return (0); 2292 } 2293 2294 /* 2295 * Perform a topological sorting of all the libraries found across the entire 2296 * dt_lib_path. Once sorted, compile each one in topological order to cache its 2297 * inlines and translators, etc. We silently ignore any missing directories and 2298 * other files found therein. We only fail (and thereby fail dt_load_libs()) if 2299 * we fail to compile a library and the error is something other than #pragma D 2300 * depends_on. Dependency errors are silently ignored to permit a library 2301 * directory to contain libraries which may not be accessible depending on our 2302 * privileges. 2303 */ 2304 static int 2305 dt_load_libs_sort(dtrace_hdl_t *dtp) 2306 { 2307 dtrace_prog_t *pgp; 2308 FILE *fp; 2309 dt_lib_depend_t *dld; 2310 2311 /* 2312 * Finish building the graph containing the library dependencies 2313 * and perform a topological sort to generate an ordered list 2314 * for compilation. 2315 */ 2316 if (dt_lib_depend_sort(dtp) == -1) 2317 goto err; 2318 2319 for (dld = dt_list_next(&dtp->dt_lib_dep_sorted); dld != NULL; 2320 dld = dt_list_next(dld)) { 2321 2322 if ((fp = fopen(dld->dtld_library, "r")) == NULL) { 2323 dt_dprintf("skipping library %s: %s\n", 2324 dld->dtld_library, strerror(errno)); 2325 continue; 2326 } 2327 2328 dtp->dt_filetag = dld->dtld_library; 2329 pgp = dtrace_program_fcompile(dtp, fp, DTRACE_C_EMPTY, 0, NULL); 2330 (void) fclose(fp); 2331 dtp->dt_filetag = NULL; 2332 2333 if (pgp == NULL && (dtp->dt_errno != EDT_COMPILER || 2334 dtp->dt_errtag != dt_errtag(D_PRAGMA_DEPEND))) 2335 goto err; 2336 2337 if (pgp == NULL) { 2338 dt_dprintf("skipping library %s: %s\n", 2339 dld->dtld_library, 2340 dtrace_errmsg(dtp, dtrace_errno(dtp))); 2341 } else { 2342 dld->dtld_loaded = B_TRUE; 2343 dt_program_destroy(dtp, pgp); 2344 } 2345 } 2346 2347 dt_lib_depend_free(dtp); 2348 return (0); 2349 2350 err: 2351 dt_lib_depend_free(dtp); 2352 return (-1); /* preserve dt_errno */ 2353 } 2354 2355 /* 2356 * Load the contents of any appropriate DTrace .d library files. These files 2357 * contain inlines and translators that will be cached by the compiler. We 2358 * defer this activity until the first compile to permit libdtrace clients to 2359 * add their own library directories and so that we can properly report errors. 2360 */ 2361 static int 2362 dt_load_libs(dtrace_hdl_t *dtp) 2363 { 2364 dt_dirpath_t *dirp; 2365 2366 if (dtp->dt_cflags & DTRACE_C_NOLIBS) 2367 return (0); /* libraries already processed */ 2368 2369 dtp->dt_cflags |= DTRACE_C_NOLIBS; 2370 2371 /* 2372 * /usr/lib/dtrace is always at the head of the list. The rest of the 2373 * list is specified in the precedence order the user requested. Process 2374 * everything other than the head first. DTRACE_C_NOLIBS has already 2375 * been spcified so dt_vopen will ensure that there is always one entry 2376 * in dt_lib_path. 2377 */ 2378 for (dirp = dt_list_next(dt_list_next(&dtp->dt_lib_path)); 2379 dirp != NULL; dirp = dt_list_next(dirp)) { 2380 if (dt_load_libs_dir(dtp, dirp->dir_path) != 0) { 2381 dtp->dt_cflags &= ~DTRACE_C_NOLIBS; 2382 return (-1); /* errno is set for us */ 2383 } 2384 } 2385 2386 /* Handle /usr/lib/dtrace */ 2387 dirp = dt_list_next(&dtp->dt_lib_path); 2388 if (dt_load_libs_dir(dtp, dirp->dir_path) != 0) { 2389 dtp->dt_cflags &= ~DTRACE_C_NOLIBS; 2390 return (-1); /* errno is set for us */ 2391 } 2392 2393 if (dt_load_libs_sort(dtp) < 0) 2394 return (-1); /* errno is set for us */ 2395 2396 return (0); 2397 } 2398 2399 static void * 2400 dt_compile(dtrace_hdl_t *dtp, int context, dtrace_probespec_t pspec, void *arg, 2401 uint_t cflags, int argc, char *const argv[], FILE *fp, const char *s) 2402 { 2403 dt_node_t *dnp; 2404 dt_decl_t *ddp; 2405 dt_pcb_t pcb; 2406 void *rv; 2407 int err; 2408 2409 if ((fp == NULL && s == NULL) || (cflags & ~DTRACE_C_MASK) != 0) { 2410 (void) dt_set_errno(dtp, EINVAL); 2411 return (NULL); 2412 } 2413 2414 if (dt_list_next(&dtp->dt_lib_path) != NULL && dt_load_libs(dtp) != 0) 2415 return (NULL); /* errno is set for us */ 2416 2417 if (dtp->dt_globals->dh_nelems != 0) 2418 (void) dt_idhash_iter(dtp->dt_globals, dt_idreset, NULL); 2419 2420 if (dtp->dt_tls->dh_nelems != 0) 2421 (void) dt_idhash_iter(dtp->dt_tls, dt_idreset, NULL); 2422 2423 if (fp && (cflags & DTRACE_C_CPP) && (fp = dt_preproc(dtp, fp)) == NULL) 2424 return (NULL); /* errno is set for us */ 2425 2426 dt_pcb_push(dtp, &pcb); 2427 2428 pcb.pcb_fileptr = fp; 2429 pcb.pcb_string = s; 2430 pcb.pcb_strptr = s; 2431 pcb.pcb_strlen = s ? strlen(s) : 0; 2432 pcb.pcb_sargc = argc; 2433 pcb.pcb_sargv = argv; 2434 pcb.pcb_sflagv = argc ? calloc(argc, sizeof (ushort_t)) : NULL; 2435 pcb.pcb_pspec = pspec; 2436 pcb.pcb_cflags = dtp->dt_cflags | cflags; 2437 pcb.pcb_amin = dtp->dt_amin; 2438 pcb.pcb_yystate = -1; 2439 pcb.pcb_context = context; 2440 pcb.pcb_token = context; 2441 2442 if (context != DT_CTX_DPROG) 2443 yybegin(YYS_EXPR); 2444 else if (cflags & DTRACE_C_CTL) 2445 yybegin(YYS_CONTROL); 2446 else 2447 yybegin(YYS_CLAUSE); 2448 2449 if ((err = setjmp(yypcb->pcb_jmpbuf)) != 0) 2450 goto out; 2451 2452 if (yypcb->pcb_sargc != 0 && yypcb->pcb_sflagv == NULL) 2453 longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 2454 2455 yypcb->pcb_idents = dt_idhash_create("ambiguous", NULL, 0, 0); 2456 yypcb->pcb_locals = dt_idhash_create("clause local", NULL, 2457 DIF_VAR_OTHER_UBASE, DIF_VAR_OTHER_MAX); 2458 2459 if (yypcb->pcb_idents == NULL || yypcb->pcb_locals == NULL) 2460 longjmp(yypcb->pcb_jmpbuf, EDT_NOMEM); 2461 2462 /* 2463 * Invoke the parser to evaluate the D source code. If any errors 2464 * occur during parsing, an error function will be called and we 2465 * will longjmp back to pcb_jmpbuf to abort. If parsing succeeds, 2466 * we optionally display the parse tree if debugging is enabled. 2467 */ 2468 if (yyparse() != 0 || yypcb->pcb_root == NULL) 2469 xyerror(D_EMPTY, "empty D program translation unit\n"); 2470 2471 yybegin(YYS_DONE); 2472 2473 if (cflags & DTRACE_C_CTL) 2474 goto out; 2475 2476 if (context != DT_CTX_DTYPE && DT_TREEDUMP_PASS(dtp, 1)) 2477 dt_node_printr(yypcb->pcb_root, stderr, 0); 2478 2479 if (yypcb->pcb_pragmas != NULL) 2480 (void) dt_idhash_iter(yypcb->pcb_pragmas, dt_idpragma, NULL); 2481 2482 if (argc > 1 && !(yypcb->pcb_cflags & DTRACE_C_ARGREF) && 2483 !(yypcb->pcb_sflagv[argc - 1] & DT_IDFLG_REF)) { 2484 xyerror(D_MACRO_UNUSED, "extraneous argument '%s' ($%d is " 2485 "not referenced)\n", yypcb->pcb_sargv[argc - 1], argc - 1); 2486 } 2487 2488 /* 2489 * If we have successfully created a parse tree for a D program, loop 2490 * over the clauses and actions and instantiate the corresponding 2491 * libdtrace program. If we are parsing a D expression, then we 2492 * simply run the code generator and assembler on the resulting tree. 2493 */ 2494 switch (context) { 2495 case DT_CTX_DPROG: 2496 assert(yypcb->pcb_root->dn_kind == DT_NODE_PROG); 2497 2498 if ((dnp = yypcb->pcb_root->dn_list) == NULL && 2499 !(yypcb->pcb_cflags & DTRACE_C_EMPTY)) 2500 xyerror(D_EMPTY, "empty D program translation unit\n"); 2501 2502 if ((yypcb->pcb_prog = dt_program_create(dtp)) == NULL) 2503 longjmp(yypcb->pcb_jmpbuf, dtrace_errno(dtp)); 2504 2505 for (; dnp != NULL; dnp = dnp->dn_list) { 2506 switch (dnp->dn_kind) { 2507 case DT_NODE_CLAUSE: 2508 dt_compile_clause(dtp, dnp); 2509 break; 2510 case DT_NODE_XLATOR: 2511 if (dtp->dt_xlatemode == DT_XL_DYNAMIC) 2512 dt_compile_xlator(dnp); 2513 break; 2514 case DT_NODE_PROVIDER: 2515 (void) dt_node_cook(dnp, DT_IDFLG_REF); 2516 break; 2517 } 2518 } 2519 2520 yypcb->pcb_prog->dp_xrefs = yypcb->pcb_asxrefs; 2521 yypcb->pcb_prog->dp_xrefslen = yypcb->pcb_asxreflen; 2522 yypcb->pcb_asxrefs = NULL; 2523 yypcb->pcb_asxreflen = 0; 2524 2525 rv = yypcb->pcb_prog; 2526 break; 2527 2528 case DT_CTX_DEXPR: 2529 (void) dt_node_cook(yypcb->pcb_root, DT_IDFLG_REF); 2530 dt_cg(yypcb, yypcb->pcb_root); 2531 rv = dt_as(yypcb); 2532 break; 2533 2534 case DT_CTX_DTYPE: 2535 ddp = (dt_decl_t *)yypcb->pcb_root; /* root is really a decl */ 2536 err = dt_decl_type(ddp, arg); 2537 dt_decl_free(ddp); 2538 2539 if (err != 0) 2540 longjmp(yypcb->pcb_jmpbuf, EDT_COMPILER); 2541 2542 rv = NULL; 2543 break; 2544 } 2545 2546 out: 2547 if (context != DT_CTX_DTYPE && yypcb->pcb_root != NULL && 2548 DT_TREEDUMP_PASS(dtp, 3)) 2549 dt_node_printr(yypcb->pcb_root, stderr, 0); 2550 2551 if (dtp->dt_cdefs_fd != -1 && (ftruncate64(dtp->dt_cdefs_fd, 0) == -1 || 2552 lseek64(dtp->dt_cdefs_fd, 0, SEEK_SET) == -1 || 2553 ctf_write(dtp->dt_cdefs->dm_ctfp, dtp->dt_cdefs_fd) == CTF_ERR)) 2554 dt_dprintf("failed to update CTF cache: %s\n", strerror(errno)); 2555 2556 if (dtp->dt_ddefs_fd != -1 && (ftruncate64(dtp->dt_ddefs_fd, 0) == -1 || 2557 lseek64(dtp->dt_ddefs_fd, 0, SEEK_SET) == -1 || 2558 ctf_write(dtp->dt_ddefs->dm_ctfp, dtp->dt_ddefs_fd) == CTF_ERR)) 2559 dt_dprintf("failed to update CTF cache: %s\n", strerror(errno)); 2560 2561 if (yypcb->pcb_fileptr && (cflags & DTRACE_C_CPP)) 2562 (void) fclose(yypcb->pcb_fileptr); /* close dt_preproc() file */ 2563 2564 dt_pcb_pop(dtp, err); 2565 (void) dt_set_errno(dtp, err); 2566 return (err ? NULL : rv); 2567 } 2568 2569 dtrace_prog_t * 2570 dtrace_program_strcompile(dtrace_hdl_t *dtp, const char *s, 2571 dtrace_probespec_t spec, uint_t cflags, int argc, char *const argv[]) 2572 { 2573 return (dt_compile(dtp, DT_CTX_DPROG, 2574 spec, NULL, cflags, argc, argv, NULL, s)); 2575 } 2576 2577 dtrace_prog_t * 2578 dtrace_program_fcompile(dtrace_hdl_t *dtp, FILE *fp, 2579 uint_t cflags, int argc, char *const argv[]) 2580 { 2581 return (dt_compile(dtp, DT_CTX_DPROG, 2582 DTRACE_PROBESPEC_NAME, NULL, cflags, argc, argv, fp, NULL)); 2583 } 2584 2585 int 2586 dtrace_type_strcompile(dtrace_hdl_t *dtp, const char *s, dtrace_typeinfo_t *dtt) 2587 { 2588 (void) dt_compile(dtp, DT_CTX_DTYPE, 2589 DTRACE_PROBESPEC_NONE, dtt, 0, 0, NULL, NULL, s); 2590 return (dtp->dt_errno ? -1 : 0); 2591 } 2592 2593 int 2594 dtrace_type_fcompile(dtrace_hdl_t *dtp, FILE *fp, dtrace_typeinfo_t *dtt) 2595 { 2596 (void) dt_compile(dtp, DT_CTX_DTYPE, 2597 DTRACE_PROBESPEC_NONE, dtt, 0, 0, NULL, fp, NULL); 2598 return (dtp->dt_errno ? -1 : 0); 2599 } 2600