0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-18 10:53:48 +02:00
construct/modules
2018-09-04 23:42:46 -07:00
..
client modules/client/rooms/join: Add conf items for bootstrap timeouts. 2018-09-04 23:19:26 -07:00
federation modules/federation/send: Check for self-sends here. 2018-09-04 23:42:46 -07:00
js ircd::m/modules: Update various client listeners w/ callback. 2018-07-06 18:40:15 -07:00
key ircd::m/modules/key: Various reorg / modularization. 2018-08-17 12:51:49 -07:00
media modules/media/media: Demote mime type mismatch warning to dwarning. 2018-09-04 20:34:50 -07:00
static client: Fix alignment of sender name. 2018-08-29 20:43:27 -07:00
console.cc modules/console: No verify on these cmds because they're debug and 2018-09-04 23:28:31 -07:00
m_event.cc modules/m_event: Add modules; move pretty() suite out of ircd:Ⓜ️:. 2018-09-04 20:27:30 -07:00
m_noop.cc Update Copyrastafaris. 2018-02-05 21:24:34 -08:00
m_presence.cc modules/m_presence: Canonize the user_id mismatch check. 2018-09-04 23:05:05 -07:00
m_receipt.cc modules/m_receipt: No need to log the id of the receipt saved to user's room. 2018-08-28 15:59:52 -07:00
m_room.cc ircd:Ⓜ️:room: Officiate random_origin w/ central linkage; use view closure. 2018-08-24 04:19:55 -07:00
m_room_aliases.cc modules: Add preliminary m_room_aliases protocol suite. 2018-06-12 01:00:14 -07:00
m_room_canonical_alias.cc modules: Add preliminary m_room_canonical_alias protocol suite. 2018-06-12 01:00:14 -07:00
m_room_create.cc ircd:Ⓜ️ Add templated payload for hook. 2018-05-26 22:12:11 -07:00
m_room_history_visibility.cc modules/m_room_history_visibility: Add node visibility test. 2018-05-31 11:34:44 -07:00
m_room_join_rules.cc ircd:Ⓜ️ Add templated payload for hook. 2018-05-26 22:12:11 -07:00
m_room_member.cc ircd:Ⓜ️ Add templated payload for hook. 2018-05-26 22:12:11 -07:00
m_typing.cc ircd::json: Perform unquote() in json::string ctor as described... 2018-06-12 01:00:15 -07:00
Makefile.am modules/m_event: Add modules; move pretty() suite out of ircd:Ⓜ️:. 2018-09-04 20:27:30 -07:00
README.md modules: Add directory README. 2018-08-17 12:51:49 -07:00
s_conf.cc modules/s_conf: Set the ircd::conf callback and handle. 2018-09-03 04:45:07 -07:00
s_control.cc modules/s_control: Otherwise bad things. 2018-09-03 05:05:57 -07:00
s_keys.cc modules/s_keys: Disable dhparam generation here. 2018-08-29 16:17:25 -07:00
s_listen.cc ircd::client: Move client make_shared into ircd/client.cc due to SO issues. 2018-09-01 22:35:01 -07:00
s_node.cc ircd:Ⓜ️ Add templated payload for hook. 2018-05-26 22:12:11 -07:00
vm.cc modules/vm: Checkpoint vm fwiw. 2018-09-04 23:28:01 -07:00
vm_fetch.cc modules: Checkpoint vm_fetch fwiw (disabled from active eval codepaths). 2018-09-04 23:27:01 -07:00
vm_fetch.int.h modules: Checkpoint vm_fetch fwiw (disabled from active eval codepaths). 2018-09-04 23:27:01 -07:00
webroot.cc modules/webroot: Make webroot path a conf item. 2018-09-03 04:45:07 -07:00

IRCd Module Tree

This directory contains dynamically loadable functionality to libircd. These modules are not mere extensions -- they provide essential application functionality, but are not required to be directly linked in libircd proper. Most application-specific functionality (i.e "business logic") is contained in modules within this tree. At the time of this writing, a significant amount of matrix functionality is still contained within libircd proper, but it is intended that as many definitions as possible are pushed out into modules.

Layout

The modules/ directory is primarily shaped the same as the HTTP resource tree in which most of its modules register themselves in. This is not automatic (with one exception) and the mere inclusion of files/directories in modules/ does not automatically expose them over HTTP. The exception is modules/static which is pre-read by the webroot module and served over HTTP.

Note that the installation layout is not the same as the development source layout (i.e in git). Upon installation, the module tree is collapsed into a single directory and installed into $prefix/lib/modules/construct/$directory_$module.so; this may be subject to improvement. The static tree is installed to $prefix/share/construct/static.

  • client/ contains resource handlers for the /_matrix/client/ API
  • federation/ contains resource handlers for the /_matrix/federation/ API
  • key/ contains resource handlers for the /_matrix/key/ API
  • media/ contains resource handlers for the /_matrix/media/ API
  • static/ contains web assets which are gathered and served under /
  • js/ contains modules specific to the unreleased javascript embedding.
  • s_ modules provide utility to the server's operation.
  • m_ modules implement protocol logic for matrix event types.
  • vm_ modules provide the processing logic for matrix events.

Loading

Modules may be automatically loaded based on their prefix. Certain prefixes are sought by libircd for auto-loading, arbitrarily (i.e there is no magic autoloading prefix; see: ircd/m/m.cc for explicit prefixes). A module may also be loaded when an attempt is made to call into it (i.e with m::import or low-level with ircd::mods::*). Furthermore, a module may be loaded by the console mod command suite, specifically mod load. Otherwise the module is not loaded.

Unloading

Unlike previous incarnations of IRCd, every module is "unloadable" and there are no "core" modules. All central linkages within libircd (and direct links made by other modules) tolerate the unavailability of a module by using weak-pointers and throwing exceptions. Unlike the Atheme approach as well, linkage into a module does not prevent unloading due to dependency; the unloading of a module is propagated to linksites through the weak_ptr's dependency graph and exceptions are thrown from the link upon next use.

Furthermore, modules are free to leverage the ircd::ctx system to wait synchronously for events which are essential for a clean load or unload, even during static initialization and destruction. This is a useful feature which allows all modules to be robustly loadable and unloadable at any time and every time in an intuitive manner.

No modules in this system "stick" whether by accident or on purpose upon unload. Though we all know that dlclose() does not guarantee a module is actually unloaded, we expend the extra effort to ensure there is no reason why dlclose() would not unload the module. This static destruction of a module is verified and alarms will go off if it is actually "stuck" and the developer must fix this.

Getting started

The header mods/mapi.h is specific to modules and included for modules in addition to the core ircd.h. Both of these are included automatically via the compiler's command-line and the developer does not have to #include either in the module.

Every loadable module requires a static ircd::mapi::header with the explicit name of IRCD_MODULE. This is an object which will be sought by the module loader in libircd. Nothing else is required.

Approach

The ideal module in this system is one that is self-contained in that its only interface is through "registrations" to various facilities provided by libircd. The module can still freely read and write to state within libircd or other modules.

  • An example of such is an HTTP resource (see: ircd/resource.h) registration of a URL to handle incoming HTTP requests.

  • Another example is a Matrix Event Hook (see: ircd/m/hook.h) to process matrix events.

Next is a module providing definitions and making them available through exposition (i.e extern "C"). In this approach, function definitions are provided in the module but a "central interface" may be provided by libircd. That central interface is tolerant of the function call failing when the module is not available (or automatically tries to load it, see: ircd/m/import.h and ircd/mods/*.h etc).

Note that many modules use any of these approaches at the same time.