I want to make sure the return address of sbrk is within a certain specific range. I read somewhere that sbrk allocates from an area allocated at program initialization. So I'm wondering if there's anyway I can enforce the program initialization to allocate from a specific address? For example, with mmap, I'll be able to do so with MAP_FIXED_NOREPLACE . Is it possible to have something similar?
Can I enforce sbrk return address to be within a certain specific range?
192 Views Asked by AetX At
1
There are 1 best solutions below
Related Questions in C
- How to call a C language function from x86 assembly code?
- What does: "char *argv[]" mean?
- User input sanitization program, which takes a specific amount of arguments and passes the execution to a bash script
- How to crop a BMP image in half using C
- How can I get the difference in minutes between two dates and hours?
- Why will this code compile although it defines two variables with the same name?
- Compiling eBPF program in Docker fails due to missing '__u64' type
- Why can't I use the file pointer after the first read attempt fails?
- #include Header files in C with definition too
- OpenCV2 on CLion
- What is causing the store latency in this program?
- How to refer to the filepath of test data in test sourcecode?
- 9 Digit Addresses in Hexadecimal System in MacOS
- My server TCP doesn't receive messages from the client in C
- Printing the characters obtained from the array s using printf?
Related Questions in LINUX
- Is there some way to use printf to print a horizontal list of decrementing hex digits in NASM assembly on Linux
- Why does Hugo generate different taxonomy-related HTML on different OS's?
- Writes in io_uring do not advance the file offset
- Why `set -o pipefail` gives different output even though the pipe is not failing
- what really controls the permissions: UID or eUID?
- Compiling eBPF program in Docker fails due to missing '__u64' type
- Docker container unable to make HTTPS requests to external API
- Whow to use callback_query_handler in Python 3.10
- Create kea runtime directory at startup in Yocto image
- Problem on CPU scheduling algorithms in OS
- How to copy files into the singularity sandbox?
- Android kernel error: undefined reference to `get_hw_version_platform'
- Is there a need for BPF Linux namespace?
- Error when trying to execute a binary compiled in a Kali Linux machine on an Ubuntu system
- Issue with launching application after updating ElectronJs to version 28.0.0 on Windows and Linux
Related Questions in MMAP
- How to use mmap iteratively to map data in small chunks from a large file
- how linux do page reclaim of anonymous mmap region?
- Is it possible to map the same physical memory to multiple virtual address spaces within the same process?
- Sprintf() messing up and not doing what I want it to do
- How to get one character at a time
- mmap:Operation not supported
- Python mmap return Invalid argument
- Unfamiliar notation in manpage mmap(2): void addr[.length]
- Fastest approach to split and access mmaped data for each thread
- How to execute process with mmap-ed memory as stdin and another mmap-ed memory as stdout?
- Is it possible to limit mmap memory usage?
- how can you dump [vvar] segment
- A bus error that occurs when mmap memory is used with memcpy
- how to safely write mmap'd region to file
- Could not read operational registers value through 4-port usb3.0 host controller
Related Questions in SBRK
- How does sbrk in MIPS properly get called
- Efficient 2 pass using heap memory
- Can the pointer returned by sys _brk overlap the stack on Linux?
- Why does this code segfault on one machine but run fine on another?
- Why do I hit Invalid write/read after sbrk (recoding mini malloc)?
- Abort in glibc while trying to use sbrk to reduce the size of the data segment
- How to free the heap memory in MIPS
- Why would I get an error like this when calling sbrk()?
- Where does malloc() allocate memory? Is it the data section or the heap section of the virtual address space of the process?
- warning: implicit declaration of function 'sbrk' after Importing unistd.h
- C++ Malloc Doesn't call mmap or brk?
- How to Convert Void* into size_t?
- Can I enforce sbrk return address to be within a certain specific range?
- sbrk() - cast to pointer from integer of different size
- Mac OS Catalina sbrk is deprecated
Related Questions in BRK
- segmentation fault when calling brk() and printf()
- Can the pointer returned by sys _brk overlap the stack on Linux?
- In what circumstances can malloc_trim(0) cause a crash?
- Why using both malloc/calloc/realloc and brk functions will results in undefined behavior?
- Too many brk() noticed in strace
- Heap break will not change after free()?
- Memory allocation of program without any allocation syscalls
- Problems with malloc
- Why are user processes responsible for requesting memory from the OS?
- Can I enforce sbrk return address to be within a certain specific range?
- Will malloc round up to the nearest page size?
- Own Malloc implementation freeze at brk
- Need to align memory on a power of 2 and align the program break on a multiple of 2 * getpagesize() in C
- Why isn't argument of brk(void *end_data_segment), rounded up to the next page boundary?
- why do the argument of function brk() is void* and not int type?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
No, this is not possible.
brkandsbrkrefer to the data segment of the program, and that can be loaded at any valid address that meets the needs of the dynamic linker. Different architectures can and do use different addresses, and even machines of the same architecture can use different ranges depending on the configuration of the kernel. Using a fixed address or address range is extremely nonportable and will make your program very brittle to future changes. I fully expect that doing this will cause your program to break in the future simply by upgrading libc.In addition, modern programs are typically compiled as position-independent executables so that ASLR can be used to improve security. Therefore, even if you knew the address range that was used for one invocation of your program, the very next invocation of your program might use a totally different address range.
In addition, you almost never want to invoke
brkorsbrkby hand. In almost all cases, you will want to use the system memory allocator (or a replacement like jemalloc), which will handle this case for you. For example, glibc's malloc implementation, like most others, will allocate large chunks of memory usingmmap, which can significantly reduce memory usage in long-running programs, since these large chunks can be freed independently. The memory allocator also may not appreciate you changing the size of the data segment without consulting it.Finally, in case you care about portability to other Unix systems, not all systems even have
brkandsbrk. OpenBSD allocates all memory usingmmapwhich improves security by expanding the use of ASLR (at the cost of performance).If you absolutely must use a fixed address or address range and there is no alternative, you'll need to use
mmapto allocate that range of memory.