sphinx.addnodesdocument)}( rawsourcechildren]( translations LanguagesNode)}(hhh](h pending_xref)}(hhh]docutils.nodesTextChinese (Simplified)}parenthsba attributes}(ids]classes]names]dupnames]backrefs] refdomainstdreftypedoc reftarget"/translations/zh_CN/dev-tools/kcovmodnameN classnameN refexplicitutagnamehhh ubh)}(hhh]hChinese (Traditional)}hh2sbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget"/translations/zh_TW/dev-tools/kcovmodnameN classnameN refexplicituh1hhh ubh)}(hhh]hItalian}hhFsbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget"/translations/it_IT/dev-tools/kcovmodnameN classnameN refexplicituh1hhh ubh)}(hhh]hJapanese}hhZsbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget"/translations/ja_JP/dev-tools/kcovmodnameN classnameN refexplicituh1hhh ubh)}(hhh]hKorean}hhnsbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget"/translations/ko_KR/dev-tools/kcovmodnameN classnameN refexplicituh1hhh ubh)}(hhh]hSpanish}hhsbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget"/translations/sp_SP/dev-tools/kcovmodnameN classnameN refexplicituh1hhh ubeh}(h]h ]h"]h$]h&]current_languageEnglishuh1h hh _documenthsourceNlineNubhsection)}(hhh](htitle)}(hKCOV: code coverage for fuzzingh]hKCOV: code coverage for fuzzing}(hhhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhhh #include #include #include #include #include #include #include #include #include #include #define KCOV_INIT_TRACE _IOR('c', 1, unsigned long) #define KCOV_ENABLE _IO('c', 100) #define KCOV_DISABLE _IO('c', 101) #define COVER_SIZE (64<<10) #define KCOV_TRACE_PC 0 #define KCOV_TRACE_CMP 1 int main(int argc, char **argv) { int fd; unsigned long *cover, n, i; /* A single fd descriptor allows coverage collection on a single * thread. */ fd = open("/sys/kernel/debug/kcov", O_RDWR); if (fd == -1) perror("open"), exit(1); /* Setup trace mode and trace size. */ if (ioctl(fd, KCOV_INIT_TRACE, COVER_SIZE)) perror("ioctl"), exit(1); /* Mmap buffer shared between kernel- and user-space. */ cover = (unsigned long*)mmap(NULL, COVER_SIZE * sizeof(unsigned long), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); if ((void*)cover == MAP_FAILED) perror("mmap"), exit(1); /* Enable coverage collection on the current thread. */ if (ioctl(fd, KCOV_ENABLE, KCOV_TRACE_PC)) perror("ioctl"), exit(1); /* Reset coverage from the tail of the ioctl() call. */ __atomic_store_n(&cover[0], 0, __ATOMIC_RELAXED); /* Call the target syscall call. */ read(-1, NULL, 0); /* Read number of PCs collected. */ n = __atomic_load_n(&cover[0], __ATOMIC_RELAXED); for (i = 0; i < n; i++) printf("0x%lx\n", cover[i + 1]); /* Disable coverage collection for the current thread. After this call * coverage can be enabled for a different thread. */ if (ioctl(fd, KCOV_DISABLE, 0)) perror("ioctl"), exit(1); /* Free resources. */ if (munmap(cover, COVER_SIZE * sizeof(unsigned long))) perror("munmap"), exit(1); if (close(fd)) perror("close"), exit(1); return 0; }h]hX2#include #include #include #include #include #include #include #include #include #include #include #define KCOV_INIT_TRACE _IOR('c', 1, unsigned long) #define KCOV_ENABLE _IO('c', 100) #define KCOV_DISABLE _IO('c', 101) #define COVER_SIZE (64<<10) #define KCOV_TRACE_PC 0 #define KCOV_TRACE_CMP 1 int main(int argc, char **argv) { int fd; unsigned long *cover, n, i; /* A single fd descriptor allows coverage collection on a single * thread. */ fd = open("/sys/kernel/debug/kcov", O_RDWR); if (fd == -1) perror("open"), exit(1); /* Setup trace mode and trace size. */ if (ioctl(fd, KCOV_INIT_TRACE, COVER_SIZE)) perror("ioctl"), exit(1); /* Mmap buffer shared between kernel- and user-space. */ cover = (unsigned long*)mmap(NULL, COVER_SIZE * sizeof(unsigned long), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); if ((void*)cover == MAP_FAILED) perror("mmap"), exit(1); /* Enable coverage collection on the current thread. */ if (ioctl(fd, KCOV_ENABLE, KCOV_TRACE_PC)) perror("ioctl"), exit(1); /* Reset coverage from the tail of the ioctl() call. */ __atomic_store_n(&cover[0], 0, __ATOMIC_RELAXED); /* Call the target syscall call. */ read(-1, NULL, 0); /* Read number of PCs collected. */ n = __atomic_load_n(&cover[0], __ATOMIC_RELAXED); for (i = 0; i < n; i++) printf("0x%lx\n", cover[i + 1]); /* Disable coverage collection for the current thread. After this call * coverage can be enabled for a different thread. */ if (ioctl(fd, KCOV_DISABLE, 0)) perror("ioctl"), exit(1); /* Free resources. */ if (munmap(cover, COVER_SIZE * sizeof(unsigned long))) perror("munmap"), exit(1); if (close(fd)) perror("close"), exit(1); return 0; }}hjsbah}(h]h ]h"]h$]h&]jPjQforcelanguagechighlight_args}uh1j@hhhK1hjhhubh)}(hOAfter piping through ``addr2line`` the output of the program looks as follows::h](hAfter piping through }(hjhhhNhNubh)}(h ``addr2line``h]h addr2line}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubh, the output of the program looks as follows:}(hjhhhNhNubeh}(h]h ]h"]h$]h&]uh1hhhhKrhjhhubjA)}(hSyS_read fs/read_write.c:562 __fdget_pos fs/file.c:774 __fget_light fs/file.c:746 __fget_light fs/file.c:750 __fget_light fs/file.c:760 __fdget_pos fs/file.c:784 SyS_read fs/read_write.c:562h]hSyS_read fs/read_write.c:562 __fdget_pos fs/file.c:774 __fget_light fs/file.c:746 __fget_light fs/file.c:750 __fget_light fs/file.c:760 __fdget_pos fs/file.c:784 SyS_read fs/read_write.c:562}hjsbah}(h]h ]h"]h$]h&]jPjQuh1j@hhhKthjhhubh)}(hIf a program needs to collect coverage from several threads (independently), it needs to open ``/sys/kernel/debug/kcov`` in each thread separately.h](h^If a program needs to collect coverage from several threads (independently), it needs to open }(hjhhhNhNubh)}(h``/sys/kernel/debug/kcov``h]h/sys/kernel/debug/kcov}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubh in each thread separately.}(hjhhhNhNubeh}(h]h ]h"]h$]h&]uh1hhhhKhjhhubh)}(hXCThe interface is fine-grained to allow efficient forking of test processes. That is, a parent process opens ``/sys/kernel/debug/kcov``, enables trace mode, mmaps coverage buffer, and then forks child processes in a loop. The child processes only need to enable coverage (it gets disabled automatically when a thread exits).h](hlThe interface is fine-grained to allow efficient forking of test processes. That is, a parent process opens }(hjhhhNhNubh)}(h``/sys/kernel/debug/kcov``h]h/sys/kernel/debug/kcov}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubh, enables trace mode, mmaps coverage buffer, and then forks child processes in a loop. The child processes only need to enable coverage (it gets disabled automatically when a thread exits).}(hjhhhNhNubeh}(h]h ]h"]h$]h&]uh1hhhhKhjhhubeh}(h]coverage-collectionah ]h"]coverage collectionah$]h&]uh1hhhhhhhhK,ubh)}(hhh](h)}(hComparison operands collectionh]hComparison operands collection}(hj=hhhNhNubah}(h]h ]h"]h$]h&]uh1hhj:hhhhhKubh)}(hAComparison operands collection is similar to coverage collection:h]hAComparison operands collection is similar to coverage collection:}(hjKhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhj:hhubjA)}(hX /* Same includes and defines as above. */ /* Number of 64-bit words per record. */ #define KCOV_WORDS_PER_CMP 4 /* * The format for the types of collected comparisons. * * Bit 0 shows whether one of the arguments is a compile-time constant. * Bits 1 & 2 contain log2 of the argument size, up to 8 bytes. */ #define KCOV_CMP_CONST (1 << 0) #define KCOV_CMP_SIZE(n) ((n) << 1) #define KCOV_CMP_MASK KCOV_CMP_SIZE(3) int main(int argc, char **argv) { int fd; uint64_t *cover, type, arg1, arg2, is_const, size; unsigned long n, i; fd = open("/sys/kernel/debug/kcov", O_RDWR); if (fd == -1) perror("open"), exit(1); if (ioctl(fd, KCOV_INIT_TRACE, COVER_SIZE)) perror("ioctl"), exit(1); /* * Note that the buffer pointer is of type uint64_t*, because all * the comparison operands are promoted to uint64_t. */ cover = (uint64_t *)mmap(NULL, COVER_SIZE * sizeof(unsigned long), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); if ((void*)cover == MAP_FAILED) perror("mmap"), exit(1); /* Note KCOV_TRACE_CMP instead of KCOV_TRACE_PC. */ if (ioctl(fd, KCOV_ENABLE, KCOV_TRACE_CMP)) perror("ioctl"), exit(1); __atomic_store_n(&cover[0], 0, __ATOMIC_RELAXED); read(-1, NULL, 0); /* Read number of comparisons collected. */ n = __atomic_load_n(&cover[0], __ATOMIC_RELAXED); for (i = 0; i < n; i++) { uint64_t ip; type = cover[i * KCOV_WORDS_PER_CMP + 1]; /* arg1 and arg2 - operands of the comparison. */ arg1 = cover[i * KCOV_WORDS_PER_CMP + 2]; arg2 = cover[i * KCOV_WORDS_PER_CMP + 3]; /* ip - caller address. */ ip = cover[i * KCOV_WORDS_PER_CMP + 4]; /* size of the operands. */ size = 1 << ((type & KCOV_CMP_MASK) >> 1); /* is_const - true if either operand is a compile-time constant.*/ is_const = type & KCOV_CMP_CONST; printf("ip: 0x%lx type: 0x%lx, arg1: 0x%lx, arg2: 0x%lx, " "size: %lu, %s\n", ip, type, arg1, arg2, size, is_const ? "const" : "non-const"); } if (ioctl(fd, KCOV_DISABLE, 0)) perror("ioctl"), exit(1); /* Free resources. */ if (munmap(cover, COVER_SIZE * sizeof(unsigned long))) perror("munmap"), exit(1); if (close(fd)) perror("close"), exit(1); return 0; }h]hX /* Same includes and defines as above. */ /* Number of 64-bit words per record. */ #define KCOV_WORDS_PER_CMP 4 /* * The format for the types of collected comparisons. * * Bit 0 shows whether one of the arguments is a compile-time constant. * Bits 1 & 2 contain log2 of the argument size, up to 8 bytes. */ #define KCOV_CMP_CONST (1 << 0) #define KCOV_CMP_SIZE(n) ((n) << 1) #define KCOV_CMP_MASK KCOV_CMP_SIZE(3) int main(int argc, char **argv) { int fd; uint64_t *cover, type, arg1, arg2, is_const, size; unsigned long n, i; fd = open("/sys/kernel/debug/kcov", O_RDWR); if (fd == -1) perror("open"), exit(1); if (ioctl(fd, KCOV_INIT_TRACE, COVER_SIZE)) perror("ioctl"), exit(1); /* * Note that the buffer pointer is of type uint64_t*, because all * the comparison operands are promoted to uint64_t. */ cover = (uint64_t *)mmap(NULL, COVER_SIZE * sizeof(unsigned long), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); if ((void*)cover == MAP_FAILED) perror("mmap"), exit(1); /* Note KCOV_TRACE_CMP instead of KCOV_TRACE_PC. */ if (ioctl(fd, KCOV_ENABLE, KCOV_TRACE_CMP)) perror("ioctl"), exit(1); __atomic_store_n(&cover[0], 0, __ATOMIC_RELAXED); read(-1, NULL, 0); /* Read number of comparisons collected. */ n = __atomic_load_n(&cover[0], __ATOMIC_RELAXED); for (i = 0; i < n; i++) { uint64_t ip; type = cover[i * KCOV_WORDS_PER_CMP + 1]; /* arg1 and arg2 - operands of the comparison. */ arg1 = cover[i * KCOV_WORDS_PER_CMP + 2]; arg2 = cover[i * KCOV_WORDS_PER_CMP + 3]; /* ip - caller address. */ ip = cover[i * KCOV_WORDS_PER_CMP + 4]; /* size of the operands. */ size = 1 << ((type & KCOV_CMP_MASK) >> 1); /* is_const - true if either operand is a compile-time constant.*/ is_const = type & KCOV_CMP_CONST; printf("ip: 0x%lx type: 0x%lx, arg1: 0x%lx, arg2: 0x%lx, " "size: %lu, %s\n", ip, type, arg1, arg2, size, is_const ? "const" : "non-const"); } if (ioctl(fd, KCOV_DISABLE, 0)) perror("ioctl"), exit(1); /* Free resources. */ if (munmap(cover, COVER_SIZE * sizeof(unsigned long))) perror("munmap"), exit(1); if (close(fd)) perror("close"), exit(1); return 0; }}hjYsbah}(h]h ]h"]h$]h&]jPjQjjjj}uh1j@hhhKhj:hhubh)}(heNote that the KCOV modes (collection of code coverage or comparison operands) are mutually exclusive.h]heNote that the KCOV modes (collection of code coverage or comparison operands) are mutually exclusive.}(hjhhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhj:hhubeh}(h]comparison-operands-collectionah ]h"]comparison operands collectionah$]h&]uh1hhhhhhhhKubh)}(hhh](h)}(hRemote coverage collectionh]hRemote coverage collection}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhj~hhhhhKubh)}(hBesides collecting coverage data from handlers of syscalls issued from a userspace process, KCOV can also collect coverage for parts of the kernel executing in other contexts - so-called "remote" coverage.h]hBesides collecting coverage data from handlers of syscalls issued from a userspace process, KCOV can also collect coverage for parts of the kernel executing in other contexts - so-called “remote” coverage.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhj~hhubh)}(h/Using KCOV to collect remote coverage requires:h]h/Using KCOV to collect remote coverage requires:}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhj~hhubhenumerated_list)}(hhh](h list_item)}(hModifying kernel code to annotate the code section from where coverage should be collected with ``kcov_remote_start`` and ``kcov_remote_stop``. h]h)}(hModifying kernel code to annotate the code section from where coverage should be collected with ``kcov_remote_start`` and ``kcov_remote_stop``.h](h`Modifying kernel code to annotate the code section from where coverage should be collected with }(hjhhhNhNubh)}(h``kcov_remote_start``h]hkcov_remote_start}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubh and }(hjhhhNhNubh)}(h``kcov_remote_stop``h]hkcov_remote_stop}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubh.}(hjhhhNhNubeh}(h]h ]h"]h$]h&]uh1hhhhKhjubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubj)}(hiUsing ``KCOV_REMOTE_ENABLE`` instead of ``KCOV_ENABLE`` in the userspace process that collects coverage. h]h)}(hhUsing ``KCOV_REMOTE_ENABLE`` instead of ``KCOV_ENABLE`` in the userspace process that collects coverage.h](hUsing }(hjhhhNhNubh)}(h``KCOV_REMOTE_ENABLE``h]hKCOV_REMOTE_ENABLE}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubh instead of }(hjhhhNhNubh)}(h``KCOV_ENABLE``h]h KCOV_ENABLE}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubh1 in the userspace process that collects coverage.}(hjhhhNhNubeh}(h]h ]h"]h$]h&]uh1hhhhKhjubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubeh}(h]h ]h"]h$]h&]enumtypearabicprefixhsuffix.uh1jhj~hhhhhKubh)}(hXBoth ``kcov_remote_start`` and ``kcov_remote_stop`` annotations and the ``KCOV_REMOTE_ENABLE`` ioctl accept handles that identify particular coverage collection sections. The way a handle is used depends on the context where the matching code section executes.h](hBoth }(hj5hhhNhNubh)}(h``kcov_remote_start``h]hkcov_remote_start}(hj=hhhNhNubah}(h]h ]h"]h$]h&]uh1hhj5ubh and }(hj5hhhNhNubh)}(h``kcov_remote_stop``h]hkcov_remote_stop}(hjOhhhNhNubah}(h]h ]h"]h$]h&]uh1hhj5ubh annotations and the }(hj5hhhNhNubh)}(h``KCOV_REMOTE_ENABLE``h]hKCOV_REMOTE_ENABLE}(hjahhhNhNubah}(h]h ]h"]h$]h&]uh1hhj5ubh ioctl accept handles that identify particular coverage collection sections. The way a handle is used depends on the context where the matching code section executes.}(hj5hhhNhNubeh}(h]h ]h"]h$]h&]uh1hhhhKhj~hhubh)}(hEKCOV supports collecting remote coverage from the following contexts:h]hEKCOV supports collecting remote coverage from the following contexts:}(hjyhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhj~hhubj)}(hhh](j)}(hGlobal kernel background tasks. These are the tasks that are spawned during kernel boot in a limited number of instances (e.g. one USB ``hub_event`` worker is spawned per one USB HCD). h]h)}(hGlobal kernel background tasks. These are the tasks that are spawned during kernel boot in a limited number of instances (e.g. one USB ``hub_event`` worker is spawned per one USB HCD).h](hGlobal kernel background tasks. These are the tasks that are spawned during kernel boot in a limited number of instances (e.g. one USB }(hjhhhNhNubh)}(h ``hub_event``h]h hub_event}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubh$ worker is spawned per one USB HCD).}(hjhhhNhNubeh}(h]h ]h"]h$]h&]uh1hhhhKhjubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubj)}(hLocal kernel background tasks. These are spawned when a userspace process interacts with some kernel interface and are usually killed when the process exits (e.g. vhost workers). h]h)}(hLocal kernel background tasks. These are spawned when a userspace process interacts with some kernel interface and are usually killed when the process exits (e.g. vhost workers).h]hLocal kernel background tasks. These are spawned when a userspace process interacts with some kernel interface and are usually killed when the process exits (e.g. vhost workers).}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubj)}(hSoft interrupts. h]h)}(hSoft interrupts.h]hSoft interrupts.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubeh}(h]h ]h"]h$]h&]j0j1j2hj3j4uh1jhj~hhhhhKubh)}(hXFor #1 and #3, a unique global handle must be chosen and passed to the corresponding ``kcov_remote_start`` call. Then a userspace process must pass this handle to ``KCOV_REMOTE_ENABLE`` in the ``handles`` array field of the ``kcov_remote_arg`` struct. This will attach the used KCOV device to the code section referenced by this handle. Multiple global handles identifying different code sections can be passed at once.h](hUFor #1 and #3, a unique global handle must be chosen and passed to the corresponding }(hjhhhNhNubh)}(h``kcov_remote_start``h]hkcov_remote_start}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubh9 call. Then a userspace process must pass this handle to }(hjhhhNhNubh)}(h``KCOV_REMOTE_ENABLE``h]hKCOV_REMOTE_ENABLE}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubh in the }(hjhhhNhNubh)}(h ``handles``h]hhandles}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubh array field of the }(hjhhhNhNubh)}(h``kcov_remote_arg``h]hkcov_remote_arg}(hj(hhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubh struct. This will attach the used KCOV device to the code section referenced by this handle. Multiple global handles identifying different code sections can be passed at once.}(hjhhhNhNubeh}(h]h ]h"]h$]h&]uh1hhhhKhj~hhubh)}(hXFor #2, the userspace process instead must pass a non-zero handle through the ``common_handle`` field of the ``kcov_remote_arg`` struct. This common handle gets saved to the ``kcov_handle`` field in the current ``task_struct`` and needs to be passed to the newly spawned local tasks via custom kernel code modifications. Those tasks should in turn use the passed handle in their ``kcov_remote_start`` and ``kcov_remote_stop`` annotations.h](hNFor #2, the userspace process instead must pass a non-zero handle through the }(hj@hhhNhNubh)}(h``common_handle``h]h common_handle}(hjHhhhNhNubah}(h]h ]h"]h$]h&]uh1hhj@ubh field of the }(hj@hhhNhNubh)}(h``kcov_remote_arg``h]hkcov_remote_arg}(hjZhhhNhNubah}(h]h ]h"]h$]h&]uh1hhj@ubh. struct. This common handle gets saved to the }(hj@hhhNhNubh)}(h``kcov_handle``h]h kcov_handle}(hjlhhhNhNubah}(h]h ]h"]h$]h&]uh1hhj@ubh field in the current }(hj@hhhNhNubh)}(h``task_struct``h]h task_struct}(hj~hhhNhNubah}(h]h ]h"]h$]h&]uh1hhj@ubh and needs to be passed to the newly spawned local tasks via custom kernel code modifications. Those tasks should in turn use the passed handle in their }(hj@hhhNhNubh)}(h``kcov_remote_start``h]hkcov_remote_start}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhj@ubh and }(hj@hhhNhNubh)}(h``kcov_remote_stop``h]hkcov_remote_stop}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhj@ubh annotations.}(hj@hhhNhNubeh}(h]h ]h"]h$]h&]uh1hhhhMhj~hhubh)}(hKCOV follows a predefined format for both global and common handles. Each handle is a ``u64`` integer. Currently, only the one top and the lower 4 bytes are used. Bytes 4-7 are reserved and must be zero.h](hVKCOV follows a predefined format for both global and common handles. Each handle is a }(hjhhhNhNubh)}(h``u64``h]hu64}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubhn integer. Currently, only the one top and the lower 4 bytes are used. Bytes 4-7 are reserved and must be zero.}(hjhhhNhNubeh}(h]h ]h"]h$]h&]uh1hhhhM hj~hhubh)}(hXOFor global handles, the top byte of the handle denotes the id of a subsystem this handle belongs to. For example, KCOV uses ``1`` as the USB subsystem id. The lower 4 bytes of a global handle denote the id of a task instance within that subsystem. For example, each ``hub_event`` worker uses the USB bus number as the task instance id.h](h|For global handles, the top byte of the handle denotes the id of a subsystem this handle belongs to. For example, KCOV uses }(hjhhhNhNubh)}(h``1``h]h1}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubh as the USB subsystem id. The lower 4 bytes of a global handle denote the id of a task instance within that subsystem. For example, each }(hjhhhNhNubh)}(h ``hub_event``h]h hub_event}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjubh8 worker uses the USB bus number as the task instance id.}(hjhhhNhNubeh}(h]h ]h"]h$]h&]uh1hhhhMhj~hhubh)}(hX,For common handles, a reserved value ``0`` is used as a subsystem id, as such handles don't belong to a particular subsystem. The lower 4 bytes of a common handle identify a collective instance of all local tasks spawned by the userspace process that passed a common handle to ``KCOV_REMOTE_ENABLE``.h](h%For common handles, a reserved value }(hj hhhNhNubh)}(h``0``h]h0}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhj ubh is used as a subsystem id, as such handles don’t belong to a particular subsystem. The lower 4 bytes of a common handle identify a collective instance of all local tasks spawned by the userspace process that passed a common handle to }(hj hhhNhNubh)}(h``KCOV_REMOTE_ENABLE``h]hKCOV_REMOTE_ENABLE}(hj&hhhNhNubah}(h]h ]h"]h$]h&]uh1hhj ubh.}(hj hhhNhNubeh}(h]h ]h"]h$]h&]uh1hhhhMhj~hhubh)}(hXAIn practice, any value can be used for common handle instance id if coverage is only collected from a single userspace process on the system. However, if common handles are used by multiple processes, unique instance ids must be used for each process. One option is to use the process id as the common handle instance id.h]hXAIn practice, any value can be used for common handle instance id if coverage is only collected from a single userspace process on the system. However, if common handles are used by multiple processes, unique instance ids must be used for each process. One option is to use the process id as the common handle instance id.}(hj>hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj~hhubh)}(hThe following program demonstrates using KCOV to collect coverage from both local tasks spawned by the process and the global task that handles USB bus #1:h]hThe following program demonstrates using KCOV to collect coverage from both local tasks spawned by the process and the global task that handles USB bus #1:}(hjLhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj~hhubjA)}(hX /* Same includes and defines as above. */ struct kcov_remote_arg { __u32 trace_mode; __u32 area_size; __u32 num_handles; __aligned_u64 common_handle; __aligned_u64 handles[0]; }; #define KCOV_INIT_TRACE _IOR('c', 1, unsigned long) #define KCOV_DISABLE _IO('c', 101) #define KCOV_REMOTE_ENABLE _IOW('c', 102, struct kcov_remote_arg) #define COVER_SIZE (64 << 10) #define KCOV_TRACE_PC 0 #define KCOV_SUBSYSTEM_COMMON (0x00ull << 56) #define KCOV_SUBSYSTEM_USB (0x01ull << 56) #define KCOV_SUBSYSTEM_MASK (0xffull << 56) #define KCOV_INSTANCE_MASK (0xffffffffull) static inline __u64 kcov_remote_handle(__u64 subsys, __u64 inst) { if (subsys & ~KCOV_SUBSYSTEM_MASK || inst & ~KCOV_INSTANCE_MASK) return 0; return subsys | inst; } #define KCOV_COMMON_ID 0x42 #define KCOV_USB_BUS_NUM 1 int main(int argc, char **argv) { int fd; unsigned long *cover, n, i; struct kcov_remote_arg *arg; fd = open("/sys/kernel/debug/kcov", O_RDWR); if (fd == -1) perror("open"), exit(1); if (ioctl(fd, KCOV_INIT_TRACE, COVER_SIZE)) perror("ioctl"), exit(1); cover = (unsigned long*)mmap(NULL, COVER_SIZE * sizeof(unsigned long), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); if ((void*)cover == MAP_FAILED) perror("mmap"), exit(1); /* Enable coverage collection via common handle and from USB bus #1. */ arg = calloc(1, sizeof(*arg) + sizeof(uint64_t)); if (!arg) perror("calloc"), exit(1); arg->trace_mode = KCOV_TRACE_PC; arg->area_size = COVER_SIZE; arg->num_handles = 1; arg->common_handle = kcov_remote_handle(KCOV_SUBSYSTEM_COMMON, KCOV_COMMON_ID); arg->handles[0] = kcov_remote_handle(KCOV_SUBSYSTEM_USB, KCOV_USB_BUS_NUM); if (ioctl(fd, KCOV_REMOTE_ENABLE, arg)) perror("ioctl"), free(arg), exit(1); free(arg); /* * Here the user needs to trigger execution of a kernel code section * that is either annotated with the common handle, or to trigger some * activity on USB bus #1. */ sleep(2); n = __atomic_load_n(&cover[0], __ATOMIC_RELAXED); for (i = 0; i < n; i++) printf("0x%lx\n", cover[i + 1]); if (ioctl(fd, KCOV_DISABLE, 0)) perror("ioctl"), exit(1); if (munmap(cover, COVER_SIZE * sizeof(unsigned long))) perror("munmap"), exit(1); if (close(fd)) perror("close"), exit(1); return 0; }h]hX /* Same includes and defines as above. */ struct kcov_remote_arg { __u32 trace_mode; __u32 area_size; __u32 num_handles; __aligned_u64 common_handle; __aligned_u64 handles[0]; }; #define KCOV_INIT_TRACE _IOR('c', 1, unsigned long) #define KCOV_DISABLE _IO('c', 101) #define KCOV_REMOTE_ENABLE _IOW('c', 102, struct kcov_remote_arg) #define COVER_SIZE (64 << 10) #define KCOV_TRACE_PC 0 #define KCOV_SUBSYSTEM_COMMON (0x00ull << 56) #define KCOV_SUBSYSTEM_USB (0x01ull << 56) #define KCOV_SUBSYSTEM_MASK (0xffull << 56) #define KCOV_INSTANCE_MASK (0xffffffffull) static inline __u64 kcov_remote_handle(__u64 subsys, __u64 inst) { if (subsys & ~KCOV_SUBSYSTEM_MASK || inst & ~KCOV_INSTANCE_MASK) return 0; return subsys | inst; } #define KCOV_COMMON_ID 0x42 #define KCOV_USB_BUS_NUM 1 int main(int argc, char **argv) { int fd; unsigned long *cover, n, i; struct kcov_remote_arg *arg; fd = open("/sys/kernel/debug/kcov", O_RDWR); if (fd == -1) perror("open"), exit(1); if (ioctl(fd, KCOV_INIT_TRACE, COVER_SIZE)) perror("ioctl"), exit(1); cover = (unsigned long*)mmap(NULL, COVER_SIZE * sizeof(unsigned long), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); if ((void*)cover == MAP_FAILED) perror("mmap"), exit(1); /* Enable coverage collection via common handle and from USB bus #1. */ arg = calloc(1, sizeof(*arg) + sizeof(uint64_t)); if (!arg) perror("calloc"), exit(1); arg->trace_mode = KCOV_TRACE_PC; arg->area_size = COVER_SIZE; arg->num_handles = 1; arg->common_handle = kcov_remote_handle(KCOV_SUBSYSTEM_COMMON, KCOV_COMMON_ID); arg->handles[0] = kcov_remote_handle(KCOV_SUBSYSTEM_USB, KCOV_USB_BUS_NUM); if (ioctl(fd, KCOV_REMOTE_ENABLE, arg)) perror("ioctl"), free(arg), exit(1); free(arg); /* * Here the user needs to trigger execution of a kernel code section * that is either annotated with the common handle, or to trigger some * activity on USB bus #1. */ sleep(2); n = __atomic_load_n(&cover[0], __ATOMIC_RELAXED); for (i = 0; i < n; i++) printf("0x%lx\n", cover[i + 1]); if (ioctl(fd, KCOV_DISABLE, 0)) perror("ioctl"), exit(1); if (munmap(cover, COVER_SIZE * sizeof(unsigned long))) perror("munmap"), exit(1); if (close(fd)) perror("close"), exit(1); return 0; }}hjZsbah}(h]h ]h"]h$]h&]jPjQjjjj}uh1j@hhhM"hj~hhubeh}(h]remote-coverage-collectionah ]h"]remote coverage collectionah$]h&]uh1hhhhhhhhKubeh}(h]kcov-code-coverage-for-fuzzingah ]h"]kcov: code coverage for fuzzingah$]h&]uh1hhhhhhhhKubeh}(h]h ]h"]h$]h&]sourcehuh1hcurrent_sourceN current_lineNsettingsdocutils.frontendValues)}(hN generatorN datestampN source_linkN source_urlN toc_backlinksentryfootnote_backlinksK sectnum_xformKstrip_commentsNstrip_elements_with_classesN strip_classesN report_levelK halt_levelKexit_status_levelKdebugNwarning_streamN tracebackinput_encoding utf-8-siginput_encoding_error_handlerstrictoutput_encodingutf-8output_encoding_error_handlerjerror_encodingutf-8error_encoding_error_handlerbackslashreplace language_codeenrecord_dependenciesNconfigN id_prefixhauto_id_prefixid dump_settingsNdump_internalsNdump_transformsNdump_pseudo_xmlNexpose_internalsNstrict_visitorN_disable_configN_sourceh _destinationN _config_files]7/var/lib/git/docbuild/linux/Documentation/docutils.confafile_insertion_enabled raw_enabledKline_length_limitM'pep_referencesN pep_base_urlhttps://peps.python.org/pep_file_url_templatepep-%04drfc_referencesN rfc_base_url&https://datatracker.ietf.org/doc/html/ tab_widthKtrim_footnote_reference_spacesyntax_highlightlong smart_quotessmartquotes_locales]character_level_inline_markupdoctitle_xform docinfo_xformKsectsubtitle_xform image_loadinglinkembed_stylesheetcloak_email_addressessection_self_linkenvNubreporterNindirect_targets]substitution_defs}substitution_names}refnames}refids}nameids}(jvjsjjj7j4j{jxjnjku nametypes}(jvjj7j{jnuh}(jshjjj4jjxj:jkj~u footnote_refs} citation_refs} autofootnotes]autofootnote_refs]symbol_footnotes]symbol_footnote_refs] footnotes] citations]autofootnote_startKsymbol_footnote_startK id_counter collectionsCounter}Rparse_messages]transform_messages] transformerN include_log] decorationNhhub.