NetWare Loadable Module

From HandWiki
Short description: Novell-compatible computer-readable software
NetWare Loadable Module
Filename extension.nlm
Magic numberNetWare Loadable Module
Developed byNovell
Type of formatExecutable, Shared library

A NetWare Loadable Module[1][2][3] (NLM) is a loadable kernel module (a binary code module) that can be loaded into Novell's NetWare operating system. NLMs can implement hardware drivers, server functions (e.g. clustering), applications (e.g. GroupWise), system libraries or utilities.

NLMs were supported beginning with the Intel 80386-based NetWare version 3.x. Prior versions of NetWare had a monolithic kernel, and significant hardware or functionality changes required re-linking the kernel from object modules.

Due to stability issues with early third-party NLMs, they never became popular for server application programming, with few exceptions like antivirus programs, backup programs and certain database products.

Functionality

Upon loading, a NLM requests resources, such as memory and process threads, from the NetWare kernel. The NetWare kernel tracks such requests, and can identify memory and other resources assigned to a specific NLM. NLMs may auto-load other NLMs upon which they themselves depend.

NLMs may register commands with the NetWare kernel, extending the command vocabulary available at the NetWare console prompt.

When properly coded, NLMs can be re-entrant, allowing multiple instances of the same code to be loaded and run.

Programming issues

Initially, Novell published a development toolkit for NLM programming including kernel API documentation and a C compiler (Watcom), but third-party support for the NLM executable function was very limited.

In early NetWare versions (prior to v4.x), all processes were executed in the kernel address space, without specific memory protection. It was therefore possible for bugs in NLMs to overwrite the kernel's or other NLM's address space and ultimately crash the server — in the mainframe-derived Novell terminology, this was known as an ABEND or ABnormal END.

Moreover, NetWare used a non-preemptive, or cooperative, multitasking model, meaning that an NLM was required to yield to the kernel regularly.[4] An NLM executing an infinite loop, for example, could therefore not be stopped.

In NetWare v4.x, Novell introduced a limited form of memory protection, which was extended to Protected Address Spaces in NetWare v5.x. Through these mechanisms, properly-coded NLMs can be loaded into their own address space, and mis-behaving NLMs can be prevented from compromising the kernel integrity.

Compilers

Official compilers that produce NLMs are:

  • Watcom C/C++ compiler / OpenWatcom
  • Metrowerks CodeWarrior for NetWare[5]
  • EPC C/C++
  • Novell NLMLINK.EXE

NLM development is also possible with GNU cc and binutils.[6] More details are available in NetWare Loadable Module Programming HOWTO by Martin Hinner.[7]

Client-side NLMs with NIOS

Announcing it in March 1995,[8][9] Novell introduced a new 32-bit DOS/Windows NetWare client (Client 32 based on ODI32/NIOS)[10] in 1996, replacing the former 16-bit client based on ODI/VLM. Its NIOS component (NetWare I/O Subsystem[8][11][12]) used techniques similar to DPMS to relocate and run NLMs in protected mode and extended memory in order to reduce the conventional memory footprint of the client down to 2 to 5 KB.[13][11]

See also

  • Virtual Loadable Module (VLM)

References

  1. Dave Kearns (October 3, 2006). "Revelation: A NetWare Loadable Module that's still around". Computerworld. https://www.computerworld.com/article/2307524/revelation--a-netware-loadable-module-that-s-still-around.html. 
  2. "Database server choices for NetWare". Computerworld. https://www.computerworld.com/article/2299449/database-server-choices-for-netware.html. 
  3. "Hands on: Getting Macs and PCs to play well together". Computerworld. https://www.computerworld.com/article/2569895/hands-on--getting-macs-and-pcs-to-play-well-together.html. 
  4. Mark Foust (2001). NetWare Administration: NetWare 4.0-6.0. 
  5. "Metrowerks website". http://www.metrowerks.com/. 
  6. "NLM development under Linux". http://martin.hinner.info/nlm/. 
  7. "NetWare Loadable Module Programming HOWTO". http://martin.hinner.info/nlm/NLM-HOWTO/NLM-HOWTO.html. 
  8. 8.0 8.1 "Novell to dress up Tuxedo and deliver 32-bit client". Network World: 141. 1995-03-27. https://books.google.com/books?id=ShgEAAAAMBAJ&pg=PA141. Retrieved 2018-08-18. 
  9. "Network Edition - Cover Story". PC Magazine: NE27. 1995-10-24. https://books.google.com/books?id=3jNOHGmrpRkC&pg=PA527. Retrieved 2018-08-18. 
  10. "Netware Input/Output Subsystem". https://encyclopedia2.thefreedictionary.com/Netware+Input%2FOutput+Subsystem. 
  11. 11.0 11.1 "NetWare Client 32 for DOS/Windows: Overview of Architecture and Features". Novell AppNotes. Novell. 1996-05-01. https://support.novell.com/techcenter/articles/ana19960501.html. 
  12. "Overview of NetWare Client 32 for Windows 95". Novell AppNotes. Novell. 1996-11-01. https://support.novell.com/techcenter/articles/ana19961101.html. 
  13. (in de) NWDOS-TIPs — Tips & Tricks rund um Novell DOS 7, mit Blick auf undokumentierte Details, Bugs und Workarounds (3 ed.). 1997-07-30. http://www.antonis.de/dos/dos-tuts/mpdostip/html/nwdostip.htm. Retrieved 2012-01-11.  (NB. NWDOSTIP.TXT is a comprehensive work on Novell DOS 7 and OpenDOS 7.01, including the description of many undocumented features and internals. It is part of the author's yet larger MPDOSTIP.ZIP collection maintained up to 2001 and distributed on many sites at the time. The provided link points to a HTML-converted older version of the NWDOSTIP.TXT file.)

Further reading