Huge multi-threading violations in freetype

Bug #1199571 reported by Brad Figg
This bug affects 219 people
Affects Status Importance Assigned to Milestone
FreeType
Fix Released
Critical
freetype (Ubuntu)
Fix Released
Critical
Marco Trevisan (Treviño)
Trusty
Fix Released
High
Marco Trevisan (Treviño)

Bug Description

SRU Justification
[Impact]
Users of freetype in multithreaded environments can experiences crashes.

[Test Case]
https://github.com/behdad/ftthread

[Regression Potential]
Fix is in upstream, it is in Vivid.

--

Fresh dist-upgrade; brought up the dash, typed "term"; single clicked on the terminal app and _bang_.

ProblemType: Crash
DistroRelease: Ubuntu 13.10
Package: unity 7.0.2+13.10.20130705.1-0ubuntu1
ProcVersionSignature: Ubuntu 3.10.0-2.10-generic 3.10.0
Uname: Linux 3.10.0-2-generic x86_64
ApportVersion: 2.10.2-0ubuntu4
Architecture: amd64
Date: Tue Jul 9 17:47:10 2013
EcryptfsInUse: Yes
ExecutablePath: /usr/bin/compiz
InstallationDate: Installed on 2013-06-06 (33 days ago)
InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
MarkForUpload: True
ProcCmdline: compiz
ProcEnviron:
 LANGUAGE=en_US
 PATH=(custom, user)
 XDG_RUNTIME_DIR=<set>
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SegvAnalysis:
 Segfault happened at: 0x7ff3b4ed7a10: mov %rdx,0x10(%rax)
 PC (0x7ff3b4ed7a10) ok
 source "%rdx" ok
 destination "0x10(%rax)" (0x00000010) not located in a known VMA region (needed writable region)!
 Stack memory exhausted (SP below stack segment)
SegvReason: writing NULL VMA
Signal: 11
SourcePackage: unity
StacktraceTop:
 ?? () from /usr/lib/x86_64-linux-gnu/libfreetype.so.6
 ?? () from /usr/lib/x86_64-linux-gnu/libfreetype.so.6
 ?? () from /usr/lib/x86_64-linux-gnu/libfreetype.so.6
 ?? () from /usr/lib/x86_64-linux-gnu/libfreetype.so.6
 FT_Load_Glyph () from /usr/lib/x86_64-linux-gnu/libfreetype.so.6
Title: compiz crashed with SIGSEGV in FT_Load_Glyph()
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo

Related branches

Revision history for this message
Brad Figg (brad-figg) wrote :
information type: Private → Public
Revision history for this message
Apport retracing service (apport) wrote :

StacktraceTop:
 af_latin_hints_compute_edges (dim=<optimized out>, hints=<optimized out>) at /build/buildd/freetype-2.4.12/freetype-2.4.12/src/autofit/aflatin.c:1271
 af_latin_hints_detect_features (hints=<optimized out>, dim=<optimized out>) at /build/buildd/freetype-2.4.12/freetype-2.4.12/src/autofit/aflatin.c:1411
 af_latin_hints_apply (hints=0x1953d58, outline=0x1953ee0, metrics=0x7ff37002c950) at /build/buildd/freetype-2.4.12/freetype-2.4.12/src/autofit/aflatin.c:2381
 af_loader_load_g (loader=loader@entry=0x1953d40, scaler=scaler@entry=0x7ff383feb790, glyph_index=glyph_index@entry=33, load_flags=load_flags@entry=68097, depth=depth@entry=0) at /build/buildd/freetype-2.4.12/freetype-2.4.12/src/autofit/afloader.c:184
 af_loader_load_glyph (load_flags=68097, gindex=<optimized out>, face=<optimized out>, module=<optimized out>) at /build/buildd/freetype-2.4.12/freetype-2.4.12/src/autofit/afloader.c:553

Revision history for this message
Apport retracing service (apport) wrote : Stacktrace.txt
Revision history for this message
Apport retracing service (apport) wrote : ThreadStacktrace.txt
Changed in unity (Ubuntu):
importance: Undecided → Medium
summary: - compiz crashed with SIGSEGV in FT_Load_Glyph()
+ compiz crashed with SIGSEGV in af_latin_hints_compute_edges()
tags: removed: need-amd64-retrace
Stephen M. Webb (bregma)
Changed in unity (Ubuntu):
status: New → Triaged
Revision history for this message
In , Marek Kašík (mkasik) wrote :

