Opened on 12/06/2016 at 02:49:07 PM

Closed on 07/27/2017 at 07:54:48 AM

#4711 closed defect (fixed)

Custom thread class leaks resources on Windows

Reported by: eric@adblockplus.org Assignee: eric@adblockplus.org
Priority: P3 Milestone:
Module: Libadblockplus Keywords:
Cc: sergz, fhd Blocked By:
Blocking: Platform: Unknown / Cross platform
Ready: no Confidential: no
Tester: Unknown Verified working: no
Review URL(s):

https://codereview.adblockplus.org/29367003/
https://codereview.adblockplus.org/29498570/

Description (last modified by eric@adblockplus.org)

Background

libadblockplus is using a custom thread class for threading, alternating between native Windows threads and pthread, for Android. This was done because of the immaturity of the development environments at the time it was originally written. In the Windows implementation, the thread constructor system-calls CreateThread and discards the thread handle it returns. As a result, it's impossible to call CloseHandle and recover thread resources. In particular, the thread stack, allocated with process virtual memory, leaks with each thread created.

From MSDN:

The number of threads a process can create is limited by the available virtual memory. By default, every thread has one megabyte of stack space.
[...]
The thread object remains in the system until the thread has terminated and all handles to it have been closed through a call to CloseHandle.

What to change

We now have C++11 threads available and it's time to clear out the legacy code. There's no good reason to improve the old facility, as it offered nothing not already in the standard library.

The solution is to eliminate files Thread.h and Thread.cpp, replacing all they provide with standard C++11 facilities.

Attachments (0)

Change History (9)

comment:1 Changed on 12/06/2016 at 02:49:34 PM by eric@adblockplus.org

  • Owner set to eric@adblockplus.org

comment:2 Changed on 12/06/2016 at 03:03:25 PM by sergz

Actually, I think it's not too important to simply replace our Thread by std::thread. I think removing of Thread can be done after #3595 because it won't be used anymore.

comment:3 follow-up: Changed on 12/06/2016 at 03:36:49 PM by eric@adblockplus.org

Replacing the behavior of setTimeout (mentioned in #3595) is going to require a thread around to wake periodically and do something. The last thing we want is to be mixing our old thread classes with new ones. I didn't mark a dependency, but I don't see a better way of making incremental progress than first clearing out the legacy code.

The issue of detaching threads is separate from which threads we use. One step at a time.

Last edited on 12/06/2016 at 03:38:03 PM by eric@adblockplus.org

comment:4 in reply to: ↑ 3 ; follow-up: Changed on 12/06/2016 at 03:58:22 PM by sergz

Replying to eric@…:

Replacing the behavior of setTimeout (mentioned in #3595) is going to require a thread around to wake periodically and do something.

If we use e.g. libuv then we will likely not use std::thread nor our Thread class. BTW, I have already implementation of timers with only one instance of std::thread and timers in std::priority_queue but I'm not elaborating it because firstly we need to make a decision how it should be.

The last thing we want is to be mixing our old thread classes with new ones. I didn't mark a dependency, but I don't see a better way of making incremental progress than first clearing out the legacy code.

I don't see a big issue if we use our Thread and std::thread in different parts of application. I think it would be a better way if we firstly fix what create problems (e.g. Lazy* classes don't allow to run many tests and detached threads create race conditions) and then just remove Thread as a dead code.

The issue of detaching threads is separate from which threads we use. One step at a time.

Yes, but simply replacing of Thread by std::thread does not give a benefit, anyway that code will be removed after #3595.

comment:5 Changed on 12/07/2016 at 05:09:13 PM by eric@adblockplus.org

  • Description modified (diff)
  • Review URL(s) modified (diff)
  • Status changed from new to reviewing

comment:6 in reply to: ↑ 4 Changed on 12/07/2016 at 05:19:45 PM by eric@adblockplus.org

Replying to sergz:

Yes, but simply replacing of Thread by std::thread does not give a benefit, anyway that code will be removed after #3595.

Actually, it does. I realized that the old code was leaking resources. Changed the description to add it.

The changeset I've posted for review separates out multiple issues that had been combined: task definition, scheduling, and memory allocation. These changes will make any subsequent rewrite that much simpler.

Writing temporary code in the process of a rewrite is just part of the territory. It's not wasteful but rather speeds incremental change along.

Replying to eric@…:
If we use e.g. libuv then we will likely not use std::thread nor our Thread class. BTW, I have already implementation of timers with only one instance of std::thread and timers in std::priority_queue but I'm not elaborating it because firstly we need to make a decision how it should be.

I am not convinced that libuv gets us much on balance. The larger issue is that JavaScript is rather hostile to multithreading. Since it's JS code we're running now, we either (1) keep running JS with known, existing behavior or (2) we rewrite it and induce a testing burden to ensure identical behavior between libadblockplus and adblockpluscore.

In either case, the issue of libuv is really beyond the scope of this issue. This issue is to track a small change toward a larger goal.

comment:7 Changed on 12/09/2016 at 06:53:11 PM by eric@adblockplus.org

  • Description modified (diff)
  • Summary changed from Replace custom thread class with C++11 <thread> to Custom thread class leaks resources on Windows
  • Type changed from change to defect

I've changed the title of this ticket, designated it as a defect, and rewritten the description, all to focus on what looks like a serious memory leak with the old thread library. The solution doesn't change, which is simply to upgrade. The priority to land a fix for this, however, should be higher than a maintenance rewrite, since this defect could easily lead to long-running processes containing libadblockplus to behave poorly.

comment:8 Changed on 07/26/2017 at 02:41:05 PM by sergz

  • Review URL(s) modified (diff)

comment:9 Changed on 07/27/2017 at 07:54:48 AM by sergz

  • Resolution set to fixed
  • Status changed from reviewing to closed

Add Comment

Modify Ticket

Change Properties
Action
as closed .
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from eric@adblockplus.org.
 
Note: See TracTickets for help on using tickets.