charsets: report GError in byte_array_append() failures
This commit is contained in:
@@ -4561,7 +4561,7 @@ ussd_encode (const gchar *command,
|
||||
guint32 *scheme,
|
||||
GError **error)
|
||||
{
|
||||
GByteArray *array;
|
||||
g_autoptr(GByteArray) array = NULL;
|
||||
|
||||
if (mm_charset_can_convert_to (command, MM_MODEM_CHARSET_GSM)) {
|
||||
guint8 *gsm;
|
||||
@@ -4581,12 +4581,13 @@ ussd_encode (const gchar *command,
|
||||
|
||||
array = g_byte_array_new_take (packed, packed_len);
|
||||
} else {
|
||||
g_autoptr(GError) inner_error = NULL;
|
||||
|
||||
*scheme = MM_MODEM_GSM_USSD_SCHEME_UCS2;
|
||||
array = g_byte_array_sized_new (strlen (command) * 2);
|
||||
if (!mm_modem_charset_byte_array_append (array, command, FALSE, MM_MODEM_CHARSET_UCS2)) {
|
||||
if (!mm_modem_charset_byte_array_append (array, command, FALSE, MM_MODEM_CHARSET_UCS2, &inner_error)) {
|
||||
g_set_error (error, MM_CORE_ERROR, MM_CORE_ERROR_UNSUPPORTED,
|
||||
"Failed to encode USSD command in UCS2 charset");
|
||||
g_byte_array_unref (array);
|
||||
"Failed to encode USSD command in UCS2 charset: %s", inner_error->message);
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
@@ -4594,11 +4595,10 @@ ussd_encode (const gchar *command,
|
||||
if (array->len > 160) {
|
||||
g_set_error (error, MM_CORE_ERROR, MM_CORE_ERROR_INVALID_ARGS,
|
||||
"Failed to encode USSD command: encoded data too long (%u > 160)", array->len);
|
||||
g_byte_array_unref (array);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
return array;
|
||||
return g_steal_pointer (&array);
|
||||
}
|
||||
|
||||
static gchar *
|
||||
|
@@ -5806,8 +5806,8 @@ modem_3gpp_ussd_encode (MMIfaceModem3gppUssd *self,
|
||||
GError **error)
|
||||
{
|
||||
MMBroadbandModem *broadband = MM_BROADBAND_MODEM (self);
|
||||
GByteArray *ussd_command;
|
||||
gchar *hex = NULL;
|
||||
g_autoptr(GByteArray) ussd_command = NULL;
|
||||
|
||||
ussd_command = g_byte_array_new ();
|
||||
|
||||
@@ -5816,7 +5816,8 @@ modem_3gpp_ussd_encode (MMIfaceModem3gppUssd *self,
|
||||
if (mm_modem_charset_byte_array_append (ussd_command,
|
||||
command,
|
||||
FALSE,
|
||||
broadband->priv->modem_current_charset)) {
|
||||
broadband->priv->modem_current_charset,
|
||||
NULL)) {
|
||||
/* The scheme value does NOT represent the encoding used to encode the string
|
||||
* we're giving. This scheme reflects the encoding that the modem should use when
|
||||
* sending the data out to the network. We're hardcoding this to GSM-7 because
|
||||
@@ -5827,8 +5828,6 @@ modem_3gpp_ussd_encode (MMIfaceModem3gppUssd *self,
|
||||
hex = mm_utils_bin2hexstr (ussd_command->data, ussd_command->len);
|
||||
}
|
||||
|
||||
g_byte_array_free (ussd_command, TRUE);
|
||||
|
||||
return hex;
|
||||
}
|
||||
|
||||
|
@@ -113,28 +113,25 @@ charset_iconv_from (MMModemCharset charset)
|
||||
|
||||
gboolean
|
||||
mm_modem_charset_byte_array_append (GByteArray *array,
|
||||
const char *utf8,
|
||||
const gchar *utf8,
|
||||
gboolean quoted,
|
||||
MMModemCharset charset)
|
||||
MMModemCharset charset,
|
||||
GError **error)
|
||||
{
|
||||
const char *iconv_to;
|
||||
char *converted;
|
||||
GError *error = NULL;
|
||||
g_autofree gchar *converted = NULL;
|
||||
const gchar *iconv_to;
|
||||
gsize written = 0;
|
||||
|
||||
g_return_val_if_fail (array != NULL, FALSE);
|
||||
g_return_val_if_fail (utf8 != NULL, FALSE);
|
||||
|
||||
iconv_to = charset_iconv_to (charset);
|
||||
g_return_val_if_fail (iconv_to != NULL, FALSE);
|
||||
g_assert (iconv_to);
|
||||
|
||||
converted = g_convert (utf8, -1, iconv_to, "UTF-8", NULL, &written, &error);
|
||||
converted = g_convert (utf8, -1, iconv_to, "UTF-8", NULL, &written, error);
|
||||
if (!converted) {
|
||||
if (error) {
|
||||
mm_warn ("failed to convert '%s' to %s character set: (%d) %s",
|
||||
utf8, iconv_to, error->code, error->message);
|
||||
g_error_free (error);
|
||||
}
|
||||
g_prefix_error (error, "Failed to convert '%s' to %s character set",
|
||||
utf8, iconv_to);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
@@ -144,7 +141,6 @@ mm_modem_charset_byte_array_append (GByteArray *array,
|
||||
if (quoted)
|
||||
g_byte_array_append (array, (const guint8 *) "\"", 1);
|
||||
|
||||
g_free (converted);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
@@ -39,9 +39,10 @@ MMModemCharset mm_modem_charset_from_string (const char *string);
|
||||
* UTF-8 encoded.
|
||||
*/
|
||||
gboolean mm_modem_charset_byte_array_append (GByteArray *array,
|
||||
const char *utf8,
|
||||
const gchar *utf8,
|
||||
gboolean quoted,
|
||||
MMModemCharset charset);
|
||||
MMModemCharset charset,
|
||||
GError **error);
|
||||
|
||||
/* Take a string encoded in the given charset in binary form, and
|
||||
* convert it to UTF-8. */
|
||||
|
@@ -1013,16 +1013,16 @@ mm_sms_part_3gpp_get_submit_pdu (MMSmsPart *part,
|
||||
g_free (packed);
|
||||
offset += packlen;
|
||||
} else if (mm_sms_part_get_encoding (part) == MM_SMS_ENCODING_UCS2) {
|
||||
GByteArray *array;
|
||||
g_autoptr(GByteArray) array = NULL;
|
||||
g_autoptr(GError) inner_error = NULL;
|
||||
|
||||
/* Try to guess a good value for the array */
|
||||
array = g_byte_array_sized_new (strlen (mm_sms_part_get_text (part)) * 2);
|
||||
if (!mm_modem_charset_byte_array_append (array, mm_sms_part_get_text (part), FALSE, MM_MODEM_CHARSET_UCS2)) {
|
||||
g_byte_array_free (array, TRUE);
|
||||
g_set_error_literal (error,
|
||||
if (!mm_modem_charset_byte_array_append (array, mm_sms_part_get_text (part), FALSE, MM_MODEM_CHARSET_UCS2, &inner_error)) {
|
||||
g_set_error (error,
|
||||
MM_MESSAGE_ERROR,
|
||||
MM_MESSAGE_ERROR_INVALID_PDU_PARAMETER,
|
||||
"Failed to convert message text to UCS2");
|
||||
"Failed to convert message text to UCS2: %s", inner_error->message);
|
||||
goto error;
|
||||
}
|
||||
|
||||
@@ -1036,7 +1036,6 @@ mm_sms_part_3gpp_get_submit_pdu (MMSmsPart *part,
|
||||
|
||||
memcpy (&pdu[offset], array->data, array->len);
|
||||
offset += array->len;
|
||||
g_byte_array_free (array, TRUE);
|
||||
} else if (mm_sms_part_get_encoding (part) == MM_SMS_ENCODING_8BIT) {
|
||||
const GByteArray *data;
|
||||
|
||||
@@ -1102,7 +1101,8 @@ mm_sms_part_3gpp_util_split_text (const gchar *text,
|
||||
/* Check if we can do GSM encoding */
|
||||
if (!mm_charset_can_convert_to (text, MM_MODEM_CHARSET_GSM)) {
|
||||
/* If cannot do it in GSM encoding, do it in UCS-2 */
|
||||
GByteArray *array;
|
||||
g_autoptr(GByteArray) array = NULL;
|
||||
g_autoptr(GError) error = NULL;
|
||||
|
||||
*encoding = MM_SMS_ENCODING_UCS2;
|
||||
|
||||
@@ -1112,8 +1112,9 @@ mm_sms_part_3gpp_util_split_text (const gchar *text,
|
||||
if (!mm_modem_charset_byte_array_append (array,
|
||||
text,
|
||||
FALSE,
|
||||
MM_MODEM_CHARSET_UCS2)) {
|
||||
g_byte_array_unref (array);
|
||||
MM_MODEM_CHARSET_UCS2,
|
||||
&error)) {
|
||||
mm_obj_warn (log_object, "failed to append UCS2: %s", error->message);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -1145,7 +1146,6 @@ mm_sms_part_3gpp_util_split_text (const gchar *text,
|
||||
log_object);
|
||||
}
|
||||
}
|
||||
g_byte_array_unref (array);
|
||||
} else {
|
||||
/* Do it with GSM encoding */
|
||||
*encoding = MM_SMS_ENCODING_GSM7;
|
||||
|
@@ -1377,6 +1377,7 @@ write_bearer_data_message_identifier (MMSmsPart *part,
|
||||
|
||||
static void
|
||||
decide_best_encoding (const gchar *text,
|
||||
gpointer log_object,
|
||||
GByteArray **out,
|
||||
guint *num_fields,
|
||||
guint *num_bits_per_field,
|
||||
@@ -1385,6 +1386,7 @@ decide_best_encoding (const gchar *text,
|
||||
guint ascii_unsupported = 0;
|
||||
guint i;
|
||||
guint len;
|
||||
g_autoptr(GError) error = NULL;
|
||||
|
||||
len = strlen (text);
|
||||
|
||||
@@ -1409,10 +1411,12 @@ decide_best_encoding (const gchar *text,
|
||||
/* Check if we can do Latin encoding */
|
||||
if (mm_charset_can_convert_to (text, MM_MODEM_CHARSET_8859_1)) {
|
||||
*out = g_byte_array_sized_new (len);
|
||||
mm_modem_charset_byte_array_append (*out,
|
||||
if (!mm_modem_charset_byte_array_append (*out,
|
||||
text,
|
||||
FALSE,
|
||||
MM_MODEM_CHARSET_8859_1);
|
||||
MM_MODEM_CHARSET_8859_1,
|
||||
&error))
|
||||
mm_obj_warn (log_object, "failed to convert to latin encoding: %s", error->message);
|
||||
*num_fields = (*out)->len;
|
||||
*num_bits_per_field = 8;
|
||||
*encoding = ENCODING_LATIN;
|
||||
@@ -1421,10 +1425,12 @@ decide_best_encoding (const gchar *text,
|
||||
|
||||
/* If no Latin and no ASCII, default to UTF-16 */
|
||||
*out = g_byte_array_sized_new (len * 2);
|
||||
mm_modem_charset_byte_array_append (*out,
|
||||
if (!mm_modem_charset_byte_array_append (*out,
|
||||
text,
|
||||
FALSE,
|
||||
MM_MODEM_CHARSET_UCS2);
|
||||
MM_MODEM_CHARSET_UCS2,
|
||||
&error))
|
||||
mm_obj_warn (log_object, "failed to convert to UTF-16 encoding: %s", error->message);
|
||||
*num_fields = (*out)->len / 2;
|
||||
*num_bits_per_field = 16;
|
||||
*encoding = ENCODING_UNICODE;
|
||||
@@ -1472,6 +1478,7 @@ write_bearer_data_user_data (MMSmsPart *part,
|
||||
/* Text or Data */
|
||||
if (text) {
|
||||
decide_best_encoding (text,
|
||||
log_object,
|
||||
&converted,
|
||||
&num_fields,
|
||||
&num_bits_per_field,
|
||||
|
Reference in New Issue
Block a user