scripts/recordmcount.c
Source file repositories/reference/linux-study-clean/scripts/recordmcount.c
File Facts
- System
- Linux kernel
- Corpus path
scripts/recordmcount.c- Extension
.c- Size
- 17934 bytes
- Lines
- 714
- Domain
- Support Tooling And Documentation
- Bucket
- scripts
- Inferred role
- Support Tooling And Documentation: implementation source
- Status
- source implementation candidate
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
sys/types.hsys/mman.hsys/stat.hgetopt.helf.hfcntl.hstdio.hstdlib.hstring.hunistd.hrecordmcount.h
Detected Declarations
function file_append_cleanupfunction mmap_cleanupfunction ulseekfunction uwritefunction umallocfunction consistencyfunction make_nop_x86function make_nop_armfunction make_nop_arm64function write_filefunction w8revfunction w4revfunction w2revfunction w8natfunction w4natfunction w2natfunction is_mcounted_section_namefunction arm_is_fake_mcountfunction arm64_is_fake_mcountfunction LARCH32_is_fake_mcountfunction LARCH64_is_fake_mcountfunction MIPS64_r_symfunction MIPS64_r_infofunction do_filefunction w2function main
Annotated Snippet
if (aoffset > file_append_size) {
p = realloc(file_append, aoffset);
if (!p)
free(file_append);
file_append = p;
file_append_size = aoffset;
}
if (!file_append) {
perror("write");
file_append_cleanup();
mmap_cleanup();
return -1;
}
if (file_ptr < file_end) {
cnt = file_end - file_ptr;
} else {
cnt = 0;
idx = aoffset - count;
}
}
if (cnt)
memcpy(file_ptr, buf, cnt);
if (cnt < count)
memcpy(file_append + idx, buf + cnt, count - cnt);
file_ptr += count;
return count;
}
static void * umalloc(size_t size)
{
void *const addr = malloc(size);
if (addr == 0) {
fprintf(stderr, "malloc failed: %zu bytes\n", size);
file_append_cleanup();
mmap_cleanup();
return NULL;
}
return addr;
}
/*
* Get the whole file as a programming convenience in order to avoid
* malloc+lseek+read+free of many pieces. If successful, then mmap
* avoids copying unused pieces; else just read the whole file.
* Open for both read and write; new info will be appended to the file.
* Use MAP_PRIVATE so that a few changes to the in-memory ElfXX_Ehdr
* do not propagate to the file until an explicit overwrite at the last.
* This preserves most aspects of consistency (all except .st_size)
* for simultaneous readers of the file while we are appending to it.
* However, multiple writers still are bad. We choose not to use
* locking because it is expensive and the use case of kernel build
* makes multiple writers unlikely.
*/
static void *mmap_file(char const *fname)
{
/* Avoid problems if early cleanup() */
fd_map = -1;
mmap_failed = 1;
file_map = NULL;
file_ptr = NULL;
file_updated = 0;
sb.st_size = 0;
fd_map = open(fname, O_RDONLY);
if (fd_map < 0) {
perror(fname);
return NULL;
}
if (fstat(fd_map, &sb) < 0) {
perror(fname);
goto out;
}
if (!S_ISREG(sb.st_mode)) {
fprintf(stderr, "not a regular file: %s\n", fname);
goto out;
}
file_map = mmap(0, sb.st_size, PROT_READ|PROT_WRITE, MAP_PRIVATE,
fd_map, 0);
if (file_map == MAP_FAILED) {
mmap_failed = 1;
file_map = umalloc(sb.st_size);
if (!file_map) {
perror(fname);
goto out;
}
if (read(fd_map, file_map, sb.st_size) != sb.st_size) {
perror(fname);
Annotation
- Immediate include surface: `sys/types.h`, `sys/mman.h`, `sys/stat.h`, `getopt.h`, `elf.h`, `fcntl.h`, `stdio.h`, `stdlib.h`.
- Detected declarations: `function file_append_cleanup`, `function mmap_cleanup`, `function ulseek`, `function uwrite`, `function umalloc`, `function consistency`, `function make_nop_x86`, `function make_nop_arm`, `function make_nop_arm64`, `function write_file`.
- Atlas domain: Support Tooling And Documentation / scripts.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.