Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
4k views

Is there a way to figure out what is using a Linux kernel module?

If I load a kernel module and list the loaded modules with lsmod, I can get the "use count" of the module (number of other modules with a reference to the module). Is there a way to figure out what is ...
10
votes
4answers
206 views

A database-backed operating system

Here where I work I am attending a series of lectures about database query optimizers. While the speaker was introducing databases, he made a very insightful comment about a kernel having basically to ...
9
votes
3answers
628 views

New to Linux Kernel/Driver development

Recently, i began developing a driver of an embedded device running linux. Until now i have only read about linux internals. Having no prior experience in driver devlopment, i am finding it a tad ...
9
votes
8answers
1k views

Kernel Scheduling for 1024 CPUs

Azul Systems has an appliance that supports thousands of cache coherent CPUs. I would love insight into what changes would need to occur to an operating system in order to schedule thousands of ...
8
votes
1answer
126 views

Linux Kernel - Get last written memory block

In the linux kernel, are there any data structures that automatically always hold the last written block number for a partition? I can't find any built-in kernel source that could be used to get this ...
8
votes
10answers
4k views

What is a good barebones linux distro for beginner kernel development?

In my Operating Systems class we are looking to modify a Linux kernel with some simple system calls of our own in C. What would be a good distro suited for this purpose? We don't need any frills, no ...
7
votes
4answers
573 views

Is it easier to write filesystem drivers in userspace than in kernel space?

I will use the Linux NTFS driver as an example. The Linux kernel NTFS driver only has very limited write support in the kernel, and after 5 years it is still considered experimental. The same ...
7
votes
1answer
968 views

Linux kernel - add system call dynamically through module

Is there any way to add a system call dynamic, such as through a module? I have found places where I can override an existing system call with a module by just changing the sys_call_table[] array to ...
7
votes
2answers
475 views

Linux Kernel - what function holds the source where port numbers are randomly chosen?

Anyone know what function or file in linux holds the algorithm that finds a random port to use for the bind() system call? I'm hunting all over and cannot find the method that contains this algorithm ...
6
votes
8answers
374 views

What is a “hook” and how can I write one in Java? And how to communicate with kernel to know the keys pressed by the user/registering with OS

Although I searched a lot, it is still unclear to me as to what exactly a "hook" is. For instance, I read this post on wiki answers : A hook is a method of interposing a piece of code in front of ...
6
votes
1answer
338 views

What is the sequence followed by the Linux kernel to configure a device?

As I understood after reading the chapter related to The Linux Device Model in the Linux Device Drivers 3rd Edition, when a new device is configured, the kernel (2.6) follows more or less this ...
5
votes
2answers
82 views

Is there a way for a kernel module to find section addresses of another loaded module?

On an x86 system, I have a Linux kernel module ("watcher module") that gets notified by the kernel each time a particular kernel module ("target") is loaded. Almost any kernel module can be a target. ...
5
votes
2answers
131 views

Struct that apparently defines no instances in Unix v6

