Bug 5277 - crashes in application title matching
Status: RESOLVED FIXED
Alias: None
Product: Openbox
Classification: Unclassified
Component: general
Version: 3.5.0
Hardware: PC FreeBSD
: P1 critical
Assignee: Dana Jansens
QA Contact:
URL:
: 4783 5412
Depends on:
Blocks:
 
Reported: 2011-10-22 09:40 EDT by kron24
Modified: 2013-06-27 13:08:32 EDT
5 users (show)

See Also:



Description kron24 2011-10-22 09:40:21 EDT
I have in rc.xml:

...
<applications>
  <application title="Mozilla Firefox"><maximized>Vertical</maximized></application>
...

When I start some programs (esp. java GUI) or starting a java applet in a web browser then Openbox crashes with SIGSEGV. 100% reproducible.

I played a bit with the source code and found a dirty fix (I really don't understand the logic here, just found a dereferenced NULL):

diff -Naur work-orig/openbox-3.5.0/openbox/client.c work/openbox-3.5.0/openbox/client.c
--- openbox/client.c    2011-08-01 22:14:58.000000000 +0200
+++ openbox/client.c    2011-10-22 14:59:56.000000000 +0200
@@ -883,7 +883,7 @@
                  !g_pattern_match(app->role,
                                   strlen(self->role), self->role, NULL))
             match = FALSE;
-        else if (app->title &&
+        else if (app->title && self->title &&
                  !g_pattern_match(app->title,
                                   strlen(self->title), self->title, NULL))
             match = FALSE;
Comment 1 Dana Jansens 2011-10-22 11:55:48 EDT
At a glance that looks like the exactly right solution. Thanks!
Comment 2 David Biesack 2012-01-24 09:55:14 EST
*** Bug 5412 has been marked as a duplicate of this bug. ***
Comment 3 David Biesack 2012-01-24 09:57:27 EST
Check out the patch for bug 5277 as it may cover additional NULL pointer
dereferences in client.c that the patch for this bug do not fix.
Comment 4 Julian Ospald (hasufell) 2012-06-01 07:45:28 EDT
Is there any progress on this?

The proposed patch produces weird behavior for me forcing subwindows of that java swing app fullscreen and such.
Comment 5 David Biesack 2012-06-01 08:05:21 EDT
sorry, I should have said, see the patch I submitted for Bug 5412 which fixes this problem for me.
Comment 6 Julian Ospald (hasufell) 2012-06-02 14:52:41 EDT
(In reply to comment #5)
> sorry, I should have said, see the patch I submitted for Bug 5412 which fixes
> this problem for me.

I applied that one and it has those issues.
Comment 7 Dana Jansens 2012-09-30 23:29:29 EDT
Thanks for the report, figured out it was a case of a title per-app rule in this case. But the window's title wasn't set up for "fake-managing" a window to answer questions, something that Java apps make use of.

http://git.io/4vXOfQ
Comment 8 Dana Jansens 2012-09-30 23:48:49 EDT
*** Bug 4783 has been marked as a duplicate of this bug. ***
Comment 9 Clay Barnes 2012-10-01 00:16:52 EDT
Thanks for the fix!

I'd completely forgotten about the issue after I stopped seeing it as a side-effect of another change I made long ago---disabling Java in all browsers in response to the repeated vulnerabilities it introduced through applets.  Finally the arbitrary limit on Java update frequency (including emergency patches!) produced a positive outcome, eh?  I can re-enable it to test the fix if needed, but I assume others can do that instead.
Comment 10 Julian Ospald (hasufell) 2012-10-02 07:47:48 EDT
This did not solve it for me. Tested with netbeans and this rc.xml https://gist.github.com/3818411
Comment 11 kron24 2012-10-02 11:41:22 EDT
(In reply to comment #7)
> Thanks for the report, figured out it was a case of a title per-app rule in
> this case. But the window's title wasn't set up for "fake-managing" a window to
> answer questions, something that Java apps make use of.
> 
> http://git.io/4vXOfQ

I applied this patch instead of mine and it does fix the issue for me. Thanks!

Oli
Comment 12 julio del valle 2012-10-05 14:08:50 EDT
using ubuntu 12.04 with 3.5.0-2ubuntu2 package. Not sure if started with recently firefox updates but with FF15.0.1 all websites with java applets on them started crashing openbox. Whether using icedtea plugin or oracle's one.

openbox compiled from github/master still problem persist. Applied http://git.io/4vXOfQ patch resolved it.
Comment 13 Julian Ospald (hasufell) 2012-10-05 14:22:03 EDT
right, I was using the wrong branch

after checking out branch "work" where the patch is applied it worked. thanks
Comment 14 David Biesack 2013-06-27 13:08:32 EDT
This is marked RESOLVED FIXED in Version 3.5.0 but I'm running 3.5.0 now
(XUbuntu 13.04) and the problem still occurs - any Java GUI app that
I run will crash openbox. 

where is the fixed version? Please release a working build
that the Ubuntu (and other) repos can use.