I have written some code in order to read another process memory. This is for macOS/GNU Mach.
#include <stdio.h>
#include <sys/types.h>
#include <mach/mach.h>
#include <mach/mach_vm.h>
int main() {
pid_t pid;
printf("PID: ");
scanf("%d", &pid);
vm_address_t address;
printf("Address: ");
scanf("%lx", &address);
vm_offset_t readMem;
vm_map_read_t task = task_for_pid(mach_task_self(), pid, &task);
mach_msg_type_number_t size = sizeof(int);
kern_return_t result = vm_read(task, address, (pointer_t)sizeof(int), &readMem, &size);
if (result) {
fprintf(stderr, "cant read, result 0x%x\n", result);
}
printf("%lu", readMem);
}
Upon running it and providing a valid PID, it returns MACH_SEND_INVALID_DEST.
I know this answer is late, but it might be useful to others who encounter the same problem.
Problems
task_for_pid()
returnskern_return_t
.I modified your code to make it more clear, added some error checking and made proper reading. By the comments you made, I believe you are trying to read an integer, so I adapted the code to fit that need.
I tested it and I made sure it works as intended. Please let me know of any improvement!