SlideShare a Scribd company logo
Kernel Module
 Programming
Kernel Modules
What exactly is a kernel module ?
• Modules are pieces of code that can be loaded and unloaded
  into the kernel upon demand.
• They extend the functionality of the kernel without the need
  to reboot the system.
• For example, one type of module is the device driver, which
  allows the kernel to access hardware connected to the
  system.
• Without modules, we would have to build monolithic
  kernels
• Larger kernels,disadvantage of requiring us to rebuild and
  reboot the kernel every time for new functionality.
OS Basics
•   Linux operates in two modes
•   Kernel mode (kernel space) and
•   User mode (user space)
•   So kernel architectures depending upon this
•   Monolithic
•   Micro-kernel
Monolithic kernels
•   Kernel implemented as an only one process
•   Large program where all the functional
    components of the kernel have access to all
    of its internal data structures and routines
                Micro-kernels
•   kernel perform only the essential
    operations
•   Everything else should be performed in
    user space
•   Memory management, file systems and
    IPC communications are not inside the
    kernel
And the linux kernel is...?
•   Monolithic, but it is also modular
•   Kernel can dynamically load parts of the kernel
    code(Modules)
•   Possible to extend the kernel capabilities without
    modifying the rest of the code
•   Possible to insert the module while the kernel is
    running
•   Keeps the kernel size to a minimum and makes
    the kernel very flexible
Module Commands
•   modinfo - display information about a
            kernel module
•   lsmod - List loaded modules
•   insmod - Install loadable kernel module
•   rmmod - Unload loadable modules
•   depmod - handle dependency descriptions
              for loadable kernel modules
•   modprobe - High level handling of
                loadable modules
How Do Modules Get Into The Kernel?

  Modules already loaded into the kernel can be seen
  by running lsmod

  kernel daemon(kerneld daemon or kmod) execs
  modprobe to load the module in
• modprobe is passed a string in one of two forms:
  -A module name like softdog or ppp.
  -A more generic identifier like char-major-10-30.
How Do Modules Get Into The Kernel?
• If modprobe is handed a generic identifier, it first looks for
  that string in the file
   /etc/modprobe.conf--> /lib/modules/version/modules.alias
• If it finds an alias line like:
  alias char-major-10-30 softdog
• Then dependencies are seen
• For example, msdos.ko requires the fat.ko module to be already
  loaded into the kernel.
• modprobe uses insmod to first load any prerequisite modules into
  the kernel, and then the requested module
How Do Modules Get Into The Kernel?
• Linux distributions provide modprobe, insmod and depmod
  as a package called modutils or mod-utils.

• Until 2.4 kernel versions, module file & object file had
  same extension i.e. .o

• From 2.4 & above to differentiate between object file &
  module file, module file has extension .ko
Module Unloading
•   Modules can be unloaded using rmmod
    command
•   rmmod ensures the restriction that the modules
    are not in use
