[Select]

Programmer


Index

 

SharedCLibrary

RTS changes

The Run Time System (RTS) under the SharedCLibrary (and under ANSILib, where applicable) has changed to take into account of 32bit operating system updates, and the removal of legacy features. Whilst this work is ongoing and there will be changes to the various parts of the environment developers should note the changes which have occurred thus far.

Event handlers

With the exception of the escape event the RTS event handlers will no longer be called with notification of events from the program environment handler. None of the 3 handlers (EventProc, UnhandledEventProc and FastEventProc) will be dispatched to the language for non-Escape events for versions of the SCL Kernel after 0.19 (consult SharedCLibrary$Version$Kernel for this version). Applications wishing to handle events should claim vectors as necessary. Consult PRM 4-238 for details of the previous behaviour of these entry points.

This change rationalises the application interface, removing the legacy single-tasking event handler which is not used by any known applications under modern systems. The expectation of applications running under the Desktop means that these handlers are not reliable under the vast majority of circumstances.

Although not explicitly documented within the PRM, the event handler would, and continues to be, entered with the event code set to -1 to indicate an escape event.

There is also a system performance improvement if these handlers are not present.

Error reporting

The default signal handler which reports errors within the SCL has been updated with 5.57 (specifically Core 0.21). Where possible, the user will now be notified through a Wimp error report box. This should be more friendly. It should no longer be possible for applications to exit silently when such a fault occurs.

Prior to the error box being displayed (whether it is or not, depending on the state of the system) all printing is aborted through PDriver_AbortJob, sprite output is redirected back to the screen, and the printing output is disabled by a VDU 3.

An error box will be presented under the following circumstances :

  • The application is an initialised Wimp task, not running under TaskWindow (TaskWindow is explicitly checked for; suppliers of other similar environments should contact us for more details on how support for such environments can be provided).
  • The application is not a Wimp task, but is running in a state where it is not apparent to the user that the system is in a 'non-desktop' state. This means that the Wimp reports that it is in the 'desktop', rather than 'command line'. The implication is that a Command window would be pending, although a command window may have been explicitly disabled by the task.

The error box may, depending on the severity of the fault, report through the '<application> may have gone wrong' interface, in which case the 'Describe' button will display the error report. Where a backtrace report is possible (usually under circumstances where the heap and stack frame is known to be in a good state) a 'Postmortem' button will be offered to the user. The button will be omitted if standard error output is diverted, and the default 'Quit' button will trigger the postmortem report (which will be sent to the diverted file).

Under circumstances other than those listed above for the error box report, the action of the SCL is as if the user had requested a postmortem from the error box (if there was one).

If the 'Postmortem' button is selected (whether explicitly, implicitly because output has been diverted, or implicitly because the error box was not displayed), the system will begin its display of a postmortem. Otherwise the application will exit with an 'EXIT_FAILURE' state.

When a 'Postmortem' request is made, a command window will be opened if the system is within a 'desktop' state. Paged mode will be enabled, requiring shift to be pressed to scroll, where necessary. The error report will be repeated at the top of the output, followed by a backtrace from the last known position. The backtrace should be more reliable under certain obscure stack corruption circumstances. Decimal values within the backtrace will now be displayed left-padded, and hexadecimal value of 0 will no longer omit the leading '0x'. This change ensures that the output lines up vertically and makes reading simpler.

The backtrace itself can be extended through a service call interface. This allows other components to replace or augment the backtrace function or to provide much more advanced functionality such as full core-dumps, debugging or full-circle reporting. The interface for this is documented below.

In addition, two previously 'fatal' error reports have been made capable of providing a postmortem report.

  • The duplicate free() request would previously report a fatal error and terminate. This fault will now offer a postmortem report. Note, however, that the more serious free() of an invalid block will still terminate without backtrace.
  • Stack exhaustion may now be handled by clients with care. This has two facets to it. Firstly, it is now possible for more complex SIGSTAK signal handlers to be written. Secondly, the default handler for the stack exhaustion signal will now offer a postmortem. Note that the reports from a stack exhaustion signal will usually be very long.

Stack exhaustion recovery

When a stack exhaustion signal is raised, the system will switch to using a separate stack for its operation. This allows clients to recover from the stack exhaustion with around 4K of stack in hand. Continued operation from a stack exhaustion signal should only be performed through a longjmp() operation. Attempting to execute code which requires more than the small signal handling stack, without freeing memory for further stack space, will result in a fatal error which cannot be trapped.

