README
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:67k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. Devfs (Device File System) FAQ
  2. Linux Devfs (Device File System) FAQ
  3. Richard Gooch
  4. 20-JAN-2002
  5. Document languages:
  6. -----------------------------------------------------------------------------
  7. NOTE: the master copy of this document is available online at:
  8. http://www.atnf.csiro.au/~rgooch/linux/docs/devfs.html
  9. and looks much better than the text version distributed with the
  10. kernel sources. A mirror site is available at:
  11. http://www.ras.ucalgary.ca/~rgooch/linux/docs/devfs.html
  12. There is also an optional daemon that may be used with devfs. You can
  13. find out more about it at:
  14. http://www.atnf.csiro.au/~rgooch/linux/
  15. A mailing list is available which you may subscribe to. Send
  16. email
  17. to majordomo@oss.sgi.com with the following line in the
  18. body of the message:
  19. subscribe devfs
  20. To unsubscribe, send the message body:
  21. unsubscribe devfs
  22. instead. The list is archived at
  23. http://oss.sgi.com/projects/devfs/archive/.
  24. -----------------------------------------------------------------------------
  25. Contents
  26. What is it?
  27. Why do it?
  28. Who else does it?
  29. How it works
  30. Operational issues (essential reading)
  31. Instructions for the impatient
  32. Permissions persistence accross reboots
  33. Dealing with drivers without devfs support
  34. All the way with Devfs
  35. Other Issues
  36. Kernel Naming Scheme
  37. Devfsd Naming Scheme
  38. Old Compatibility Names
  39. SCSI Host Probing Issues
  40. Device drivers currently ported
  41. Allocation of Device Numbers
  42. Questions and Answers
  43. Making things work
  44. Alternatives to devfs
  45. What I don't like about devfs
  46. How to report bugs
  47. Strange kernel messages
  48. Compilation problems with devfsd
  49. Other resources
  50. Translations of this document
  51. -----------------------------------------------------------------------------
  52. What is it?
  53. Devfs is an alternative to "real" character and block special devices
  54. on your root filesystem. Kernel device drivers can register devices by
  55. name rather than major and minor numbers. These devices will appear in
  56. devfs automatically, with whatever default ownership and
  57. protection the driver specified. A daemon (devfsd) can be used to
  58. override these defaults. Devfs has been in the kernel since 2.3.46.
  59. NOTE that devfs is entirely optional. If you prefer the old
  60. disc-based device nodes, then simply leave CONFIG_DEVFS_FS=n (the
  61. default). In this case, nothing will change.  ALSO NOTE that if you do
  62. enable devfs, the defaults are such that full compatibility is
  63. maintained with the old devices names.
  64. There are two aspects to devfs: one is the underlying device
  65. namespace, which is a namespace just like any mounted filesystem. The
  66. other aspect is the filesystem code which provides a view of the
  67. device namespace. The reason I make a distinction is because devfs
  68. can be mounted many times, with each mount showing the same device
  69. namespace. Changes made are global to all mounted devfs filesystems.
  70. Also, because the devfs namespace exists without any devfs mounts, you
  71. can easily mount the root filesystem by referring to an entry in the
  72. devfs namespace.
  73. The cost of devfs is a small increase in kernel code size and memory
  74. usage. About 7 pages of code (some of that in __init sections) and 72
  75. bytes for each entry in the namespace. A modest system has only a
  76. couple of hundred device entries, so this costs a few more
  77. pages. Compare this with the suggestion to put /dev on a <a
  78. href="#why-faq-ramdisc">ramdisc.
  79. On a typical machine, the cost is under 0.2 percent. On a modest
  80. system with 64 MBytes of RAM, the cost is under 0.1 percent.  The
  81. accusations of "bloatware" levelled at devfs are not justified.
  82. -----------------------------------------------------------------------------
  83. Why do it?
  84. There are several problems that devfs addresses. Some of these
  85. problems are more serious than others (depending on your point of
  86. view), and some can be solved without devfs. However, the totality of
  87. these problems really calls out for devfs.
  88. The choice is a patchwork of inefficient user space solutions, which
  89. are complex and likely to be fragile, or to use a simple and efficient
  90. devfs which is robust.
  91. There have been many counter-proposals to devfs, all seeking to
  92. provide some of the benefits without actually implementing devfs. So
  93. far there has been an absence of code and no proposed alternative has
  94. been able to provide all the features that devfs does. Further,
  95. alternative proposals require far more complexity in user-space (and
  96. still deliver less functionality than devfs). Some people have the
  97. mantra of reducing "kernel bloat", but don't consider the effects on
  98. user-space.
  99. A good solution limits the total complexity of kernel-space and
  100. user-space.
  101. Major&minor allocation
  102. The existing scheme requires the allocation of major and minor device
  103. numbers for each and every device. This means that a central
  104. co-ordinating authority is required to issue these device numbers
  105. (unless you're developing a "private" device driver), in order to
  106. preserve uniqueness. Devfs shifts the burden to a namespace. This may
  107. not seem like a huge benefit, but actually it is. Since driver authors
  108. will naturally choose a device name which reflects the functionality
  109. of the device, there is far less potential for namespace conflict.
  110. Solving this requires a kernel change.
  111. /dev management
  112. Because you currently access devices through device nodes, these must
  113. be created by the system administrator. For standard devices you can
  114. usually find a MAKEDEV programme which creates all these (hundreds!)
  115. of nodes. This means that changes in the kernel must be reflected by
  116. changes in the MAKEDEV programme, or else the system administrator
  117. creates device nodes by hand.
  118. The basic problem is that there are two separate databases of
  119. major and minor numbers. One is in the kernel and one is in /dev (or
  120. in a MAKEDEV programme, if you want to look at it that way). This is
  121. duplication of information, which is not good practice.
  122. Solving this requires a kernel change.
  123. /dev growth
  124. A typical /dev has over 1200 nodes! Most of these devices simply don't
  125. exist because the hardware is not available. A huge /dev increases the
  126. time to access devices (I'm just referring to the dentry lookup times
  127. and the time taken to read inodes off disc: the next subsection shows
  128. some more horrors).
  129. An example of how big /dev can grow is if we consider SCSI devices:
  130. host           6  bits  (say up to 64 hosts on a really big machine)
  131. channel        4  bits  (say up to 16 SCSI buses per host)
  132. id             4  bits
  133. lun            3  bits
  134. partition      6  bits
  135. TOTAL          23 bits
  136. This requires 8 Mega (1024*1024) inodes if we want to store all
  137. possible device nodes. Even if we scrap everything but id,partition
  138. and assume a single host adapter with a single SCSI bus and only one
  139. logical unit per SCSI target (id), that's still 10 bits or 1024
  140. inodes. Each VFS inode takes around 256 bytes (kernel 2.1.78), so
  141. that's 256 kBytes of inode storage on disc (assuming real inodes take
  142. a similar amount of space as VFS inodes). This is actually not so bad,
  143. because disc is cheap these days. Embedded systems would care about
  144. 256 kBytes of /dev inodes, but you could argue that embedded systems
  145. would have hand-tuned /dev directories. I've had to do just that on my
  146. embedded systems, but I would rather just leave it to devfs.
  147. Another issue is the time taken to lookup an inode when first
  148. referenced. Not only does this take time in scanning through a list in
  149. memory, but also the seek times to read the inodes off disc.
  150. This could be solved in user-space using a clever programme which
  151. scanned the kernel logs and deleted /dev entries which are not
  152. available and created them when they were available. This programme
  153. would need to be run every time a new module was loaded, which would
  154. slow things down a lot.
  155. There is an existing programme called scsidev which will automatically
  156. create device nodes for SCSI devices. It can do this by scanning files
  157. in /proc/scsi. Unfortunately, to extend this idea to other device
  158. nodes would require significant modifications to existing drivers (so
  159. they too would provide information in /proc). This is a non-trivial
  160. change (I should know: devfs has had to do something similar). Once
  161. you go to this much effort, you may as well use devfs itself (which
  162. also provides this information).  Furthermore, such a system would
  163. likely be implemented in an ad-hoc fashion, as different drivers will
  164. provide their information in different ways.
  165. Devfs is much cleaner, because it (naturally) has a uniform mechanism
  166. to provide this information: the device nodes themselves!
  167. Node to driver file_operations translation
  168. There is an important difference between the way disc-based character
  169. and block nodes and devfs entries make the connection between an entry
  170. in /dev and the actual device driver.
  171. With the current 8 bit major and minor numbers the connection between
  172. disc-based c&b nodes and per-major drivers is done through a
  173. fixed-length table of 128 entries. The various filesystem types set
  174. the inode operations for c&b nodes to {chr,blk}dev_inode_operations,
  175. so when a device is opened a few quick levels of indirection bring us
  176. to the driver file_operations.
  177. For miscellaneous character devices a second step is required: there
  178. is a scan for the driver entry with the same minor number as the file
  179. that was opened, and the appropriate minor open method is called. This
  180. scanning is done *every time* you open a device node. Potentially, you
  181. may be searching through dozens of misc. entries before you find your
  182. open method. While not an enormous performance overhead, this does
  183. seem pointless.
  184. Linux *must* move beyond the 8 bit major and minor barrier,
  185. somehow. If we simply increase each to 16 bits, then the indexing
  186. scheme used for major driver lookup becomes untenable, because the
  187. major tables (one each for character and block devices) would need to
  188. be 64 k entries long (512 kBytes on x86, 1 MByte for 64 bit
  189. systems). So we would have to use a scheme like that used for
  190. miscellaneous character devices, which means the search time goes up
  191. linearly with the average number of major device drivers on your
  192. system. Not all "devices" are hardware, some are higher-level drivers
  193. like KGI, so you can get more "devices" without adding hardware
  194. You can improve this by creating an ordered (balanced:-)
  195. binary tree, in which case your search time becomes log(N).
  196. Alternatively, you can use hashing to speed up the search.
  197. But why do that search at all if you don't have to? Once again, it
  198. seems pointless.
  199. Note that devfs doesn't use the major&minor system. For devfs
  200. entries, the connection is done when you lookup the /dev entry. When
  201. devfs_register() is called, an internal table is appended which has
  202. the entry name and the file_operations. If the dentry cache doesn't
  203. have the /dev entry already, this internal table is scanned to get the
  204. file_operations, and an inode is created. If the dentry cache already
  205. has the entry, there is *no lookup time* (other than the dentry scan
  206. itself, but we can't avoid that anyway, and besides Linux dentries
  207. cream other OS's which don't have them:-). Furthermore, the number of
  208. node entries in a devfs is only the number of available device
  209. entries, not the number of *conceivable* entries. Even if you remove
  210. unnecessary entries in a disc-based /dev, the number of conceivable
  211. entries remains the same: you just limit yourself in order to save
  212. space.
  213. Devfs provides a fast connection between a VFS node and the device
  214. driver, in a scalable way.
  215. /dev as a system administration tool
  216. Right now /dev contains a list of conceivable devices, most of which I
  217. don't have. Devfs only shows those devices available on my
  218. system. This means that listing /dev is a handy way of checking what
  219. devices are available.
  220. Major&minor size
  221. Existing major and minor numbers are limited to 8 bits each. This is
  222. now a limiting factor for some drivers, particularly the SCSI disc
  223. driver, which consumes a single major number. Only 16 discs are
  224. supported, and each disc may have only 15 partitions. Maybe this isn't
  225. a problem for you, but some of us are building huge Linux systems with
  226. disc arrays. With devfs an arbitrary pointer can be associated with
  227. each device entry, which can be used to give an effective 32 bit
  228. device identifier (i.e. that's like having a 32 bit minor
  229. number). Since this is private to the kernel, there are no C library
  230. compatibility issues which you would have with increasing major and
  231. minor number sizes. See the section on "Allocation of Device Numbers"
  232. for details on maintaining compatibility with userspace.
  233. Solving this requires a kernel change.
  234. Since writing this, the kernel has been modified so that the SCSI disc
  235. driver has more major numbers allocated to it and now supports up to
  236. 128 discs. Since these major numbers are non-contiguous (a result of
  237. unplanned expansion), the implementation is a little more cumbersome
  238. than originally.
  239. Just like the changes to IPv4 to fix impending limitations in the
  240. address space, people find ways around the limitations. In the long
  241. run, however, solutions like IPv6 or devfs can't be put off forever.
  242. Read-only root filesystem
  243. Having your device nodes on the root filesystem means that you can't
  244. operate properly with a read-only root filesystem. This is because you
  245. want to change ownerships and protections of tty devices. Existing
  246. practice prevents you using a CD-ROM as your root filesystem for a
  247. *real* system. Sure, you can boot off a CD-ROM, but you can't change
  248. tty ownerships, so it's only good for installing.
  249. Also, you can't use a shared NFS root filesystem for a cluster of
  250. discless Linux machines (having tty ownerships changed on a common
  251. /dev is not good). Nor can you embed your root filesystem in a
  252. ROM-FS.
  253. You can get around this by creating a RAMDISC at boot time, making
  254. an ext2 filesystem in it, mounting it somewhere and copying the
  255. contents of /dev into it, then unmounting it and mounting it over
  256. /dev.
  257. A devfs is a cleaner way of solving this.
  258. Non-Unix root filesystem
  259. Non-Unix filesystems (such as NTFS) can't be used for a root
  260. filesystem because they variously don't support character and block
  261. special files or symbolic links. You can't have a separate disc-based
  262. or RAMDISC-based filesystem mounted on /dev because you need device
  263. nodes before you can mount these. Devfs can be mounted without any
  264. device nodes. Devlinks won't work because symlinks aren't supported.
  265. An alternative solution is to use initrd to mount a RAMDISC initial
  266. root filesystem (which is populated with a minimal set of device
  267. nodes), and then construct a new /dev in another RAMDISC, and finally
  268. switch to your non-Unix root filesystem. This requires clever boot
  269. scripts and a fragile and conceptually complex boot procedure.
  270. Devfs solves this in a robust and conceptually simple way.
  271. PTY security
  272. Current pseudo-tty (pty) devices are owned by root and read-writable
  273. by everyone. The user of a pty-pair cannot change
  274. ownership/protections without being suid-root.
  275. This could be solved with a secure user-space daemon which runs as
  276. root and does the actual creation of pty-pairs. Such a daemon would
  277. require modification to *every* programme that wants to use this new
  278. mechanism. It also slows down creation of pty-pairs.
  279. An alternative is to create a new open_pty() syscall which does much
  280. the same thing as the user-space daemon. Once again, this requires
  281. modifications to pty-handling programmes.
  282. The devfs solution allows a device driver to "tag" certain device
  283. files so that when an unopened device is opened, the ownerships are
  284. changed to the current euid and egid of the opening process, and the
  285. protections are changed to the default registered by the driver. When
  286. the device is closed ownership is set back to root and protections are
  287. set back to read-write for everybody. No programme need be changed.
  288. The devpts filesystem provides this auto-ownership feature for Unix98
  289. ptys. It doesn't support old-style pty devices, nor does it have all
  290. the other features of devfs.
  291. Intelligent device management
  292. Devfs implements a simple yet powerful protocol for communication with
  293. a device management daemon (devfsd) which runs in user space. It is
  294. possible to send a message (either synchronously or asynchronously) to
  295. devfsd on any event, such as registration/unregistration of device
  296. entries, opening and closing devices, looking up inodes, scanning
  297. directories and more. This has many possibilities. Some of these are
  298. already implemented. See:
  299. http://www.atnf.csiro.au/~rgooch/linux/
  300. Device entry registration events can be used by devfsd to change
  301. permissions of newly-created device nodes. This is one mechanism to
  302. control device permissions.
  303. Device entry registration/unregistration events can be used to run
  304. programmes or scripts. This can be used to provide automatic mounting
  305. of filesystems when a new block device media is inserted into the
  306. drive.
  307. Asynchronous device open and close events can be used to implement
  308. clever permissions management. For example, the default permissions on
  309. /dev/dsp do not allow everybody to read from the device. This is
  310. sensible, as you don't want some remote user recording what you say at
  311. your console. However, the console user is also prevented from
  312. recording. This behaviour is not desirable. With asynchronous device
  313. open and close events, you can have devfsd run a programme or script
  314. when console devices are opened to change the ownerships for *other*
  315. device nodes (such as /dev/dsp). On closure, you can run a different
  316. script to restore permissions. An advantage of this scheme over
  317. modifying the C library tty handling is that this works even if your
  318. programme crashes (how many times have you seen the utmp database with
  319. lingering entries for non-existent logins?).
  320. Synchronous device open events can be used to perform intelligent
  321. device access protections. Before the device driver open() method is
  322. called, the daemon must first validate the open attempt, by running an
  323. external programme or script. This is far more flexible than access
  324. control lists, as access can be determined on the basis of other
  325. system conditions instead of just the UID and GID.
  326. Inode lookup events can be used to authenticate module autoload
  327. requests. Instead of using kmod directly, the event is sent to
  328. devfsd which can implement an arbitrary authentication before loading
  329. the module itself.
  330. Inode lookup events can also be used to construct arbitrary
  331. namespaces, without having to resort to populating devfs with symlinks
  332. to devices that don't exist.
  333. Speculative Device Scanning
  334. Consider an application (like cdparanoia) that wants to find all
  335. CD-ROM devices on the system (SCSI, IDE and other types), whether or
  336. not their respective modules are loaded. The application must
  337. speculatively open certain device nodes (such as /dev/sr0 for the SCSI
  338. CD-ROMs) in order to make sure the module is loaded. This requires
  339. that all Linux distributions follow the standard device naming scheme
  340. (last time I looked RedHat did things differently). Devfs solves the
  341. naming problem.
  342. The same application also wants to see which devices are actually
  343. available on the system. With the existing system it needs to read the
  344. /dev directory and speculatively open each /dev/sr* device to
  345. determine if the device exists or not. With a large /dev this is an
  346. inefficient operation, especially if there are many /dev/sr* nodes. A
  347. solution like scsidev could reduce the number of /dev/sr* entries (but
  348. of course that also requires all that inefficient directory scanning).
  349. With devfs, the application can open the /dev/sr directory
  350. (which triggers the module autoloading if required), and proceed to
  351. read /dev/sr. Since only the available devices will have
  352. entries, there are no inefficencies in directory scanning or device
  353. openings.
  354. -----------------------------------------------------------------------------
  355. Who else does it?
  356. FreeBSD has a devfs implementation. Solaris and AIX each have a
  357. pseudo-devfs (something akin to scsidev but for all devices, with some
  358. unspecified kernel support). BeOS, Plan9 and QNX also have it. SGI's
  359. IRIX 6.4 and above also have a device filesystem.
  360. While we shouldn't just automatically do something because others do
  361. it, we should not ignore the work of others either. FreeBSD has a lot
  362. of competent people working on it, so their opinion should not be
  363. blithely ignored.
  364. -----------------------------------------------------------------------------
  365. How it works
  366. Registering device entries
  367. For every entry (device node) in a devfs-based /dev a driver must call
  368. devfs_register(). This adds the name of the device entry, the
  369. file_operations structure pointer and a few other things to an
  370. internal table. Device entries may be added and removed at any
  371. time. When a device entry is registered, it automagically appears in
  372. any mounted devfs'.
  373. Inode lookup
  374. When a lookup operation on an entry is performed and if there is no
  375. driver information for that entry devfs will attempt to call
  376. devfsd. If still no driver information can be found then a negative
  377. dentry is yielded and the next stage operation will be called by the
  378. VFS (such as create() or mknod() inode methods). If driver information
  379. can be found, an inode is created (if one does not exist already) and
  380. all is well.
  381. Manually creating device nodes
  382. The mknod() method allows you to create an ordinary named pipe in the
  383. devfs, or you can create a character or block special inode if one
  384. does not already exist. You may wish to create a character or block
  385. special inode so that you can set permissions and ownership. Later, if
  386. a device driver registers an entry with the same name, the
  387. permissions, ownership and times are retained. This is how you can set
  388. the protections on a device even before the driver is loaded. Once you
  389. create an inode it appears in the directory listing.
  390. Unregistering device entries
  391. A device driver calls devfs_unregister() to unregister an entry.
  392. Chroot() gaols
  393. 2.2.x kernels
  394. The semantics of inode creation are different when devfs is mounted
  395. with the "explicit" option. Now, when a device entry is registered, it
  396. will not appear until you use mknod() to create the device. It doesn't
  397. matter if you mknod() before or after the device is registered with
  398. devfs_register(). The purpose of this behaviour is to support
  399. chroot(2) gaols, where you want to mount a minimal devfs inside the
  400. gaol. Only the devices you specifically want to be available (through
  401. your mknod() setup) will be accessible.
  402. 2.4.x kernels
  403. As of kernel 2.3.99, the VFS has had the ability to rebind parts of
  404. the global filesystem namespace into another part of the namespace.
  405. This now works even at the leaf-node level, which means that
  406. individual files and device nodes may be bound into other parts of the
  407. namespace. This is like making links, but better, because it works
  408. across filesystems (unlike hard links) and works through chroot()
  409. gaols (unlike symbolic links).
  410. Because of these improvements to the VFS, the multi-mount capability
  411. in devfs is no longer needed. The administrator may create a minimal
  412. device tree inside a chroot(2) gaol by using VFS bindings. As this
  413. provides most of the features of the devfs multi-mount capability, I
  414. removed the multi-mount support code (after issuing an RFC). This
  415. yielded code size reductions and simplifications.
  416. If you want to construct a minimal chroot() gaol, the following
  417. command should suffice:
  418. mount --bind /dev/null /gaol/dev/null
  419. Repeat for other device nodes you want to expose. Simple!
  420. -----------------------------------------------------------------------------
  421. Operational issues
  422. Instructions for the impatient
  423. Nobody likes reading documentation. People just want to get in there
  424. and play. So this section tells you quickly the steps you need to take
  425. to run with devfs mounted over /dev. Skip these steps and you will end
  426. up with a nearly unbootable system. Subsequent sections describe the
  427. issues in more detail, and discuss non-essential configuration
  428. options.
  429. Devfsd
  430. OK, if you're reading this, I assume you want to play with
  431. devfs. First you should ensure that /usr/src/linux contains a
  432. recent kernel source tree. Then you need to compile devfsd, the device
  433. management daemon, available at
  434. http://www.atnf.csiro.au/~rgooch/linux/.
  435. Because the kernel has a naming scheme
  436. which is quite different from the old naming scheme, you need to
  437. install devfsd so that software and configuration files that use the
  438. old naming scheme will not break.
  439. Compile and install devfsd. You will be provided with a default
  440. configuration file /etc/devfsd.conf which will provide
  441. compatibility symlinks for the old naming scheme. Don't change this
  442. config file unless you know what you're doing. Even if you think you
  443. do know what you're doing, don't change it until you've followed all
  444. the steps below and booted a devfs-enabled system and verified that it
  445. works.
  446. Now edit your main system boot script so that devfsd is started at the
  447. very beginning (before any filesystem
  448. checks). /etc/rc.d/rc.sysinit is often the main boot script
  449. on systems with SysV-style boot scripts. On systems with BSD-style
  450. boot scripts it is often /etc/rc. Also check
  451. /sbin/rc.
  452. NOTE that the line you put into the boot
  453. script should be exactly:
  454. /sbin/devfsd /dev
  455. DO NOT use some special daemon-launching
  456. programme, otherwise the boot script may not wait for devfsd to finish
  457. initialising.
  458. System Libraries
  459. There may still be some problems because of broken software making
  460. assumptions about device names. In particular, some software does not
  461. handle devices which are symbolic links. If you are running a libc 5
  462. based system, install libc 5.4.44 (if you have libc 5.4.46, go back to
  463. libc 5.4.44, which is actually correct). If you are running a glibc
  464. based system, make sure you have glibc 2.1.3 or later.
  465. /etc/securetty
  466. PAM (Pluggable Authentication Modules) is supposed to be a flexible
  467. mechanism for providing better user authentication and access to
  468. services. Unfortunately, it's also fragile, complex and undocumented
  469. (check out RedHat 6.1, and probably other distributions as well). PAM
  470. has problems with symbolic links. Append the following lines to your
  471. /etc/securetty file:
  472. vc/1
  473. vc/2
  474. vc/3
  475. vc/4
  476. vc/5
  477. vc/6
  478. vc/7
  479. vc/8
  480. This will not weaken security. If you have a version of util-linux
  481. earlier than 2.10.h, please upgrade to 2.10.h or later. If you
  482. absolutely cannot upgrade, then also append the following lines to
  483. your /etc/securetty file:
  484. 1
  485. 2
  486. 3
  487. 4
  488. 5
  489. 6
  490. 7
  491. 8
  492. This may potentially weaken security by allowing root logins over the
  493. network (a password is still required, though). However, since there
  494. are problems with dealing with symlinks, I'm suspicious of the level
  495. of security offered in any case.
  496. XFree86
  497. While not essential, it's probably a good idea to upgrade to XFree86
  498. 4.0, as patches went in to make it more devfs-friendly. If you don't,
  499. you'll probably need to apply the following patch to
  500. /etc/security/console.perms so that ordinary users can run
  501. startx. Note that not all distributions have this file (e.g. Debian),
  502. so if it's not present, don't worry about it.
  503. --- /etc/security/console.perms.orig    Sat Apr 17 16:26:47 1999 
  504. +++ /etc/security/console.perms Fri Feb 25 23:53:55 2000 
  505. @@ -14,7 +14,7 @@ 
  506.  # man 5 console.perms 
  507.  # file classes -- these are regular expressions 
  508. -<console>=tty[0-9][0-9]* :[0-9].[0-9] :[0-9] 
  509. +<console>=tty[0-9][0-9]* vc/[0-9][0-9]* :[0-9].[0-9] :[0-9] 
  510.  # device classes -- these are shell-style globs 
  511.  <floppy>=/dev/fd[0-1]* 
  512. If the patch does not apply, then change the line:
  513. <console>=tty[0-9][0-9]* :[0-9].[0-9] :[0-9]
  514. with:
  515. <console>=tty[0-9][0-9]* vc/[0-9][0-9]* :[0-9].[0-9] :[0-9]
  516. Disable devpts
  517. I've had a report of devpts mounted on /dev/pts not working
  518. correctly. Since devfs will also manage /dev/pts, there is no
  519. need to mount devpts as well. You should either edit your
  520. /etc/fstab so devpts is not mounted, or disable devpts from
  521. your kernel configuration.
  522. Unsupported drivers
  523. Not all drivers have devfs support. If you depend on one of these
  524. drivers, you will need to create a script or tarfile that you can use
  525. at boot time to create device nodes as appropriate. There is a
  526. section which describes this. Another
  527. section lists the drivers which have
  528. devfs support.
  529. /dev/mouse
  530. Many disributions configure /dev/mouse to be the mouse device
  531. for XFree86 and GPM. I actually think this is a bad idea, because it
  532. adds another level of indirection. When looking at a config file, if
  533. you see /dev/mouse you're left wondering which mouse
  534. is being referred to. Hence I recommend putting the actual mouse
  535. device (for example /dev/psaux) into your
  536. /etc/X11/XF86Config file (and similarly for the GPM
  537. configuration file).
  538. Alternatively, use the same technique used for unsupported drivers
  539. described above.
  540. The Kernel
  541. Finally, you need to make sure devfs is compiled into your kernel. Set
  542. CONFIG_EXPERIMENTAL=y, CONFIG_DEVFS_FS=y and CONFIG_DEVFS_MOUNT=y by
  543. using favourite configuration tool (i.e. make config or
  544. make xconfig) and then make dep; make clean and then
  545. recompile your kernel and modules. At boot, devfs will be mounted onto
  546. /dev.
  547. If you encounter problems booting (for example if you forgot a
  548. configuration step), you can pass devfs=nomount at the kernel
  549. boot command line. This will prevent the kernel from mounting devfs at
  550. boot time onto /dev.
  551. In general, a kernel built with CONFIG_DEVFS_FS=y but without mounting
  552. devfs onto /dev is completely safe, and requires no
  553. configuration changes. One exception to take note of is when
  554. LABEL= directives are used in /etc/fstab. In this
  555. case you will be unable to boot properly. This is because the
  556. mount(8) programme uses /proc/partitions as part of
  557. the volume label search process, and the device names it finds are not
  558. available, because setting CONFIG_DEVFS_FS=y changes the names in
  559. /proc/partitions, irrespective of whether devfs is mounted.
  560. Now you've finished all the steps required. You're now ready to boot
  561. your shiny new kernel. Enjoy.
  562. Changing the configuration
  563. OK, you've now booted a devfs-enabled system, and everything works.
  564. Now you may feel like changing the configuration (common targets are
  565. /etc/fstab and /etc/devfsd.conf). Since you have a
  566. system that works, if you make any changes and it doesn't work, you
  567. now know that you only have to restore your configuration files to the
  568. default and it will work again.
  569. Permissions persistence across reboots
  570. If you don't use mknod(2) to create a device file, nor use chmod(2) or
  571. chown(2) to change the ownerships/permissions, the inode ctime will
  572. remain at 0 (the epoch, 12 am, 1-JAN-1970, GMT). Anything with a ctime
  573. later than this has had it's ownership/permissions changed. Hence, a
  574. simple script or programme may be used to tar up all changed inodes,
  575. prior to shutdown. Although effective, many consider this approach a
  576. kludge.
  577. A much better approach is to use devfsd to save and restore
  578. permissions. It may be configured to record changes in permissions and
  579. will save them in a database (in fact a directory tree), and restore
  580. these upon boot. This is an efficient method and results in immediate
  581. saving of current permissions (unlike the tar approach, which saves
  582. permissions at some unspecified future time).
  583. The default configuration file supplied with devfsd has config entries
  584. which you may uncomment to enable persistence management.
  585. If you decide to use the tar approach anyway, be aware that tar will
  586. first unlink(2) an inode before creating a new device node. The
  587. unlink(2) has the effect of breaking the connection between a devfs
  588. entry and the device driver. If you use the "devfs=only" boot option,
  589. you lose access to the device driver, requiring you to reload the
  590. module. I consider this a bug in tar (there is no real need to
  591. unlink(2) the inode first).
  592. Alternatively, you can use devfsd to provide more sophisticated
  593. management of device permissions. You can use devfsd to store
  594. permissions for whole groups of devices with a single configuration
  595. entry, rather than the conventional single entry per device entry.
  596. Permissions database stored in mounted-over /dev
  597. If you wish to save and restore your device permissions into the
  598. disc-based /dev while still mounting devfs onto /dev
  599. you may do so. This requires a 2.4.x kernel (in fact, 2.3.99 or
  600. later), which has the VFS binding facility. You need to do the
  601. following to set this up:
  602. make sure the kernel does not mount devfs at boot time
  603. create the /dev-state directory
  604. add the following lines near the very beginning of your boot
  605. scripts:
  606. mount --bind /dev /dev-state
  607. mount -t devfs none /dev
  608. devfsd /dev
  609. add the following lines to your /etc/devfsd.conf file:
  610. REGISTER ^pt[sy]/.* IGNORE
  611. CHANGE ^pt[sy]/.* IGNORE
  612. REGISTER .* COPY /dev-state/$devname $devpath
  613. CHANGE .* COPY $devpath /dev-state/$devname
  614. CREATE .* COPY $devpath /dev-state/$devname
  615. reboot.
  616. Permissions database stored in normal directory
  617. If you are using an older kernel which doesn't support VFS binding,
  618. then you won't be able to have the permissions database in a
  619. mounted-over /dev. However, you can still use a regular
  620. directory to store the database. The sample /etc/devfsd.conf
  621. file above may still be used. You will need to create the
  622. /dev-state directory prior to installing devfsd. If you have
  623. old permissions in /dev, then just copy (or move) the device
  624. nodes over to the new directory.
  625. Which method is better?
  626. The best method is to have the permissions database stored in the
  627. mounted-over /dev. This is because you will not need to copy
  628. device nodes over to /dev-state, and because it allows you to
  629. switch between devfs and non-devfs kernels, without requiring you to
  630. copy permissions between /dev-state (for devfs) and
  631. /dev (for non-devfs).
  632. Dealing with drivers without devfs support
  633. Currently, not all device drivers in the kernel have been modified to
  634. use devfs. Device drivers which do not yet have devfs support will not
  635. automagically appear in devfs. The simplest way to create device nodes
  636. for these drivers is to unpack a tarfile containing the required
  637. device nodes. You can do this in your boot scripts. All your drivers
  638. will now work as before.
  639. Hopefully for most people devfs will have enough support so that they
  640. can mount devfs directly over /dev without losing most functionality
  641. (i.e. losing access to various devices). As of 22-JAN-1998 (devfs
  642. patch version 10) I am now running this way. All the devices I have
  643. are available in devfs, so I don't lose anything.
  644. WARNING: if your configuration requires the old-style device names
  645. (i.e. /dev/hda1 or /dev/sda1), you must install devfsd and configure
  646. it to maintain compatibility entries. It is almost certain that you
  647. will require this. Note that the kernel creates a compatibility entry
  648. for the root device, so you don't need initrd.
  649. Note that you no longer need to mount devpts if you use Unix98 PTYs,
  650. as devfs can manage /dev/pts itself. This saves you some RAM, as you
  651. don't need to compile and install devpts. Note that some versions of
  652. glibc have a bug with Unix98 pty handling on devfs systems. Contact
  653. the glibc maintainers for a fix. Glibc 2.1.3 has the fix.
  654. Note also that apart from editing /etc/fstab, other things will need
  655. to be changed if you *don't* install devfsd. Some software (like the X
  656. server) hard-wire device names in their source. It really is much
  657. easier to install devfsd so that compatibility entries are created.
  658. You can then slowly migrate your system to using the new device names
  659. (for example, by starting with /etc/fstab), and then limiting the
  660. compatibility entries that devfsd creates.
  661. MAKE SURE YOU INSTALL DEVFSD BEFORE YOU BOOT A DEVFS-ENABLED KERNEL!
  662. Now that devfs has gone into the 2.3.46 kernel, I'm getting a lot of
  663. reports back. Many of these are because people are trying to run
  664. without devfsd, and hence some things break. Please just run devfsd if
  665. things break. I want to concentrate on real bugs rather than
  666. misconfiguration problems at the moment. If people are willing to fix
  667. bugs/false assumptions in other code (i.e. glibc, X server) and submit
  668. that to the respective maintainers, that would be great.
  669. All the way with Devfs
  670. The devfs kernel patch creates a rationalised device tree. As stated
  671. above, if you want to keep using the old /dev naming scheme,
  672. you just need to configure devfsd appopriately (see the man
  673. page). People who prefer the old names can ignore this section. For
  674. those of us who like the rationalised names and an uncluttered
  675. /dev, read on.
  676. If you don't run devfsd, or don't enable compatibility entry
  677. management, then you will have to configure your system to use the new
  678. names. For example, you will then need to edit your
  679. /etc/fstab to use the new disc naming scheme. If you want to
  680. be able to boot non-devfs kernels, you will need compatibility
  681. symlinks in the underlying disc-based /dev pointing back to
  682. the old-style names for when you boot a kernel without devfs.
  683. You can selectively decide which devices you want compatibility
  684. entries for. For example, you may only want compatibility entries for
  685. BSD pseudo-terminal devices (otherwise you'll have to patch you C
  686. library or use Unix98 ptys instead). It's just a matter of putting in
  687. the correct regular expression into /dev/devfsd.conf.
  688. There are other choices of naming schemes that you may prefer. For
  689. example, I don't use the kernel-supplied
  690. names, because they are too verbose. A common misconception is
  691. that the kernel-supplied names are meant to be used directly in
  692. configuration files. This is not the case. They are designed to
  693. reflect the layout of the devices attached and to provide easy
  694. classification.
  695. If you like the kernel-supplied names, that's fine. If you don't then
  696. you should be using devfsd to construct a namespace more to your
  697. liking. Devfsd has built-in code to construct a
  698. namespace that is both logical and easy to
  699. manage. In essence, it creates a convenient abbreviation of the
  700. kernel-supplied namespace.
  701. You are of course free to build your own namespace. Devfsd has all the
  702. infrastructure required to make this easy for you. All you need do is
  703. write a script. You can even write some C code and devfsd can load the
  704. shared object as a callable extension.
  705. Other Issues
  706. The init programme
  707. Another thing to take note of is whether your init programme
  708. creates a Unix socket /dev/telinit. Some versions of init
  709. create /dev/telinit so that the telinit programme can
  710. communicate with the init process. If you have such a system you need
  711. to make sure that devfs is mounted over /dev *before* init
  712. starts. In other words, you can't leave the mounting of devfs to
  713. /etc/rc, since this is executed after init. Other
  714. versions of init require a named pipe /dev/initctl
  715. which must exist *before* init starts. Once again, you need to
  716. mount devfs and then create the named pipe *before* init
  717. starts.
  718. The default behaviour now is not to mount devfs onto /dev at
  719. boot time for 2.3.x and later kernels. You can correct this with the
  720. "devfs=mount" boot option. This solves any problems with init,
  721. and also prevents the dreaded:
  722. Cannot open initial console
  723. message. For 2.2.x kernels where you need to apply the devfs patch,
  724. the default is to mount.
  725. If you have automatic mounting of devfs onto /dev then you
  726. may need to create /dev/initctl in your boot scripts. The
  727. following lines should suffice:
  728. mknod /dev/initctl p
  729. kill -SIGUSR1 1       # tell init that /dev/initctl now exists
  730. Alternatively, if you don't want the kernel to mount devfs onto
  731. /dev then you could use the following procedure is a
  732. guideline for how to get around /dev/initctl problems:
  733. # cd /sbin
  734. # mv init init.real
  735. # cat > init
  736. #! /bin/sh
  737. mount -n -t devfs none /dev
  738. mknod /dev/initctl p
  739. exec /sbin/init.real $*
  740. [control-D]
  741. # chmod a+x init
  742. Note that newer versions of init create /dev/initctl
  743. automatically, so you don't have to worry about this.
  744. Module autoloading
  745. You will need to configure devfsd to enable module
  746. autoloading. The following lines should be placed in your
  747. /etc/devfsd.conf file:
  748. LOOKUP .* MODLOAD
  749. As of devfsd-v1.3.10, a generic /etc/modules.devfs
  750. configuration file is installed, which is used by the MODLOAD
  751. action. This should be sufficient for most configurations. If you
  752. require further configuration, edit your /etc/modules.conf
  753. file. The way module autoloading work with devfs is:
  754. a process attempts to lookup a device node (e.g. /dev/fred)
  755. if that device node does not exist, the full pathname is passed to
  756. devfsd as a string
  757. devfsd will pass the string to the modprobe programme (provided the
  758. configuration line shown above is present), and specifies that
  759. /etc/modules.devfs is the configuration file
  760. /etc/modules.devfs includes /etc/modules.conf to
  761. access local configurations
  762. modprobe will search it's configuration files, looking for an alias
  763. that translates the pathname into a module name
  764. the translated pathname is then used to load the module.
  765. If you wanted a lookup of /dev/fred to load the
  766. mymod module, you would require the following configuration
  767. line in /etc/modules.conf:
  768. alias    /dev/fred    mymod
  769. The /etc/modules.devfs configuration file provides many such
  770. aliases for standard device names. If you look closely at this file,
  771. you will note that some modules require multiple alias configuration
  772. lines. This is required to support module autoloading for old and new
  773. device names.
  774. Mounting root off a devfs device
  775. If you wish to mount root off a devfs device when you pass the
  776. "devfs=only" boot option, then you need to pass in the
  777. "root=<device>" option to the kernel when booting. If you use
  778. LILO, then you must have this in lilo.conf:
  779. append = "root=<device>"
  780. Surprised? Yep, so was I. It turns out if you have (as most people
  781. do):
  782. root = <device>
  783. then LILO will determine the device number of <device> and will
  784. write that device number into a special place in the kernel image
  785. before starting the kernel, and the kernel will use that device number
  786. to mount the root filesystem. So, using the "append" variety ensures
  787. that LILO passes the root filesystem device as a string, which devfs
  788. can then use.
  789. Note that this isn't an issue if you don't pass "devfs=only".
  790. TTY issues
  791. The ttyname(3) function in some versions of the C library makes
  792. false assumptions about device entries which are symbolic links.  The
  793. tty(1) programme is one that depends on this function.  I've
  794. written a patch to libc 5.4.43 which fixes this. This has been
  795. included in libc 5.4.44 and a similar fix is in glibc 2.1.3.
  796. Kernel Naming Scheme
  797. The kernel provides a default naming scheme. This scheme is designed
  798. to make it easy to search for specific devices or device types, and to
  799. view the available devices. Some device types (such as hard discs),
  800. have a directory of entries, making it easy to see what devices of
  801. that class are available. Often, the entries are symbolic links into a
  802. directory tree that reflects the topology of available devices. The
  803. topological tree is useful for finding how your devices are arranged.
  804. Below is a list of the naming schemes for the most common drivers. A
  805. list of reserved device names is
  806. available for reference. Please send email to
  807. rgooch@atnf.csiro.au to obtain an allocation. Please be
  808. patient (the maintainer is busy). An alternative name may be allocated
  809. instead of the requested name, at the discretion of the maintainer.
  810. Disc Devices
  811. All discs, whether SCSI, IDE or whatever, are placed under the
  812. /dev/discs hierarchy:
  813. /dev/discs/disc0 first disc
  814. /dev/discs/disc1 second disc
  815. Each of these entries is a symbolic link to the directory for that
  816. device. The device directory contains:
  817. disc for the whole disc
  818. part* for individual partitions
  819. CD-ROM Devices
  820. All CD-ROMs, whether SCSI, IDE or whatever, are placed under the
  821. /dev/cdroms hierarchy:
  822. /dev/cdroms/cdrom0 first CD-ROM
  823. /dev/cdroms/cdrom1 second CD-ROM
  824. Each of these entries is a symbolic link to the real device entry for
  825. that device.
  826. Tape Devices
  827. All tapes, whether SCSI, IDE or whatever, are placed under the
  828. /dev/tapes hierarchy:
  829. /dev/tapes/tape0 first tape
  830. /dev/tapes/tape1 second tape
  831. Each of these entries is a symbolic link to the directory for that
  832. device. The device directory contains:
  833. mt for mode 0
  834. mtl for mode 1
  835. mtm for mode 2
  836. mta for mode 3
  837. mtn for mode 0, no rewind
  838. mtln for mode 1, no rewind
  839. mtmn for mode 2, no rewind
  840. mtan for mode 3, no rewind
  841. SCSI Devices
  842. To uniquely identify any SCSI device requires the following
  843. information:
  844.   controller (host adapter)
  845.   bus (SCSI channel)
  846.   target (SCSI ID)
  847.   unit (Logical Unit Number)
  848. All SCSI devices are placed under /dev/scsi (assuming devfs
  849. is mounted on /dev). Hence, a SCSI device with the following
  850. parameters: c=1,b=2,t=3,u=4 would appear as:
  851. /dev/scsi/host1/bus2/target3/lun4 device directory
  852. Inside this directory, a number of device entries may be created,
  853. depending on which SCSI device-type drivers were installed.
  854. See the section on the disc naming scheme to see what entries the SCSI
  855. disc driver creates.
  856. See the section on the tape naming scheme to see what entries the SCSI
  857. tape driver creates.
  858. The SCSI CD-ROM driver creates:
  859. cd
  860. The SCSI generic driver creates:
  861. generic
  862. IDE Devices
  863. To uniquely identify any IDE device requires the following
  864. information:
  865.   controller
  866.   bus (aka. primary/secondary)
  867.   target (aka. master/slave)
  868.   unit
  869. All IDE devices are placed under /dev/ide, and uses a similar
  870. naming scheme to the SCSI subsystem.
  871. XT Hard Discs
  872. All XT discs are placed under /dev/xd. The first XT disc has
  873. the directory /dev/xd/disc0.
  874. TTY devices
  875. The tty devices now appear as:
  876.   New name                   Old-name                   Device Type
  877.   --------                   --------                   -----------
  878.   /dev/tts/{0,1,...}         /dev/ttyS{0,1,...}         Serial ports
  879.   /dev/cua/{0,1,...}         /dev/cua{0,1,...}          Call out devices
  880.   /dev/vc/0                  /dev/tty                   Current virtual console
  881.   /dev/vc/{1,2,...}          /dev/tty{1...63}           Virtual consoles
  882.   /dev/vcc/{0,1,...}         /dev/vcs{1...63}           Virtual consoles
  883.   /dev/pty/m{0,1,...}        /dev/ptyp??                PTY masters
  884.   /dev/pty/s{0,1,...}        /dev/ttyp??                PTY slaves
  885. RAMDISCS
  886. The RAMDISCS are placed in their own directory, and are named thus:
  887.   /dev/rd/{0,1,2,...}
  888. Meta Devices
  889. The meta devices are placed in their own directory, and are named
  890. thus:
  891.   /dev/md/{0,1,2,...}
  892. Floppy discs
  893. Floppy discs are placed in the /dev/floppy directory.
  894. Loop devices
  895. Loop devices are placed in the /dev/loop directory.
  896. Sound devices
  897. Sound devices are placed in the /dev/sound directory
  898. (audio, sequencer, ...).
  899. Devfsd Naming Scheme
  900. Devfsd provides a naming scheme which is a convenient abbreviation of
  901. the kernel-supplied namespace. In some
  902. cases, the kernel-supplied naming scheme is quite convenient, so
  903. devfsd does not provide another naming scheme. The convenience names
  904. that devfsd creates are in fact the same names as the original devfs
  905. kernel patch created (before Linus mandated the Big Name
  906. Change). These are referred to as "new compatibility entries".
  907. In order to configure devfsd to create these convenience names, the
  908. following lines should be placed in your /etc/devfsd.conf:
  909. REGISTER .* MKNEWCOMPAT
  910. UNREGISTER .* RMNEWCOMPAT
  911. This will cause devfsd to create (and destroy) symbolic links which
  912. point to the kernel-supplied names.
  913. SCSI Hard Discs
  914. All SCSI discs are placed under /dev/sd (assuming devfs is
  915. mounted on /dev). Hence, a SCSI disc with the following
  916. parameters: c=1,b=2,t=3,u=4 would appear as:
  917. /dev/sd/c1b2t3u4 for the whole disc
  918. /dev/sd/c1b2t3u4p5 for the 5th partition
  919. /dev/sd/c1b2t3u4p5s6 for the 6th slice in the 5th partition
  920. SCSI Tapes
  921. All SCSI tapes are placed under /dev/st. A similar naming
  922. scheme is used as for SCSI discs. A SCSI tape with the
  923. parameters:c=1,b=2,t=3,u=4 would appear as:
  924. /dev/st/c1b2t3u4m0 for mode 0
  925. /dev/st/c1b2t3u4m1 for mode 1
  926. /dev/st/c1b2t3u4m2 for mode 2
  927. /dev/st/c1b2t3u4m3 for mode 3
  928. /dev/st/c1b2t3u4m0n for mode 0, no rewind
  929. /dev/st/c1b2t3u4m1n for mode 1, no rewind
  930. /dev/st/c1b2t3u4m2n for mode 2, no rewind
  931. /dev/st/c1b2t3u4m3n for mode 3, no rewind
  932. SCSI CD-ROMs
  933. All SCSI CD-ROMs are placed under /dev/sr. A similar naming
  934. scheme is used as for SCSI discs. A SCSI CD-ROM with the
  935. parameters:c=1,b=2,t=3,u=4 would appear as:
  936. /dev/sr/c1b2t3u4
  937. SCSI Generic Devices
  938. All SCSI CD-ROMs are placed under /dev/sg. A similar naming
  939. scheme is used as for SCSI discs. A SCSI generic device with the
  940. parameters:c=1,b=2,t=3,u=4 would appear as:
  941. /dev/sg/c1b2t3u4
  942. IDE Hard Discs
  943. All IDE discs are placed under /dev/ide/hd, using a similar
  944. convention to SCSI discs. The following mappings exist between the new
  945. and the old names:
  946. /dev/hda /dev/ide/hd/c0b0t0u0
  947. /dev/hdb /dev/ide/hd/c0b0t1u0
  948. /dev/hdc /dev/ide/hd/c0b1t0u0
  949. /dev/hdd /dev/ide/hd/c0b1t1u0
  950. IDE Tapes
  951. A similar naming scheme is used as for IDE discs. The entries will
  952. appear in the /dev/ide/mt directory.
  953. IDE CD-ROM
  954. A similar naming scheme is used as for IDE discs. The entries will
  955. appear in the /dev/ide/cd directory.
  956. IDE Floppies
  957. A similar naming scheme is used as for IDE discs. The entries will
  958. appear in the /dev/ide/fd directory.
  959. XT Hard Discs
  960. All XT discs are placed under /dev/xd. The first XT disc
  961. would appear as /dev/xd/c0t0.
  962. Old Compatibility Names
  963. The old compatibility names are the legacy device names, such as
  964. /dev/hda, /dev/sda, /dev/rtc and so on.
  965. Devfsd can be configured to create compatibility symlinks so that you
  966. may continue to use the old names in your configuration files and so
  967. that old applications will continue to function correctly.
  968. In order to configure devfsd to create these legacy names, the
  969. following lines should be placed in your /etc/devfsd.conf:
  970. REGISTER .* MKOLDCOMPAT
  971. UNREGISTER .* RMOLDCOMPAT
  972. This will cause devfsd to create (and destroy) symbolic links which
  973. point to the kernel-supplied names.
  974. SCSI Host Probing Issues
  975. Devfs allows you to identify SCSI discs based in part on SCSI host
  976. numbers. If you have only one SCSI host (card) in your computer, then
  977. clearly it will be given host number 0. Life is not always that easy
  978. is you have multiple SCSI hosts. Unfortunately, it can sometimes be
  979. difficult to guess what the probing order of SCSI hosts is. You need
  980. to know the probe order before you can use device names. To make this
  981. easy, there is a kernel boot parameter called "scsihosts". This allows
  982. you to specify the probe order for different types of SCSI hosts. The
  983. syntax of this parameter is:
  984. scsihosts=<name_1>:<name_2>:<name_3>:...:<name_n>
  985. where <name_1>,<name_2>,...,<name_n> are the names
  986. of drivers used in the /proc filesystem. For example:
  987.     scsihosts=aha1542:ppa:aha1542::ncr53c7xx
  988. means that devices connected to
  989. - first aha1542 controller   - will be /dev/scsi/host0/bus#/target#/lun#
  990. - first parallel port ZIP    - will be /dev/scsi/host1/bus#/target#/lun#
  991. - second aha1542 controller  - will be /dev/scsi/host2/bus#/target#/lun#
  992. - first NCR53C7xx controller - will be /dev/scsi/host4/bus#/target#/lun#
  993. - any extra controller       - will be /dev/scsi/host5/bus#/target#/lun#,
  994.                                        /dev/scsi/host6/bus#/target#/lun#, etc
  995. - if any of above controllers will not be found - the reserved names will
  996.   not be used by any other device.
  997. - /dev/scsi/host3/bus#/target#/lun# names will never be used
  998. You can use ',' instead of ':' as the separator character if you
  999. wish. I have used the devfsd naming scheme
  1000. here.
  1001. Note that this scheme does not address the SCSI host order if you have
  1002. multiple cards of the same type (such as NCR53c8xx). In this case you
  1003. need to use the driver-specific boot parameters to control this.
  1004. -----------------------------------------------------------------------------
  1005. Device drivers currently ported
  1006. - All miscellaneous character devices support devfs (this is done
  1007.   transparently through misc_register())
  1008. - SCSI discs and generic hard discs
  1009. - Character memory devices (null, zero, full and so on)
  1010.   Thanks to C. Scott Ananian <cananian@alumni.princeton.edu>
  1011. - Loop devices (/dev/loop?)
  1012.  
  1013. - TTY devices (console, serial ports, terminals and pseudo-terminals)
  1014.   Thanks to C. Scott Ananian <cananian@alumni.princeton.edu>
  1015. - SCSI tapes (/dev/scsi and /dev/tapes)
  1016. - SCSI CD-ROMs (/dev/scsi and /dev/cdroms)
  1017. - SCSI generic devices (/dev/scsi)
  1018. - RAMDISCS (/dev/ram?)
  1019. - Meta Devices (/dev/md*)
  1020. - Floppy discs (/dev/floppy)
  1021. - Parallel port printers (/dev/printers)
  1022. - Sound devices (/dev/sound)
  1023.   Thanks to Eric Dumas <dumas@linux.eu.org> and
  1024.   C. Scott Ananian <cananian@alumni.princeton.edu>
  1025. - Joysticks (/dev/joysticks)
  1026. - Sparc keyboard (/dev/kbd)
  1027. - DSP56001 digital signal processor (/dev/dsp56k)
  1028. - Apple Desktop Bus (/dev/adb)
  1029. - Coda network file system (/dev/cfs*)
  1030. - Virtual console capture devices (/dev/vcc)
  1031.   Thanks to Dennis Hou <smilax@mindmeld.yi.org>
  1032. - Frame buffer devices (/dev/fb)
  1033. - Video capture devices (/dev/v4l)
  1034. -----------------------------------------------------------------------------
  1035. Allocation of Device Numbers
  1036. Devfs allows you to write a driver which doesn't need to allocate a
  1037. device number (major&minor numbers) for the internal operation of the
  1038. kernel. However, there are a number of userspace programmes that use
  1039. the device number as a unique handle for a device. An example is the
  1040. find programme, which uses device numbers to determine whether
  1041. an inode is on a different filesystem than another inode. The device
  1042. number used is the one for the block device which a filesystem is
  1043. using. To preserve compatibility with userspace programmes, block
  1044. devices using devfs need to have unique device numbers allocated to
  1045. them. Furthermore, POSIX specifies device numbers, so some kind of
  1046. device number needs to be presented to userspace.
  1047. The simplest option (especially when porting drivers to devfs) is to
  1048. keep using the old major and minor numbers. Devfs will take whatever
  1049. values are given for major&minor and pass them onto userspace.
  1050. Alternatively, you can have devfs choose unique device numbers for
  1051. you. When you register a character or block device using
  1052. devfs_register you can provide the optional
  1053. DEVFS_FL_AUTO_DEVNUM flag, which will then automatically allocate a
  1054. unique device number (the allocation is separated for the character
  1055. and block devices).
  1056. This device number is a 16 bit number, so this leaves plenty of space
  1057. for large numbers of discs and partitions. This scheme can also be
  1058. used for character devices, in particular the tty devices, which are
  1059. currently limited to 256 pseudo-ttys (this limits the total number of
  1060. simultaneous xterms and remote logins).  Note that the device number
  1061. is limited to the range 36864-61439 (majors 144-239), in order to
  1062. avoid any possible conflicts with existing official allocations.
  1063. Please note that using dynamically allocated block device numbers may
  1064. break the NFS daemons (both user and kernel mode), which expect dev_t
  1065. for a given device to be constant over the lifetime of remote mounts.
  1066. A final note on this scheme: since it doesn't increase the size of
  1067. device numbers, there are no compatibility issues with userspace.
  1068. -----------------------------------------------------------------------------
  1069. Questions and Answers
  1070. Making things work
  1071. Alternatives to devfs
  1072. What I don't like about devfs
  1073. How to report bugs
  1074. Strange kernel messages
  1075. Compilation problems with devfsd
  1076. Making things work
  1077. Here are some common questions and answers.
  1078. Devfsd is not managing all my permissions
  1079. Make sure you are capturing the appropriate events. For example,
  1080. device entries created by the kernel generate REGISTER events,
  1081. but those created by devfsd generate CREATE events.
  1082. Devfsd is not capturing all REGISTER events
  1083. See the previous entry: you may need to capture CREATE events.
  1084. X will not start
  1085. Make sure you followed the steps 
  1086. outlined above.
  1087. Why don't my network devices appear in devfs?
  1088. This is not a bug. Network devices have their own, completely separate
  1089. namespace. They are accessed via socket(2) and
  1090. setsockopt(2) calls, and thus require no device nodes. I have
  1091. raised the possibilty of moving network devices into the device
  1092. namespace, but have had no response.
  1093. How can I test if I have devfs compiled into my kernel?
  1094. All filesystems built-in or currently loaded are listed in
  1095. /proc/filesystems. If you see a devfs entry, then
  1096. you know that devfs was compiled into your kernel. If you have
  1097. correctly configured and rebuilt your kernel, then devfs will be
  1098. built-in. If you think you've configured it in, but
  1099. /proc/filesystems doesn't show it, you've made a mistake.
  1100. Common mistakes include:
  1101. Using a 2.2.x kernel without applying the devfs patch (if you
  1102. don't know how to patch your kernel, use 2.4.x instead, don't bother
  1103. asking me how to patch)
  1104. Forgetting to set CONFIG_EXPERIMENTAL=y
  1105. Forgetting to set CONFIG_DEVFS_FS=y
  1106. Forgetting to set CONFIG_DEVFS_MOUNT=y (if you want devfs
  1107. to be automatically mounted at boot)
  1108. Editing your .config manually, instead of using make
  1109. config or make xconfig
  1110. Forgetting to run make dep; make clean after changing the
  1111. configuration and before compiling
  1112. Forgetting to compile your kernel and modules
  1113. Forgetting to install your kernel
  1114. Forgetting to install your modules
  1115. Please check twice that you've done all these steps before sending in
  1116. a bug report.
  1117. How can I test if devfs is mounted on /dev?
  1118. The device filesystem will always create an entry called
  1119. ".devfsd", which is used to communicate with the daemon. Even
  1120. if the daemon is not running, this entry will exist. Testing for the
  1121. existence of this entry is the approved method of determining if devfs
  1122. is mounted or not. Note that the type of entry (i.e. regular file,
  1123. character device, named pipe, etc.) may change without notice. Only
  1124. the existence of the entry should be relied upon.
  1125. Alternatives to devfs
  1126. I've attempted to collate all the anti-devfs proposals and explain
  1127. their limitations. Under construction.
  1128. Why not just pass device create/remove events to a daemon?
  1129. Here the suggestion is to develop an API in the kernel so that devices
  1130. can register create and remove events, and a daemon listens for those
  1131. events. The daemon would then populate/depopulate /dev (which
  1132. resides on disc).
  1133. This has several limitations:
  1134. it only works for modules loaded and unloaded (or devices inserted
  1135. and removed) after the kernel has finished booting. Without a database
  1136. of events, there is no way the daemon could fully populate
  1137. /dev
  1138. if you add a database to this scheme, the question is then how to
  1139. present that database to user-space. If you make it a list of strings
  1140. with embedded event codes which are passed through a pipe to the
  1141. daemon, then this is only of use to the daemon. I would argue that the
  1142. natural way to present this data is via a filesystem (since many of
  1143. the events will be of a hierarchical nature), such as devfs.
  1144. Presenting the data as a filesystem makes it easy for the user to see
  1145. what is available and also makes it easy to write scripts to scan the
  1146. "database"
  1147. the tight binding between device nodes and drivers is no longer
  1148. possible (requiring the otherwise perfectly avoidable
  1149. table lookups)
  1150. you cannot catch inode lookup events on /dev which means
  1151. that module autoloading requires device nodes to be created. This is a
  1152. problem, particularly for drivers where only a few inodes are created
  1153. from a potentially large set
  1154. this technique can't be used when the root FS is mounted
  1155. read-only
  1156. Just implement a better scsidev
  1157. This suggestion involves taking the scsidev programme and
  1158. extending it to scan for all devices, not just SCSI devices. The
  1159. scsidev programme works by scanning /proc/scsi
  1160. Problems:
  1161. the kernel does not currently provide a list of all devices
  1162. available. Not all drivers register entries in /proc or
  1163. generate kernel messages
  1164. there is no uniform mechanism to register devices other than the
  1165. devfs API
  1166. implementing such an API is then the same as the
  1167. proposal above
  1168. Put /dev on a ramdisc
  1169. This suggestion involves creating a ramdisc and populating it with
  1170. device nodes and then mounting it over /dev.
  1171. Problems:
  1172. this doesn't help when mounting the root filesystem, since you
  1173. still need a device node to do that
  1174. if you want to use this technique for the root device node as
  1175. well, you need to use initrd. This complicates the booting sequence
  1176. and makes it significantly harder to administer and configure. The
  1177. initrd is essentially opaque, robbing the system administrator of easy
  1178. configuration
  1179. insufficient information is available to correctly populate the
  1180. ramdisc. So we come back to the
  1181. proposal above to "solve" this
  1182. a ramdisc-based solution would take more kernel memory, since the
  1183. backing store would be (at best) normal VFS inodes and dentries, which
  1184. take 284 bytes and 112 bytes, respectively, for each entry. Compare
  1185. that to 72 bytes for devfs
  1186. Do nothing: there's no problem
  1187. Sometimes people can be heard to claim that the existing scheme is
  1188. fine. This is what they're ignoring:
  1189. device number size (8 bits each for major and minor) is a real
  1190. limitation, and must be fixed somehow. Systems with large numbers of
  1191. SCSI devices, for example, will continue to consume the remaining
  1192. unallocated major numbers. USB will also need to push beyond the 8 bit
  1193. minor limitation
  1194. simply increasing the device number size is insufficient. Apart
  1195. from causing a lot of pain, it doesn't solve the management issues
  1196. of a /dev with thousands or more device nodes
  1197. ignoring the problem of a huge /dev will not make it go
  1198. away, and dismisses the legitimacy of a large number of people who
  1199. want a dynamic /dev
  1200. the standard response then becomes: "write a device management
  1201. daemon", which brings us back to the
  1202. proposal above
  1203. What I don't like about devfs
  1204. Here are some common complaints about devfs, and some suggestions and
  1205. solutions that may make it more palatable for you. I can't please
  1206. everybody, but I do try :-)
  1207. I hate the naming scheme
  1208. First, remember that no naming scheme will please everybody. You hate
  1209. the scheme, others love it. Who's to say who's right and who's wrong?
  1210. Ultimately, the person who writes the code gets to choose, and what
  1211. exists now is a combination of the the choices made by the
  1212. devfs author and the
  1213. kernel maintainer (Linus).
  1214. However, not all is lost. If you want to create your own naming
  1215. scheme, it is a simple matter to write a standalone script, hack
  1216. devfsd, or write a script called by devfsd. You can create whatever
  1217. naming scheme you like.
  1218. Further, if you want to remove all traces of the devfs naming scheme
  1219. from /dev, you can mount devfs elsewhere (say
  1220. /devfs) and populate /dev with links into
  1221. /devfs. This population can be automated using devfsd if you
  1222. wish.
  1223. You can even use the VFS binding facility to make the links, rather
  1224. than using symbolic links. This way, you don't even have to see the
  1225. "destination" of these symbolic links.
  1226. Devfs puts policy into the kernel
  1227. There's already policy in the kernel. Device numbers are in fact
  1228. policy (why should the kernel dictate what device numbers I use?).
  1229. Face it, some policy has to be in the kernel. The real difference
  1230. between device names as policy and device numbers as policy is that
  1231. no one will use device numbers directly, because device
  1232. numbers are devoid of meaning to humans and are ugly. At least with
  1233. the devfs device names, (even though you can add your own naming
  1234. scheme) some people will use the devfs-supplied names directly. This
  1235. offends some people :-)
  1236. Devfs is bloatware
  1237. This is not even remotely true. As shown above,
  1238. both code and data size are quite modest.
  1239. How to report bugs
  1240. If you have (or think you have) a bug with devfs, please follow the
  1241. steps below:
  1242. please make sure you have the latest devfs patches applied. The
  1243. latest kernel version might not have the latest devfs patches applied
  1244. yet (Linus is very busy)
  1245. save a copy of your complete kernel logs (preferably by
  1246. using the dmesg programme) for later inclusion in your bug
  1247. report. You may need to use the -s switch to increase the
  1248. internal buffer size so you can capture all the boot messages
  1249. try booting with devfs=dall passed to the kernel boot
  1250. command line (read the documentation on your bootloader on how to do
  1251. this), and save the result to a file. This may be quite verbose, and
  1252. it may overflow the messages buffer, but try to get as much of it as
  1253. you can
  1254. if you get an Oops, run ksymoops to decode it so that the
  1255. names of the offending functions are provided. A non-decoded Oops is
  1256. pretty useless
  1257. send a copy of your devfsd configuration file(s)
  1258. send the bug report to me first.
  1259. Don't expect that I will see it if you post it to the linux-kernel
  1260. mailing list. Include all the information listed above, plus
  1261. anything else that you think might be relevant. Put the string
  1262. devfs somewhere in the subject line, so my mail filters mark
  1263. it as urgent
  1264. Here is a general guide on how to ask questions in a way that greatly
  1265. improves your chances of getting a reply:
  1266. http://www.tuxedo.org/~esr/faqs/smart-questions.html. If you have
  1267. a bug to report, you should also read
  1268. http://www.chiark.greenend.org.uk/~sgtatham/bugs.html.
  1269. Strange kernel messages
  1270. You may see devfs-related messages in your kernel logs. Below are some
  1271. messages and what they mean (and what you should do about them, if
  1272. anything).
  1273. devfs_register(fred): could not append to parent, err: -17
  1274. You need to check what the error code means, but usually 17 means
  1275. EEXIST. This means that a driver attempted to create an entry
  1276. fred in a directory, but there already was an entry with that
  1277. name. This is often caused by flawed boot scripts which untar a bunch
  1278. of inodes into /dev, as a way to restore permissions. This
  1279. message is harmless, as the device nodes will still
  1280. provide access to the driver (unless you use the devfs=only
  1281. boot option, which is only for dedicated souls:-). If you want to get
  1282. rid of these annoying messages, upgrade to devfsd-v1.3.20 and use the
  1283. recommended RESTORE directive to restore permissions.
  1284. devfs_mk_dir(bill): using old entry in dir: c1808724 ""
  1285. This is similar to the message above, except that a driver attempted
  1286. to create a directory named bill, and the parent directory
  1287. has an entry with the same name. In this case, to ensure that drivers
  1288. continue to work properly, the old entry is re-used and given to the
  1289. driver. In 2.5 kernels, the driver is given a NULL entry, and thus,
  1290. under rare circumstances, may not create the require device nodes.
  1291. The solution is the same as above.
  1292. Compilation problems with devfsd
  1293. Usually, you can compile devfsd just by typing in
  1294. make in the source directory, followed by a make
  1295. install (as root). Sometimes, you may have problems, particularly
  1296. on broken configurations.
  1297. error messages relating to DEVFSD_NOTIFY_DELETE
  1298. This happened because you have an ancient set of kernel headers
  1299. installed in /usr/include/linux or /usr/src/linux.
  1300. Install kernel 2.4.10 or later. You may need to pass the
  1301. KERNEL_DIR variable to make (if you did not install
  1302. the new kernel sources as /usr/src/linux), or you may copy
  1303. the devfs_fs.h file in the kernel source tree into
  1304. /usr/include/linux.
  1305. -----------------------------------------------------------------------------
  1306. Other resources
  1307. Douglas Gilbert has written a useful document at
  1308. http://www.torque.net/sg/devfs_scsi.html which
  1309. explores the SCSI subsystem and how it interacts with devfs
  1310. Douglas Gilbert has written another useful document at
  1311. http://www.torque.net/scsi/scsihosts.html which
  1312. discusses the scsihosts= boot option
  1313. Douglas Gilbert has written yet another useful document at
  1314. http://www.torque.net/scsi/SCSI-2.4-HOWTO/ which
  1315. discusses the Linux SCSI subsystem in 2.4.
  1316. Johannes Erdfelt has started a discussion paper on Linux and
  1317. hot-swap devices, describing what the requirements are for a scalable
  1318. solution and how and why he's used devfs+devfsd. Note that this is an
  1319. early draft only, available in plain text form at:
  1320. http://johannes.erdfelt.com/hotswap.txt.
  1321. Johannes has promised a HTML version will follow.
  1322. I presented an invited 
  1323. paper
  1324. at the
  1325. 2nd Annual Storage Management Workshop held in Miamia, Florida,
  1326. U.S.A. in October 2000.
  1327. -----------------------------------------------------------------------------
  1328. Translations of this document
  1329. This document has been translated into other languages.
  1330. The document master (in English) by rgooch@atnf.csiro.au is
  1331. available at
  1332. http://www.atnf.csiro.au/~rgooch/linux/docs/devfs.html
  1333. A Korean translation by viatoris@nownuri.net is available at
  1334. http://home.nownuri.net/~viatoris/devfs/devfs.html
  1335. A newer version is under construcation at
  1336. http://viatoris.new21.org/devfs/devfs.html
  1337. -----------------------------------------------------------------------------
  1338. Most flags courtesy of ITA's 
  1339. Flags of All Countries
  1340. used with permission.