•   Automatically removed from the system by
    `kerneld' when they are no longer used
•   cleanup_module function of the concerned
    module is called to freeup the kernel resources it
    has allocated
•   Unlinked from the kernel and unlisted from the
    list of kernel modules
•   Dependency is released
Module Functions
• Kernel modules must have at least two functions.
• A "start" (initialization) function called init_module( )
  which is called when the module is insmoded into the kernel
• Typically, init_module( ) either registers a handler for
  something with the kernel.
• An "end" (cleanup) function called cleanup_module ( )
  which is called just before it is rmmoded.
• The cleanup_module( ) function is supposed to undo
  whatever init_module( ) did, so the module can be unloaded
  safely.
Module Functions
•   As of Linux 2.4, you can rename the init
    and cleanup functions

•   This is done with the module_init() and
    module_exit() macros

•   These macros are defined in linux/init.h.
Using printk( )
• printk seems to be the similar function like printf
• Since we are dealing with kernel programming , kernel can’t
  access user library functions
• So only functions used by modules are the one defined by
  kernel.
• printk( ) happens to be a logging mechanism for the kernel,
  and is used to log information or give warnings.
• There are 8 priorities and the kernel has macros for them,
  and you can view them (and their meanings) in
  linux/kernel.h.
Using printk( )
• If you don't specify a priority level, the default priority,
  DEFAULT_MESSAGE_LOGLEVEL, will be used

• We usually use a high priority, like KERN_ALERT

• When you write real modules, you'll want to use priorities
  that are meaningful for the situation at hand.
Differences between
Modules
And
Programmes
How programmes begin and end

    Program begins with a main() function, executes a bunch
    of instructions and terminates upon completion of those
    instructions.
•   Module begins with either the init_module or the function
    you specify with module_init call.
•   This is the entry function for modules; it tells the kernel
    what functionality the module provides and sets up the
    kernel to run the module's functions when they're needed.
•   Once it does this, entry function returns and the module
    does nothing until the kernel wants to do something with
    the code that the module provides.
How modules begin and end

• All modules end by calling either cleanup_module
  or the function you specify with the module_exit
  call.
• This is the exit function for modules; it undoes
  whatever entry function did.
• It unregisters the functionality that the entry
  function registered.
• Every module must have an entry function and an
  exit function.
Functions available to Programmes

• Programmers use functions they don't define all the
  time.

• A prime example of this is printf().

• You use these library functions which are provided
  by the standard C library.
Functions available to Modules
• Kernel modules are different here, too.The only
  functions you can use are the ones provided by the
  kernel.
• That's because modules are object files whose
  symbols get resolved upon insmod'ing.
• The definition for the symbols comes from the
  kernel itself.
• Symbols have been exported by your kernel,the
  information is available from
     –    /proc/ksyms (old versions)-->
     –   /proc/kallsyms
User Space vs Kernel Space
• Library functions are higher level, run completely in
  user space and provide a more convenient interface for
  the programmer
• System calls run in kernel mode on the user's behalf and
  are provided by the kernel itself.
• Library function calls one or more system calls, and
  these system calls execute in supervisor mode since they
  are part of the kernel itself.
• Once the system call completes its task, it returns and
  execution gets transferred back to user mode.
Namespace
• When writing kernel code, even the smallest module will be
  linked against the entire kernel, so this is definitely an issue.
• The best way to deal with this is to declare all your variables
  as static and to use a well-defined prefix for your symbols.
• By convention, all kernel prefixes are lowercase.
• If you don't want to declare everything as static, another
  option is to declare a symbol table and register it with a
  kernel.
• The file /proc/ksyms-->/proc/kallsyms holds all the symbols
  that the kernel knows about and which are therefore
  accessible to your modules since they share the kernel's
  codespace.
Codespace
• The kernel has its own space of memory as well.
• Since a module is code which can be dynamically
  inserted and removed in the kernel, it shares the
  kernel's codespace rather than having its own.
• Therefore, if your module segfaults, the kernel
  segfaults.
• In general it is true for any operating system which
  uses a monolithic kernel.
Application to Module Programming

 An introduction to device drivers
• One class of modules is the device driver, which provides
  functionality for hardware like a TV card or a serial port.
• On unix, each piece of hardware is represented by a file
  located in /dev named a device file which provides the
  means to communicate with the hardware.
• The device driver provides the communication on behalf of
  a user program.
References
The Linux Kernel Module Programming Guide by
  Peter Jay Salzman
http://en.wikipedia.org/wiki/Linux_Kernel_Module
http://ftp.kernel.org/pub/linux/utils/kernel/module-
  init-tools/
http://en.wikipedia.org/wiki/Modprobe
http://ftp.kernel.org/pub/linux/utils/kernel/modutils/
http://www.linuxhq.com/guides/LKMPG/mpg.html
Linux Loadable Kernel Module HOWTO by Bryan
  Henderson
Any Questions...?
Thank You ...

Saurabh S. Bangad

More Related Content

PDF
Linux kernel modules
PPTX
Linux Kernel Module - For NLKB
PDF
U-Boot - An universal bootloader
PPTX
Linux Device Tree
PDF
Embedded Android : System Development - Part II (Linux device drivers)
PDF
Arm device tree and linux device drivers
Linux kernel modules
Linux Kernel Module - For NLKB
U-Boot - An universal bootloader
Linux Device Tree
Embedded Android : System Development - Part II (Linux device drivers)
Arm device tree and linux device drivers

What's hot (20)

PDF
Embedded Linux Kernel - Build your custom kernel
PPTX
U-Boot presentation 2013
PDF
Embedded_Linux_Booting
PPTX
Memory model
PDF
Jagan Teki - U-boot from scratch
PPT
U boot porting guide for SoC
PDF
Linux-Internals-and-Networking
PPT
Basic Linux Internals
PDF
Linux kernel modules
PDF
Linux Systems: Getting started with setting up an Embedded platform
PDF
PDF
Uboot startup sequence
PDF
Part 02 Linux Kernel Module Programming
PPTX
Linux device drivers
PPTX
Linux Kernel Booting Process (1) - For NLKB
PDF
Android Boot Time Optimization
PDF
Introduction To Linux Kernel Modules
PDF
Android Things : Building Embedded Devices
PDF
Process Address Space: The way to create virtual address (page table) of user...
PPTX
Bootloaders (U-Boot)
Embedded Linux Kernel - Build your custom kernel
U-Boot presentation 2013
Embedded_Linux_Booting
Memory model
Jagan Teki - U-boot from scratch
U boot porting guide for SoC
Linux-Internals-and-Networking
Basic Linux Internals
Linux kernel modules
Linux Systems: Getting started with setting up an Embedded platform
Uboot startup sequence
Part 02 Linux Kernel Module Programming
Linux device drivers
Linux Kernel Booting Process (1) - For NLKB
Android Boot Time Optimization
Introduction To Linux Kernel Modules
Android Things : Building Embedded Devices
Process Address Space: The way to create virtual address (page table) of user...
Bootloaders (U-Boot)
Ad

Viewers also liked (20)

PPT
Kernel module programming
PPTX
Linux Kernel Programming
PPT
Linux Kernel Development
PDF
Linux Module Programming
DOCX
Linux kernel module programming regular and summer training in waayoo.com
PDF
Linux_kernelmodule
PDF
Linux kernel module programming guide
PDF
How does SCRUM change Software Management Process?
PDF
Part 01 Linux Kernel Compilation (Ubuntu)
PDF
Module Programming with Project Jigsaw
PPTX
ITT Project Information Technology Basic
PPTX
Building a linux kernel
PDF
Red hat linux essentials
PPTX
Remote procedure call on client server computing
PDF
Linux Process Management Workshop
PDF
Csc1401 lecture05 - cache memory
PPTX
Linux fundamentals
PPT
Linux fundamentals Training
PPTX
Red hat linux essentials
PPTX
Linux Initialization Process (2)
Kernel module programming
Linux Kernel Programming
Linux Kernel Development
Linux Module Programming
Linux kernel module programming regular and summer training in waayoo.com
Linux_kernelmodule
Linux kernel module programming guide
How does SCRUM change Software Management Process?
Part 01 Linux Kernel Compilation (Ubuntu)
Module Programming with Project Jigsaw
ITT Project Information Technology Basic
Building a linux kernel
Red hat linux essentials
Remote procedure call on client server computing
Linux Process Management Workshop
Csc1401 lecture05 - cache memory
Linux fundamentals
Linux fundamentals Training
Red hat linux essentials
Linux Initialization Process (2)
Ad

Similar to Kernel Module Programming (20)

PDF
Linux kernel code
PPTX
Linux Device Driver’s
PDF
Course 102: Lecture 25: Devices and Device Drivers
PPTX
Device Drivers and Running Modules
PPTX
LINUX M1 P4 notes.pptxgyfdes e4e4e54v 4
PPT
Linux Device Driver for Writing a real world driver for embedded Linux
PPT
Embedded system - embedded system programming
PPTX
managing kernal module from egineering sunject operating system
PDF
Studienarb linux kernel-dev
PPTX
PDF
Unit 6 Operating System TEIT Savitribai Phule Pune University by Tushar B Kute
PDF
Linux Device Driver v3 [Chapter 2]
PPT
lecture_1_introduction_linux_1234567.ppt
PPT
lecture_1_introduction.ppt
PDF
Introduction to Linux Kernel Development
PDF
Linux kernel driver tutorial vorlesung
PPT
Sysfs filesystem to provide a hierarchi..
PPTX
Introduction Linux Device Drivers
PPT
Driver_linux
PPT
lesson03.ppt
Linux kernel code
Linux Device Driver’s
Course 102: Lecture 25: Devices and Device Drivers
Device Drivers and Running Modules
LINUX M1 P4 notes.pptxgyfdes e4e4e54v 4
Linux Device Driver for Writing a real world driver for embedded Linux
Embedded system - embedded system programming
managing kernal module from egineering sunject operating system
Studienarb linux kernel-dev
Unit 6 Operating System TEIT Savitribai Phule Pune University by Tushar B Kute
Linux Device Driver v3 [Chapter 2]
lecture_1_introduction_linux_1234567.ppt
lecture_1_introduction.ppt
Introduction to Linux Kernel Development
Linux kernel driver tutorial vorlesung
Sysfs filesystem to provide a hierarchi..
Introduction Linux Device Drivers
Driver_linux
lesson03.ppt

Recently uploaded (20)

PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
Classroom Observation Tools for Teachers
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPTX
Cell Types and Its function , kingdom of life
PPTX
Institutional Correction lecture only . . .
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PPTX
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
PDF
Insiders guide to clinical Medicine.pdf
PDF
Basic Mud Logging Guide for educational purpose
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
PPTX
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PPTX
Cell Structure & Organelles in detailed.
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
human mycosis Human fungal infections are called human mycosis..pptx
Classroom Observation Tools for Teachers
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Cell Types and Its function , kingdom of life
Institutional Correction lecture only . . .
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
Insiders guide to clinical Medicine.pdf
Basic Mud Logging Guide for educational purpose
Anesthesia in Laparoscopic Surgery in India
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Origin of periodic table-Mendeleev’s Periodic-Modern Periodic table
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
Cell Structure & Organelles in detailed.
FourierSeries-QuestionsWithAnswers(Part-A).pdf

Kernel Module Programming

  • 2. Kernel Modules What exactly is a kernel module ? • Modules are pieces of code that can be loaded and unloaded into the kernel upon demand. • They extend the functionality of the kernel without the need to reboot the system. • For example, one type of module is the device driver, which allows the kernel to access hardware connected to the system. • Without modules, we would have to build monolithic kernels • Larger kernels,disadvantage of requiring us to rebuild and reboot the kernel every time for new functionality.
  • 3. OS Basics • Linux operates in two modes • Kernel mode (kernel space) and • User mode (user space) • So kernel architectures depending upon this • Monolithic • Micro-kernel
  • 4. Monolithic kernels • Kernel implemented as an only one process • Large program where all the functional components of the kernel have access to all of its internal data structures and routines Micro-kernels • kernel perform only the essential operations • Everything else should be performed in user space • Memory management, file systems and IPC communications are not inside the kernel
  • 5. And the linux kernel is...? • Monolithic, but it is also modular • Kernel can dynamically load parts of the kernel code(Modules) • Possible to extend the kernel capabilities without modifying the rest of the code • Possible to insert the module while the kernel is running • Keeps the kernel size to a minimum and makes the kernel very flexible
  • 6. Module Commands • modinfo - display information about a kernel module • lsmod - List loaded modules • insmod - Install loadable kernel module • rmmod - Unload loadable modules • depmod - handle dependency descriptions for loadable kernel modules • modprobe - High level handling of loadable modules
  • 7. How Do Modules Get Into The Kernel?  Modules already loaded into the kernel can be seen by running lsmod  kernel daemon(kerneld daemon or kmod) execs modprobe to load the module in • modprobe is passed a string in one of two forms: -A module name like softdog or ppp. -A more generic identifier like char-major-10-30.
  • 8. How Do Modules Get Into The Kernel? • If modprobe is handed a generic identifier, it first looks for that string in the file /etc/modprobe.conf--> /lib/modules/version/modules.alias • If it finds an alias line like: alias char-major-10-30 softdog • Then dependencies are seen • For example, msdos.ko requires the fat.ko module to be already loaded into the kernel. • modprobe uses insmod to first load any prerequisite modules into the kernel, and then the requested module
  • 9. How Do Modules Get Into The Kernel? • Linux distributions provide modprobe, insmod and depmod as a package called modutils or mod-utils. • Until 2.4 kernel versions, module file & object file had same extension i.e. .o • From 2.4 & above to differentiate between object file & module file, module file has extension .ko
  • 10. Module Unloading • Modules can be unloaded using rmmod command • rmmod ensures the restriction that the modules are not in use • Automatically removed from the system by `kerneld' when they are no longer used • cleanup_module function of the concerned module is called to freeup the kernel resources it has allocated • Unlinked from the kernel and unlisted from the list of kernel modules • Dependency is released
  • 11. Module Functions • Kernel modules must have at least two functions. • A "start" (initialization) function called init_module( ) which is called when the module is insmoded into the kernel • Typically, init_module( ) either registers a handler for something with the kernel. • An "end" (cleanup) function called cleanup_module ( ) which is called just before it is rmmoded. • The cleanup_module( ) function is supposed to undo whatever init_module( ) did, so the module can be unloaded safely.
  • 12. Module Functions • As of Linux 2.4, you can rename the init and cleanup functions • This is done with the module_init() and module_exit() macros • These macros are defined in linux/init.h.
  • 13. Using printk( ) • printk seems to be the similar function like printf • Since we are dealing with kernel programming , kernel can’t access user library functions • So only functions used by modules are the one defined by kernel. • printk( ) happens to be a logging mechanism for the kernel, and is used to log information or give warnings. • There are 8 priorities and the kernel has macros for them, and you can view them (and their meanings) in linux/kernel.h.
  • 14. Using printk( ) • If you don't specify a priority level, the default priority, DEFAULT_MESSAGE_LOGLEVEL, will be used • We usually use a high priority, like KERN_ALERT • When you write real modules, you'll want to use priorities that are meaningful for the situation at hand.
  • 16. How programmes begin and end  Program begins with a main() function, executes a bunch of instructions and terminates upon completion of those instructions. • Module begins with either the init_module or the function you specify with module_init call. • This is the entry function for modules; it tells the kernel what functionality the module provides and sets up the kernel to run the module's functions when they're needed. • Once it does this, entry function returns and the module does nothing until the kernel wants to do something with the code that the module provides.
  • 17. How modules begin and end • All modules end by calling either cleanup_module or the function you specify with the module_exit call. • This is the exit function for modules; it undoes whatever entry function did. • It unregisters the functionality that the entry function registered. • Every module must have an entry function and an exit function.
  • 18. Functions available to Programmes • Programmers use functions they don't define all the time. • A prime example of this is printf(). • You use these library functions which are provided by the standard C library.
  • 19. Functions available to Modules • Kernel modules are different here, too.The only functions you can use are the ones provided by the kernel. • That's because modules are object files whose symbols get resolved upon insmod'ing. • The definition for the symbols comes from the kernel itself. • Symbols have been exported by your kernel,the information is available from – /proc/ksyms (old versions)--> – /proc/kallsyms
  • 20. User Space vs Kernel Space • Library functions are higher level, run completely in user space and provide a more convenient interface for the programmer • System calls run in kernel mode on the user's behalf and are provided by the kernel itself. • Library function calls one or more system calls, and these system calls execute in supervisor mode since they are part of the kernel itself. • Once the system call completes its task, it returns and execution gets transferred back to user mode.
  • 21. Namespace • When writing kernel code, even the smallest module will be linked against the entire kernel, so this is definitely an issue. • The best way to deal with this is to declare all your variables as static and to use a well-defined prefix for your symbols. • By convention, all kernel prefixes are lowercase. • If you don't want to declare everything as static, another option is to declare a symbol table and register it with a kernel. • The file /proc/ksyms-->/proc/kallsyms holds all the symbols that the kernel knows about and which are therefore accessible to your modules since they share the kernel's codespace.
  • 22. Codespace • The kernel has its own space of memory as well. • Since a module is code which can be dynamically inserted and removed in the kernel, it shares the kernel's codespace rather than having its own. • Therefore, if your module segfaults, the kernel segfaults. • In general it is true for any operating system which uses a monolithic kernel.
  • 23. Application to Module Programming An introduction to device drivers • One class of modules is the device driver, which provides functionality for hardware like a TV card or a serial port. • On unix, each piece of hardware is represented by a file located in /dev named a device file which provides the means to communicate with the hardware. • The device driver provides the communication on behalf of a user program.
  • 24. References The Linux Kernel Module Programming Guide by Peter Jay Salzman http://en.wikipedia.org/wiki/Linux_Kernel_Module http://ftp.kernel.org/pub/linux/utils/kernel/module- init-tools/ http://en.wikipedia.org/wiki/Modprobe http://ftp.kernel.org/pub/linux/utils/kernel/modutils/ http://www.linuxhq.com/guides/LKMPG/mpg.html Linux Loadable Kernel Module HOWTO by Bryan Henderson