aboutsummaryrefslogtreecommitdiff
path: root/rpc_server.c
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-10-19 02:00:43 -0400
committerRob Austein <sra@hactrn.net>2016-10-19 02:00:43 -0400
commitb252694ce6aafcdec2dd268196029f17ab0c6335 (patch)
treef165d10baaf1df978b117187f926fc273ca254a3 /rpc_server.c
parentc982e2e9344ab0c22f8c158cfb61da88485660d5 (diff)
Shake first round of bugs out of hal_rpc_pkey_match().
The filtering code for this function has not been tested yet.
Diffstat (limited to 'rpc_server.c')
-rw-r--r--rpc_server.c24
1 files changed, 14 insertions, 10 deletions
diff --git a/rpc_server.c b/rpc_server.c
index d9e640a..18f6823 100644
--- a/rpc_server.c
+++ b/rpc_server.c
@@ -672,6 +672,7 @@ static hal_error_t pkey_match(const uint8_t **iptr, const uint8_t * const ilimit
hal_session_handle_t session;
uint32_t type, curve, attributes_len, result_max, previous_uuid_len;
const uint8_t *previous_uuid_ptr;
+ hal_uuid_t previous_uuid;
hal_key_flags_t flags;
hal_error_t ret;
@@ -695,27 +696,30 @@ static hal_error_t pkey_match(const uint8_t **iptr, const uint8_t * const ilimit
check(hal_xdr_decode_int(iptr, ilimit, &result_max));
check(hal_xdr_decode_buffer_in_place(iptr, ilimit, &previous_uuid_ptr, &previous_uuid_len));
- if (previous_uuid_len != sizeof(hal_uuid_t))
+ if (previous_uuid_len != sizeof(previous_uuid.uuid))
return HAL_ERROR_KEY_NAME_TOO_LONG;
+ memcpy(previous_uuid.uuid, previous_uuid_ptr, sizeof(previous_uuid.uuid));
+
hal_uuid_t result[result_max];
unsigned result_len;
ret = hal_rpc_local_pkey_dispatch.match(client, session, type, curve, flags,
attributes, attributes_len,
result, &result_len, result_max,
- (hal_uuid_t *) previous_uuid_ptr);
+ &previous_uuid);
if (ret == HAL_OK) {
uint8_t *optr_orig = *optr;
- check(hal_xdr_encode_int(optr, olimit, result_len));
- for (int i = 0; i < result_len; ++i) {
- if ((ret = hal_xdr_encode_buffer(optr, olimit, result[i].uuid,
- sizeof(result[i].uuid))) != HAL_OK) {
- *optr = optr_orig;
- break;
- }
- }
+ ret = hal_xdr_encode_int(optr, olimit, result_len);
+ for (int i = 0; ret == HAL_OK && i < result_len; ++i)
+ ret = hal_xdr_encode_buffer(optr, olimit, result[i].uuid,
+ sizeof(result[i].uuid));
+ if (ret == HAL_OK)
+ ret = hal_xdr_encode_buffer(optr, olimit, previous_uuid.uuid,
+ sizeof(previous_uuid.uuid));
+ if (ret != HAL_OK)
+ *optr = optr_orig;
}
return ret;