crypto: rockchip: cryptodev_linux: add rk_cryptodev_ioctl

RIOCCRYPT_FD         : used to support dma_fd crypt.
RIOCCRYPT_FD_MAP     : used to map dma_fd to phys_addr.
RIOCCRYPT_FD_UNMAP   : used to unmap between dma_fd and phys_addr.
RIOCCRYPT_CPU_ACCESS : for cpu access after dma_fd map
RIOCCRYPT_DEV_ACCESS : for DEV access after dma_fd map

Signed-off-by: Lin Jinhan <troy.lin@rock-chips.com>
Change-Id: Ifa016c0009fde3d6909fb4e2313af341d808f793
This commit is contained in:
Lin Jinhan
2021-12-27 14:26:39 +08:00
committed by Tao Huang
parent d5cea8f2c7
commit 0ff0eff24d
5 changed files with 892 additions and 2 deletions

View File

@@ -0,0 +1,42 @@
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (c) 2021 Rockchip Electronics Co. Ltd. */
#ifndef __RK_CRYPTODEV_H__
#define __RK_CRYPTODEV_H__
#include <linux/types.h>
#include <linux/version.h>
#include "cryptodev.h"
#ifndef __KERNEL__
#define __user
#endif
/* input of RIOCCRYPT_FD */
struct crypt_fd_op {
__u32 ses; /* session identifier */
__u16 op; /* COP_ENCRYPT or COP_DECRYPT */
__u16 flags; /* see COP_FLAG_* */
__u32 len; /* length of source data */
int src_fd; /* source data */
int dst_fd; /* pointer to output data */
/* pointer to output data for hash/MAC operations */
__u8 __user *mac;
/* initialization vector for encryption operations */
__u8 __user *iv;
};
/* input of RIOCCRYPT_FD_MAP/RIOCCRYPT_FD_UNMAP */
struct crypt_fd_map_op {
int dma_fd; /* session identifier */
__u32 phys_addr; /* physics addr */
};
#define RIOCCRYPT_FD _IOWR('r', 104, struct crypt_fd_op)
#define RIOCCRYPT_FD_MAP _IOWR('r', 105, struct crypt_fd_map_op)
#define RIOCCRYPT_FD_UNMAP _IOW('r', 106, struct crypt_fd_map_op)
#define RIOCCRYPT_CPU_ACCESS _IOW('r', 107, struct crypt_fd_map_op)
#define RIOCCRYPT_DEV_ACCESS _IOW('r', 108, struct crypt_fd_map_op)
#endif

View File

@@ -41,6 +41,7 @@ extern int cryptodev_verbosity;
struct fcrypt {
struct list_head list;
struct list_head dma_map_list;
struct mutex sem;
};

View File

@@ -54,6 +54,8 @@
#include "version.h"
#include "cipherapi.h"
#include "rk_cryptodev_int.h"
MODULE_AUTHOR("Nikos Mavrogiannopoulos <nmav@gnutls.org>");
MODULE_DESCRIPTION("CryptoDev driver");
MODULE_LICENSE("GPL");
@@ -560,6 +562,7 @@ cryptodev_open(struct inode *inode, struct file *filp)
mutex_init(&pcr->done.lock);
INIT_LIST_HEAD(&pcr->fcrypt.list);
INIT_LIST_HEAD(&pcr->fcrypt.dma_map_list);
INIT_LIST_HEAD(&pcr->free.list);
INIT_LIST_HEAD(&pcr->todo.list);
INIT_LIST_HEAD(&pcr->done.list);
@@ -1002,7 +1005,7 @@ cryptodev_ioctl(struct file *filp, unsigned int cmd, unsigned long arg_)
return kcop_to_user(&kcop, fcr, arg);
#endif
default:
return -EINVAL;
return rk_cryptodev_ioctl(fcr, cmd, arg_);
}
}
@@ -1160,7 +1163,7 @@ cryptodev_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg_)
return compat_kcop_to_user(&kcop, fcr, arg);
#endif
default:
return -EINVAL;
return rk_compat_cryptodev_ioctl(fcr, cmd, arg_);
}
}

View File

