Tagged Questions
2
votes
2answers
58 views
Linux kernel module freezing the computer while iterating over running processes to access process opened files
I am developing a kernel module using kernel version 3.x.
I have a function that is responsible to determine if a running process has a given file opened.
Here is my code (see my comments after):
...
-3
votes
1answer
46 views
removing from the output of NETSTAT
I am new here.
So I am developing a Linux Kernel Module, and want to hide an open socket on a specific port number from the output of sudo netstat -nap
What is the approach that I should take? I ...
1
vote
1answer
28 views
Writing permessions for linux kernel module paramater
I have a module i created in linux kernel.
I want the module to receive parameters, and i want one of them to have reading and writing permissions.
So i defined :
module_param(param, int, ...
0
votes
0answers
73 views
kernel module Vs. user-space application which one is faster?
Is it true to say that if I need fast implementation and faster runtime I should implement my code in a kernel module ? Or is it unnecessary true to say that and the same code using ioctls and ...
1
vote
0answers
65 views
Loading kernel module from C user space application
I'm trying to load a kernel module from C using kmod, but it's not working at all.
Here's what I have:
#include <stdio.h>
#include <stddef.h>
#include <unistd.h>
#include ...
2
votes
1answer
349 views
what do these kernel panic errors mean?
I insmod a kernel module on ARM platform and I get a kernel panic which causes this three errors to be printed to screen
Unhandled fault: external abort on non-linefetch (0x008)
Unhandled fault: ...
1
vote
1answer
321 views
Simple interrupt handler: request_irq returns error code -22
I am writing a simple kernel module, which could register an interrupt and handle it.
However, when I try to register interrupt by calling the request_irq function,
it returns error code -22 :
...
0
votes
1answer
37 views
Upgrade a specific Linux Kernel Subsystem?
Is it possible to upgrade only a specific sub-system, say I2C, of the Linux Kernel.
For example:
Is it possible to include "Support for multiplexed I2C bus topologies (introduced in Kernel 2.6.36)" ...
1
vote
0answers
110 views
Debugging kernel hang because of IOCTL calls
I am trying to make a kernel module which is working on 2.6.32 kernel to work on 3.6 kernel. We use IOCTL calls to update structures in Linux Kernel Module. These calls are working fine in 2.6.32 ...
0
votes
1answer
48 views
Unknown symbol error with closed source proprietary modules
I am having a problem with some proprietary modules. I am working with Mediatek android kernel and they have lots of proprietary modules and some of them show up Unkown symbol error when insmoded. ...
0
votes
4answers
468 views
trouble compiling a kernel module in linux
I wrote a simple hello world kernel module. A make file was written by me as below:
obj -m += hello.o
KDIR: /usr/src/linux-headers-3.2.0-21-generic-pae
all:
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) ...
2
votes
5answers
607 views
System call interception in linux-kernel module (kernel 3.5)
I need to replace a standard system call (e.g. SYS_mkdir) with my own implementation.
As I read in some sources, including this question on Stackoverflow, the sys_call_table is not exported symbol ...
-1
votes
1answer
331 views
list_for_each_entry does not work
i write a module about link list with pri as the head node. It's empty initially.
In pri_init(), I insert 3 nodes into the list and assign value to each of them. Finally, i want to use ...
1
vote
1answer
237 views
How to determine timer frequency in linux
I need to write a kernel module to calculate Linux Kernel Timer (Interrupt) Frequency .
somebody told me I need to use a timer in my module but I don't know how to do that clearly :(
My final goal ...
0
votes
2answers
66 views
Bypass softlockup_threshold
I develop a kernel module which does a heavy job which of course takes time.
The problem is that the module utilizes the CPU for more than 20 seconds and as
a result a BUG of softlockup_threshold is ...
0
votes
0answers
33 views
mapping non contineous shared memory as contineous for process through character driver mmap()
Being a complete new in kernel module programming, I should extend character driver module for shared memory allocation for processes which is able to map discontinuous memory to continuous memory in ...
0
votes
1answer
184 views
printk params and syslog.h facility names
There are many params we can pass to printk:
printk (KERN_INFO "blahahaha");
printk (KERN_EMERG "bababa");
And so forth. Do these tags have anything to do with the facility levels found in ...
2
votes
1answer
131 views
Making my module's printk's print to my own logfile
I'm doing some Linux module programming. I typically printk little error messages and stuff for debugging - I then exit out of my module and use "dmesg" to see what's up.
That method of debugging is ...
2
votes
1answer
303 views
How to get username from Linux kernel space
I am doing some Linux module development, restricting me to only kernel-available libraries, and I'd like to get the username of the user who is interacting with my module's username. AKA their ...
0
votes
0answers
142 views
Android source selection for a kernel module
I what to compile a kernel module for my SI9000. Currently am using the XXJVP version. What or Where can I find the correct source code for this?
I used the source GT-I9000_OpenSource_GB.zip from ...
5
votes
2answers
2k views
Hello world kernel module for android & unknown relocation: 27 when insmod
I am trying to create a simple kernel module.
I am trying to print messages to dmesg but i keep getting
insmod: init_module 'hello.ko' failed (Exec format error) in android
after :
dmesg:
unknown ...
0
votes
2answers
307 views
Why lsmod command does not list modules loaded by Xorg?
As in title why lsmod does not list modules like extmod, dri, dbe... loaded by default by Xorg?
1
vote
2answers
1k views
building kernel modules for linux differnet version
I am new to writing kernel modules, so facing few non-technical problems.
Since for creating kernel module for a specific kernel version ( say 3.0.0-10, 10 is patch number) requires same version ...
2
votes
4answers
3k views
call a kernel module function from program at user space
I developed a kernel module and some functions on it. Now i need to develop a program in the user space and call some functions which are in the kernel module.
I also need to acess some global ...
0
votes
1answer
411 views
No output to terminal after inserting a module with insmod
I am following the following tutorial, trying to learn how to develop device drivers, and in Chapter 2, the focus is to develop a working module and insert it into the kernel. I used the following ...
5
votes
2answers
496 views
ioctl is not called if cmd = 2
I am developing a kernel module that uses unlocked_ioctl. I tested it with kernel version 2.6.24-23-generic and it works perfectly. Now I tried it with kernel version 3.3.1-1-ARCH and something weird ...
2
votes
1answer
1k views
using the pt_regs struct
I've recently started getting into linux kernel module programming, and I am trying to use the pt_regs struct to get and set registers such as eax, but compilation errors tell me that pt_regs has no ...
1
vote
1answer
517 views
Error: field ‘rwsem’ has incomplete type
I have a module. It has a header file : circular_buffer.h
typedef struct _buffer_entry_{
char data[1024];
int size;
struct rw_semaphore rwsem;
}buffer_entry;
when i compling. ...
0
votes
1answer
205 views
Is there an equvalent for perror in the kernel?
What would perror() be in the kernel? I can't tell what the error codes are from the error values ,i.e -22 alone.
1
vote
2answers
217 views
Best way to install interrupt handler for port 0x60
I'm writing a simple key logger as a means to understanding interrupts and IO ports for linux drivers. Now from what I've read, I need to register interrupt handlers via ...
int request_irq(unsigned ...
0
votes
1answer
83 views
How i can open a special file?
i am newbie to driver coding. Now i am trying implement ioctl in my code. To make a call using ioctl from my user program, i need to open my special file and the return value from the 'open' call to ...
1
vote
3answers
266 views
How i can use ioctl for the communication between the user program and driver?
i am writing a driver in linux. How i can use ioctl for the communication between the user program and driver ?
In my driver, the structure is as follows:
struct file_operations fops = {.read = ...
1
vote
4answers
1k views
How can i call a function that written in kernel module, from the user program?
sample driver created and loaded successfully, in that a user defined function is written, it does some actions. i need to write a user program that calls the user defined function in the driver ...
1
vote
3answers
265 views
Linux/Kernel module: Can a driver be used by two user programs?
I'm trying to develop a "virtual" video driver based on ViVi project example. It's virtual since it doesn't interact with any camera. It gets a video stream from a user program (C++) and also it acts ...
0
votes
2answers
165 views
linux kernel interrupt hijacking
So my last kernel homework was to hijack an interrupt by replacing the address of the interrupt handler in the IDT with the address of my own hijack routine. My module works correctly; however ...
1
vote
2answers
459 views
Alter Linux scheduler using kernel module [closed]
I have created a kernel module which scans the task list and when I find a process with certain properties I would like to push the process to the back of the runqueue (so it would only run if the ...
0
votes
1answer
171 views
How to write in kernel mode to some process's virtual memory
I want to use my unix module in order to write to another process memory (I would like to do it in kernel mode and avoid the pthread interface).
i have to use function (like do_mmap(..), ...
1
vote
2answers
130 views
Missing component in a kernel module with several source files
I had a little module with a single C source file foo.c, and all was well.
#include <linux/init.h>
#include <linux/module.h>
static int __init foo_init(void) {
printk(KERN_INFO ...
4
votes
1answer
217 views
Thread local data in linux kernel module
Is it possible to create thread local data in a linux kernel module?
I need to store some data for each process/thread calling my module.
Is there an easy way of using thread local data, or do I have ...
3
votes
1answer
667 views
Does do_div() in Linux work in 32 and 64 bit architectures?
I need to do an integer division in a kernel module and I am using do_div() for that. It seems to work on my machine (I have an i686 processor), however I am not sure that it works everywhere. Could ...
3
votes
3answers
376 views
spinlock_irqsave with deadlock
I wrote kernel module which do nf_register_hook and use character device mechanism to get grabbed packets to userspace with device read hooking. I use global buffer and buffersize vars that's why i ...
7
votes
3answers
2k views
addr2line on kernel module
I'm trying to debug kernel module. I suspect to have there some memory leaks. To check it I have prepared build with enabled Memory leak debugging for kernel and modules. And I got some warning from ...
0
votes
2answers
942 views
Linux Kernel Module debugging
Is there any method to debug Linux kernel module? I am looking for a GUI based facility like the ones used for user processes?
5
votes
2answers
2k views
LINUX: order of statically linked module loading
If I have two modules which are being statically linked in. One modules' module_init function depends on another module's module_init function having already run. Is there a way to force one module ...
1
vote
4answers
2k views
Executing a user-space function from the kernel space
Im writing a custom device driver in linux that has to be able to respond very rapidly on interrupts. Code to handle this already exists in a user-space implementation but that is too slow as it ...
1
vote
1answer
101 views
loading module and object files automatically on booting
I have created a module.ko and a object file a.out that uses the module.
Does someone know how I load them both on booting?
I did depmod to my module and then modprobe -a.
I think it damaged my ...
0
votes
5answers
569 views
Write value to parallel port register
I'm trying to write to my lpt register with the function outb(0x378,val);
well.. I tried to debug with the call int ret=inb(0x378); I always get the ret=255 no matter what value I insert with outb ...
2
votes
2answers
1k views
failing on rmmod
I'm failing rmmod lcd_module.ko
ERROR: Removing 'lcd_module': Device or resource busy
lssmod give me result:
lcd_module [permanent]
how do I cancel this option? I want to load my module more than ...
4
votes
2answers
682 views
Accessing TCP header from tcp congestion control Linux kernel module
I am working on a TCP congestion control algorithm for the Linux Kernel, which I realize as kernel module.
In the code, I want to access the tcp header and use the following function to do so.
void ...
2
votes
1answer
3k views
How to load a custom module at the boot time in Ubuntu?
I created a custom and simple module named Hello.ko
I install the module with the command "insmod hello.ko", I check it with "dmesg" and it's working, but when I restart the system, I have to load it ...

