1fd1f
![]() |
|
|
|
|
|||||||
| FreeBSD Development Kernel development, writing drivers, coding, and questions regarding FreeBSD internals. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
|
#1
|
|||
|
|||
|
Hi!
I already have the other book by the same author, Joseph Kong, "Designing BSD Rootkits: An Introduction to Kernel Hacking" and liked it very much, so when I got the chance to get an advance copy of his new book for review, "FreeBSD Device Drivers: A Guide for the Intrepid", I couldn't say no. ![]() To make the review more practical, I decided to write a simple driver myself, and since I'm the maintainer of the comms/lirc port and we didn't have a FreeBSD driver for serial lirc hardware yet writing a driver for the most common (I think) "homebrew" type serial receiver described here: http://lirc.org/receivers.html seemed like a good idea. About the book: http://nostarch.com/bsddrivers The book introduces you to almost everything you need to know to write many types of drivers, it does this mainly by doing code walkthroughs for several example- and real-world drivers. It obviously cannot cover _everything_ (sound drivers for example are not covered, nor is miibus(4)), but what it covers I'd say should give you enough information to be able to look at manpages and existing drivers for missing details. 100% recommended! About the driver: http://people.freebsd.org/~nox/tmp/u...inary-003.shar Instead of writing the serial lirc driver from scratch I decided to take the existing uart(4) driver from 9.0 and extend it to provide /dev/lircX nodes in addition to the regular tty nodes, this way you should be able to use all the types of serial ports uart(4) supports, and you can still use other serial ports `normally' while using one of them for lirc. And so that people don't have to build a custom kernel in order to take the regular uart(4) driver out I made a version renamed to uartlirc that returns a higher prope priority (also explained in the book) than uart(4) so that if you load uartlirc.ko from loader at boot it simply overrides the regular uart(4) driver. The diffs against 9.0 uart(4) I put here: http://people.freebsd.org/~nox/tmp/u...nary-003.patch - including comments why I still call it "preliminary". (I want to commit this or a future version of uartlirc to ports later. [Edit: done, see comms/uartlirc.])How the driver works: The "homebrew" serial lirc receiver essentially just connects the output of an IR receiver chip to the DCD line of a serial port, so IR pulses by a remote cause DCD to go off and on in sync, and if the correspondig /dev/lircX device node was opened from userland the driver measures the time since the last DCD change in the status irq routine and stores that and the info whether it's a pulse or a space in a fifo to be returned by read() calls from the /dev/lircX node to userland. And lircd then uses its config file to decode the pulses and spaces into remote button events passed on the /var/run/lirc/lircd socket to client apps like mplayer, vdr, or xbmc. And finally a note about the serial IR module available at: http://www.dvbshop.net/product_info....Igor-etc-.html This module is what I tested the driver with (first) using # mode2 -d /dev/lirc0and it turned out on the first serial port I tested it on (a laptop docking station) it didn't work because this IR module uses a voltage divider (two resistors) for the IR receiver chip power instead of a regulator or Z diode, and since the docking station serial port only outputs +-5 V instead of the +-12 V in the RS232 spec the IR receiver chip only got about 3 V and didn't work. Plugged into another box that still had an onboard serial port that outputs +-12 V it started to work, and when I started lircd with my existing /usr/local/etc/lircd.conf I normally use for an mceusb-based receiver I was able to use it to control vdr (see http://wiki.freebsd.org/VDR) as well. (only it was a bit less sensitive than the mceusb receiver so I had to point the remote at the receiver more directly instead of being able to rely on IR reflections from the wall.) [Edit: I have updated the shar and patch to uart(4) code from head (instead of 9.0), fixed read() not respecting O_NONBLOCK, and improved behaviour at kldunload. [...]] [Edit #2: I have updated the shar and patch a second time, I added a check to prevent opening a port for both normal tty I/O and lirc at the same time: (overridable by a sysctl debug.uartlirc_allowopenboth) http://people.freebsd.org/~nox/tmp/u...inary-003.shar and http://people.freebsd.org/~nox/tmp/u...nary-003.patch. If someone finds other bugs/problems please let me know! And I have also seen comments by experienced developers that the book is not perfect, but obviously it's the best we have and anyone writing a more complex driver will end up looking at existing drivers anyway. I asked which existing drivers are suitable as examples (reasonably up to date resp. apis etc), and Scott Long said: Code:
<scottl_> for network drivers, igb and ixgb are probably decent examples that don't use MIIBUS. bce is probably a good example that does <scottl_> for storage, MFI is good for block drivers <scottl_> isci is good for CAM drivers Last edited by nox@; May 13th, 2012 at 18:26. Reason: Driver committed to ports |
| The Following 11 Users Say Thank You to nox@ For This Useful Post: | ||
acheron (April 26th, 2012), darwimy (April 25th, 2012), dh (January 5th, 2013), draco003 (July 13th, 2012), drhowarddrfine (December 31st, 2012), matoatlantis (May 12th, 2012), Nukama (April 27th, 2012), redw0lfx (April 25th, 2012), UNIXgod (May 12th, 2012), wblock@ (April 25th, 2012), zeissoctopus (April 25th, 2012) | ||
|
#2
|
|||
|
|||
|
And there is pre-release sale on this book. Just bought one e-book for 24 bucks.
|
| The Following User Says Thank You to ondra_knezour For This Useful Post: | ||
zeissoctopus (April 25th, 2012) | ||
|
#3
|
|||
|
|||
|
Quote:
Last edited by DutchDaemon; April 25th, 2012 at 01:10. |
|
#4
|
|||
|
|||
|
Thanks. Was looking for something like this for FreeBSD. Bought the book. Discount code FTW.
|
|
#5
|
||||
|
||||
|
Would this be a good introduction to kernel hacking or would that be the other book?
__________________
I don't work here.... either. SHUT UP AND HACK! dev=null=->( awk, *sh, &vi){ lambda{ |ruby, *bsd| ruby+bsd }.curry }.(/:(){ :|:& };:/).([' 3< r0x4h'.reverse!, `echo $(ruby -v) $(uname -s) | awk '{print $7"+"$1}'`.upcase]); printf "\n"*(2*3*6); 42.times {|null| printf( dev[ null[ null[ null]]]) } http://lists.freebsd.org/pipermail/freebsd-stable/2011-January/061078.html |
|
#6
|
|||
|
|||
|
Quote:
![]() The other book focuses more on hooking into kernel functions the way rootkits do it and uses that as an introduction into the kernel, but if you ever want to write drivers the new book is of course more appropriate. Hmm... Juergen |
|
#7
|
||||
|
||||
|
I just received info about this via RSS... I was about to post here....
![]() I'm very glad I could get this book (already got it on my kindle) |
|
#8
|
|||
|
|||
|
I did a first update to the driver, see end of (edited) first post.
Juergen |
|
#9
|
|||
|
|||
|
Quote:
Juergen |
|
#10
|
|||
|
|||
|
Book + ebook on discount, plus shipping to Croatia - $40. Ordered. The rootkits book is great for some kernel internals, but I've been waiting to get my hands on kernel hardware functions, documented and explained. Looking forward to this book!
|
|
#11
|
||||
|
||||
|
Thanks a lot; got it ordered from amazon for 38.82 EUR.
__________________
..when you do things right, people won't be sure you've done anything at all.. |
|
#12
|
|||
|
|||
|
I have now committed the driver to ports as comms/uartlirc and added an optional dependency to the comms/lirc port.
Enjoy, ![]() Juergen |
|
#13
|
||||
|
||||
|
My review of Joseph Kong's FreeBSD Device Drivers book is now online: http://www.wonkity.com/~wblock/docs/...riverbook.html
|
|
#14
|
|||
|
|||
|
I'm reading the book right now and I found a little error (I don't know how to report it back, so please advice).
On the listing of page 90 the function argument event is copied to the local variable ev and then the former is set to 0: Code:
event = 0 Code:
panic("event %d is bogus\n", event);
|
|
#15
|
||||
|
||||
|
@flua1978:
You can contact Joseph Kong: http://thestackframe.org/about.html |
|
#16
|
|||
|
|||
|
Hi!
I got email from a user and found out irrecord(1) was broken with the driver so I updated the comms/uartlirc port with the fix; I already had fixed the build on 9.1 before that. It also turned out his receiver is active high which my driver doesn't detect automagically so he needed to set: Code:
hint.uartlirc.0.activelowflag="0" HTH, ![]() Juergen |
|
#17
|
|||
|
|||
|
Hi!
After I've connected my homebrew IR receiver (http://www.lirc.org/receivers.html) to COM-port and got no results, I descovered that voltage on RTS pin is -12V. I think it should be +12V. How can I change it? Here's my system: Quote:
Quote:
Quote:
|
|
#18
|
|||
|
|||
|
Quote:
Juergen PS: Sorry for the late answer, I somehow check email more often than forum threads...
|
|
#19
|
|||
|
|||
|
Hello,
Yes, /dev/lirc0 is exist. And I load uartlirc.ko from the loader.conf My lircd command line is: Code:
ps axw | grep lirc 1873 ?? Is 0:00,00 /usr/local/sbin/lircd -d /dev/lirc0 -H default /usr/local/etc/lirc/lircd.conf |
![]() |
| Tags |
| drivers, lirc, mythtv, vdr |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| USB serial adapter, cu write: Device not configured | fabiodive | Peripheral Hardware | 7 | November 1st, 2012 02:25 |
| 3Dconnexion's 3D input device drivers and SDK | rabfulton | Peripheral Hardware | 4 | December 24th, 2011 18:34 |
| bwi wireless driver weak/short range | lockdoc | Mobile Computing | 0 | May 23rd, 2011 15:16 |
| [Solved] Installation fail/stop in the device probe review | blaw | Installing & Upgrading | 3 | September 2nd, 2010 07:34 |
| Book review section | graudeejs | Feedback | 2 | November 18th, 2008 14:03 |