Difference between revisions of "Embedded-Linux-Device-Driver/C2/Simple-Loadable-Module/English"
Nancyvarkey (Talk | contribs) |
|||
Line 9: | Line 9: | ||
Welcome slide: | Welcome slide: | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Welcome to the spoken tutorial on '''Simple Loadable Module.''' | | style="border:1pt solid #000000;padding:0.176cm;"| Welcome to the spoken tutorial on '''Simple Loadable Module.''' | ||
− | |||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Slide 2: | | style="border:1pt solid #000000;padding:0.176cm;"| Slide 2: | ||
Line 24: | Line 23: | ||
* Create a '''Makefile.''' | * Create a '''Makefile.''' | ||
* Compile a '''module.''' | * Compile a '''module.''' | ||
+ | |||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Slide 3: | | style="border:1pt solid #000000;padding:0.176cm;"| Slide 3: | ||
Line 33: | Line 33: | ||
* '''Linux kernel '''version''' 5.0.0-31 generic.''' | * '''Linux kernel '''version''' 5.0.0-31 generic.''' | ||
* '''gedit '''Text''' '''Editor. | * '''gedit '''Text''' '''Editor. | ||
− | |||
| style="border:1pt solid #000000;padding:0.176cm;"| To record this tutorial, I am using, | | style="border:1pt solid #000000;padding:0.176cm;"| To record this tutorial, I am using, | ||
Line 53: | Line 52: | ||
| style="border:1pt solid #000000;padding:0.176cm;"| To follow this tutorial, you should be familiar with: | | style="border:1pt solid #000000;padding:0.176cm;"| To follow this tutorial, you should be familiar with: | ||
− | * '''C programming language ''' | + | * '''C programming language and''' |
* basics of''' Linux kernel''' | * basics of''' Linux kernel''' | ||
+ | |||
+ | If not, then go through the '''C/C++''' and '''Linux''' spoken tutorials on this website | ||
|- | |- | ||
Line 64: | Line 65: | ||
* If not, to do the installation, follow the instructions in '''gedit''' series on this [http://spoken-tutorial.org/ https://spoken-tutorial.org] | * If not, to do the installation, follow the instructions in '''gedit''' series on this [http://spoken-tutorial.org/ https://spoken-tutorial.org] | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| | + | | style="border:1pt solid #000000;padding:0.176cm;"| * To proceed further, make sure that '''Gedit''' is installed on your system. |
− | + | ||
− | * To proceed further, make sure that ''' | + | |
* If not, to do the installation, follow the instructions in '''gedit''' series on this website. | * If not, to do the installation, follow the instructions in '''gedit''' series on this website. | ||
Line 73: | Line 72: | ||
What is a''' kernel module'''? | What is a''' kernel module'''? | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| | + | | style="border:1pt solid #000000;padding:0.176cm;"| * Code that is added to the''' kernel '''at runtime is called a '''module.''' |
− | * Code that is added to the''' kernel '''at runtime is called a '''module.''' | + | * It extends the functionality of the '''kernel '''without the need to reboot the system. |
− | + | * It communicates with the base '''kernel''' to complete their functions. | |
− | + | ||
− | * It communicates with the base '''kernel''' to complete their | + | |
|- | |- | ||
Line 89: | Line 86: | ||
|- | |- | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| Slide | + | | style="border:1pt solid #000000;padding:0.176cm;"| Slide: |
− | + | ||
− | + | ||
− | + | Code file - sample_module.c | |
− | + | | style="border:1pt solid #000000;padding:0.176cm;"| Please download '''simple_module dot c''' from the code files link of this tutorial. | |
+ | Make use of this file while practising. | ||
− | + | Remember the file path. | |
|- | |- | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| | + | | style="border:1pt solid #000000;padding:0.176cm;"| Type '''gedit simple_module dot c '''and press''' Enter.''' |
− | + | ||
− | + | Text box | |
+ | | style="border:1pt solid #000000;padding:0.176cm;"| Let us open this '''file.''' | ||
− | + | Open the''' terminal''' by pressing '''Ctrl+Alt+T''' | |
− | + | keys simultaneously. | |
− | + | ||
− | + | Press the '''Enter''' key after every command. | |
+ | |||
+ | Go to the folder where '''simple_module dot c''' is saved. | ||
+ | |||
+ | Type '''gedit simple_module dot c ''' | ||
|- | |- | ||
Line 121: | Line 120: | ||
Highlight'''<nowiki> <linux/init.h> </nowiki>''' | Highlight'''<nowiki> <linux/init.h> </nowiki>''' | ||
+ | Highlight'''<nowiki> <linux/module.h></nowiki>''' | ||
+ | |||
+ | Highlight'''<nowiki> <linux/kernel.h></nowiki>''' | ||
| style="border:1pt solid #000000;padding:0.176cm;"| At the start of the '''program''', there are some '''header files'''. | | style="border:1pt solid #000000;padding:0.176cm;"| At the start of the '''program''', there are some '''header files'''. | ||
− | '''Init dot h file''' used to start the '''init process | + | '''Init dot h file''' is used to start the '''init process'''. |
− | + | ||
− | + | ||
− | + | ||
− | + | The''' module dot h file''' contains '''functions '''related to the '''modules'''. | |
− | + | ||
− | + | The''' kernel dot h file''' contains functions such as '''printk.''' | |
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''MODULE_LICENSE(“GPL”) ''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''MODULE_LICENSE(“GPL”) ''' | ||
+ | |||
Highlight '''GPL''' | Highlight '''GPL''' | ||
− | + | | style="border:1pt solid #000000;padding:0.176cm;"| Next line of code is about''' GPL'''. | |
− | | style="border:1pt solid #000000;padding:0.176cm;"| Next line of | + | |
'''GPL''' means '''GNU Public License.''' | '''GPL''' means '''GNU Public License.''' | ||
− | It is otherwise called as '''GNU, '''which is a free and open-source license. | + | It is otherwise called as '''GNU, '''which''' '''is a free and open-source license'''.''' |
+ | |||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''MODULE_AUTHOR''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''MODULE_AUTHOR''' | ||
Line 148: | Line 148: | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''MODULE_DESCRIPTION''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''MODULE_DESCRIPTION''' | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| You can simply describe your '''module '''using this | + | | style="border:1pt solid #000000;padding:0.176cm;"| You can simply describe your '''module '''using this macro . |
I have given the description as “'''First Linux kernel module”.''' | I have given the description as “'''First Linux kernel module”.''' | ||
Line 155: | Line 155: | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''static int init_func(void)''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''static int init_func(void)''' | ||
+ | Highlight '''return(0)''' | ||
+ | |||
+ | Highlight '''module_init()''' | ||
| style="border:1pt solid #000000;padding:0.176cm;"| The '''init function '''will execute when a '''module '''is loaded into the '''kernel'''. | | style="border:1pt solid #000000;padding:0.176cm;"| The '''init function '''will execute when a '''module '''is loaded into the '''kernel'''. | ||
− | So it is called as an '''initialization function''' of a '''module'''. | + | So it is called as an '''initialization''' '''function''' of a '''module'''. |
If this '''function''' fails then the '''error '''will be returned. | If this '''function''' fails then the '''error '''will be returned. | ||
− | + | It will return 0 to the '''kernel''' on successful execution. | |
− | + | ||
− | + | ||
− | + | Initialization function prints a simple message and return zero. | |
− | + | The '''module init''' '''macro''' is used to register the '''init function.''' | |
− | + | ||
− | + | ||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight''' void exit_func (void)''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight''' void exit_func (void)''' | ||
+ | Highlight '''module_exit()''' | ||
| style="border:1pt solid #000000;padding:0.176cm;"| The''' exit function '''will execute when the '''module '''is unloaded from the '''kernel'''. | | style="border:1pt solid #000000;padding:0.176cm;"| The''' exit function '''will execute when the '''module '''is unloaded from the '''kernel'''. | ||
Line 180: | Line 180: | ||
The''' exit function''' will undo whatever the''' init function '''did. | The''' exit function''' will undo whatever the''' init function '''did. | ||
− | + | The '''module underscore exit macro is''' used to register the '''exit function. ''' | |
− | + | ||
− | + | ||
− | + | ||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''printk''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''printk''' | ||
− | + | Highlight '''KERN_INFO''' | |
− | + | Press >> '''Ctrl + S''' | |
− | + | Press '''Enter''' | |
− | + | ||
− | | style="border | + | Click on '''close''' option. |
− | + | | style="border:1pt solid #000000;padding:0.176cm;"| In '''kernel '''programming, '''printk '''is used as a printing''' function.''' | |
+ | |||
+ | It is similar to '''printf function '''in '''C '''programming. | ||
− | '''Loglevel '''specifies the type of message being sent to the | + | Using this '''function,''' string data will get loaded in the '''kernel''' log '''buffer'''. |
+ | |||
+ | '''printk''' has an optional prefix string, '''Loglevel '''such as''' KERN_INFO.''' | ||
+ | |||
+ | '''Loglevel '''specifies the type of message being sent to the kernel message log. | ||
'''KERN underscore INFO''' is used for informational messages. | '''KERN underscore INFO''' is used for informational messages. | ||
− | For more | + | For more log levels, go through the '''Additional reading material''' link of this tutorial. |
− | + | Press '''Ctrl + S''' keys to save the '''program '''. | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
Close the '''file.''' | Close the '''file.''' | ||
Line 213: | Line 212: | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Switch back to the '''terminal'''. | | style="border:1pt solid #000000;padding:0.176cm;"| Switch back to the '''terminal'''. | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Switch back to the '''terminal'''. | | style="border:1pt solid #000000;padding:0.176cm;"| Switch back to the '''terminal'''. | ||
− | |||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| | | style="border:1pt solid #000000;padding:0.176cm;"| | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| Let us | + | | style="border:1pt solid #000000;padding:0.176cm;"| Let us compile the code. |
|- | |- | ||
Line 232: | Line 230: | ||
Press '''Enter.''' | Press '''Enter.''' | ||
− | + | Create a '''Makefile '''where you have saved the '''simple_module dot c .''' | |
− | + | ||
− | + | ||
|- | |- | ||
Line 244: | Line 240: | ||
Highlight '''simple_module.o''' | Highlight '''simple_module.o''' | ||
− | |||
− | + | Highlight '''all:''' | |
− | + | ||
− | + | ||
− | + | Highlight '''clean:''' | |
− | + | ||
− | | style="border | + | | style="border:1pt solid #000000;padding:0.176cm;"| The''' obj hyphen m''' variable tells the '''kernel Makefile '''that this '''module '''needs to be compiled. |
+ | |||
+ | When you run the '''make''' '''all '''command''',''' then commands under '''all''' section will be executed. | ||
+ | |||
+ | If you run the '''make clean '''command, it executes commands under the '''clean '''section. | ||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''-C''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''-C''' | ||
+ | Highlight '''uname -r''' | ||
+ | Highlight''' (PWD)''' | ||
+ | Highlight '''M=$(PWD)''' | ||
+ | Highlight''' modules''' | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Using '''hyphen C''', we are running '''make command '''inside the''' kernel source directory.''' | | style="border:1pt solid #000000;padding:0.176cm;"| Using '''hyphen C''', we are running '''make command '''inside the''' kernel source directory.''' | ||
− | + | As you know,''' uname hyphen r''' finds the current '''Linux kernel''' version of a '''system.''' | |
− | + | ||
− | + | '''PWD '''means the '''present working directory.''' | |
− | + | This option tells the '''kernel''' '''makefile''' that the '''source''' '''code '''for the driver is in '''PWD'''. | |
− | + | ||
− | + | The word '''modules''' tell the '''kernel makefile''' to build the '''modules'''. | |
− | + | ||
− | + | But it will not build the complete''' kernel source code.''' | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | But it will not | + | |
|- | |- | ||
Line 288: | Line 281: | ||
|- | |- | ||
− | | style="border | + | | style="border:1pt solid #000000;padding:0.176cm;"| Open the '''terminal''' |
+ | |||
+ | Type >> '''make all''' | ||
+ | |||
+ | Press '''Enter''' | ||
+ | | style="border:1pt solid #000000;padding:0.176cm;"| Switch back to the '''terminal'''. | ||
− | + | Let us compile the '''program''', | |
Type '''make space all.''' | Type '''make space all.''' | ||
Line 303: | Line 301: | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Now type''' ls.''' | | style="border:1pt solid #000000;padding:0.176cm;"| Now type''' ls.''' | ||
− | This ''' | + | This command lists the '''files''' in the current '''directory.''' |
− | Here, you can see the number of files created in this '''directory'''. | + | Here, you can see the number of '''files '''created in this '''directory'''. |
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight''' module.symvers''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight''' module.symvers''' | ||
+ | Highlight''' mod.c ''' | ||
| style="border:1pt solid #000000;padding:0.176cm;"| The''' module.symvers''' file contains a list of all '''symbols''' | | style="border:1pt solid #000000;padding:0.176cm;"| The''' module.symvers''' file contains a list of all '''symbols''' | ||
− | These '''symbols '''are exported from the '''kernel build'''. | + | These '''symbols '''are exported from the '''kernel '''build. |
+ | |||
+ | The '''mod.c file '''contains information about the '''module'''. | ||
− | |||
− | |||
− | |||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight''' mod.o''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight''' mod.o''' | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| ''' | + | | style="border:1pt solid #000000;padding:0.176cm;"| '''Mod.o''' file is '''object file''' resulting from the compilation of the '''mod.c file.''' |
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight''' .o''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight''' .o''' | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| This''' object''' | + | | style="border:1pt solid #000000;padding:0.176cm;"| This''' object file''' is created from the compilation of the '''module source file'''. |
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight''' modules.order''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight''' modules.order''' | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| It will list out the order in which the | + | | style="border:1pt solid #000000;padding:0.176cm;"| It will list out the order in which the compilation and creation of the '''.ko file '''takes place. |
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight''' .ko''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight''' .ko''' | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| This is the final '''kernel module | + | | style="border:1pt solid #000000;padding:0.176cm;"| This is the final '''kernel module''' binary that is loaded into the '''kernel.''' |
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Type >> '''clear''' | | style="border:1pt solid #000000;padding:0.176cm;"| Type >> '''clear''' | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| Clear the screen | + | |
+ | Press''' Enter''' | ||
+ | | style="border:1pt solid #000000;padding:0.176cm;"| Clear the screen | ||
|- | |- | ||
Line 344: | Line 344: | ||
Highlight '''modinfo''' | Highlight '''modinfo''' | ||
+ | Highlight '''filename''' | ||
+ | |||
+ | Highlight '''description''' | ||
+ | |||
+ | Highlight '''author, license''' | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Let us see the details of a '''module'''. | | style="border:1pt solid #000000;padding:0.176cm;"| Let us see the details of a '''module'''. | ||
Type''' modinfo space simple_module dot ko.''' | Type''' modinfo space simple_module dot ko.''' | ||
− | This | + | This command displays information about the '''Linux kernel module. ''' |
− | + | The '''filename''' field contains an absolute path to the .'''ko kernel''' '''object file.''' | |
− | + | ||
− | + | ||
− | + | This field displays a short description of a '''module.''' | |
− | + | ||
− | + | ||
− | + | Author field shows author and '''license '''field shows the '''license''' of the '''module.''' | |
− | + | ||
− | + | ||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''srcversion''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''srcversion''' | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| The '''srcversion field '''contains the source code version used to | + | | style="border:1pt solid #000000;padding:0.176cm;"| The '''srcversion field '''contains the source code version used to compile a''' module'''. |
− | It is calculated automatically at | + | It is calculated automatically at build time. |
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''depends''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''depends''' | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| The''' depends | + | | style="border:1pt solid #000000;padding:0.176cm;"| The''' depends''' field contains all '''modules''' on which this '''module '''depends. |
It is shown empty here as this '''module '''does not depend on any other '''module.''' | It is shown empty here as this '''module '''does not depend on any other '''module.''' | ||
Line 378: | Line 377: | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''retpoline''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''retpoline''' | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| '''Retpoline | + | | style="border:1pt solid #000000;padding:0.176cm;"| '''Retpoline''' field indicates that the '''module '''is compiled with '''retpoline '''method. |
− | '''Modules''' must also be | + | '''Modules''' must also be compiled with a '''retpoline-aware compiler.''' |
Otherwise the '''kernel '''can be vulnerable. | Otherwise the '''kernel '''can be vulnerable. | ||
− | '''Retpoline technique''' protects the | + | '''Retpoline technique''' protects the kernel from the hacker’s attacks. |
− | + | ||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''name''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''name''' | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| The '''name | + | | style="border:1pt solid #000000;padding:0.176cm;"| The '''name''' field contains the '''name '''of a''' module.''' |
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''vermagic''' | | style="border:1pt solid #000000;padding:0.176cm;"| Highlight '''vermagic''' | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| This | + | | style="border:1pt solid #000000;padding:0.176cm;"| This field shows the''' version magic''' number of a '''module.''' |
This '''version magic''' number is used while loading the '''kernel module.''' | This '''version magic''' number is used while loading the '''kernel module.''' | ||
Line 399: | Line 397: | ||
Otherwise it will fail to load in the current '''kernel. ''' | Otherwise it will fail to load in the current '''kernel. ''' | ||
− | |||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Type >> '''make clean''' | | style="border:1pt solid #000000;padding:0.176cm;"| Type >> '''make clean''' | ||
Line 406: | Line 403: | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Type '''make space clean.''' | | style="border:1pt solid #000000;padding:0.176cm;"| Type '''make space clean.''' | ||
− | This '''command''' removes all '''object''' | + | This '''command''' removes all '''object files''' that are created after the '''compilation.''' |
− | + | '''Type ls.''' | |
− | + | ||
− | + | ||
− | Now there are no '''object''' | + | Now there are no '''object files.''' |
|- | |- | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| | + | | style="border:1pt solid #000000;padding:0.176cm;"| |
− | + | | style="border:0.5pt solid #000000;padding:0.176cm;"| With this, we come to the end of this tutorial. Let us summarize. | |
− | + | ||
− | | style="border | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
|- | |- | ||
Line 435: | Line 422: | ||
* Create a '''Makefile'''. | * Create a '''Makefile'''. | ||
* Compile a '''module.''' | * Compile a '''module.''' | ||
+ | |||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Slide 7: | | style="border:1pt solid #000000;padding:0.176cm;"| Slide 7: | ||
Line 443: | Line 431: | ||
# Open the''' simple_module.c file''' | # Open the''' simple_module.c file''' | ||
− | # Change the ''' | + | # Change the module description''' '''using''' MODULE_DESCRIPTION macro ''' |
− | # Run the '''modinfo | + | # Run the '''modinfo''' command |
# See the output of description. | # See the output of description. | ||
Line 459: | Line 447: | ||
Spoken Tutorial workshops: | Spoken Tutorial workshops: | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| The''' Spoken Tutorial Project''' Team conducts workshops and gives certificates. | + | | style="border:1pt solid #000000;padding:0.176cm;"| The''' Spoken Tutorial Project''' Team: |
+ | |||
+ | * conducts workshops and | ||
+ | * gives certificates. | ||
For more details, please write to us. | For more details, please write to us. | ||
Line 467: | Line 458: | ||
Forum questions: | Forum questions: | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| | + | | style="border:1pt solid #000000;padding:0.176cm;"| * Do you have questions in THIS Spoken Tutorial? |
− | * Do you have questions in THIS Spoken Tutorial? | + | |
* Please visit this site | * Please visit this site | ||
* Choose the minute and second where you have the question. | * Choose the minute and second where you have the question. | ||
Line 474: | Line 464: | ||
* The Spoken Tutorial project will ensure an answer | * The Spoken Tutorial project will ensure an answer | ||
* You will have to register to ask questions | * You will have to register to ask questions | ||
− | |||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Slide 11: | | style="border:1pt solid #000000;padding:0.176cm;"| Slide 11: | ||
Line 480: | Line 469: | ||
Forum for specific questions: | Forum for specific questions: | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| | + | | style="border:1pt solid #000000;padding:0.176cm;"| * The Spoken Tutorial forum is for specific questions on this tutorial. |
− | * The Spoken Tutorial forum is for specific questions on this tutorial. | + | |
* Please do not post unrelated and general questions on them. | * Please do not post unrelated and general questions on them. | ||
* This will help reduce the clutter. | * This will help reduce the clutter. | ||
Line 490: | Line 478: | ||
Forum for specific questions: | Forum for specific questions: | ||
− | | style="border:1pt solid #000000;padding:0.176cm;"| | + | | style="border:1pt solid #000000;padding:0.176cm;"| * Do you have general or technical questions on Embedded Linux Device Driver? |
− | * Do you have general or technical questions on Embedded Linux Device Driver? | + | |
* Please visit the FOSSEE forum and post your question. | * Please visit the FOSSEE forum and post your question. | ||
− | |||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Slide 13: | | style="border:1pt solid #000000;padding:0.176cm;"| Slide 13: | ||
Line 499: | Line 485: | ||
Acknowledgment: | Acknowledgment: | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Spoken Tutorial project is funded by MHRD, Government of India. | | style="border:1pt solid #000000;padding:0.176cm;"| Spoken Tutorial project is funded by MHRD, Government of India. | ||
− | |||
|- | |- | ||
| style="border:1pt solid #000000;padding:0.176cm;"| Slide 14: | | style="border:1pt solid #000000;padding:0.176cm;"| Slide 14: |
Revision as of 16:28, 8 July 2020
Visual cue | Narration |
Slide 1:
Welcome slide: |
Welcome to the spoken tutorial on Simple Loadable Module. |
Slide 2:
Learning objectives:
|
In this tutorial, we will learn how to,
|
Slide 3:
System Requirements:
|
To record this tutorial, I am using,
|
Slide 4:
Prerequisites: To follow this tutorial, you should be familiar with:
|
To follow this tutorial, you should be familiar with:
If not, then go through the C/C++ and Linux spoken tutorials on this website |
Slide 5:
Gedit Installation:
|
* To proceed further, make sure that Gedit is installed on your system.
|
Slide 6:
What is a kernel module? |
* Code that is added to the kernel at runtime is called a module.
|
Narration only | I’ll start with a simple example to explain how to create a module. |
Point to the folder and file in desktop | I have saved a file simple_module dot c in a folder DeviceDriver in Desktop. |
Slide:
Code file - sample_module.c |
Please download simple_module dot c from the code files link of this tutorial.
Make use of this file while practising. Remember the file path. |
Type gedit simple_module dot c and press Enter.
Text box |
Let us open this file.
Open the terminal by pressing Ctrl+Alt+T keys simultaneously. Press the Enter key after every command. Go to the folder where simple_module dot c is saved. Type gedit simple_module dot c |
Let us understand the code now. | |
Show the program
Highlight <linux/init.h> Highlight <linux/module.h> Highlight <linux/kernel.h> |
At the start of the program, there are some header files.
Init dot h file is used to start the init process. The module dot h file contains functions related to the modules. The kernel dot h file contains functions such as printk. |
Highlight MODULE_LICENSE(“GPL”)
Highlight GPL |
Next line of code is about GPL.
GPL means GNU Public License. It is otherwise called as GNU, which is a free and open-source license. |
Highlight MODULE_AUTHOR | You can give the author name for your module using this macro as shown here. |
Highlight MODULE_DESCRIPTION | You can simply describe your module using this macro .
I have given the description as “First Linux kernel module”. |
Highlight static int init_func(void)
Highlight return(0) Highlight module_init() |
The init function will execute when a module is loaded into the kernel.
So it is called as an initialization function of a module. If this function fails then the error will be returned. It will return 0 to the kernel on successful execution. Initialization function prints a simple message and return zero. The module init macro is used to register the init function. |
Highlight void exit_func (void)
Highlight module_exit() |
The exit function will execute when the module is unloaded from the kernel.
It is mostly used to cleanup the resources acquired by the module The exit function will undo whatever the init function did. The module underscore exit macro is used to register the exit function. |
Highlight printk
Highlight KERN_INFO Press >> Ctrl + S Press Enter Click on close option. |
In kernel programming, printk is used as a printing function.
It is similar to printf function in C programming. Using this function, string data will get loaded in the kernel log buffer. printk has an optional prefix string, Loglevel such as KERN_INFO. Loglevel specifies the type of message being sent to the kernel message log. KERN underscore INFO is used for informational messages. For more log levels, go through the Additional reading material link of this tutorial. Press Ctrl + S keys to save the program . Close the file. |
Switch back to the terminal. | Switch back to the terminal. |
Let us compile the code. | |
Type >> gedit Makefile
Highlight the makefile Press Enter |
For that, we have to create a Makefile.
Type gedit Makefile The Makefile is a special file containing shell commands. Press Enter. Create a Makefile where you have saved the simple_module dot c . |
Copy paste the makefile content | Type the code as shown. |
Highlight obj-m
Highlight simple_module.o Highlight all: Highlight clean: |
The obj hyphen m variable tells the kernel Makefile that this module needs to be compiled.
When you run the make all command, then commands under all section will be executed. If you run the make clean command, it executes commands under the clean section. |
Highlight -C
Highlight uname -r Highlight (PWD) Highlight M=$(PWD) Highlight modules |
Using hyphen C, we are running make command inside the kernel source directory.
As you know, uname hyphen r finds the current Linux kernel version of a system. PWD means the present working directory. This option tells the kernel makefile that the source code for the driver is in PWD. The word modules tell the kernel makefile to build the modules. But it will not build the complete kernel source code. |
Highlight clean | The word clean tells the kernel makefile to clean the generated object files. |
Press >> Ctrl + S
Click on the close. |
Save the file and close the editor. |
Open the terminal
Type >> make all Press Enter |
Switch back to the terminal.
Let us compile the program, Type make space all. |
Type ls and Press Enter
Highlight ls Show the output |
Now type ls.
This command lists the files in the current directory. Here, you can see the number of files created in this directory. |
Highlight module.symvers
Highlight mod.c |
The module.symvers file contains a list of all symbols
These symbols are exported from the kernel build. The mod.c file contains information about the module. |
Highlight mod.o | Mod.o file is object file resulting from the compilation of the mod.c file. |
Highlight .o | This object file is created from the compilation of the module source file. |
Highlight modules.order | It will list out the order in which the compilation and creation of the .ko file takes place. |
Highlight .ko | This is the final kernel module binary that is loaded into the kernel. |
Type >> clear
Press Enter |
Clear the screen |
Type >> modinfo simple_module.ko
Press Enter Highlight modinfo Highlight filename Highlight description Highlight author, license |
Let us see the details of a module.
Type modinfo space simple_module dot ko. This command displays information about the Linux kernel module. The filename field contains an absolute path to the .ko kernel object file. This field displays a short description of a module. Author field shows author and license field shows the license of the module. |
Highlight srcversion | The srcversion field contains the source code version used to compile a module.
It is calculated automatically at build time. |
Highlight depends | The depends field contains all modules on which this module depends.
It is shown empty here as this module does not depend on any other module. |
Highlight retpoline | Retpoline field indicates that the module is compiled with retpoline method.
Modules must also be compiled with a retpoline-aware compiler. Otherwise the kernel can be vulnerable. Retpoline technique protects the kernel from the hacker’s attacks. |
Highlight name | The name field contains the name of a module. |
Highlight vermagic | This field shows the version magic number of a module.
This version magic number is used while loading the kernel module. The version magic number of module and current kernel version should be the same. Otherwise it will fail to load in the current kernel. |
Type >> make clean
Press Enter |
Type make space clean.
This command removes all object files that are created after the compilation. Type ls. Now there are no object files. |
With this, we come to the end of this tutorial. Let us summarize. | |
Slide 6:
Summary: |
In this tutorial, we learned how to
|
Slide 7:
Assignment: |
As an assignment,
|
Slide 8:
About Spoken Tutorial Project: |
The video at the following link summarizes the Spoken Tutorial project.
Please download and watch it. |
Slide 9:
Spoken Tutorial workshops: |
The Spoken Tutorial Project Team:
For more details, please write to us. |
Slide 10:
Forum questions: |
* Do you have questions in THIS Spoken Tutorial?
|
Slide 11:
Forum for specific questions: |
* The Spoken Tutorial forum is for specific questions on this tutorial.
|
Slide 12:
Forum for specific questions: |
* Do you have general or technical questions on Embedded Linux Device Driver?
|
Slide 13:
Acknowledgment: |
Spoken Tutorial project is funded by MHRD, Government of India. |
Slide 14:
Thank you slide: |
This tutorial has been contributed by FOSSEE and Spoken Tutorial Project, IIT Bombay.
This is Mayuri Panchakshari signing off. Thanks for watching. |