libxrdp: window update, simplify length checks

master
speidy 7 years ago committed by metalefty
parent 954b68314d
commit 22f0b05b03

@ -205,7 +205,7 @@ xrdp_orders_send_as_unicode(struct stream *s, const char *text)
{ {
return 1; return 1;
} }
str_chars = g_mbstowcs(wdst, text, sizeof(twchar) * len); str_chars = g_mbstowcs(wdst, text, len);
if (str_chars > 0) if (str_chars > 0)
{ {
i32 = str_chars * 2; i32 = str_chars * 2;
@ -224,6 +224,27 @@ xrdp_orders_send_as_unicode(struct stream *s, const char *text)
return 0; return 0;
} }
/*****************************************************************************/
static int
xrdp_orders_get_unicode_bytes(const char *text)
{
int num_chars;
num_chars = g_mbstowcs(0, text, 0);
if (num_chars < 0)
{
/* g_mbstowcs failed, we ignore that text by returning zero bytes */
num_chars = 0;
}
else
{
/* calculate the number of bytes of the resulting null-terminated wide-string */
num_chars = (num_chars + 1) * sizeof(twchar);
}
return num_chars;
}
/*****************************************************************************/ /*****************************************************************************/
/* RAIL */ /* RAIL */
/* returns error */ /* returns error */
@ -236,7 +257,6 @@ xrdp_orders_send_window_new_update(struct xrdp_orders *self, int window_id,
int order_size; int order_size;
int order_flags; int order_flags;
int field_present_flags; int field_present_flags;
int num_chars;
int index; int index;
order_size = 11; order_size = 11;
@ -265,14 +285,7 @@ xrdp_orders_send_window_new_update(struct xrdp_orders *self, int window_id,
if (field_present_flags & WINDOW_ORDER_FIELD_TITLE) if (field_present_flags & WINDOW_ORDER_FIELD_TITLE)
{ {
/* titleInfo */ /* titleInfo */
num_chars = g_mbstowcs(0, window_state->title_info, 0); order_size += xrdp_orders_get_unicode_bytes(window_state->title_info);
num_chars = MIN(num_chars, sizeof(twchar) * (g_strlen(window_state->title_info) + 1));
if (num_chars < 0)
{
/* g_mbstowcs failed, ignore text */
num_chars = 0;
}
order_size += 2 * num_chars + 2;
} }
if (field_present_flags & WINDOW_ORDER_FIELD_CLIENT_AREA_OFFSET) if (field_present_flags & WINDOW_ORDER_FIELD_CLIENT_AREA_OFFSET)
@ -532,7 +545,6 @@ xrdp_orders_send_notify_new_update(struct xrdp_orders *self,
int order_size; int order_size;
int order_flags; int order_flags;
int field_present_flags; int field_present_flags;
int num_chars;
int use_cmap; int use_cmap;
order_size = 15; order_size = 15;
@ -547,37 +559,16 @@ xrdp_orders_send_notify_new_update(struct xrdp_orders *self,
if (field_present_flags & WINDOW_ORDER_FIELD_NOTIFY_TIP) if (field_present_flags & WINDOW_ORDER_FIELD_NOTIFY_TIP)
{ {
/* ToolTip (variable) UNICODE_STRING */ /* ToolTip (variable) UNICODE_STRING */
num_chars = g_mbstowcs(0, notify_state->tool_tip, 0); order_size += xrdp_orders_get_unicode_bytes(notify_state->tool_tip);
num_chars = MIN(num_chars, sizeof(twchar) * (g_strlen(notify_state->tool_tip) + 1));
if (num_chars < 0)
{
/* g_mbstowcs failed, ignore text */
num_chars = 0;
}
order_size += 2 * num_chars + 2;
} }
if (field_present_flags & WINDOW_ORDER_FIELD_NOTIFY_INFO_TIP) if (field_present_flags & WINDOW_ORDER_FIELD_NOTIFY_INFO_TIP)
{ {
/* InfoTip (variable) TS_NOTIFY_ICON_INFOTIP */ /* InfoTip (variable) TS_NOTIFY_ICON_INFOTIP */
/* UNICODE_STRING */ /* UNICODE_STRING */
num_chars = g_mbstowcs(0, notify_state->infotip.title, 0); order_size += xrdp_orders_get_unicode_bytes(notify_state->infotip.title);
num_chars = MIN(num_chars, sizeof(twchar) * (g_strlen(notify_state->infotip.title) + 1));
if (num_chars < 0)
{
/* g_mbstowcs failed, ignore text */
num_chars = 0;
}
order_size += 2 * num_chars + 2;
/* UNICODE_STRING */ /* UNICODE_STRING */
num_chars = g_mbstowcs(0, notify_state->infotip.text, 0); order_size += xrdp_orders_get_unicode_bytes(notify_state->infotip.text);
num_chars = MIN(num_chars, sizeof(twchar) * (g_strlen(notify_state->infotip.text) + 1));
if (num_chars < 0)
{
/* g_mbstowcs failed, ignore text */
num_chars = 0;
}
order_size += 2 * num_chars + 2;
/* Timeout (4 bytes) */ /* Timeout (4 bytes) */
/* InfoFlags (4 bytes) */ /* InfoFlags (4 bytes) */
order_size += 8; order_size += 8;

Loading…
Cancel
Save