, ,

[SOLVED] Hw2 (w4118 fall 2024)

$25

File Name: Hw2_(w4118_fall_2024).zip
File Size: 197.82 KB

Categories: , , Tags: , ,
5/5 - (1 vote)

HW2 (W4118 Fall 2024)

image w4118.github.io/homework/hw2.html

W4118

DUE: Wednesday 10/2/2024 at 11:59pm ET

Last modified: Fri Sep 27, 0005 hrs (part 4, question 2)

General instructions

All homework submissions are to be made via Git. You must submit a detailed list of references as part of your homework submission indicating clearly what sources you referenced for each homework problem. You do not need to cite the course textbooks and instructional staff. All other sources must be cited. Please edit and include this file in the top-level directory of your homework submission in the main branch of your team repo. Be aware that commits pushed after the deadline will not be

considered. Refer to the homework policy section on the class website for further details.

Group programming problems are to be done in your assigned groups. We will let you know when the Git repository for your group has been set up on GitHub. It can be cloned using the following command. Replace teamN with your team number, e.g. team0. You can find your group number here.

$ git clone [email protected]:W4118/f24-hmwk2-teamN.git

IMPORTANT: You should clone the repository directly in the terminal of your VM, instead of cloning it on your local machine and then copying it into your

VM. The filesystem in your VM is case-sensitive, but your local machine might use a case-insensitive filesystem (for instance, this is the default setting on macs). Cloning the repository to a case-insensitive filesystem might end up clobbering some kernel source code files. See this post for some examples.

This repository will be accessible to all members of your team, and all team members are expected to make local commits and push changes or contributions to GitHub

equally. You should become familiar with team-based shared repository Git commands such as git-pull, git-merge, git-fetch. For more information, see this guide.

There should be at least five commits per member in the team’s Git repository. The point is to make incremental changes and use an iterative development cycle. Follow the Linux kernel coding style. You must check your commits with the run_checkpatch.sh script provided as part of your team repository. Errors from the

script in your submission will cause a deduction of points. (Note that the script only checks the changes up to your latest commit. Changes in the working tree or staging area will not be checked.)

The kernel programming for this assignment will be run using your Linux VM. As part of this assignment, you will be experimenting with Linux platforms and gaining familiarity with the development environment. Linux platforms can run on many

different architectures, but the specific platforms we will be targeting are the X86_64 or Arm64 CPU families. All of your kernel builds will be done in the same Linux VM from homework 1. You will be developing with the Linux 6.8 kernel.

For this assignment, you will write a system call to dump the process tree and a user space program to use the system call.

For students on Arm computers (e.g. macs with M1/M2/M3 CPU): if you want your submission to be built/tested for Arm, you must create and submit a file called

.armpls in the top-level directory of your repo; feel free to use the following one-liner:

$ cd “$(git rev-parse –show-toplevel)” && touch .armpls && git add .armpls && git commit -m “Arm pls”

You should do this first so that this file is present in any code you submit for grading.

For all programming problems, you should submit your source code as well as a single README file documenting your files and code for each part. Please do NOT submit kernel images. The README should explain any way in which your solution

differs from what was assigned, and any assumptions you made. You are welcome to include a test run in your README showing how your system call works. It should also state explicitly how each group member contributed to the submission and how much time each member spent on the homework. The README should be placed in the top level directory of the main branch of your team repo (on the same level as the linux/ and user/ directories).

Part 1: Build your own Linux 6.8.0 kernel and install and run it in your Linux VM

You will need to install your own custom kernel in your VM to do this assignment. The source code for the kernel you will use is located in your team repository on GitHub. Follow the instructions provided here to build and install the kernel in your VM.

Part 2: Write a new system call in Linux

General description

The system call you write will retrieve information from each thread associated with each process in some subset of the process tree. That thread information will be

stored in a buffer and copied to user space.

Within the buffer, threads associated with the same process (main thread) should be grouped together. These thread groups should be sorted in breadth-first-search

(BFS) order of the associated process within the process tree. Within each thread group, the threads should be sorted in ascending order of PID. You may ignore PID rollover for the purposes of ordering threads. See the hint on PID vs TGID below for more information on what we mean when we say the PID of a thread. See also Additional requirements below for an example ordering.

The prototype for your system call will be:

int ptree(struct tskinfo *buf, int *nr, int root_pid);

You should define struct tskinfo as:

struct tskinfo {

pid_t pid; /* process id */

pid_t tgid; /* thread group id */ pid_t parent_pid; /* process id of parent */

int level; /* level of this process in the subtree */ char comm[16]; /* name of program executed */

unsigned long userpc; /* pc/ip when task returns to user mode */

unsigned long kernelpc; /* pc/ip when task is run by schedule() */

};

You should put this definition in include/uapi/linux/tskinfo.h as part of your solution. Note that this path is relative to the root directory of your kernel source tree. The uapi/ directory contains the user space API of the kernel, which should include structures used as arguments for system calls. As an example, you may find it helpful to look at how struct tms is defined and used in the kernel. This is another structure that is part of the user space API and is used for getting process times.

To ensure that user space programs have access to your updated set of header files, you must do the following in the root directory of your kernel source tree:

