1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
Description: fix XMPP remote crash
#
#
# patch "libpurple/protocols/jabber/jingle/jingle.c" from
# [185980c698f1c26bad6f0f8a23e866c0645ea1d9] to
# [2933cb6d81371155c69a5a4f97b6b3bf09aa5aa5]
#
# patch "libpurple/protocols/jabber/jingle/rtp.c" from
# [2656346b8bf03a7995ef995e7c2e154facdf905e] to
# [dcacf06a52d80015f7bc1676b1ccbdb182276784]
#
# patch "libpurple/protocols/jabber/jingle/session.c" from
# [00e7dd7888866a805129a8f17a545159c7e6e378] to
# [6f394c4ccad3d4ef658116e13e9db59d4b4a46fb]
#
Index: pidgin/libpurple/protocols/jabber/jingle/jingle.c
===================================================================
--- pidgin.orig/libpurple/protocols/jabber/jingle/jingle.c
+++ pidgin/libpurple/protocols/jabber/jingle/jingle.c
@@ -119,7 +119,7 @@ jingle_handle_content_modify(JingleSessi
if (local_content != NULL) {
const gchar *senders = xmlnode_get_attrib(content, "senders");
gchar *local_senders = jingle_content_get_senders(local_content);
- if (strcmp(senders, local_senders))
+ if (!purple_strequal(senders, local_senders))
jingle_content_modify(local_content, senders);
g_free(local_senders);
} else {
Index: pidgin/libpurple/protocols/jabber/jingle/rtp.c
===================================================================
--- pidgin.orig/libpurple/protocols/jabber/jingle/rtp.c
+++ pidgin/libpurple/protocols/jabber/jingle/rtp.c
@@ -589,6 +589,16 @@ jingle_rtp_init_media(JingleContent *con
senders = jingle_content_get_senders(content);
transport = jingle_content_get_transport(content);
+ if (media_type == NULL) {
+ g_free(name);
+ g_free(remote_jid);
+ g_free(senders);
+ g_free(params);
+ g_object_unref(transport);
+ g_object_unref(session);
+ return FALSE;
+ }
+
if (JINGLE_IS_RAWUDP(transport))
transmitter = "rawudp";
else if (JINGLE_IS_ICEUDP(transport))
@@ -597,24 +607,34 @@ jingle_rtp_init_media(JingleContent *con
transmitter = "notransmitter";
g_object_unref(transport);
- is_audio = !strcmp(media_type, "audio");
+ is_audio = g_str_equal(media_type, "audio");
- if (!strcmp(senders, "both"))
- type = is_audio == TRUE ? PURPLE_MEDIA_AUDIO
+ if (purple_strequal(senders, "both"))
+ type = is_audio ? PURPLE_MEDIA_AUDIO
: PURPLE_MEDIA_VIDEO;
- else if ((strcmp(senders, "initiator") == 0) ==
+ else if (purple_strequal(senders, "initiator") ==
jingle_session_is_initiator(session))
- type = is_audio == TRUE ? PURPLE_MEDIA_SEND_AUDIO
+ type = is_audio ? PURPLE_MEDIA_SEND_AUDIO
: PURPLE_MEDIA_SEND_VIDEO;
else
- type = is_audio == TRUE ? PURPLE_MEDIA_RECV_AUDIO
+ type = is_audio ? PURPLE_MEDIA_RECV_AUDIO
: PURPLE_MEDIA_RECV_VIDEO;
params =
jingle_get_params(jingle_session_get_js(session), &num_params);
creator = jingle_content_get_creator(content);
- if (!strcmp(creator, "initiator"))
+ if (creator == NULL) {
+ g_free(name);
+ g_free(media_type);
+ g_free(remote_jid);
+ g_free(senders);
+ g_free(params);
+ g_object_unref(session);
+ return FALSE;
+ }
+
+ if (g_str_equal(creator, "initiator"))
is_creator = jingle_session_is_initiator(session);
else
is_creator = !jingle_session_is_initiator(session);
@@ -623,6 +643,8 @@ jingle_rtp_init_media(JingleContent *con
if(!purple_media_add_stream(media, name, remote_jid,
type, is_creator, transmitter, num_params, params)) {
purple_media_end(media, NULL, NULL);
+ /* TODO: How much clean-up is necessary here? (does calling
+ purple_media_end lead to cleaning up Jingle structs?) */
return FALSE;
}
@@ -644,9 +666,22 @@ jingle_rtp_parse_codecs(xmlnode *descrip
const char *encoding_name,*id, *clock_rate;
PurpleMediaCodec *codec;
const gchar *media = xmlnode_get_attrib(description, "media");
- PurpleMediaSessionType type =
- !strcmp(media, "video") ? PURPLE_MEDIA_VIDEO :
- !strcmp(media, "audio") ? PURPLE_MEDIA_AUDIO : 0;
+ PurpleMediaSessionType type;
+
+ if (media == NULL) {
+ purple_debug_warning("jingle-rtp", "missing media type\n");
+ return NULL;
+ }
+
+ if (g_str_equal(media, "video")) {
+ type = PURPLE_MEDIA_VIDEO;
+ } else if (g_str_equal(media, "audio")) {
+ type = PURPLE_MEDIA_AUDIO;
+ } else {
+ purple_debug_warning("jingle-rtp", "unknown media type: %s\n",
+ media);
+ return NULL;
+ }
for (codec_element = xmlnode_get_child(description, "payload-type") ;
codec_element ;
@@ -767,19 +802,19 @@ jingle_rtp_handle_action_internal(Jingle
switch (action) {
case JINGLE_SESSION_ACCEPT:
case JINGLE_SESSION_INITIATE: {
- JingleSession *session = jingle_content_get_session(content);
- JingleTransport *transport = jingle_transport_parse(
- xmlnode_get_child(xmlcontent, "transport"));
- xmlnode *description = xmlnode_get_child(xmlcontent, "description");
- GList *candidates = jingle_rtp_transport_to_candidates(transport);
- GList *codecs = jingle_rtp_parse_codecs(description);
- gchar *name = jingle_content_get_name(content);
- gchar *remote_jid =
- jingle_session_get_remote_jid(session);
+ JingleSession *session;
+ JingleTransport *transport;
+ xmlnode *description;
+ GList *candidates;
+ GList *codecs;
+ gchar *name;
+ gchar *remote_jid;
PurpleMedia *media;
+ session = jingle_content_get_session(content);
+
if (action == JINGLE_SESSION_INITIATE &&
- jingle_rtp_init_media(content) == FALSE) {
+ !jingle_rtp_init_media(content)) {
/* XXX: send error */
jabber_iq_send(jingle_session_terminate_packet(
session, "general-error"));
@@ -787,6 +822,14 @@ jingle_rtp_handle_action_internal(Jingle
break;
}
+ transport = jingle_transport_parse(
+ xmlnode_get_child(xmlcontent, "transport"));
+ description = xmlnode_get_child(xmlcontent, "description");
+ candidates = jingle_rtp_transport_to_candidates(transport);
+ codecs = jingle_rtp_parse_codecs(description);
+ name = jingle_content_get_name(content);
+ remote_jid = jingle_session_get_remote_jid(session);
+
media = jingle_rtp_get_media(session);
purple_media_set_remote_codecs(media,
name, remote_jid, codecs);
Index: pidgin/libpurple/protocols/jabber/jingle/session.c
===================================================================
--- pidgin.orig/libpurple/protocols/jabber/jingle/session.c
+++ pidgin/libpurple/protocols/jabber/jingle/session.c
@@ -284,7 +284,7 @@ jingle_session_create(JabberStream *js,
if (!js->sessions) {
purple_debug_info("jingle",
"Creating hash table for sessions\n");
- js->sessions = g_hash_table_new(g_str_hash, g_str_equal);
+ js->sessions = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL);
}
purple_debug_info("jingle",
"inserting session with key: %s into table\n", sid);
@@ -407,27 +407,25 @@ jingle_add_jingle_packet(JingleSession *
xmlnode_new("jingle");
gchar *local_jid = jingle_session_get_local_jid(session);
gchar *remote_jid = jingle_session_get_remote_jid(session);
+ gchar *sid = jingle_session_get_sid(session);
xmlnode_set_namespace(jingle, JINGLE);
xmlnode_set_attrib(jingle, "action", jingle_get_action_name(action));
if (jingle_session_is_initiator(session)) {
- xmlnode_set_attrib(jingle, "initiator",
- jingle_session_get_local_jid(session));
- xmlnode_set_attrib(jingle, "responder",
- jingle_session_get_remote_jid(session));
+ xmlnode_set_attrib(jingle, "initiator", local_jid);
+ xmlnode_set_attrib(jingle, "responder", remote_jid);
} else {
- xmlnode_set_attrib(jingle, "initiator",
- jingle_session_get_remote_jid(session));
- xmlnode_set_attrib(jingle, "responder",
- jingle_session_get_local_jid(session));
+ xmlnode_set_attrib(jingle, "initiator", remote_jid);
+ xmlnode_set_attrib(jingle, "responder", local_jid);
}
+ xmlnode_set_attrib(jingle, "sid", sid);
+
g_free(local_jid);
g_free(remote_jid);
+ g_free(sid);
- xmlnode_set_attrib(jingle, "sid", jingle_session_get_sid(session));
-
return jingle;
}
@@ -504,11 +502,16 @@ void jingle_session_handle_action(Jingle
JingleContent *
jingle_session_find_content(JingleSession *session, const gchar *name, const gchar *creator)
{
- GList *iter = session->priv->contents;
+ GList *iter;
+
+ if (name == NULL)
+ return NULL;
+
+ iter = session->priv->contents;
for (; iter; iter = g_list_next(iter)) {
JingleContent *content = iter->data;
gchar *cname = jingle_content_get_name(content);
- gboolean result = !strcmp(name, cname);
+ gboolean result = g_str_equal(name, cname);
g_free(cname);
if (creator != NULL) {
@@ -526,11 +529,16 @@ jingle_session_find_content(JingleSessio
JingleContent *
jingle_session_find_pending_content(JingleSession *session, const gchar *name, const gchar *creator)
{
- GList *iter = session->priv->pending_contents;
+ GList *iter;
+
+ if (name == NULL)
+ return NULL;
+
+ iter = session->priv->pending_contents;
for (; iter; iter = g_list_next(iter)) {
JingleContent *content = iter->data;
gchar *cname = jingle_content_get_name(content);
- gboolean result = !strcmp(name, cname);
+ gboolean result = g_str_equal(name, cname);
g_free(cname);
if (creator != NULL) {
|