A kernel module is a run-time loadable object file that is loaded into operating system kernel to add functionality to a running kernel. Examples include device drivers and other kernel items.

learn more… | top users | synonyms

0
votes
0answers
34 views

How to link kernel module to use their function?

I have some kernel module that i have added thanks modprobe: sudo modprobe mymodule In this module i have some function that i want to call. #include <stdio.h> int main() { int f = ...
1
vote
2answers
49 views

How to generate a steady 37kHz GPIO trigger from inside linux kernel?

I have a micro controller taking care of infrared TX-carrier wave generation currently, but I started wondering if I could dispose of it, and do this work in linux side - thus bringing the cost of my ...
0
votes
1answer
26 views

“Unknown symbol in module” error while inserting kernel module

I created the following error-prone kernel module for educational purposes. #include <linux/module.h> #include <linux/kernel.h> #include <linux/init.h> #include ...
0
votes
0answers
24 views

Private driver (sub-directory) does not work with Linux kernel Kbuild system

I have a private char driver..lets say test. I have created a separate sub-directory under drivers/char/ viz. drivers/char/test. I have modified drivers/char/Makefile to have obj-$CONFIG_TEST := ...
1
vote
1answer
19 views

Mac OS X Kernel Extension CPU Selection

I was reading the source code for the model-specific register (MSR) driver kernel extension that ships with the Intel Performance Counter Monitor ...
1
vote
1answer
17 views

Kprobe on Linux Scheduler and finding linux scheduler

I have two question: 1 - In Fedora source code, where can I find scheduler code? 2 - Can I put Kprobe in Fedora Scheduler? (Or Can I use register_kprobe() in Fedora scheduler?) thanks.
1
vote
1answer
38 views

printk() doesn't print in /var/log/messages

My OS Ubuntu 12.04. I wrote this Kernel Module and i use insmod and rmmod command but there isn't anything in /var/log messages. how can i fix this problem? /* * hello-1.c - The simplest kernel ...
0
votes
0answers
5 views

Bad informations from destination port

I wrote a kernel module which retrieves information from the package through the monitoring interface (pc B ubuntu), exp : I started a web page (from pc A), normally the destination port is '80 ', by ...
1
vote
1answer
22 views

Change idVendor and idProduct of embedded USB device

Can I change those values on my Embedded device or do I need to recompile the Gadget Serial Driver?
0
votes
1answer
16 views

Use same file_operation for different files in VFS