@@ -8,11 +8,31 @@
*
*/
#include <linux/kernel.h>
#include <linux/scatterlist.h>
#include <linux/rtnetlink.h>
#include <linux/sysctl.h>
#include <linux/dma-mapping.h>
#include <linux/dma-direct.h>
#include <linux/dma-buf.h>
#include <linux/list.h>
#include "crypto/cryptodev.h"
#include "cryptodev_int.h"
#include "version.h"
#include "cipherapi.h"
#include "rk_cryptodev_int.h"
#define MAX_CRYPTO_DEV 1
#define MAX_CRYPTO_NAME_LEN 64
struct dma_fd_map_node {
struct kernel_crypt_fd_map_op fd_map;
struct sg_table *sgtbl;
struct dma_buf *dmabuf;
struct dma_buf_attachment *dma_attach;
struct list_head list;
};
struct crypto_dev_info {
struct device *dev;
char name[MAX_CRYPTO_NAME_LEN];
@@ -71,3 +91,768 @@ int rk_cryptodev_unregister_dev(struct device *dev)
return -EINVAL;
}
EXPORT_SYMBOL_GPL(rk_cryptodev_unregister_dev);
static struct device *rk_cryptodev_find_dev(const char *name)
{
uint32_t i;
for (i = 0; i < ARRAY_SIZE(g_dev_infos); i++) {
if (g_dev_infos[i].dev)
return g_dev_infos[i].dev;
}
return NULL;
}
/* this function has to be called from process context */
static int fill_kcop_fd_from_cop(struct kernel_crypt_fd_op *kcop, struct fcrypt *fcr)
{
struct crypt_fd_op *cop = &kcop->cop;
struct csession *ses_ptr;
int rc;
/* this also enters ses_ptr->sem */
ses_ptr = crypto_get_session_by_sid(fcr, cop->ses);
if (unlikely(!ses_ptr)) {
derr(1, "invalid session ID=0x%08X", cop->ses);
return -EINVAL;
}
kcop->ivlen = cop->iv ? ses_ptr->cdata.ivsize : 0;
kcop->digestsize = 0; /* will be updated during operation */
crypto_put_session(ses_ptr);
kcop->task = current;
kcop->mm = current->mm;
if (cop->iv) {
rc = copy_from_user(kcop->iv, cop->iv, kcop->ivlen);
if (unlikely(rc)) {
derr(1, "error copying IV (%d bytes), returned %d for addr %p",
kcop->ivlen, rc, cop->iv);
return -EFAULT;
}
}
return 0;
}
/* this function has to be called from process context */
static int fill_cop_fd_from_kcop(struct kernel_crypt_fd_op *kcop, struct fcrypt *fcr)
{
int ret;
if (kcop->digestsize) {
ret = copy_to_user(kcop->cop.mac,
kcop->hash_output, kcop->digestsize);
if (unlikely(ret))
return -EFAULT;
}
if (kcop->ivlen && kcop->cop.flags & COP_FLAG_WRITE_IV) {
ret = copy_to_user(kcop->cop.iv,
kcop->iv, kcop->ivlen);
if (unlikely(ret))
return -EFAULT;
}
return 0;
}
static int kcop_fd_from_user(struct kernel_crypt_fd_op *kcop,
struct fcrypt *fcr, void __user *arg)
{
if (unlikely(copy_from_user(&kcop->cop, arg, sizeof(kcop->cop))))
return -EFAULT;
return fill_kcop_fd_from_cop(kcop, fcr);
}
static int kcop_fd_to_user(struct kernel_crypt_fd_op *kcop,
struct fcrypt *fcr, void __user *arg)
{
int ret;
ret = fill_cop_fd_from_kcop(kcop, fcr);
if (unlikely(ret)) {
derr(1, "Error in fill_cop_from_kcop");
return ret;
}
if (unlikely(copy_to_user(arg, &kcop->cop, sizeof(kcop->cop)))) {
derr(1, "Cannot copy to userspace");
return -EFAULT;
}
return 0;
}
static int
hash_n_crypt_fd(struct csession *ses_ptr, struct crypt_fd_op *cop,
struct scatterlist *src_sg, struct scatterlist *dst_sg,
uint32_t len)
{
int ret;
/* Always hash before encryption and after decryption. Maybe
* we should introduce a flag to switch... TBD later on.
*/
if (cop->op == COP_ENCRYPT) {
if (ses_ptr->hdata.init != 0) {
ret = cryptodev_hash_update(&ses_ptr->hdata,
src_sg, len);
if (unlikely(ret))
goto out_err;
}
if (ses_ptr->cdata.init != 0) {
ret = cryptodev_cipher_encrypt(&ses_ptr->cdata,
src_sg, dst_sg, len);
if (unlikely(ret))
goto out_err;
}
} else {
if (ses_ptr->cdata.init != 0) {
ret = cryptodev_cipher_decrypt(&ses_ptr->cdata,
src_sg, dst_sg, len);
if (unlikely(ret))
goto out_err;
}
if (ses_ptr->hdata.init != 0) {
ret = cryptodev_hash_update(&ses_ptr->hdata,
dst_sg, len);
if (unlikely(ret))
goto out_err;
}
}
return 0;
out_err:
derr(0, "CryptoAPI failure: %d", ret);
return ret;
}
static int get_dmafd_sgtbl(int dma_fd, unsigned int dma_len, enum dma_data_direction dir,
struct sg_table **sg_tbl, struct dma_buf_attachment **dma_attach,
struct dma_buf **dmabuf)
{
struct device *crypto_dev = rk_cryptodev_find_dev(NULL);
if (!crypto_dev)
return -EINVAL;
*sg_tbl = NULL;
*dmabuf = NULL;
*dma_attach = NULL;
*dmabuf = dma_buf_get(dma_fd);
if (IS_ERR(*dmabuf)) {
derr(1, "dmabuf error! ret = %d", (int)PTR_ERR(*dmabuf));
*dmabuf = NULL;
goto error;
}
*dma_attach = dma_buf_attach(*dmabuf, crypto_dev);
if (IS_ERR(*dma_attach)) {
derr(1, "dma_attach error! ret = %d", (int)PTR_ERR(*dma_attach));
*dma_attach = NULL;
goto error;
}
*sg_tbl = dma_buf_map_attachment(*dma_attach, dir);
if (IS_ERR(*sg_tbl)) {
derr(1, "sg_tbl error! ret = %d", (int)PTR_ERR(*sg_tbl));
*sg_tbl = NULL;
goto error;
}
/* insure user data flush to ddr */
dma_sync_sg_for_cpu(crypto_dev, (*sg_tbl)->sgl, (*sg_tbl)->nents, DMA_FROM_DEVICE);
return 0;
error:
if (*sg_tbl)
dma_buf_unmap_attachment(*dma_attach, *sg_tbl, dir);
if (*dma_attach)
dma_buf_detach(*dmabuf, *dma_attach);
if (*dmabuf)
dma_buf_put(*dmabuf);
return -EINVAL;
}
static int put_dmafd_sgtbl(int dma_fd, enum dma_data_direction dir,
struct sg_table *sg_tbl, struct dma_buf_attachment *dma_attach,
struct dma_buf *dmabuf)
{
struct device *crypto_dev = rk_cryptodev_find_dev(NULL);
if (!crypto_dev)
return -EINVAL;
if (!sg_tbl || !dma_attach || !dmabuf)
return -EINVAL;
/* insure ddr data flush to cache */
dma_sync_sg_for_device(crypto_dev, sg_tbl->sgl, sg_tbl->nents, DMA_TO_DEVICE);
dma_buf_unmap_attachment(dma_attach, sg_tbl, dir);
dma_buf_detach(dmabuf, dma_attach);
dma_buf_put(dmabuf);
return 0;
}
static struct dma_fd_map_node *dma_fd_find_node(struct fcrypt *fcr, int dma_fd)
{
struct dma_fd_map_node *map_node = NULL;
mutex_lock(&fcr->sem);
list_for_each_entry(map_node, &fcr->dma_map_list, list) {
if (unlikely(map_node->fd_map.mop.dma_fd == dma_fd)) {
mutex_unlock(&fcr->sem);
return map_node;
}
}
mutex_unlock(&fcr->sem);
return NULL;
}
/* This is the main crypto function - zero-copy edition */
static int __crypto_fd_run(struct fcrypt *fcr, struct csession *ses_ptr,
struct kernel_crypt_fd_op *kcop)
{
struct crypt_fd_op *cop = &kcop->cop;
struct dma_buf *dma_buf_in = NULL, *dma_buf_out = NULL;
struct sg_table sg_tmp;
struct sg_table *sg_tbl_in = NULL, *sg_tbl_out = NULL;
struct dma_buf_attachment *dma_attach_in = NULL, *dma_attach_out = NULL;
struct dma_fd_map_node *node_src = NULL, *node_dst = NULL;
int ret = 0;
node_src = dma_fd_find_node(fcr, kcop->cop.src_fd);
if (node_src) {
sg_tbl_in = node_src->sgtbl;
} else {
ret = get_dmafd_sgtbl(kcop->cop.src_fd, kcop->cop.len, DMA_TO_DEVICE,
&sg_tbl_in, &dma_attach_in, &dma_buf_in);
if (unlikely(ret)) {
derr(1, "Error get_dmafd_sgtbl src.");
goto exit;
}
}
/* only cipher has dst */
if (ses_ptr->cdata.init) {
node_dst = dma_fd_find_node(fcr, kcop->cop.dst_fd);
if (node_dst) {
sg_tbl_out = node_dst->sgtbl;
} else {
ret = get_dmafd_sgtbl(kcop->cop.dst_fd, kcop->cop.len, DMA_FROM_DEVICE,
&sg_tbl_out, &dma_attach_out, &dma_buf_out);
if (unlikely(ret)) {
derr(1, "Error get_dmafd_sgtbl dst.");
goto exit;
}
}
} else {
memset(&sg_tmp, 0x00, sizeof(sg_tmp));
sg_tbl_out = &sg_tmp;
}
ret = hash_n_crypt_fd(ses_ptr, cop, sg_tbl_in->sgl, sg_tbl_out->sgl, cop->len);
exit:
if (dma_buf_in)
put_dmafd_sgtbl(kcop->cop.src_fd, DMA_TO_DEVICE,
sg_tbl_in, dma_attach_in, dma_buf_in);
if (dma_buf_out)
put_dmafd_sgtbl(kcop->cop.dst_fd, DMA_FROM_DEVICE,
sg_tbl_out, dma_attach_out, dma_buf_out);
return ret;
}
int crypto_fd_run(struct fcrypt *fcr, struct kernel_crypt_fd_op *kcop)
{
struct csession *ses_ptr;
struct crypt_fd_op *cop = &kcop->cop;
int ret = -EINVAL;
if (unlikely(cop->op != COP_ENCRYPT && cop->op != COP_DECRYPT)) {
ddebug(1, "invalid operation op=%u", cop->op);
return -EINVAL;
}
/* this also enters ses_ptr->sem */
ses_ptr = crypto_get_session_by_sid(fcr, cop->ses);
if (unlikely(!ses_ptr)) {
derr(1, "invalid session ID=0x%08X", cop->ses);
return -EINVAL;
}
if (ses_ptr->hdata.init != 0 && (cop->flags == 0 || cop->flags & COP_FLAG_RESET)) {
ret = cryptodev_hash_reset(&ses_ptr->hdata);
if (unlikely(ret)) {
derr(1, "error in cryptodev_hash_reset()");
goto out_unlock;
}
}
if (ses_ptr->cdata.init != 0) {
int blocksize = ses_ptr->cdata.blocksize;
if (unlikely(cop->len % blocksize)) {
derr(1, "data size (%u) isn't a multiple of block size (%u)",
cop->len, blocksize);
ret = -EINVAL;
goto out_unlock;
}
cryptodev_cipher_set_iv(&ses_ptr->cdata, kcop->iv,
min(ses_ptr->cdata.ivsize, kcop->ivlen));
}
if (likely(cop->len)) {
ret = __crypto_fd_run(fcr, ses_ptr, kcop);
if (unlikely(ret))
goto out_unlock;
}
if (ses_ptr->cdata.init != 0) {
cryptodev_cipher_get_iv(&ses_ptr->cdata, kcop->iv,
min(ses_ptr->cdata.ivsize, kcop->ivlen));
}
if (ses_ptr->hdata.init != 0 &&
((cop->flags & COP_FLAG_FINAL) ||
(!(cop->flags & COP_FLAG_UPDATE) || cop->len == 0))) {
ret = cryptodev_hash_final(&ses_ptr->hdata, kcop->hash_output);
if (unlikely(ret)) {
derr(0, "CryptoAPI failure: %d", ret);
goto out_unlock;
}
kcop->digestsize = ses_ptr->hdata.digestsize;
}
out_unlock:
crypto_put_session(ses_ptr);
return ret;
}
static int kcop_map_fd_from_user(struct kernel_crypt_fd_map_op *kcop,
struct fcrypt *fcr, void __user *arg)
{
if (unlikely(copy_from_user(&kcop->mop, arg, sizeof(kcop->mop))))
return -EFAULT;
return 0;
}
static int kcop_map_fd_to_user(struct kernel_crypt_fd_map_op *kcop,
struct fcrypt *fcr, void __user *arg)
{
if (unlikely(copy_to_user(arg, &kcop->mop, sizeof(kcop->mop)))) {
derr(1, "Cannot copy to userspace");
return -EFAULT;
}
return 0;
}
static int dma_fd_map_for_user(struct fcrypt *fcr, struct kernel_crypt_fd_map_op *kmop)
{
struct device *crypto_dev = NULL;
struct dma_fd_map_node *map_node = NULL;
/* check if dma_fd is already mapped */
map_node = dma_fd_find_node(fcr, kmop->mop.dma_fd);
if (map_node) {
kmop->mop.phys_addr = map_node->fd_map.mop.phys_addr;
return 0;
}
crypto_dev = rk_cryptodev_find_dev(NULL);
if (!crypto_dev)
return -EINVAL;
map_node = kzalloc(sizeof(*map_node), GFP_KERNEL);
if (!map_node)
return -ENOMEM;
map_node->dmabuf = dma_buf_get(kmop->mop.dma_fd);
if (IS_ERR(map_node->dmabuf)) {
derr(1, "dmabuf error! ret = %d", (int)PTR_ERR(map_node->dmabuf));
map_node->dmabuf = NULL;
goto error;
}
map_node->dma_attach = dma_buf_attach(map_node->dmabuf, crypto_dev);
if (IS_ERR(map_node->dma_attach)) {
derr(1, "dma_attach error! ret = %d", (int)PTR_ERR(map_node->dma_attach));
map_node->dma_attach = NULL;
goto error;
}
map_node->sgtbl = dma_buf_map_attachment(map_node->dma_attach, DMA_BIDIRECTIONAL);
if (IS_ERR(map_node->sgtbl)) {
derr(1, "sg_tbl error! ret = %d", (int)PTR_ERR(map_node->sgtbl));
map_node->sgtbl = NULL;
goto error;
}
map_node->fd_map.mop.dma_fd = kmop->mop.dma_fd;
map_node->fd_map.mop.phys_addr = map_node->sgtbl->sgl->dma_address;
mutex_lock(&fcr->sem);
list_add(&map_node->list, &fcr->dma_map_list);
mutex_unlock(&fcr->sem);
kmop->mop.phys_addr = map_node->fd_map.mop.phys_addr;
return 0;
error:
if (map_node->sgtbl)
dma_buf_unmap_attachment(map_node->dma_attach, map_node->sgtbl, DMA_BIDIRECTIONAL);
if (map_node->dma_attach)
dma_buf_detach(map_node->dmabuf, map_node->dma_attach);
if (map_node->dmabuf)
dma_buf_put(map_node->dmabuf);
kfree(map_node);
return -EINVAL;
}
static int dma_fd_unmap_for_user(struct fcrypt *fcr, struct kernel_crypt_fd_map_op *kmop)
{
struct dma_fd_map_node *tmp, *map_node;
int ret = 0;
mutex_lock(&fcr->sem);
list_for_each_entry_safe(map_node, tmp, &fcr->dma_map_list, list) {
if (map_node->fd_map.mop.dma_fd == kmop->mop.dma_fd &&
map_node->fd_map.mop.phys_addr == kmop->mop.phys_addr) {
dma_buf_unmap_attachment(map_node->dma_attach, map_node->sgtbl,
DMA_BIDIRECTIONAL);
dma_buf_detach(map_node->dmabuf, map_node->dma_attach);
dma_buf_put(map_node->dmabuf);
list_del(&map_node->list);
kfree(map_node);
kmop->mop.phys_addr = 0;
break;
}
}
if (unlikely(!map_node)) {
derr(1, "dmafd =0x%08X not found!", kmop->mop.dma_fd);
ret = -ENOENT;
mutex_unlock(&fcr->sem);
goto exit;
}
mutex_unlock(&fcr->sem);
exit:
return ret;
}
static int dma_fd_begin_cpu_access(struct fcrypt *fcr, struct kernel_crypt_fd_map_op *kmop)
{
struct dma_fd_map_node *map_node = NULL;
map_node = dma_fd_find_node(fcr, kmop->mop.dma_fd);
if (unlikely(!map_node)) {
derr(1, "dmafd =0x%08X not found!", kmop->mop.dma_fd);
return -ENOENT;
}
return dma_buf_begin_cpu_access(map_node->dmabuf, DMA_BIDIRECTIONAL);
}
static int dma_fd_end_cpu_access(struct fcrypt *fcr, struct kernel_crypt_fd_map_op *kmop)
{
struct dma_fd_map_node *map_node = NULL;
map_node = dma_fd_find_node(fcr, kmop->mop.dma_fd);
if (unlikely(!map_node)) {
derr(1, "dmafd =0x%08X not found!", kmop->mop.dma_fd);
return -ENOENT;
}
return dma_buf_end_cpu_access(map_node->dmabuf, DMA_BIDIRECTIONAL);
}
long
rk_cryptodev_ioctl(struct fcrypt *fcr, unsigned int cmd, unsigned long arg_)
{
struct kernel_crypt_fd_op kcop;
struct kernel_crypt_fd_map_op kmop;
void __user *arg = (void __user *)arg_;
int ret;
switch (cmd) {
case RIOCCRYPT_FD:
ret = kcop_fd_from_user(&kcop, fcr, arg);
if (unlikely(ret)) {
dwarning(1, "Error copying from user");
return ret;
}
ret = crypto_fd_run(fcr, &kcop);
if (unlikely(ret)) {
dwarning(1, "Error in crypto_run");
return ret;
}
return kcop_fd_to_user(&kcop, fcr, arg);
case RIOCCRYPT_FD_MAP:
ret = kcop_map_fd_from_user(&kmop, fcr, arg);
if (unlikely(ret)) {
dwarning(1, "Error copying from user");
return ret;
}
ret = dma_fd_map_for_user(fcr, &kmop);
if (unlikely(ret)) {
dwarning(1, "Error in dma_fd_map_for_user");
return ret;
}
return kcop_map_fd_to_user(&kmop, fcr, arg);
case RIOCCRYPT_FD_UNMAP:
ret = kcop_map_fd_from_user(&kmop, fcr, arg);
if (unlikely(ret)) {
dwarning(1, "Error copying from user");
return ret;
}
ret = dma_fd_unmap_for_user(fcr, &kmop);
if (unlikely(ret))
dwarning(1, "Error in dma_fd_unmap_for_user");
return ret;
case RIOCCRYPT_CPU_ACCESS:
ret = kcop_map_fd_from_user(&kmop, fcr, arg);
if (unlikely(ret)) {
dwarning(1, "Error copying from user");
return ret;
}
ret = dma_fd_begin_cpu_access(fcr, &kmop);
if (unlikely(ret))
dwarning(1, "Error in dma_fd_begin_cpu_access");
return ret;
case RIOCCRYPT_DEV_ACCESS:
ret = kcop_map_fd_from_user(&kmop, fcr, arg);
if (unlikely(ret)) {
dwarning(1, "Error copying from user");
return ret;
}
ret = dma_fd_end_cpu_access(fcr, &kmop);
if (unlikely(ret))
dwarning(1, "Error in dma_fd_end_cpu_access");
return ret;
default:
return -EINVAL;
}
}
/* compatibility code for 32bit userlands */
#ifdef CONFIG_COMPAT
static inline void
compat_to_crypt_fd_op(struct compat_crypt_fd_op *compat, struct crypt_fd_op *cop)
{
cop->ses = compat->ses;
cop->op = compat->op;
cop->flags = compat->flags;
cop->len = compat->len;
cop->src_fd = compat->src_fd;
cop->dst_fd = compat->dst_fd;
cop->mac = compat_ptr(compat->mac);
cop->iv = compat_ptr(compat->iv);
}
static inline void
crypt_fd_op_to_compat(struct crypt_fd_op *cop, struct compat_crypt_fd_op *compat)
{
compat->ses = cop->ses;
compat->op = cop->op;
compat->flags = cop->flags;
compat->len = cop->len;
compat->src_fd = cop->src_fd;
compat->dst_fd = cop->dst_fd;
compat->mac = ptr_to_compat(cop->mac);
compat->iv = ptr_to_compat(cop->iv);
}
static int compat_kcop_fd_from_user(struct kernel_crypt_fd_op *kcop,
struct fcrypt *fcr, void __user *arg)
{
struct compat_crypt_fd_op compat_cop;
if (unlikely(copy_from_user(&compat_cop, arg, sizeof(compat_cop))))
return -EFAULT;
compat_to_crypt_fd_op(&compat_cop, &kcop->cop);
return fill_kcop_fd_from_cop(kcop, fcr);
}
static int compat_kcop_fd_to_user(struct kernel_crypt_fd_op *kcop,
struct fcrypt *fcr, void __user *arg)
{
int ret;
struct compat_crypt_fd_op compat_cop;
ret = fill_cop_fd_from_kcop(kcop, fcr);
if (unlikely(ret)) {
dwarning(1, "Error in fill_cop_from_kcop");
return ret;
}
crypt_fd_op_to_compat(&kcop->cop, &compat_cop);
if (unlikely(copy_to_user(arg, &compat_cop, sizeof(compat_cop)))) {
dwarning(1, "Error copying to user");
return -EFAULT;
}
return 0;
}
static inline void
compat_to_crypt_fd_map_op(struct compat_crypt_fd_map_op *compat, struct crypt_fd_map_op *mop)
{
mop->dma_fd = compat->dma_fd;
mop->phys_addr = compat->phys_addr;
}
static inline void
crypt_fd_map_op_to_compat(struct crypt_fd_map_op *mop, struct compat_crypt_fd_map_op *compat)
{
compat->dma_fd = mop->dma_fd;
compat->phys_addr = mop->phys_addr;
}
static int compat_kcop_map_fd_from_user(struct kernel_crypt_fd_map_op *kcop,
struct fcrypt *fcr, void __user *arg)
{
struct compat_crypt_fd_map_op compat_mop;
if (unlikely(copy_from_user(&compat_mop, arg, sizeof(compat_mop))))
return -EFAULT;
compat_to_crypt_fd_map_op(&compat_mop, &kcop->mop);
return 0;
}
static int compat_kcop_map_fd_to_user(struct kernel_crypt_fd_map_op *kcop,
struct fcrypt *fcr, void __user *arg)
{
struct compat_crypt_fd_map_op compat_mop;
crypt_fd_map_op_to_compat(&kcop->mop, &compat_mop);
if (unlikely(copy_to_user(arg, &compat_mop, sizeof(compat_mop)))) {
derr(1, "Cannot copy to userspace");
return -EFAULT;
}
return 0;
}
long
rk_compat_cryptodev_ioctl(struct fcrypt *fcr, unsigned int cmd, unsigned long arg_)
{
struct kernel_crypt_fd_op kcop;
struct kernel_crypt_fd_map_op kmop;
void __user *arg = (void __user *)arg_;
int ret;
switch (cmd) {
case COMPAT_RIOCCRYPT_FD:
ret = compat_kcop_fd_from_user(&kcop, fcr, arg);
if (unlikely(ret)) {
dwarning(1, "Error copying from user");
return ret;
}
ret = crypto_fd_run(fcr, &kcop);
if (unlikely(ret)) {
dwarning(1, "Error in crypto_run");
return ret;
}
return compat_kcop_fd_to_user(&kcop, fcr, arg);
case COMPAT_RIOCCRYPT_FD_MAP:
ret = compat_kcop_map_fd_from_user(&kmop, fcr, arg);
if (unlikely(ret)) {
dwarning(1, "Error copying from user");
return ret;
}
ret = dma_fd_map_for_user(fcr, &kmop);
if (unlikely(ret)) {
dwarning(1, "Error in dma_fd_map_for_user");
return ret;
}
return compat_kcop_map_fd_to_user(&kmop, fcr, arg);
case COMPAT_RIOCCRYPT_FD_UNMAP:
ret = compat_kcop_map_fd_from_user(&kmop, fcr, arg);
if (unlikely(ret)) {
dwarning(1, "Error copying from user");
return ret;
}
ret = dma_fd_unmap_for_user(fcr, &kmop);
if (unlikely(ret))
dwarning(1, "Error in dma_fd_unmap_for_user");
return ret;
case COMPAT_RIOCCRYPT_CPU_ACCESS:
ret = compat_kcop_map_fd_from_user(&kmop, fcr, arg);
if (unlikely(ret)) {
dwarning(1, "Error copying from user");
return ret;
}
ret = dma_fd_begin_cpu_access(fcr, &kmop);
if (unlikely(ret)) {
dwarning(1, "Error in dma_fd_begin_cpu_access");
return ret;
}
return compat_kcop_map_fd_to_user(&kmop, fcr, arg);
case COMPAT_RIOCCRYPT_DEV_ACCESS:
ret = compat_kcop_map_fd_from_user(&kmop, fcr, arg);
if (unlikely(ret)) {
dwarning(1, "Error copying from user");
return ret;
}
ret = dma_fd_end_cpu_access(fcr, &kmop);
if (unlikely(ret))
dwarning(1, "Error in dma_fd_end_cpu_access");
return ret;
default:
return -EINVAL;
}
}
#endif /* CONFIG_COMPAT */

