263ed17354314659b60123307dc0655d57ac53f1
[linux-2.6-microblaze.git] / drivers / s390 / crypto / zcrypt_api.h
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  */
44 enum 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
56 struct zcrypt_queue;
57
58 /* struct to hold tracking information for a userspace request/response */
59 struct zcrypt_track {
60         int again_counter;              /* retry attempts counter */
61         int last_qid;                   /* last qid used */
62         int last_rc;                    /* last return code */
63 };
64
65 /* defines related to message tracking */
66 #define TRACK_AGAIN_MAX 10
67 #define TRACK_AGAIN_CARD_WEIGHT_PENALTY  1000
68 #define TRACK_AGAIN_QUEUE_WEIGHT_PENALTY 10000
69
70 struct zcrypt_ops {
71         long (*rsa_modexpo)(struct zcrypt_queue *, struct ica_rsa_modexpo *);
72         long (*rsa_modexpo_crt)(struct zcrypt_queue *,
73                                 struct ica_rsa_modexpo_crt *);
74         long (*send_cprb)(bool userspace, struct zcrypt_queue *, struct ica_xcRB *,
75                           struct ap_message *);
76         long (*send_ep11_cprb)(bool userspace, struct zcrypt_queue *, struct ep11_urb *,
77                                struct ap_message *);
78         long (*rng)(struct zcrypt_queue *, char *, struct ap_message *);
79         struct list_head list;          /* zcrypt ops list. */
80         struct module *owner;
81         int variant;
82         char name[128];
83 };
84
85 struct zcrypt_card {
86         struct list_head list;          /* Device list. */
87         struct list_head zqueues;       /* List of zcrypt queues */
88         struct kref refcount;           /* device refcounting */
89         struct ap_card *card;           /* The "real" ap card device. */
90         int online;                     /* User online/offline */
91
92         int user_space_type;            /* User space device id. */
93         char *type_string;              /* User space device name. */
94         int min_mod_size;               /* Min number of bits. */
95         int max_mod_size;               /* Max number of bits. */
96         int max_exp_bit_length;
97         const int *speed_rating;        /* Speed idx of crypto ops. */
98         atomic_t load;                  /* Utilization of the crypto device */
99
100         int request_count;              /* # current requests. */
101 };
102
103 struct zcrypt_queue {
104         struct list_head list;          /* Device list. */
105         struct kref refcount;           /* device refcounting */
106         struct zcrypt_card *zcard;
107         struct zcrypt_ops *ops;         /* Crypto operations. */
108         struct ap_queue *queue;         /* The "real" ap queue device. */
109         int online;                     /* User online/offline */
110
111         atomic_t load;                  /* Utilization of the crypto device */
112
113         int request_count;              /* # current requests. */
114
115         struct ap_message reply;        /* Per-device reply structure. */
116 };
117
118 /* transport layer rescanning */
119 extern atomic_t zcrypt_rescan_req;
120
121 extern spinlock_t zcrypt_list_lock;
122 extern int zcrypt_device_count;
123 extern struct list_head zcrypt_card_list;
124
125 #define for_each_zcrypt_card(_zc) \
126         list_for_each_entry(_zc, &zcrypt_card_list, list)
127
128 #define for_each_zcrypt_queue(_zq, _zc) \
129         list_for_each_entry(_zq, &(_zc)->zqueues, list)
130
131 struct zcrypt_card *zcrypt_card_alloc(void);
132 void zcrypt_card_free(struct zcrypt_card *);
133 void zcrypt_card_get(struct zcrypt_card *);
134 int zcrypt_card_put(struct zcrypt_card *);
135 int zcrypt_card_register(struct zcrypt_card *);
136 void zcrypt_card_unregister(struct zcrypt_card *);
137
138 struct zcrypt_queue *zcrypt_queue_alloc(size_t);
139 void zcrypt_queue_free(struct zcrypt_queue *);
140 void zcrypt_queue_get(struct zcrypt_queue *);
141 int zcrypt_queue_put(struct zcrypt_queue *);
142 int zcrypt_queue_register(struct zcrypt_queue *);
143 void zcrypt_queue_unregister(struct zcrypt_queue *);
144 void zcrypt_queue_force_online(struct zcrypt_queue *, int);
145
146 int zcrypt_rng_device_add(void);
147 void zcrypt_rng_device_remove(void);
148
149 void zcrypt_msgtype_register(struct zcrypt_ops *);
150 void zcrypt_msgtype_unregister(struct zcrypt_ops *);
151 struct zcrypt_ops *zcrypt_msgtype(unsigned char *, int);
152 int zcrypt_api_init(void);
153 void zcrypt_api_exit(void);
154 long zcrypt_send_cprb(struct ica_xcRB *xcRB);
155 long zcrypt_send_ep11_cprb(struct ep11_urb *urb);
156 void zcrypt_device_status_mask_ext(struct zcrypt_device_status_ext *devstatus);
157 int zcrypt_device_status_ext(int card, int queue,
158                              struct zcrypt_device_status_ext *devstatus);
159
160 static inline unsigned long z_copy_from_user(bool userspace,
161                                              void *to,
162                                              const void __user *from,
163                                              unsigned long n)
164 {
165         if (likely(userspace))
166                 return copy_from_user(to, from, n);
167         memcpy(to, (void __force *) from, n);
168         return 0;
169 }
170
171 static inline unsigned long z_copy_to_user(bool userspace,
172                                            void __user *to,
173                                            const void *from,
174                                            unsigned long n)
175 {
176         if (likely(userspace))
177                 return copy_to_user(to, from, n);
178         memcpy((void __force *) to, from, n);
179         return 0;
180 }
181
182 #endif /* _ZCRYPT_API_H_ */