1 // SPDX-License-Identifier: GPL-2.0 2 #include <Python.h> 3 #include <structmember.h> 4 #include <inttypes.h> 5 #include <poll.h> 6 #include <linux/err.h> 7 #include <perf/cpumap.h> 8 #include "debug.h" 9 #include "evlist.h" 10 #include "callchain.h" 11 #include "evsel.h" 12 #include "event.h" 13 #include "cpumap.h" 14 #include "print_binary.h" 15 #include "thread_map.h" 16 #include "mmap.h" 17 #include "util.h" 18 #include "../perf-sys.h" 19 20 #if PY_MAJOR_VERSION < 3 21 #define _PyUnicode_FromString(arg) \ 22 PyString_FromString(arg) 23 #define _PyUnicode_AsString(arg) \ 24 PyString_AsString(arg) 25 #define _PyUnicode_FromFormat(...) \ 26 PyString_FromFormat(__VA_ARGS__) 27 #define _PyLong_FromLong(arg) \ 28 PyInt_FromLong(arg) 29 30 #else 31 32 #define _PyUnicode_FromString(arg) \ 33 PyUnicode_FromString(arg) 34 #define _PyUnicode_FromFormat(...) \ 35 PyUnicode_FromFormat(__VA_ARGS__) 36 #define _PyLong_FromLong(arg) \ 37 PyLong_FromLong(arg) 38 #endif 39 40 #ifndef Py_TYPE 41 #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type) 42 #endif 43 44 /* 45 * Provide these two so that we don't have to link against callchain.c and 46 * start dragging hist.c, etc. 47 */ 48 struct callchain_param callchain_param; 49 50 int parse_callchain_record(const char *arg __maybe_unused, 51 struct callchain_param *param __maybe_unused) 52 { 53 return 0; 54 } 55 56 /* 57 * Support debug printing even though util/debug.c is not linked. That means 58 * implementing 'verbose' and 'eprintf'. 59 */ 60 int verbose; 61 62 int eprintf(int level, int var, const char *fmt, ...) 63 { 64 va_list args; 65 int ret = 0; 66 67 if (var >= level) { 68 va_start(args, fmt); 69 ret = vfprintf(stderr, fmt, args); 70 va_end(args); 71 } 72 73 return ret; 74 } 75 76 /* Define PyVarObject_HEAD_INIT for python 2.5 */ 77 #ifndef PyVarObject_HEAD_INIT 78 # define PyVarObject_HEAD_INIT(type, size) PyObject_HEAD_INIT(type) size, 79 #endif 80 81 #if PY_MAJOR_VERSION < 3 82 PyMODINIT_FUNC initperf(void); 83 #else 84 PyMODINIT_FUNC PyInit_perf(void); 85 #endif 86 87 #define member_def(type, member, ptype, help) \ 88 { #member, ptype, \ 89 offsetof(struct pyrf_event, event) + offsetof(struct type, member), \ 90 0, help } 91 92 #define sample_member_def(name, member, ptype, help) \ 93 { #name, ptype, \ 94 offsetof(struct pyrf_event, sample) + offsetof(struct perf_sample, member), \ 95 0, help } 96 97 struct pyrf_event { 98 PyObject_HEAD 99 struct evsel *evsel; 100 struct perf_sample sample; 101 union perf_event event; 102 }; 103 104 #define sample_members \ 105 sample_member_def(sample_ip, ip, T_ULONGLONG, "event type"), \ 106 sample_member_def(sample_pid, pid, T_INT, "event pid"), \ 107 sample_member_def(sample_tid, tid, T_INT, "event tid"), \ 108 sample_member_def(sample_time, time, T_ULONGLONG, "event timestamp"), \ 109 sample_member_def(sample_addr, addr, T_ULONGLONG, "event addr"), \ 110 sample_member_def(sample_id, id, T_ULONGLONG, "event id"), \ 111 sample_member_def(sample_stream_id, stream_id, T_ULONGLONG, "event stream id"), \ 112 sample_member_def(sample_period, period, T_ULONGLONG, "event period"), \ 113 sample_member_def(sample_cpu, cpu, T_UINT, "event cpu"), 114 115 static char pyrf_mmap_event__doc[] = PyDoc_STR("perf mmap event object."); 116 117 static PyMemberDef pyrf_mmap_event__members[] = { 118 sample_members 119 member_def(perf_event_header, type, T_UINT, "event type"), 120 member_def(perf_event_header, misc, T_UINT, "event misc"), 121 member_def(perf_record_mmap, pid, T_UINT, "event pid"), 122 member_def(perf_record_mmap, tid, T_UINT, "event tid"), 123 member_def(perf_record_mmap, start, T_ULONGLONG, "start of the map"), 124 member_def(perf_record_mmap, len, T_ULONGLONG, "map length"), 125 member_def(perf_record_mmap, pgoff, T_ULONGLONG, "page offset"), 126 member_def(perf_record_mmap, filename, T_STRING_INPLACE, "backing store"), 127 { .name = NULL, }, 128 }; 129 130 static PyObject *pyrf_mmap_event__repr(struct pyrf_event *pevent) 131 { 132 PyObject *ret; 133 char *s; 134 135 if (asprintf(&s, "{ type: mmap, pid: %u, tid: %u, start: %#" PRI_lx64 ", " 136 "length: %#" PRI_lx64 ", offset: %#" PRI_lx64 ", " 137 "filename: %s }", 138 pevent->event.mmap.pid, pevent->event.mmap.tid, 139 pevent->event.mmap.start, pevent->event.mmap.len, 140 pevent->event.mmap.pgoff, pevent->event.mmap.filename) < 0) { 141 ret = PyErr_NoMemory(); 142 } else { 143 ret = _PyUnicode_FromString(s); 144 free(s); 145 } 146 return ret; 147 } 148 149 static PyTypeObject pyrf_mmap_event__type = { 150 PyVarObject_HEAD_INIT(NULL, 0) 151 .tp_name = "perf.mmap_event", 152 .tp_basicsize = sizeof(struct pyrf_event), 153 .tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, 154 .tp_doc = pyrf_mmap_event__doc, 155 .tp_members = pyrf_mmap_event__members, 156 .tp_repr = (reprfunc)pyrf_mmap_event__repr, 157 }; 158 159 static char pyrf_task_event__doc[] = PyDoc_STR("perf task (fork/exit) event object."); 160 161 static PyMemberDef pyrf_task_event__members[] = { 162 sample_members 163 member_def(perf_event_header, type, T_UINT, "event type"), 164 member_def(perf_record_fork, pid, T_UINT, "event pid"), 165 member_def(perf_record_fork, ppid, T_UINT, "event ppid"), 166 member_def(perf_record_fork, tid, T_UINT, "event tid"), 167 member_def(perf_record_fork, ptid, T_UINT, "event ptid"), 168 member_def(perf_record_fork, time, T_ULONGLONG, "timestamp"), 169 { .name = NULL, }, 170 }; 171 172 static PyObject *pyrf_task_event__repr(struct pyrf_event *pevent) 173 { 174 return _PyUnicode_FromFormat("{ type: %s, pid: %u, ppid: %u, tid: %u, " 175 "ptid: %u, time: %" PRI_lu64 "}", 176 pevent->event.header.type == PERF_RECORD_FORK ? "fork" : "exit", 177 pevent->event.fork.pid, 178 pevent->event.fork.ppid, 179 pevent->event.fork.tid, 180 pevent->event.fork.ptid, 181 pevent->event.fork.time); 182 } 183 184 static PyTypeObject pyrf_task_event__type = { 185 PyVarObject_HEAD_INIT(NULL, 0) 186 .tp_name = "perf.task_event", 187 .tp_basicsize = sizeof(struct pyrf_event), 188 .tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, 189 .tp_doc = pyrf_task_event__doc, 190 .tp_members = pyrf_task_event__members, 191 .tp_repr = (reprfunc)pyrf_task_event__repr, 192 }; 193 194 static char pyrf_comm_event__doc[] = PyDoc_STR("perf comm event object."); 195 196 static PyMemberDef pyrf_comm_event__members[] = { 197 sample_members 198 member_def(perf_event_header, type, T_UINT, "event type"), 199 member_def(perf_record_comm, pid, T_UINT, "event pid"), 200 member_def(perf_record_comm, tid, T_UINT, "event tid"), 201 member_def(perf_record_comm, comm, T_STRING_INPLACE, "process name"), 202 { .name = NULL, }, 203 }; 204 205 static PyObject *pyrf_comm_event__repr(struct pyrf_event *pevent) 206 { 207 return _PyUnicode_FromFormat("{ type: comm, pid: %u, tid: %u, comm: %s }", 208 pevent->event.comm.pid, 209 pevent->event.comm.tid, 210 pevent->event.comm.comm); 211 } 212 213 static PyTypeObject pyrf_comm_event__type = { 214 PyVarObject_HEAD_INIT(NULL, 0) 215 .tp_name = "perf.comm_event", 216 .tp_basicsize = sizeof(struct pyrf_event), 217 .tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, 218 .tp_doc = pyrf_comm_event__doc, 219 .tp_members = pyrf_comm_event__members, 220 .tp_repr = (reprfunc)pyrf_comm_event__repr, 221 }; 222 223 static char pyrf_throttle_event__doc[] = PyDoc_STR("perf throttle event object."); 224 225 static PyMemberDef pyrf_throttle_event__members[] = { 226 sample_members 227 member_def(perf_event_header, type, T_UINT, "event type"), 228 member_def(perf_record_throttle, time, T_ULONGLONG, "timestamp"), 229 member_def(perf_record_throttle, id, T_ULONGLONG, "event id"), 230 member_def(perf_record_throttle, stream_id, T_ULONGLONG, "event stream id"), 231 { .name = NULL, }, 232 }; 233 234 static PyObject *pyrf_throttle_event__repr(struct pyrf_event *pevent) 235 { 236 struct perf_record_throttle *te = (struct perf_record_throttle *)(&pevent->event.header + 1); 237 238 return _PyUnicode_FromFormat("{ type: %sthrottle, time: %" PRI_lu64 ", id: %" PRI_lu64 239 ", stream_id: %" PRI_lu64 " }", 240 pevent->event.header.type == PERF_RECORD_THROTTLE ? "" : "un", 241 te->time, te->id, te->stream_id); 242 } 243 244 static PyTypeObject pyrf_throttle_event__type = { 245 PyVarObject_HEAD_INIT(NULL, 0) 246 .tp_name = "perf.throttle_event", 247 .tp_basicsize = sizeof(struct pyrf_event), 248 .tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, 249 .tp_doc = pyrf_throttle_event__doc, 250 .tp_members = pyrf_throttle_event__members, 251 .tp_repr = (reprfunc)pyrf_throttle_event__repr, 252 }; 253 254 static char pyrf_lost_event__doc[] = PyDoc_STR("perf lost event object."); 255 256 static PyMemberDef pyrf_lost_event__members[] = { 257 sample_members 258 member_def(perf_record_lost, id, T_ULONGLONG, "event id"), 259 member_def(perf_record_lost, lost, T_ULONGLONG, "number of lost events"), 260 { .name = NULL, }, 261 }; 262 263 static PyObject *pyrf_lost_event__repr(struct pyrf_event *pevent) 264 { 265 PyObject *ret; 266 char *s; 267 268 if (asprintf(&s, "{ type: lost, id: %#" PRI_lx64 ", " 269 "lost: %#" PRI_lx64 " }", 270 pevent->event.lost.id, pevent->event.lost.lost) < 0) { 271 ret = PyErr_NoMemory(); 272 } else { 273 ret = _PyUnicode_FromString(s); 274 free(s); 275 } 276 return ret; 277 } 278 279 static PyTypeObject pyrf_lost_event__type = { 280 PyVarObject_HEAD_INIT(NULL, 0) 281 .tp_name = "perf.lost_event", 282 .tp_basicsize = sizeof(struct pyrf_event), 283 .tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, 284 .tp_doc = pyrf_lost_event__doc, 285 .tp_members = pyrf_lost_event__members, 286 .tp_repr = (reprfunc)pyrf_lost_event__repr, 287 }; 288 289 static char pyrf_read_event__doc[] = PyDoc_STR("perf read event object."); 290 291 static PyMemberDef pyrf_read_event__members[] = { 292 sample_members 293 member_def(perf_record_read, pid, T_UINT, "event pid"), 294 member_def(perf_record_read, tid, T_UINT, "event tid"), 295 { .name = NULL, }, 296 }; 297 298 static PyObject *pyrf_read_event__repr(struct pyrf_event *pevent) 299 { 300 return _PyUnicode_FromFormat("{ type: read, pid: %u, tid: %u }", 301 pevent->event.read.pid, 302 pevent->event.read.tid); 303 /* 304 * FIXME: return the array of read values, 305 * making this method useful ;-) 306 */ 307 } 308 309 static PyTypeObject pyrf_read_event__type = { 310 PyVarObject_HEAD_INIT(NULL, 0) 311 .tp_name = "perf.read_event", 312 .tp_basicsize = sizeof(struct pyrf_event), 313 .tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, 314 .tp_doc = pyrf_read_event__doc, 315 .tp_members = pyrf_read_event__members, 316 .tp_repr = (reprfunc)pyrf_read_event__repr, 317 }; 318 319 static char pyrf_sample_event__doc[] = PyDoc_STR("perf sample event object."); 320 321 static PyMemberDef pyrf_sample_event__members[] = { 322 sample_members 323 member_def(perf_event_header, type, T_UINT, "event type"), 324 { .name = NULL, }, 325 }; 326 327 static PyObject *pyrf_sample_event__repr(struct pyrf_event *pevent) 328 { 329 PyObject *ret; 330 char *s; 331 332 if (asprintf(&s, "{ type: sample }") < 0) { 333 ret = PyErr_NoMemory(); 334 } else { 335 ret = _PyUnicode_FromString(s); 336 free(s); 337 } 338 return ret; 339 } 340 341 static bool is_tracepoint(struct pyrf_event *pevent) 342 { 343 return pevent->evsel->core.attr.type == PERF_TYPE_TRACEPOINT; 344 } 345 346 static PyObject* 347 tracepoint_field(struct pyrf_event *pe, struct tep_format_field *field) 348 { 349 struct tep_handle *pevent = field->event->tep; 350 void *data = pe->sample.raw_data; 351 PyObject *ret = NULL; 352 unsigned long long val; 353 unsigned int offset, len; 354 355 if (field->flags & TEP_FIELD_IS_ARRAY) { 356 offset = field->offset; 357 len = field->size; 358 if (field->flags & TEP_FIELD_IS_DYNAMIC) { 359 val = tep_read_number(pevent, data + offset, len); 360 offset = val; 361 len = offset >> 16; 362 offset &= 0xffff; 363 } 364 if (field->flags & TEP_FIELD_IS_STRING && 365 is_printable_array(data + offset, len)) { 366 ret = _PyUnicode_FromString((char *)data + offset); 367 } else { 368 ret = PyByteArray_FromStringAndSize((const char *) data + offset, len); 369 field->flags &= ~TEP_FIELD_IS_STRING; 370 } 371 } else { 372 val = tep_read_number(pevent, data + field->offset, 373 field->size); 374 if (field->flags & TEP_FIELD_IS_POINTER) 375 ret = PyLong_FromUnsignedLong((unsigned long) val); 376 else if (field->flags & TEP_FIELD_IS_SIGNED) 377 ret = PyLong_FromLong((long) val); 378 else 379 ret = PyLong_FromUnsignedLong((unsigned long) val); 380 } 381 382 return ret; 383 } 384 385 static PyObject* 386 get_tracepoint_field(struct pyrf_event *pevent, PyObject *attr_name) 387 { 388 const char *str = _PyUnicode_AsString(PyObject_Str(attr_name)); 389 struct evsel *evsel = pevent->evsel; 390 struct tep_format_field *field; 391 392 if (!evsel->tp_format) { 393 struct tep_event *tp_format; 394 395 tp_format = trace_event__tp_format_id(evsel->core.attr.config); 396 if (!tp_format) 397 return NULL; 398 399 evsel->tp_format = tp_format; 400 } 401 402 field = tep_find_any_field(evsel->tp_format, str); 403 if (!field) 404 return NULL; 405 406 return tracepoint_field(pevent, field); 407 } 408 409 static PyObject* 410 pyrf_sample_event__getattro(struct pyrf_event *pevent, PyObject *attr_name) 411 { 412 PyObject *obj = NULL; 413 414 if (is_tracepoint(pevent)) 415 obj = get_tracepoint_field(pevent, attr_name); 416 417 return obj ?: PyObject_GenericGetAttr((PyObject *) pevent, attr_name); 418 } 419 420 static PyTypeObject pyrf_sample_event__type = { 421 PyVarObject_HEAD_INIT(NULL, 0) 422 .tp_name = "perf.sample_event", 423 .tp_basicsize = sizeof(struct pyrf_event), 424 .tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, 425 .tp_doc = pyrf_sample_event__doc, 426 .tp_members = pyrf_sample_event__members, 427 .tp_repr = (reprfunc)pyrf_sample_event__repr, 428 .tp_getattro = (getattrofunc) pyrf_sample_event__getattro, 429 }; 430 431 static char pyrf_context_switch_event__doc[] = PyDoc_STR("perf context_switch event object."); 432 433 static PyMemberDef pyrf_context_switch_event__members[] = { 434 sample_members 435 member_def(perf_event_header, type, T_UINT, "event type"), 436 member_def(perf_record_switch, next_prev_pid, T_UINT, "next/prev pid"), 437 member_def(perf_record_switch, next_prev_tid, T_UINT, "next/prev tid"), 438 { .name = NULL, }, 439 }; 440 441 static PyObject *pyrf_context_switch_event__repr(struct pyrf_event *pevent) 442 { 443 PyObject *ret; 444 char *s; 445 446 if (asprintf(&s, "{ type: context_switch, next_prev_pid: %u, next_prev_tid: %u, switch_out: %u }", 447 pevent->event.context_switch.next_prev_pid, 448 pevent->event.context_switch.next_prev_tid, 449 !!(pevent->event.header.misc & PERF_RECORD_MISC_SWITCH_OUT)) < 0) { 450 ret = PyErr_NoMemory(); 451 } else { 452 ret = _PyUnicode_FromString(s); 453 free(s); 454 } 455 return ret; 456 } 457 458 static PyTypeObject pyrf_context_switch_event__type = { 459 PyVarObject_HEAD_INIT(NULL, 0) 460 .tp_name = "perf.context_switch_event", 461 .tp_basicsize = sizeof(struct pyrf_event), 462 .tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, 463 .tp_doc = pyrf_context_switch_event__doc, 464 .tp_members = pyrf_context_switch_event__members, 465 .tp_repr = (reprfunc)pyrf_context_switch_event__repr, 466 }; 467 468 static int pyrf_event__setup_types(void) 469 { 470 int err; 471 pyrf_mmap_event__type.tp_new = 472 pyrf_task_event__type.tp_new = 473 pyrf_comm_event__type.tp_new = 474 pyrf_lost_event__type.tp_new = 475 pyrf_read_event__type.tp_new = 476 pyrf_sample_event__type.tp_new = 477 pyrf_context_switch_event__type.tp_new = 478 pyrf_throttle_event__type.tp_new = PyType_GenericNew; 479 err = PyType_Ready(&pyrf_mmap_event__type); 480 if (err < 0) 481 goto out; 482 err = PyType_Ready(&pyrf_lost_event__type); 483 if (err < 0) 484 goto out; 485 err = PyType_Ready(&pyrf_task_event__type); 486 if (err < 0) 487 goto out; 488 err = PyType_Ready(&pyrf_comm_event__type); 489 if (err < 0) 490 goto out; 491 err = PyType_Ready(&pyrf_throttle_event__type); 492 if (err < 0) 493 goto out; 494 err = PyType_Ready(&pyrf_read_event__type); 495 if (err < 0) 496 goto out; 497 err = PyType_Ready(&pyrf_sample_event__type); 498 if (err < 0) 499 goto out; 500 err = PyType_Ready(&pyrf_context_switch_event__type); 501 if (err < 0) 502 goto out; 503 out: 504 return err; 505 } 506 507 static PyTypeObject *pyrf_event__type[] = { 508 [PERF_RECORD_MMAP] = &pyrf_mmap_event__type, 509 [PERF_RECORD_LOST] = &pyrf_lost_event__type, 510 [PERF_RECORD_COMM] = &pyrf_comm_event__type, 511 [PERF_RECORD_EXIT] = &pyrf_task_event__type, 512 [PERF_RECORD_THROTTLE] = &pyrf_throttle_event__type, 513 [PERF_RECORD_UNTHROTTLE] = &pyrf_throttle_event__type, 514 [PERF_RECORD_FORK] = &pyrf_task_event__type, 515 [PERF_RECORD_READ] = &pyrf_read_event__type, 516 [PERF_RECORD_SAMPLE] = &pyrf_sample_event__type, 517 [PERF_RECORD_SWITCH] = &pyrf_context_switch_event__type, 518 [PERF_RECORD_SWITCH_CPU_WIDE] = &pyrf_context_switch_event__type, 519 }; 520 521 static PyObject *pyrf_event__new(union perf_event *event) 522 { 523 struct pyrf_event *pevent; 524 PyTypeObject *ptype; 525 526 if ((event->header.type < PERF_RECORD_MMAP || 527 event->header.type > PERF_RECORD_SAMPLE) && 528 !(event->header.type == PERF_RECORD_SWITCH || 529 event->header.type == PERF_RECORD_SWITCH_CPU_WIDE)) 530 return NULL; 531 532 ptype = pyrf_event__type[event->header.type]; 533 pevent = PyObject_New(struct pyrf_event, ptype); 534 if (pevent != NULL) 535 memcpy(&pevent->event, event, event->header.size); 536 return (PyObject *)pevent; 537 } 538 539 struct pyrf_cpu_map { 540 PyObject_HEAD 541 542 struct perf_cpu_map *cpus; 543 }; 544 545 static int pyrf_cpu_map__init(struct pyrf_cpu_map *pcpus, 546 PyObject *args, PyObject *kwargs) 547 { 548 static char *kwlist[] = { "cpustr", NULL }; 549 char *cpustr = NULL; 550 551 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|s", 552 kwlist, &cpustr)) 553 return -1; 554 555 pcpus->cpus = perf_cpu_map__new(cpustr); 556 if (pcpus->cpus == NULL) 557 return -1; 558 return 0; 559 } 560 561 static void pyrf_cpu_map__delete(struct pyrf_cpu_map *pcpus) 562 { 563 perf_cpu_map__put(pcpus->cpus); 564 Py_TYPE(pcpus)->tp_free((PyObject*)pcpus); 565 } 566 567 static Py_ssize_t pyrf_cpu_map__length(PyObject *obj) 568 { 569 struct pyrf_cpu_map *pcpus = (void *)obj; 570 571 return pcpus->cpus->nr; 572 } 573 574 static PyObject *pyrf_cpu_map__item(PyObject *obj, Py_ssize_t i) 575 { 576 struct pyrf_cpu_map *pcpus = (void *)obj; 577 578 if (i >= pcpus->cpus->nr) 579 return NULL; 580 581 return Py_BuildValue("i", pcpus->cpus->map[i]); 582 } 583 584 static PySequenceMethods pyrf_cpu_map__sequence_methods = { 585 .sq_length = pyrf_cpu_map__length, 586 .sq_item = pyrf_cpu_map__item, 587 }; 588 589 static char pyrf_cpu_map__doc[] = PyDoc_STR("cpu map object."); 590 591 static PyTypeObject pyrf_cpu_map__type = { 592 PyVarObject_HEAD_INIT(NULL, 0) 593 .tp_name = "perf.cpu_map", 594 .tp_basicsize = sizeof(struct pyrf_cpu_map), 595 .tp_dealloc = (destructor)pyrf_cpu_map__delete, 596 .tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, 597 .tp_doc = pyrf_cpu_map__doc, 598 .tp_as_sequence = &pyrf_cpu_map__sequence_methods, 599 .tp_init = (initproc)pyrf_cpu_map__init, 600 }; 601 602 static int pyrf_cpu_map__setup_types(void) 603 { 604 pyrf_cpu_map__type.tp_new = PyType_GenericNew; 605 return PyType_Ready(&pyrf_cpu_map__type); 606 } 607 608 struct pyrf_thread_map { 609 PyObject_HEAD 610 611 struct perf_thread_map *threads; 612 }; 613 614 static int pyrf_thread_map__init(struct pyrf_thread_map *pthreads, 615 PyObject *args, PyObject *kwargs) 616 { 617 static char *kwlist[] = { "pid", "tid", "uid", NULL }; 618 int pid = -1, tid = -1, uid = UINT_MAX; 619 620 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|iii", 621 kwlist, &pid, &tid, &uid)) 622 return -1; 623 624 pthreads->threads = thread_map__new(pid, tid, uid); 625 if (pthreads->threads == NULL) 626 return -1; 627 return 0; 628 } 629 630 static void pyrf_thread_map__delete(struct pyrf_thread_map *pthreads) 631 { 632 perf_thread_map__put(pthreads->threads); 633 Py_TYPE(pthreads)->tp_free((PyObject*)pthreads); 634 } 635 636 static Py_ssize_t pyrf_thread_map__length(PyObject *obj) 637 { 638 struct pyrf_thread_map *pthreads = (void *)obj; 639 640 return pthreads->threads->nr; 641 } 642 643 static PyObject *pyrf_thread_map__item(PyObject *obj, Py_ssize_t i) 644 { 645 struct pyrf_thread_map *pthreads = (void *)obj; 646 647 if (i >= pthreads->threads->nr) 648 return NULL; 649 650 return Py_BuildValue("i", pthreads->threads->map[i]); 651 } 652 653 static PySequenceMethods pyrf_thread_map__sequence_methods = { 654 .sq_length = pyrf_thread_map__length, 655 .sq_item = pyrf_thread_map__item, 656 }; 657 658 static char pyrf_thread_map__doc[] = PyDoc_STR("thread map object."); 659 660 static PyTypeObject pyrf_thread_map__type = { 661 PyVarObject_HEAD_INIT(NULL, 0) 662 .tp_name = "perf.thread_map", 663 .tp_basicsize = sizeof(struct pyrf_thread_map), 664 .tp_dealloc = (destructor)pyrf_thread_map__delete, 665 .tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, 666 .tp_doc = pyrf_thread_map__doc, 667 .tp_as_sequence = &pyrf_thread_map__sequence_methods, 668 .tp_init = (initproc)pyrf_thread_map__init, 669 }; 670 671 static int pyrf_thread_map__setup_types(void) 672 { 673 pyrf_thread_map__type.tp_new = PyType_GenericNew; 674 return PyType_Ready(&pyrf_thread_map__type); 675 } 676 677 struct pyrf_evsel { 678 PyObject_HEAD 679 680 struct evsel evsel; 681 }; 682 683 static int pyrf_evsel__init(struct pyrf_evsel *pevsel, 684 PyObject *args, PyObject *kwargs) 685 { 686 struct perf_event_attr attr = { 687 .type = PERF_TYPE_HARDWARE, 688 .config = PERF_COUNT_HW_CPU_CYCLES, 689 .sample_type = PERF_SAMPLE_PERIOD | PERF_SAMPLE_TID, 690 }; 691 static char *kwlist[] = { 692 "type", 693 "config", 694 "sample_freq", 695 "sample_period", 696 "sample_type", 697 "read_format", 698 "disabled", 699 "inherit", 700 "pinned", 701 "exclusive", 702 "exclude_user", 703 "exclude_kernel", 704 "exclude_hv", 705 "exclude_idle", 706 "mmap", 707 "context_switch", 708 "comm", 709 "freq", 710 "inherit_stat", 711 "enable_on_exec", 712 "task", 713 "watermark", 714 "precise_ip", 715 "mmap_data", 716 "sample_id_all", 717 "wakeup_events", 718 "bp_type", 719 "bp_addr", 720 "bp_len", 721 NULL 722 }; 723 u64 sample_period = 0; 724 u32 disabled = 0, 725 inherit = 0, 726 pinned = 0, 727 exclusive = 0, 728 exclude_user = 0, 729 exclude_kernel = 0, 730 exclude_hv = 0, 731 exclude_idle = 0, 732 mmap = 0, 733 context_switch = 0, 734 comm = 0, 735 freq = 1, 736 inherit_stat = 0, 737 enable_on_exec = 0, 738 task = 0, 739 watermark = 0, 740 precise_ip = 0, 741 mmap_data = 0, 742 sample_id_all = 1; 743 int idx = 0; 744 745 if (!PyArg_ParseTupleAndKeywords(args, kwargs, 746 "|iKiKKiiiiiiiiiiiiiiiiiiiiiiKK", kwlist, 747 &attr.type, &attr.config, &attr.sample_freq, 748 &sample_period, &attr.sample_type, 749 &attr.read_format, &disabled, &inherit, 750 &pinned, &exclusive, &exclude_user, 751 &exclude_kernel, &exclude_hv, &exclude_idle, 752 &mmap, &context_switch, &comm, &freq, &inherit_stat, 753 &enable_on_exec, &task, &watermark, 754 &precise_ip, &mmap_data, &sample_id_all, 755 &attr.wakeup_events, &attr.bp_type, 756 &attr.bp_addr, &attr.bp_len, &idx)) 757 return -1; 758 759 /* union... */ 760 if (sample_period != 0) { 761 if (attr.sample_freq != 0) 762 return -1; /* FIXME: throw right exception */ 763 attr.sample_period = sample_period; 764 } 765 766 /* Bitfields */ 767 attr.disabled = disabled; 768 attr.inherit = inherit; 769 attr.pinned = pinned; 770 attr.exclusive = exclusive; 771 attr.exclude_user = exclude_user; 772 attr.exclude_kernel = exclude_kernel; 773 attr.exclude_hv = exclude_hv; 774 attr.exclude_idle = exclude_idle; 775 attr.mmap = mmap; 776 attr.context_switch = context_switch; 777 attr.comm = comm; 778 attr.freq = freq; 779 attr.inherit_stat = inherit_stat; 780 attr.enable_on_exec = enable_on_exec; 781 attr.task = task; 782 attr.watermark = watermark; 783 attr.precise_ip = precise_ip; 784 attr.mmap_data = mmap_data; 785 attr.sample_id_all = sample_id_all; 786 attr.size = sizeof(attr); 787 788 evsel__init(&pevsel->evsel, &attr, idx); 789 return 0; 790 } 791 792 static void pyrf_evsel__delete(struct pyrf_evsel *pevsel) 793 { 794 perf_evsel__exit(&pevsel->evsel); 795 Py_TYPE(pevsel)->tp_free((PyObject*)pevsel); 796 } 797 798 static PyObject *pyrf_evsel__open(struct pyrf_evsel *pevsel, 799 PyObject *args, PyObject *kwargs) 800 { 801 struct evsel *evsel = &pevsel->evsel; 802 struct perf_cpu_map *cpus = NULL; 803 struct perf_thread_map *threads = NULL; 804 PyObject *pcpus = NULL, *pthreads = NULL; 805 int group = 0, inherit = 0; 806 static char *kwlist[] = { "cpus", "threads", "group", "inherit", NULL }; 807 808 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|OOii", kwlist, 809 &pcpus, &pthreads, &group, &inherit)) 810 return NULL; 811 812 if (pthreads != NULL) 813 threads = ((struct pyrf_thread_map *)pthreads)->threads; 814 815 if (pcpus != NULL) 816 cpus = ((struct pyrf_cpu_map *)pcpus)->cpus; 817 818 evsel->core.attr.inherit = inherit; 819 /* 820 * This will group just the fds for this single evsel, to group 821 * multiple events, use evlist.open(). 822 */ 823 if (evsel__open(evsel, cpus, threads) < 0) { 824 PyErr_SetFromErrno(PyExc_OSError); 825 return NULL; 826 } 827 828 Py_INCREF(Py_None); 829 return Py_None; 830 } 831 832 static PyMethodDef pyrf_evsel__methods[] = { 833 { 834 .ml_name = "open", 835 .ml_meth = (PyCFunction)pyrf_evsel__open, 836 .ml_flags = METH_VARARGS | METH_KEYWORDS, 837 .ml_doc = PyDoc_STR("open the event selector file descriptor table.") 838 }, 839 { .ml_name = NULL, } 840 }; 841 842 static char pyrf_evsel__doc[] = PyDoc_STR("perf event selector list object."); 843 844 static PyTypeObject pyrf_evsel__type = { 845 PyVarObject_HEAD_INIT(NULL, 0) 846 .tp_name = "perf.evsel", 847 .tp_basicsize = sizeof(struct pyrf_evsel), 848 .tp_dealloc = (destructor)pyrf_evsel__delete, 849 .tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, 850 .tp_doc = pyrf_evsel__doc, 851 .tp_methods = pyrf_evsel__methods, 852 .tp_init = (initproc)pyrf_evsel__init, 853 }; 854 855 static int pyrf_evsel__setup_types(void) 856 { 857 pyrf_evsel__type.tp_new = PyType_GenericNew; 858 return PyType_Ready(&pyrf_evsel__type); 859 } 860 861 struct pyrf_evlist { 862 PyObject_HEAD 863 864 struct evlist evlist; 865 }; 866 867 static int pyrf_evlist__init(struct pyrf_evlist *pevlist, 868 PyObject *args, PyObject *kwargs __maybe_unused) 869 { 870 PyObject *pcpus = NULL, *pthreads = NULL; 871 struct perf_cpu_map *cpus; 872 struct perf_thread_map *threads; 873 874 if (!PyArg_ParseTuple(args, "OO", &pcpus, &pthreads)) 875 return -1; 876 877 threads = ((struct pyrf_thread_map *)pthreads)->threads; 878 cpus = ((struct pyrf_cpu_map *)pcpus)->cpus; 879 evlist__init(&pevlist->evlist, cpus, threads); 880 return 0; 881 } 882 883 static void pyrf_evlist__delete(struct pyrf_evlist *pevlist) 884 { 885 perf_evlist__exit(&pevlist->evlist); 886 Py_TYPE(pevlist)->tp_free((PyObject*)pevlist); 887 } 888 889 static PyObject *pyrf_evlist__mmap(struct pyrf_evlist *pevlist, 890 PyObject *args, PyObject *kwargs) 891 { 892 struct evlist *evlist = &pevlist->evlist; 893 static char *kwlist[] = { "pages", "overwrite", NULL }; 894 int pages = 128, overwrite = false; 895 896 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|ii", kwlist, 897 &pages, &overwrite)) 898 return NULL; 899 900 if (perf_evlist__mmap(evlist, pages) < 0) { 901 PyErr_SetFromErrno(PyExc_OSError); 902 return NULL; 903 } 904 905 Py_INCREF(Py_None); 906 return Py_None; 907 } 908 909 static PyObject *pyrf_evlist__poll(struct pyrf_evlist *pevlist, 910 PyObject *args, PyObject *kwargs) 911 { 912 struct evlist *evlist = &pevlist->evlist; 913 static char *kwlist[] = { "timeout", NULL }; 914 int timeout = -1, n; 915 916 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|i", kwlist, &timeout)) 917 return NULL; 918 919 n = perf_evlist__poll(evlist, timeout); 920 if (n < 0) { 921 PyErr_SetFromErrno(PyExc_OSError); 922 return NULL; 923 } 924 925 return Py_BuildValue("i", n); 926 } 927 928 static PyObject *pyrf_evlist__get_pollfd(struct pyrf_evlist *pevlist, 929 PyObject *args __maybe_unused, 930 PyObject *kwargs __maybe_unused) 931 { 932 struct evlist *evlist = &pevlist->evlist; 933 PyObject *list = PyList_New(0); 934 int i; 935 936 for (i = 0; i < evlist->pollfd.nr; ++i) { 937 PyObject *file; 938 #if PY_MAJOR_VERSION < 3 939 FILE *fp = fdopen(evlist->pollfd.entries[i].fd, "r"); 940 941 if (fp == NULL) 942 goto free_list; 943 944 file = PyFile_FromFile(fp, "perf", "r", NULL); 945 #else 946 file = PyFile_FromFd(evlist->pollfd.entries[i].fd, "perf", "r", -1, 947 NULL, NULL, NULL, 0); 948 #endif 949 if (file == NULL) 950 goto free_list; 951 952 if (PyList_Append(list, file) != 0) { 953 Py_DECREF(file); 954 goto free_list; 955 } 956 957 Py_DECREF(file); 958 } 959 960 return list; 961 free_list: 962 return PyErr_NoMemory(); 963 } 964 965 966 static PyObject *pyrf_evlist__add(struct pyrf_evlist *pevlist, 967 PyObject *args, 968 PyObject *kwargs __maybe_unused) 969 { 970 struct evlist *evlist = &pevlist->evlist; 971 PyObject *pevsel; 972 struct evsel *evsel; 973 974 if (!PyArg_ParseTuple(args, "O", &pevsel)) 975 return NULL; 976 977 Py_INCREF(pevsel); 978 evsel = &((struct pyrf_evsel *)pevsel)->evsel; 979 evsel->idx = evlist->core.nr_entries; 980 evlist__add(evlist, evsel); 981 982 return Py_BuildValue("i", evlist->core.nr_entries); 983 } 984 985 static struct perf_mmap *get_md(struct evlist *evlist, int cpu) 986 { 987 int i; 988 989 for (i = 0; i < evlist->nr_mmaps; i++) { 990 struct perf_mmap *md = &evlist->mmap[i]; 991 992 if (md->cpu == cpu) 993 return md; 994 } 995 996 return NULL; 997 } 998 999 static PyObject *pyrf_evlist__read_on_cpu(struct pyrf_evlist *pevlist, 1000 PyObject *args, PyObject *kwargs) 1001 { 1002 struct evlist *evlist = &pevlist->evlist; 1003 union perf_event *event; 1004 int sample_id_all = 1, cpu; 1005 static char *kwlist[] = { "cpu", "sample_id_all", NULL }; 1006 struct perf_mmap *md; 1007 int err; 1008 1009 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "i|i", kwlist, 1010 &cpu, &sample_id_all)) 1011 return NULL; 1012 1013 md = get_md(evlist, cpu); 1014 if (!md) 1015 return NULL; 1016 1017 if (perf_mmap__read_init(md) < 0) 1018 goto end; 1019 1020 event = perf_mmap__read_event(md); 1021 if (event != NULL) { 1022 PyObject *pyevent = pyrf_event__new(event); 1023 struct pyrf_event *pevent = (struct pyrf_event *)pyevent; 1024 struct evsel *evsel; 1025 1026 if (pyevent == NULL) 1027 return PyErr_NoMemory(); 1028 1029 evsel = perf_evlist__event2evsel(evlist, event); 1030 if (!evsel) { 1031 Py_INCREF(Py_None); 1032 return Py_None; 1033 } 1034 1035 pevent->evsel = evsel; 1036 1037 err = perf_evsel__parse_sample(evsel, event, &pevent->sample); 1038 1039 /* Consume the even only after we parsed it out. */ 1040 perf_mmap__consume(md); 1041 1042 if (err) 1043 return PyErr_Format(PyExc_OSError, 1044 "perf: can't parse sample, err=%d", err); 1045 return pyevent; 1046 } 1047 end: 1048 Py_INCREF(Py_None); 1049 return Py_None; 1050 } 1051 1052 static PyObject *pyrf_evlist__open(struct pyrf_evlist *pevlist, 1053 PyObject *args, PyObject *kwargs) 1054 { 1055 struct evlist *evlist = &pevlist->evlist; 1056 int group = 0; 1057 static char *kwlist[] = { "group", NULL }; 1058 1059 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|OOii", kwlist, &group)) 1060 return NULL; 1061 1062 if (group) 1063 perf_evlist__set_leader(evlist); 1064 1065 if (evlist__open(evlist) < 0) { 1066 PyErr_SetFromErrno(PyExc_OSError); 1067 return NULL; 1068 } 1069 1070 Py_INCREF(Py_None); 1071 return Py_None; 1072 } 1073 1074 static PyMethodDef pyrf_evlist__methods[] = { 1075 { 1076 .ml_name = "mmap", 1077 .ml_meth = (PyCFunction)pyrf_evlist__mmap, 1078 .ml_flags = METH_VARARGS | METH_KEYWORDS, 1079 .ml_doc = PyDoc_STR("mmap the file descriptor table.") 1080 }, 1081 { 1082 .ml_name = "open", 1083 .ml_meth = (PyCFunction)pyrf_evlist__open, 1084 .ml_flags = METH_VARARGS | METH_KEYWORDS, 1085 .ml_doc = PyDoc_STR("open the file descriptors.") 1086 }, 1087 { 1088 .ml_name = "poll", 1089 .ml_meth = (PyCFunction)pyrf_evlist__poll, 1090 .ml_flags = METH_VARARGS | METH_KEYWORDS, 1091 .ml_doc = PyDoc_STR("poll the file descriptor table.") 1092 }, 1093 { 1094 .ml_name = "get_pollfd", 1095 .ml_meth = (PyCFunction)pyrf_evlist__get_pollfd, 1096 .ml_flags = METH_VARARGS | METH_KEYWORDS, 1097 .ml_doc = PyDoc_STR("get the poll file descriptor table.") 1098 }, 1099 { 1100 .ml_name = "add", 1101 .ml_meth = (PyCFunction)pyrf_evlist__add, 1102 .ml_flags = METH_VARARGS | METH_KEYWORDS, 1103 .ml_doc = PyDoc_STR("adds an event selector to the list.") 1104 }, 1105 { 1106 .ml_name = "read_on_cpu", 1107 .ml_meth = (PyCFunction)pyrf_evlist__read_on_cpu, 1108 .ml_flags = METH_VARARGS | METH_KEYWORDS, 1109 .ml_doc = PyDoc_STR("reads an event.") 1110 }, 1111 { .ml_name = NULL, } 1112 }; 1113 1114 static Py_ssize_t pyrf_evlist__length(PyObject *obj) 1115 { 1116 struct pyrf_evlist *pevlist = (void *)obj; 1117 1118 return pevlist->evlist.core.nr_entries; 1119 } 1120 1121 static PyObject *pyrf_evlist__item(PyObject *obj, Py_ssize_t i) 1122 { 1123 struct pyrf_evlist *pevlist = (void *)obj; 1124 struct evsel *pos; 1125 1126 if (i >= pevlist->evlist.core.nr_entries) 1127 return NULL; 1128 1129 evlist__for_each_entry(&pevlist->evlist, pos) { 1130 if (i-- == 0) 1131 break; 1132 } 1133 1134 return Py_BuildValue("O", container_of(pos, struct pyrf_evsel, evsel)); 1135 } 1136 1137 static PySequenceMethods pyrf_evlist__sequence_methods = { 1138 .sq_length = pyrf_evlist__length, 1139 .sq_item = pyrf_evlist__item, 1140 }; 1141 1142 static char pyrf_evlist__doc[] = PyDoc_STR("perf event selector list object."); 1143 1144 static PyTypeObject pyrf_evlist__type = { 1145 PyVarObject_HEAD_INIT(NULL, 0) 1146 .tp_name = "perf.evlist", 1147 .tp_basicsize = sizeof(struct pyrf_evlist), 1148 .tp_dealloc = (destructor)pyrf_evlist__delete, 1149 .tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, 1150 .tp_as_sequence = &pyrf_evlist__sequence_methods, 1151 .tp_doc = pyrf_evlist__doc, 1152 .tp_methods = pyrf_evlist__methods, 1153 .tp_init = (initproc)pyrf_evlist__init, 1154 }; 1155 1156 static int pyrf_evlist__setup_types(void) 1157 { 1158 pyrf_evlist__type.tp_new = PyType_GenericNew; 1159 return PyType_Ready(&pyrf_evlist__type); 1160 } 1161 1162 #define PERF_CONST(name) { #name, PERF_##name } 1163 1164 static struct { 1165 const char *name; 1166 int value; 1167 } perf__constants[] = { 1168 PERF_CONST(TYPE_HARDWARE), 1169 PERF_CONST(TYPE_SOFTWARE), 1170 PERF_CONST(TYPE_TRACEPOINT), 1171 PERF_CONST(TYPE_HW_CACHE), 1172 PERF_CONST(TYPE_RAW), 1173 PERF_CONST(TYPE_BREAKPOINT), 1174 1175 PERF_CONST(COUNT_HW_CPU_CYCLES), 1176 PERF_CONST(COUNT_HW_INSTRUCTIONS), 1177 PERF_CONST(COUNT_HW_CACHE_REFERENCES), 1178 PERF_CONST(COUNT_HW_CACHE_MISSES), 1179 PERF_CONST(COUNT_HW_BRANCH_INSTRUCTIONS), 1180 PERF_CONST(COUNT_HW_BRANCH_MISSES), 1181 PERF_CONST(COUNT_HW_BUS_CYCLES), 1182 PERF_CONST(COUNT_HW_CACHE_L1D), 1183 PERF_CONST(COUNT_HW_CACHE_L1I), 1184 PERF_CONST(COUNT_HW_CACHE_LL), 1185 PERF_CONST(COUNT_HW_CACHE_DTLB), 1186 PERF_CONST(COUNT_HW_CACHE_ITLB), 1187 PERF_CONST(COUNT_HW_CACHE_BPU), 1188 PERF_CONST(COUNT_HW_CACHE_OP_READ), 1189 PERF_CONST(COUNT_HW_CACHE_OP_WRITE), 1190 PERF_CONST(COUNT_HW_CACHE_OP_PREFETCH), 1191 PERF_CONST(COUNT_HW_CACHE_RESULT_ACCESS), 1192 PERF_CONST(COUNT_HW_CACHE_RESULT_MISS), 1193 1194 PERF_CONST(COUNT_HW_STALLED_CYCLES_FRONTEND), 1195 PERF_CONST(COUNT_HW_STALLED_CYCLES_BACKEND), 1196 1197 PERF_CONST(COUNT_SW_CPU_CLOCK), 1198 PERF_CONST(COUNT_SW_TASK_CLOCK), 1199 PERF_CONST(COUNT_SW_PAGE_FAULTS), 1200 PERF_CONST(COUNT_SW_CONTEXT_SWITCHES), 1201 PERF_CONST(COUNT_SW_CPU_MIGRATIONS), 1202 PERF_CONST(COUNT_SW_PAGE_FAULTS_MIN), 1203 PERF_CONST(COUNT_SW_PAGE_FAULTS_MAJ), 1204 PERF_CONST(COUNT_SW_ALIGNMENT_FAULTS), 1205 PERF_CONST(COUNT_SW_EMULATION_FAULTS), 1206 PERF_CONST(COUNT_SW_DUMMY), 1207 1208 PERF_CONST(SAMPLE_IP), 1209 PERF_CONST(SAMPLE_TID), 1210 PERF_CONST(SAMPLE_TIME), 1211 PERF_CONST(SAMPLE_ADDR), 1212 PERF_CONST(SAMPLE_READ), 1213 PERF_CONST(SAMPLE_CALLCHAIN), 1214 PERF_CONST(SAMPLE_ID), 1215 PERF_CONST(SAMPLE_CPU), 1216 PERF_CONST(SAMPLE_PERIOD), 1217 PERF_CONST(SAMPLE_STREAM_ID), 1218 PERF_CONST(SAMPLE_RAW), 1219 1220 PERF_CONST(FORMAT_TOTAL_TIME_ENABLED), 1221 PERF_CONST(FORMAT_TOTAL_TIME_RUNNING), 1222 PERF_CONST(FORMAT_ID), 1223 PERF_CONST(FORMAT_GROUP), 1224 1225 PERF_CONST(RECORD_MMAP), 1226 PERF_CONST(RECORD_LOST), 1227 PERF_CONST(RECORD_COMM), 1228 PERF_CONST(RECORD_EXIT), 1229 PERF_CONST(RECORD_THROTTLE), 1230 PERF_CONST(RECORD_UNTHROTTLE), 1231 PERF_CONST(RECORD_FORK), 1232 PERF_CONST(RECORD_READ), 1233 PERF_CONST(RECORD_SAMPLE), 1234 PERF_CONST(RECORD_MMAP2), 1235 PERF_CONST(RECORD_AUX), 1236 PERF_CONST(RECORD_ITRACE_START), 1237 PERF_CONST(RECORD_LOST_SAMPLES), 1238 PERF_CONST(RECORD_SWITCH), 1239 PERF_CONST(RECORD_SWITCH_CPU_WIDE), 1240 1241 PERF_CONST(RECORD_MISC_SWITCH_OUT), 1242 { .name = NULL, }, 1243 }; 1244 1245 static PyObject *pyrf__tracepoint(struct pyrf_evsel *pevsel, 1246 PyObject *args, PyObject *kwargs) 1247 { 1248 struct tep_event *tp_format; 1249 static char *kwlist[] = { "sys", "name", NULL }; 1250 char *sys = NULL; 1251 char *name = NULL; 1252 1253 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|ss", kwlist, 1254 &sys, &name)) 1255 return NULL; 1256 1257 tp_format = trace_event__tp_format(sys, name); 1258 if (IS_ERR(tp_format)) 1259 return _PyLong_FromLong(-1); 1260 1261 return _PyLong_FromLong(tp_format->id); 1262 } 1263 1264 static PyMethodDef perf__methods[] = { 1265 { 1266 .ml_name = "tracepoint", 1267 .ml_meth = (PyCFunction) pyrf__tracepoint, 1268 .ml_flags = METH_VARARGS | METH_KEYWORDS, 1269 .ml_doc = PyDoc_STR("Get tracepoint config.") 1270 }, 1271 { .ml_name = NULL, } 1272 }; 1273 1274 #if PY_MAJOR_VERSION < 3 1275 PyMODINIT_FUNC initperf(void) 1276 #else 1277 PyMODINIT_FUNC PyInit_perf(void) 1278 #endif 1279 { 1280 PyObject *obj; 1281 int i; 1282 PyObject *dict; 1283 #if PY_MAJOR_VERSION < 3 1284 PyObject *module = Py_InitModule("perf", perf__methods); 1285 #else 1286 static struct PyModuleDef moduledef = { 1287 PyModuleDef_HEAD_INIT, 1288 "perf", /* m_name */ 1289 "", /* m_doc */ 1290 -1, /* m_size */ 1291 perf__methods, /* m_methods */ 1292 NULL, /* m_reload */ 1293 NULL, /* m_traverse */ 1294 NULL, /* m_clear */ 1295 NULL, /* m_free */ 1296 }; 1297 PyObject *module = PyModule_Create(&moduledef); 1298 #endif 1299 1300 if (module == NULL || 1301 pyrf_event__setup_types() < 0 || 1302 pyrf_evlist__setup_types() < 0 || 1303 pyrf_evsel__setup_types() < 0 || 1304 pyrf_thread_map__setup_types() < 0 || 1305 pyrf_cpu_map__setup_types() < 0) 1306 #if PY_MAJOR_VERSION < 3 1307 return; 1308 #else 1309 return module; 1310 #endif 1311 1312 /* The page_size is placed in util object. */ 1313 page_size = sysconf(_SC_PAGE_SIZE); 1314 1315 Py_INCREF(&pyrf_evlist__type); 1316 PyModule_AddObject(module, "evlist", (PyObject*)&pyrf_evlist__type); 1317 1318 Py_INCREF(&pyrf_evsel__type); 1319 PyModule_AddObject(module, "evsel", (PyObject*)&pyrf_evsel__type); 1320 1321 Py_INCREF(&pyrf_mmap_event__type); 1322 PyModule_AddObject(module, "mmap_event", (PyObject *)&pyrf_mmap_event__type); 1323 1324 Py_INCREF(&pyrf_lost_event__type); 1325 PyModule_AddObject(module, "lost_event", (PyObject *)&pyrf_lost_event__type); 1326 1327 Py_INCREF(&pyrf_comm_event__type); 1328 PyModule_AddObject(module, "comm_event", (PyObject *)&pyrf_comm_event__type); 1329 1330 Py_INCREF(&pyrf_task_event__type); 1331 PyModule_AddObject(module, "task_event", (PyObject *)&pyrf_task_event__type); 1332 1333 Py_INCREF(&pyrf_throttle_event__type); 1334 PyModule_AddObject(module, "throttle_event", (PyObject *)&pyrf_throttle_event__type); 1335 1336 Py_INCREF(&pyrf_task_event__type); 1337 PyModule_AddObject(module, "task_event", (PyObject *)&pyrf_task_event__type); 1338 1339 Py_INCREF(&pyrf_read_event__type); 1340 PyModule_AddObject(module, "read_event", (PyObject *)&pyrf_read_event__type); 1341 1342 Py_INCREF(&pyrf_sample_event__type); 1343 PyModule_AddObject(module, "sample_event", (PyObject *)&pyrf_sample_event__type); 1344 1345 Py_INCREF(&pyrf_context_switch_event__type); 1346 PyModule_AddObject(module, "switch_event", (PyObject *)&pyrf_context_switch_event__type); 1347 1348 Py_INCREF(&pyrf_thread_map__type); 1349 PyModule_AddObject(module, "thread_map", (PyObject*)&pyrf_thread_map__type); 1350 1351 Py_INCREF(&pyrf_cpu_map__type); 1352 PyModule_AddObject(module, "cpu_map", (PyObject*)&pyrf_cpu_map__type); 1353 1354 dict = PyModule_GetDict(module); 1355 if (dict == NULL) 1356 goto error; 1357 1358 for (i = 0; perf__constants[i].name != NULL; i++) { 1359 obj = _PyLong_FromLong(perf__constants[i].value); 1360 if (obj == NULL) 1361 goto error; 1362 PyDict_SetItemString(dict, perf__constants[i].name, obj); 1363 Py_DECREF(obj); 1364 } 1365 1366 error: 1367 if (PyErr_Occurred()) 1368 PyErr_SetString(PyExc_ImportError, "perf: Init failed!"); 1369 #if PY_MAJOR_VERSION >= 3 1370 return module; 1371 #endif 1372 } 1373 1374 /* 1375 * Dummy, to avoid dragging all the test_attr infrastructure in the python 1376 * binding. 1377 */ 1378 void test_attr__open(struct perf_event_attr *attr, pid_t pid, int cpu, 1379 int fd, int group_fd, unsigned long flags) 1380 { 1381 } 1382