blob: 73541a798db7a4a1c41bd0e555f33bd1a1bbbbde [file] [log] [blame]
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +02001/*
Ralph Wuerthner54321142006-09-20 15:58:36 +02002 * zcrypt 2.1.0
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +02003 *
Holger Dengler5e55a482012-08-28 16:45:36 +02004 * Copyright IBM Corp. 2001, 2012
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +02005 * Author(s): Robert Burroughs
6 * Eric Rossman (edrossma@us.ibm.com)
7 * Cornelia Huck <cornelia.huck@de.ibm.com>
8 *
9 * Hotplug & misc device support: Jochen Roehrig (roehrig@de.ibm.com)
10 * Major cleanup & driver split: Martin Schwidefsky <schwidefsky@de.ibm.com>
11 * Ralph Wuerthner <rwuerthn@de.ibm.com>
Holger Dengler5e55a482012-08-28 16:45:36 +020012 * MSGTYPE restruct: Holger Dengler <hd@linux.vnet.ibm.com>
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +020013 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
17 * any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 */
28
29#ifndef _ZCRYPT_API_H_
30#define _ZCRYPT_API_H_
31
Holger Denglerdabecb22012-09-10 21:34:26 +020032#include <linux/atomic.h>
33#include <asm/debug.h>
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +020034#include <asm/zcrypt.h>
Holger Denglerdabecb22012-09-10 21:34:26 +020035#include "ap_bus.h"
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +020036
37/* deprecated status calls */
38#define ICAZ90STATUS _IOR(ZCRYPT_IOCTL_MAGIC, 0x10, struct ica_z90_status)
39#define Z90STAT_PCIXCCCOUNT _IOR(ZCRYPT_IOCTL_MAGIC, 0x43, int)
40
41/**
42 * This structure is deprecated and the corresponding ioctl() has been
43 * replaced with individual ioctl()s for each piece of data!
44 */
45struct ica_z90_status {
46 int totalcount;
47 int leedslitecount; // PCICA
48 int leeds2count; // PCICC
49 // int PCIXCCCount; is not in struct for backward compatibility
50 int requestqWaitCount;
51 int pendingqWaitCount;
52 int totalOpenCount;
53 int cryptoDomain;
54 // status: 0=not there, 1=PCICA, 2=PCICC, 3=PCIXCC_MCL2, 4=PCIXCC_MCL3,
55 // 5=CEX2C
56 unsigned char status[64];
57 // qdepth: # work elements waiting for each device
58 unsigned char qdepth[64];
59};
60
61/**
62 * device type for an actual device is either PCICA, PCICC, PCIXCC_MCL2,
63 * PCIXCC_MCL3, CEX2C, or CEX2A
64 *
65 * NOTE: PCIXCC_MCL3 refers to a PCIXCC with May 2004 version of Licensed
66 * Internal Code (LIC) (EC J12220 level 29).
67 * PCIXCC_MCL2 refers to any LIC before this level.
68 */
69#define ZCRYPT_PCICA 1
70#define ZCRYPT_PCICC 2
71#define ZCRYPT_PCIXCC_MCL2 3
72#define ZCRYPT_PCIXCC_MCL3 4
73#define ZCRYPT_CEX2C 5
74#define ZCRYPT_CEX2A 6
Felix Beck8e89b6b2009-12-07 12:51:57 +010075#define ZCRYPT_CEX3C 7
76#define ZCRYPT_CEX3A 8
Ingo Tuchscherer91f3e3ea2013-11-20 10:47:13 +010077#define ZCRYPT_CEX4 10
Ingo Tuchschererbdea1f1b2015-01-23 14:56:25 +010078#define ZCRYPT_CEX5 11
Harald Freudenberger21214b02017-10-10 11:25:06 +020079#define ZCRYPT_CEX6 12
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +020080
Ralph Wuerthner2f7c8bd2008-04-17 07:46:15 +020081/**
82 * Large random numbers are pulled in 4096 byte chunks from the crypto cards
Lucas De Marchi25985ed2011-03-30 22:57:33 -030083 * and stored in a page. Be careful when increasing this buffer due to size
Ralph Wuerthner2f7c8bd2008-04-17 07:46:15 +020084 * limitations for AP requests.
85 */
86#define ZCRYPT_RNG_BUFFER_SIZE 4096
87
Ingo Tuchscherer34a15162016-08-25 11:14:15 +020088/*
89 * Identifier for Crypto Request Performance Index
90 */
91enum crypto_ops {
Ingo Tuchscherere28d2af2016-08-25 11:16:03 +020092 MEX_1K,
Ingo Tuchscherer34a15162016-08-25 11:14:15 +020093 MEX_2K,
94 MEX_4K,
95 CRT_1K,
96 CRT_2K,
97 CRT_4K,
98 HWRNG,
99 SECKEY,
100 NUM_OPS
101};
102
Ingo Tuchscherere28d2af2016-08-25 11:16:03 +0200103struct zcrypt_queue;
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +0200104
105struct zcrypt_ops {
Ingo Tuchscherere28d2af2016-08-25 11:16:03 +0200106 long (*rsa_modexpo)(struct zcrypt_queue *, struct ica_rsa_modexpo *);
107 long (*rsa_modexpo_crt)(struct zcrypt_queue *,
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +0200108 struct ica_rsa_modexpo_crt *);
Ingo Tuchscherere28d2af2016-08-25 11:16:03 +0200109 long (*send_cprb)(struct zcrypt_queue *, struct ica_xcRB *,
Ingo Tuchscherer34a15162016-08-25 11:14:15 +0200110 struct ap_message *);
Ingo Tuchscherere28d2af2016-08-25 11:16:03 +0200111 long (*send_ep11_cprb)(struct zcrypt_queue *, struct ep11_urb *,
Ingo Tuchscherer34a15162016-08-25 11:14:15 +0200112 struct ap_message *);
Ingo Tuchscherere28d2af2016-08-25 11:16:03 +0200113 long (*rng)(struct zcrypt_queue *, char *, struct ap_message *);
Holger Dengler5e55a482012-08-28 16:45:36 +0200114 struct list_head list; /* zcrypt ops list. */
115 struct module *owner;
116 int variant;
Sascha Silbe121a8682015-10-28 11:06:08 +0100117 char name[128];
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +0200118};
119
Ingo Tuchscherere28d2af2016-08-25 11:16:03 +0200120struct zcrypt_card {
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +0200121 struct list_head list; /* Device list. */
Ingo Tuchscherere28d2af2016-08-25 11:16:03 +0200122 struct list_head zqueues; /* List of zcrypt queues */
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +0200123 struct kref refcount; /* device refcounting */
Ingo Tuchscherere28d2af2016-08-25 11:16:03 +0200124 struct ap_card *card; /* The "real" ap card device. */
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +0200125 int online; /* User online/offline */
126
127 int user_space_type; /* User space device id. */
128 char *type_string; /* User space device name. */
129 int min_mod_size; /* Min number of bits. */
130 int max_mod_size; /* Max number of bits. */
Ingo Tuchscherere28d2af2016-08-25 11:16:03 +0200131 int max_exp_bit_length;
Ingo Tuchscherer34a15162016-08-25 11:14:15 +0200132 int speed_rating[NUM_OPS]; /* Speed idx of crypto ops. */
Ingo Tuchscherere28d2af2016-08-25 11:16:03 +0200133 atomic_t load; /* Utilization of the crypto device */
134
135 int request_count; /* # current requests. */
Ingo Tuchscherere28d2af2016-08-25 11:16:03 +0200136};
137
138struct zcrypt_queue {
139 struct list_head list; /* Device list. */
140 struct kref refcount; /* device refcounting */
141 struct zcrypt_card *zcard;
142 struct zcrypt_ops *ops; /* Crypto operations. */
143 struct ap_queue *queue; /* The "real" ap queue device. */
144 int online; /* User online/offline */
145
146 atomic_t load; /* Utilization of the crypto device */
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +0200147
148 int request_count; /* # current requests. */
149
150 struct ap_message reply; /* Per-device reply structure. */
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +0200151};
152
Holger Denglerdabecb22012-09-10 21:34:26 +0200153/* transport layer rescanning */
154extern atomic_t zcrypt_rescan_req;
155
Ingo Tuchscherere28d2af2016-08-25 11:16:03 +0200156extern spinlock_t zcrypt_list_lock;
157extern int zcrypt_device_count;
158extern struct list_head zcrypt_card_list;
159
Ingo Tuchscherere28d2af2016-08-25 11:16:03 +0200160#define for_each_zcrypt_card(_zc) \
161 list_for_each_entry(_zc, &zcrypt_card_list, list)
162
163#define for_each_zcrypt_queue(_zq, _zc) \
164 list_for_each_entry(_zq, &(_zc)->zqueues, list)
165
166struct zcrypt_card *zcrypt_card_alloc(void);
167void zcrypt_card_free(struct zcrypt_card *);
168void zcrypt_card_get(struct zcrypt_card *);
169int zcrypt_card_put(struct zcrypt_card *);
170int zcrypt_card_register(struct zcrypt_card *);
171void zcrypt_card_unregister(struct zcrypt_card *);
172struct zcrypt_card *zcrypt_card_get_best(unsigned int *,
173 unsigned int, unsigned int);
174void zcrypt_card_put_best(struct zcrypt_card *, unsigned int);
175
176struct zcrypt_queue *zcrypt_queue_alloc(size_t);
177void zcrypt_queue_free(struct zcrypt_queue *);
178void zcrypt_queue_get(struct zcrypt_queue *);
179int zcrypt_queue_put(struct zcrypt_queue *);
180int zcrypt_queue_register(struct zcrypt_queue *);
181void zcrypt_queue_unregister(struct zcrypt_queue *);
182void zcrypt_queue_force_online(struct zcrypt_queue *, int);
183struct zcrypt_queue *zcrypt_queue_get_best(unsigned int, unsigned int);
184void zcrypt_queue_put_best(struct zcrypt_queue *, unsigned int);
185
186int zcrypt_rng_device_add(void);
187void zcrypt_rng_device_remove(void);
188
Holger Dengler5e55a482012-08-28 16:45:36 +0200189void zcrypt_msgtype_register(struct zcrypt_ops *);
190void zcrypt_msgtype_unregister(struct zcrypt_ops *);
Martin Schwidefsky236fb2a2016-09-02 15:21:45 +0200191struct zcrypt_ops *zcrypt_msgtype(unsigned char *, int);
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +0200192int zcrypt_api_init(void);
193void zcrypt_api_exit(void);
Harald Freudenbergera1d001e2016-11-02 14:32:32 +0100194long zcrypt_send_cprb(struct ica_xcRB *xcRB);
195void zcrypt_device_status_mask(struct zcrypt_device_matrix *devstatus);
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +0200196
197#endif /* _ZCRYPT_API_H_ */