2 * Copyright (c) 2015, Linaro Limited
4 * This software is licensed under the terms of the GNU General Public
5 * License version 2, as published by the Free Software Foundation, and
6 * may be copied, distributed, and modified under those terms.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
14 #include <linux/device.h>
15 #include <linux/slab.h>
16 #include <linux/uaccess.h>
17 #include "optee_private.h"
19 struct optee_supp_req
{
20 struct list_head link
;
26 struct tee_param
*param
;
31 void optee_supp_init(struct optee_supp
*supp
)
33 memset(supp
, 0, sizeof(*supp
));
34 mutex_init(&supp
->mutex
);
35 init_completion(&supp
->reqs_c
);
37 INIT_LIST_HEAD(&supp
->reqs
);
41 void optee_supp_uninit(struct optee_supp
*supp
)
43 mutex_destroy(&supp
->mutex
);
44 idr_destroy(&supp
->idr
);
47 void optee_supp_release(struct optee_supp
*supp
)
50 struct optee_supp_req
*req
;
51 struct optee_supp_req
*req_tmp
;
53 mutex_lock(&supp
->mutex
);
55 /* Abort all request retrieved by supplicant */
56 idr_for_each_entry(&supp
->idr
, req
, id
) {
58 idr_remove(&supp
->idr
, id
);
59 req
->ret
= TEEC_ERROR_COMMUNICATION
;
63 /* Abort all queued requests */
64 list_for_each_entry_safe(req
, req_tmp
, &supp
->reqs
, link
) {
66 req
->ret
= TEEC_ERROR_COMMUNICATION
;
73 mutex_unlock(&supp
->mutex
);
77 * optee_supp_thrd_req() - request service from supplicant
78 * @ctx: context doing the request
79 * @func: function requested
80 * @num_params: number of elements in @param array
81 * @param: parameters for function
83 * Returns result of operation to be passed to secure world
85 u32
optee_supp_thrd_req(struct tee_context
*ctx
, u32 func
, size_t num_params
,
86 struct tee_param
*param
)
89 struct optee
*optee
= tee_get_drvdata(ctx
->teedev
);
90 struct optee_supp
*supp
= &optee
->supp
;
91 struct optee_supp_req
*req
= kzalloc(sizeof(*req
), GFP_KERNEL
);
96 return TEEC_ERROR_OUT_OF_MEMORY
;
98 init_completion(&req
->c
);
100 req
->num_params
= num_params
;
103 /* Insert the request in the request list */
104 mutex_lock(&supp
->mutex
);
105 list_add_tail(&req
->link
, &supp
->reqs
);
106 mutex_unlock(&supp
->mutex
);
108 /* Tell an eventual waiter there's a new request */
109 complete(&supp
->reqs_c
);
112 * Wait for supplicant to process and return result, once we've
113 * returned from wait_for_completion(&req->c) successfully we have
114 * exclusive access again.
116 while (wait_for_completion_interruptible(&req
->c
)) {
117 mutex_lock(&supp
->mutex
);
118 interruptable
= !supp
->ctx
;
121 * There's no supplicant available and since the
122 * supp->mutex currently is held none can
123 * become available until the mutex released
126 * Interrupting an RPC to supplicant is only
127 * allowed as a way of slightly improving the user
128 * experience in case the supplicant hasn't been
129 * started yet. During normal operation the supplicant
130 * will serve all requests in a timely manner and
131 * interrupting then wouldn't make sense.
133 interruptable
= !req
->busy
;
135 list_del(&req
->link
);
137 mutex_unlock(&supp
->mutex
);
140 req
->ret
= TEEC_ERROR_COMMUNICATION
;
151 static struct optee_supp_req
*supp_pop_entry(struct optee_supp
*supp
,
152 int num_params
, int *id
)
154 struct optee_supp_req
*req
;
156 if (supp
->req_id
!= -1) {
158 * Supplicant should not mix synchronous and asnynchronous
161 return ERR_PTR(-EINVAL
);
164 if (list_empty(&supp
->reqs
))
167 req
= list_first_entry(&supp
->reqs
, struct optee_supp_req
, link
);
169 if (num_params
< req
->num_params
) {
170 /* Not enough room for parameters */
171 return ERR_PTR(-EINVAL
);
174 *id
= idr_alloc(&supp
->idr
, req
, 1, 0, GFP_KERNEL
);
176 return ERR_PTR(-ENOMEM
);
178 list_del(&req
->link
);
184 static int supp_check_recv_params(size_t num_params
, struct tee_param
*params
,
193 * If there's memrefs we need to decrease those as they where
194 * increased earlier and we'll even refuse to accept any below.
196 for (n
= 0; n
< num_params
; n
++)
197 if (tee_param_is_memref(params
+ n
) && params
[n
].u
.memref
.shm
)
198 tee_shm_put(params
[n
].u
.memref
.shm
);
201 * We only expect parameters as TEE_IOCTL_PARAM_ATTR_TYPE_NONE with
202 * or without the TEE_IOCTL_PARAM_ATTR_META bit set.
204 for (n
= 0; n
< num_params
; n
++)
205 if (params
[n
].attr
&&
206 params
[n
].attr
!= TEE_IOCTL_PARAM_ATTR_META
)
209 /* At most we'll need one meta parameter so no need to check for more */
210 if (params
->attr
== TEE_IOCTL_PARAM_ATTR_META
)
219 * optee_supp_recv() - receive request for supplicant
220 * @ctx: context receiving the request
221 * @func: requested function in supplicant
222 * @num_params: number of elements allocated in @param, updated with number
224 * @param: space for parameters for @func
226 * Returns 0 on success or <0 on failure
228 int optee_supp_recv(struct tee_context
*ctx
, u32
*func
, u32
*num_params
,
229 struct tee_param
*param
)
231 struct tee_device
*teedev
= ctx
->teedev
;
232 struct optee
*optee
= tee_get_drvdata(teedev
);
233 struct optee_supp
*supp
= &optee
->supp
;
234 struct optee_supp_req
*req
= NULL
;
239 rc
= supp_check_recv_params(*num_params
, param
, &num_meta
);
244 mutex_lock(&supp
->mutex
);
245 req
= supp_pop_entry(supp
, *num_params
- num_meta
, &id
);
246 mutex_unlock(&supp
->mutex
);
255 * If we didn't get a request we'll block in
256 * wait_for_completion() to avoid needless spinning.
258 * This is where supplicant will be hanging most of
259 * the time, let's make this interruptable so we
260 * can easily restart supplicant if needed.
262 if (wait_for_completion_interruptible(&supp
->reqs_c
))
268 * tee-supplicant support meta parameters -> requsts can be
269 * processed asynchronously.
271 param
->attr
= TEE_IOCTL_PARAM_ATTR_TYPE_VALUE_INOUT
|
272 TEE_IOCTL_PARAM_ATTR_META
;
273 param
->u
.value
.a
= id
;
274 param
->u
.value
.b
= 0;
275 param
->u
.value
.c
= 0;
277 mutex_lock(&supp
->mutex
);
279 mutex_unlock(&supp
->mutex
);
283 *num_params
= req
->num_params
+ num_meta
;
284 memcpy(param
+ num_meta
, req
->param
,
285 sizeof(struct tee_param
) * req
->num_params
);
290 static struct optee_supp_req
*supp_pop_req(struct optee_supp
*supp
,
292 struct tee_param
*param
,
295 struct optee_supp_req
*req
;
298 const u32 attr
= TEE_IOCTL_PARAM_ATTR_TYPE_VALUE_INOUT
|
299 TEE_IOCTL_PARAM_ATTR_META
;
302 return ERR_PTR(-EINVAL
);
304 if (supp
->req_id
== -1) {
305 if (param
->attr
!= attr
)
306 return ERR_PTR(-EINVAL
);
307 id
= param
->u
.value
.a
;
314 req
= idr_find(&supp
->idr
, id
);
316 return ERR_PTR(-ENOENT
);
318 if ((num_params
- nm
) != req
->num_params
)
319 return ERR_PTR(-EINVAL
);
322 idr_remove(&supp
->idr
, id
);
330 * optee_supp_send() - send result of request from supplicant
331 * @ctx: context sending result
332 * @ret: return value of request
333 * @num_params: number of parameters returned
334 * @param: returned parameters
336 * Returns 0 on success or <0 on failure.
338 int optee_supp_send(struct tee_context
*ctx
, u32 ret
, u32 num_params
,
339 struct tee_param
*param
)
341 struct tee_device
*teedev
= ctx
->teedev
;
342 struct optee
*optee
= tee_get_drvdata(teedev
);
343 struct optee_supp
*supp
= &optee
->supp
;
344 struct optee_supp_req
*req
;
348 mutex_lock(&supp
->mutex
);
349 req
= supp_pop_req(supp
, num_params
, param
, &num_meta
);
350 mutex_unlock(&supp
->mutex
);
353 /* Something is wrong, let supplicant restart. */
357 /* Update out and in/out parameters */
358 for (n
= 0; n
< req
->num_params
; n
++) {
359 struct tee_param
*p
= req
->param
+ n
;
361 switch (p
->attr
& TEE_IOCTL_PARAM_ATTR_TYPE_MASK
) {
362 case TEE_IOCTL_PARAM_ATTR_TYPE_VALUE_OUTPUT
:
363 case TEE_IOCTL_PARAM_ATTR_TYPE_VALUE_INOUT
:
364 p
->u
.value
.a
= param
[n
+ num_meta
].u
.value
.a
;
365 p
->u
.value
.b
= param
[n
+ num_meta
].u
.value
.b
;
366 p
->u
.value
.c
= param
[n
+ num_meta
].u
.value
.c
;
368 case TEE_IOCTL_PARAM_ATTR_TYPE_MEMREF_OUTPUT
:
369 case TEE_IOCTL_PARAM_ATTR_TYPE_MEMREF_INOUT
:
370 p
->u
.memref
.size
= param
[n
+ num_meta
].u
.memref
.size
;
378 /* Let the requesting thread continue */