I'm going through the code of Unix version 6 with the Lion's book. One of the header files (param.h, can be accessed here) defines the following structs: /*struct to access integers*/ /*single ...
5
votes
3answers
196 views

Linux Kernel - Where in the kernel are blocks of data physically written to specific disk partitions?

I'm modifying the Linux kernel and am trying to find where in the kernel source blocks of data are physically written to disk partitions such as ubd0. Where does this occur in kernel source? The ...
4
votes
1answer
164 views

How do I allocate memory buffers which may be reclaimed by the OS for caching in a Mac OS X kernel extension?

Based on documentation and xnu source I've read, I understand that Mac OS X caches file I/O using the Unified Buffer Cache (UBC). The UBC grows as big as it can based on available RAM, but UBC pages ...
4
votes
1answer
67 views

Saving information in the IO System

I need to write a kernel module that simulate a "multicaster" Using the /proc file system. Basically it need to support the following scenarios: 1) allow one write access to the /proc file and many ...
4
votes
2answers
3k views

How do I use ioctl() to manipulate my kernel module?

So I'm trying to write a kernel module that uses the linux/timer.h file. I got it to work inside just the module, and now I am trying to get it to work from a user program. Here is my kernel module: ...
4
votes
2answers
3k views

Getting the process id of a current process without unistd.h

I'm working on a deadlock detection algorithm and I'm only given kernel level libraries, i.e. #include <linux/somelibrary> and nothing else. Are there kernel-level facilities that will allow me ...
3
votes
1answer
38 views

System programming in Ubuntu

[Question moved in from askubuntu.com] I'd like to get into Ubuntu systems programming; to be specific - developing and debugging device drivers. However, I'm not sure about how to get started, even ...
3
votes
3answers
116 views

Can stdio be used while coding for a Kernel…?

I need to build a OS, a very small and basic one, with actually least functionality, coded in C. Probably a CUI OS which does some memory management and has at least a text editor and a calculator, ...
3
votes
2answers
217 views

How do I share data between kernel c programs and user level c programs?

I am using ubuntu 9.04 with kernel 2.8.32. I created a simple system call that counts the number of clone and execve calls. When the user/shell calls this system call I would like it to pass back to ...
3
votes
2answers
303 views

USB proxy driver or equivalent solution?

Problem: Mediate USB traffic/data I would like to accept inbound traffic on a specific USB port and replicate it exactly as outbound traffic on another specific USB port, in effect accomplishing a ...
3
votes
2answers
616 views

Function caller in linux kernel

Is there a way to get function caller in linux kernel? I know __func__ returns the function name which is executing. I am looking for the function which called "__func__"
3
votes
5answers
683 views

Execute a program in kernel space in Linux

If I want to execute a user program (not a kernel module) in Linux kernel space, what options do I have? I have looked at KML(kernel mode linux) but that is specific to IA-32 architecture. I want a ...
3
votes
2answers
437 views

copy_from_user twice - character device

I've implemented a character device and I'd like to ask If this is correct: In a Userspace I've a struct with 2 pointers. I write this struct into my device. In my write function in char device I ...
3
votes
4answers
472 views

Linux kernel modules - security risk?

How much of a security risk are linux kernel modules? I remember reading that it was possible if someone got access, that all they had to do was load a rootkit module. Is this correct? Is there any ...
3
votes
7answers
431 views

splitting a full filename into parts

I am creating a function that will split a full unix filename(like /home/earlz/test.bin) into its individual parts. I have got a function, and it works for the first two parts perfect, but after that ...
2
votes
0answers
48 views

Walking page tables of a process in Linux

i'm trying to navigate the page tables for a process in linux. In a kernel module i realized the following function: static struct page *walk_page_table(unsigned long addr) { pgd_t *pgd; ...
2
votes
1answer
110 views

Kernel high memory

In Operating System Design the kernel is most always mapped to a high virtual memory address, thus gaining control of the upper memory part. The space left below is for applications running in user ...
2
votes
1answer
42 views

Porting a kernel to a different architecture?

I want to port the xnu kernel to the ARM architecture, with the ultimate goal of being able to run a full kernel inside Qemu. While I do realise that this is a very difficult task, I still want to ...
2
votes
2answers
352 views

Android Kernel Module Programming

I've programmed a kernel module. The module is part of a thesis on the subject of Smartphone Security. The module reads a file and send its content over a UDP socket. The module is working correctly ...
2
votes
2answers
46 views

Apart from kernel timer, is there any way to perform a function repeatedly in a set interval?

I am writing a kernel module which acts as a memory storage. And I want to backup the data every 10 seconds to a file. I think kernel timer can solve this, but I think it is too troublesome to be used ...
2
votes
2answers
106 views

How do I open a directory at kernel level using the file descriptor for that directory?

I'm working on a project where I must open a directory and read the files/directories inside at kernel level. I'm basically trying to find out how ls is implemented at kernel level. Right now I've ...
2
votes
2answers
196 views

Replace system call in linux kernel 3

I am interested in replacing a system call with a custom that I will implement in linux kernel 3. I read that the sys call table is no longer exposed. Any ideas? any reference to this ...
2
votes
2answers
152 views

Shared Memory between User Space and Kernel Threads

I am developing a kernel application which involves kthreads. I create an array of structure and allocate memory using malloc in user-space. Then I call a system call (which I implemented) and pass ...
2
votes
1answer
70 views

Ptrace single step in the kernel from process context?

I was wondering what happens if from the kernel (Linux in this case) you call ptrace_request with PTRACE_SINGLESTEP in process context (system call, page fault, etc...). Will it single step the user ...
2
votes
1answer
94 views

Existing Linux Module Symbol

I am porting a Linux module (PageMgrMod) to a more recent kernel, but now the functions are not visible to other modules. For example, loading a module that uses PageMgrMod gives the error no ...
2
votes
1answer
84 views

Structure of two interdependent Linux kernel modules?

In a project I am involved in we have the following hardware setup: Linux PC ------> "Router" +----> "Device A" | +----> "Device B" ...
2
votes
1answer
68 views

Paging Code Error

I have a toy kernel that I'm working with running under x86 on bochs. When I enable paging, bochs resets with a triple fault error. It seems that it is every and any memory access which triggers the ...
2
votes
1answer
93 views

How can I get the value of “%d” variables in dynamic_debug info of Linux kernel?

I enabled config_dynamic_debug=y in the Linux kernel customized by myself, and following the dynamic_debug documentation shipped with kernel source code, I run the following command to enable the ...
2
votes
2answers
132 views

Practice Kernel Programming [closed]

I am trying to learn more about UNIX and Kernel Programming. My main interest is learning to programming the kernel, work on device drivers, network layers. I know that these are very wide topics but ...
2
votes
1answer
159 views

Question about writing my own system call in FreeBSD

OK, so I just finish reading the implementation of kill(2) of FreeBSD, and am trying to write my own "kill". This system call takes uid and signum and sends the signal to processes owned by uid, ...
2
votes
1answer
78 views

VMA Operation Question

Does anyone know when the close function pointer of the struct vm_operations_struct (linux/mm.h) is called? Is it when munmap is called for the specified region? If so is this synchronous, meaning ...
2
votes
1answer
173 views

Reading data from mm_struct or vm_area_struct of user process

I was wondering how I would go about copying data from a page of a user process while in kernel mode. I have access to the mm_struct and all the vm_area_structs of the process. In vm_ops I saw the ...
2
votes
1answer
539 views

How can I make android print out core dumps for crashing system applications?

I'M writing some stuff in the wonderful world of system libraries, and I'm getting crashes in libc, which my library is apparently passing bad values. Is there any way that I can have Android ...
2
votes
5answers
275 views

kernel development

I want to develop the entire kernel(right from scratch) in c++.any experts in kernel development,please suggest me the way(so that much will not be wasted).
2
votes
1answer
304 views

Performing an ioctl from the kernel-space

I'm writing a kernel driver that needs to perform an ioctl on another device. I realize this is not the best way to handle the code, but this is just a temporary fix for now. I'm getting back error ...
2
votes
2answers
294 views

How does one disable access to the keyboard and mouse from a linux kernel module?

I'm trying to write a kernel module which disables input between certain times of day. I found out how to get the time (How to get current hour (time of day) in linux kernel space) and how to schedule ...
2
votes
2answers
452 views

How to load kernel or be able to use more space in own bootloader?

I've been following this: ( http://www.codeproject.com/KB/tips/boot-loader.aspx ) But not sure what and how to do next. How to load self written kernel in it? Or how to make more place than in single ...
2
votes
3answers
184 views

Can I printk in binary?

I have a bitmap that I need to debug, and it would be much easier for me to printk the number in binary rather than decimal. Can I do this?

1 2 3 4 5