Tagged Questions
The kernel-module tag has no wiki summary.
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
5answers
3k views
linux kernel module linker warnings: “*** Warning: <function> [<module>] undefined!” - any way to get rid of them?
While compiling Linux kernel modules that depend on each other, linker gives undefined symbol warnings like
Building modules, stage 2.
MODPOST
*** Warning: "function_name1" [module_name] ...
9
votes
1answer
364 views
How to write kernel space memory (physical address) to a file using O_DIRECT?
I want to write a physical memory to a file. The memory itself will not be touched again, thus I want to use O_DIRECT to gain the best write performance.
My first idea was to open "/dev/mem" and mmap ...
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
1answer
6k views
How to read/write files within a Linux kernel module?
I know all the discussions about why one should not read/write files from kernel, instead how to use /proc or netlink to do that. I want to read/write anyway. I have also read
Driving Me Nuts - ...
7
votes
1answer
196 views
Linux: How to assign USB driver to device
This question is two-fold:
1- How do you manually detach a driver from a USB device and attach a different one? For example, I have a device that when connected automatically uses the usb-storage ...
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
1k views
Changing file permissions in kernel
I am writing kernel module(C in Linux) and I want to change the permission of the other files in it.
any solution?
since I am in kernel I can't use chmod syscall and ...
thanks for your help
This is ...
7
votes
2answers
6k views
How do I configure modprobe to find my module?
I'm trying to get a kernel module to load at boot.
If I run insmod /path/to/module.ko, it works fine. But this has to be repeated every time I reboot.
If I run modprobe /path/to/module.ko, it can't ...
6
votes
3answers
440 views
Is there a size limit for kernel module in linux?
I have a problem loading a kernel module, there is a large data structure, around the size of 2Gb of memory - whether I preallocate the table (so that it shows in .bss when I do size -A module.ko or ...
6
votes
5answers
9k views
File I/O in a Linux kernel module
I'm writing a Linux kernel module that needs to open and read files. What's the best way to accomplish that?
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
3answers
2k views
How to get current hour (time of day) in linux kernel space
I'm writing a kernel module that checks to see if the time is between two specified hours, and disables input if it is. This has to do with me wanting to make sure I go to bed early. (I know I could ...
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
3answers
159 views
casting a pointer to integer issues warning on 64bit arch
I'm writing a linux kernel module that makes use of the exported symbol open_exec
struct file *open_exec(const char *name)
It returns a pointer, and I can check for an error with the IS_ERR macro:
...
4
votes
2answers
3k views
How do you create a loadable kernel module for Android?
I know there a number of walkthroughs and tutorials floating around out there which describe this activity, but after having read many of them I still can't get this working. If anyone has the ...
4
votes
1answer
2k views
How to reload modified kernel modules
How can I instruct the system to reload all kernel modules that have changed?
(I am developing a driver with several modules. I want a quick and error-free method to reload all the modules that ...
4
votes
2answers
170 views
How to use find_module?
How to use linux kernel's find_module() function?
The documentation says "must hold module_mutex".
Does that mean that I should acquire
a lock in my module code before
searching for a pointer to ...
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
2k views
Compile linux kernel (2.6) module including non kernel headers
Is it possible to compile a linux kernel(2.6) module that includes functionality defined by non-kernel includes?
For example:
kernelmodule.h
#include <linux/init.h>
#include ...
3
votes
1answer
73 views
find process time in kernel routines as percentage of elapsed time since process started
I am trying to find the percentage of time a process has been in kernel routines since time it has started. The problem is that I am not sure what arguments I should be passing to the function: ...
3
votes
1answer
79 views
How to stop /dev/random population from entropy pool. Can I unload a module to do it?
I'm making a TRNG that talks to my PC via USB as a CDC device. I want to stop /dev/random from sourcing entropy from the entropy pool entirely and use my data instead. The theory is that the pool can ...
3
votes
2answers
94 views
printk second output
When I printk(KERN_INFO, ...), I get something like this:
<6>[116584.000183] ...
What is the number between the square brackets exactly?
3
votes
1answer
854 views
Kernel Thread implementation
I wrote the following code to create a kernel thread:
#include<linux/init.h>
#include<linux/module.h>
#include<linux/kernel.h>
#include<linux/kthread.h>
...
3
votes
3answers
606 views
How can I obtain battery level inside a Linux kernel module?
I am trying to get the battery level inside a Linux kernel module (the module is inserted via modprobe). I would ideally like to use a kernel API call to get the battery information. I have searched ...
3
votes
1answer
217 views
How to find the version of a compiled kernel module?
I am in a situation where it would be very convenient to find the version of a loaded kernel module by querying the loaded module or .ko file.
Is there a standard way to do this without digging into ...
3
votes
2answers
556 views
Getting list of network devices inside the Linux kernel
I've been looking through net/core/dev.c and other files to try to find out how to get the list of network devices that are currently configured and it's proving to be a little difficult to find.
The ...
3
votes
1answer
132 views
User access in concurrent
I'm trying to find out about the problems of removing a module on an SMP system
Any good explanations?
3
votes
2answers
591 views
How to hook syscall table at runtime on PPC Linux?
Subject: PPC Assembly Language - Linux Loadble Kernel Module
Detail: How access local TOC area (r2) when called from kernel in syscall table hook?
I have written a loadable kernel module for Linux ...
3
votes
2answers
3k views
Cross compiling a kernel module
I'm trying to cross compile a helloworld kernel (2.6.x) module for ARM architecture on my intel x86 host.
The codesourcery tool chain for ARM is located at: /home/ravi/workspace/hawk/arm-2009q3
The ...
3
votes
1answer
149 views
what is the likely cause of CMOS_WRITE failing to work?
I've been puzzled by a RTC problem for several days: i couldn't write to the RTC register.
Following is the code snippet and the value I read from the reg(last line) is always different from what i ...
3
votes
2answers
2k views
External Linux kernel module dependencies
I'm writing a kernel module which depends on one existing kernel module. I'm building my module out of the tree (as an external module).
How can I declare the dependency, so that it is recognized by ...
3
votes
2answers
2k views
How to create proc entry under /proc/driver?
I want to create a file under a /proc/driver directory. I would like to use a macro like proc_root_driver (or something else provided) rather than use "driver/MODULE_NAME" explicitly. I use ...
3
votes
2answers
713 views
Is it possible to add a system call via a LKM?
I'd like to add a new system call via an LKM, but I'm not sure how to do this. That is, I know that if I want to add a completely new system call, I can look through the sys_call_table and find a ...
2
votes
0answers
15 views
Can not see Kernel Image On Boot-Grub Menu Linux
This is my first question :)
I am trying to make a real time kernel by patching Xenomai framework.
Xenomai 2.6.0 and Kernel 2.6.38.8
I patched it successfuly. I did these steps successfuly * make * ...
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
195 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
0answers
59 views
Why is my module unable to handle kernel paging request?
This is my module to allocate one huge page by using dequeue_huge_page_vma() and alloc_buddy_huge_page(). To make them vma independent, I get available vm area from __get_vm_area_node(), and then get ...
2
votes
1answer
67 views
How to create artificial microphone input in Linux?
I'm working on an audio recognition project.
For testing, I'd like to be able to have a program:
load audio data from a file
provide it to the Linux kernel, as if it were coming from a microphone
...
2
votes
3answers
126 views
linux kernel module memory management
I'm experimenting with memory management in linux kernel modules and I was wondering why a thread does not see the same memory as the module's functions. What I mean is,
I have a int *x declared ...
2
votes
1answer
93 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
165 views
Communication between kernel threads in a linux kernel module
I'm just beginning to learn the tricks of making a kernel module on linux kernel 2.6. What I'm looking to do is have 3 kernel threads, called the slaves, that need to send data to a 4th kernel thread, ...
2
votes
3answers
296 views
Linux kernel module problem: Unknown symbol in module
Help to understand why error inserting module happens? The listing provided below. I have tried this with no success.
$ sudo modprobe lpfc_scst
FATAL: Error inserting lpfc_scst ...
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
2answers
154 views
C++ support in kernel module in 64-bit system
I know C++ is not recommended in kernel module, however, we have a module written in a mix of C and C++ files, the module works well in 32-bit system (kernel 2.6), now we are trying to port the module ...
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
1answer
244 views
Reading kernel memory using a module
As part of my project I need to read the kernel to get the memory address of system call table and system call address. Or in effect i need to extract the contents of the system call table and all the ...
2
votes
4answers
274 views
linux kernel make modules_install problem
I'm running Fedora 14 64 bits.
I cloned the kernel source tree from git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
About a week ago I compiled and upgraded the kernel from ...
2
votes
4answers
126 views
How can Linux kernel modules be loaded from C code?
I have an application that has both two external kernel modules and a userspace daemon. I want to load the modules from the daemon code, written in C, at startup, and unload them on clean exit. Can I ...