aboutsummaryrefslogtreecommitdiff
path: root/src/psyc/psyc_api.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-08-27 16:38:02 +0000
committerChristian Grothoff <christian@grothoff.org>2016-08-27 16:38:02 +0000
commit7afd744770424ea38ceb8aa41b9eb94f5c089f87 (patch)
tree21dab836d3040facbe279bf8bd3e35d5d0d04dba /src/psyc/psyc_api.c
parent7aa06c2b3ec477136f5821f3aff406ec9cb290ad (diff)
downloadgnunet-7afd744770424ea38ceb8aa41b9eb94f5c089f87.tar.gz
gnunet-7afd744770424ea38ceb8aa41b9eb94f5c089f87.zip
-proper checks for inbound messages being well-formed
Diffstat (limited to 'src/psyc/psyc_api.c')
-rw-r--r--src/psyc/psyc_api.c33
1 files changed, 24 insertions, 9 deletions
diff --git a/src/psyc/psyc_api.c b/src/psyc/psyc_api.c
index f74930237..9c5832293 100644
--- a/src/psyc/psyc_api.c
+++ b/src/psyc/psyc_api.c
@@ -304,7 +304,8 @@ check_channel_history_result (void *cls,
304 pmsg = (struct GNUNET_PSYC_MessageHeader *) GNUNET_MQ_extract_nested_mh (res); 304 pmsg = (struct GNUNET_PSYC_MessageHeader *) GNUNET_MQ_extract_nested_mh (res);
305 uint16_t size = ntohs (res->header.size); 305 uint16_t size = ntohs (res->header.size);
306 306
307 if (NULL == pmsg || size < sizeof (*res) + sizeof (*pmsg)) 307 if ( (NULL == pmsg) ||
308 (size < sizeof (*res) + sizeof (*pmsg)) )
308 { /* Error, message too small. */ 309 { /* Error, message too small. */
309 GNUNET_break_op (0); 310 GNUNET_break_op (0);
310 return GNUNET_SYSERR; 311 return GNUNET_SYSERR;
@@ -320,13 +321,13 @@ handle_channel_history_result (void *cls,
320 struct GNUNET_PSYC_Channel *chn = cls; 321 struct GNUNET_PSYC_Channel *chn = cls;
321 struct GNUNET_PSYC_MessageHeader * 322 struct GNUNET_PSYC_MessageHeader *
322 pmsg = (struct GNUNET_PSYC_MessageHeader *) GNUNET_MQ_extract_nested_mh (res); 323 pmsg = (struct GNUNET_PSYC_MessageHeader *) GNUNET_MQ_extract_nested_mh (res);
324 GNUNET_ResultCallback result_cb = NULL;
325 struct GNUNET_PSYC_HistoryRequest *hist = NULL;
323 326
324 LOG (GNUNET_ERROR_TYPE_DEBUG, 327 LOG (GNUNET_ERROR_TYPE_DEBUG,
325 "%p Received historic fragment for message #%" PRIu64 ".\n", 328 "%p Received historic fragment for message #%" PRIu64 ".\n",
326 chn, GNUNET_ntohll (pmsg->message_id)); 329 chn,
327 330 GNUNET_ntohll (pmsg->message_id));
328 GNUNET_ResultCallback result_cb = NULL;
329 struct GNUNET_PSYC_HistoryRequest *hist = NULL;
330 331
331 if (GNUNET_YES != GNUNET_OP_get (chn->op, 332 if (GNUNET_YES != GNUNET_OP_get (chn->op,
332 GNUNET_ntohll (res->op_id), 333 GNUNET_ntohll (res->op_id),
@@ -349,10 +350,17 @@ check_channel_state_result (void *cls,
349 const struct GNUNET_OperationResultMessage *res) 350 const struct GNUNET_OperationResultMessage *res)
350{ 351{
351 const struct GNUNET_MessageHeader *mod = GNUNET_MQ_extract_nested_mh (res); 352 const struct GNUNET_MessageHeader *mod = GNUNET_MQ_extract_nested_mh (res);
352 uint16_t mod_size = ntohs (mod->size); 353 uint16_t mod_size;
353 uint16_t size = ntohs (res->header.size); 354 uint16_t size;
354 355
355 if (NULL == mod || size - sizeof (*res) != mod_size) 356 if (NULL == mod)
357 {
358 GNUNET_break_op (0);
359 return GNUNET_SYSERR;
360 }
361 mod_size = ntohs (mod->size);
362 size = ntohs (res->header.size);
363 if (size - sizeof (*res) != mod_size)
356 { 364 {
357 GNUNET_break_op (0); 365 GNUNET_break_op (0);
358 return GNUNET_SYSERR; 366 return GNUNET_SYSERR;
@@ -458,6 +466,12 @@ static int
458check_master_join_request (void *cls, 466check_master_join_request (void *cls,
459 const struct GNUNET_PSYC_JoinRequestMessage *req) 467 const struct GNUNET_PSYC_JoinRequestMessage *req)
460{ 468{
469 if ( ((sizeof (*req) + sizeof (struct GNUNET_PSYC_Message)) <= ntohs (req->header.size)) &&
470 (NULL == GNUNET_MQ_extract_nested_mh (req)) )
471 {
472 GNUNET_break_op (0);
473 return GNUNET_SYSERR;
474 }
461 return GNUNET_OK; 475 return GNUNET_OK;
462} 476}
463 477
@@ -477,7 +491,8 @@ handle_master_join_request (void *cls,
477 join_msg = (struct GNUNET_PSYC_Message *) GNUNET_MQ_extract_nested_mh (req); 491 join_msg = (struct GNUNET_PSYC_Message *) GNUNET_MQ_extract_nested_mh (req);
478 LOG (GNUNET_ERROR_TYPE_DEBUG, 492 LOG (GNUNET_ERROR_TYPE_DEBUG,
479 "Received join_msg of type %u and size %u.\n", 493 "Received join_msg of type %u and size %u.\n",
480 ntohs (join_msg->header.type), ntohs (join_msg->header.size)); 494 ntohs (join_msg->header.type),
495 ntohs (join_msg->header.size));
481 } 496 }
482 497
483 struct GNUNET_PSYC_JoinHandle *jh = GNUNET_malloc (sizeof (*jh)); 498 struct GNUNET_PSYC_JoinHandle *jh = GNUNET_malloc (sizeof (*jh));