e7ea316bc0
-the add_mod command now requires the -mod_path argument as it should. -the session now filter out bad NEW_CMD frames based on bad command names and incorrect frame sizes. -modules running in list mode can now send ERR frames to the session to log error messages to the host database.
48 lines
4.4 KiB
Markdown
48 lines
4.4 KiB
Markdown
### 2.1 Modules ###
|
|
|
|
Modules in this project are independent applications that communicate with the host application's session objects via named pipes and/or shared memory segments. The host will call multiple instances of these modules if needed using the command line options described in section 2.3 depending on session activity. The format for data transport between the session and module via the named pipe is a modified version of the MRCI frame described in section 2.2 called the IPC frame.
|
|
|
|
Basically the module's main job is to input and output IPC frames with the session object with the option to read session data from shared memory.
|
|
|
|
### 2.2 IPC Frame ###
|
|
|
|
```
|
|
[type_id][data_len][payload]
|
|
|
|
type_id - 1byte - 8bit little endian integer type id of the payload.
|
|
data_len - 3bytes - 24bit little endian integer size of the payload.
|
|
payload - variable - the actual data to be processed.
|
|
```
|
|
|
|
A full description of the type id's can be found in the [Type_IDs.md](type_ids.md) document.
|
|
|
|
### 2.3 Module Command Line Options ###
|
|
|
|
```
|
|
The host will call the module with just one of these options:
|
|
|
|
-public_cmds : send a NEW_CMD frame for all public commands the module can run.
|
|
-exempt_cmds : send a NEW_CMD frame all rank exempt commands the module can run.
|
|
-user_cmds : send a NEW_CMD frame for all user rank enforced commands the module can run.
|
|
-run_cmd {command_name} : run a module command based on the command name.
|
|
|
|
The host will include all 3 of these options with the above option:
|
|
|
|
-pipe {pipe_name/path} : the named pipe used to establish a data connection with the session.
|
|
-mem_ses {key_name} : the shared memory key for the session object.
|
|
-mem_host {key_name} : the shared memory key for the host main process.
|
|
```
|
|
|
|
notes:
|
|
|
|
* When the session calls the module in list mode (-public_cmds, -exempt_cmds or -user_cmds), it will only respond to frame type ids: [NEW_CMD](type_ids.md) or [ERR](type_ids.md) from the module; all other data types are ignored. Modules called in run mode (-run_cmd) on the other hand will open up all frame type ids.
|
|
|
|
* When the session detects that the module successfully established a pipe connection, it will send a [HOST_VER](type_ids.md) frame to the module so the module can decide if it supports the host. If the host is not compatible or the module fails for what ever other reason, the module can send a useful error message ([ERR](type_ids.md) frame) and then terminate if needed. The error message will be added to the host debug log where it can be used by host admins to find out what went wrong. The HOST_VER frame is sent only when the module is called with the -public_cmds, -exempt_cmds or -user_cmds options.
|
|
|
|
* When the module sends a [NEW_CMD](type_ids.md) frame, the 16bit command id is needed but does not need to be valid, it just needs to be there as a place holder. The session will auto fill a valid ccommand id before sending the data to the client. A valid NEW_CMD frame must have a minimum of 259 bytes and a valid command name. the session will ignore all NEW_CMD frames the doesn't meet these requirements. See section [6.3](shared_data.md) for what would be considered a valid command name.
|
|
|
|
* All modules are encouraged to terminate after sending all [NEW_CMD](type_ids.md) frames for the -public_cmds, -exempt_cmds or -user_cmds options. The session will force kill the module after 2 mins of being idle but it is still desired to terminate gracefully when finished.
|
|
|
|
* The session will call all modules with the -public_cmds when created for the first time or when the user logout so it doesn't matter if the command names returned to the session overlap with -exempt_cmd or -user_cmds. When a user is logged in, it will then call 2 instances of each module with the -exempt_cmds and -user_cmds options so the command names should not overlap when these options are active.
|
|
|
|
* Modules called with -run_cmd does not need to terminate after running the requested command, instead it must send an [IDLE](type_ids.md) frame to indicate that the command is finished. This is desired because not only it tells the client that the command is finished but it also makes it so the session doesn't need to recreate the module process on every subsequent call to the module. The session will send a [KILL_CMD](type_ids.md) to the module after 2 mins of being idle to give the module a chance to terminate gracefully; The module will have 3 seconds to do this before it is force killed. |