Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

One of the most highly touted advantages of Linux is the fact that it is open source and anyone can view, modify, and contribute to

One of the most highly touted advantages of Linux is the fact that it is open source and anyone can view, modify, and contribute to the Linux source code. In this project, you will make a small change to the Linux source code. Follow the instructions called Linux Kernel Modules beginning on page 96 of the textbook. Take screenshots of the code that you add to the Linux source as you go and paste them into a Word document. In the final part of the assignment, you will also need to take screenshots of the kernel log buffer to show successful addition, traversal, and deletion of the linked list elements. Finally, you will need to write a one to two-page reflection paper documenting the steps you have been through to complete the project, lesson learned, things that you like and dislike most about this project, difficulties you encountered and how you solved them, and what you should have done to avoid such difficulties.

image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribed

Programming Projects Linux Kernel Modules In this project, you will learn how to create a kernel module and load it into the Linux kernel. The project can be completed using the Linux virtual machine that is available with this text. Although you may use an editor to write these C programs, you will have to use the terminal application to compile the programs, and you will have to enter commands on the command line to manage the modules in the kernel. As you'll discover, the advantage of developing kernel modules is that it is a relatively easy method of interacting with the kernel, thus allowing you to write programs that directly invoke kernel functions. It is important for you to keep in mind that you are indeed writing kernel code that directly interacts with the kernel. That normally means that any errors in the code could crash the system! However, since you will be using a virtual machine, any failures will at worst only require rebooting the system. Part I-Creating Kernel Modules The first part of this project involves following a series of steps for creating and inserting a module into the Linux kernel. You can list all kemel modules that are currently loaded by entering the command sod This command will list the current kemel modules in three columns name, size, and where the module is being used. The following program (named simple.c and available with the source code for this text) illustrates a very basic kernel module that prints appropriate messages when the kemel module is loaded and unloaded. include include include This function is called when the module is loaded. int simple.init(void) / printk (KERN_INFO "Loading Module n"); return 0; / /* This function is called when the module is removed. void simple_exit(void) printk (KERNINFO "Removing Module n"); / Macros for registering module entry and exit points. module_init(Simple_init); module_exit(simple_exit): MODULE LICENSE ("GPL"); MODULE_DESCRIPTION("Simple Module"): MODULE_AUTHOR("SGG"); The function simple_init is the module entry point, which represents the function that is invoked when the module is loaded into the kernel. Similarly, the simple_exit() function is the module exit point-the function that is called when the module is removed from the kernel The module entry point function must return an integer value, with representing success and any other value representing failure. The module exit point function returns void. Neither the module entry point nor the module exit point is passed any parameters. The two following macros are used for registering the module entry and excit points with the kernel: module_init() module_exito Chapter 2 Operating System Structures Notice how both the module entry and exit point functions make calls to the printk function printk) is the kernel equivalent of print , yet its output is sent to a kernel log buffer whose contents can be read by the dimesg command. One difference between printf() and printk) is that printk allows us to specify a priority flag whose values are given in the (linux/printk. b> include file. In this instance, the priority is KERN_INFO, which is defined as an informational message. The final lines-MODULE LICENSEO, MODULE_DESCRIPTION, and MOD- ULE AUTHOR)-represent details regarding the software license, description of the module, and author. For our purposes, we do not depend on this information, but we include it because it is standard practice in developing kernel modules This kemel module simple.c is compiled using the Makefile accom- panying the source code with this project. To compile the module, enter the following on the command line: make The compilation produces several files. The file simple.ko represents the compiled kernel module. The following step illustrates inserting this module into the Linux kernel Loading and Removing Kernel Modules Kernel modules are loaded using the insmod command, which is run as follows: sudo insmod simple.ko To check whether the module has loaded, enter the lsmod command and search for the module simple. Recall that the module entry point is invoked when the module is inserted into the kernel. To check the contents of this message in the kernel log buffer, enter the command You should see the message "Loading Module." Removing the kernel module involves invoking the mmmod command (notice that the .ko suffix is unnecessary) sudo rumod simple Be sure to check with the dnesg command to ensure the module has been removed. Because the kemel log buffer can fill up quickly, it often makes sense to clear the buffer periodically. This can be accomplished as follows: sudo dnesg - Part I Assignment Proceed through the steps described above to create the kernel module and to load and unload the module. Be sure to check the contents of the kernel log buffer using dnesg to ensure you have properly followed the steps Part II-Kernel Data Structures The second part of this project involves modifying the kemel module so that it uses the kernel linked-list data structure. In Section 1.10, we covered various data structures that are common in operating systems. The Linux kernel provides several of these structures. Here, we explore using the circular, doubly linked list that is available to kernel developers. Much of what we discuss is available in the Linux source code- in this instance, the include file clinux/list.h>--and we recommend that you examine this file as you proceed through the following steps Initially, you must define a struct containing the elements that are to be inserted in the linked list. The following C struct defines birthdays: struct birthday { int day: int month; int year: struct list head list: Notice the member struct list_head list. The list_head structure is defined in the include file clinux/types.h>. Its intention is to embed the linked list within the nodes that comprise the list. This list_head structure is quite simple-it merely holds two members, next and prev, that point to the next and previous entries in the list. By embedding the linked list within the structure, Linux makes it possible to manage the data structure with a series of acro functions. Inserting Elements into the Linked List We can declare a list head object, which we use as a reference to the head of the list by using the LIST HEAD macro static LIST HEAD(birthday_list): This macro defines and initializes the variable birthday_list, which is of type struct list head. 100 Chapter 2 Operating System Structures We create and initialize instances of struct birthday as follows: struct birthday person; person - kmalloc(sizeof(*person), GFP KERNEL); person->day - 2; person-month- 8: person->year - 1995; INIT-LIST-HEAD (&person->list); The kmalloc() function is the kernel equivalent of the user-level malloc() function for allocating memory, except that kernel memory is being allocated. (The GFP-KERNEL flag indicates routine kernel memory allocation.) The macro INIT LIST_HEAD() initializes the list member in struct birthday. We can then add this instance to the end of the linked list using the list_add_tail macro: listadd_tail(&person->list, birthday_list); Traversing the Linked List Traversing the list involves using the list for each_entry accepts three parameters: Macro, which A pointer to the structure being iterated over A pointer to the head of the list being iterated over The name of the variable containing the list head structure The following code illustrates this macro struct birthday *ptr; list for each_entry (ptr, &birthday-list, list) { / on each iteration ptr points / /* to the next birthday struct +/ Removing Elements from the Linked List Removing elements from the list involves using the list del macro, which is passed a pointer to struct list head list del(struct listhead -element) This removes element from the list while maintaining the structure of the remainder of the list. Perhaps the simplest approach for removing all elements from a linked list is to remove each element as you traverse the list. The macro list for each entry safe) behaves much like list for each entry) Bibliographical Notes 101 except that it is passed an additional argument that maintains the value of the next pointer of the item being deleted. This is necessary for preserving the structure of the list.) The following code example illustrates this macro: struct birthday ptr. next list_foreach_entry safe (ptr, next,&birthday_list, list) { 1. on each iteration ptr points / 1. to the next birthday struct +/ listel(&ptr->l18t); kfree(ptr); Notice that after deleting each element, we return memory that was previously allocated with kmalloc back to the kernel with the call to kfree). Careful memory management-which includes releasing memory to prevent memory leaks-is crucial when developing kernel-level code. Part II Assignment In the module entry point, create a linked list containing five struct birthday elements. Traverse the linked list and output its contents to the kernel log buffer. Invoke the dimesg command to ensure the list is properly constructed once the kemel module has been loaded In the module exit point, delete the elements from the linked list and return the free memory back to the kemel Again, invoke the dmesg command to check that the list has been removed once the kernel module has been unloaded Programming Projects Linux Kernel Modules In this project, you will learn how to create a kernel module and load it into the Linux kernel. The project can be completed using the Linux virtual machine that is available with this text. Although you may use an editor to write these C programs, you will have to use the terminal application to compile the programs, and you will have to enter commands on the command line to manage the modules in the kernel. As you'll discover, the advantage of developing kernel modules is that it is a relatively easy method of interacting with the kernel, thus allowing you to write programs that directly invoke kernel functions. It is important for you to keep in mind that you are indeed writing kernel code that directly interacts with the kernel. That normally means that any errors in the code could crash the system! However, since you will be using a virtual machine, any failures will at worst only require rebooting the system. Part I-Creating Kernel Modules The first part of this project involves following a series of steps for creating and inserting a module into the Linux kernel. You can list all kemel modules that are currently loaded by entering the command sod This command will list the current kemel modules in three columns name, size, and where the module is being used. The following program (named simple.c and available with the source code for this text) illustrates a very basic kernel module that prints appropriate messages when the kemel module is loaded and unloaded. include include include This function is called when the module is loaded. int simple.init(void) / printk (KERN_INFO "Loading Module n"); return 0; / /* This function is called when the module is removed. void simple_exit(void) printk (KERNINFO "Removing Module n"); / Macros for registering module entry and exit points. module_init(Simple_init); module_exit(simple_exit): MODULE LICENSE ("GPL"); MODULE_DESCRIPTION("Simple Module"): MODULE_AUTHOR("SGG"); The function simple_init is the module entry point, which represents the function that is invoked when the module is loaded into the kernel. Similarly, the simple_exit() function is the module exit point-the function that is called when the module is removed from the kernel The module entry point function must return an integer value, with representing success and any other value representing failure. The module exit point function returns void. Neither the module entry point nor the module exit point is passed any parameters. The two following macros are used for registering the module entry and excit points with the kernel: module_init() module_exito Chapter 2 Operating System Structures Notice how both the module entry and exit point functions make calls to the printk function printk) is the kernel equivalent of print , yet its output is sent to a kernel log buffer whose contents can be read by the dimesg command. One difference between printf() and printk) is that printk allows us to specify a priority flag whose values are given in the (linux/printk. b> include file. In this instance, the priority is KERN_INFO, which is defined as an informational message. The final lines-MODULE LICENSEO, MODULE_DESCRIPTION, and MOD- ULE AUTHOR)-represent details regarding the software license, description of the module, and author. For our purposes, we do not depend on this information, but we include it because it is standard practice in developing kernel modules This kemel module simple.c is compiled using the Makefile accom- panying the source code with this project. To compile the module, enter the following on the command line: make The compilation produces several files. The file simple.ko represents the compiled kernel module. The following step illustrates inserting this module into the Linux kernel Loading and Removing Kernel Modules Kernel modules are loaded using the insmod command, which is run as follows: sudo insmod simple.ko To check whether the module has loaded, enter the lsmod command and search for the module simple. Recall that the module entry point is invoked when the module is inserted into the kernel. To check the contents of this message in the kernel log buffer, enter the command You should see the message "Loading Module." Removing the kernel module involves invoking the mmmod command (notice that the .ko suffix is unnecessary) sudo rumod simple Be sure to check with the dnesg command to ensure the module has been removed. Because the kemel log buffer can fill up quickly, it often makes sense to clear the buffer periodically. This can be accomplished as follows: sudo dnesg - Part I Assignment Proceed through the steps described above to create the kernel module and to load and unload the module. Be sure to check the contents of the kernel log buffer using dnesg to ensure you have properly followed the steps Part II-Kernel Data Structures The second part of this project involves modifying the kemel module so that it uses the kernel linked-list data structure. In Section 1.10, we covered various data structures that are common in operating systems. The Linux kernel provides several of these structures. Here, we explore using the circular, doubly linked list that is available to kernel developers. Much of what we discuss is available in the Linux source code- in this instance, the include file clinux/list.h>--and we recommend that you examine this file as you proceed through the following steps Initially, you must define a struct containing the elements that are to be inserted in the linked list. The following C struct defines birthdays: struct birthday { int day: int month; int year: struct list head list: Notice the member struct list_head list. The list_head structure is defined in the include file clinux/types.h>. Its intention is to embed the linked list within the nodes that comprise the list. This list_head structure is quite simple-it merely holds two members, next and prev, that point to the next and previous entries in the list. By embedding the linked list within the structure, Linux makes it possible to manage the data structure with a series of acro functions. Inserting Elements into the Linked List We can declare a list head object, which we use as a reference to the head of the list by using the LIST HEAD macro static LIST HEAD(birthday_list): This macro defines and initializes the variable birthday_list, which is of type struct list head. 100 Chapter 2 Operating System Structures We create and initialize instances of struct birthday as follows: struct birthday person; person - kmalloc(sizeof(*person), GFP KERNEL); person->day - 2; person-month- 8: person->year - 1995; INIT-LIST-HEAD (&person->list); The kmalloc() function is the kernel equivalent of the user-level malloc() function for allocating memory, except that kernel memory is being allocated. (The GFP-KERNEL flag indicates routine kernel memory allocation.) The macro INIT LIST_HEAD() initializes the list member in struct birthday. We can then add this instance to the end of the linked list using the list_add_tail macro: listadd_tail(&person->list, birthday_list); Traversing the Linked List Traversing the list involves using the list for each_entry accepts three parameters: Macro, which A pointer to the structure being iterated over A pointer to the head of the list being iterated over The name of the variable containing the list head structure The following code illustrates this macro struct birthday *ptr; list for each_entry (ptr, &birthday-list, list) { / on each iteration ptr points / /* to the next birthday struct +/ Removing Elements from the Linked List Removing elements from the list involves using the list del macro, which is passed a pointer to struct list head list del(struct listhead -element) This removes element from the list while maintaining the structure of the remainder of the list. Perhaps the simplest approach for removing all elements from a linked list is to remove each element as you traverse the list. The macro list for each entry safe) behaves much like list for each entry) Bibliographical Notes 101 except that it is passed an additional argument that maintains the value of the next pointer of the item being deleted. This is necessary for preserving the structure of the list.) The following code example illustrates this macro: struct birthday ptr. next list_foreach_entry safe (ptr, next,&birthday_list, list) { 1. on each iteration ptr points / 1. to the next birthday struct +/ listel(&ptr->l18t); kfree(ptr); Notice that after deleting each element, we return memory that was previously allocated with kmalloc back to the kernel with the call to kfree). Careful memory management-which includes releasing memory to prevent memory leaks-is crucial when developing kernel-level code. Part II Assignment In the module entry point, create a linked list containing five struct birthday elements. Traverse the linked list and output its contents to the kernel log buffer. Invoke the dimesg command to ensure the list is properly constructed once the kemel module has been loaded In the module exit point, delete the elements from the linked list and return the free memory back to the kemel Again, invoke the dmesg command to check that the list has been removed once the kernel module has been unloaded

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions