Linux Audio

Check our new training course

Loading...
v6.2
  1/* SPDX-License-Identifier: GPL-2.0+ */
  2/*
  3 *  Copyright IBM Corp. 2001, 2019
 
 
  4 *  Author(s): Robert Burroughs
  5 *	       Eric Rossman (edrossma@us.ibm.com)
  6 *	       Cornelia Huck <cornelia.huck@de.ibm.com>
  7 *
  8 *  Hotplug & misc device support: Jochen Roehrig (roehrig@de.ibm.com)
  9 *  Major cleanup & driver split: Martin Schwidefsky <schwidefsky@de.ibm.com>
 10 *				  Ralph Wuerthner <rwuerthn@de.ibm.com>
 11 *  MSGTYPE restruct:		  Holger Dengler <hd@linux.vnet.ibm.com>
 12 */
 13
 14#ifndef _ZCRYPT_API_H_
 15#define _ZCRYPT_API_H_
 16
 17#include <linux/atomic.h>
 18#include <asm/debug.h>
 19#include <asm/zcrypt.h>
 20#include "ap_bus.h"
 21
 22/**
 23 * Supported device types
 
 
 
 
 
 24 */
 
 
 
 
 25#define ZCRYPT_CEX2C		5
 26#define ZCRYPT_CEX2A		6
 27#define ZCRYPT_CEX3C		7
 28#define ZCRYPT_CEX3A		8
 29#define ZCRYPT_CEX4	       10
 30#define ZCRYPT_CEX5	       11
 31#define ZCRYPT_CEX6	       12
 32#define ZCRYPT_CEX7	       13
 33
 34/**
 35 * Large random numbers are pulled in 4096 byte chunks from the crypto cards
 36 * and stored in a page. Be careful when increasing this buffer due to size
 37 * limitations for AP requests.
 38 */
 39#define ZCRYPT_RNG_BUFFER_SIZE	4096
 40
 41/*
 42 * Identifier for Crypto Request Performance Index
 43 */
 44enum crypto_ops {
 45	MEX_1K,
 46	MEX_2K,
 47	MEX_4K,
 48	CRT_1K,
 49	CRT_2K,
 50	CRT_4K,
 51	HWRNG,
 52	SECKEY,
 53	NUM_OPS
 54};
 55
 56struct zcrypt_queue;
 57
 58/* struct to hold tracking information for a userspace request/response */
 59struct zcrypt_track {
 60	int again_counter;		/* retry attempts counter */
 61	int last_qid;			/* last qid used */
 62	int last_rc;			/* last return code */
 63#ifdef CONFIG_ZCRYPT_DEBUG
 64	struct ap_fi fi;		/* failure injection cmd */
 65#endif
 66};
 67
 68/* defines related to message tracking */
 69#define TRACK_AGAIN_MAX 10
 70#define TRACK_AGAIN_CARD_WEIGHT_PENALTY  1000
 71#define TRACK_AGAIN_QUEUE_WEIGHT_PENALTY 10000
 72
 73struct zcrypt_ops {
 74	long (*rsa_modexpo)(struct zcrypt_queue *, struct ica_rsa_modexpo *,
 75			    struct ap_message *);
 76	long (*rsa_modexpo_crt)(struct zcrypt_queue *,
 77				struct ica_rsa_modexpo_crt *,
 78				struct ap_message *);
 79	long (*send_cprb)(bool userspace, struct zcrypt_queue *, struct ica_xcRB *,
 80			  struct ap_message *);
 81	long (*send_ep11_cprb)(bool userspace, struct zcrypt_queue *, struct ep11_urb *,
 82			       struct ap_message *);
 83	long (*rng)(struct zcrypt_queue *, char *, struct ap_message *);
 84	struct list_head list;		/* zcrypt ops list. */
 85	struct module *owner;
 86	int variant;
 87	char name[128];
 88};
 89
 90struct zcrypt_card {
 91	struct list_head list;		/* Device list. */
 92	struct list_head zqueues;	/* List of zcrypt queues */
 93	struct kref refcount;		/* device refcounting */
 94	struct ap_card *card;		/* The "real" ap card device. */
 95	int online;			/* User online/offline */
 96
 97	int user_space_type;		/* User space device id. */
 98	char *type_string;		/* User space device name. */
 99	int min_mod_size;		/* Min number of bits. */
100	int max_mod_size;		/* Max number of bits. */
101	int max_exp_bit_length;
102	const int *speed_rating;	/* Speed idx of crypto ops. */
103	atomic_t load;			/* Utilization of the crypto device */
104
105	int request_count;		/* # current requests. */
106};
107
108struct zcrypt_queue {
109	struct list_head list;		/* Device list. */
110	struct kref refcount;		/* device refcounting */
111	struct zcrypt_card *zcard;
112	struct zcrypt_ops *ops;		/* Crypto operations. */
113	struct ap_queue *queue;		/* The "real" ap queue device. */
114	int online;			/* User online/offline */
115
116	atomic_t load;			/* Utilization of the crypto device */
117
118	int request_count;		/* # current requests. */
119
120	struct ap_message reply;	/* Per-device reply structure. */
121};
122
123/* transport layer rescanning */
124extern atomic_t zcrypt_rescan_req;
125
126extern spinlock_t zcrypt_list_lock;
 
