Server IP : 184.154.167.98 / Your IP : 3.135.220.239 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/libexec/pcp/pmdas/bcc/modules/ |
Upload File : |
// Copyright 2016 Netflix, Inc. // Licensed under the Apache License, Version 2.0 (the "License") #include <uapi/linux/ptrace.h> #include <linux/blkdev.h> // for saving the timestamp and __data_len of each request struct start_req_t { u64 ts; u64 data_len; }; // for saving process info by request struct who_t { u32 pid; char name[TASK_COMM_LEN]; }; // the key for the output summary struct info_t { u32 pid; int rwflag; int major; int minor; char name[TASK_COMM_LEN]; }; // the value of the output summary struct val_t { u64 bytes; u64 us; u32 io; }; BPF_HASH(start, struct request *, struct start_req_t); BPF_HASH(whobyreq, struct request *, struct who_t); BPF_HASH(counts, struct info_t, struct val_t); // cache PID and comm by-req int trace_pid_start(struct pt_regs *ctx, struct request *req) { struct who_t who = {}; if (bpf_get_current_comm(&who.name, sizeof(who.name)) == 0) { who.pid = bpf_get_current_pid_tgid(); whobyreq.update(&req, &who); } return 0; } // time block I/O int trace_req_start(struct pt_regs *ctx, struct request *req) { struct start_req_t start_req = { .ts = bpf_ktime_get_ns(), .data_len = req->__data_len }; start.update(&req, &start_req); return 0; } // output int trace_req_done(struct pt_regs *ctx, struct request *req) { struct start_req_t *startp; // fetch timestamp and calculate delta startp = start.lookup(&req); if (startp == 0) { return 0; // missed tracing issue } struct who_t *whop; struct val_t *valp, zero = {}; u64 delta_us = (bpf_ktime_get_ns() - startp->ts) / 1000; // setup info_t key struct info_t info = {}; info.major = req->rq_disk->major; info.minor = req->rq_disk->first_minor; /* * The following deals with a kernel version change (in mainline 4.7, although * it may be backported to earlier kernels) with how block request write flags * are tested. We handle both pre- and post-change versions here. Please avoid * kernel version tests like this as much as possible: they inflate the code, * test, and maintenance burden. */ #ifdef REQ_WRITE info.rwflag = !!(req->cmd_flags & REQ_WRITE); #elif defined(REQ_OP_SHIFT) info.rwflag = !!((req->cmd_flags >> REQ_OP_SHIFT) == REQ_OP_WRITE); #else info.rwflag = !!((req->cmd_flags & REQ_OP_MASK) == REQ_OP_WRITE); #endif whop = whobyreq.lookup(&req); if (whop == 0) { // missed pid who, save stats as pid 0 valp = counts.lookup_or_init(&info, &zero); } else { info.pid = whop->pid; __builtin_memcpy(&info.name, whop->name, sizeof(info.name)); valp = counts.lookup_or_init(&info, &zero); } if (valp) { // save stats valp->us += delta_us; valp->bytes += startp->data_len; valp->io++; } start.delete(&req); whobyreq.delete(&req); return 0; }