Tagged Questions

0
votes
2answers
43 views

User space access from Kernel space - get_user_pages

Hello, I'd like pass a pointer from a user space memory into a function in my kernel module. I don't want to use copy_from_user. I've read that I should use get_user_pages function. For example one …
0
votes
0answers
27 views

Kernel page request-related OOPS

Hello all; I'm working on modifying a Linux 2.6.22-5 kernel driver in order to add threading, and I'm running into a problem I can't seem to figure out. I have set up the module so that there is a …
0
votes
0answers
44 views

Linux Kernel Modules: When to use try_module_get / module_put

I was reading the LKMPG ( See Section 4.1.4. Unregistering A Device ) and it wasn't clear to me when to use the try_module_get / module_put functions. Some of the LKMPG examples use them, some don't. …
0
votes
4answers
286 views

Any experience with SANOS operating system kernel?

I was browsing for an open source kernel when I ran across SANOS which feels like something worth keeping alive as open source. To bring it up to modern standards, the following enhancements need to …
1
vote
3answers
155 views

Problem with chardev.c example from The Linux Kernel Module Programmers Guide

I compiled and ran the chardev.c example from the lkmpg and when writing to the device received an unexpected error: anon@anon:~/lkmpg$ sudo echo "hi" > /dev/chardev bash: /dev/chardev: Permission …
3
votes
7answers
597 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] …
6
votes
2answers
275 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 …
2
votes
5answers
369 views

Can I replace a Linux kernel function with a module?

Hi, Im getting into kernel work for a bit of my summer research. We are looking to make modifications to the TCP, in specific RTT calculations. What I would like to do is replace the resolution of …
0
votes
1answer
172 views

Setting process affinity in kernel mode

How can the CPU affinity of a process be set in kernel module? In user mode there is a syscall sched_setaffinity, but I am looking for the kernel mode equivalent. In the Linux kernel code, there is …
0
votes
0answers
120 views

How to intercept system calls on aix 5.3 or aix 6.1?

How to intercept system calls on aix 5.3 or aix 6.1?
2
votes
3answers
563 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 …
1
vote
3answers
321 views

open() returns with “No such device” error, but there is such a device (linux)

I'm trying to use a somewhat old DAQ, and had to jump through a few hoops to get an old (circa 2004) device driver for it to compile (DTI-DT340 Linux-DAQ-PCI). I've gotten to the point where it …
1
vote
1answer
280 views

How to create proc under /proc/driver?

I want to create a proc file under /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 …
2
votes
2answers
572 views

Methods of communicating between kernel and user apps

New to Linux programming in general. I am trying to communicate with a kernel module via shared memory, but cannot call the functions used in user apps such as shmget(); I have installed …
1
vote
2answers
232 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 …

1 2 next
15 30 50 per page