1*19c3b8c2SApple OSS DistributionsNote: The following comments are from the original FreeBSD 3.1 README 2*19c3b8c2SApple OSS Distributions 3*19c3b8c2SApple OSS Distributionsthis file is: /sys/miscfs/devfs/README 4*19c3b8c2SApple OSS Distributions 5*19c3b8c2SApple OSS Distributionsto enable: add 6*19c3b8c2SApple OSS Distributionsoptions DEVFS 7*19c3b8c2SApple OSS Distributions 8*19c3b8c2SApple OSS Distributionsto your config file.. 9*19c3b8c2SApple OSS Distributionsexpect it to be highly useless for a while, 10*19c3b8c2SApple OSS Distributionsas the only devices that register themselves are the floppy, 11*19c3b8c2SApple OSS Distributionsthe pcaudio stuff, speaker, null,mem,zero,io,kmem. 12*19c3b8c2SApple OSS Distributions 13*19c3b8c2SApple OSS Distributionsit works like this: 14*19c3b8c2SApple OSS Distributions 15*19c3b8c2SApple OSS DistributionsThere is a tree of nodes that describe the layout of the DEVFS as seen by 16*19c3b8c2SApple OSS Distributionsthe drivers.. they add nodes to this tree. This is called the 'back' layer 17*19c3b8c2SApple OSS Distributionsfor reasons that will become obvious in a second. Think of it as a 18*19c3b8c2SApple OSS DistributionsBLUEPRINT of the DEVFS tree. Each back node has associated with it 19*19c3b8c2SApple OSS Distributionsa "devnode" struct, that holds information about the device 20*19c3b8c2SApple OSS Distributions(or directory) and a pointer to the vnode if one has been associated 21*19c3b8c2SApple OSS Distributionswith that node. The back node itself can be considered to be 22*19c3b8c2SApple OSS Distributionsa directory entry, and contains the default name of the device, 23*19c3b8c2SApple OSS Distributionsand a link to the directory that holds it. It is sometimes refered 24*19c3b8c2SApple OSS Distributionsto in the code as the dev_name. The devnode can be considered the inode. 25*19c3b8c2SApple OSS Distributions 26*19c3b8c2SApple OSS DistributionsWhen you mount the devfs somewhere (you can mount it multiple times in 27*19c3b8c2SApple OSS Distributionsmultiple places), a front layer is created that contains a tree of 'front' 28*19c3b8c2SApple OSS Distributionsnodes. 29*19c3b8c2SApple OSS Distributions 30*19c3b8c2SApple OSS DistributionsThink of this as a Transparency, layed over the top of the blueprint. 31*19c3b8c2SApple OSS Distributions(or possibly a photocopy). 32*19c3b8c2SApple OSS Distributions 33*19c3b8c2SApple OSS DistributionsThe front and back nodes are identical in type, but the back nodes 34*19c3b8c2SApple OSS Distributionsare reserved for kernel use only, and are protected from the user. 35*19c3b8c2SApple OSS DistributionsThe back plane has a mount structure and all that stuff, but it is in 36*19c3b8c2SApple OSS Distributionsfact not really mounted. (and is thus not reachable via namei). 37*19c3b8c2SApple OSS DistributionsInternal kernel routines can open devices in this plane 38*19c3b8c2SApple OSS Distributionseven if the external devfs has not been mounted yet :) 39*19c3b8c2SApple OSS Distributions(e.g. to find the root device) 40*19c3b8c2SApple OSS Distributions 41*19c3b8c2SApple OSS DistributionsTo start with there is a 1:1 relationship between the front nodes 42*19c3b8c2SApple OSS Distributionsand the backing nodes, however once the front plane has been created 43*19c3b8c2SApple OSS Distributionsthe nodes can be moved around within that plane (or deleted). 44*19c3b8c2SApple OSS DistributionsThink of this as the ability to revise a transparency... 45*19c3b8c2SApple OSS Distributionsthe blueprint is untouched. 46*19c3b8c2SApple OSS Distributions 47*19c3b8c2SApple OSS DistributionsThere is a "devnode" struct associated with each front note also. 48*19c3b8c2SApple OSS DistributionsFront nodes that refer to devices, use the same "devnode" struct that is used 49*19c3b8c2SApple OSS Distributionsby their associated backing node, so that multiple front nodes that 50*19c3b8c2SApple OSS Distributionspoint to the same device will use the same "devnode" struct, and through 51*19c3b8c2SApple OSS Distributionsthat, the same vnode, ops, modification times, flags, owner and group. 52*19c3b8c2SApple OSS DistributionsFront nodes representing directories and symlinks have their own 53*19c3b8c2SApple OSS Distributions"devnode" structs, and may therefore differ. (have different vnodes) 54*19c3b8c2SApple OSS Distributionsi.e. if you have two devfs trees mounted, you can change the 55*19c3b8c2SApple OSS Distributionsdirectories in one without changing the other. 56*19c3b8c2SApple OSS Distributionse.g. remove or rename nodes 57*19c3b8c2SApple OSS Distributions 58*19c3b8c2SApple OSS DistributionsMultiple mountings are like multiple transparencies, 59*19c3b8c2SApple OSS Distributionseach showing through to the original blueprint. 60*19c3b8c2SApple OSS Distributions 61*19c3b8c2SApple OSS DistributionsInformation that is to be shared between these mounts is stored 62*19c3b8c2SApple OSS Distributionsin the 'backing' node for that object. Once you have erased 'front' 63*19c3b8c2SApple OSS Distributionsobject, there is no memory of where the backing object was, and 64*19c3b8c2SApple OSS Distributionsexcept for the possibility of searching the entire backing tree 65*19c3b8c2SApple OSS Distributionsfor the node with the correct major/minor/type, I don't see that 66*19c3b8c2SApple OSS Distributionsit is easily recovered.. Particularly as there will eventually be 67*19c3b8c2SApple OSS Distributions(I hope) devices that go direct from the backing node to the driver 68*19c3b8c2SApple OSS Distributionswithout going via the cdevsw table.. they may not even have 69*19c3b8c2SApple OSS Distributionsmajor/minor numbers. 70*19c3b8c2SApple OSS Distributions 71*19c3b8c2SApple OSS DistributionsI see 'mount -u' as a possible solution to recovering a broken dev tree. 72*19c3b8c2SApple OSS Distributions(though umount+mount would do the same) 73*19c3b8c2SApple OSS Distributions 74*19c3b8c2SApple OSS DistributionsBecause non device nodes (directories and symlinks) have their own 75*19c3b8c2SApple OSS Distributions"devnode" structs on each layer, these may have different 76*19c3b8c2SApple OSS Distributionsflags, owners, and contents on each layer. 77*19c3b8c2SApple OSS Distributionse.g. if you have a chroot tree like erf.tfs.com has, you 78*19c3b8c2SApple OSS Distributionsmay want different permissions or owners on the chroot mount of the DEVFS 79*19c3b8c2SApple OSS Distributionsthan you want in the real one. You might also want to delete some sensitive 80*19c3b8c2SApple OSS Distributionsdevices from the chroot tree. 81*19c3b8c2SApple OSS Distributions 82*19c3b8c2SApple OSS DistributionsDirectories also have backing nodes but there is nothing to stop 83*19c3b8c2SApple OSS Distributionsthe user from removing a front node from the directory front node. 84*19c3b8c2SApple OSS Distributions(except permissions of course). This is because the front directory 85*19c3b8c2SApple OSS Distributionsnodes keep their own records as to which front nodes are members 86*19c3b8c2SApple OSS Distributionsof that directory and do not refer to their original backing node 87*19c3b8c2SApple OSS Distributionsfor this information. 88*19c3b8c2SApple OSS Distributions 89*19c3b8c2SApple OSS DistributionsThe front nodes may be moved to other directories (including 90*19c3b8c2SApple OSS Distributionsdirectories) however this does not break the linkage between the 91*19c3b8c2SApple OSS Distributionsbacking nodes and the front nodes. The backing node never moves. If 92*19c3b8c2SApple OSS Distributionsa driver decides to remove a device from the backing tree, the FS 93*19c3b8c2SApple OSS Distributionscode follows the links to all the front nodes linked to that backing 94*19c3b8c2SApple OSS Distributionsnode, and deletes them, no matter where they've been moved to. 95*19c3b8c2SApple OSS Distributions(active vnodes are redirected to point to the deadfs). 96*19c3b8c2SApple OSS Distributions 97*19c3b8c2SApple OSS DistributionsIf a directory has been moved, and a new backing node is inserted 98*19c3b8c2SApple OSS Distributionsinto its own back node, the new front node will appear in that front 99*19c3b8c2SApple OSS Distributionsdirectory, even though it's been moved, because the directory that 100*19c3b8c2SApple OSS Distributionsgets the front node is found via the links and not by name. 101*19c3b8c2SApple OSS Distributions 102*19c3b8c2SApple OSS Distributionsa mount -u might be considered to be a request to 'refresh' the 103*19c3b8c2SApple OSS Distributionsplane that controls to the mount being updated.. that would have the 104*19c3b8c2SApple OSS Distributionseffect of 're-propogating' through any backing nodes that find they 105*19c3b8c2SApple OSS Distributionshave no front nodes in that plane. 106*19c3b8c2SApple OSS Distributions 107*19c3b8c2SApple OSS Distributions 108*19c3b8c2SApple OSS DistributionsNOTES FOR RELEASE 1.2 109*19c3b8c2SApple OSS Distributions1/ this is very preliminary 110*19c3b8c2SApple OSS Distributions2/ the routines have greatly simplified since release 1.1 111*19c3b8c2SApple OSS Distributions(I guess the break did me good :) 112*19c3b8c2SApple OSS Distributions3/ many features are not present yet.. 113*19c3b8c2SApple OSS Distributionse.g. symlinks, a comprehensive registration interface (only a crude one) 114*19c3b8c2SApple OSS Distributionsability to unlink and mv nodes. 115*19c3b8c2SApple OSS Distributions4/ I'm pretty sure my use of vnodes is bad and it may be 'losing' 116*19c3b8c2SApple OSS Distributionsthem, or alternatively, corrupting things.. I need a vnode specialist 117*19c3b8c2SApple OSS Distributionsto look at this. 118*19c3b8c2SApple OSS Distributions 119