2017-11-15 01:38:01 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2012-08-28 22:48:29 +08:00
|
|
|
/*
|
2021-11-16 21:54:19 +08:00
|
|
|
* Copyright IBM Corp. 2012, 2022
|
2012-08-28 22:48:29 +08:00
|
|
|
* Author(s): Holger Dengler <hd@linux.vnet.ibm.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/atomic.h>
|
|
|
|
#include <linux/uaccess.h>
|
2016-08-25 17:16:03 +08:00
|
|
|
#include <linux/mod_devicetable.h>
|
2012-08-28 22:48:29 +08:00
|
|
|
|
|
|
|
#include "ap_bus.h"
|
|
|
|
#include "zcrypt_api.h"
|
|
|
|
#include "zcrypt_msgtype6.h"
|
|
|
|
#include "zcrypt_msgtype50.h"
|
|
|
|
#include "zcrypt_error.h"
|
|
|
|
#include "zcrypt_cex4.h"
|
2019-06-12 21:05:34 +08:00
|
|
|
#include "zcrypt_ccamisc.h"
|
2019-08-30 22:17:47 +08:00
|
|
|
#include "zcrypt_ep11misc.h"
|
2012-08-28 22:48:29 +08:00
|
|
|
|
|
|
|
#define CEX4A_MIN_MOD_SIZE 1 /* 8 bits */
|
|
|
|
#define CEX4A_MAX_MOD_SIZE_2K 256 /* 2048 bits */
|
|
|
|
#define CEX4A_MAX_MOD_SIZE_4K 512 /* 4096 bits */
|
|
|
|
|
|
|
|
#define CEX4C_MIN_MOD_SIZE 16 /* 256 bits */
|
|
|
|
#define CEX4C_MAX_MOD_SIZE 512 /* 4096 bits */
|
|
|
|
|
2013-11-20 17:47:13 +08:00
|
|
|
/* Waiting time for requests to be processed.
|
|
|
|
* Currently there are some types of request which are not deterministic.
|
|
|
|
* But the maximum time limit managed by the stomper code is set to 60sec.
|
|
|
|
* Hence we have to wait at least that time period.
|
|
|
|
*/
|
2022-04-04 23:12:37 +08:00
|
|
|
#define CEX4_CLEANUP_TIME (900 * HZ)
|
2012-08-28 22:48:29 +08:00
|
|
|
|
|
|
|
MODULE_AUTHOR("IBM Corporation");
|
2021-11-16 21:54:19 +08:00
|
|
|
MODULE_DESCRIPTION("CEX[45678] Cryptographic Card device driver, " \
|
|
|
|
"Copyright IBM Corp. 2022");
|
2012-08-28 22:48:29 +08:00
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
2016-08-25 17:16:03 +08:00
|
|
|
static struct ap_device_id zcrypt_cex4_card_ids[] = {
|
|
|
|
{ .dev_type = AP_DEVICE_TYPE_CEX4,
|
|
|
|
.match_flags = AP_DEVICE_ID_MATCH_CARD_TYPE },
|
|
|
|
{ .dev_type = AP_DEVICE_TYPE_CEX5,
|
|
|
|
.match_flags = AP_DEVICE_ID_MATCH_CARD_TYPE },
|
2017-10-10 17:25:06 +08:00
|
|
|
{ .dev_type = AP_DEVICE_TYPE_CEX6,
|
|
|
|
.match_flags = AP_DEVICE_ID_MATCH_CARD_TYPE },
|
2019-08-16 17:05:58 +08:00
|
|
|
{ .dev_type = AP_DEVICE_TYPE_CEX7,
|
|
|
|
.match_flags = AP_DEVICE_ID_MATCH_CARD_TYPE },
|
2021-11-16 21:54:19 +08:00
|
|
|
{ .dev_type = AP_DEVICE_TYPE_CEX8,
|
|
|
|
.match_flags = AP_DEVICE_ID_MATCH_CARD_TYPE },
|
2016-08-25 17:16:03 +08:00
|
|
|
{ /* end of list */ },
|
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_DEVICE_TABLE(ap, zcrypt_cex4_card_ids);
|
2012-08-28 22:48:29 +08:00
|
|
|
|
2016-08-25 17:16:03 +08:00
|
|
|
static struct ap_device_id zcrypt_cex4_queue_ids[] = {
|
|
|
|
{ .dev_type = AP_DEVICE_TYPE_CEX4,
|
|
|
|
.match_flags = AP_DEVICE_ID_MATCH_QUEUE_TYPE },
|
|
|
|
{ .dev_type = AP_DEVICE_TYPE_CEX5,
|
|
|
|
.match_flags = AP_DEVICE_ID_MATCH_QUEUE_TYPE },
|
2017-10-10 17:25:06 +08:00
|
|
|
{ .dev_type = AP_DEVICE_TYPE_CEX6,
|
|
|
|
.match_flags = AP_DEVICE_ID_MATCH_QUEUE_TYPE },
|
2019-08-16 17:05:58 +08:00
|
|
|
{ .dev_type = AP_DEVICE_TYPE_CEX7,
|
|
|
|
.match_flags = AP_DEVICE_ID_MATCH_QUEUE_TYPE },
|
2021-11-16 21:54:19 +08:00
|
|
|
{ .dev_type = AP_DEVICE_TYPE_CEX8,
|
|
|
|
.match_flags = AP_DEVICE_ID_MATCH_QUEUE_TYPE },
|
2016-08-25 17:16:03 +08:00
|
|
|
{ /* end of list */ },
|
2012-08-28 22:48:29 +08:00
|
|
|
};
|
|
|
|
|
2016-08-25 17:16:03 +08:00
|
|
|
MODULE_DEVICE_TABLE(ap, zcrypt_cex4_queue_ids);
|
|
|
|
|
2019-06-12 21:05:34 +08:00
|
|
|
/*
|
2019-08-30 22:17:47 +08:00
|
|
|
* CCA card additional device attributes
|
2019-06-12 21:05:34 +08:00
|
|
|
*/
|
2019-08-30 22:17:47 +08:00
|
|
|
static ssize_t cca_serialnr_show(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
2019-06-12 21:05:34 +08:00
|
|
|
{
|
2021-06-07 17:18:44 +08:00
|
|
|
struct zcrypt_card *zc = dev_get_drvdata(dev);
|
2019-06-12 21:05:34 +08:00
|
|
|
struct cca_info ci;
|
|
|
|
struct ap_card *ac = to_ap_card(dev);
|
|
|
|
|
|
|
|
memset(&ci, 0, sizeof(ci));
|
|
|
|
|
|
|
|
if (ap_domain_index >= 0)
|
|
|
|
cca_get_info(ac->id, ap_domain_index, &ci, zc->online);
|
|
|
|
|
2020-03-12 18:19:55 +08:00
|
|
|
return scnprintf(buf, PAGE_SIZE, "%s\n", ci.serial);
|
2019-06-12 21:05:34 +08:00
|
|
|
}
|
2019-08-30 22:17:47 +08:00
|
|
|
|
|
|
|
static struct device_attribute dev_attr_cca_serialnr =
|
|
|
|
__ATTR(serialnr, 0444, cca_serialnr_show, NULL);
|
2019-06-12 21:05:34 +08:00
|
|
|
|
|
|
|
static struct attribute *cca_card_attrs[] = {
|
2019-08-30 22:17:47 +08:00
|
|
|
&dev_attr_cca_serialnr.attr,
|
2019-06-12 21:05:34 +08:00
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2019-08-30 22:17:47 +08:00
|
|
|
static const struct attribute_group cca_card_attr_grp = {
|
2019-06-12 21:05:34 +08:00
|
|
|
.attrs = cca_card_attrs,
|
|
|
|
};
|
|
|
|
|
2019-08-30 22:17:47 +08:00
|
|
|
/*
|
|
|
|
* CCA queue additional device attributes
|
|
|
|
*/
|
|
|
|
static ssize_t cca_mkvps_show(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
2019-06-12 21:05:34 +08:00
|
|
|
{
|
2021-06-07 17:18:44 +08:00
|
|
|
struct zcrypt_queue *zq = dev_get_drvdata(dev);
|
2019-06-12 21:05:34 +08:00
|
|
|
int n = 0;
|
|
|
|
struct cca_info ci;
|
|
|
|
static const char * const cao_state[] = { "invalid", "valid" };
|
|
|
|
static const char * const new_state[] = { "empty", "partial", "full" };
|
|
|
|
|
|
|
|
memset(&ci, 0, sizeof(ci));
|
|
|
|
|
|
|
|
cca_get_info(AP_QID_CARD(zq->queue->qid),
|
|
|
|
AP_QID_QUEUE(zq->queue->qid),
|
|
|
|
&ci, zq->online);
|
|
|
|
|
2020-09-04 22:11:37 +08:00
|
|
|
if (ci.new_aes_mk_state >= '1' && ci.new_aes_mk_state <= '3')
|
2022-03-24 20:23:53 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE,
|
|
|
|
"AES NEW: %s 0x%016llx\n",
|
|
|
|
new_state[ci.new_aes_mk_state - '1'],
|
|
|
|
ci.new_aes_mkvp);
|
2019-06-12 21:05:34 +08:00
|
|
|
else
|
2022-03-24 20:23:53 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE, "AES NEW: - -\n");
|
2019-06-12 21:05:34 +08:00
|
|
|
|
2020-09-04 22:11:37 +08:00
|
|
|
if (ci.cur_aes_mk_state >= '1' && ci.cur_aes_mk_state <= '2')
|
2020-03-11 17:09:15 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n,
|
|
|
|
"AES CUR: %s 0x%016llx\n",
|
2020-09-04 22:11:37 +08:00
|
|
|
cao_state[ci.cur_aes_mk_state - '1'],
|
|
|
|
ci.cur_aes_mkvp);
|
2019-06-12 21:05:34 +08:00
|
|
|
else
|
2020-03-11 17:09:15 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n, "AES CUR: - -\n");
|
2019-06-12 21:05:34 +08:00
|
|
|
|
2020-09-04 22:11:37 +08:00
|
|
|
if (ci.old_aes_mk_state >= '1' && ci.old_aes_mk_state <= '2')
|
2020-03-11 17:09:15 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n,
|
|
|
|
"AES OLD: %s 0x%016llx\n",
|
2020-09-04 22:11:37 +08:00
|
|
|
cao_state[ci.old_aes_mk_state - '1'],
|
|
|
|
ci.old_aes_mkvp);
|
2019-06-12 21:05:34 +08:00
|
|
|
else
|
2020-03-11 17:09:15 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n, "AES OLD: - -\n");
|
2019-06-12 21:05:34 +08:00
|
|
|
|
2020-09-04 22:11:37 +08:00
|
|
|
if (ci.new_apka_mk_state >= '1' && ci.new_apka_mk_state <= '3')
|
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n,
|
|
|
|
"APKA NEW: %s 0x%016llx\n",
|
|
|
|
new_state[ci.new_apka_mk_state - '1'],
|
|
|
|
ci.new_apka_mkvp);
|
|
|
|
else
|
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n, "APKA NEW: - -\n");
|
|
|
|
|
|
|
|
if (ci.cur_apka_mk_state >= '1' && ci.cur_apka_mk_state <= '2')
|
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n,
|
|
|
|
"APKA CUR: %s 0x%016llx\n",
|
|
|
|
cao_state[ci.cur_apka_mk_state - '1'],
|
|
|
|
ci.cur_apka_mkvp);
|
|
|
|
else
|
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n, "APKA CUR: - -\n");
|
|
|
|
|
|
|
|
if (ci.old_apka_mk_state >= '1' && ci.old_apka_mk_state <= '2')
|
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n,
|
|
|
|
"APKA OLD: %s 0x%016llx\n",
|
|
|
|
cao_state[ci.old_apka_mk_state - '1'],
|
|
|
|
ci.old_apka_mkvp);
|
|
|
|
else
|
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n, "APKA OLD: - -\n");
|
|
|
|
|
2022-03-24 20:23:53 +08:00
|
|
|
if (ci.new_asym_mk_state >= '1' && ci.new_asym_mk_state <= '3')
|
|
|
|
n += scnprintf(buf + n, PAGE_SIZE,
|
|
|
|
"ASYM NEW: %s 0x%016llx%016llx\n",
|
|
|
|
new_state[ci.new_asym_mk_state - '1'],
|
|
|
|
*((u64 *)(ci.new_asym_mkvp)),
|
|
|
|
*((u64 *)(ci.new_asym_mkvp + sizeof(u64))));
|
|
|
|
else
|
|
|
|
n += scnprintf(buf + n, PAGE_SIZE, "ASYM NEW: - -\n");
|
|
|
|
|
|
|
|
if (ci.cur_asym_mk_state >= '1' && ci.cur_asym_mk_state <= '2')
|
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n,
|
|
|
|
"ASYM CUR: %s 0x%016llx%016llx\n",
|
|
|
|
cao_state[ci.cur_asym_mk_state - '1'],
|
|
|
|
*((u64 *)(ci.cur_asym_mkvp)),
|
|
|
|
*((u64 *)(ci.cur_asym_mkvp + sizeof(u64))));
|
|
|
|
else
|
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n, "ASYM CUR: - -\n");
|
|
|
|
|
|
|
|
if (ci.old_asym_mk_state >= '1' && ci.old_asym_mk_state <= '2')
|
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n,
|
|
|
|
"ASYM OLD: %s 0x%016llx%016llx\n",
|
|
|
|
cao_state[ci.old_asym_mk_state - '1'],
|
|
|
|
*((u64 *)(ci.old_asym_mkvp)),
|
|
|
|
*((u64 *)(ci.old_asym_mkvp + sizeof(u64))));
|
|
|
|
else
|
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n, "ASYM OLD: - -\n");
|
|
|
|
|
2019-06-12 21:05:34 +08:00
|
|
|
return n;
|
|
|
|
}
|
2019-08-30 22:17:47 +08:00
|
|
|
|
|
|
|
static struct device_attribute dev_attr_cca_mkvps =
|
|
|
|
__ATTR(mkvps, 0444, cca_mkvps_show, NULL);
|
2019-06-12 21:05:34 +08:00
|
|
|
|
|
|
|
static struct attribute *cca_queue_attrs[] = {
|
2019-08-30 22:17:47 +08:00
|
|
|
&dev_attr_cca_mkvps.attr,
|
2019-06-12 21:05:34 +08:00
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2019-08-30 22:17:47 +08:00
|
|
|
static const struct attribute_group cca_queue_attr_grp = {
|
2019-06-12 21:05:34 +08:00
|
|
|
.attrs = cca_queue_attrs,
|
|
|
|
};
|
|
|
|
|
2019-08-30 22:17:47 +08:00
|
|
|
/*
|
|
|
|
* EP11 card additional device attributes
|
|
|
|
*/
|
|
|
|
static ssize_t ep11_api_ordinalnr_show(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
|
|
|
{
|
2021-06-07 17:18:44 +08:00
|
|
|
struct zcrypt_card *zc = dev_get_drvdata(dev);
|
2019-08-30 22:17:47 +08:00
|
|
|
struct ep11_card_info ci;
|
|
|
|
struct ap_card *ac = to_ap_card(dev);
|
|
|
|
|
|
|
|
memset(&ci, 0, sizeof(ci));
|
|
|
|
|
|
|
|
ep11_get_card_info(ac->id, &ci, zc->online);
|
|
|
|
|
|
|
|
if (ci.API_ord_nr > 0)
|
2020-03-12 18:19:55 +08:00
|
|
|
return scnprintf(buf, PAGE_SIZE, "%u\n", ci.API_ord_nr);
|
2019-08-30 22:17:47 +08:00
|
|
|
else
|
2020-03-12 18:19:55 +08:00
|
|
|
return scnprintf(buf, PAGE_SIZE, "\n");
|
2019-08-30 22:17:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct device_attribute dev_attr_ep11_api_ordinalnr =
|
|
|
|
__ATTR(API_ordinalnr, 0444, ep11_api_ordinalnr_show, NULL);
|
|
|
|
|
|
|
|
static ssize_t ep11_fw_version_show(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
|
|
|
{
|
2021-06-07 17:18:44 +08:00
|
|
|
struct zcrypt_card *zc = dev_get_drvdata(dev);
|
2019-08-30 22:17:47 +08:00
|
|
|
struct ep11_card_info ci;
|
|
|
|
struct ap_card *ac = to_ap_card(dev);
|
|
|
|
|
|
|
|
memset(&ci, 0, sizeof(ci));
|
|
|
|
|
|
|
|
ep11_get_card_info(ac->id, &ci, zc->online);
|
|
|
|
|
|
|
|
if (ci.FW_version > 0)
|
2020-03-12 18:19:55 +08:00
|
|
|
return scnprintf(buf, PAGE_SIZE, "%d.%d\n",
|
|
|
|
(int)(ci.FW_version >> 8),
|
|
|
|
(int)(ci.FW_version & 0xFF));
|
2019-08-30 22:17:47 +08:00
|
|
|
else
|
2020-03-12 18:19:55 +08:00
|
|
|
return scnprintf(buf, PAGE_SIZE, "\n");
|
2019-08-30 22:17:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct device_attribute dev_attr_ep11_fw_version =
|
|
|
|
__ATTR(FW_version, 0444, ep11_fw_version_show, NULL);
|
|
|
|
|
|
|
|
static ssize_t ep11_serialnr_show(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
|
|
|
{
|
2021-06-07 17:18:44 +08:00
|
|
|
struct zcrypt_card *zc = dev_get_drvdata(dev);
|
2019-08-30 22:17:47 +08:00
|
|
|
struct ep11_card_info ci;
|
|
|
|
struct ap_card *ac = to_ap_card(dev);
|
|
|
|
|
|
|
|
memset(&ci, 0, sizeof(ci));
|
|
|
|
|
|
|
|
ep11_get_card_info(ac->id, &ci, zc->online);
|
|
|
|
|
|
|
|
if (ci.serial[0])
|
2020-03-12 18:19:55 +08:00
|
|
|
return scnprintf(buf, PAGE_SIZE, "%16.16s\n", ci.serial);
|
2019-08-30 22:17:47 +08:00
|
|
|
else
|
2020-03-12 18:19:55 +08:00
|
|
|
return scnprintf(buf, PAGE_SIZE, "\n");
|
2019-08-30 22:17:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct device_attribute dev_attr_ep11_serialnr =
|
|
|
|
__ATTR(serialnr, 0444, ep11_serialnr_show, NULL);
|
|
|
|
|
|
|
|
static const struct {
|
|
|
|
int mode_bit;
|
|
|
|
const char *mode_txt;
|
|
|
|
} ep11_op_modes[] = {
|
|
|
|
{ 0, "FIPS2009" },
|
|
|
|
{ 1, "BSI2009" },
|
|
|
|
{ 2, "FIPS2011" },
|
|
|
|
{ 3, "BSI2011" },
|
|
|
|
{ 6, "BSICC2017" },
|
|
|
|
{ 0, NULL }
|
|
|
|
};
|
|
|
|
|
|
|
|
static ssize_t ep11_card_op_modes_show(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
|
|
|
{
|
2021-06-07 17:18:44 +08:00
|
|
|
struct zcrypt_card *zc = dev_get_drvdata(dev);
|
2019-08-30 22:17:47 +08:00
|
|
|
int i, n = 0;
|
|
|
|
struct ep11_card_info ci;
|
|
|
|
struct ap_card *ac = to_ap_card(dev);
|
|
|
|
|
|
|
|
memset(&ci, 0, sizeof(ci));
|
|
|
|
|
|
|
|
ep11_get_card_info(ac->id, &ci, zc->online);
|
|
|
|
|
|
|
|
for (i = 0; ep11_op_modes[i].mode_txt; i++) {
|
2020-06-30 15:54:50 +08:00
|
|
|
if (ci.op_mode & (1ULL << ep11_op_modes[i].mode_bit)) {
|
2019-08-30 22:17:47 +08:00
|
|
|
if (n > 0)
|
|
|
|
buf[n++] = ' ';
|
2020-03-11 17:09:15 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n,
|
|
|
|
"%s", ep11_op_modes[i].mode_txt);
|
2019-08-30 22:17:47 +08:00
|
|
|
}
|
|
|
|
}
|
2020-03-11 17:09:15 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n, "\n");
|
2019-08-30 22:17:47 +08:00
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct device_attribute dev_attr_ep11_card_op_modes =
|
|
|
|
__ATTR(op_modes, 0444, ep11_card_op_modes_show, NULL);
|
|
|
|
|
|
|
|
static struct attribute *ep11_card_attrs[] = {
|
|
|
|
&dev_attr_ep11_api_ordinalnr.attr,
|
|
|
|
&dev_attr_ep11_fw_version.attr,
|
|
|
|
&dev_attr_ep11_serialnr.attr,
|
|
|
|
&dev_attr_ep11_card_op_modes.attr,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct attribute_group ep11_card_attr_grp = {
|
|
|
|
.attrs = ep11_card_attrs,
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* EP11 queue additional device attributes
|
|
|
|
*/
|
|
|
|
|
|
|
|
static ssize_t ep11_mkvps_show(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
|
|
|
{
|
2021-06-07 17:18:44 +08:00
|
|
|
struct zcrypt_queue *zq = dev_get_drvdata(dev);
|
2019-08-30 22:17:47 +08:00
|
|
|
int n = 0;
|
|
|
|
struct ep11_domain_info di;
|
|
|
|
static const char * const cwk_state[] = { "invalid", "valid" };
|
|
|
|
static const char * const nwk_state[] = { "empty", "uncommitted",
|
|
|
|
"committed" };
|
|
|
|
|
|
|
|
memset(&di, 0, sizeof(di));
|
|
|
|
|
|
|
|
if (zq->online)
|
|
|
|
ep11_get_domain_info(AP_QID_CARD(zq->queue->qid),
|
|
|
|
AP_QID_QUEUE(zq->queue->qid),
|
|
|
|
&di);
|
|
|
|
|
|
|
|
if (di.cur_wk_state == '0') {
|
2020-03-12 18:19:55 +08:00
|
|
|
n = scnprintf(buf, PAGE_SIZE, "WK CUR: %s -\n",
|
|
|
|
cwk_state[di.cur_wk_state - '0']);
|
2019-08-30 22:17:47 +08:00
|
|
|
} else if (di.cur_wk_state == '1') {
|
2020-03-12 18:19:55 +08:00
|
|
|
n = scnprintf(buf, PAGE_SIZE, "WK CUR: %s 0x",
|
|
|
|
cwk_state[di.cur_wk_state - '0']);
|
2019-08-30 22:17:47 +08:00
|
|
|
bin2hex(buf + n, di.cur_wkvp, sizeof(di.cur_wkvp));
|
|
|
|
n += 2 * sizeof(di.cur_wkvp);
|
2020-03-11 17:09:15 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n, "\n");
|
2022-04-04 23:12:37 +08:00
|
|
|
} else {
|
2020-03-12 18:19:55 +08:00
|
|
|
n = scnprintf(buf, PAGE_SIZE, "WK CUR: - -\n");
|
2022-04-04 23:12:37 +08:00
|
|
|
}
|
2019-08-30 22:17:47 +08:00
|
|
|
|
|
|
|
if (di.new_wk_state == '0') {
|
2020-03-11 17:09:15 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n, "WK NEW: %s -\n",
|
|
|
|
nwk_state[di.new_wk_state - '0']);
|
2019-08-30 22:17:47 +08:00
|
|
|
} else if (di.new_wk_state >= '1' && di.new_wk_state <= '2') {
|
2020-03-11 17:09:15 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n, "WK NEW: %s 0x",
|
|
|
|
nwk_state[di.new_wk_state - '0']);
|
2019-08-30 22:17:47 +08:00
|
|
|
bin2hex(buf + n, di.new_wkvp, sizeof(di.new_wkvp));
|
|
|
|
n += 2 * sizeof(di.new_wkvp);
|
2020-03-11 17:09:15 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n, "\n");
|
2022-04-04 23:12:37 +08:00
|
|
|
} else {
|
2020-03-11 17:09:15 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n, "WK NEW: - -\n");
|
2022-04-04 23:12:37 +08:00
|
|
|
}
|
2019-08-30 22:17:47 +08:00
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct device_attribute dev_attr_ep11_mkvps =
|
|
|
|
__ATTR(mkvps, 0444, ep11_mkvps_show, NULL);
|
|
|
|
|
|
|
|
static ssize_t ep11_queue_op_modes_show(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
|
|
|
{
|
2021-06-07 17:18:44 +08:00
|
|
|
struct zcrypt_queue *zq = dev_get_drvdata(dev);
|
2019-08-30 22:17:47 +08:00
|
|
|
int i, n = 0;
|
|
|
|
struct ep11_domain_info di;
|
|
|
|
|
|
|
|
memset(&di, 0, sizeof(di));
|
|
|
|
|
|
|
|
if (zq->online)
|
|
|
|
ep11_get_domain_info(AP_QID_CARD(zq->queue->qid),
|
|
|
|
AP_QID_QUEUE(zq->queue->qid),
|
|
|
|
&di);
|
|
|
|
|
|
|
|
for (i = 0; ep11_op_modes[i].mode_txt; i++) {
|
2020-06-30 15:54:50 +08:00
|
|
|
if (di.op_mode & (1ULL << ep11_op_modes[i].mode_bit)) {
|
2019-08-30 22:17:47 +08:00
|
|
|
if (n > 0)
|
|
|
|
buf[n++] = ' ';
|
2020-03-11 17:09:15 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n,
|
|
|
|
"%s", ep11_op_modes[i].mode_txt);
|
2019-08-30 22:17:47 +08:00
|
|
|
}
|
|
|
|
}
|
2020-03-11 17:09:15 +08:00
|
|
|
n += scnprintf(buf + n, PAGE_SIZE - n, "\n");
|
2019-08-30 22:17:47 +08:00
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct device_attribute dev_attr_ep11_queue_op_modes =
|
|
|
|
__ATTR(op_modes, 0444, ep11_queue_op_modes_show, NULL);
|
|
|
|
|
|
|
|
static struct attribute *ep11_queue_attrs[] = {
|
|
|
|
&dev_attr_ep11_mkvps.attr,
|
|
|
|
&dev_attr_ep11_queue_op_modes.attr,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct attribute_group ep11_queue_attr_grp = {
|
|
|
|
.attrs = ep11_queue_attrs,
|
|
|
|
};
|
|
|
|
|
2021-09-07 13:28:20 +08:00
|
|
|
/*
|
2021-11-16 21:54:19 +08:00
|
|
|
* Probe function for CEX[45678] card device. It always
|
2018-10-04 21:30:24 +08:00
|
|
|
* accepts the AP device since the bus_match already checked
|
|
|
|
* the hardware type.
|
2012-08-28 22:48:29 +08:00
|
|
|
* @ap_dev: pointer to the AP device.
|
|
|
|
*/
|
2016-08-25 17:16:03 +08:00
|
|
|
static int zcrypt_cex4_card_probe(struct ap_device *ap_dev)
|
2012-08-28 22:48:29 +08:00
|
|
|
{
|
2016-08-25 17:14:15 +08:00
|
|
|
/*
|
|
|
|
* Normalized speed ratings per crypto adapter
|
|
|
|
* MEX_1k, MEX_2k, MEX_4k, CRT_1k, CRT_2k, CRT_4k, RNG, SECKEY
|
|
|
|
*/
|
2020-07-02 17:10:11 +08:00
|
|
|
static const int CEX4A_SPEED_IDX[NUM_OPS] = {
|
2019-08-16 17:05:58 +08:00
|
|
|
14, 19, 249, 42, 228, 1458, 0, 0};
|
2020-07-02 17:10:11 +08:00
|
|
|
static const int CEX5A_SPEED_IDX[NUM_OPS] = {
|
2019-08-16 17:05:58 +08:00
|
|
|
8, 9, 20, 18, 66, 458, 0, 0};
|
2020-07-02 17:10:11 +08:00
|
|
|
static const int CEX6A_SPEED_IDX[NUM_OPS] = {
|
2019-08-16 17:05:58 +08:00
|
|
|
6, 9, 20, 17, 65, 438, 0, 0};
|
2020-07-02 17:10:11 +08:00
|
|
|
static const int CEX7A_SPEED_IDX[NUM_OPS] = {
|
2019-08-16 17:05:58 +08:00
|
|
|
6, 8, 17, 15, 54, 362, 0, 0};
|
2021-11-16 21:54:19 +08:00
|
|
|
static const int CEX8A_SPEED_IDX[NUM_OPS] = {
|
|
|
|
6, 8, 17, 15, 54, 362, 0, 0};
|
2017-10-10 17:25:06 +08:00
|
|
|
|
2020-07-02 17:10:11 +08:00
|
|
|
static const int CEX4C_SPEED_IDX[NUM_OPS] = {
|
2017-10-10 17:25:06 +08:00
|
|
|
59, 69, 308, 83, 278, 2204, 209, 40};
|
2016-08-25 17:16:03 +08:00
|
|
|
static const int CEX5C_SPEED_IDX[] = {
|
2019-08-16 17:05:58 +08:00
|
|
|
24, 31, 50, 37, 90, 479, 27, 10};
|
2020-07-02 17:10:11 +08:00
|
|
|
static const int CEX6C_SPEED_IDX[NUM_OPS] = {
|
2019-08-16 17:05:58 +08:00
|
|
|
16, 20, 32, 27, 77, 455, 24, 9};
|
2020-07-02 17:10:11 +08:00
|
|
|
static const int CEX7C_SPEED_IDX[NUM_OPS] = {
|
2019-08-16 17:05:58 +08:00
|
|
|
14, 16, 26, 23, 64, 376, 23, 8};
|
2021-11-16 21:54:19 +08:00
|
|
|
static const int CEX8C_SPEED_IDX[NUM_OPS] = {
|
|
|
|
14, 16, 26, 23, 64, 376, 23, 8};
|
2017-10-10 17:25:06 +08:00
|
|
|
|
2020-07-02 17:10:11 +08:00
|
|
|
static const int CEX4P_SPEED_IDX[NUM_OPS] = {
|
2019-08-16 17:05:58 +08:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 50};
|
2020-07-02 17:10:11 +08:00
|
|
|
static const int CEX5P_SPEED_IDX[NUM_OPS] = {
|
2019-08-16 17:05:58 +08:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 10};
|
2020-07-02 17:10:11 +08:00
|
|
|
static const int CEX6P_SPEED_IDX[NUM_OPS] = {
|
2019-08-16 17:05:58 +08:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 9};
|
2020-07-02 17:10:11 +08:00
|
|
|
static const int CEX7P_SPEED_IDX[NUM_OPS] = {
|
2019-08-16 17:05:58 +08:00
|
|
|
0, 0, 0, 0, 0, 0, 0, 8};
|
2021-11-16 21:54:19 +08:00
|
|
|
static const int CEX8P_SPEED_IDX[NUM_OPS] = {
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 8};
|
2016-08-25 17:16:03 +08:00
|
|
|
|
|
|
|
struct ap_card *ac = to_ap_card(&ap_dev->device);
|
|
|
|
struct zcrypt_card *zc;
|
2012-08-28 22:48:29 +08:00
|
|
|
int rc = 0;
|
|
|
|
|
2016-08-25 17:16:03 +08:00
|
|
|
zc = zcrypt_card_alloc();
|
|
|
|
if (!zc)
|
|
|
|
return -ENOMEM;
|
|
|
|
zc->card = ac;
|
2021-06-07 17:18:44 +08:00
|
|
|
dev_set_drvdata(&ap_dev->device, zc);
|
2016-08-25 17:16:03 +08:00
|
|
|
if (ap_test_bit(&ac->functions, AP_FUNC_ACCEL)) {
|
|
|
|
if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX4) {
|
|
|
|
zc->type_string = "CEX4A";
|
|
|
|
zc->user_space_type = ZCRYPT_CEX4;
|
2020-07-02 17:10:11 +08:00
|
|
|
zc->speed_rating = CEX4A_SPEED_IDX;
|
2017-10-10 17:25:06 +08:00
|
|
|
} else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX5) {
|
2016-08-25 17:16:03 +08:00
|
|
|
zc->type_string = "CEX5A";
|
|
|
|
zc->user_space_type = ZCRYPT_CEX5;
|
2020-07-02 17:10:11 +08:00
|
|
|
zc->speed_rating = CEX5A_SPEED_IDX;
|
2019-08-16 17:05:58 +08:00
|
|
|
} else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX6) {
|
2017-10-10 17:25:06 +08:00
|
|
|
zc->type_string = "CEX6A";
|
|
|
|
zc->user_space_type = ZCRYPT_CEX6;
|
2020-07-02 17:10:11 +08:00
|
|
|
zc->speed_rating = CEX6A_SPEED_IDX;
|
2021-11-16 21:54:19 +08:00
|
|
|
} else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX7) {
|
2019-08-16 17:05:58 +08:00
|
|
|
zc->type_string = "CEX7A";
|
2021-11-16 21:54:19 +08:00
|
|
|
zc->speed_rating = CEX7A_SPEED_IDX;
|
|
|
|
/* wrong user space type, just for compatibility
|
|
|
|
* with the ZCRYPT_STATUS_MASK ioctl.
|
|
|
|
*/
|
|
|
|
zc->user_space_type = ZCRYPT_CEX6;
|
|
|
|
} else {
|
|
|
|
zc->type_string = "CEX8A";
|
|
|
|
zc->speed_rating = CEX8A_SPEED_IDX;
|
2019-08-16 17:05:58 +08:00
|
|
|
/* wrong user space type, just for compatibility
|
|
|
|
* with the ZCRYPT_STATUS_MASK ioctl.
|
|
|
|
*/
|
|
|
|
zc->user_space_type = ZCRYPT_CEX6;
|
2012-08-28 22:48:29 +08:00
|
|
|
}
|
2016-08-25 17:16:03 +08:00
|
|
|
zc->min_mod_size = CEX4A_MIN_MOD_SIZE;
|
|
|
|
if (ap_test_bit(&ac->functions, AP_FUNC_MEX4K) &&
|
|
|
|
ap_test_bit(&ac->functions, AP_FUNC_CRT4K)) {
|
|
|
|
zc->max_mod_size = CEX4A_MAX_MOD_SIZE_4K;
|
|
|
|
zc->max_exp_bit_length =
|
|
|
|
CEX4A_MAX_MOD_SIZE_4K;
|
|
|
|
} else {
|
|
|
|
zc->max_mod_size = CEX4A_MAX_MOD_SIZE_2K;
|
|
|
|
zc->max_exp_bit_length =
|
|
|
|
CEX4A_MAX_MOD_SIZE_2K;
|
|
|
|
}
|
|
|
|
} else if (ap_test_bit(&ac->functions, AP_FUNC_COPRO)) {
|
|
|
|
if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX4) {
|
|
|
|
zc->type_string = "CEX4C";
|
2021-11-16 21:54:19 +08:00
|
|
|
zc->speed_rating = CEX4C_SPEED_IDX;
|
|
|
|
/* wrong user space type, must be CEX3C
|
2016-08-25 17:16:03 +08:00
|
|
|
* just keep it for cca compatibility
|
|
|
|
*/
|
|
|
|
zc->user_space_type = ZCRYPT_CEX3C;
|
2017-10-10 17:25:06 +08:00
|
|
|
} else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX5) {
|
2016-08-25 17:16:03 +08:00
|
|
|
zc->type_string = "CEX5C";
|
2021-11-16 21:54:19 +08:00
|
|
|
zc->speed_rating = CEX5C_SPEED_IDX;
|
|
|
|
/* wrong user space type, must be CEX3C
|
2016-08-25 17:16:03 +08:00
|
|
|
* just keep it for cca compatibility
|
|
|
|
*/
|
|
|
|
zc->user_space_type = ZCRYPT_CEX3C;
|
2019-08-16 17:05:58 +08:00
|
|
|
} else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX6) {
|
2017-10-10 17:25:06 +08:00
|
|
|
zc->type_string = "CEX6C";
|
2021-11-16 21:54:19 +08:00
|
|
|
zc->speed_rating = CEX6C_SPEED_IDX;
|
|
|
|
/* wrong user space type, must be CEX3C
|
2017-10-10 17:25:06 +08:00
|
|
|
* just keep it for cca compatibility
|
|
|
|
*/
|
|
|
|
zc->user_space_type = ZCRYPT_CEX3C;
|
2021-11-16 21:54:19 +08:00
|
|
|
} else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX7) {
|
2019-08-16 17:05:58 +08:00
|
|
|
zc->type_string = "CEX7C";
|
2021-11-16 21:54:19 +08:00
|
|
|
zc->speed_rating = CEX7C_SPEED_IDX;
|
|
|
|
/* wrong user space type, must be CEX3C
|
|
|
|
* just keep it for cca compatibility
|
|
|
|
*/
|
|
|
|
zc->user_space_type = ZCRYPT_CEX3C;
|
|
|
|
} else {
|
|
|
|
zc->type_string = "CEX8C";
|
|
|
|
zc->speed_rating = CEX8C_SPEED_IDX;
|
|
|
|
/* wrong user space type, must be CEX3C
|
2019-08-16 17:05:58 +08:00
|
|
|
* just keep it for cca compatibility
|
|
|
|
*/
|
|
|
|
zc->user_space_type = ZCRYPT_CEX3C;
|
2016-08-25 17:16:03 +08:00
|
|
|
}
|
|
|
|
zc->min_mod_size = CEX4C_MIN_MOD_SIZE;
|
|
|
|
zc->max_mod_size = CEX4C_MAX_MOD_SIZE;
|
|
|
|
zc->max_exp_bit_length = CEX4C_MAX_MOD_SIZE;
|
|
|
|
} else if (ap_test_bit(&ac->functions, AP_FUNC_EP11)) {
|
|
|
|
if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX4) {
|
|
|
|
zc->type_string = "CEX4P";
|
|
|
|
zc->user_space_type = ZCRYPT_CEX4;
|
2020-07-02 17:10:11 +08:00
|
|
|
zc->speed_rating = CEX4P_SPEED_IDX;
|
2017-10-10 17:25:06 +08:00
|
|
|
} else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX5) {
|
2016-08-25 17:16:03 +08:00
|
|
|
zc->type_string = "CEX5P";
|
|
|
|
zc->user_space_type = ZCRYPT_CEX5;
|
2020-07-02 17:10:11 +08:00
|
|
|
zc->speed_rating = CEX5P_SPEED_IDX;
|
2019-08-16 17:05:58 +08:00
|
|
|
} else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX6) {
|
2017-10-10 17:25:06 +08:00
|
|
|
zc->type_string = "CEX6P";
|
|
|
|
zc->user_space_type = ZCRYPT_CEX6;
|
2020-07-02 17:10:11 +08:00
|
|
|
zc->speed_rating = CEX6P_SPEED_IDX;
|
2021-11-16 21:54:19 +08:00
|
|
|
} else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX7) {
|
2019-08-16 17:05:58 +08:00
|
|
|
zc->type_string = "CEX7P";
|
2021-11-16 21:54:19 +08:00
|
|
|
zc->speed_rating = CEX7P_SPEED_IDX;
|
|
|
|
/* wrong user space type, just for compatibility
|
|
|
|
* with the ZCRYPT_STATUS_MASK ioctl.
|
|
|
|
*/
|
|
|
|
zc->user_space_type = ZCRYPT_CEX6;
|
|
|
|
} else {
|
|
|
|
zc->type_string = "CEX8P";
|
|
|
|
zc->speed_rating = CEX8P_SPEED_IDX;
|
2019-08-16 17:05:58 +08:00
|
|
|
/* wrong user space type, just for compatibility
|
|
|
|
* with the ZCRYPT_STATUS_MASK ioctl.
|
|
|
|
*/
|
|
|
|
zc->user_space_type = ZCRYPT_CEX6;
|
2016-08-25 17:16:03 +08:00
|
|
|
}
|
|
|
|
zc->min_mod_size = CEX4C_MIN_MOD_SIZE;
|
|
|
|
zc->max_mod_size = CEX4C_MAX_MOD_SIZE;
|
|
|
|
zc->max_exp_bit_length = CEX4C_MAX_MOD_SIZE;
|
|
|
|
} else {
|
|
|
|
zcrypt_card_free(zc);
|
2012-08-28 22:48:29 +08:00
|
|
|
return -ENODEV;
|
2016-08-25 17:16:03 +08:00
|
|
|
}
|
|
|
|
zc->online = 1;
|
|
|
|
|
|
|
|
rc = zcrypt_card_register(zc);
|
2012-08-28 22:48:29 +08:00
|
|
|
if (rc) {
|
2016-08-25 17:16:03 +08:00
|
|
|
zcrypt_card_free(zc);
|
2020-06-12 16:13:23 +08:00
|
|
|
return rc;
|
2012-08-28 22:48:29 +08:00
|
|
|
}
|
2016-08-25 17:16:03 +08:00
|
|
|
|
2019-06-12 21:05:34 +08:00
|
|
|
if (ap_test_bit(&ac->functions, AP_FUNC_COPRO)) {
|
|
|
|
rc = sysfs_create_group(&ap_dev->device.kobj,
|
2019-08-30 22:17:47 +08:00
|
|
|
&cca_card_attr_grp);
|
2020-06-12 16:13:23 +08:00
|
|
|
if (rc) {
|
2019-08-30 22:17:47 +08:00
|
|
|
zcrypt_card_unregister(zc);
|
2020-06-12 16:13:23 +08:00
|
|
|
zcrypt_card_free(zc);
|
|
|
|
}
|
2019-08-30 22:17:47 +08:00
|
|
|
} else if (ap_test_bit(&ac->functions, AP_FUNC_EP11)) {
|
|
|
|
rc = sysfs_create_group(&ap_dev->device.kobj,
|
|
|
|
&ep11_card_attr_grp);
|
2020-06-12 16:13:23 +08:00
|
|
|
if (rc) {
|
2019-06-12 21:05:34 +08:00
|
|
|
zcrypt_card_unregister(zc);
|
2020-06-12 16:13:23 +08:00
|
|
|
zcrypt_card_free(zc);
|
|
|
|
}
|
2019-06-12 21:05:34 +08:00
|
|
|
}
|
|
|
|
|
2012-08-28 22:48:29 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2021-09-07 13:28:20 +08:00
|
|
|
/*
|
2021-11-16 21:54:19 +08:00
|
|
|
* This is called to remove the CEX[45678] card driver
|
2019-08-16 17:05:58 +08:00
|
|
|
* information if an AP card device is removed.
|
2012-08-28 22:48:29 +08:00
|
|
|
*/
|
2016-08-25 17:16:03 +08:00
|
|
|
static void zcrypt_cex4_card_remove(struct ap_device *ap_dev)
|
2012-08-28 22:48:29 +08:00
|
|
|
{
|
2021-06-07 17:18:44 +08:00
|
|
|
struct zcrypt_card *zc = dev_get_drvdata(&ap_dev->device);
|
2019-06-12 21:05:34 +08:00
|
|
|
struct ap_card *ac = to_ap_card(&ap_dev->device);
|
2012-08-28 22:48:29 +08:00
|
|
|
|
2019-06-12 21:05:34 +08:00
|
|
|
if (ap_test_bit(&ac->functions, AP_FUNC_COPRO))
|
2019-08-30 22:17:47 +08:00
|
|
|
sysfs_remove_group(&ap_dev->device.kobj, &cca_card_attr_grp);
|
|
|
|
else if (ap_test_bit(&ac->functions, AP_FUNC_EP11))
|
|
|
|
sysfs_remove_group(&ap_dev->device.kobj, &ep11_card_attr_grp);
|
2021-06-07 17:18:45 +08:00
|
|
|
|
|
|
|
zcrypt_card_unregister(zc);
|
2016-08-25 17:16:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ap_driver zcrypt_cex4_card_driver = {
|
|
|
|
.probe = zcrypt_cex4_card_probe,
|
|
|
|
.remove = zcrypt_cex4_card_remove,
|
|
|
|
.ids = zcrypt_cex4_card_ids,
|
s390/zcrypt: AP bus support for alternate driver(s)
The current AP bus, AP devices and AP device drivers implementation
uses a clearly defined mapping for binding AP devices to AP device
drivers. So for example a CEX6C queue will always be bound to the
cex4queue device driver.
The Linux Device Driver model has no sensitivity for more than one
device driver eligible for one device type. If there exist more than
one drivers matching to the device type, simple all drivers are tried
consecutively. There is no way to determine and influence the probing
order of the drivers.
With KVM there is a need to provide additional device drivers matching
to the very same type of AP devices. With a simple implementation the
KVM drivers run in competition to the regular drivers. Whichever
'wins' a device depends on build order and implementation details
within the common Linux Device Driver Model and is not
deterministic. However, a userspace process could figure out which
device should be bound to which driver and sort out the correct
binding by manipulating attributes in the sysfs.
If for security reasons a AP device must not get bound to the 'wrong'
device driver the sorting out has to be done within the Linux kernel
by the AP bus code. This patch modifies the behavior of the AP bus
for probing drivers for devices in a way that two sets of drivers are
usable. Two new bitmasks 'apmask' and 'aqmask' are used to mark a
subset of the APQN range for 'usable by the ap bus and the default
drivers' or 'not usable by the default drivers and thus available for
alternate drivers like vfio-xxx'. So an APQN which is addressed by
this masking only the default drivers will be probed. In contrary an
APQN which is not addressed by the masks will never be probed and
bound to default drivers but onny to alternate drivers.
Eventually the two masks give a way to divide the range of APQNs into
two pools: one pool of APQNs used by the AP bus and the default
drivers and thus via zcrypt drivers available to the userspace of the
system. And another pool where no zcrypt drivers are bound to and
which can be used by alternate drivers (like vfio-xxx) for their
needs. This division is hot-plug save and makes sure a APQN assigned
to an alternate driver is at no time somehow exploitable by the wrong
party.
The two masks are located in sysfs at /sys/bus/ap/apmask and
/sys/bus/ap/aqmask. The mask syntax is exactly the same as the
already existing mask attributes in the /sys/bus/ap directory (for
example ap_usage_domain_mask and ap_control_domain_mask).
By default all APQNs belong to the ap bus and the default drivers:
cat /sys/bus/ap/apmask
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
cat /sys/bus/ap/aqmask
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
The masks can be changed at boot time with the kernel command line
like this:
... ap.apmask=0xffff ap.aqmask=0x40
This would give these two pools:
default drivers pool: adapter 0 - 15, domain 1
alternate drivers pool: adapter 0 - 15, all but domain 1
adapter 16-255, all domains
The sysfs attributes for this two masks are writeable and an
administrator is able to reconfigure the assignements on the fly by
writing new mask values into. With changing the mask(s) a revision of
the existing queue to driver bindings is done. So all APQNs which are
bound to the 'wrong' driver are reprobed via kernel function
device_reprobe() and thus the new correct driver will be assigned with
respect of the changed apmask and aqmask bits.
The mask values are bitmaps in big endian order starting with bit 0.
So adapter number 0 is the leftmost bit, mask is 0x8000... The sysfs
attributes accept 2 different formats:
- Absolute hex string starting with 0x like "0x12345678" does set
the mask starting from left to right. If the given string is shorter
than the mask it is padded with 0s on the right. If the string is
longer than the mask an error comes back (EINVAL).
- '+' or '-' followed by a numerical value. Valid examples are "+1",
"-13", "+0x41", "-0xff" and even "+0" and "-0". Only the addressed
bit in the mask is switched on ('+') or off ('-').
This patch will also be the base for an upcoming extension to the
zcrypt drivers to be able to provide additional zcrypt device nodes
with filtering based on ap and aq masks.
Signed-off-by: Harald Freudenberger <freude@linux.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
2018-07-20 14:36:53 +08:00
|
|
|
.flags = AP_DRIVER_FLAG_DEFAULT,
|
2016-08-25 17:16:03 +08:00
|
|
|
};
|
|
|
|
|
2021-09-07 13:28:20 +08:00
|
|
|
/*
|
2021-11-16 21:54:19 +08:00
|
|
|
* Probe function for CEX[45678] queue device. It always
|
2018-10-04 21:30:24 +08:00
|
|
|
* accepts the AP device since the bus_match already checked
|
|
|
|
* the hardware type.
|
2016-08-25 17:16:03 +08:00
|
|
|
* @ap_dev: pointer to the AP device.
|
|
|
|
*/
|
|
|
|
static int zcrypt_cex4_queue_probe(struct ap_device *ap_dev)
|
|
|
|
{
|
|
|
|
struct ap_queue *aq = to_ap_queue(&ap_dev->device);
|
|
|
|
struct zcrypt_queue *zq;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if (ap_test_bit(&aq->card->functions, AP_FUNC_ACCEL)) {
|
2021-06-25 18:29:46 +08:00
|
|
|
zq = zcrypt_queue_alloc(aq->card->maxmsgsize);
|
2016-08-25 17:16:03 +08:00
|
|
|
if (!zq)
|
|
|
|
return -ENOMEM;
|
|
|
|
zq->ops = zcrypt_msgtype(MSGTYPE50_NAME,
|
|
|
|
MSGTYPE50_VARIANT_DEFAULT);
|
|
|
|
} else if (ap_test_bit(&aq->card->functions, AP_FUNC_COPRO)) {
|
2021-06-25 18:29:46 +08:00
|
|
|
zq = zcrypt_queue_alloc(aq->card->maxmsgsize);
|
2016-08-25 17:16:03 +08:00
|
|
|
if (!zq)
|
|
|
|
return -ENOMEM;
|
|
|
|
zq->ops = zcrypt_msgtype(MSGTYPE06_NAME,
|
|
|
|
MSGTYPE06_VARIANT_DEFAULT);
|
|
|
|
} else if (ap_test_bit(&aq->card->functions, AP_FUNC_EP11)) {
|
2021-06-25 18:29:46 +08:00
|
|
|
zq = zcrypt_queue_alloc(aq->card->maxmsgsize);
|
2016-08-25 17:16:03 +08:00
|
|
|
if (!zq)
|
|
|
|
return -ENOMEM;
|
|
|
|
zq->ops = zcrypt_msgtype(MSGTYPE06_NAME,
|
|
|
|
MSGTYPE06_VARIANT_EP11);
|
|
|
|
} else {
|
|
|
|
return -ENODEV;
|
2012-08-28 22:48:29 +08:00
|
|
|
}
|
2019-06-12 21:05:34 +08:00
|
|
|
|
2016-08-25 17:16:03 +08:00
|
|
|
zq->queue = aq;
|
|
|
|
zq->online = 1;
|
|
|
|
atomic_set(&zq->load, 0);
|
2019-11-22 23:30:06 +08:00
|
|
|
ap_queue_init_state(aq);
|
2016-08-25 17:16:03 +08:00
|
|
|
ap_queue_init_reply(aq, &zq->reply);
|
2020-12-14 21:44:03 +08:00
|
|
|
aq->request_timeout = CEX4_CLEANUP_TIME;
|
2021-06-07 17:18:44 +08:00
|
|
|
dev_set_drvdata(&ap_dev->device, zq);
|
2016-08-25 17:16:03 +08:00
|
|
|
rc = zcrypt_queue_register(zq);
|
|
|
|
if (rc) {
|
|
|
|
zcrypt_queue_free(zq);
|
2020-06-12 16:13:23 +08:00
|
|
|
return rc;
|
2019-06-12 21:05:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ap_test_bit(&aq->card->functions, AP_FUNC_COPRO)) {
|
|
|
|
rc = sysfs_create_group(&ap_dev->device.kobj,
|
2019-08-30 22:17:47 +08:00
|
|
|
&cca_queue_attr_grp);
|
2020-06-12 16:13:23 +08:00
|
|
|
if (rc) {
|
2019-08-30 22:17:47 +08:00
|
|
|
zcrypt_queue_unregister(zq);
|
2020-06-12 16:13:23 +08:00
|
|
|
zcrypt_queue_free(zq);
|
|
|
|
}
|
2019-08-30 22:17:47 +08:00
|
|
|
} else if (ap_test_bit(&aq->card->functions, AP_FUNC_EP11)) {
|
|
|
|
rc = sysfs_create_group(&ap_dev->device.kobj,
|
|
|
|
&ep11_queue_attr_grp);
|
2020-06-12 16:13:23 +08:00
|
|
|
if (rc) {
|
2019-06-12 21:05:34 +08:00
|
|
|
zcrypt_queue_unregister(zq);
|
2020-06-12 16:13:23 +08:00
|
|
|
zcrypt_queue_free(zq);
|
|
|
|
}
|
2016-08-25 17:16:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
2012-08-28 22:48:29 +08:00
|
|
|
}
|
|
|
|
|
2021-09-07 13:28:20 +08:00
|
|
|
/*
|
2021-11-16 21:54:19 +08:00
|
|
|
* This is called to remove the CEX[45678] queue driver
|
2018-10-04 21:30:24 +08:00
|
|
|
* information if an AP queue device is removed.
|
2016-08-25 17:16:03 +08:00
|
|
|
*/
|
|
|
|
static void zcrypt_cex4_queue_remove(struct ap_device *ap_dev)
|
|
|
|
{
|
2021-06-07 17:18:44 +08:00
|
|
|
struct zcrypt_queue *zq = dev_get_drvdata(&ap_dev->device);
|
2016-08-25 17:16:03 +08:00
|
|
|
struct ap_queue *aq = to_ap_queue(&ap_dev->device);
|
|
|
|
|
2019-06-12 21:05:34 +08:00
|
|
|
if (ap_test_bit(&aq->card->functions, AP_FUNC_COPRO))
|
2019-08-30 22:17:47 +08:00
|
|
|
sysfs_remove_group(&ap_dev->device.kobj, &cca_queue_attr_grp);
|
|
|
|
else if (ap_test_bit(&aq->card->functions, AP_FUNC_EP11))
|
|
|
|
sysfs_remove_group(&ap_dev->device.kobj, &ep11_queue_attr_grp);
|
2021-06-07 17:18:45 +08:00
|
|
|
|
|
|
|
zcrypt_queue_unregister(zq);
|
2016-08-25 17:16:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct ap_driver zcrypt_cex4_queue_driver = {
|
|
|
|
.probe = zcrypt_cex4_queue_probe,
|
|
|
|
.remove = zcrypt_cex4_queue_remove,
|
|
|
|
.ids = zcrypt_cex4_queue_ids,
|
s390/zcrypt: AP bus support for alternate driver(s)
The current AP bus, AP devices and AP device drivers implementation
uses a clearly defined mapping for binding AP devices to AP device
drivers. So for example a CEX6C queue will always be bound to the
cex4queue device driver.
The Linux Device Driver model has no sensitivity for more than one
device driver eligible for one device type. If there exist more than
one drivers matching to the device type, simple all drivers are tried
consecutively. There is no way to determine and influence the probing
order of the drivers.
With KVM there is a need to provide additional device drivers matching
to the very same type of AP devices. With a simple implementation the
KVM drivers run in competition to the regular drivers. Whichever
'wins' a device depends on build order and implementation details
within the common Linux Device Driver Model and is not
deterministic. However, a userspace process could figure out which
device should be bound to which driver and sort out the correct
binding by manipulating attributes in the sysfs.
If for security reasons a AP device must not get bound to the 'wrong'
device driver the sorting out has to be done within the Linux kernel
by the AP bus code. This patch modifies the behavior of the AP bus
for probing drivers for devices in a way that two sets of drivers are
usable. Two new bitmasks 'apmask' and 'aqmask' are used to mark a
subset of the APQN range for 'usable by the ap bus and the default
drivers' or 'not usable by the default drivers and thus available for
alternate drivers like vfio-xxx'. So an APQN which is addressed by
this masking only the default drivers will be probed. In contrary an
APQN which is not addressed by the masks will never be probed and
bound to default drivers but onny to alternate drivers.
Eventually the two masks give a way to divide the range of APQNs into
two pools: one pool of APQNs used by the AP bus and the default
drivers and thus via zcrypt drivers available to the userspace of the
system. And another pool where no zcrypt drivers are bound to and
which can be used by alternate drivers (like vfio-xxx) for their
needs. This division is hot-plug save and makes sure a APQN assigned
to an alternate driver is at no time somehow exploitable by the wrong
party.
The two masks are located in sysfs at /sys/bus/ap/apmask and
/sys/bus/ap/aqmask. The mask syntax is exactly the same as the
already existing mask attributes in the /sys/bus/ap directory (for
example ap_usage_domain_mask and ap_control_domain_mask).
By default all APQNs belong to the ap bus and the default drivers:
cat /sys/bus/ap/apmask
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
cat /sys/bus/ap/aqmask
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
The masks can be changed at boot time with the kernel command line
like this:
... ap.apmask=0xffff ap.aqmask=0x40
This would give these two pools:
default drivers pool: adapter 0 - 15, domain 1
alternate drivers pool: adapter 0 - 15, all but domain 1
adapter 16-255, all domains
The sysfs attributes for this two masks are writeable and an
administrator is able to reconfigure the assignements on the fly by
writing new mask values into. With changing the mask(s) a revision of
the existing queue to driver bindings is done. So all APQNs which are
bound to the 'wrong' driver are reprobed via kernel function
device_reprobe() and thus the new correct driver will be assigned with
respect of the changed apmask and aqmask bits.
The mask values are bitmaps in big endian order starting with bit 0.
So adapter number 0 is the leftmost bit, mask is 0x8000... The sysfs
attributes accept 2 different formats:
- Absolute hex string starting with 0x like "0x12345678" does set
the mask starting from left to right. If the given string is shorter
than the mask it is padded with 0s on the right. If the string is
longer than the mask an error comes back (EINVAL).
- '+' or '-' followed by a numerical value. Valid examples are "+1",
"-13", "+0x41", "-0xff" and even "+0" and "-0". Only the addressed
bit in the mask is switched on ('+') or off ('-').
This patch will also be the base for an upcoming extension to the
zcrypt drivers to be able to provide additional zcrypt device nodes
with filtering based on ap and aq masks.
Signed-off-by: Harald Freudenberger <freude@linux.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
2018-07-20 14:36:53 +08:00
|
|
|
.flags = AP_DRIVER_FLAG_DEFAULT,
|
2016-08-25 17:16:03 +08:00
|
|
|
};
|
|
|
|
|
2012-08-28 22:48:29 +08:00
|
|
|
int __init zcrypt_cex4_init(void)
|
|
|
|
{
|
2016-08-25 17:16:03 +08:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = ap_driver_register(&zcrypt_cex4_card_driver,
|
|
|
|
THIS_MODULE, "cex4card");
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
rc = ap_driver_register(&zcrypt_cex4_queue_driver,
|
|
|
|
THIS_MODULE, "cex4queue");
|
|
|
|
if (rc)
|
|
|
|
ap_driver_unregister(&zcrypt_cex4_card_driver);
|
|
|
|
|
|
|
|
return rc;
|
2012-08-28 22:48:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void __exit zcrypt_cex4_exit(void)
|
|
|
|
{
|
2016-08-25 17:16:03 +08:00
|
|
|
ap_driver_unregister(&zcrypt_cex4_queue_driver);
|
|
|
|
ap_driver_unregister(&zcrypt_cex4_card_driver);
|
2012-08-28 22:48:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
module_init(zcrypt_cex4_init);
|
|
|
|
module_exit(zcrypt_cex4_exit);
|