blob: 4d756eab445c74a0674d3c53de0efe8485b35cf5 [file] [log] [blame]
/*
* Copyright (C) 2017 Nico Huber <nico.h@gmx.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <stdint.h>
#include <sys/mman.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#define HW_FILE_READ 0x01
#define HW_FILE_WRITE 0x02
static int map_file(const char *const path,
const uint64_t addr,
const uint32_t len,
const uint32_t mode)
{
const int prot = (mode & HW_FILE_READ ? PROT_READ : 0) |
(mode & HW_FILE_WRITE ? PROT_WRITE : 0);
if (mode & ~(HW_FILE_READ | HW_FILE_WRITE) ||
!(mode & (HW_FILE_READ | HW_FILE_WRITE)))
return EINVAL;
const int fd = open(path, mode & HW_FILE_WRITE ? O_RDWR : O_RDONLY);
if (fd < 0)
return errno;
void *const mapped = mmap((void *)(uintptr_t)addr, len, prot,
MAP_SHARED | MAP_FIXED, fd, (off_t)0);
close(fd);
if (mapped == MAP_FAILED)
return errno;
return 0;
}
static int map_fill_from_file(const char *const path,
const uint64_t addr,
const uint32_t len,
const uint32_t mode)
{
uint32_t xferred;
ssize_t read_ret;
if (mode != HW_FILE_READ)
return EINVAL;
void *const mapped = mmap((void *)(uintptr_t)addr, len,
PROT_READ | PROT_WRITE,
MAP_ANONYMOUS | MAP_PRIVATE | MAP_FIXED,
-1, (off_t)0);
if (mapped == MAP_FAILED)
return errno;
const int fd = open(path, O_RDONLY);
if (fd < 0)
goto _munmap;
xferred = 0;
do {
read_ret = read(fd, (uint8_t *)mapped + xferred, len - xferred);
if (read_ret > 0)
xferred += read_ret;
} while ((read_ret > 0 || (read_ret == -1 && errno == EINTR))
&& xferred < len);
close(fd);
if (xferred < len)
goto _munmap;
if (mprotect(mapped, len, PROT_READ))
goto _munmap;
return 0;
_munmap:
munmap(mapped, len);
return errno;
}
int hw_file_map(const char *const path,
const uint64_t addr,
const uint32_t len,
const uint32_t mode,
const int copy)
{
if (copy)
return map_fill_from_file(path, addr, len, mode);
else
return map_file(path, addr, len, mode);
}