library = MakeLibrary(vectors, structure, init, dSize, segList)
D0 A0 A1 A2 D0 D1
struct Library *MakeLibrary
(APTR,struct
InitStruct *,APTR,ULONG,BPTR);
This function is used for constructing a library vector and data area. The same call is used to constructing devices. Space for the library is allocated from the system's free memory pool. The data portion of the library is initialized. The value of the init parameter may point to a library specific entry point.
Starting with V36, the library base is longword adjusted. The lib_PosSize and lib_NegSize fields of the library structure are adjusted to match.
MakeLibrary() depends upon
MakeFunctions(), which does not check if the number of entries in the table referenced by the functionArray parameter will require more than 65535 bytes of storage. This is a problem because the Library->lib_NegSize member is an unsigned 16 bit integer.
Library and device functions are called with a signed 16 bit displacement relative to the library base address in register A6. Any functions outside this range (-32766..-6) will be unusable. This limits the number usable functions to "only" 5461.
The contents of Library jump tables whose size exceeds 32767 bytes can no longer be changed via
SetFunction() as the offset will be clipped to a signed 16 bit value.
MakeLibrary() will, however, allocate as much memory as needed for
MakeFunctions() to fill in the entire function array even if it requires more than 65535 bytes to store it.
The MakeLibrary() function expects the dSize parameter, which contains the size of the library base, to be a 32 bit integer which should not be larger than 65553 bytes. However, MakeLibrary() does not check if the library base size exceeds this limit and will allocate as much memory as requested.
These shortcomings in the
MakeFunctions() and MakeLibrary() functions can lead to memory leaks when a disk-loaded library or device is expunged because the respective sizes of the function table (goes into Library->lib_NegSize) and the library base (goes into Library->lib_PosSize) will be clipped to the least significant 16 bits of the respective size values.
These bugs exist in all Amiga operating system versions, including Kickstart 1.1 and beyond.