$ sudo make headers_install INSTALL_HDR_PATH=/usr

This copies the UAPI header files to /usr/. You should now be able to see your new header file as /usr/include/linux/tskinfo.h. You should do this every time you update a header file that is part of the user space API of the kernel.

Description of parameters

buf points to a buffer to store the thread data from the process tree. The thread data stored inside the buffer should be sorted first according to the associated main process in BFS order, where processes at a higher level (level 0 is considered to be higher than level 10) should appear before processes at a lower level. Then, when listing threads within a process’s thread group, the threads should be stored in ascending order of PID.

image nr points to an integer that represents the size of this buffer (number of entries).

The system call copies at most *nr entries of thread data to the buffer, and

stores the number of entries actually copied in *nr. Note that the actual size of the buffer will be *nr * sizeof(struct tskinfo) bytes.

image root_pid represents the PID of the thread that will serve as the root of the subtree you are required to traverse. See the hint below on PID vs TGID for more information on what we mean when we say the PID of a thread.

Information of nodes outside this subtree shouldn’t be put into buf. If the

thread with PID root_pid is part of a thread group with multiple threads, they (and all of their children) should be included in buf, unless the

maximum number of entries is reached. Note that this means you might end up including threads whose PID is smaller than root_pid, as long as these threads are in the same thread group as the thread with PID root_pid.

image Return value: The function defining your system call should return 0 on

success, and return an appropriate error on failure such that errno contains the correct error code.

Additional requirements

You should fill the buffer when traversing the tree primarily in BFS order of process (main thread), then for each thread within a process in ascending order of PID until either every thread is stored, or the number of threads reaches nr. E.g. If we have a tree as below:

0

/

1,2 3,4,5

/ /

6 7 8 9

and you are given a buffer where *nr is 10, the buffer should be filled as follows (excluding program counters):

[

tskinfo {pid-0, tgid-0, ppid-0, level-0, … }, tskinfo {pid-1, tgid-1, ppid-0, level-1, … }, tskinfo {pid-2, tgid-1, ppid-0, level-1, … }, tskinfo {pid-3, tgid-3, ppid-0, level-1, … }, tskinfo {pid-4, tgid-3, ppid-0, level-1, … }, tskinfo {pid-5, tgid-3, ppid-0, level-1, … }, tskinfo {pid-6, tgid-6, ppid-1, level-2, … }, tskinfo {pid-7, tgid-7, ppid-2, level-2, … }; tskinfo {pid-8, tgid-8, ppid-4, level-2, … }; tskinfo {pid-9, tgid-9, ppid-4, level-2, … };

]

Note that in this example, there are 7 processes (0, 1, 3, 6, 7, 8, and 9) and 3

threads (2, 4, and 5). Also, 7 is a child of 2 not 1, and 8 and 9 are children of 4. In this scenario, commands like ps might differ from ours in output (see the hint below on PID vs TGID for an explanation). Note also that the levels are zero- indexed, and level 0 refers to tasks at the same level as the task with PID root_pid (this might not always be the task with PID 0).

There should be no duplicate information of processes inside the buffer.

If a value to be set in tskinfo is accessible through a pointer which is null, set the value in tskinfo to 0.

Your system call should be assigned the number 462 and be implemented in a file ptree.c in the kernel/ directory, i.e. kernel/ptree.c. Note again that this path is relative to the root directory of your kernel source tree. You will need to modify the appropriate kernel Makefile so that it is aware of your new source code file, or it will not know to compile your source code file with the rest of the kernel code.

Retrieving some of the information for your struct tskinfo will be architecture-specific (i.e. it will be implemented differently depending on

whether your platform is x86-64 or ARM64). You should call generic functions from your main kernel/ptree.c file for retrieving these values, but implement them in arch/[x86 or arm64]/kernel/ptree.c (and make sure you modify the Makefile in the same folder appropriately). This ensures that only the correct retrieval function is included when your kernel is compiled. Although you are only required to complete solutions for one architecture, defining these functions in both arch/x86 and arch/arm64 will allow you to develop alongside students with a different platform. Note that you can put declarations for these functions in include/linux/ptree.h.

Your algorithm shouldn’t use recursion since the size of the function stack in the kernel is quite small, typically only 8KB.

Your code should handle errors that could occur. For example, some error numbers your system call should detect and return include:

-EINVAL: if buf or nr are null, or if the number of entries is less than 1.

-EFAULT: if buf or nr are outside the accessible address space.

Hints

This syscall implementation has a few different components. We recommend that you approach the problem in steps, doing incremental development and testing to check the correctness of the functionality along the way:

To understand how to fill a struct tskinfo with the relevant information, you should first write a simple version of the system call which returns the information for one process only, given its PID.

Now expand the functionality to allow listing all/any process in the given subtree of the process tree (not including threads). This will help you understand how to implement BFS over the process tree without worrying about the nuances of listing threads versus processes.

Finally, write the system call that works for both processes and threads. Think carefully about how threads intersect with the process tree, and how you must modify your BFS algorithm to include them. You may find this blog post helpful for relating processes and threads.

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] Hw2 (w4118 fall 2024)
$25