I am creating several dentry objects in the securityfs in a custom kernel module. Here's how I'm doing it: inst->output_file = securityfs_create_file("1", S_IRUSR | ...
0
votes
0answers
14 views

Error during creation of Proc entry

I want to create a Proc entry in an USB driver code , but I'm getting the error as implicit function declaration of function 'create_proc_read_entry' and 'remove_proc_entry' . I have followed ...
0
votes
0answers
20 views

Wide-characters support on VxWorks downloadable kernel module

I'm working on porting a project from Linux to VxWorks DKM. But I face a problem: On linux, wide characters and wide char functions ( like wcslen() or mbrtowc() ) are used in some parts of this ...
0
votes
2answers
49 views

How to associate a kernel module to a specific device (driver instance)?

dev-audio declares two devices: struct platform_device s5pv210_device_iis0 = { 63 .name = "samsung-i2s", 64 .id = 0, 65 .num_resources = ...
0
votes
1answer
29 views

Error: mixed implicit and normal rules

I have just updated make to GNU Make 3.82 Built for x86_64-pc-linux-gnu Copyright (C) 2010 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later ...
0
votes
2answers
57 views

Why won't modprobe or insmod work when I have the .ko file available?

I downloaded a kernel module source for the batman advanced MANET and then called make in the directory of the source and let it do its thing. Once make was finished the file batman-adv.ko was ...
0
votes
0answers
18 views

Application agnostic and transparent proxy

I'd like to write a proxy which intercepts requests going out to a particular port of a remote host(at the TCP level), modify and replay it. I'd like this to happen transparently and I'd like to ...
1
vote
1answer
26 views

How to tell which module has requested memory with request_mem_region?

I'm writing a kernel driver which needs to access memory-mapped IO. My call to request_mem_region is failing, indicating that another module (either loaded or built-in) has requested the memory in ...
1
vote
1answer
37 views

How to EXPORT_SYMBOL uniquely with the function's arguments?

As we all know when using EXPORT_SYMBOL("function name") we get into the symbol list in System.map the function name as symbol. c041bc90 b packet_sklist c041bc94 b packet_sklist_lock c041bc94 b ...
0
votes
1answer
43 views

How to find *.o file by KERNEL level Makefile

Generally in kernel level make file contain $(CONFIG_SERIAL_DEVICE) += serial.o When we are making user level make file then it'll find .o file from that particular folder. But in this, where ...
1
vote
2answers
75 views

About to print KERNEL messages on terminal

According to manual page it told that if priority of message's log level is higher than default set log level then it will be printed on terminal. But when I had used sentence like printk(KERN_ALERT ...
2
votes
2answers
34 views

Dynamically generate proc files?

I'm making a linux kernel module and I was wondering if there was a way to dynamically generate proc files and use them in a sensible way. I have no problem creating a struct with a list_head and ...
0
votes
0answers
30 views

Random number generation through /proc directory

I am currently working on a project on "Kernel call to generate random numbers". This is a project for implementing a system call to generate random numbers. The algorithm used in my code is Linear ...
0
votes
0answers
87 views

Proc file to enable or disable the dmesg or printk statements

I want to write a proc file by which i can enable or disable the printk msg printed on the console.Or there will be something like all the printk messages will be printed in my proc file.Then I will ...
0
votes
1answer
53 views

Is it possible to wake a user Process from a kernel module

I have a user level process which is sleeping currently, by using sleep() function. I am trying to write a kernel module which can first extract the task_struct of the user process from its PID, and ...
0
votes
3answers
126 views

Calling kernel_fpu_begin twice before kernel_fpu_end

I'm using the kernel_fpu_begin and kernel_fpu_end functions in asm/i387.h to protect the FPU register states for some simple floating point arithmetic inside of a Linux kernel module. I'm curious ...
0
votes
1answer
65 views

TCP not working for custom network device driver

We have developed an ASIC for Power Line Communications and are developing a ethernet device driver for the same. The chip is connected to our host processor (iMX233 ARM9) via Serial Peripheral ...
1
vote
1answer
113 views

Hijacking sys calls

I'm writing a kernel module and I need to hijack/wrap some sys calls. I'm brute-forcing the sys_call_table address and I'm using cr0 to disable/enable page protection. So far so good (I'll make public ...
0
votes
1answer
100 views

character device implementation for generating random numbers

Based on my accademic project my current task is to generate 10 random numbers using a kernel module and my user space program(c program) should be able to display those numbers. I hav been learning ...
1
vote
1answer
102 views

insmod: error when inserting kernel module

I am trying to implement a kernel module, which can access the task_struct of a user process, whose Process ID is already known to me. I am using find_get_pid and pid_task to get the task_struct of ...
1
vote
1answer
45 views

How to block packets received by eth0 from going up to TCP/IP stack

We are using dev_add_pack with ETH_P_ALL to get copies of sk_buff of all ethernet frames received by eth1. Is there a way we can prevent eth1 from forwarding all the ethernet frames up to TCP/IP layer ...
0
votes
1answer
234 views

Cross compile kernel modules using kernel-headers from rootfs of target ARM board

I have an OLinuXino board. I downloaded the ArchLinux img file (ArchLinuxARM-2013.02-olinuxino-rootfs.img) and wrote it to the SD card using dd and booted the board using the card. I connected the ...
2
votes
1answer
47 views

What are the requirements of a kernel module to load by an application at runtime

Sometimes I have observed, when an application is run or calls any kernel module functions, respective kernel module is loaded automatically. I want to build a similar kernel module which will be ...
1
vote
1answer
23 views

Keep patched kernel module over updates

After a small modification of a kernel module (eg. adding just another USB DeviceId to a device driver), is it possible to hold back updates for this module (eg. by apt-get upgrade) and is there any ...
3
votes
4answers
200 views

How to execute shell command in kernel programming?

I want to use system() function of stdlib.h in my c code. I am actually working on kernel programming. Whenever i want to use system() in it, it gives error to stdlib.h saying no such file found.
1
vote
2answers
85 views

Implementing a file descriptor

How would I go about implementing my own file descriptor? Say if I have a kernel module controlling some hardware and I want to expose the ability to communicate with this hardware to the userspace ...
1
vote
1answer
65 views

Can I set up the priority of a workqueue?

Can I set up the priority of a workqueue? I am modifying the SPI kernel module "spidev" so it can communicate faster with my hardware. The external hardware is a CAN controller with a very small ...
0
votes
2answers
111 views

Regarding how the parameters to the read function is passed in simple char driver

I am newbei to driver programming i am started writing the simple char driver . Then i created special file for my char driver mknod /dev/simple-driver c 250 0 .when it type cat /dev/simple-driver. it ...
1
vote
0answers
62 views

How to implement an input/output inside a simple filesystem kernel module via memory pages?

I am trying to implement a very simple filesystem driver kernel module. All it has to do is to create a file inside a mount folder and provide it with read/write access to mounted device. Let us have ...
1
vote
2answers
101 views

Finding the kernel address of a loadable kernel module

I'm trying to find the kernel address space where my loadable kernel module is relocated by insmod. I came to know that by using the -m, -O switches while insmod'ing the module, we can only see the ...
2
votes
0answers
88 views

ARM Cortex A8 PMNC read gives 0 after enabling also.. Any Idea/Suggestions?

MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("user-mode access to performance registers"); int __init arm_init(void) { unsigned int value; /* enable user-mode access */ printk(KERN_INFO ...
1
vote
0answers
77 views

How does Adore-Ng rootkit gets loaded into the kernel

I am working on detecting kernel level rootkits and have chosen Adore-Ng as my first test rootkit. After having known how this rootkit hides itself and other processes in the Linux kernel (2.4, 2.6 ...
1
vote
0answers
34 views

cpu hung at insmod

I am trying to write a block device driver in such a way that the I/O request is handed over to a separate worker thread. The worker thread waits to get a request and then performs the actual I/O. I ...
1
vote
0answers
36 views

How to display messages from kernel module without using dmesg?

In order to display the messages loaded into a kernel module, I can use the command dmesg Is there any alternatives for this command? How this function gets all these kernel messages?
0
votes
0answers
34 views

getting segmentation fault while accessing page table in linux

I am accessing page table by creating kernel module.Below I have mention part of code.It works well upto printing "valid pmd". After that i am geting "segmentation fault" error. pgd_t *pgdir; pte_t ...
2
votes
1answer
71 views

What triggers re-compilation of linux kernel modules

I'm a bit surprised that modules for the Linux kernel are so "fragile" and need re-compilation so often. Using the same source tree on two different machines (e.g. different version of gcc) produce ...
3
votes
1answer
43 views

Kernel extention compilation: “ld: warning: using ld_classic”

When compiling my kernel extension with the latest version of Xcode, I get the following warning: ld: warning: using ld_classic The kernel extension is working fine, but I don't know how to get rid ...
4
votes
2answers
68 views

Attempting to pass argument to ioctl call zeros out argument

I am trying to call an ioctl function in my toy file system module. I would simply like to have this ioctl set a variable that is passed in by the caller. So far I have set up the ioctl infrastructure ...
1
vote
1answer
67 views

Nested extern declaration warning freebsd kernel

I am modifying sched_ule.c in freebsd kernel. To print the debugging messages i am using the syslog function. But during compilation we are getting the following error: ...
1
vote
0answers
877 views

Linux stuck in CPU soft lockup?

My system is a CentOS 6.3 (running kernel version 2.6.32-279.el6.x86_64). I have a loadable kernel module which is a driver that manages a PCIe card. If I manually "insmod" the driver while the OS ...
0
votes
0answers
39 views

arch_vma_name undefined kernel module

I am getting following error when i try to insert a module insmod: error inserting 'memory.ko': -1 Unknown symbol in module Following happens when i make the module make -C ...

1 2 3 4 5 10