Developers have been aware of the limitations on memory imposed by certain applications. In particular, the use of the weak __root_stack_size symbol to determine the initial system size may have been required to fit certain memory limitations. In order to cater for these cases, the allocation for the stack to be used during stack exhaustion handling is deferred until the first stack extension. Developers will have been aware that the stack extension meant that an indeterminate amount of space would be required for their application (clients have never been able to rely on the 4K allocation that is usually used, PRM 4-239), and thus the action of requiring further stack space indicates that both the initial stack size and any requested stack size through __root_stack_size are insufficient and thus that the original developer did not have memory limitation issues in mind.

The size of the stack allocated for handling stack exhaustion is guaranteed to be 3K or more. The actual maximum size within the current implementation will be 4K minus stack chunk overhead and Kernel and Run-Time-System interface overhead. However, as the Kernel and Run-Time-System interface overheads are not known by the developer in advance, it should be assumed that only 3K is available.

Sub-task invocation

Faulty versions of the squeeze tool (all extant versions) fail to check for sufficient memory prior to code expansion. This is partially dealt with by the UnsqueezeAIF module to ensure that enough space remains. However, all versions of the UnsqueezeAIF module prior to 0.14 contain a similar fault which can also fail to check for sufficient memory for the expansion. Version 0.30 of the SCL Kernel and later is aware of this problem and leaves sufficient space for this extraction process. The visible effect of this is that application failures, aborts, or other miscellaneous problems on return from sub-task invocation will instead result in a failed sub-task invocation with a 'Not enough memory' report.

Execution of sub-tasks should now be more reliable within a TaskWindow and in the face of background exceptions, exits or raised errors. The implementation of sub-task invocation is significantly different under version 0.34 and later of the SCL Kernel. These changes should remove the likelihood that the parent task can be exited erroneously without finalising (atexit handlers, closed files, etc). The reimplementation requires slightly more memory and therefore a smaller memory area will be available to the invoked task. Whilst the size is not defined, under present implementations the overhead required is slightly over 2K. This is in addition to the changes that were made to ensure that compressed code can be decompressed safely.

Postmortem and diagnostic services

During a post-mortem request by the SharedCLibrary (Core 0.31 and later), a number of service calls will be issued. These service calls allow clients to trap the operation of the backtrace and replace it with their own behaviour as necessary. It is expected that debugging tools, fault reporting tools, and other diagnostic components can take advantage of these to provide more information about the failures.

The service number &DC (Service_APCSBacktrace) is issued to perform a number of different operations, passing a reason code in R0. This allows modules to perform alternate operations. The reason codes allocated are currently in the current groups :

      0-15 : Backtrace, application specific operations
     16-31 : Non-application specific
     32-?  : Additional operations

The application specific operations will pass an 'application definition' structure to the routine. This is a structure intended to provide additional information about the application to the handler which it can use at its discretion. Any entry within the 'application definition' structure may have the value 0 to indicate that the relevant information is not available. The structure is as follows :

  +0 Structure format (1)
     Unrecognised formats should be ignored
  +4 Pointer to a space, or control-terminated name of the application,
     usually referred to as argv[0].
  +8 Pointer to the entire command line, where available.
 +12 Number of heap chunks present
 +16 Pointer to heap chunk descriptors array (of which the number of
     chunks present is provided at +12).
     Each heap chunk descriptor describes a region of the heap which
     has been used, with the format :
        +0 base of chunk
        +4 size of chunk
     Note that it is expected that these be low level heap chunks, and
     not the chunks returned by (for example) malloc. The format of the
     heap is not defined.
 +20 Pointer to first RTS block
 +24 Pointer to after last RTS block
Service_APCSBacktrace_BacktraceRequest (0)

An APCS Backtrace has been requested