127extern struct list_head zcrypt_card_list;
128
129#define for_each_zcrypt_card(_zc) \
130	list_for_each_entry(_zc, &zcrypt_card_list, list)
131
132#define for_each_zcrypt_queue(_zq, _zc) \
133	list_for_each_entry(_zq, &(_zc)->zqueues, list)
134
135struct zcrypt_card *zcrypt_card_alloc(void);
136void zcrypt_card_free(struct zcrypt_card *);
137void zcrypt_card_get(struct zcrypt_card *);
138int zcrypt_card_put(struct zcrypt_card *);
139int zcrypt_card_register(struct zcrypt_card *);
140void zcrypt_card_unregister(struct zcrypt_card *);
 
 
 
141
142struct zcrypt_queue *zcrypt_queue_alloc(size_t);
143void zcrypt_queue_free(struct zcrypt_queue *);
144void zcrypt_queue_get(struct zcrypt_queue *);
145int zcrypt_queue_put(struct zcrypt_queue *);
146int zcrypt_queue_register(struct zcrypt_queue *);
147void zcrypt_queue_unregister(struct zcrypt_queue *);
148bool zcrypt_queue_force_online(struct zcrypt_queue *zq, int online);
 
 
149
150int zcrypt_rng_device_add(void);
151void zcrypt_rng_device_remove(void);
152
153void zcrypt_msgtype_register(struct zcrypt_ops *);
154void zcrypt_msgtype_unregister(struct zcrypt_ops *);
155struct zcrypt_ops *zcrypt_msgtype(unsigned char *, int);
156int zcrypt_api_init(void);
157void zcrypt_api_exit(void);
158long zcrypt_send_cprb(struct ica_xcRB *xcRB);
159long zcrypt_send_ep11_cprb(struct ep11_urb *urb);
160void zcrypt_device_status_mask_ext(struct zcrypt_device_status_ext *devstatus);
161int zcrypt_device_status_ext(int card, int queue,
162			     struct zcrypt_device_status_ext *devstatus);
163
164int zcrypt_wait_api_operational(void);
165
166static inline unsigned long z_copy_from_user(bool userspace,
167					     void *to,
168					     const void __user *from,
169					     unsigned long n)
170{
171	if (likely(userspace))
172		return copy_from_user(to, from, n);
173	memcpy(to, (void __force *)from, n);
174	return 0;
175}
176
177static inline unsigned long z_copy_to_user(bool userspace,
178					   void __user *to,
179					   const void *from,
180					   unsigned long n)
181{
182	if (likely(userspace))
183		return copy_to_user(to, from, n);
184	memcpy((void __force *)to, from, n);
185	return 0;
186}
187
188#endif /* _ZCRYPT_API_H_ */
v4.17
  1// SPDX-License-Identifier: GPL-2.0+
  2/*
  3 *  zcrypt 2.1.0
  4 *
  5 *  Copyright IBM Corp. 2001, 2012
  6 *  Author(s): Robert Burroughs
  7 *	       Eric Rossman (edrossma@us.ibm.com)
  8 *	       Cornelia Huck <cornelia.huck@de.ibm.com>
  9 *
 10 *  Hotplug & misc device support: Jochen Roehrig (roehrig@de.ibm.com)
 11 *  Major cleanup & driver split: Martin Schwidefsky <schwidefsky@de.ibm.com>
 12 *				  Ralph Wuerthner <rwuerthn@de.ibm.com>
 13 *  MSGTYPE restruct:		  Holger Dengler <hd@linux.vnet.ibm.com>
 14 */
 15
 16#ifndef _ZCRYPT_API_H_
 17#define _ZCRYPT_API_H_
 18
 19#include <linux/atomic.h>
 20#include <asm/debug.h>
 21#include <asm/zcrypt.h>
 22#include "ap_bus.h"
 23
 24/**
 25 * device type for an actual device is either PCICA, PCICC, PCIXCC_MCL2,
 26 * PCIXCC_MCL3, CEX2C, or CEX2A
 27 *
 28 * NOTE: PCIXCC_MCL3 refers to a PCIXCC with May 2004 version of Licensed
 29 *	 Internal Code (LIC) (EC J12220 level 29).
 30 *	 PCIXCC_MCL2 refers to any LIC before this level.
 31 */
 32#define ZCRYPT_PCICA		1
 33#define ZCRYPT_PCICC		2
 34#define ZCRYPT_PCIXCC_MCL2	3
 35#define ZCRYPT_PCIXCC_MCL3	4
 36#define ZCRYPT_CEX2C		5
 37#define ZCRYPT_CEX2A		6
 38#define ZCRYPT_CEX3C		7
 39#define ZCRYPT_CEX3A		8
 40#define ZCRYPT_CEX4	       10
 41#define ZCRYPT_CEX5	       11
 42#define ZCRYPT_CEX6	       12
 
 43
 44/**
 45 * Large random numbers are pulled in 4096 byte chunks from the crypto cards
 46 * and stored in a page. Be careful when increasing this buffer due to size
 47 * limitations for AP requests.
 48 */
 49#define ZCRYPT_RNG_BUFFER_SIZE	4096
 50
 51/*
 52 * Identifier for Crypto Request Performance Index
 53 */
 54enum crypto_ops {
 55	MEX_1K,
 56	MEX_2K,
 57	MEX_4K,
 58	CRT_1K,
 59	CRT_2K,
 60	CRT_4K,
 61	HWRNG,
 62	SECKEY,
 63	NUM_OPS
 64};
 65
 66struct zcrypt_queue;
 67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 68struct zcrypt_ops {
 69	long (*rsa_modexpo)(struct zcrypt_queue *, struct ica_rsa_modexpo *);
 
 70	long (*rsa_modexpo_crt)(struct zcrypt_queue *,
 71				struct ica_rsa_modexpo_crt *);
 72	long (*send_cprb)(struct zcrypt_queue *, struct ica_xcRB *,
 
 73			  struct ap_message *);
 74	long (*send_ep11_cprb)(struct zcrypt_queue *, struct ep11_urb *,
 75			       struct ap_message *);
 76	long (*rng)(struct zcrypt_queue *, char *, struct ap_message *);
 77	struct list_head list;		/* zcrypt ops list. */
 78	struct module *owner;
 79	int variant;
 80	char name[128];
 81};
 82
 83struct zcrypt_card {
 84	struct list_head list;		/* Device list. */
 85	struct list_head zqueues;	/* List of zcrypt queues */
 86	struct kref refcount;		/* device refcounting */
 87	struct ap_card *card;		/* The "real" ap card device. */
 88	int online;			/* User online/offline */
 89
 90	int user_space_type;		/* User space device id. */
 91	char *type_string;		/* User space device name. */
 92	int min_mod_size;		/* Min number of bits. */
 93	int max_mod_size;		/* Max number of bits. */
 94	int max_exp_bit_length;
 95	int speed_rating[NUM_OPS];	/* Speed idx of crypto ops. */
 96	atomic_t load;			/* Utilization of the crypto device */
 97
 98	int request_count;		/* # current requests. */
 99};
