X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fnotification.c;h=c347b3ceac891b60ffc2ecb6a98df84653b857f5;hp=806c5561936a985142882636423c7e58c09c2269;hb=3e6e0df2f8f9f23d252c2508b6d741916dfcc4b3;hpb=c0a66c84b5b2484b75798aec7543b680b4d4ab6c diff --git a/src/common/notification.c b/src/common/notification.c index 806c55619..c347b3cea 100644 --- a/src/common/notification.c +++ b/src/common/notification.c @@ -10,8 +10,8 @@ #include #include #include -#include -#include +#include +#include #include LTTNG_HIDDEN @@ -78,16 +78,25 @@ ssize_t lttng_notification_create_from_payload( struct lttng_notification **notification) { ssize_t ret, notification_size = 0, condition_size, evaluation_size; - const struct lttng_notification_comm *notification_comm; struct lttng_condition *condition; struct lttng_evaluation *evaluation; + const struct lttng_notification_comm *notification_comm; + const struct lttng_payload_view notification_comm_view = + lttng_payload_view_from_view( + src_view, 0, sizeof(*notification_comm)); if (!src_view || !notification) { ret = -1; goto end; } - notification_comm = (typeof(notification_comm)) src_view->buffer.data; + if (!lttng_payload_view_is_valid(¬ification_comm_view)) { + /* Payload not large enough to contain the header. */ + ret = -1; + goto end; + } + + notification_comm = (typeof(notification_comm)) notification_comm_view.buffer.data; notification_size += sizeof(*notification_comm); { /* struct lttng_condition */