After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 762490 - Add bounds check so that the code doesn't segfault
Add bounds check so that the code doesn't segfault
Status: RESOLVED FIXED
Product: polari
Classification: Applications
Component: general
unspecified
Other All
: Normal normal
: ---
Assigned To: Polari maintainers
Polari maintainers
Depends on:
Blocks:
 
 
Reported: 2016-02-22 21:08 UTC by Daniel Landau
Modified: 2016-02-27 10:09 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Add bounds check so that the code doesn't segfault (1.13 KB, patch)
2016-02-22 21:08 UTC, Daniel Landau
none Details | Review
Add bounds check so that the code doesn't segfault (1.59 KB, patch)
2016-02-27 09:42 UTC, Daniel Landau
committed Details | Review

Description Daniel Landau 2016-02-22 21:08:37 UTC
I got a segfault on Polari and the stack trace pointed to this bit of code and it turned out that removed->len was 1 and added->len and added->pdata was NULL.
Comment 1 Daniel Landau 2016-02-22 21:08:42 UTC
Created attachment 321896 [details] [review]
Add bounds check so that the code doesn't segfault
Comment 2 Florian Müllner 2016-02-22 21:53:02 UTC
Mmh, do you have an example of when that happens? It seems pretty odd that a *rename* operation can be from or to "nothing".
(This seems relevant for deciding of whether to ignore the operation like in your patch, or emit the signal with "" as fallback)
Comment 3 Daniel Landau 2016-02-22 22:05:03 UTC
I'm not a hundred percent sure what exactly happened as Polari was in the background when it happened, but at the time there was some activity for me on Freenode related to joining #linux vs ##linux and some automation thereof.
Comment 4 Daniel Landau 2016-02-23 20:04:10 UTC
The only clear example I can give is a 200MB core file that I can provide on request. I tried to make sense of it but didn't get anywhere meaningful.

Emitting "" as such won't work (right?) as the data emitted is supposed to be a contact, not a string.
Comment 5 Florian Müllner 2016-02-23 20:42:07 UTC
(In reply to Daniel Landau from comment #4)
> Emitting "" as such won't work (right?) as the data emitted is supposed to
> be a contact, not a string.

Yeah, I thought we were emitting strings, sorry. I did some digging around, and it looks like we have two options:
 - empathy does indeed something similar to your patch[0], so
   we could follow that (a warning as in their code looks useful though)

 - pick up the new contact from local/remote_pending if necessary, which
   is what apparently is going on here[1]

The first option is a tad bit easier (just add a warning to your patch), but I'm a bit worried that this could mess up contact tracking we'll need to implement stuff like bug 760853. So I prefer the second option, or possibly a combination of the two:

  GPtrArray *new_handle;

  if (added->len > 0)
    new_handle = added;
  else if (local_pending->len > 0)
    new_handle = local_pending;
  else
    new_handle = remove_pending;

  if (removed->len != 1 || new_handle->len != 1)
    g_warning ("RENAMED with %u added, %u removed (expected 1, 1)",
               new_handle->len, removed->len);
  else
    g_signal_emit(...);
  break;


[0] https://git.gnome.org/browse/empathy/tree/libempathy/empathy-tp-chat.c#n844
[1] https://cgit.freedesktop.org/telepathy/telepathy-idle/tree/src/idle-muc-channel.c#n1130
Comment 6 Daniel Landau 2016-02-27 09:21:50 UTC
Reading https://telepathy.freedesktop.org/doc/book/sect.channel.groups.html I don't get the feeling that we should handle local_pending or remove_pending in any way here.
Comment 7 Daniel Landau 2016-02-27 09:42:00 UTC
Created attachment 322518 [details] [review]
Add bounds check so that the code doesn't segfault

I added a warning.
Comment 8 Florian Müllner 2016-02-27 10:09:48 UTC
OK, let's go with this ...

Attachment 322518 [details] pushed as 6524012 - Add bounds check so that the code doesn't segfault