Created attachment 85352
Make usage of freetype thread safe

Current freetype backend is not thread safe. It can cause segmentation fault when threads are not properly handled by applications which use cairo (see https://bugzilla.redhat.com/show_bug.cgi?id=678397 and its duplicates).

Attached patch tries to fix this problem by creating FT_Library object for each thread. This is recommended solution by freetype (http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/include/freetype/freetype.h#n1684).

It adds a hash table to which FT_Library is added if a new thread needs one. Thread IDs are used as keys for this table.

Marek

Revision history for this message
In , Freedesktop (freedesktop) wrote :

Unfortunately that FreeType "recommendation" is red herring. First, people are free to pass around FT_Face among threads, and second, we will be leaking stuff this way, unless we add proper TLS support.

At any rate. I suggest we use cairo for all glyph rasterizer instead.

Revision history for this message
In , Freedesktop (freedesktop) wrote :

Chris, any chance you have some time to think about this?

tags: added: trusty
tags: added: bugpattern-needed
Revision history for this message
Sebastien Bacher (seb128) wrote : Re: compiz crashed with SIGSEGV in af_latin_hints_compute_edges()
Changed in unity (Ubuntu):
importance: Medium → High
information type: Public → Public Security
information type: Public Security → Public
Revision history for this message
Alexey Borzenkov (snaury) wrote :

I looked at my coredump on trusty (it crashed for me twice already!) with gdb and I see evidence that this crash might be due to multithreading issues. The reason is that when inspecting memory at %rdx (edge) and I see that a pointer at %rdx+0x48 (edge->first) doesn't match with a pointer in %rcx (edge->first taken at the start of the loop). Besides, freetype code can never produce %rax == 0 at the crash location, this would only happen if af_latin_hints_compute_edges is called concurrently on the same hints structure, which causes pointers to change for segments that are processed in another thread. Best of luck, ThreadStackTrace.txt shows exactly that, two threads are in af_latin_hints_compute_edges with same parameters!

Now the real question is which application or library is actually violating thread-safety here...

Revision history for this message
Alexey Borzenkov (snaury) wrote :

I looked at the implementation of cairo-ft-font.c and it seems that there are huge multi-threading violations in cairo. The reason is that FreeType API documentation clearly states:

In multi-threaded applications, make sure that the same FT_Library object or any of its children doesn't get accessed in parallel.

Cairo initializes FT_Library for its font map and there's a lock for that, however it's only used for font map manipulations, the actual FT_ library calls are completely unprotected with that lock, although they should be! What adds to the injury is that cairo-ft-font.c even has this comment on one of its functions:

You must be careful when using this function in a library or in a
threaded application, because freetype's design makes it unsafe to
call freetype functions simultaneously from multiple threads, (even
if using distinct FT_Face objects)

Too bad they don't follow their own advice, and no wonder compiz is crashing like that. Can somebody contact upstream about this issue and make them aware of it?

Revision history for this message
Launchpad Janitor (janitor) wrote :

Status changed to 'Confirmed' because the bug affects multiple users.

Changed in cairo (Ubuntu):
status: New → Confirmed
affects: cairo → cairo (Ubuntu)
Revision history for this message
Shahar Or (mightyiam) wrote :

Brilliant work, Alexey.

Revision history for this message
Launchpad Janitor (janitor) wrote :

Status changed to 'Confirmed' because the bug affects multiple users.

Changed in cairo (Ubuntu):
status: New → Confirmed
Changed in unity (Ubuntu):
status: Triaged → Invalid
Revision history for this message
Steve Langasek (vorlon) wrote :

This crash happened with libfreetype6 2.4.12-0ubuntu1 installed. Is it still reproducible with 2.5.2-1ubuntu2, the version in Ubuntu 14.04?

Changed in freetype (Ubuntu):
status: New → Incomplete
Revision history for this message
Steve Langasek (vorlon) wrote :

actually, based on the previous comment it looks lke it almost certainly would still occur with new freetype since these interfaces are not thread-safe; seems that this need to be fixed in cairo (or in compiz applying its own mutexes).

Revision history for this message
Alexey Borzenkov (snaury) wrote :

Steve, the latest duplicate shows 2.5.2-1ubuntu2:

https://bugs.launchpad.net/bugs/1304763

Is it possible to get some input from cairo maintainers?

Revision history for this message
Sebastien Bacher (seb128) wrote :

> Is it possible to get some input from cairo maintainers?

There is not really an "Ubuntu cairo maintainer", the bug should be report to upstream on https://bugs.freedesktop.org/enter_bug.cgi?product=cairo

Changed in freetype (Ubuntu):
importance: Undecided → High
Changed in cairo (Ubuntu):
importance: Undecided → High
tags: added: utopic
no longer affects: unity (Ubuntu)
no longer affects: freetype (Ubuntu)
Revision history for this message
In , Alberto Salvia Novella (es20490446e) wrote :

I looked at the implementation of cairo-ft-font.c and it seems that there are huge multi-threading violations in cairo. The reason is that FreeType API documentation clearly states:

In multi-threaded applications, make sure that the same FT_Library object or any of its children doesn't get accessed in parallel.

Cairo initializes FT_Library for its font map and there's a lock for that, however it's only used for font map manipulations, the actual FT_ library calls are completely unprotected with that lock, although they should be! What adds to the injury is that cairo-ft-font.c even has this comment on one of its functions:

You must be careful when using this function in a library or in a
threaded application, because freetype's design makes it unsafe to
call freetype functions simultaneously from multiple threads, (even
if using distinct FT_Face objects)

Revision history for this message
Alberto Salvia Novella (es20490446e) wrote :

It severely affects packages beyond the one that causes the flaw.

Changed in cairo (Ubuntu):
importance: High → Critical
status: Confirmed → Triaged
summary: - compiz crashed with SIGSEGV in af_latin_hints_compute_edges()
+ Huge multi-threading violations in cairo
Changed in libcairo:
importance: Unknown → Critical
status: Unknown → Confirmed
Revision history for this message
In , Freedesktop (freedesktop) wrote :

*** Bug 81874 has been marked as a duplicate of this bug. ***

Changed in libcairo:
importance: Critical → Unknown
status: Confirmed → Unknown
Revision history for this message
In , Freedesktop (freedesktop) wrote :

Looks like copying thread-local storage macros from pixman-compiler.h and using them to use per-thread FT_Library might easily get most of this resolved. I can take a look if no one else steps in.

Changed in libcairo:
importance: Unknown → Critical
status: Unknown → Confirmed
tags: added: vivid
Revision history for this message
In , Marek Kašík (mkasik) wrote :

(In reply to Behdad Esfahbod from comment #4)
> Looks like copying thread-local storage macros from pixman-compiler.h and
> using them to use per-thread FT_Library might easily get most of this
> resolved. I can take a look if no one else steps in.

Hi Behdad,

had you time to look at this already?

Regards

Marek

Revision history for this message
In , Freedesktop (freedesktop) wrote :

So, I ended up trying to fix this in FreeType. Have made huge progress so far. Here's a tree:

  https://github.com/behdad/freetype/commits/ftthread

And here's a standalone test:

  https://github.com/behdad/ftthread

There's still some more work to do. I can't yet understand this crash for example:

https://bugzilla.redhat.com/show_bug.cgi?id=1165471

Revision history for this message
In , Freedesktop (freedesktop) wrote :

I now have a complete patchset up here:

  https://github.com/behdad/freetype/commits/ftthread

Will be sending upstream soon.

Revision history for this message
In , Freedesktop (freedesktop) wrote :

Done. See:
http://<email address hidden>/msg06758.html

affects: libcairo → freetype
affects: cairo (Ubuntu) → freetype (Ubuntu)
Revision history for this message
In , Freedesktop (freedesktop) wrote :

Patchset is now upstream in FreeType.

Revision history for this message
In , Marek Kašík (mkasik) wrote :

(In reply to Behdad Esfahbod from comment #9)
> Patchset is now upstream in FreeType.

Thank you very much for all the effort you've put into this!

Changed in freetype (Ubuntu):
assignee: nobody → Marco Trevisan (Treviño) (3v1n0)
status: Triaged → In Progress
summary: - Huge multi-threading violations in cairo
+ Huge multi-threading violations in freetype
Changed in freetype:
status: Confirmed → Fix Released
Revision history for this message
Shahar Or (mightyiam) wrote :

Yes, thank you.

Revision history for this message
Tarjei Huse (tarjei-huse) wrote :

Will this fix be released for 14.04, or do I have to wait for 15.04?

Revision history for this message
Marco Trevisan (Treviño) (3v1n0) wrote :

Tarjei: as always it happens with important bugs, they are first released to the development version and after that it has been verified there, it will be backported to trusty as well through an SRU (code in place for that is already there).

Revision history for this message
Launchpad Janitor (janitor) wrote :

This bug was fixed in the package freetype - 2.5.2-2ubuntu2

---------------
freetype (2.5.2-2ubuntu2) vivid; urgency=medium

  * Added patchset to fix multithread violations, LP: #1199571
    - debian/patches-freetype/multi-thread-violations.patch
 -- Marco Trevisan (Trevino) <email address hidden> Fri, 23 Jan 2015 03:23:18 +0100

Changed in freetype (Ubuntu):
status: In Progress → Fix Released
Revision history for this message
Brian Murray (brian-murray) wrote :

This bug report is missing Stable Release Update information as discussed at http://wiki.ubuntu.com/StableReleaseUpdates. A test case isn't strictly necessary for this bug report as there is at least one crash report at the Ubuntu Error Tracker we can use to make sure the version of the package being SRU'ed isn't appearing there.

Changed in freetype (Ubuntu Trusty):
status: New → Triaged
importance: Undecided → Critical
importance: Critical → High
Revision history for this message
Chris J Arges (arges) wrote : Please test proposed package

Hello Brad, or anyone else affected,

Accepted freetype into trusty-proposed. The package will build now and be available at http://launchpad.net/ubuntu/+source/freetype/2.5.2-1ubuntu2.3 in a few hours, and then in the -proposed repository.

Please help us by testing this new package. See https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to enable and use -proposed. Your feedback will aid us getting this update out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug, mentioning the version of the package you tested, and change the tag from verification-needed to verification-done. If it does not fix the bug for you, please add a comment stating that, and change the tag to verification-failed. In either case, details of your testing will help us make a better decision.

Further information regarding the verification process can be found at https://wiki.ubuntu.com/QATeam/PerformingSRUVerification . Thank you in advance!

description: updated
Changed in freetype (Ubuntu Trusty):
status: Triaged → Fix Committed
tags: added: verification-needed
Revision history for this message
Marco Trevisan (Treviño) (3v1n0) wrote :

Everything work as expected with new freetype 2.5.2-1ubuntu2.3

This is what was happening with freetype 2.5.2-1ubuntu2.2
time while ./ftthread /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-R.ttf 40 10000 150 4; do echo -n '.'; done
FT_Load_Glyph failed: FT_Err_Invalid_Reference: invalid reference.
Segmentation fault (core dump created)

real 0m0.376s

This is instead what I'm getting with 2.5.2-1ubuntu2.3:

time while ./ftthread /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-R.ttf 40 10000 150 4; do echo -n '.'; done
...........................................

real 32m0.545s

tags: added: verification-done
removed: verification-needed
Changed in freetype (Ubuntu Trusty):
assignee: nobody → Marco Trevisan (Treviño) (3v1n0)
Revision history for this message
Launchpad Janitor (janitor) wrote :

This bug was fixed in the package freetype - 2.5.2-1ubuntu2.3

---------------
freetype (2.5.2-1ubuntu2.3) trusty; urgency=medium

  * Added patchset to fix multithread violations, LP: #1199571
    - debian/patches-freetype/multi-thread-violations.patch
 -- Marco Trevisan (Trevino) <email address hidden> Fri, 23 Jan 2015 03:38:04 +0100

Changed in freetype (Ubuntu Trusty):
status: Fix Committed → Fix Released
Revision history for this message
Adam Conrad (adconrad) wrote : Update Released

The verification of the Stable Release Update for freetype has completed successfully and the package has now been released to -updates. Subsequently, the Ubuntu Stable Release Updates Team is being unsubscribed and will not receive messages about this bug report. In the event that you encounter a regression using the package from -updates please report a new bug using ubuntu-bug and tag the bug report regression-update so we can easily find any regressions.

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.