discuss-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: crash upon startup in GWorkcenter, Recycler, ProjectCenter and Gorm


From: Josh Freeman
Subject: Re: crash upon startup in GWorkcenter, Recycler, ProjectCenter and Gorm
Date: Fri, 29 Dec 2017 00:56:07 -0500


On Dec 28, 2017, at 9:25 AM, Richard Frith-Macdonald wrote:

On 28 Dec 2017, at 14:00, Fred Kiefer <fredkiefer@gmx.de> wrote:
First a thank you to both Josh and Richard for gathering so much information on this issue and to Richard for the quick workaround. I hope this lets simple GNUstep applications run on systems with non-fragile ivars. But it is definitely not the final solution for the issue. I was hoping for David to provide more insight into the working of the non-fragile code. When ever a class gets loaded the compiler or the runtime have to provide information about the ivar layout and this seems to be off for the case where the class comes from a different compilation unit and has a structure within. (or at least this is what the current findings suggest) Most likely this information comes from the compiler, as the runtime itself seems to have the correct information. But according to Josh’s finding this information isn’t just hard coded, it seems to change even without changes to the compilation unit.

The decision we now have to make is whether this unresolved issue is bad enough to block a GNUstep base release? I would suggest to go ahead with that, but if anybody has a different view I am fine with that.

Yes, I forgot to mention; when using Josh Freeman's debug outpupt (priinting ivar offsets as returned by the runtime and as produced by the compiler), I tried running a pure base tool as well as a gui test. The behavior was consistently different in those two cases: using a pure base tool, the offest given by the compiler for th->_gcontext matches that produced by the funtime functions, but from a gui tool it didn't. In both cases, this is definitely with the code that prints the debug compiled into the base library, so it seems something about linking the gui library is causing the compiler generated code to misbehave. Unfortunately I don't know how to figure out what might be making the difference.


When using the nonfragile ABI, the compiler emits code that calculates ivar offsets using global variables - there's a global for each ivar, using the naming convention:
__objc_ivar_offset_[CLASS_NAME].[IVAR_NAME]

For example, NSThread's _gcontext has a corresponding global in the emitted code named, "__objc_ivar_offset_NSThread._gcontext".

Nonfragile-ABI-compiled code calculates the address of an object's ivar by adding the value of the ivar's __objc_ivar_offset* global to the object's address.


The libobjc2 runtime keeps track of a class' ivar offsets in two places, both found in the class' objc_class runtime structure:

1) The first place ivar offsets are stored are in the class struct's 'ivars' member; Within 'ivars' (type: 'struct objc_ivar_list') is an array of ivars (type: 'struct objc_ivar'); The objc_ivar struct contains 3 members describing an instance variable: name, type (encoding), & offset. When using the runtime's API to get an ivar offset (eg. offset = ivar_getOffset(class_getInstanceVariable([NSThread class], "_gcontext")); ), this is where the offset value comes from: an ivar struct's offset member, from the ivar list inside the class struct's 'ivars'.

2) The second place ivar offsets are stored are in the objc_class struct's 'ivar_offsets' member (type: int**). 'ivar_offsets' is a table of int pointers, one pointer for each ivar, ordering matches the ivars' order in the class structure. (For example, _gcontext is NSThread's 12th ivar, so the address of its global, __objc_ivar_offset_NSThread._gcontext, is found in NSThread's (class struct's) ivar_offsets[11]; Changing the value of NSThread's ivar_offsets[11] at runtime will change the value returned by the compiled code for the statement: &thread->_gcontext; (or any other code that accesses _gcontext).


When the objc2 runtime loads a class, it calls the function, objc_compute_ivar_offsets(), in ivar.c, which walks the array of ivars in the objc_class struct's 'ivars' member, calculates each ivar's correct offset, saves the calculated offset value in the ivar struct, and (after checking for the nonfragile-abi) also copies the ivar struct's offset value to the corresponding entry in the class struct's 'ivar_offsets' table.

However, the previously-posted diagnostic patches show that the ivar offset values from the ivars structs can be different from the offset values found in the same class' 'ivar_offsets' table.

Turns out the reason for this is because the class structs' 'ivar_offsets' table pointers can (sometimes? always?) be set up incorrectly so that the table actually doesn't contain the addresses of __objc_ivar_offset* globals. (Oddly, the values pointed to by the table do seem to correspond to the compiler's initial guesses for the ivar offsets - though these guesses seem to be wrong when the members are struct types - so it seems as though the table pointers are pointing to a copy of the globals' initial state).

If the 'ivar_offsets' table pointers are incorrect, changing the referenced values will have no effect on the values of the __objc_ivar_offset* globals, or on addresses calculated when accessing ivars - the addresses will instead be calculated using the globals' initial values (containing the sometimes-incorrect compiler guesses).


   Attached are two files:

libobjc2_ivar_offsets_mismatch_fix.diff:
Patch for libobjc2 that adds functionality in objc_compute_ivar_offsets() to make sure the current ivar's 'ivar_offsets' table entry points to the address of its corresponding global; The global's address is found by a manual lookup of the __objc_ivar_offset* symbol, using the dynamic linker's dlsym() function.
   This patch has so far only been tested on Ubuntu 16.04 32bit.

install-gnustep-ubuntu-with-offsets-fix.sh:
The Ubuntu '16.04, 16.10, & 17.04' install script from the wiki, with four changes: 1) 'PROMPT' variable is set to false (to avoid having to press <RETURN> after each step) 2) Removed the script's workaround for the ivar-offset issue (so it builds using the current version of gnustep-make instead of an old version) 3) Updated the flags passed to gnustep-make's configure (both times) to replace the obsolete --enable-objc-nonfragile-abi flag with --with- library-combo=ng-gnu-gnu (the obsolete flag was causing the compiler to emit fragile-abi code) 4) Added a command to apply the above patch to the libobjc2 sources before building them (the script looks for the libobjc2_ivar_offsets_mismatch_fix.diff patch in the same directory as the script itself)


After running this script on a clean, up-to-date Ubuntu 16.04 32bit VM, all gui tests pass, apps run fine with no segfaults on startup, and running with the diagnostic patch installed (base only) shows that NSThread members are accessed correctly, using the same offsets as the runtime's ivar structs:

BASE:
 class_getIvarLayout([NSThread class])
   _target : 4
   _arg : 8
   _selector : 12
   _name : 16
   _stackSize : 20
   _cancelled : 24
   _active : 25
   _finished : 26
   _exception_handler : 28
   _thread_dictionary : 32
   _autorelease_vars : 44
   _gcontext : 64
   _runLoopInfo : 68

 Current thread from GSCurrentThread(): 0x813b114
   thread->_target: 0x813b118 (4)
   thread->_arg: 0x813b11c (8)
   thread->_selector: 0x813b120 (12)
   thread->_name: 0x813b124 (16)
   thread->_stackSize: 0x813b128 (20)
   thread->_cancelled: 0x813b12c (24)
   thread->_active: 0x813b12d (25)
   thread->_finished: 0x813b12e (26)
   thread->_exception_handler: 0x813b130 (28)
   thread->_thread_dictionary: 0x813b134 (32)
   thread->_autorelease_vars: 0x813b140 (44)
   thread->_gcontext: 0x813b154 (64)
   thread->_runLoopInfo: 0x813b158 (68)


Cheers,

Josh

Attachment: libobjc2_ivar_offsets_mismatch_fix.diff
Description: Binary data

 

Attachment: install-gnustep-ubuntu-with-offsets-fix.sh
Description: Binary data




reply via email to

[Prev in Thread] Current Thread [Next in Thread]