View File

@@ -6,6 +6,59 @@
#define __RK_CRYPTODEV_INT_H__
#include <linux/device.h>
#include "crypto/rk_cryptodev.h"
#include "cryptodev_int.h"
/* compatibility stuff */
#ifdef CONFIG_COMPAT
#include <linux/compat.h>
/* input of RIOCCRYPT_FD */
struct compat_crypt_fd_op {
uint32_t ses; /* session identifier */
uint16_t op; /* COP_ENCRYPT or COP_DECRYPT */
uint16_t flags; /* see COP_FLAG_* */
uint32_t len; /* length of source data */
int src_fd; /* source data */
int dst_fd; /* pointer to output data */
compat_uptr_t mac;/* pointer to output data for hash/MAC operations */
compat_uptr_t iv;/* initialization vector for encryption operations */
};
/* input of RIOCCRYPT_FD_MAP/RIOCCRYPT_FD_UNMAP */
struct compat_crypt_fd_map_op {
int dma_fd; /* session identifier */
uint32_t phys_addr; /* physics addr */
};
/* compat ioctls, defined for the above structs */
#define COMPAT_RIOCCRYPT_FD _IOWR('r', 104, struct compat_crypt_fd_op)
#define COMPAT_RIOCCRYPT_FD_MAP _IOWR('r', 105, struct compat_crypt_fd_map_op)
#define COMPAT_RIOCCRYPT_FD_UNMAP _IOW('r', 106, struct compat_crypt_fd_map_op)
#define COMPAT_RIOCCRYPT_CPU_ACCESS _IOW('r', 107, struct compat_crypt_fd_map_op)
#define COMPAT_RIOCCRYPT_DEV_ACCESS _IOW('r', 108, struct compat_crypt_fd_map_op)
#endif /* CONFIG_COMPAT */
/* kernel-internal extension to struct crypt_op */
struct kernel_crypt_fd_op {
struct crypt_fd_op cop;
int ivlen;
__u8 iv[EALG_MAX_BLOCK_LEN];
int digestsize;
uint8_t hash_output[AALG_MAX_RESULT_LEN];
struct task_struct *task;
struct mm_struct *mm;
};
/* kernel-internal extension to struct crypt_fd_map_op */
struct kernel_crypt_fd_map_op {
struct crypt_fd_map_op mop;
};
#if IS_ENABLED(CONFIG_CRYPTO_DEV_ROCKCHIP_DEV)
int rk_cryptodev_register_dev(struct device *dev, const char *name);
@@ -22,4 +75,10 @@ static inline int rk_cryptodev_unregister_dev(struct device *dev)
}
#endif
long
rk_cryptodev_ioctl(struct fcrypt *fcr, unsigned int cmd, unsigned long arg_);
long
rk_compat_cryptodev_ioctl(struct fcrypt *fcr, unsigned int cmd, unsigned long arg_);
#endif