100
101struct zcrypt_queue {
102	struct list_head list;		/* Device list. */
103	struct kref refcount;		/* device refcounting */
104	struct zcrypt_card *zcard;
105	struct zcrypt_ops *ops;		/* Crypto operations. */
106	struct ap_queue *queue;		/* The "real" ap queue device. */
107	int online;			/* User online/offline */
108
109	atomic_t load;			/* Utilization of the crypto device */
110
111	int request_count;		/* # current requests. */
112
113	struct ap_message reply;	/* Per-device reply structure. */
114};
115
116/* transport layer rescanning */
117extern atomic_t zcrypt_rescan_req;
118
119extern spinlock_t zcrypt_list_lock;
120extern int zcrypt_device_count;
121extern struct list_head zcrypt_card_list;
122
123#define for_each_zcrypt_card(_zc) \
124	list_for_each_entry(_zc, &zcrypt_card_list, list)
125
126#define for_each_zcrypt_queue(_zq, _zc) \
127	list_for_each_entry(_zq, &(_zc)->zqueues, list)
128
129struct zcrypt_card *zcrypt_card_alloc(void);
130void zcrypt_card_free(struct zcrypt_card *);
131void zcrypt_card_get(struct zcrypt_card *);
132int zcrypt_card_put(struct zcrypt_card *);
133int zcrypt_card_register(struct zcrypt_card *);
134void zcrypt_card_unregister(struct zcrypt_card *);
135struct zcrypt_card *zcrypt_card_get_best(unsigned int *,
136					 unsigned int, unsigned int);
137void zcrypt_card_put_best(struct zcrypt_card *, unsigned int);
138
139struct zcrypt_queue *zcrypt_queue_alloc(size_t);
140void zcrypt_queue_free(struct zcrypt_queue *);
141void zcrypt_queue_get(struct zcrypt_queue *);
142int zcrypt_queue_put(struct zcrypt_queue *);
143int zcrypt_queue_register(struct zcrypt_queue *);
144void zcrypt_queue_unregister(struct zcrypt_queue *);
145void zcrypt_queue_force_online(struct zcrypt_queue *, int);
146struct zcrypt_queue *zcrypt_queue_get_best(unsigned int, unsigned int);
147void  zcrypt_queue_put_best(struct zcrypt_queue *, unsigned int);
148
149int zcrypt_rng_device_add(void);
150void zcrypt_rng_device_remove(void);
151
152void zcrypt_msgtype_register(struct zcrypt_ops *);
153void zcrypt_msgtype_unregister(struct zcrypt_ops *);
154struct zcrypt_ops *zcrypt_msgtype(unsigned char *, int);
155int zcrypt_api_init(void);
156void zcrypt_api_exit(void);
157long zcrypt_send_cprb(struct ica_xcRB *xcRB);
 
158void zcrypt_device_status_mask_ext(struct zcrypt_device_status_ext *devstatus);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
160#endif /* _ZCRYPT_API_H_ */