Code Monkey home page Code Monkey logo

toymodule's Introduction

ToyModule

A tiny loadable kernel module used for testing and learning. The module implements a simple guest book: by writing on the device, a message can be left, and by reading from the device the latest inserted message can be read.

Usage

To read the kernel log:

tail -f /var/log/kern.log

The test.sh script does a quick test compiling and loading the module, and also unloading it and deleting the generated files when it's done.

If you want to do the testing manually:

  • To load the kernel module, compile it with make, then a .ko file is produced. Run:
sudo insmod guestbook.ko
  • To unload it:
sudo rmmod guestbook
  • Once the module is running, you can compile (just run gcc -o tester tester.c) and run tester.c to see how it does.

  • If you want to quickly remove the files generated with make, run make clean.

Creating the device file (now done from code)

The module now creates (and deletes) its own device file via C code, and we have a tester.c program to test the module, so the section below is not needed anymore. I will keep it there in case anyone finds it useful.

Once it's running we want to create a node for the device in /dev:

cd /dev
#          dev name c is for char device
sudo mknod guestbook c <major_number> 0

To see it in action do for example:

cat /dev/guestbook

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.