blob: 1a745b3e22690a5c2b3d88a1460b38c7a3b389a4 [file] [log] [blame]
/*
* MobiCore Driver Kernel Module.
*
* This driver represents the command proxy on the lowest layer, from the
* secure world to the non secure world, and vice versa.
* This driver offers IOCTL commands, for access to the secure world, and has
* the interface from the secure world to the normal world.
* The access to the driver is possible with a file descriptor,
* which has to be created by the fd = open(/dev/mobicore) command or
* fd = open(/dev/mobicore-user)
*
* <-- Copyright Giesecke & Devrient GmbH 2009-2012 -->
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <linux/miscdevice.h>
#include <linux/interrupt.h>
#include <linux/highmem.h>
#include <linux/slab.h>
#include <linux/kthread.h>
#include <linux/device.h>
#include <linux/module.h>
#include <linux/ioctl.h>
#include <linux/mm.h>
#include <linux/mman.h>
#include <linux/completion.h>
#include "main.h"
#include "fastcall.h"
#include "arm.h"
#include "mem.h"
#include "ops.h"
#include "pm.h"
#include "debug.h"
#include "logging.h"
/* Define a MobiCore device structure for use with dev_debug() etc */
struct device_driver mcd_debug_name = {
.name = "mcdrvkmod"
};
struct device mcd_debug_subname = {
.init_name = "", /* Set to 'mcd' at mc_init() time */
.driver = &mcd_debug_name
};
struct device *mcd = &mcd_debug_subname;
/* MobiCore interrupt context data */
struct mc_context ctx;
/* Get process context from file pointer */
static struct mc_instance *get_instance(struct file *file)
{
return (struct mc_instance *)(file->private_data);
}
/* Get a unique ID */
unsigned int get_unique_id(void)
{
return (unsigned int)atomic_inc_return(&ctx.unique_counter);
}
/* Clears the reserved bit of each page and frees the pages */
static inline void free_continguous_pages(void *addr, unsigned int order)
{
int i;
struct page *page = virt_to_page(addr);
for (i = 0; i < (1<<order); i++) {
MCDRV_DBG_VERBOSE(mcd, "free page at 0x%p\n", page);
ClearPageReserved(page);
page++;
}
MCDRV_DBG_VERBOSE(mcd, "freeing addr:%p, order:%x\n", addr, order);
free_pages((unsigned long)addr, order);
}
/* Frees the memory associated with a buffer */
static int free_buffer(struct mc_buffer *buffer)
{
if (buffer->handle == 0)
return -EINVAL;
if (buffer->addr == 0)
return -EINVAL;
if (!atomic_dec_and_test(&buffer->usage)) {
MCDRV_DBG_VERBOSE(mcd, "Could not free buffer h=%u",
buffer->handle);
return 0;
}
MCDRV_DBG(mcd, "handle=%u phys_addr=0x%p, virt_addr=0x%p\n",
buffer->handle, buffer->phys, buffer->addr);
list_del(&buffer->list);
free_continguous_pages(buffer->addr, buffer->order);
kfree(buffer);
return 0;
}
static uint32_t mc_find_cont_wsm(struct mc_instance *instance, uint32_t handle,
uint32_t *phys, uint32_t *len)
{
int ret = 0;
struct mc_buffer *buffer;
if (WARN(!instance, "No instance data available"))
return -EFAULT;
if (WARN_ON(!is_daemon(instance))) {
MCDRV_DBG_ERROR(mcd, "caller not MobiCore Daemon\n");
return -EPERM;
}
mutex_lock(&instance->lock);
mutex_lock(&ctx.bufs_lock);
/* search for the given handle in the buffers list */
list_for_each_entry(buffer, &ctx.cont_bufs, list) {
if (buffer->handle == handle) {
*phys = (uint32_t)buffer->phys;
*len = buffer->len;
goto found;
}
}
/* Couldn't find the buffer */
ret = -EINVAL;
found:
mutex_unlock(&ctx.bufs_lock);
mutex_unlock(&instance->lock);
return ret;
}
/*
* __free_buffer - Free a WSM buffer allocated with mobicore_allocate_wsm
*
* @instance
* @handle handle of the buffer
*
* Returns 0 if no error
*
*/
static int __free_buffer(struct mc_instance *instance, uint32_t handle)
{
int ret = 0;
struct mc_buffer *buffer;
if (WARN(!instance, "No instance data available"))
return -EFAULT;
mutex_lock(&ctx.bufs_lock);
/* search for the given handle in the buffers list */
list_for_each_entry(buffer, &ctx.cont_bufs, list) {
if (buffer->handle == handle)
goto del_buffer;
}
ret = -EINVAL;
goto err;
del_buffer:
ret = free_buffer(buffer);
err:
mutex_unlock(&ctx.bufs_lock);
return ret;
}
int mc_free_buffer(struct mc_instance *instance, uint32_t handle)
{
int ret = 0;
if (WARN(!instance, "No instance data available"))
return -EFAULT;
mutex_lock(&instance->lock);
ret = __free_buffer(instance, handle);
mutex_unlock(&instance->lock);
return ret;
}
int mc_get_buffer(struct mc_instance *instance,
struct mc_buffer **buffer, unsigned long len)
{
struct mc_buffer *cbuffer = NULL;
void *addr = 0;
void *phys = 0;
unsigned int order;
unsigned long allocated_size;
int ret = 0;
if (WARN(!instance, "No instance data available"))
return -EFAULT;
if (len == 0) {
MCDRV_DBG_WARN(mcd, "cannot allocate size 0\n");
return -ENOMEM;
}
order = get_order(len);
if (order > MAX_ORDER) {
MCDRV_DBG_WARN(mcd, "Buffer size too large\n");
return -ENOMEM;
}
allocated_size = (1 << order) * PAGE_SIZE;
if (mutex_lock_interruptible(&instance->lock))
return -ERESTARTSYS;
/* allocate a new buffer. */
cbuffer = kzalloc(sizeof(struct mc_buffer), GFP_KERNEL);
if (cbuffer == NULL) {
MCDRV_DBG_WARN(mcd,
"MMAP_WSM request: could not allocate buffer\n");
ret = -ENOMEM;
goto unlock_instance;
}
mutex_lock(&ctx.bufs_lock);
MCDRV_DBG_VERBOSE(mcd, "size %ld -> order %d --> %ld (2^n pages)\n",
len, order, allocated_size);
addr = (void *)__get_free_pages(GFP_USER | __GFP_ZERO, order);
if (addr == NULL) {
MCDRV_DBG_WARN(mcd, "get_free_pages failed\n");
ret = -ENOMEM;
goto err;
}
phys = (void *)virt_to_phys(addr);
cbuffer->handle = get_unique_id();
cbuffer->phys = phys;
cbuffer->addr = addr;
cbuffer->order = order;
cbuffer->len = len;
cbuffer->instance = instance;
/* Refcount +1 because the TLC is requesting it */
atomic_set(&cbuffer->usage, 1);
INIT_LIST_HEAD(&cbuffer->list);
list_add(&cbuffer->list, &ctx.cont_bufs);
MCDRV_DBG(mcd,
"allocated phys=0x%p - 0x%p, size=%ld, kvirt=0x%p, h=%d\n",
phys, (void *)((unsigned int)phys+allocated_size),
allocated_size, addr, cbuffer->handle);
*buffer = cbuffer;
goto unlock;
err:
kfree(cbuffer);
unlock:
mutex_unlock(&ctx.bufs_lock);
unlock_instance:
mutex_unlock(&instance->lock);
return ret;
}
/*
* __lock_buffer() - Locks a contiguous buffer - +1 refcount.
* Assumes the instance lock is already taken!
*/
static int __lock_buffer(struct mc_instance *instance, uint32_t handle)
{
int ret = 0;
struct mc_buffer *buffer;
if (WARN(!instance, "No instance data available"))
return -EFAULT;
if (WARN_ON(!is_daemon(instance))) {
MCDRV_DBG_ERROR(mcd, "caller not MobiCore Daemon\n");
return -EPERM;
}
mutex_lock(&ctx.bufs_lock);
/* search for the given handle in the buffers list */
list_for_each_entry(buffer, &ctx.cont_bufs, list) {
if (buffer->handle == handle) {
atomic_inc(&buffer->usage);
goto unlock;
}
}
ret = -EINVAL;
unlock:
mutex_unlock(&ctx.bufs_lock);
return ret;
}
void *get_mci_base_phys(unsigned int len)
{
if (ctx.mci_base.phys) {
return ctx.mci_base.phys;
} else {
unsigned int order = get_order(len);
ctx.mcp = NULL;
ctx.mci_base.order = order;
ctx.mci_base.addr =
(void *)__get_free_pages(GFP_USER | __GFP_ZERO, order);
if (ctx.mci_base.addr == NULL) {
MCDRV_DBG_WARN(mcd, "get_free_pages failed\n");
memset(&ctx.mci_base, 0, sizeof(ctx.mci_base));
return NULL;
}
ctx.mci_base.phys = (void *)virt_to_phys(ctx.mci_base.addr);
return ctx.mci_base.phys;
}
}
/*
* Create a l2 table from a virtual memory buffer which can be vmalloc
* or user space virtual memory
*/
int mc_register_wsm_l2(struct mc_instance *instance,
uint32_t buffer, uint32_t len,
uint32_t *handle, uint32_t *phys)
{
int ret = 0;
struct mc_l2_table *table = NULL;
struct task_struct *task = current;
if (WARN(!instance, "No instance data available"))
return -EFAULT;
if (len == 0) {
MCDRV_DBG_ERROR(mcd, "len=0 is not supported!\n");
return -EINVAL;
}
table = mc_alloc_l2_table(instance, task, (void *)buffer, len);
if (IS_ERR(table)) {
MCDRV_DBG_ERROR(mcd, "new_used_l2_table() failed\n");
return -EINVAL;
}
/* set response */
*handle = table->handle;
/* WARNING: daemon shouldn't know this either, but live with it */
if (is_daemon(instance))
*phys = (uint32_t)table->phys;
else
*phys = 0;
MCDRV_DBG_VERBOSE(mcd, "handle: %d, phys=%p\n",
*handle, (void *)*phys);
MCDRV_DBG_VERBOSE(mcd, "exit with %d/0x%08X\n", ret, ret);
return ret;
}
int mc_unregister_wsm_l2(struct mc_instance *instance, uint32_t handle)
{
int ret = 0;
if (WARN(!instance, "No instance data available"))
return -EFAULT;
/* free table (if no further locks exist) */
mc_free_l2_table(instance, handle);
return ret;
}
/* Lock the object from handle, it could be a WSM l2 table or a cont buffer! */
static int mc_lock_handle(struct mc_instance *instance, uint32_t handle)
{
int ret = 0;
if (WARN(!instance, "No instance data available"))
return -EFAULT;
if (WARN_ON(!is_daemon(instance))) {
MCDRV_DBG_ERROR(mcd, "caller not MobiCore Daemon\n");
return -EPERM;
}
mutex_lock(&instance->lock);
ret = mc_lock_l2_table(instance, handle);
/* Handle was not a l2 table but a cont buffer */
if (ret == -EINVAL) {
/* Call the non locking variant! */
ret = __lock_buffer(instance, handle);
}
mutex_unlock(&instance->lock);
return ret;
}
static int mc_unlock_handle(struct mc_instance *instance, uint32_t handle)
{
int ret = 0;
if (WARN(!instance, "No instance data available"))
return -EFAULT;
if (WARN_ON(!is_daemon(instance))) {
MCDRV_DBG_ERROR(mcd, "caller not MobiCore Daemon\n");
return -EPERM;
}
mutex_lock(&instance->lock);
ret = mc_free_l2_table(instance, handle);
/* Not a l2 table, then it must be a buffer */
if (ret == -EINVAL) {
/* Call the non locking variant! */
ret = __free_buffer(instance, handle);
}
mutex_unlock(&instance->lock);
return ret;
}
static uint32_t mc_find_wsm_l2(struct mc_instance *instance, uint32_t handle)
{
uint32_t ret = 0;
if (WARN(!instance, "No instance data available"))
return 0;
if (WARN_ON(!is_daemon(instance))) {
MCDRV_DBG_ERROR(mcd, "caller not MobiCore Daemon\n");
return 0;
}
mutex_lock(&instance->lock);
ret = mc_find_l2_table(instance, handle);
mutex_unlock(&instance->lock);
return ret;
}
static int mc_clean_wsm_l2(struct mc_instance *instance)
{
if (WARN(!instance, "No instance data available"))
return -EFAULT;
if (WARN_ON(!is_daemon(instance))) {
MCDRV_DBG_ERROR(mcd, "caller not MobiCore Daemon\n");
return -EPERM;
}
mc_clean_l2_tables();
return 0;
}
static int mc_fd_mmap(struct file *file, struct vm_area_struct *vmarea)
{
struct mc_instance *instance = get_instance(file);
unsigned long len = vmarea->vm_end - vmarea->vm_start;
void *paddr = (void *)(vmarea->vm_pgoff << PAGE_SHIFT);
unsigned int pfn;
struct mc_buffer *buffer = 0;
int ret = 0;
MCDRV_DBG(mcd, "enter (vma start=0x%p, size=%ld, mci=%p)\n",
(void *)vmarea->vm_start, len, ctx.mci_base.phys);
if (WARN(!instance, "No instance data available"))
return -EFAULT;
if (len == 0) {
MCDRV_DBG_ERROR(mcd, "cannot allocate size 0\n");
return -ENOMEM;
}
if (paddr) {
mutex_lock(&ctx.bufs_lock);
/* search for the buffer list. */
list_for_each_entry(buffer, &ctx.cont_bufs, list) {
if (buffer->phys == paddr)
goto found;
else
break;
}
/* Nothing found return */
mutex_unlock(&ctx.bufs_lock);
return -EINVAL;
found:
vmarea->vm_flags |= VM_RESERVED;
/*
* Convert kernel address to user address. Kernel address begins
* at PAGE_OFFSET, user address range is below PAGE_OFFSET.
* Remapping the area is always done, so multiple mappings
* of one region are possible. Now remap kernel address
* space into user space
*/
pfn = (unsigned int)paddr >> PAGE_SHIFT;
ret = (int)remap_pfn_range(vmarea, vmarea->vm_start, pfn,
buffer->len, vmarea->vm_page_prot);
mutex_unlock(&ctx.bufs_lock);
} else {
if (!is_daemon(instance))
return -EPERM;
paddr = get_mci_base_phys(len);
if (!paddr)
return -EFAULT;
vmarea->vm_flags |= VM_RESERVED;
/*
* Convert kernel address to user address. Kernel address begins
* at PAGE_OFFSET, user address range is below PAGE_OFFSET.
* Remapping the area is always done, so multiple mappings
* of one region are possible. Now remap kernel address
* space into user space
*/
pfn = (unsigned int)paddr >> PAGE_SHIFT;
ret = (int)remap_pfn_range(vmarea, vmarea->vm_start, pfn, len,
vmarea->vm_page_prot);
}
MCDRV_DBG_VERBOSE(mcd, "exit with %d/0x%08X\n", ret, ret);
return ret;
}
static inline int ioctl_check_pointer(unsigned int cmd, int __user *uarg)
{
int err = 0;
if (_IOC_DIR(cmd) & _IOC_READ)
err = !access_ok(VERIFY_WRITE, uarg, _IOC_SIZE(cmd));
else if (_IOC_DIR(cmd) & _IOC_WRITE)
err = !access_ok(VERIFY_READ, uarg, _IOC_SIZE(cmd));
if (err)
return -EFAULT;
return 0;
}
/*
* mc_fd_user_ioctl() - Will be called from user space as ioctl(..)
* @file pointer to file
* @cmd command
* @arg arguments
*
* Returns 0 for OK and an errno in case of error
*/
static long mc_fd_user_ioctl(struct file *file, unsigned int cmd,
unsigned long arg)
{
struct mc_instance *instance = get_instance(file);
int __user *uarg = (int __user *)arg;
int ret = -EINVAL;
if (WARN(!instance, "No instance data available"))
return -EFAULT;
if (ioctl_check_pointer(cmd, uarg))
return -EFAULT;
switch (cmd) {
case MC_IO_FREE:
ret = mc_free_buffer(instance, (uint32_t)arg);
break;
case MC_IO_REG_WSM:{
struct mc_ioctl_reg_wsm reg;
if (copy_from_user(&reg, uarg, sizeof(reg)))
return -EFAULT;
ret = mc_register_wsm_l2(instance, reg.buffer,
reg.len, &reg.handle, &reg.table_phys);
if (!ret) {
if (copy_to_user(uarg, &reg, sizeof(reg))) {
ret = -EFAULT;
mc_unregister_wsm_l2(instance, reg.handle);
}
}
break;
}
case MC_IO_UNREG_WSM:
ret = mc_unregister_wsm_l2(instance, (uint32_t)arg);
break;
case MC_IO_VERSION:
ret = put_user(mc_get_version(), uarg);
if (ret)
MCDRV_DBG_ERROR(mcd,
"IOCTL_GET_VERSION failed to put data");
break;
case MC_IO_MAP_WSM:{
struct mc_ioctl_map map;
struct mc_buffer *buffer = 0;
if (copy_from_user(&map, uarg, sizeof(map)))
return -EFAULT;
/* Setup the WSM buffer structure! */
if (mc_get_buffer(instance, &buffer, map.len))
return -EFAULT;
map.handle = buffer->handle;
map.phys_addr = (unsigned long)buffer->phys;
map.reused = 0;
if (copy_to_user(uarg, &map, sizeof(map)))
ret = -EFAULT;
ret = 0;
break;
}
default:
MCDRV_DBG_ERROR(mcd, "unsupported cmd=%d\n", cmd);
ret = -ENOIOCTLCMD;
break;
} /* end switch(cmd) */
#ifdef MC_MEM_TRACES
mobicore_log_read();
#endif
return (int)ret;
}
static long mc_fd_admin_ioctl(struct file *file, unsigned int cmd,
unsigned long arg)
{
struct mc_instance *instance = get_instance(file);
int __user *uarg = (int __user *)arg;
int ret = -EINVAL;
if (WARN(!instance, "No instance data available"))
return -EFAULT;
if (WARN_ON(!is_daemon(instance))) {
MCDRV_DBG_ERROR(mcd, "caller not MobiCore Daemon\n");
return -EPERM;
}
if (ioctl_check_pointer(cmd, uarg))
return -EFAULT;
if (ctx.mcp) {
while (ctx.mcp->flags.sleep_mode.SleepReq) {
ctx.daemon = current;
set_current_state(TASK_INTERRUPTIBLE);
/* Back off daemon for a while */
schedule_timeout(msecs_to_jiffies(DAEMON_BACKOFF_TIME));
set_current_state(TASK_RUNNING);
}
}
switch (cmd) {
case MC_IO_INIT: {
struct mc_ioctl_init init;
ctx.mcp = NULL;
if (!ctx.mci_base.phys) {
MCDRV_DBG_ERROR(mcd,
"Cannot init MobiCore without MCI!");
return -EINVAL;
}
if (copy_from_user(&init, uarg, sizeof(init)))
return -EFAULT;
ctx.mcp = ctx.mci_base.addr + init.mcp_offset;
ret = mc_init((uint32_t)ctx.mci_base.phys, init.nq_offset,
init.nq_length, init.mcp_offset, init.mcp_length);
break;
}
case MC_IO_INFO: {
struct mc_ioctl_info info;
if (copy_from_user(&info, uarg, sizeof(info)))
return -EFAULT;
ret = mc_info(info.ext_info_id, &info.state,
&info.ext_info);
if (!ret) {
if (copy_to_user(uarg, &info, sizeof(info)))
ret = -EFAULT;
}
break;
}
case MC_IO_YIELD:
ret = mc_yield();
break;
case MC_IO_NSIQ:
ret = mc_nsiq();
break;
case MC_IO_LOCK_WSM: {
ret = mc_lock_handle(instance, (uint32_t)arg);
break;
}
case MC_IO_UNLOCK_WSM:
ret = mc_unlock_handle(instance, (uint32_t)arg);
break;
case MC_IO_CLEAN_WSM:
ret = mc_clean_wsm_l2(instance);
break;
case MC_IO_RESOLVE_WSM: {
uint32_t handle, phys;
if (get_user(handle, uarg))
return -EFAULT;
phys = mc_find_wsm_l2(instance, handle);
if (!phys)
return -EFAULT;
ret = put_user(phys, uarg);
break;
}
case MC_IO_RESOLVE_CONT_WSM: {
struct mc_ioctl_resolv_cont_wsm cont_wsm;
uint32_t phys = 0, len = 0;
if (copy_from_user(&cont_wsm, uarg, sizeof(cont_wsm)))
return -EFAULT;
ret = mc_find_cont_wsm(instance, cont_wsm.handle, &phys, &len);
if (!ret) {
cont_wsm.phys = phys;
cont_wsm.length = len;
if (copy_to_user(uarg, &cont_wsm, sizeof(cont_wsm)))
ret = -EFAULT;
}
break;
}
case MC_IO_MAP_MCI:{
struct mc_ioctl_map map;
if (copy_from_user(&map, uarg, sizeof(map)))
return -EFAULT;
map.reused = (ctx.mci_base.phys != 0);
map.phys_addr = (unsigned long)get_mci_base_phys(map.len);
if (!map.phys_addr) {
MCDRV_DBG_ERROR(mcd, "Failed to setup MCI buffer!");
return -EFAULT;
}
if (copy_to_user(uarg, &map, sizeof(map)))
ret = -EFAULT;
ret = 0;
break;
}
case MC_IO_MAP_PWSM:{
break;
}
/* The rest is handled commonly by user IOCTL */
default:
ret = mc_fd_user_ioctl(file, cmd, arg);
} /* end switch(cmd) */
#ifdef MC_MEM_TRACES
mobicore_log_read();
#endif
return (int)ret;
}
/*
* mc_fd_read() - This will be called from user space as read(...)
* @file: file pointer
* @buffer: buffer where to copy to(userspace)
* @buffer_len: number of requested data
* @pos: not used
*
* The read function is blocking until a interrupt occurs. In that case the
* event counter is copied into user space and the function is finished.
*
* If OK this function returns the number of copied data otherwise it returns
* errno
*/
static ssize_t mc_fd_read(struct file *file, char *buffer, size_t buffer_len,
loff_t *pos)
{
int ret = 0, ssiq_counter;
struct mc_instance *instance = get_instance(file);
if (WARN(!instance, "No instance data available"))
return -EFAULT;
/* avoid debug output on non-error, because this is call quite often */
MCDRV_DBG_VERBOSE(mcd, "enter\n");
/* only the MobiCore Daemon is allowed to call this function */
if (WARN_ON(!is_daemon(instance))) {
MCDRV_DBG_ERROR(mcd, "caller not MobiCore Daemon\n");
return -EPERM;
}
if (buffer_len < sizeof(unsigned int)) {
MCDRV_DBG_ERROR(mcd, "invalid length\n");
return -EINVAL;
}
for (;;) {
if (wait_for_completion_interruptible(&ctx.isr_comp)) {
MCDRV_DBG_VERBOSE(mcd, "read interrupted\n");
return -ERESTARTSYS;
}
ssiq_counter = atomic_read(&ctx.isr_counter);
MCDRV_DBG_VERBOSE(mcd, "ssiq_counter=%i, ctx.counter=%i\n",
ssiq_counter, ctx.evt_counter);
if (ssiq_counter != ctx.evt_counter) {
/* read data and exit loop without error */
ctx.evt_counter = ssiq_counter;
ret = 0;
break;
}
/* end loop if non-blocking */
if (file->f_flags & O_NONBLOCK) {
MCDRV_DBG_ERROR(mcd, "non-blocking read\n");
return -EAGAIN;
}
if (signal_pending(current)) {
MCDRV_DBG_VERBOSE(mcd, "received signal.\n");
return -ERESTARTSYS;
}
}
/* read data and exit loop */
ret = copy_to_user(buffer, &ctx.evt_counter, sizeof(unsigned int));
if (ret != 0) {
MCDRV_DBG_ERROR(mcd, "copy_to_user failed\n");
return -EFAULT;
}
ret = sizeof(unsigned int);
return (ssize_t)ret;
}
/*
* Initialize a new mobicore API instance object
*
* @return Instance or NULL if no allocation was possible.
*/
struct mc_instance *mc_alloc_instance(void)
{
struct mc_instance *instance;
instance = kzalloc(sizeof(*instance), GFP_KERNEL);
if (instance == NULL)
return NULL;
/* get a unique ID for this instance (PIDs are not unique) */
instance->handle = get_unique_id();
mutex_init(&instance->lock);
return instance;
}
/*
* Release a mobicore instance object and all objects related to it
* @instance: instance
* Returns 0 if Ok or -E ERROR
*/
int mc_release_instance(struct mc_instance *instance)
{
struct mc_buffer *buffer, *tmp;
if (WARN(!instance, "No instance data available"))
return -EFAULT;
mutex_lock(&instance->lock);
mc_clear_l2_tables(instance);
mutex_lock(&ctx.bufs_lock);
/* release all mapped data */
/* Check if some buffers are orphaned. */
list_for_each_entry_safe(buffer, tmp, &ctx.cont_bufs, list) {
if (buffer->instance == instance) {
buffer->instance = NULL;
free_buffer(buffer);
}
}
mutex_unlock(&ctx.bufs_lock);
mutex_unlock(&instance->lock);
/* release instance context */
kfree(instance);
return 0;
}
/*
* mc_fd_user_open() - Will be called from user space as fd = open(...)
* A set of internal instance data are created and initialized.
*
* @inode
* @file
* Returns 0 if OK or -ENOMEM if no allocation was possible.
*/
static int mc_fd_user_open(struct inode *inode, struct file *file)
{
struct mc_instance *instance;
MCDRV_DBG_VERBOSE(mcd, "enter\n");
instance = mc_alloc_instance();
if (instance == NULL)
return -ENOMEM;
/* store instance data reference */
file->private_data = instance;
return 0;
}
static int mc_fd_admin_open(struct inode *inode, struct file *file)
{
struct mc_instance *instance;
/*
* The daemon is already set so we can't allow anybody else to open
* the admin interface.
*/
if (ctx.daemon_inst) {
MCDRV_DBG_ERROR(mcd, "Daemon is already connected");
return -EPERM;
}
/* Setup the usual variables */
if (mc_fd_user_open(inode, file))
return -ENOMEM;
instance = get_instance(file);
MCDRV_DBG(mcd, "accept this as MobiCore Daemon\n");
ctx.daemon_inst = instance;
ctx.daemon = current;
instance->admin = true;
init_completion(&ctx.isr_comp);
/* init ssiq event counter */
ctx.evt_counter = atomic_read(&(ctx.isr_counter));
return 0;
}
/*
* mc_fd_release() - This function will be called from user space as close(...)
* The instance data are freed and the associated memory pages are unreserved.
*
* @inode
* @file
*
* Returns 0
*/
static int mc_fd_release(struct inode *inode, struct file *file)
{
int ret = 0;
struct mc_instance *instance = get_instance(file);
if (WARN(!instance, "No instance data available"))
return -EFAULT;
/* check if daemon closes us. */
if (is_daemon(instance)) {
MCDRV_DBG_WARN(mcd, "WARNING: MobiCore Daemon died\n");
ctx.daemon_inst = NULL;
ctx.daemon = NULL;
}
ret = mc_release_instance(instance);
/*
* ret is quite irrelevant here as most apps don't care about the
* return value from close() and it's quite difficult to recover
*/
MCDRV_DBG_VERBOSE(mcd, "exit with %d/0x%08X\n", ret, ret);
return (int)ret;
}
/*
* This function represents the interrupt function of the mcDrvModule.
* It signals by incrementing of an event counter and the start of the read
* waiting queue, the read function a interrupt has occurred.
*/
static irqreturn_t mc_ssiq_isr(int intr, void *context)
{
/* increment interrupt event counter */
atomic_inc(&(ctx.isr_counter));
/* signal the daemon */
complete(&ctx.isr_comp);
return IRQ_HANDLED;
}
/* function table structure of this device driver. */
static const struct file_operations mc_admin_fops = {
.owner = THIS_MODULE,
.open = mc_fd_admin_open,
.release = mc_fd_release,
.unlocked_ioctl = mc_fd_admin_ioctl,
.mmap = mc_fd_mmap,
.read = mc_fd_read,
};
static struct miscdevice mc_admin_device = {
.name = MC_ADMIN_DEVNODE,
.mode = (S_IRWXU),
.minor = MISC_DYNAMIC_MINOR,
.fops = &mc_admin_fops,
};
/* function table structure of this device driver. */
static const struct file_operations mc_user_fops = {
.owner = THIS_MODULE,
.open = mc_fd_user_open,
.release = mc_fd_release,
.unlocked_ioctl = mc_fd_user_ioctl,
.mmap = mc_fd_mmap,
};
static struct miscdevice mc_user_device = {
.name = MC_USER_DEVNODE,
.mode = (S_IRWXU | S_IRWXG | S_IRWXO),
.minor = MISC_DYNAMIC_MINOR,
.fops = &mc_user_fops,
};
/*
* This function is called the kernel during startup or by a insmod command.
* This device is installed and registered as miscdevice, then interrupt and
* queue handling is set up
*/
static int __init mobicore_init(void)
{
int ret = 0;
dev_set_name(mcd, "mcd");
MCDRV_DBG(mcd, "enter (Build " __TIMESTAMP__ ")\n");
MCDRV_DBG(mcd, "mcDrvModuleApi version is %i.%i\n",
MCDRVMODULEAPI_VERSION_MAJOR,
MCDRVMODULEAPI_VERSION_MINOR);
#ifdef MOBICORE_COMPONENT_BUILD_TAG
MCDRV_DBG(mcd, "%s\n", MOBICORE_COMPONENT_BUILD_TAG);
#endif
/* Hardware does not support ARM TrustZone -> Cannot continue! */
if (!has_security_extensions()) {
MCDRV_DBG_ERROR(mcd,
"Hardware doesn't support ARM TrustZone!\n");
return -ENODEV;
}
/* Running in secure mode -> Cannot load the driver! */
if (is_secure_mode()) {
MCDRV_DBG_ERROR(mcd, "Running in secure MODE!\n");
return -ENODEV;
}
init_completion(&ctx.isr_comp);
/* set up S-SIQ interrupt handler */
ret = request_irq(MC_INTR_SSIQ, mc_ssiq_isr, IRQF_TRIGGER_RISING,
MC_ADMIN_DEVNODE, &ctx);
if (ret != 0) {
MCDRV_DBG_ERROR(mcd, "interrupt request failed\n");
goto error;
}
#ifdef MC_PM_RUNTIME
ret = mc_pm_initialize(&ctx);
if (ret != 0) {
MCDRV_DBG_ERROR(mcd, "Power Management init failed!\n");
goto free_isr;
}
#endif
ret = misc_register(&mc_admin_device);
if (ret != 0) {
MCDRV_DBG_ERROR(mcd, "admin device register failed\n");
goto free_isr;
}
ret = misc_register(&mc_user_device);
if (ret != 0) {
MCDRV_DBG_ERROR(mcd, "user device register failed\n");
goto free_admin;
}
#ifdef MC_MEM_TRACES
mobicore_log_setup();
#endif
/* initialize event counter for signaling of an IRQ to zero */
atomic_set(&ctx.isr_counter, 0);
ret = mc_init_l2_tables();
/*
* initialize unique number counter which we can use for
* handles. It is limited to 2^32, but this should be
* enough to be roll-over safe for us. We start with 1
* instead of 0.
*/
atomic_set(&ctx.unique_counter, 1);
/* init list for contiguous buffers */
INIT_LIST_HEAD(&ctx.cont_bufs);
/* init lock for the buffers list */
mutex_init(&ctx.bufs_lock);
memset(&ctx.mci_base, 0, sizeof(ctx.mci_base));
MCDRV_DBG(mcd, "initialized\n");
return 0;
free_admin:
misc_deregister(&mc_admin_device);
free_isr:
free_irq(MC_INTR_SSIQ, &ctx);
error:
return ret;
}
/*
* This function removes this device driver from the Linux device manager .
*/
static void __exit mobicore_exit(void)
{
MCDRV_DBG_VERBOSE(mcd, "enter\n");
#ifdef MC_MEM_TRACES
mobicore_log_free();
#endif
mc_release_l2_tables();
#ifdef MC_PM_RUNTIME
mc_pm_free();
#endif
free_irq(MC_INTR_SSIQ, &ctx);
misc_deregister(&mc_admin_device);
misc_deregister(&mc_user_device);
MCDRV_DBG_VERBOSE(mcd, "exit");
}
/* Linux Driver Module Macros */
module_init(mobicore_init);
module_exit(mobicore_exit);
MODULE_AUTHOR("Giesecke & Devrient GmbH");
MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("MobiCore driver");