This tag is for questions regarding programming at the operating system's kernel level, such as drivers or the Linux kernel modules.
0
votes
1answer
33 views
How to preempt one process from another process/kernel thread?
I have a process P and a kernel thread KT. I want to synchronize execution of P with KT. KT is basically an event handler. But my requirement is that KT should not go ahead processing events if P is ...
0
votes
1answer
25 views
When to use network system calls vs. sk_buff within a KM
While trying to learn more about linux kernel networking ... I have a kernel module that contains a protocol which runs on top of TCP. Its almost an application layer protocol I'm experimenting with. ...
0
votes
0answers
28 views
printk works eventhough kernel.h is not included
I was writing a simple hello world module and found that prink works eventhough kernel.h is not included. My program is
#include<linux/module.h>
int hello_init(void)
{
printk(KERN_ALERT ...
2
votes
0answers
26 views
Development environment/process for systems (OS) programming? [closed]
What is a typical development environment/process used for operating systems programming. I am currently taking an OS course through my university where we are playing around in the MINIX OS (e.g. ...
0
votes
0answers
27 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 := ...
0
votes
2answers
50 views
Inability of Linux Kernel to support 1GB physical memory and the HIGHMEM solution
I have been reading [1] to have an idea about the HIGHMEM. The article says that "If the kernel wishes to be able to access the system's physical memory directly, however, it must set up page tables ...
1
vote
1answer
18 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
40 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 ...
2
votes
1answer
39 views
x86 hardware Interrupt is not working on qemu
I'm writing a kernel (using qemu to simulate) for x86 as a school project and I ran into weird problem.
Even though I have set the interrupt flag in the eflags register, I'm sill not getting any ...
0
votes
1answer
27 views
How Devfs and dev file system differ
I read about devfs(known as device file system ) to facilitate device driver programming as mentioned in linux device drivers text . How different is devfs from /dev directory in linux.Are they ...
0
votes
1answer
36 views
How to change log level of dmesg programmatically?
I want to change the mask priority of dmesg by which i want to print only those messages whose priority is highest. So how to change these priority programmatically?
Like if printk priority is ...
0
votes
2answers
68 views
How to print 32 bit value complete?
I want to know that how to print the complete integer value with zero also in C only.
And i am in kernel space ,want to print some values in kernel module.
Like if a is a 32 bit integer then
int a ...
0
votes
0answers
16 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
2answers
53 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
0answers
20 views
Redirecting system call
I made mach system call function by replacing mach_trap_table[index].mach_trap_function with my system call.
I cannot use the way because mach_vm_write is not included in mach trap table.
So I was ...
-1
votes
2answers
74 views
What needs to be done to import and use a Linux kernel module in python?
What do I need to do import a Linux kernel module into python so that I can use its features in an application I want to build.
My target is to use the Better Approach To Mobile Ad-Hoc Networking ...
0
votes
1answer
23 views
XINU - Need help understanding a system call - getstk.c
I am having trouble conceptually understanding what is going on towards the end of this system call, and why. I understand the getstk.c method returns the highest memory address of available space, ...
2
votes
1answer
48 views
what does __init_refok keyword means in linux kernel code?
While browsing the kernel code, I came accross a keyword that is used in several kernel init functions, __init_refok.
some of the lines I came accross are like
void __init_refok free_initmem(void)
...
1
vote
0answers
67 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 ...
0
votes
1answer
46 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
77 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 ...
0
votes
1answer
47 views
How a task in linux which is waiting for a lock, wakes up once the lock is released by the another task?
lets say task A in linux is waiting for a lock and on that time the specified lock is held by another task B. so task A will be in wait queue. now once the task B are done then release the lock. Now ...
0
votes
0answers
93 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 ...
1
vote
1answer
61 views
When are the contents of .exit.text section in an ARM vmlinux file discarded once it is loaded in memory?
I understand that the .exit.text section will be filled by the linker with functions defined with __exit macro. I can see the section on dissassembly of the vmlinux file. But I did not understand at ...
0
votes
1answer
45 views
Why does my printk messages are updated in the log file lately?
I have written a simple module as follows:
#include<linux/module.h>
#include<linux/kernel.h>
static int __init own_init(void)
{
printk(KERN_INFO "Hi");
return 0;
}
static int ...
0
votes
1answer
56 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 ...
1
vote
1answer
107 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 ...
0
votes
2answers
47 views
String functions in C driver development on Win7
I'm coming from user-level development and I'm completely new to C/C++ on the kernel level. What I have to implement is a string parser based on a split function like strtok known from string.h.
As ...
0
votes
1answer
62 views
Please tell about the query of network packet traversal in linux
I was reading Understanding linux networking Internal book and the pdf Network packet capture in Linux kernelspace on the link networkkernel.pdf
In the Understanding linux networking Internal under ...
1
vote
0answers
30 views
Query Related to Packet traversal in kernel
After reading the book "Understanding Linux Network internals".
I came to know about some concepts of how we get the packet from the network:-
> When working in interrupt driven model, the nic ...
1
vote
1answer
125 views
Clock frequency of the CPU & measuring time elapses
I wanted to know how much time "1ms sleep" takes.
Ran this quest in kernel module:
rdtscl(aj);
msleep(1);
rdtscl(b);
printk(KERN_INFO "Difference = %lu", (b-a));// Number of clock cycles consumed
...
0
votes
1answer
33 views
How to directly deliver packets to the L4 layer in the NF_IP_PRE_ROUTING hook
I want to directly deliver some packets to the L4 layer when the
packets get to the hook of NF_IP_PRE_ROUTING. I use the use
ip_local_deliver() function. However, it does not work. May I know how
I ...
0
votes
1answer
108 views
IOCTL write crashing
I am trying to implement ioctl in kernel space to write some date into the register, I am getting a crash in cmd of ioctl.
Below is my code:
Kernel side:
static struct file_operations fops = {
...
0
votes
2answers
118 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
67 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 ...
0
votes
1answer
43 views
why are system calls handled using interrupts?
I have a basic question about the linux system call.
Why are the system calls not handled just like normal function calls and why is handled via software interrupts?
Is it because, there is no ...
1
vote
2answers
34 views
How to make persistent storage for filter driver?
I am trying to save certain data like some bitmap by using the structure as
typedef struct _BITMAPDATA
{
CHAR* bitmapData;
ULONG bitmapSize;
}BITMAPDATA,*PBITMAPDATA;
I have created these ...
1
vote
1answer
67 views
uprobe programming on ARM Target
I want place a uprobe on target ARMV7 Board, i have uprobe_example.ko which is build against kernel 2.6.39.
insmod uprobe_example.ko vaddr=$vaddr pid=$!
Uprobes handles interesting events in the ...
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?
2
votes
1answer
150 views
How does physical to virtual IRQ mapping implemented in Windows and Linux systems?
As far as i know there are 255 virtual IRQ's in Windows system (chipset only allows 16 physical) and they all usually use physical IRQ 11.In Linux systems there is also a notion of virtual IRQ's.So, ...
1
vote
1answer
68 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:
...
2
votes
1answer
53 views
Does allocated memory make a module to be considered as “used” by the kernel
I'm new to kernel programming, and currently working with the "Madwifi" driver for tplink wireless NIC (Atheros chipset). My kernel version is 2.6.32-37 (ubuntu).
I'm working with a driver which has ...
2
votes
1answer
123 views
Wrong value after setting (scalar) kernel argument OpenCL
I'm working on an OpenCL program, but the output is different each execution. I think it has to do with passing arguments to the kernel, because when I hardcode the values for a specific execution, ...
1
vote
1answer
141 views
get fd from file pointer in kernel space
Given a struct file, is it possible to get the associated file descriptor in linux kernel space? I am trying to change permissions using either sys_chmod or sys_fchmod. One takes a file descriptor the ...
1
vote
1answer
223 views
Why dynamically allocated buffer in user program makes kernel driver crash?
I have a program that allocates a buffer whose pointer is passed to a kernel driver through a custom IOCTL. In the driver I get an Mdl and lock the pages of the user-program buffer with ...
4
votes
1answer
167 views
Is in_irq() reliable?
Unreliable Guide To Hacking The Linux Kernel states that
You can tell you are in a hardware interrupt, because in_irq() returns true.
Caution. Beware that this will return a false positive if ...
0
votes
0answers
108 views
ZwReadFile() oddly cannot read process modules from LoadImageNotifyRoutine()
I'm writing a windows kernel driver that is part of a set of tools meant to protect critical infrastructure and I've run into a very odd problem. My code catches executable loads using a ...
1
vote
1answer
165 views
Passing ioctl codes from Kernel module to Userspace program
ioctl codes in Kernel modules are usually defined as macros inside .c or .h file, i.e.:
#define DRV_CTL_RESET _IO(DRV_MAGIC, 0x01)
#define DRV_CTL_DSP_TO _IO(DRV_MAGIC, 0x02)
and ...
1
vote
1answer
213 views
Writing to Read-Only memory in Linux kernel
In order to write to a read-only memory location (an example for such a memory location would be the sys_call table) in kernel module, is it sufficient to disable the page protection by manipulating ...
1
vote
1answer
136 views
Linux or Android Driver for KR070PC7S LCD Display
I'm trying to build an android linux kernel for an amlogic meson3 processor. Specifically the current running Linux shows the display configuration is
CONFIG_AML_TCON_KR070PC7S
When searching on ...







