mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
104 lines
2.6 KiB
C
104 lines
2.6 KiB
C
/*
|
|
Adapted from: http://free-electrons.com/pub/mirror/devmem2.c
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <signal.h>
|
|
#include <fcntl.h>
|
|
#include <ctype.h>
|
|
#include <termios.h>
|
|
#include <sys/types.h>
|
|
#include <sys/mman.h>
|
|
#include <stdint.h>
|
|
|
|
#define FATAL do { fprintf(stderr, "Error at line %d, file %s (%d) [%s]\n", \
|
|
__LINE__, __FILE__, errno, strerror(errno)); exit(1); } while(0)
|
|
|
|
#define MAP_SIZE 4096UL
|
|
#define MAP_MASK (MAP_SIZE - 1)
|
|
|
|
int main(int argc, char **argv) {
|
|
int fd;
|
|
void *map_base, *virt_addr;
|
|
uintmax_t read_result, writeval;
|
|
off_t target;
|
|
int access_type = 'w';
|
|
|
|
if(argc < 2) {
|
|
fprintf(stderr, "\nUsage:\t%s { address } [ type [ data ] ]\n"
|
|
"\taddress : memory address to act upon\n"
|
|
"\ttype : access operation type : [b]yte, [h]alfword, [w]ord\n"
|
|
"\tdata : data to be written\n\n",
|
|
argv[0]);
|
|
exit(1);
|
|
}
|
|
target = strtoul(argv[1], 0, 0);
|
|
|
|
if(argc > 2)
|
|
access_type = tolower(argv[2][0]);
|
|
|
|
|
|
if((fd = open("/dev/mem", O_RDWR | O_SYNC)) == -1) FATAL;
|
|
printf("/dev/mem opened.\n");
|
|
fflush(stdout);
|
|
|
|
/* Map one page */
|
|
map_base = mmap(0, MAP_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, fd, target & ~MAP_MASK);
|
|
if(map_base == (void *) -1) FATAL;
|
|
printf("Memory mapped at address %p.\n", map_base);
|
|
fflush(stdout);
|
|
|
|
virt_addr = map_base + (target & MAP_MASK);
|
|
switch(access_type) {
|
|
case 'b':
|
|
read_result = *((uint8_t *) virt_addr);
|
|
break;
|
|
case 'h':
|
|
read_result = *((uint16_t *) virt_addr);
|
|
break;
|
|
case 'w':
|
|
read_result = *((uint32_t *) virt_addr);
|
|
break;
|
|
case 'q':
|
|
read_result = *((uint64_t *) virt_addr);
|
|
break;
|
|
default:
|
|
fprintf(stderr, "Illegal data type '%c'.\n", access_type);
|
|
exit(2);
|
|
}
|
|
printf("Value at address 0x%jX (%p): 0x%jX\n", (uintmax_t)target, virt_addr, (uintmax_t)read_result);
|
|
fflush(stdout);
|
|
|
|
if(argc > 3) {
|
|
writeval = strtoul(argv[3], 0, 0);
|
|
switch(access_type) {
|
|
case 'b':
|
|
*((uint8_t *) virt_addr) = writeval;
|
|
read_result = *((uint8_t *) virt_addr);
|
|
break;
|
|
case 'h':
|
|
*((uint16_t *) virt_addr) = writeval;
|
|
read_result = *((uint16_t *) virt_addr);
|
|
break;
|
|
case 'w':
|
|
*((uint32_t *) virt_addr) = writeval;
|
|
read_result = *((uint32_t *) virt_addr);
|
|
break;
|
|
case 'q':
|
|
*((uint64_t *) virt_addr) = writeval;
|
|
read_result = *((uint64_t *) virt_addr);
|
|
break;
|
|
}
|
|
printf("Written 0x%X; readback 0x%jX\n", (unsigned int)writeval, (unsigned int)read_result);
|
|
fflush(stdout);
|
|
}
|
|
|
|
if(munmap(map_base, MAP_SIZE) == -1) FATAL;
|
|
close(fd);
|
|
return 0;
|
|
}
|