Linux kernels are monolithic by nature. They have a set of drivers already preinstalled on dispatch. However there can be new devices such as a WiFi Adapter or Bluetooth Speaker which cannot be paired to the operating system. Now we have two solutions for this. Either start from scratch, edit and compile the entire kernel. This can be time consuming as even a high configuration system can take 15 to 18 minutes just to debug. For a business this is not viable, unless paid by the hour. The other is to write a specific module (driver) which can be inserted into the kernel, during runtime. The whole process will take less than 5 minutes. This module is known as Linux Kernel Modules or LKM. Uses LKM are used for creating new device drivers or file systems and network packet tracking. The latter is particularly useful in developing firewalls, Intrusion detection system (IDS) or Intrusion prevention system (IPS). Prerequisite To create a module, we need to...
In depth analysis of Cybersecurity with an interest in Embedded Systems and Internet of Things