On entry
   R0 = Service_APCSBacktrace_BacktraceRequest
   R1 = Service_APCSBacktrace
   R2 = file handle to write to, or 0 to print to screen
   R3 = pointer to initial register set (if client needs it), or NULL if
        the register set is not relevant (eg raise()'d signal)
   R4 = pointer to initialised _kernel_unwindblock structure
   R5 = pointer to name of language for pc value
   R6 = error number for reason :
               0x80800ea0 = Illegal read, R7 valid
               0x80800ea1 = Illegal write, R7 valid
   R7 = address of faulting operation
   R8 = pointer to application definition
On exit
   R1 = 0 if claimed (all backtrace completed)

This service call is issued by the SharedCLibrary (or other library implementations) to notify components that a backtrace has been requested and to allow them to replace the entire backtrace generation process. A client which is replacing the entire backtrace should claim this call; no further output will be written by the library. See the 'RegisterDump' service, below, for details of the register block format.

Service_APCSBacktrace_RegisterDump (1)

An APCS Backtrace is in progress and a register dump needs to be written

On entry
   R0 = Service_APCSBacktrace_RegisterDump
   R1 = Service_APCSBacktrace
   R2 = file handle to write to, or 0 to print to screen
   R3 = pointer to initial register set (16 or 17 words)
   R8 = pointer to application definition
On exit
   R1 = 0 if claimed (register dump displayed)

This service call is issued by the SharedCLibrary (or other library implementations) to request the display of a register dump. The register block supplied will contain either 16 or 17 words, depending on the processor mode. In 26bit mode the block will contain the normal 16 registers with the PC and PSR combined. In 32bit mode, the PC will be bare and the 17th word will contains the PSR at the time of the fault. The register block will have been modified to force the important APCS registers to be their USR mode equivalents. That is, R10 (sl), R11 (fp), R13 (sp), and R14 (lr) will contain the values they last took when executing USR mode code. All other registers should contain their values at the time of the abort. Clients which wish to replace the regular register set display should claim the service.

Service_APCSBacktrace_BacktraceDump (2)

An APCS Backtrace is in progress and the backtrace needs to be written

On entry
   R0 = Service_APCSBacktrace_BacktraceDump
   R1 = Service_APCSBacktrace
   R2 = file handle to write to, or 0 to print to screen
   R3 = pointer to initial register set (if client needs it), or NULL
         if the register set is not relevant (eg raise()'d signal)
   R4 = pointer to initialised _kernel_unwindblock structure
   R5 = pointer to name of language for pc value
   R8 = pointer to application definition
On exit
   R1 = 0 if claimed (backtrace printed)

This service call is issued by the SharedCLibrary (or other library implementations) to request the display of a backtrace. Clients should display the relevant backtrace in whatever form they require, and then claim the service.

Service_APCSBacktrace_DecodeName (16)

Request to decode a function name into a displayable format

On etry
   R0 = Service_APCSBacktrace_DecodeName
   R1 = Service_APCSBacktrace
   R2 = pointer to string to decode
   R3 = pointer to language name, or NULL if not known
On exit
   R1 = 0 if claimed (name was translated)
   R2 = pointer to decoded string (may be static until next call), if claimed

This service may be issued by any client during a backtrace operation, a debug operation, or similar, to decode a function name into a printable format. This is intended for use with 'mangled' function names where the function name used for linking or embedded within the executable is not representative of the user-specified function name. This can be used for languages such as C++ with CFront, where the name supplied can be decoded into a fully specified C++ name. Clients providing replacement names should write a decoded string into a private buffer and return this buffer to the client. The buffer should be readable in USR mode.

Service_APCSBacktrace_MiniDumpCreated (32)

Notification to clients that a MiniDump has been created

On entry
   R0 = Service_APCSBacktrace_MiniDumpCreated
   R1 = Service_APCSBacktrace
   R2 = pointer to filename of MiniDump file
   R3 = pointer to executable name
On exit
   R1 = 0 if MiniDump has been dealt with

This service is generated by the MiniDump module after it has dealt with a Backtrace request and generated a Diagnostic Data file from it. Clients may use this service to perform automated operations on the diagnostic data, such as full circle reporting. It is strongly recommended that such clients pay attention to any security issues which might be raised by such reports. If unclaimed, the MiniDump module will perform the default action. At the present time, this means that the dump directory will be opened.

Locale operations

The setlocale function has been updated to correct problems with non-existent territory names used as locales. Under versions of the Core prior to 0.34 valid territory names would be accepted regardless of whether they were loaded. This would result in character type issues (eg functions referenced from <ctype.h> and other functions which rely on the tables used by those functions). The Core will now check for the existence of the territory named in the setlocale call before attempting to use it.


This documentation is copyright 3QD Developments Ltd 2013 and may not be reproduced or published in any form without the copyright holders permission. RISC OS is subject to continuous development and improvement as such all information is reproduced by 3QD Developments Ltd in good faith and is believed to be correct at the time of publication E&OE. 3QD Developments Ltd cannot accept any liability for any loss or damage arising from the use of any information provided as part of the RISC OS Documentation.

HTML document version 1.03 3rd November 2015