base.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:116k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*  devfs (Device FileSystem) driver.
  2.     Copyright (C) 1998-2002  Richard Gooch
  3.     This library is free software; you can redistribute it and/or
  4.     modify it under the terms of the GNU Library General Public
  5.     License as published by the Free Software Foundation; either
  6.     version 2 of the License, or (at your option) any later version.
  7.     This library is distributed in the hope that it will be useful,
  8.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  10.     Library General Public License for more details.
  11.     You should have received a copy of the GNU Library General Public
  12.     License along with this library; if not, write to the Free
  13.     Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  14.     Richard Gooch may be reached by email at  rgooch@atnf.csiro.au
  15.     The postal address is:
  16.       Richard Gooch, c/o ATNF, P. O. Box 76, Epping, N.S.W., 2121, Australia.
  17.     ChangeLog
  18.     19980110   Richard Gooch <rgooch@atnf.csiro.au>
  19.                Original version.
  20.   v0.1
  21.     19980111   Richard Gooch <rgooch@atnf.csiro.au>
  22.                Created per-fs inode table rather than using inode->u.generic_ip
  23.   v0.2
  24.     19980111   Richard Gooch <rgooch@atnf.csiro.au>
  25.                Created .epoch inode which has a ctime of 0.
  26.        Fixed loss of named pipes when dentries lost.
  27.        Fixed loss of inode data when devfs_register() follows mknod().
  28.   v0.3
  29.     19980111   Richard Gooch <rgooch@atnf.csiro.au>
  30.                Fix for when compiling with CONFIG_KERNELD.
  31.     19980112   Richard Gooch <rgooch@atnf.csiro.au>
  32.                Fix for readdir() which sometimes didn't show entries.
  33.        Added <<tolerant>> option to <devfs_register>.
  34.   v0.4
  35.     19980113   Richard Gooch <rgooch@atnf.csiro.au>
  36.                Created <devfs_fill_file> function.
  37.   v0.5
  38.     19980115   Richard Gooch <rgooch@atnf.csiro.au>
  39.                Added subdirectory support. Major restructuring.
  40.     19980116   Richard Gooch <rgooch@atnf.csiro.au>
  41.                Fixed <find_by_dev> to not search major=0,minor=0.
  42.        Added symlink support.
  43.   v0.6
  44.     19980120   Richard Gooch <rgooch@atnf.csiro.au>
  45.                Created <devfs_mk_dir> function and support directory unregister
  46.     19980120   Richard Gooch <rgooch@atnf.csiro.au>
  47.                Auto-ownership uses real uid/gid rather than effective uid/gid.
  48.   v0.7
  49.     19980121   Richard Gooch <rgooch@atnf.csiro.au>
  50.                Supported creation of sockets.
  51.   v0.8
  52.     19980122   Richard Gooch <rgooch@atnf.csiro.au>
  53.                Added DEVFS_FL_HIDE_UNREG flag.
  54.        Interface change to <devfs_mk_symlink>.
  55.                Created <devfs_symlink> to support symlink(2).
  56.   v0.9
  57.     19980123   Richard Gooch <rgooch@atnf.csiro.au>
  58.                Added check to <devfs_fill_file> to check inode is in devfs.
  59.        Added optional traversal of symlinks.
  60.   v0.10
  61.     19980124   Richard Gooch <rgooch@atnf.csiro.au>
  62.                Created <devfs_get_flags> and <devfs_set_flags>.
  63.   v0.11
  64.     19980125   C. Scott Ananian <cananian@alumni.princeton.edu>
  65.                Created <devfs_find_handle>.
  66.     19980125   Richard Gooch <rgooch@atnf.csiro.au>
  67.                Allow removal of symlinks.
  68.   v0.12
  69.     19980125   Richard Gooch <rgooch@atnf.csiro.au>
  70.                Created <devfs_set_symlink_destination>.
  71.     19980126   Richard Gooch <rgooch@atnf.csiro.au>
  72.                Moved DEVFS_SUPER_MAGIC into header file.
  73.        Added DEVFS_FL_HIDE flag.
  74.        Created <devfs_get_maj_min>.
  75.        Created <devfs_get_handle_from_inode>.
  76.        Fixed minor bug in <find_by_dev>.
  77.     19980127   Richard Gooch <rgooch@atnf.csiro.au>
  78.        Changed interface to <find_by_dev>, <find_entry>,
  79.        <devfs_unregister>, <devfs_fill_file> and <devfs_find_handle>.
  80.        Fixed inode times when symlink created with symlink(2).
  81.   v0.13
  82.     19980129   C. Scott Ananian <cananian@alumni.princeton.edu>
  83.                Exported <devfs_set_symlink_destination>, <devfs_get_maj_min>
  84.        and <devfs_get_handle_from_inode>.
  85.     19980129   Richard Gooch <rgooch@atnf.csiro.au>
  86.        Created <devfs_unlink> to support unlink(2).
  87.   v0.14
  88.     19980129   Richard Gooch <rgooch@atnf.csiro.au>
  89.        Fixed kerneld support for entries in devfs subdirectories.
  90.     19980130   Richard Gooch <rgooch@atnf.csiro.au>
  91.        Bugfixes in <call_kerneld>.
  92.   v0.15
  93.     19980207   Richard Gooch <rgooch@atnf.csiro.au>
  94.        Call kerneld when looking up unregistered entries.
  95.   v0.16
  96.     19980326   Richard Gooch <rgooch@atnf.csiro.au>
  97.        Modified interface to <devfs_find_handle> for symlink traversal.
  98.   v0.17
  99.     19980331   Richard Gooch <rgooch@atnf.csiro.au>
  100.        Fixed persistence bug with device numbers for manually created
  101.        device files.
  102.        Fixed problem with recreating symlinks with different content.
  103.   v0.18
  104.     19980401   Richard Gooch <rgooch@atnf.csiro.au>
  105.        Changed to CONFIG_KMOD.
  106.        Hide entries which are manually unlinked.
  107.        Always invalidate devfs dentry cache when registering entries.
  108.        Created <devfs_rmdir> to support rmdir(2).
  109.        Ensure directories created by <devfs_mk_dir> are visible.
  110.   v0.19
  111.     19980402   Richard Gooch <rgooch@atnf.csiro.au>
  112.        Invalidate devfs dentry cache when making directories.
  113.        Invalidate devfs dentry cache when removing entries.
  114.        Fixed persistence bug with fifos.
  115.   v0.20
  116.     19980421   Richard Gooch <rgooch@atnf.csiro.au>
  117.        Print process command when debugging kerneld/kmod.
  118.        Added debugging for register/unregister/change operations.
  119.     19980422   Richard Gooch <rgooch@atnf.csiro.au>
  120.        Added "devfs=" boot options.
  121.   v0.21
  122.     19980426   Richard Gooch <rgooch@atnf.csiro.au>
  123.        No longer lock/unlock superblock in <devfs_put_super>.
  124.        Drop negative dentries when they are released.
  125.        Manage dcache more efficiently.
  126.   v0.22
  127.     19980427   Richard Gooch <rgooch@atnf.csiro.au>
  128.        Added DEVFS_FL_AUTO_DEVNUM flag.
  129.   v0.23
  130.     19980430   Richard Gooch <rgooch@atnf.csiro.au>
  131.        No longer set unnecessary methods.
  132.   v0.24
  133.     19980504   Richard Gooch <rgooch@atnf.csiro.au>
  134.        Added PID display to <call_kerneld> debugging message.
  135.        Added "after" debugging message to <call_kerneld>.
  136.     19980519   Richard Gooch <rgooch@atnf.csiro.au>
  137.        Added "diread" and "diwrite" boot options.
  138.     19980520   Richard Gooch <rgooch@atnf.csiro.au>
  139.        Fixed persistence problem with permissions.
  140.   v0.25
  141.     19980602   Richard Gooch <rgooch@atnf.csiro.au>
  142.        Support legacy device nodes.
  143.        Fixed bug where recreated inodes were hidden.
  144.   v0.26
  145.     19980602   Richard Gooch <rgooch@atnf.csiro.au>
  146.        Improved debugging in <get_vfs_inode>.
  147.     19980607   Richard Gooch <rgooch@atnf.csiro.au>
  148.        No longer free old dentries in <devfs_mk_dir>.
  149.        Free all dentries for a given entry when deleting inodes.
  150.   v0.27
  151.     19980627   Richard Gooch <rgooch@atnf.csiro.au>
  152.        Limit auto-device numbering to majors 128 to 239.
  153.   v0.28
  154.     19980629   Richard Gooch <rgooch@atnf.csiro.au>
  155.        Fixed inode times persistence problem.
  156.   v0.29
  157.     19980704   Richard Gooch <rgooch@atnf.csiro.au>
  158.        Fixed spelling in <devfs_readlink> debug.
  159.        Fixed bug in <devfs_setup> parsing "dilookup".
  160.   v0.30
  161.     19980705   Richard Gooch <rgooch@atnf.csiro.au>
  162.        Fixed devfs inode leak when manually recreating inodes.
  163.        Fixed permission persistence problem when recreating inodes.
  164.   v0.31
  165.     19980727   Richard Gooch <rgooch@atnf.csiro.au>
  166.        Removed harmless "unused variable" compiler warning.
  167.        Fixed modes for manually recreated device nodes.
  168.   v0.32
  169.     19980728   Richard Gooch <rgooch@atnf.csiro.au>
  170.        Added NULL devfs inode warning in <devfs_read_inode>.
  171.        Force all inode nlink values to 1.
  172.   v0.33
  173.     19980730   Richard Gooch <rgooch@atnf.csiro.au>
  174.        Added "dimknod" boot option.
  175.        Set inode nlink to 0 when freeing dentries.
  176.        Fixed modes for manually recreated symlinks.
  177.   v0.34
  178.     19980802   Richard Gooch <rgooch@atnf.csiro.au>
  179.        Fixed bugs in recreated directories and symlinks.
  180.   v0.35
  181.     19980806   Richard Gooch <rgooch@atnf.csiro.au>
  182.        Fixed bugs in recreated device nodes.
  183.     19980807   Richard Gooch <rgooch@atnf.csiro.au>
  184.        Fixed bug in currently unused <devfs_get_handle_from_inode>.
  185.        Defined new <devfs_handle_t> type.
  186.        Improved debugging when getting entries.
  187.        Fixed bug where directories could be emptied.
  188.   v0.36
  189.     19980809   Richard Gooch <rgooch@atnf.csiro.au>
  190.        Replaced dummy .epoch inode with .devfsd character device.
  191.     19980810   Richard Gooch <rgooch@atnf.csiro.au>
  192.        Implemented devfsd protocol revision 0.
  193.   v0.37
  194.     19980819   Richard Gooch <rgooch@atnf.csiro.au>
  195.        Added soothing message to warning in <devfs_d_iput>.
  196.   v0.38
  197.     19980829   Richard Gooch <rgooch@atnf.csiro.au>
  198.        Use GCC extensions for structure initialisations.
  199.        Implemented async open notification.
  200.        Incremented devfsd protocol revision to 1.
  201.   v0.39
  202.     19980908   Richard Gooch <rgooch@atnf.csiro.au>
  203.        Moved async open notification to end of <devfs_open>.
  204.   v0.40
  205.     19980910   Richard Gooch <rgooch@atnf.csiro.au>
  206.        Prepended "/dev/" to module load request.
  207.        Renamed <call_kerneld> to <call_kmod>.
  208.   v0.41
  209.     19980910   Richard Gooch <rgooch@atnf.csiro.au>
  210.        Fixed typo "AYSNC" -> "ASYNC".
  211.   v0.42
  212.     19980910   Richard Gooch <rgooch@atnf.csiro.au>
  213.        Added open flag for files.
  214.   v0.43
  215.     19980927   Richard Gooch <rgooch@atnf.csiro.au>
  216.        Set i_blocks=0 and i_blksize=1024 in <devfs_read_inode>.
  217.   v0.44
  218.     19981005   Richard Gooch <rgooch@atnf.csiro.au>
  219.        Added test for empty <<name>> in <devfs_find_handle>.
  220.        Renamed <generate_path> to <devfs_generate_path> and published.
  221.   v0.45
  222.     19981006   Richard Gooch <rgooch@atnf.csiro.au>
  223.        Created <devfs_get_fops>.
  224.   v0.46
  225.     19981007   Richard Gooch <rgooch@atnf.csiro.au>
  226.        Limit auto-device numbering to majors 144 to 239.
  227.   v0.47
  228.     19981010   Richard Gooch <rgooch@atnf.csiro.au>
  229.        Updated <devfs_follow_link> for VFS change in 2.1.125.
  230.   v0.48
  231.     19981022   Richard Gooch <rgooch@atnf.csiro.au>
  232.        Created DEVFS_ FL_COMPAT flag.
  233.   v0.49
  234.     19981023   Richard Gooch <rgooch@atnf.csiro.au>
  235.        Created "nocompat" boot option.
  236.   v0.50
  237.     19981025   Richard Gooch <rgooch@atnf.csiro.au>
  238.        Replaced "mount" boot option with "nomount".
  239.   v0.51
  240.     19981110   Richard Gooch <rgooch@atnf.csiro.au>
  241.        Created "only" boot option.
  242.   v0.52
  243.     19981112   Richard Gooch <rgooch@atnf.csiro.au>
  244.        Added DEVFS_FL_REMOVABLE flag.
  245.   v0.53
  246.     19981114   Richard Gooch <rgooch@atnf.csiro.au>
  247.        Only call <scan_dir_for_removable> on first call to
  248.        <devfs_readdir>.
  249.   v0.54
  250.     19981205   Richard Gooch <rgooch@atnf.csiro.au>
  251.        Updated <devfs_rmdir> for VFS change in 2.1.131.
  252.   v0.55
  253.     19981218   Richard Gooch <rgooch@atnf.csiro.au>
  254.        Created <devfs_mk_compat>.
  255.     19981220   Richard Gooch <rgooch@atnf.csiro.au>
  256.        Check for partitions on removable media in <devfs_lookup>.
  257.   v0.56
  258.     19990118   Richard Gooch <rgooch@atnf.csiro.au>
  259.        Added support for registering regular files.
  260.        Created <devfs_set_file_size>.
  261.        Update devfs inodes from entries if not changed through FS.
  262.   v0.57
  263.     19990124   Richard Gooch <rgooch@atnf.csiro.au>
  264.        Fixed <devfs_fill_file> to only initialise temporary inodes.
  265.        Trap for NULL fops in <devfs_register>.
  266.        Return -ENODEV in <devfs_fill_file> for non-driver inodes.
  267.   v0.58
  268.     19990126   Richard Gooch <rgooch@atnf.csiro.au>
  269.        Switched from PATH_MAX to DEVFS_PATHLEN.
  270.   v0.59
  271.     19990127   Richard Gooch <rgooch@atnf.csiro.au>
  272.        Created "nottycompat" boot option.
  273.   v0.60
  274.     19990318   Richard Gooch <rgooch@atnf.csiro.au>
  275.        Fixed <devfsd_read> to not overrun event buffer.
  276.   v0.61
  277.     19990329   Richard Gooch <rgooch@atnf.csiro.au>
  278.        Created <devfs_auto_unregister>.
  279.   v0.62
  280.     19990330   Richard Gooch <rgooch@atnf.csiro.au>
  281.        Don't return unregistred entries in <devfs_find_handle>.
  282.        Panic in <devfs_unregister> if entry unregistered.
  283.     19990401   Richard Gooch <rgooch@atnf.csiro.au>
  284.        Don't panic in <devfs_auto_unregister> for duplicates.
  285.   v0.63
  286.     19990402   Richard Gooch <rgooch@atnf.csiro.au>
  287.        Don't unregister already unregistered entries in <unregister>.
  288.   v0.64
  289.     19990510   Richard Gooch <rgooch@atnf.csiro.au>
  290.        Disable warning messages when unable to read partition table for
  291.        removable media.
  292.   v0.65
  293.     19990512   Richard Gooch <rgooch@atnf.csiro.au>
  294.        Updated <devfs_lookup> for VFS change in 2.3.1-pre1.
  295.        Created "oops-on-panic" boot option.
  296.        Improved debugging in <devfs_register> and <devfs_unregister>.
  297.   v0.66
  298.     19990519   Richard Gooch <rgooch@atnf.csiro.au>
  299.        Added documentation for some functions.
  300.     19990525   Richard Gooch <rgooch@atnf.csiro.au>
  301.        Removed "oops-on-panic" boot option: now always Oops.
  302.   v0.67
  303.     19990531   Richard Gooch <rgooch@atnf.csiro.au>
  304.        Improved debugging in <devfs_register>.
  305.   v0.68
  306.     19990604   Richard Gooch <rgooch@atnf.csiro.au>
  307.        Added "diunlink" and "nokmod" boot options.
  308.        Removed superfluous warning message in <devfs_d_iput>.
  309.   v0.69
  310.     19990611   Richard Gooch <rgooch@atnf.csiro.au>
  311.        Took account of change to <d_alloc_root>.
  312.   v0.70
  313.     19990614   Richard Gooch <rgooch@atnf.csiro.au>
  314.        Created separate event queue for each mounted devfs.
  315.        Removed <devfs_invalidate_dcache>.
  316.        Created new ioctl()s.
  317.        Incremented devfsd protocol revision to 3.
  318.        Fixed bug when re-creating directories: contents were lost.
  319.        Block access to inodes until devfsd updates permissions.
  320.     19990615   Richard Gooch <rgooch@atnf.csiro.au>
  321.        Support 2.2.x kernels.
  322.   v0.71
  323.     19990623   Richard Gooch <rgooch@atnf.csiro.au>
  324.        Switched to sending process uid/gid to devfsd.
  325.        Renamed <call_kmod> to <try_modload>.
  326.        Added DEVFSD_NOTIFY_LOOKUP event.
  327.     19990624   Richard Gooch <rgooch@atnf.csiro.au>
  328.        Added DEVFSD_NOTIFY_CHANGE event.
  329.        Incremented devfsd protocol revision to 4.
  330.   v0.72
  331.     19990713   Richard Gooch <rgooch@atnf.csiro.au>
  332.        Return EISDIR rather than EINVAL for read(2) on directories.
  333.   v0.73
  334.     19990809   Richard Gooch <rgooch@atnf.csiro.au>
  335.        Changed <devfs_setup> to new __init scheme.
  336.   v0.74
  337.     19990901   Richard Gooch <rgooch@atnf.csiro.au>
  338.        Changed remaining function declarations to new __init scheme.
  339.   v0.75
  340.     19991013   Richard Gooch <rgooch@atnf.csiro.au>
  341.        Created <devfs_get_info>, <devfs_set_info>,
  342.        <devfs_get_first_child> and <devfs_get_next_sibling>.
  343.        Added <<dir>> parameter to <devfs_register>, <devfs_mk_compat>,
  344.        <devfs_mk_dir> and <devfs_find_handle>.
  345.        Work sponsored by SGI.
  346.   v0.76
  347.     19991017   Richard Gooch <rgooch@atnf.csiro.au>
  348.        Allow multiple unregistrations.
  349.        Work sponsored by SGI.
  350.   v0.77
  351.     19991026   Richard Gooch <rgooch@atnf.csiro.au>
  352.        Added major and minor number to devfsd protocol.
  353.        Incremented devfsd protocol revision to 5.
  354.        Work sponsored by SGI.
  355.   v0.78
  356.     19991030   Richard Gooch <rgooch@atnf.csiro.au>
  357.        Support info pointer for all devfs entry types.
  358.        Added <<info>> parameter to <devfs_mk_dir> and
  359.        <devfs_mk_symlink>.
  360.        Work sponsored by SGI.
  361.   v0.79
  362.     19991031   Richard Gooch <rgooch@atnf.csiro.au>
  363.        Support "../" when searching devfs namespace.
  364.        Work sponsored by SGI.
  365.   v0.80
  366.     19991101   Richard Gooch <rgooch@atnf.csiro.au>
  367.        Created <devfs_get_unregister_slave>.
  368.        Work sponsored by SGI.
  369.   v0.81
  370.     19991103   Richard Gooch <rgooch@atnf.csiro.au>
  371.        Exported <devfs_get_parent>.
  372.        Work sponsored by SGI.
  373.   v0.82
  374.     19991104   Richard Gooch <rgooch@atnf.csiro.au>
  375.                Removed unused <devfs_set_symlink_destination>.
  376.     19991105   Richard Gooch <rgooch@atnf.csiro.au>
  377.                Do not hide entries from devfsd or children.
  378.        Removed DEVFS_ FL_TTY_COMPAT flag.
  379.        Removed "nottycompat" boot option.
  380.        Removed <devfs_mk_compat>.
  381.        Work sponsored by SGI.
  382.   v0.83
  383.     19991107   Richard Gooch <rgooch@atnf.csiro.au>
  384.        Added DEVFS_FL_WAIT flag.
  385.        Work sponsored by SGI.
  386.   v0.84
  387.     19991107   Richard Gooch <rgooch@atnf.csiro.au>
  388.        Support new "disc" naming scheme in <get_removable_partition>.
  389.        Allow NULL fops in <devfs_register>.
  390.        Work sponsored by SGI.
  391.   v0.85
  392.     19991110   Richard Gooch <rgooch@atnf.csiro.au>
  393.        Fall back to major table if NULL fops given to <devfs_register>.
  394.        Work sponsored by SGI.
  395.   v0.86
  396.     19991204   Richard Gooch <rgooch@atnf.csiro.au>
  397.        Support fifos when unregistering.
  398.        Work sponsored by SGI.
  399.   v0.87
  400.     19991209   Richard Gooch <rgooch@atnf.csiro.au>
  401.        Removed obsolete DEVFS_ FL_COMPAT and DEVFS_ FL_TOLERANT flags.
  402.        Work sponsored by SGI.
  403.   v0.88
  404.     19991214   Richard Gooch <rgooch@atnf.csiro.au>
  405.        Removed kmod support.
  406.        Work sponsored by SGI.
  407.   v0.89
  408.     19991216   Richard Gooch <rgooch@atnf.csiro.au>
  409.        Improved debugging in <get_vfs_inode>.
  410.        Ensure dentries created by devfsd will be cleaned up.
  411.        Work sponsored by SGI.
  412.   v0.90
  413.     19991223   Richard Gooch <rgooch@atnf.csiro.au>
  414.        Created <devfs_get_name>.
  415.        Work sponsored by SGI.
  416.   v0.91
  417.     20000203   Richard Gooch <rgooch@atnf.csiro.au>
  418.        Ported to kernel 2.3.42.
  419.        Removed <devfs_fill_file>.
  420.        Work sponsored by SGI.
  421.   v0.92
  422.     20000306   Richard Gooch <rgooch@atnf.csiro.au>
  423.        Added DEVFS_ FL_NO_PERSISTENCE flag.
  424.        Removed unnecessary call to <update_devfs_inode_from_entry> in
  425.        <devfs_readdir>.
  426.        Work sponsored by SGI.
  427.   v0.93
  428.     20000413   Richard Gooch <rgooch@atnf.csiro.au>
  429.        Set inode->i_size to correct size for symlinks.
  430.     20000414   Richard Gooch <rgooch@atnf.csiro.au>
  431.        Only give lookup() method to directories to comply with new VFS
  432.        assumptions.
  433.        Work sponsored by SGI.
  434.     20000415   Richard Gooch <rgooch@atnf.csiro.au>
  435.        Remove unnecessary tests in symlink methods.
  436.        Don't kill existing block ops in <devfs_read_inode>.
  437.        Work sponsored by SGI.
  438.   v0.94
  439.     20000424   Richard Gooch <rgooch@atnf.csiro.au>
  440.        Don't create missing directories in <devfs_find_handle>.
  441.        Work sponsored by SGI.
  442.   v0.95
  443.     20000430   Richard Gooch <rgooch@atnf.csiro.au>
  444.        Added CONFIG_DEVFS_MOUNT.
  445.        Work sponsored by SGI.
  446.   v0.96
  447.     20000608   Richard Gooch <rgooch@atnf.csiro.au>
  448.        Disabled multi-mount capability (use VFS bindings instead).
  449.        Work sponsored by SGI.
  450.   v0.97
  451.     20000610   Richard Gooch <rgooch@atnf.csiro.au>
  452.        Switched to FS_SINGLE to disable multi-mounts.
  453.     20000612   Richard Gooch <rgooch@atnf.csiro.au>
  454.        Removed module support.
  455.        Removed multi-mount code.
  456.        Removed compatibility macros: VFS has changed too much.
  457.        Work sponsored by SGI.
  458.   v0.98
  459.     20000614   Richard Gooch <rgooch@atnf.csiro.au>
  460.        Merged devfs inode into devfs entry.
  461.        Work sponsored by SGI.
  462.   v0.99
  463.     20000619   Richard Gooch <rgooch@atnf.csiro.au>
  464.        Removed dead code in <devfs_register> which used to call
  465.        <free_dentries>.
  466.        Work sponsored by SGI.
  467.   v0.100
  468.     20000621   Richard Gooch <rgooch@atnf.csiro.au>
  469.        Changed interface to <devfs_register>.
  470.        Work sponsored by SGI.
  471.   v0.101
  472.     20000622   Richard Gooch <rgooch@atnf.csiro.au>
  473.        Simplified interface to <devfs_mk_symlink> and <devfs_mk_dir>.
  474.        Simplified interface to <devfs_find_handle>.
  475.        Work sponsored by SGI.
  476.   v0.102
  477.     20010519   Richard Gooch <rgooch@atnf.csiro.au>
  478.        Ensure <devfs_generate_path> terminates string for root entry.
  479.        Exported <devfs_get_name> to modules.
  480.     20010520   Richard Gooch <rgooch@atnf.csiro.au>
  481.        Make <devfs_mk_symlink> send events to devfsd.
  482.        Cleaned up option processing in <devfs_setup>.
  483.     20010521   Richard Gooch <rgooch@atnf.csiro.au>
  484.        Fixed bugs in handling symlinks: could leak or cause Oops.
  485.     20010522   Richard Gooch <rgooch@atnf.csiro.au>
  486.        Cleaned up directory handling by separating fops.
  487.   v0.103
  488.     20010601   Richard Gooch <rgooch@atnf.csiro.au>
  489.        Fixed handling of inverted options in <devfs_setup>.
  490.   v0.104
  491.     20010604   Richard Gooch <rgooch@atnf.csiro.au>
  492.        Adjusted <try_modload> to account for <devfs_generate_path> fix.
  493.   v0.105
  494.     20010617   Richard Gooch <rgooch@atnf.csiro.au>
  495.        Answered question posed by Al Viro and removed his comments.
  496.        Moved setting of registered flag after other fields are changed.
  497.        Fixed race between <devfsd_close> and <devfsd_notify_one>.
  498.        Global VFS changes added bogus BKL to <devfsd_close>: removed.
  499.        Widened locking in <devfs_readlink> and <devfs_follow_link>.
  500.        Replaced <devfsd_read> stack usage with <devfsd_ioctl> kmalloc.
  501.        Simplified locking in <devfsd_ioctl> and fixed memory leak.
  502.   v0.106
  503.     20010709   Richard Gooch <rgooch@atnf.csiro.au>
  504.        Removed broken devnum allocation and use <devfs_alloc_devnum>.
  505.        Fixed old devnum leak by calling new <devfs_dealloc_devnum>.
  506.   v0.107
  507.     20010712   Richard Gooch <rgooch@atnf.csiro.au>
  508.        Fixed bug in <devfs_setup> which could hang boot process.
  509.   v0.108
  510.     20010730   Richard Gooch <rgooch@atnf.csiro.au>
  511.        Added DEVFSD_NOTIFY_DELETE event.
  512.     20010801   Richard Gooch <rgooch@atnf.csiro.au>
  513.        Removed #include <asm/segment.h>.
  514.   v0.109
  515.     20010807   Richard Gooch <rgooch@atnf.csiro.au>
  516.        Fixed inode table races by removing it and using
  517.        inode->u.generic_ip instead.
  518.        Moved <devfs_read_inode> into <get_vfs_inode>.
  519.        Moved <devfs_write_inode> into <devfs_notify_change>.
  520.   v0.110
  521.     20010808   Richard Gooch <rgooch@atnf.csiro.au>
  522.        Fixed race in <devfs_do_symlink> for uni-processor.
  523.   v0.111
  524.     20010818   Richard Gooch <rgooch@atnf.csiro.au>
  525.        Removed remnant of multi-mount support in <devfs_mknod>.
  526.                Removed unused DEVFS_FL_SHOW_UNREG flag.
  527.   v0.112
  528.     20010820   Richard Gooch <rgooch@atnf.csiro.au>
  529.        Removed nlink field from struct devfs_inode.
  530.   v0.113
  531.     20010823   Richard Gooch <rgooch@atnf.csiro.au>
  532.        Replaced BKL with global rwsem to protect symlink data (quick
  533.        and dirty hack).
  534.   v0.114
  535.     20010827   Richard Gooch <rgooch@atnf.csiro.au>
  536.        Replaced global rwsem for symlink with per-link refcount.
  537.   v0.115
  538.     20010919   Richard Gooch <rgooch@atnf.csiro.au>
  539.        Set inode->i_mapping->a_ops for block nodes in <get_vfs_inode>.
  540.   v0.116
  541.     20011008   Richard Gooch <rgooch@atnf.csiro.au>
  542.        Fixed overrun in <devfs_link> by removing function (not needed).
  543.     20011009   Richard Gooch <rgooch@atnf.csiro.au>
  544.        Fixed buffer underrun in <try_modload>.
  545.     20011029   Richard Gooch <rgooch@atnf.csiro.au>
  546.        Fixed race in <devfsd_ioctl> when setting event mask.
  547.     20011114   Richard Gooch <rgooch@atnf.csiro.au>
  548.        First release of new locking code.
  549.   v1.0
  550.     20011117   Richard Gooch <rgooch@atnf.csiro.au>
  551.        Discard temporary buffer, now use "%s" for dentry names.
  552.     20011118   Richard Gooch <rgooch@atnf.csiro.au>
  553.        Don't generate path in <try_modload>: use fake entry instead.
  554.        Use "existing" directory in <_devfs_make_parent_for_leaf>.
  555.     20011122   Richard Gooch <rgooch@atnf.csiro.au>
  556.        Use slab cache rather than fixed buffer for devfsd events.
  557.   v1.1
  558.     20011125   Richard Gooch <rgooch@atnf.csiro.au>
  559.        Send DEVFSD_NOTIFY_REGISTERED events in <devfs_mk_dir>.
  560.     20011127   Richard Gooch <rgooch@atnf.csiro.au>
  561.        Fixed locking bug in <devfs_d_revalidate_wait> due to typo.
  562.        Do not send CREATE, CHANGE, ASYNC_OPEN or DELETE events from
  563.        devfsd or children.
  564.   v1.2
  565.     20011202   Richard Gooch <rgooch@atnf.csiro.au>
  566.        Fixed bug in <devfsd_read>: was dereferencing freed pointer.
  567.   v1.3
  568.     20011203   Richard Gooch <rgooch@atnf.csiro.au>
  569.        Fixed bug in <devfsd_close>: was dereferencing freed pointer.
  570.        Added process group check for devfsd privileges.
  571.   v1.4
  572.     20011204   Richard Gooch <rgooch@atnf.csiro.au>
  573.        Use SLAB_ATOMIC in <devfsd_notify_de> from <devfs_d_delete>.
  574.   v1.5
  575.     20011211   Richard Gooch <rgooch@atnf.csiro.au>
  576.        Return old entry in <devfs_mk_dir> for 2.4.x kernels.
  577.     20011212   Richard Gooch <rgooch@atnf.csiro.au>
  578.        Increment refcount on module in <check_disc_changed>.
  579.     20011215   Richard Gooch <rgooch@atnf.csiro.au>
  580.        Created <devfs_get_handle> and exported <devfs_put>.
  581.        Increment refcount on module in <devfs_get_ops>.
  582.        Created <devfs_put_ops>.
  583.   v1.6
  584.     20011216   Richard Gooch <rgooch@atnf.csiro.au>
  585.        Added poisoning to <devfs_put>.
  586.        Improved debugging messages.
  587.   v1.7
  588.     20011221   Richard Gooch <rgooch@atnf.csiro.au>
  589.        Corrected (made useful) debugging message in <unregister>.
  590.        Moved <kmem_cache_create> in <mount_devfs_fs> to <init_devfs_fs>
  591.     20011224   Richard Gooch <rgooch@atnf.csiro.au>
  592.        Added magic number to guard against scribbling drivers.
  593.     20011226   Richard Gooch <rgooch@atnf.csiro.au>
  594.        Only return old entry in <devfs_mk_dir> if a directory.
  595.        Defined macros for error and debug messages.
  596.   v1.8
  597.     20020113   Richard Gooch <rgooch@atnf.csiro.au>
  598.        Fixed (rare, old) race in <devfs_lookup>.
  599.   v1.9
  600.     20020120   Richard Gooch <rgooch@atnf.csiro.au>
  601.        Fixed deadlock bug in <devfs_d_revalidate_wait>.
  602.        Tag VFS deletable in <devfs_mk_symlink> if handle ignored.
  603.   v1.10
  604.     20020129   Richard Gooch <rgooch@atnf.csiro.au>
  605.        Added KERN_* to remaining messages.
  606.        Cleaned up declaration of <stat_read>.
  607.   v1.11
  608.     20020219   Richard Gooch <rgooch@atnf.csiro.au>
  609.        Changed <devfs_rmdir> to allow later additions if not yet empty.
  610.   v1.12
  611.     20020514   Richard Gooch <rgooch@atnf.csiro.au>
  612.        Added BKL to <devfs_open> because drivers still need it.
  613.        Protected <scan_dir_for_removable> and <get_removable_partition>
  614.        from changing directory contents.
  615.   v1.12a
  616.     20020721   Richard Gooch <rgooch@atnf.csiro.au>
  617.        Switched to ISO C structure field initialisers.
  618.        Switch to set_current_state() and move before add_wait_queue().
  619.     20020722   Richard Gooch <rgooch@atnf.csiro.au>
  620.        Fixed devfs entry leak in <devfs_readdir> when *readdir fails.
  621.   v1.12b
  622.     20020818   Richard Gooch <rgooch@atnf.csiro.au>
  623.        Fixed module unload race in <devfs_open>.
  624.   v1.12c
  625. */
  626. #include <linux/types.h>
  627. #include <linux/errno.h>
  628. #include <linux/sched.h>
  629. #include <linux/tty.h>
  630. #include <linux/timer.h>
  631. #include <linux/config.h>
  632. #include <linux/kernel.h>
  633. #include <linux/wait.h>
  634. #include <linux/string.h>
  635. #include <linux/slab.h>
  636. #include <linux/ioport.h>
  637. #include <linux/delay.h>
  638. #include <linux/ctype.h>
  639. #include <linux/mm.h>
  640. #include <linux/module.h>
  641. #include <linux/init.h>
  642. #include <linux/devfs_fs.h>
  643. #include <linux/devfs_fs_kernel.h>
  644. #include <linux/smp_lock.h>
  645. #include <linux/smp.h>
  646. #include <linux/version.h>
  647. #include <linux/rwsem.h>
  648. #include <asm/uaccess.h>
  649. #include <asm/io.h>
  650. #include <asm/processor.h>
  651. #include <asm/system.h>
  652. #include <asm/pgtable.h>
  653. #include <asm/bitops.h>
  654. #include <asm/atomic.h>
  655. #define DEVFS_VERSION            "1.12c (20020818)"
  656. #define DEVFS_NAME "devfs"
  657. #define FIRST_INODE 1
  658. #define STRING_LENGTH 256
  659. #define FAKE_BLOCK_SIZE 1024
  660. #define POISON_PTR ( *(void **) poison_array )
  661. #define MAGIC_VALUE 0x327db823
  662. #ifndef TRUE
  663. #  define TRUE 1
  664. #  define FALSE 0
  665. #endif
  666. #define MODE_DIR (S_IFDIR | S_IWUSR | S_IRUGO | S_IXUGO)
  667. #define IS_HIDDEN(de) ( (de)->hide && !is_devfsd_or_child(fs_info) )
  668. #define DEBUG_NONE         0x0000000
  669. #define DEBUG_MODULE_LOAD  0x0000001
  670. #define DEBUG_REGISTER     0x0000002
  671. #define DEBUG_UNREGISTER   0x0000004
  672. #define DEBUG_FREE         0x0000008
  673. #define DEBUG_SET_FLAGS    0x0000010
  674. #define DEBUG_S_READ       0x0000100        /*  Break  */
  675. #define DEBUG_I_LOOKUP     0x0001000        /*  Break  */
  676. #define DEBUG_I_CREATE     0x0002000
  677. #define DEBUG_I_GET        0x0004000
  678. #define DEBUG_I_CHANGE     0x0008000
  679. #define DEBUG_I_UNLINK     0x0010000
  680. #define DEBUG_I_RLINK      0x0020000
  681. #define DEBUG_I_FLINK      0x0040000
  682. #define DEBUG_I_MKNOD      0x0080000
  683. #define DEBUG_F_READDIR    0x0100000        /*  Break  */
  684. #define DEBUG_D_DELETE     0x1000000        /*  Break  */
  685. #define DEBUG_D_RELEASE    0x2000000
  686. #define DEBUG_D_IPUT       0x4000000
  687. #define DEBUG_ALL          0xfffffff
  688. #define DEBUG_DISABLED     DEBUG_NONE
  689. #define OPTION_NONE             0x00
  690. #define OPTION_MOUNT            0x01
  691. #define OPTION_ONLY             0x02
  692. #define PRINTK(format, args...) 
  693.    {printk (KERN_ERR "%s" format, __FUNCTION__ , ## args);}
  694. #define OOPS(format, args...) 
  695.    {printk (KERN_CRIT "%s" format, __FUNCTION__ , ## args); 
  696.     printk ("Forcing Oopsn"); 
  697.     BUG();}
  698. #ifdef CONFIG_DEVFS_DEBUG
  699. #  define VERIFY_ENTRY(de) 
  700.    {if ((de) && (de)->magic_number != MAGIC_VALUE) 
  701.         OOPS ("(%p): bad magic value: %xn", (de), (de)->magic_number);}
  702. #  define WRITE_ENTRY_MAGIC(de,magic) (de)->magic_number = (magic)
  703. #  define DPRINTK(flag, format, args...) 
  704.    {if (devfs_debug & flag) 
  705. printk (KERN_INFO "%s" format, __FUNCTION__ , ## args);}
  706. #else
  707. #  define VERIFY_ENTRY(de)
  708. #  define WRITE_ENTRY_MAGIC(de,magic)
  709. #  define DPRINTK(flag, format, args...)
  710. #endif
  711. struct directory_type
  712. {
  713.     rwlock_t lock;                   /*  Lock for searching(R)/updating(W)   */
  714.     struct devfs_entry *first;
  715.     struct devfs_entry *last;
  716.     unsigned short num_removable;    /*  Lock for writing but not reading    */
  717.     unsigned char no_more_additions:1;
  718. };
  719. struct file_type
  720. {
  721.     unsigned long size;
  722. };
  723. struct device_type
  724. {
  725.     unsigned short major;
  726.     unsigned short minor;
  727. };
  728. struct fcb_type  /*  File, char, block type  */
  729. {
  730.     void *ops;
  731.     union 
  732.     {
  733. struct file_type file;
  734. struct device_type device;
  735.     }
  736.     u;
  737.     unsigned char auto_owner:1;
  738.     unsigned char aopen_notify:1;
  739.     unsigned char removable:1;  /*  Belongs in device_type, but save space   */
  740.     unsigned char open:1;       /*  Not entirely correct                     */
  741.     unsigned char autogen:1;    /*  Belongs in device_type, but save space   */
  742. };
  743. struct symlink_type
  744. {
  745.     unsigned int length;         /*  Not including the NULL-termimator       */
  746.     char *linkname;              /*  This is NULL-terminated                 */
  747. };
  748. struct devfs_inode     /*  This structure is for "persistent" inode storage  */
  749. {
  750.     struct dentry *dentry;
  751.     time_t atime;
  752.     time_t mtime;
  753.     time_t ctime;
  754.     unsigned int ino;            /*  Inode number as seen in the VFS         */
  755.     uid_t uid;
  756.     gid_t gid;
  757. };
  758. struct devfs_entry
  759. {
  760. #ifdef CONFIG_DEVFS_DEBUG
  761.     unsigned int magic_number;
  762. #endif
  763.     void *info;
  764.     atomic_t refcount;           /*  When this drops to zero, it's unused    */
  765.     union 
  766.     {
  767. struct directory_type dir;
  768. struct fcb_type fcb;
  769. struct symlink_type symlink;
  770. const char *name;        /*  Only used for (mode == 0)               */
  771.     }
  772.     u;
  773.     struct devfs_entry *prev;    /*  Previous entry in the parent directory  */
  774.     struct devfs_entry *next;    /*  Next entry in the parent directory      */
  775.     struct devfs_entry *parent;  /*  The parent directory                    */
  776.     struct devfs_entry *slave;   /*  Another entry to unregister             */
  777.     struct devfs_inode inode;
  778.     umode_t mode;
  779.     unsigned short namelen;      /*  I think 64k+ filenames are a way off... */
  780.     unsigned char hide:1;
  781.     unsigned char vfs_deletable:1;/*  Whether the VFS may delete the entry   */
  782.     char name[1];                /*  This is just a dummy: the allocated array
  783.      is bigger. This is NULL-terminated      */
  784. };
  785. /*  The root of the device tree  */
  786. static struct devfs_entry *root_entry;
  787. struct devfsd_buf_entry
  788. {
  789.     struct devfs_entry *de;      /*  The name is generated with this         */
  790.     unsigned short type;         /*  The type of event                       */
  791.     umode_t mode;
  792.     uid_t uid;
  793.     gid_t gid;
  794.     struct devfsd_buf_entry *next;
  795. };
  796. struct fs_info                  /*  This structure is for the mounted devfs  */
  797. {
  798.     struct super_block *sb;
  799.     spinlock_t devfsd_buffer_lock;  /*  Lock when inserting/deleting events  */
  800.     struct devfsd_buf_entry *devfsd_first_event;
  801.     struct devfsd_buf_entry *devfsd_last_event;
  802.     volatile int devfsd_sleeping;
  803.     volatile struct task_struct *devfsd_task;
  804.     volatile pid_t devfsd_pgrp;
  805.     volatile struct file *devfsd_file;
  806.     struct devfsd_notify_struct *devfsd_info;
  807.     volatile unsigned long devfsd_event_mask;
  808.     atomic_t devfsd_overrun_count;
  809.     wait_queue_head_t devfsd_wait_queue;      /*  Wake devfsd on input       */
  810.     wait_queue_head_t revalidate_wait_queue;  /*  Wake when devfsd sleeps    */
  811. };
  812. static struct fs_info fs_info = {devfsd_buffer_lock: SPIN_LOCK_UNLOCKED};
  813. static kmem_cache_t *devfsd_buf_cache;
  814. #ifdef CONFIG_DEVFS_DEBUG
  815. static unsigned int devfs_debug_init __initdata = DEBUG_NONE;
  816. static unsigned int devfs_debug = DEBUG_NONE;
  817. static spinlock_t stat_lock = SPIN_LOCK_UNLOCKED;
  818. static unsigned int stat_num_entries;
  819. static unsigned int stat_num_bytes;
  820. #endif
  821. static unsigned char poison_array[8] =
  822.     {0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a, 0x5a};
  823. #ifdef CONFIG_DEVFS_MOUNT
  824. static unsigned int boot_options = OPTION_MOUNT;
  825. #else
  826. static unsigned int boot_options = OPTION_NONE;
  827. #endif
  828. /*  Forward function declarations  */
  829. static devfs_handle_t _devfs_walk_path (struct devfs_entry *dir,
  830. const char *name, int namelen,
  831. int traverse_symlink);
  832. static ssize_t devfsd_read (struct file *file, char *buf, size_t len,
  833.     loff_t *ppos);
  834. static int devfsd_ioctl (struct inode *inode, struct file *file,
  835.  unsigned int cmd, unsigned long arg);
  836. static int devfsd_close (struct inode *inode, struct file *file);
  837. #ifdef CONFIG_DEVFS_DEBUG
  838. static ssize_t stat_read (struct file *file, char *buf, size_t len,
  839.   loff_t *ppos);
  840. static struct file_operations stat_fops =
  841. {
  842.     .read    = stat_read,
  843. };
  844. #endif
  845. /*  Devfs daemon file operations  */
  846. static struct file_operations devfsd_fops =
  847. {
  848.     .read    = devfsd_read,
  849.     .ioctl   = devfsd_ioctl,
  850.     .release = devfsd_close,
  851. };
  852. /*  Support functions follow  */
  853. /**
  854.  * devfs_get - Get a reference to a devfs entry.
  855.  * @de:  The devfs entry.
  856.  */
  857. static struct devfs_entry *devfs_get (struct devfs_entry *de)
  858. {
  859.     VERIFY_ENTRY (de);
  860.     if (de) atomic_inc (&de->refcount);
  861.     return de;
  862. }   /*  End Function devfs_get  */
  863. /**
  864.  * devfs_put - Put (release) a reference to a devfs entry.
  865.  * @de:  The handle to the devfs entry.
  866.  */
  867. void devfs_put (devfs_handle_t de)
  868. {
  869.     if (!de) return;
  870.     VERIFY_ENTRY (de);
  871.     if (de->info == POISON_PTR) OOPS ("(%p): poisoned pointern", de);
  872.     if ( !atomic_dec_and_test (&de->refcount) ) return;
  873.     if (de == root_entry) OOPS ("(%p): root entry being freedn", de);
  874.     DPRINTK (DEBUG_FREE, "(%s): de: %p, parent: %p "%s"n",
  875.      de->name, de, de->parent,
  876.      de->parent ? de->parent->name : "no parent");
  877.     if ( S_ISLNK (de->mode) ) kfree (de->u.symlink.linkname);
  878.     if ( ( S_ISCHR (de->mode) || S_ISBLK (de->mode) ) && de->u.fcb.autogen )
  879.     {
  880. devfs_dealloc_devnum ( S_ISCHR (de->mode) ? DEVFS_SPECIAL_CHR :
  881.        DEVFS_SPECIAL_BLK,
  882.        mk_kdev (de->u.fcb.u.device.major,
  883. de->u.fcb.u.device.minor) );
  884.     }
  885.     WRITE_ENTRY_MAGIC (de, 0);
  886. #ifdef CONFIG_DEVFS_DEBUG
  887.     spin_lock (&stat_lock);
  888.     --stat_num_entries;
  889.     stat_num_bytes -= sizeof *de + de->namelen;
  890.     if ( S_ISLNK (de->mode) ) stat_num_bytes -= de->u.symlink.length + 1;
  891.     spin_unlock (&stat_lock);
  892. #endif
  893.     de->info = POISON_PTR;
  894.     kfree (de);
  895. }   /*  End Function devfs_put  */
  896. /**
  897.  * _devfs_search_dir - Search for a devfs entry in a directory.
  898.  * @dir:  The directory to search.
  899.  * @name:  The name of the entry to search for.
  900.  * @namelen:  The number of characters in @name.
  901.  *
  902.  *  Search for a devfs entry in a directory and returns a pointer to the entry
  903.  *   on success, else %NULL. The directory must be locked already.
  904.  *   An implicit devfs_get() is performed on the returned entry.
  905.  */
  906. static struct devfs_entry *_devfs_search_dir (struct devfs_entry *dir,
  907.       const char *name,
  908.       unsigned int namelen)
  909. {
  910.     struct devfs_entry *curr;
  911.     if ( !S_ISDIR (dir->mode) )
  912.     {
  913. PRINTK ("(%s): not a directoryn", dir->name);
  914. return NULL;
  915.     }
  916.     for (curr = dir->u.dir.first; curr != NULL; curr = curr->next)
  917.     {
  918. if (curr->namelen != namelen) continue;
  919. if (memcmp (curr->name, name, namelen) == 0) break;
  920. /*  Not found: try the next one  */
  921.     }
  922.     return devfs_get (curr);
  923. }   /*  End Function _devfs_search_dir  */
  924. /**
  925.  * _devfs_alloc_entry - Allocate a devfs entry.
  926.  * @name:  The name of the entry.
  927.  * @namelen:  The number of characters in @name.
  928.  *
  929.  *  Allocate a devfs entry and returns a pointer to the entry on success, else
  930.  *   %NULL.
  931.  */
  932. static struct devfs_entry *_devfs_alloc_entry (const char *name,
  933.        unsigned int namelen,
  934.        umode_t mode)
  935. {
  936.     struct devfs_entry *new;
  937.     static unsigned long inode_counter = FIRST_INODE;
  938.     static spinlock_t counter_lock = SPIN_LOCK_UNLOCKED;
  939.     if ( name && (namelen < 1) ) namelen = strlen (name);
  940.     if ( ( new = kmalloc (sizeof *new + namelen, GFP_KERNEL) ) == NULL )
  941. return NULL;
  942.     memset (new, 0, sizeof *new + namelen);  /*  Will set '' on name  */
  943.     new->mode = mode;
  944.     if ( S_ISDIR (mode) ) rwlock_init (&new->u.dir.lock);
  945.     atomic_set (&new->refcount, 1);
  946.     spin_lock (&counter_lock);
  947.     new->inode.ino = inode_counter++;
  948.     spin_unlock (&counter_lock);
  949.     if (name) memcpy (new->name, name, namelen);
  950.     new->namelen = namelen;
  951.     WRITE_ENTRY_MAGIC (new, MAGIC_VALUE);
  952. #ifdef CONFIG_DEVFS_DEBUG
  953.     spin_lock (&stat_lock);
  954.     ++stat_num_entries;
  955.     stat_num_bytes += sizeof *new + namelen;
  956.     spin_unlock (&stat_lock);
  957. #endif
  958.     return new;
  959. }   /*  End Function _devfs_alloc_entry  */
  960. /**
  961.  * _devfs_append_entry - Append a devfs entry to a directory's child list.
  962.  * @dir:  The directory to add to.
  963.  * @de:  The devfs entry to append.
  964.  * @removable: If TRUE, increment the count of removable devices for %dir.
  965.  * @old_de: If an existing entry exists, it will be written here. This may
  966.  *  be %NULL. An implicit devfs_get() is performed on this entry.
  967.  *
  968.  *  Append a devfs entry to a directory's list of children, checking first to
  969.  *   see if an entry of the same name exists. The directory will be locked.
  970.  *   The value 0 is returned on success, else a negative error code.
  971.  *   On failure, an implicit devfs_put() is performed on %de.
  972.  */
  973. static int _devfs_append_entry (devfs_handle_t dir, devfs_handle_t de,
  974. int removable, devfs_handle_t *old_de)
  975. {
  976.     int retval;
  977.     if (old_de) *old_de = NULL;
  978.     if ( !S_ISDIR (dir->mode) )
  979.     {
  980. PRINTK ("(%s): dir: "%s" is not a directoryn", de->name, dir->name);
  981. devfs_put (de);
  982. return -ENOTDIR;
  983.     }
  984.     write_lock (&dir->u.dir.lock);
  985.     if (dir->u.dir.no_more_additions) retval = -ENOENT;
  986.     else
  987.     {
  988. struct devfs_entry *old;
  989. old = _devfs_search_dir (dir, de->name, de->namelen);
  990. if (old_de) *old_de = old;
  991. else devfs_put (old);
  992. if (old == NULL)
  993. {
  994.     de->parent = dir;
  995.     de->prev = dir->u.dir.last;
  996.     /*  Append to the directory's list of children  */
  997.     if (dir->u.dir.first == NULL) dir->u.dir.first = de;
  998.     else dir->u.dir.last->next = de;
  999.     dir->u.dir.last = de;
  1000.     if (removable) ++dir->u.dir.num_removable;
  1001.     retval = 0;
  1002. }
  1003. else retval = -EEXIST;
  1004.     }
  1005.     write_unlock (&dir->u.dir.lock);
  1006.     if (retval) devfs_put (de);
  1007.     return retval;
  1008. }   /*  End Function _devfs_append_entry  */
  1009. /**
  1010.  * _devfs_get_root_entry - Get the root devfs entry.
  1011.  *
  1012.  * Returns the root devfs entry on success, else %NULL.
  1013.  */
  1014. static struct devfs_entry *_devfs_get_root_entry (void)
  1015. {
  1016.     kdev_t devnum;
  1017.     struct devfs_entry *new;
  1018.     static spinlock_t root_lock = SPIN_LOCK_UNLOCKED;
  1019.     /*  Always ensure the root is created  */
  1020.     if (root_entry) return root_entry;
  1021.     if ( ( new = _devfs_alloc_entry (NULL, 0,MODE_DIR) ) == NULL ) return NULL;
  1022.     spin_lock (&root_lock);
  1023.     if (root_entry)
  1024.     {
  1025. spin_unlock (&root_lock);
  1026. devfs_put (new);
  1027. return (root_entry);
  1028.     }
  1029.     root_entry = new;
  1030.     spin_unlock (&root_lock);
  1031.     /*  And create the entry for ".devfsd"  */
  1032.     if ( ( new = _devfs_alloc_entry (".devfsd", 0, S_IFCHR |S_IRUSR |S_IWUSR) )
  1033.  == NULL ) return NULL;
  1034.     devnum = devfs_alloc_devnum (DEVFS_SPECIAL_CHR);
  1035.     new->u.fcb.u.device.major = major (devnum);
  1036.     new->u.fcb.u.device.minor = minor (devnum);
  1037.     new->u.fcb.ops = &devfsd_fops;
  1038.     _devfs_append_entry (root_entry, new, FALSE, NULL);
  1039. #ifdef CONFIG_DEVFS_DEBUG
  1040.     if ( ( new = _devfs_alloc_entry (".stat", 0, S_IFCHR | S_IRUGO | S_IWUGO) )
  1041.  == NULL ) return NULL;
  1042.     devnum = devfs_alloc_devnum (DEVFS_SPECIAL_CHR);
  1043.     new->u.fcb.u.device.major = major (devnum);
  1044.     new->u.fcb.u.device.minor = minor (devnum);
  1045.     new->u.fcb.ops = &stat_fops;
  1046.     _devfs_append_entry (root_entry, new, FALSE, NULL);
  1047. #endif
  1048.     return root_entry;
  1049. }   /*  End Function _devfs_get_root_entry  */
  1050. /**
  1051.  * _devfs_descend - Descend down a tree using the next component name.
  1052.  * @dir:  The directory to search.
  1053.  * @name:  The component name to search for.
  1054.  * @namelen:  The length of %name.
  1055.  * @next_pos:  The position of the next '/' or '' is written here.
  1056.  *
  1057.  *  Descend into a directory, searching for a component. This function forms
  1058.  *   the core of a tree-walking algorithm. The directory will be locked.
  1059.  *   The devfs entry corresponding to the component is returned. If there is
  1060.  *   no matching entry, %NULL is returned.
  1061.  *   An implicit devfs_get() is performed on the returned entry.
  1062.  */
  1063. static struct devfs_entry *_devfs_descend (struct devfs_entry *dir,
  1064.    const char *name, int namelen,
  1065.    int *next_pos)
  1066. {
  1067.     const char *stop, *ptr;
  1068.     struct devfs_entry *entry;
  1069.     if ( (namelen >= 3) && (strncmp (name, "../", 3) == 0) )
  1070.     {   /*  Special-case going to parent directory  */
  1071. *next_pos = 3;
  1072. return devfs_get (dir->parent);
  1073.     }
  1074.     stop = name + namelen;
  1075.     /*  Search for a possible '/'  */
  1076.     for (ptr = name; (ptr < stop) && (*ptr != '/'); ++ptr);
  1077.     *next_pos = ptr - name;
  1078.     read_lock (&dir->u.dir.lock);
  1079.     entry = _devfs_search_dir (dir, name, *next_pos);
  1080.     read_unlock (&dir->u.dir.lock);
  1081.     return entry;
  1082. }   /*  End Function _devfs_descend  */
  1083. static devfs_handle_t _devfs_make_parent_for_leaf (struct devfs_entry *dir,
  1084.    const char *name,
  1085.    int namelen, int *leaf_pos)
  1086. {
  1087.     int next_pos = 0;
  1088.     if (dir == NULL) dir = _devfs_get_root_entry ();
  1089.     if (dir == NULL) return NULL;
  1090.     devfs_get (dir);
  1091.     /*  Search for possible trailing component and ignore it  */
  1092.     for (--namelen; (namelen > 0) && (name[namelen] != '/'); --namelen);
  1093.     *leaf_pos = (name[namelen] == '/') ? (namelen + 1) : 0;
  1094.     for (; namelen > 0; name += next_pos, namelen -= next_pos)
  1095.     {
  1096. struct devfs_entry *de, *old;
  1097. if ( ( de = _devfs_descend (dir, name, namelen, &next_pos) ) == NULL )
  1098. {
  1099.     de = _devfs_alloc_entry (name, next_pos, MODE_DIR);
  1100.     devfs_get (de);
  1101.     if ( !de || _devfs_append_entry (dir, de, FALSE, &old) )
  1102.     {
  1103. devfs_put (de);
  1104. if ( !old || !S_ISDIR (old->mode) )
  1105. {
  1106.     devfs_put (old);
  1107.     devfs_put (dir);
  1108.     return NULL;
  1109. }
  1110. de = old;  /*  Use the existing directory  */
  1111.     }
  1112. }
  1113. if (de == dir->parent)
  1114. {
  1115.     devfs_put (dir);
  1116.     devfs_put (de);
  1117.     return NULL;
  1118. }
  1119. devfs_put (dir);
  1120. dir = de;
  1121. if (name[next_pos] == '/') ++next_pos;
  1122.     }
  1123.     return dir;
  1124. }   /*  End Function _devfs_make_parent_for_leaf  */
  1125. static devfs_handle_t _devfs_prepare_leaf (devfs_handle_t *dir,
  1126.    const char *name, umode_t mode)
  1127. {
  1128.     int namelen, leaf_pos;
  1129.     struct devfs_entry *de;
  1130.     namelen = strlen (name);
  1131.     if ( ( *dir = _devfs_make_parent_for_leaf (*dir, name, namelen,
  1132.        &leaf_pos) ) == NULL )
  1133.     {
  1134. PRINTK ("(%s): could not create parent pathn", name);
  1135. return NULL;
  1136.     }
  1137.     if ( ( de = _devfs_alloc_entry (name + leaf_pos, namelen - leaf_pos,mode) )
  1138.  == NULL )
  1139.     {
  1140. PRINTK ("(%s): could not allocate entryn", name);
  1141. devfs_put (*dir);
  1142. return NULL;
  1143.     }
  1144.     return de;
  1145. }   /*  End Function _devfs_prepare_leaf  */
  1146. static devfs_handle_t _devfs_walk_path (struct devfs_entry *dir,
  1147. const char *name, int namelen,
  1148. int traverse_symlink)
  1149. {
  1150.     int next_pos = 0;
  1151.     if (dir == NULL) dir = _devfs_get_root_entry ();
  1152.     if (dir == NULL) return NULL;
  1153.     devfs_get (dir);
  1154.     for (; namelen > 0; name += next_pos, namelen -= next_pos)
  1155.     {
  1156. struct devfs_entry *de, *link;
  1157. if ( ( de = _devfs_descend (dir, name, namelen, &next_pos) ) == NULL )
  1158. {
  1159.     devfs_put (dir);
  1160.     return NULL;
  1161. }
  1162. if (S_ISLNK (de->mode) && traverse_symlink)
  1163. {   /*  Need to follow the link: this is a stack chomper  */
  1164.     link = _devfs_walk_path (dir, de->u.symlink.linkname,
  1165.      de->u.symlink.length, TRUE);
  1166.     devfs_put (de);
  1167.     if (!link)
  1168.     {
  1169. devfs_put (dir);
  1170. return NULL;
  1171.     }
  1172.     de = link;
  1173. }
  1174. devfs_put (dir);
  1175. dir = de;
  1176. if (name[next_pos] == '/') ++next_pos;
  1177.     }
  1178.     return dir;
  1179. }   /*  End Function _devfs_walk_path  */
  1180. /**
  1181.  * _devfs_find_by_dev - Find a devfs entry in a directory.
  1182.  * @dir: The directory where to search
  1183.  * @major: The major number to search for.
  1184.  * @minor: The minor number to search for.
  1185.  * @type: The type of special file to search for. This may be either
  1186.  * %DEVFS_SPECIAL_CHR or %DEVFS_SPECIAL_BLK.
  1187.  *
  1188.  * Returns the devfs_entry pointer on success, else %NULL. An implicit
  1189.  * devfs_get() is performed.
  1190.  */
  1191. static struct devfs_entry *_devfs_find_by_dev (struct devfs_entry *dir,
  1192.        unsigned int major,
  1193.        unsigned int minor, char type)
  1194. {
  1195.     struct devfs_entry *entry, *de;
  1196.     devfs_get (dir);
  1197.     if (dir == NULL) return NULL;
  1198.     if ( !S_ISDIR (dir->mode) )
  1199.     {
  1200. PRINTK ("(%p): not a directoryn", dir);
  1201. devfs_put (dir);
  1202. return NULL;
  1203.     }
  1204.     /*  First search files in this directory  */
  1205.     read_lock (&dir->u.dir.lock);
  1206.     for (entry = dir->u.dir.first; entry != NULL; entry = entry->next)
  1207.     {
  1208. if ( !S_ISCHR (entry->mode) && !S_ISBLK (entry->mode) ) continue;
  1209. if ( S_ISCHR (entry->mode) && (type != DEVFS_SPECIAL_CHR) ) continue;
  1210. if ( S_ISBLK (entry->mode) && (type != DEVFS_SPECIAL_BLK) ) continue;
  1211. if ( (entry->u.fcb.u.device.major == major) &&
  1212.      (entry->u.fcb.u.device.minor == minor) )
  1213. {
  1214.     devfs_get (entry);
  1215.     read_unlock (&dir->u.dir.lock);
  1216.     devfs_put (dir);
  1217.     return entry;
  1218. }
  1219. /*  Not found: try the next one  */
  1220.     }
  1221.     /*  Now recursively search the subdirectories: this is a stack chomper  */
  1222.     for (entry = dir->u.dir.first; entry != NULL; entry = entry->next)
  1223.     {
  1224. if ( !S_ISDIR (entry->mode) ) continue;
  1225. de = _devfs_find_by_dev (entry, major, minor, type);
  1226. if (de)
  1227. {
  1228.     read_unlock (&dir->u.dir.lock);
  1229.     devfs_put (dir);
  1230.     return de;
  1231. }
  1232.     }
  1233.     read_unlock (&dir->u.dir.lock);
  1234.     devfs_put (dir);
  1235.     return NULL;
  1236. }   /*  End Function _devfs_find_by_dev  */
  1237. /**
  1238.  * _devfs_find_entry - Find a devfs entry.
  1239.  * @dir: The handle to the parent devfs directory entry. If this is %NULL the
  1240.  * name is relative to the root of the devfs.
  1241.  * @name: The name of the entry. This may be %NULL.
  1242.  * @major: The major number. This is used if lookup by @name fails.
  1243.  * @minor: The minor number. This is used if lookup by @name fails.
  1244.  * NOTE: If @major and @minor are both 0, searching by major and minor
  1245.  * numbers is disabled.
  1246.  * @type: The type of special file to search for. This may be either
  1247.  * %DEVFS_SPECIAL_CHR or %DEVFS_SPECIAL_BLK.
  1248.  * @traverse_symlink: If %TRUE then symbolic links are traversed.
  1249.  *
  1250.  * Returns the devfs_entry pointer on success, else %NULL. An implicit
  1251.  * devfs_get() is performed.
  1252.  */
  1253. static struct devfs_entry *_devfs_find_entry (devfs_handle_t dir,
  1254.       const char *name,
  1255.       unsigned int major,
  1256.       unsigned int minor,
  1257.       char type, int traverse_symlink)
  1258. {
  1259.     struct devfs_entry *entry;
  1260.     if (name != NULL)
  1261.     {
  1262. unsigned int namelen = strlen (name);
  1263. if (name[0] == '/')
  1264. {
  1265.     /*  Skip leading pathname component  */
  1266.     if (namelen < 2)
  1267.     {
  1268. PRINTK ("(%s): too shortn", name);
  1269. return NULL;
  1270.     }
  1271.     for (++name, --namelen; (*name != '/') && (namelen > 0);
  1272.  ++name, --namelen);
  1273.     if (namelen < 2)
  1274.     {
  1275. PRINTK ("(%s): too shortn", name);
  1276. return NULL;
  1277.     }
  1278.     ++name;
  1279.     --namelen;
  1280. }
  1281. entry = _devfs_walk_path (dir, name, namelen, traverse_symlink);
  1282. if (entry != NULL) return entry;
  1283.     }
  1284.     /*  Have to search by major and minor: slow  */
  1285.     if ( (major == 0) && (minor == 0) ) return NULL;
  1286.     return _devfs_find_by_dev (root_entry, major, minor, type);
  1287. }   /*  End Function _devfs_find_entry  */
  1288. static struct devfs_entry *get_devfs_entry_from_vfs_inode (struct inode *inode)
  1289. {
  1290.     if (inode == NULL) return NULL;
  1291.     VERIFY_ENTRY ( (struct devfs_entry *) inode->u.generic_ip );
  1292.     return inode->u.generic_ip;
  1293. }   /*  End Function get_devfs_entry_from_vfs_inode  */
  1294. /**
  1295.  * free_dentry - Free the dentry for a device entry and invalidate inode.
  1296.  * @de: The entry.
  1297.  *
  1298.  * This must only be called after the entry has been unhooked from it's
  1299.  *  parent directory.
  1300.  */
  1301. static void free_dentry (struct devfs_entry *de)
  1302. {
  1303.     struct dentry *dentry = de->inode.dentry;
  1304.     if (!dentry) return;
  1305.     spin_lock (&dcache_lock);
  1306.     dget_locked (dentry);
  1307.     spin_unlock (&dcache_lock);
  1308.     /*  Forcefully remove the inode  */
  1309.     if (dentry->d_inode != NULL) dentry->d_inode->i_nlink = 0;
  1310.     d_drop (dentry);
  1311.     dput (dentry);
  1312. }   /*  End Function free_dentry  */
  1313. /**
  1314.  * is_devfsd_or_child - Test if the current process is devfsd or one of its children.
  1315.  * @fs_info: The filesystem information.
  1316.  *
  1317.  * Returns %TRUE if devfsd or child, else %FALSE.
  1318.  */
  1319. static int is_devfsd_or_child (struct fs_info *fs_info)
  1320. {
  1321.     struct task_struct *p;
  1322.     if (current == fs_info->devfsd_task) return (TRUE);
  1323.     if (current->pgrp == fs_info->devfsd_pgrp) return (TRUE);
  1324. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,1)
  1325.     for (p = current->p_opptr; p != &init_task; p = p->p_opptr)
  1326.     {
  1327. if (p == fs_info->devfsd_task) return (TRUE);
  1328.     }
  1329. #endif
  1330.     return (FALSE);
  1331. }   /*  End Function is_devfsd_or_child  */
  1332. /**
  1333.  * devfsd_queue_empty - Test if devfsd has work pending in its event queue.
  1334.  * @fs_info: The filesystem information.
  1335.  *
  1336.  * Returns %TRUE if the queue is empty, else %FALSE.
  1337.  */
  1338. static inline int devfsd_queue_empty (struct fs_info *fs_info)
  1339. {
  1340.     return (fs_info->devfsd_last_event) ? FALSE : TRUE;
  1341. }   /*  End Function devfsd_queue_empty  */
  1342. /**
  1343.  * wait_for_devfsd_finished - Wait for devfsd to finish processing its event queue.
  1344.  * @fs_info: The filesystem information.
  1345.  *
  1346.  * Returns %TRUE if no more waiting will be required, else %FALSE.
  1347.  */
  1348. static int wait_for_devfsd_finished (struct fs_info *fs_info)
  1349. {
  1350.     DECLARE_WAITQUEUE (wait, current);
  1351.     if (fs_info->devfsd_task == NULL) return (TRUE);
  1352.     if (devfsd_queue_empty (fs_info) && fs_info->devfsd_sleeping) return TRUE;
  1353.     if ( is_devfsd_or_child (fs_info) ) return (FALSE);
  1354.     set_current_state (TASK_UNINTERRUPTIBLE);
  1355.     add_wait_queue (&fs_info->revalidate_wait_queue, &wait);
  1356.     if (!devfsd_queue_empty (fs_info) || !fs_info->devfsd_sleeping)
  1357. if (fs_info->devfsd_task) schedule ();
  1358.     remove_wait_queue (&fs_info->revalidate_wait_queue, &wait);
  1359.     __set_current_state (TASK_RUNNING);
  1360.     return (TRUE);
  1361. }   /*  End Function wait_for_devfsd_finished  */
  1362. /**
  1363.  * devfsd_notify_de - Notify the devfsd daemon of a change.
  1364.  * @de: The devfs entry that has changed. This and all parent entries will
  1365.  *            have their reference counts incremented if the event was queued.
  1366.  * @type: The type of change.
  1367.  * @mode: The mode of the entry.
  1368.  * @uid: The user ID.
  1369.  * @gid: The group ID.
  1370.  * @fs_info: The filesystem info.
  1371.  *
  1372.  * Returns %TRUE if an event was queued and devfsd woken up, else %FALSE.
  1373.  */
  1374. static int devfsd_notify_de (struct devfs_entry *de,
  1375.      unsigned short type, umode_t mode,
  1376.      uid_t uid, gid_t gid, struct fs_info *fs_info,
  1377.      int atomic)
  1378. {
  1379.     struct devfsd_buf_entry *entry;
  1380.     struct devfs_entry *curr;
  1381.     if ( !( fs_info->devfsd_event_mask & (1 << type) ) ) return (FALSE);
  1382.     if ( ( entry = kmem_cache_alloc (devfsd_buf_cache,
  1383.      atomic ? SLAB_ATOMIC : SLAB_KERNEL) )
  1384.  == NULL )
  1385.     {
  1386. atomic_inc (&fs_info->devfsd_overrun_count);
  1387. return (FALSE);
  1388.     }
  1389.     for (curr = de; curr != NULL; curr = curr->parent) devfs_get (curr);
  1390.     entry->de = de;
  1391.     entry->type = type;
  1392.     entry->mode = mode;
  1393.     entry->uid = uid;
  1394.     entry->gid = gid;
  1395.     entry->next = NULL;
  1396.     spin_lock (&fs_info->devfsd_buffer_lock);
  1397.     if (!fs_info->devfsd_first_event) fs_info->devfsd_first_event = entry;
  1398.     if (fs_info->devfsd_last_event) fs_info->devfsd_last_event->next = entry;
  1399.     fs_info->devfsd_last_event = entry;
  1400.     spin_unlock (&fs_info->devfsd_buffer_lock);
  1401.     wake_up_interruptible (&fs_info->devfsd_wait_queue);
  1402.     return (TRUE);
  1403. }   /*  End Function devfsd_notify_de  */
  1404. /**
  1405.  * devfsd_notify - Notify the devfsd daemon of a change.
  1406.  * @de: The devfs entry that has changed.
  1407.  * @type: The type of change event.
  1408.  * @wait: If TRUE, the function waits for the daemon to finish processing
  1409.  * the event.
  1410.  */
  1411. static void devfsd_notify (struct devfs_entry *de,unsigned short type,int wait)
  1412. {
  1413.     if (devfsd_notify_de (de, type, de->mode, current->euid,
  1414.   current->egid, &fs_info, 0) && wait)
  1415. wait_for_devfsd_finished (&fs_info);
  1416. }   /*  End Function devfsd_notify  */
  1417. /**
  1418.  * devfs_register - Register a device entry.
  1419.  * @dir: The handle to the parent devfs directory entry. If this is %NULL the
  1420.  * new name is relative to the root of the devfs.
  1421.  * @name: The name of the entry.
  1422.  * @flags: A set of bitwise-ORed flags (DEVFS_FL_*).
  1423.  * @major: The major number. Not needed for regular files.
  1424.  * @minor: The minor number. Not needed for regular files.
  1425.  * @mode: The default file mode.
  1426.  * @ops: The &file_operations or &block_device_operations structure.
  1427.  * This must not be externally deallocated.
  1428.  * @info: An arbitrary pointer which will be written to the @private_data
  1429.  * field of the &file structure passed to the device driver. You can set
  1430.  * this to whatever you like, and change it once the file is opened (the next
  1431.  * file opened will not see this change).
  1432.  *
  1433.  * Returns a handle which may later be used in a call to devfs_unregister().
  1434.  * On failure %NULL is returned.
  1435.  */
  1436. devfs_handle_t devfs_register (devfs_handle_t dir, const char *name,
  1437.        unsigned int flags,
  1438.        unsigned int major, unsigned int minor,
  1439.        umode_t mode, void *ops, void *info)
  1440. {
  1441.     char devtype = S_ISCHR (mode) ? DEVFS_SPECIAL_CHR : DEVFS_SPECIAL_BLK;
  1442.     int err;
  1443.     kdev_t devnum = NODEV;
  1444.     struct devfs_entry *de;
  1445.     if (name == NULL)
  1446.     {
  1447. PRINTK ("(): NULL name pointern");
  1448. return NULL;
  1449.     }
  1450.     if (ops == NULL)
  1451.     {
  1452. if ( S_ISBLK (mode) ) ops = (void *) get_blkfops (major);
  1453. if (ops == NULL)
  1454. {
  1455.     PRINTK ("(%s): NULL ops pointern", name);
  1456.     return NULL;
  1457. }
  1458. PRINTK ("(%s): NULL ops, got %p from major tablen", name, ops);
  1459.     }
  1460.     if ( S_ISDIR (mode) )
  1461.     {
  1462. PRINTK ("(%s): creating directories is not allowedn", name);
  1463. return NULL;
  1464.     }
  1465.     if ( S_ISLNK (mode) )
  1466.     {
  1467. PRINTK ("(%s): creating symlinks is not allowedn", name);
  1468. return NULL;
  1469.     }
  1470.     if ( ( S_ISCHR (mode) || S_ISBLK (mode) ) &&
  1471.  (flags & DEVFS_FL_AUTO_DEVNUM) )
  1472.     {
  1473. if ( kdev_none ( devnum = devfs_alloc_devnum (devtype) ) )
  1474. {
  1475.     PRINTK ("(%s): exhausted %s device numbersn",
  1476.     name, S_ISCHR (mode) ? "char" : "block");
  1477.     return NULL;
  1478. }
  1479. major = major (devnum);
  1480. minor = minor (devnum);
  1481.     }
  1482.     if ( ( de = _devfs_prepare_leaf (&dir, name, mode) ) == NULL )
  1483.     {
  1484. PRINTK ("(%s): could not prepare leafn", name);
  1485. if ( !kdev_none (devnum) ) devfs_dealloc_devnum (devtype, devnum);
  1486. return NULL;
  1487.     }
  1488.     if ( S_ISCHR (mode) || S_ISBLK (mode) )
  1489.     {
  1490. de->u.fcb.u.device.major = major;
  1491. de->u.fcb.u.device.minor = minor;
  1492. de->u.fcb.autogen = kdev_none (devnum) ? FALSE : TRUE;
  1493.     }
  1494.     else if ( !S_ISREG (mode) )
  1495.     {
  1496. PRINTK ("(%s): illegal mode: %xn", name, mode);
  1497. devfs_put (de);
  1498. devfs_put (dir);
  1499. return (NULL);
  1500.     }
  1501.     de->info = info;
  1502.     if (flags & DEVFS_FL_CURRENT_OWNER)
  1503.     {
  1504. de->inode.uid = current->uid;
  1505. de->inode.gid = current->gid;
  1506.     }
  1507.     else
  1508.     {
  1509. de->inode.uid = 0;
  1510. de->inode.gid = 0;
  1511.     }
  1512.     de->u.fcb.ops = ops;
  1513.     de->u.fcb.auto_owner = (flags & DEVFS_FL_AUTO_OWNER) ? TRUE : FALSE;
  1514.     de->u.fcb.aopen_notify = (flags & DEVFS_FL_AOPEN_NOTIFY) ? TRUE : FALSE;
  1515.     de->hide = (flags & DEVFS_FL_HIDE) ? TRUE : FALSE;
  1516.     if (flags & DEVFS_FL_REMOVABLE) de->u.fcb.removable = TRUE;
  1517.     if ( ( err = _devfs_append_entry (dir, de, de->u.fcb.removable, NULL) )
  1518.  != 0 )
  1519.     {
  1520. PRINTK ("(%s): could not append to parent, err: %dn", name, err);
  1521. devfs_put (dir);
  1522. if ( !kdev_none (devnum) ) devfs_dealloc_devnum (devtype, devnum);
  1523. return NULL;
  1524.     }
  1525.     DPRINTK (DEBUG_REGISTER, "(%s): de: %p dir: %p "%s"  pp: %pn",
  1526.      name, de, dir, dir->name, dir->parent);
  1527.     devfsd_notify (de, DEVFSD_NOTIFY_REGISTERED, flags & DEVFS_FL_WAIT);
  1528.     devfs_put (dir);
  1529.     return de;
  1530. }   /*  End Function devfs_register  */
  1531. /**
  1532.  * _devfs_unhook - Unhook a device entry from its parents list
  1533.  * @de: The entry to unhook.
  1534.  *
  1535.  * Returns %TRUE if the entry was unhooked, else %FALSE if it was
  1536.  * previously unhooked.
  1537.  * The caller must have a write lock on the parent directory.
  1538.  */
  1539. static int _devfs_unhook (struct devfs_entry *de)
  1540. {
  1541.     struct devfs_entry *parent;
  1542.     if ( !de || (de->prev == de) ) return FALSE;
  1543.     parent = de->parent;
  1544.     if (de->prev == NULL) parent->u.dir.first = de->next;
  1545.     else de->prev->next = de->next;
  1546.     if (de->next == NULL) parent->u.dir.last = de->prev;
  1547.     else de->next->prev = de->prev;
  1548.     de->prev = de;          /*  Indicate we're unhooked                      */
  1549.     de->next = NULL;        /*  Force early termination for <devfs_readdir>  */
  1550.     if ( ( S_ISREG (de->mode) || S_ISCHR (de->mode) || S_ISBLK (de->mode) ) &&
  1551.  de->u.fcb.removable )
  1552. --parent->u.dir.num_removable;
  1553.     return TRUE;
  1554. }   /*  End Function _devfs_unhook  */
  1555. /**
  1556.  * _devfs_unregister - Unregister a device entry from it's parent.
  1557.  * @dir: The parent directory.
  1558.  * @de: The entry to unregister.
  1559.  *
  1560.  * The caller must have a write lock on the parent directory, which is
  1561.  * unlocked by this function.
  1562.  */
  1563. static void _devfs_unregister (struct devfs_entry *dir, struct devfs_entry *de)
  1564. {
  1565.     int unhooked = _devfs_unhook (de);
  1566.     write_unlock (&dir->u.dir.lock);
  1567.     if (!unhooked) return;
  1568.     devfs_get (dir);
  1569.     devfs_unregister (de->slave);  /*  Let it handle the locking  */
  1570.     devfsd_notify (de, DEVFSD_NOTIFY_UNREGISTERED, 0);
  1571.     free_dentry (de);
  1572.     devfs_put (dir);
  1573.     if ( !S_ISDIR (de->mode) ) return;
  1574.     while (TRUE)  /*  Recursively unregister: this is a stack chomper  */
  1575.     {
  1576. struct devfs_entry *child;
  1577. write_lock (&de->u.dir.lock);
  1578. de->u.dir.no_more_additions = TRUE;
  1579. child = de->u.dir.first;
  1580. VERIFY_ENTRY (child);
  1581. _devfs_unregister (de, child);
  1582. if (!child) break;
  1583. DPRINTK (DEBUG_UNREGISTER, "(%s): child: %p  refcount: %dn",
  1584.  child->name, child, atomic_read (&child->refcount) );
  1585. devfs_put (child);
  1586.     }
  1587. }   /*  End Function _devfs_unregister  */
  1588. /**
  1589.  * devfs_unregister - Unregister a device entry.
  1590.  * @de: A handle previously created by devfs_register() or returned from
  1591.  * devfs_get_handle(). If this is %NULL the routine does nothing.
  1592.  */
  1593. void devfs_unregister (devfs_handle_t de)
  1594. {
  1595.     VERIFY_ENTRY (de);
  1596.     if ( (de == NULL) || (de->parent == NULL) ) return;
  1597.     DPRINTK (DEBUG_UNREGISTER, "(%s): de: %p  refcount: %dn",
  1598.      de->name, de, atomic_read (&de->refcount) );
  1599.     write_lock (&de->parent->u.dir.lock);
  1600.     _devfs_unregister (de->parent, de);
  1601.     devfs_put (de);
  1602. }   /*  End Function devfs_unregister  */
  1603. static int devfs_do_symlink (devfs_handle_t dir, const char *name,
  1604.      unsigned int flags, const char *link,
  1605.      devfs_handle_t *handle, void *info)
  1606. {
  1607.     int err;
  1608.     unsigned int linklength;
  1609.     char *newlink;
  1610.     struct devfs_entry *de;
  1611.     if (handle != NULL) *handle = NULL;
  1612.     if (name == NULL)
  1613.     {
  1614. PRINTK ("(): NULL name pointern");
  1615. return -EINVAL;
  1616.     }
  1617.     if (link == NULL)
  1618.     {
  1619. PRINTK ("(%s): NULL link pointern", name);
  1620. return -EINVAL;
  1621.     }
  1622.     linklength = strlen (link);
  1623.     if ( ( newlink = kmalloc (linklength + 1, GFP_KERNEL) ) == NULL )
  1624. return -ENOMEM;
  1625.     memcpy (newlink, link, linklength);
  1626.     newlink[linklength] = '';
  1627.     if ( ( de = _devfs_prepare_leaf (&dir, name, S_IFLNK | S_IRUGO | S_IXUGO) )
  1628.  == NULL )
  1629.     {
  1630. PRINTK ("(%s): could not prepare leafn", name);
  1631. kfree (newlink);
  1632. return -ENOTDIR;
  1633.     }
  1634.     de->info = info;
  1635.     de->hide = (flags & DEVFS_FL_HIDE) ? TRUE : FALSE;
  1636.     de->u.symlink.linkname = newlink;
  1637.     de->u.symlink.length = linklength;
  1638.     if ( ( err = _devfs_append_entry (dir, de, FALSE, NULL) ) != 0 )
  1639.     {
  1640. PRINTK ("(%s): could not append to parent, err: %dn", name, err);
  1641. devfs_put (dir);
  1642. return err;
  1643.     }
  1644.     devfs_put (dir);
  1645. #ifdef CONFIG_DEVFS_DEBUG
  1646.     spin_lock (&stat_lock);
  1647.     stat_num_bytes += linklength + 1;
  1648.     spin_unlock (&stat_lock);
  1649. #endif
  1650.     if (handle != NULL) *handle = de;
  1651.     return 0;
  1652. }   /*  End Function devfs_do_symlink  */
  1653. /**
  1654.  * devfs_mk_symlink Create a symbolic link in the devfs namespace.
  1655.  * @dir: The handle to the parent devfs directory entry. If this is %NULL the
  1656.  * new name is relative to the root of the devfs.
  1657.  * @name: The name of the entry.
  1658.  * @flags: A set of bitwise-ORed flags (DEVFS_FL_*).
  1659.  * @link: The destination name.
  1660.  * @handle: The handle to the symlink entry is written here. This may be %NULL.
  1661.  * @info: An arbitrary pointer which will be associated with the entry.
  1662.  *
  1663.  * Returns 0 on success, else a negative error code is returned.
  1664.  */
  1665. int devfs_mk_symlink (devfs_handle_t dir, const char *name, unsigned int flags,
  1666.       const char *link, devfs_handle_t *handle, void *info)
  1667. {
  1668.     int err;
  1669.     devfs_handle_t de;
  1670.     if (handle != NULL) *handle = NULL;
  1671.     DPRINTK (DEBUG_REGISTER, "(%s)n", name);
  1672.     err = devfs_do_symlink (dir, name, flags, link, &de, info);
  1673.     if (err) return err;
  1674.     if (handle == NULL) de->vfs_deletable = TRUE;
  1675.     else *handle = de;
  1676.     devfsd_notify (de, DEVFSD_NOTIFY_REGISTERED, flags & DEVFS_FL_WAIT);
  1677.     return 0;
  1678. }   /*  End Function devfs_mk_symlink  */
  1679. /**
  1680.  * devfs_mk_dir - Create a directory in the devfs namespace.
  1681.  * @dir: The handle to the parent devfs directory entry. If this is %NULL the
  1682.  * new name is relative to the root of the devfs.
  1683.  * @name: The name of the entry.
  1684.  * @info: An arbitrary pointer which will be associated with the entry.
  1685.  *
  1686.  * Use of this function is optional. The devfs_register() function
  1687.  * will automatically create intermediate directories as needed. This function
  1688.  * is provided for efficiency reasons, as it provides a handle to a directory.
  1689.  * Returns a handle which may later be used in a call to devfs_unregister().
  1690.  * On failure %NULL is returned.
  1691.  */
  1692. devfs_handle_t devfs_mk_dir (devfs_handle_t dir, const char *name, void *info)
  1693. {
  1694.     int err;
  1695.     struct devfs_entry *de, *old;
  1696.     if (name == NULL)
  1697.     {
  1698. PRINTK ("(): NULL name pointern");
  1699. return NULL;
  1700.     }
  1701.     if ( ( de = _devfs_prepare_leaf (&dir, name, MODE_DIR) ) == NULL )
  1702.     {
  1703. PRINTK ("(%s): could not prepare leafn", name);
  1704. return NULL;
  1705.     }
  1706.     de->info = info;
  1707.     if ( ( err = _devfs_append_entry (dir, de, FALSE, &old) ) != 0 )
  1708.     {
  1709. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,1)
  1710. if ( old && S_ISDIR (old->mode) )
  1711. {
  1712.     PRINTK ("(%s): using old entry in dir: %p "%s"n",
  1713.     name, dir, dir->name);
  1714.     old->vfs_deletable = FALSE;
  1715.     devfs_put (dir);
  1716.     return old;
  1717. }
  1718. #endif
  1719. PRINTK ("(%s): could not append to dir: %p "%s", err: %dn",
  1720. name, dir, dir->name, err);
  1721. devfs_put (old);
  1722. devfs_put (dir);
  1723. return NULL;
  1724.     }
  1725.     DPRINTK (DEBUG_REGISTER, "(%s): de: %p dir: %p "%s"n",
  1726.      name, de, dir, dir->name);
  1727.     devfsd_notify (de, DEVFSD_NOTIFY_REGISTERED, 0);
  1728.     devfs_put (dir);
  1729.     return de;
  1730. }   /*  End Function devfs_mk_dir  */
  1731. /**
  1732.  * devfs_get_handle - Find the handle of a devfs entry.
  1733.  * @dir: The handle to the parent devfs directory entry. If this is %NULL the
  1734.  * name is relative to the root of the devfs.
  1735.  * @name: The name of the entry.
  1736.  * @major: The major number. This is used if @name is %NULL.
  1737.  * @minor: The minor number. This is used if @name is %NULL.
  1738.  * @type: The type of special file to search for. This may be either
  1739.  * %DEVFS_SPECIAL_CHR or %DEVFS_SPECIAL_BLK.
  1740.  * @traverse_symlinks: If %TRUE then symlink entries in the devfs namespace are
  1741.  * traversed. Symlinks pointing out of the devfs namespace will cause a
  1742.  * failure. Symlink traversal consumes stack space.
  1743.  *
  1744.  * Returns a handle which may later be used in a call to
  1745.  * devfs_unregister(), devfs_get_flags(), or devfs_set_flags(). A
  1746.  * subsequent devfs_put() is required to decrement the refcount.
  1747.  * On failure %NULL is returned.
  1748.  */
  1749. devfs_handle_t devfs_get_handle (devfs_handle_t dir, const char *name,
  1750.  unsigned int major, unsigned int minor,
  1751.  char type, int traverse_symlinks)
  1752. {
  1753.     if ( (name != NULL) && (name[0] == '') ) name = NULL;
  1754.     return _devfs_find_entry (dir, name, major, minor, type,traverse_symlinks);
  1755. }   /*  End Function devfs_get_handle  */
  1756. /*  Compatibility function. Will be removed in sometime in 2.5  */
  1757. devfs_handle_t devfs_find_handle (devfs_handle_t dir, const char *name,
  1758.   unsigned int major, unsigned int minor,
  1759.   char type, int traverse_symlinks)
  1760. {
  1761.     devfs_handle_t de;
  1762.     de = devfs_get_handle (dir, name, major, minor, type, traverse_symlinks);
  1763.     devfs_put (de);
  1764.     return de;
  1765. }   /*  End Function devfs_find_handle  */
  1766. /**
  1767.  * devfs_get_flags - Get the flags for a devfs entry.
  1768.  * @de: The handle to the device entry.
  1769.  * @flags: The flags are written here.
  1770.  *
  1771.  * Returns 0 on success, else a negative error code.
  1772.  */
  1773. int devfs_get_flags (devfs_handle_t de, unsigned int *flags)
  1774. {
  1775.     unsigned int fl = 0;
  1776.     if (de == NULL) return -EINVAL;
  1777.     VERIFY_ENTRY (de);
  1778.     if (de->hide) fl |= DEVFS_FL_HIDE;
  1779.     if ( S_ISCHR (de->mode) || S_ISBLK (de->mode) || S_ISREG (de->mode) )
  1780.     {
  1781. if (de->u.fcb.auto_owner) fl |= DEVFS_FL_AUTO_OWNER;
  1782. if (de->u.fcb.aopen_notify) fl |= DEVFS_FL_AOPEN_NOTIFY;
  1783. if (de->u.fcb.removable) fl |= DEVFS_FL_REMOVABLE;
  1784.     }
  1785.     *flags = fl;
  1786.     return 0;
  1787. }   /*  End Function devfs_get_flags  */
  1788. /*
  1789.  * devfs_set_flags - Set the flags for a devfs entry.
  1790.  * @de: The handle to the device entry.
  1791.  * @flags: The flags to set. Unset flags are cleared.
  1792.  *
  1793.  * Returns 0 on success, else a negative error code.
  1794.  */
  1795. int devfs_set_flags (devfs_handle_t de, unsigned int flags)
  1796. {
  1797.     if (de == NULL) return -EINVAL;
  1798.     VERIFY_ENTRY (de);
  1799.     DPRINTK (DEBUG_SET_FLAGS, "(%s): flags: %xn", de->name, flags);
  1800.     de->hide = (flags & DEVFS_FL_HIDE) ? TRUE : FALSE;
  1801.     if ( S_ISCHR (de->mode) || S_ISBLK (de->mode) || S_ISREG (de->mode) )
  1802.     {
  1803. de->u.fcb.auto_owner = (flags & DEVFS_FL_AUTO_OWNER) ? TRUE : FALSE;
  1804. de->u.fcb.aopen_notify = (flags & DEVFS_FL_AOPEN_NOTIFY) ? TRUE:FALSE;
  1805.     }
  1806.     return 0;
  1807. }   /*  End Function devfs_set_flags  */
  1808. /**
  1809.  * devfs_get_maj_min - Get the major and minor numbers for a devfs entry.
  1810.  * @de: The handle to the device entry.
  1811.  * @major: The major number is written here. This may be %NULL.
  1812.  * @minor: The minor number is written here. This may be %NULL.
  1813.  *
  1814.  * Returns 0 on success, else a negative error code.
  1815.  */
  1816. int devfs_get_maj_min (devfs_handle_t de, unsigned int *major,
  1817.        unsigned int *minor)
  1818. {
  1819.     if (de == NULL) return -EINVAL;
  1820.     VERIFY_ENTRY (de);
  1821.     if ( S_ISDIR (de->mode) ) return -EISDIR;
  1822.     if ( !S_ISCHR (de->mode) && !S_ISBLK (de->mode) ) return -EINVAL;
  1823.     if (major != NULL) *major = de->u.fcb.u.device.major;
  1824.     if (minor != NULL) *minor = de->u.fcb.u.device.minor;
  1825.     return 0;
  1826. }   /*  End Function devfs_get_maj_min  */
  1827. /**
  1828.  * devfs_get_handle_from_inode - Get the devfs handle for a VFS inode.
  1829.  * @inode: The VFS inode.
  1830.  *
  1831.  * Returns the devfs handle on success, else %NULL.
  1832.  */
  1833. devfs_handle_t devfs_get_handle_from_inode (struct inode *inode)
  1834. {
  1835.     if (!inode || !inode->i_sb) return NULL;
  1836.     if (inode->i_sb->s_magic != DEVFS_SUPER_MAGIC) return NULL;
  1837.     return get_devfs_entry_from_vfs_inode (inode);
  1838. }   /*  End Function devfs_get_handle_from_inode  */
  1839. /**
  1840.  * devfs_generate_path - Generate a pathname for an entry, relative to the devfs root.
  1841.  * @de: The devfs entry.
  1842.  * @path: The buffer to write the pathname to. The pathname and ''
  1843.  * terminator will be written at the end of the buffer.
  1844.  * @buflen: The length of the buffer.
  1845.  *
  1846.  * Returns the offset in the buffer where the pathname starts on success,
  1847.  * else a negative error code.
  1848.  */
  1849. int devfs_generate_path (devfs_handle_t de, char *path, int buflen)
  1850. {
  1851.     int pos;
  1852. #define NAMEOF(de) ( (de)->mode ? (de)->name : (de)->u.name )
  1853.     if (de == NULL) return -EINVAL;
  1854.     VERIFY_ENTRY (de);
  1855.     if (de->namelen >= buflen) return -ENAMETOOLONG; /*  Must be first       */
  1856.     path[buflen - 1] = '';
  1857.     if (de->parent == NULL) return buflen - 1;       /*  Don't prepend root  */
  1858.     pos = buflen - de->namelen - 1;
  1859.     memcpy (path + pos, NAMEOF (de), de->namelen);
  1860.     for (de = de->parent; de->parent != NULL; de = de->parent)
  1861.     {
  1862. if (pos - de->namelen - 1 < 0) return -ENAMETOOLONG;
  1863. path[--pos] = '/';
  1864. pos -= de->namelen;
  1865. memcpy (path + pos, NAMEOF (de), de->namelen);
  1866.     }
  1867.     return pos;
  1868. }   /*  End Function devfs_generate_path  */
  1869. /**
  1870.  * devfs_get_ops - Get the device operations for a devfs entry.
  1871.  * @de: The handle to the device entry.
  1872.  *
  1873.  * Returns a pointer to the device operations on success, else NULL.
  1874.  * The use count for the module owning the operations will be incremented.
  1875.  */
  1876. void *devfs_get_ops (devfs_handle_t de)
  1877. {
  1878.     struct module *owner;
  1879.     if (de == NULL) return NULL;
  1880.     VERIFY_ENTRY (de);
  1881.     if ( !S_ISCHR (de->mode) && !S_ISBLK (de->mode) && !S_ISREG (de->mode) )
  1882. return NULL;
  1883.     if (de->u.fcb.ops == NULL) return NULL;
  1884.     read_lock (&de->parent->u.dir.lock);  /*  Prevent module from unloading  */
  1885.     if (de->next == de) owner = NULL;     /*  Ops pointer is already stale   */
  1886.     else if ( S_ISCHR (de->mode) || S_ISREG (de->mode) )
  1887. owner = ( (struct file_operations *) de->u.fcb.ops )->owner;
  1888.     else owner = ( (struct block_device_operations *) de->u.fcb.ops )->owner;
  1889.     if ( (de->next == de) || !try_inc_mod_count (owner) )
  1890.     {   /*  Entry is already unhooked or module is unloading  */
  1891. read_unlock (&de->parent->u.dir.lock);
  1892. return NULL;
  1893.     }
  1894.     read_unlock (&de->parent->u.dir.lock);  /*  Module can continue unloading*/
  1895.     return de->u.fcb.ops;
  1896. }   /*  End Function devfs_get_ops  */
  1897. /**
  1898.  * devfs_put_ops - Put the device operations for a devfs entry.
  1899.  * @de: The handle to the device entry.
  1900.  *
  1901.  * The use count for the module owning the operations will be decremented.
  1902.  */
  1903. void devfs_put_ops (devfs_handle_t de)
  1904. {
  1905.     struct module *owner;
  1906.     if (de == NULL) return;
  1907.     VERIFY_ENTRY (de);
  1908.     if ( !S_ISCHR (de->mode) && !S_ISBLK (de->mode) && !S_ISREG (de->mode) )
  1909. return;
  1910.     if (de->u.fcb.ops == NULL) return;
  1911.     if ( S_ISCHR (de->mode) || S_ISREG (de->mode) )
  1912. owner = ( (struct file_operations *) de->u.fcb.ops )->owner;
  1913.     else owner = ( (struct block_device_operations *) de->u.fcb.ops )->owner;
  1914.     if (owner) __MOD_DEC_USE_COUNT (owner);
  1915. }   /*  End Function devfs_put_ops  */
  1916. /**
  1917.  * devfs_set_file_size - Set the file size for a devfs regular file.
  1918.  * @de: The handle to the device entry.
  1919.  * @size: The new file size.
  1920.  *
  1921.  * Returns 0 on success, else a negative error code.
  1922.  */
  1923. int devfs_set_file_size (devfs_handle_t de, unsigned long size)
  1924. {
  1925.     if (de == NULL) return -EINVAL;
  1926.     VERIFY_ENTRY (de);
  1927.     if ( !S_ISREG (de->mode) ) return -EINVAL;
  1928.     if (de->u.fcb.u.file.size == size) return 0;
  1929.     de->u.fcb.u.file.size = size;
  1930.     if (de->inode.dentry == NULL) return 0;
  1931.     if (de->inode.dentry->d_inode == NULL) return 0;
  1932.     de->inode.dentry->d_inode->i_size = size;
  1933.     return 0;
  1934. }   /*  End Function devfs_set_file_size  */
  1935. /**
  1936.  * devfs_get_info - Get the info pointer written to private_data of @de upon open.
  1937.  * @de: The handle to the device entry.
  1938.  *
  1939.  * Returns the info pointer.
  1940.  */
  1941. void *devfs_get_info (devfs_handle_t de)
  1942. {
  1943.     if (de == NULL) return NULL;
  1944.     VERIFY_ENTRY (de);
  1945.     return de->info;
  1946. }   /*  End Function devfs_get_info  */
  1947. /**
  1948.  * devfs_set_info - Set the info pointer written to private_data upon open.
  1949.  * @de: The handle to the device entry.
  1950.  * @info: pointer to the data
  1951.  *
  1952.  * Returns 0 on success, else a negative error code.
  1953.  */
  1954. int devfs_set_info (devfs_handle_t de, void *info)
  1955. {
  1956.     if (de == NULL) return -EINVAL;
  1957.     VERIFY_ENTRY (de);
  1958.     de->info = info;
  1959.     return 0;
  1960. }   /*  End Function devfs_set_info  */
  1961. /**
  1962.  * devfs_get_parent - Get the parent device entry.
  1963.  * @de: The handle to the device entry.
  1964.  *
  1965.  * Returns the parent device entry if it exists, else %NULL.
  1966.  */
  1967. devfs_handle_t devfs_get_parent (devfs_handle_t de)
  1968. {
  1969.     if (de == NULL) return NULL;
  1970.     VERIFY_ENTRY (de);
  1971.     return de->parent;
  1972. }   /*  End Function devfs_get_parent  */
  1973. /**
  1974.  * devfs_get_first_child - Get the first leaf node in a directory.
  1975.  * @de: The handle to the device entry.
  1976.  *
  1977.  * Returns the leaf node device entry if it exists, else %NULL.
  1978.  */
  1979. devfs_handle_t devfs_get_first_child (devfs_handle_t de)
  1980. {
  1981.     if (de == NULL) return NULL;
  1982.     VERIFY_ENTRY (de);
  1983.     if ( !S_ISDIR (de->mode) ) return NULL;
  1984.     return de->u.dir.first;
  1985. }   /*  End Function devfs_get_first_child  */
  1986. /**
  1987.  * devfs_get_next_sibling - Get the next sibling leaf node. for a device entry.
  1988.  * @de: The handle to the device entry.
  1989.  *
  1990.  * Returns the leaf node device entry if it exists, else %NULL.
  1991.  */
  1992. devfs_handle_t devfs_get_next_sibling (devfs_handle_t de)
  1993. {
  1994.     if (de == NULL) return NULL;
  1995.     VERIFY_ENTRY (de);
  1996.     return de->next;
  1997. }   /*  End Function devfs_get_next_sibling  */
  1998. /**
  1999.  * devfs_auto_unregister - Configure a devfs entry to be automatically unregistered.
  2000.  * @master: The master devfs entry. Only one slave may be registered.
  2001.  * @slave: The devfs entry which will be automatically unregistered when the
  2002.  * master entry is unregistered. It is illegal to call devfs_unregister()
  2003.  * on this entry.
  2004.  */
  2005. void devfs_auto_unregister (devfs_handle_t master, devfs_handle_t slave)
  2006. {
  2007.     if (master == NULL) return;
  2008.     VERIFY_ENTRY (master);
  2009.     VERIFY_ENTRY (slave);
  2010.     if (master->slave != NULL)
  2011.     {
  2012. /*  Because of the dumbness of the layers above, ignore duplicates  */
  2013. if (master->slave == slave) return;
  2014. PRINTK ("(%s): only one slave allowedn", master->name);
  2015. OOPS ("():  old slave: "%s"  new slave: "%s"n",
  2016.       master->slave->name, slave->name);
  2017.     }
  2018.     master->slave = slave;
  2019. }   /*  End Function devfs_auto_unregister  */
  2020. /**
  2021.  * devfs_get_unregister_slave - Get the slave entry which will be automatically unregistered.
  2022.  * @master: The master devfs entry.
  2023.  *
  2024.  * Returns the slave which will be unregistered when @master is unregistered.
  2025.  */
  2026. devfs_handle_t devfs_get_unregister_slave (devfs_handle_t master)
  2027. {
  2028.     if (master == NULL) return NULL;
  2029.     VERIFY_ENTRY (master);
  2030.     return master->slave;
  2031. }   /*  End Function devfs_get_unregister_slave  */
  2032. /**
  2033.  * devfs_get_name - Get the name for a device entry in its parent directory.
  2034.  * @de: The handle to the device entry.
  2035.  * @namelen: The length of the name is written here. This may be %NULL.
  2036.  *
  2037.  * Returns the name on success, else %NULL.
  2038.  */
  2039. const char *devfs_get_name (devfs_handle_t de, unsigned int *namelen)
  2040. {
  2041.     if (de == NULL) return NULL;
  2042.     VERIFY_ENTRY (de);
  2043.     if (namelen != NULL) *namelen = de->namelen;
  2044.     return de->name;
  2045. }   /*  End Function devfs_get_name  */
  2046. /**
  2047.  * devfs_register_chrdev - Optionally register a conventional character driver.
  2048.  * @major: The major number for the driver.
  2049.  * @name: The name of the driver (as seen in /proc/devices).
  2050.  * @fops: The &file_operations structure pointer.
  2051.  *
  2052.  * This function will register a character driver provided the "devfs=only"
  2053.  * option was not provided at boot time.
  2054.  * Returns 0 on success, else a negative error code on failure.
  2055.  */
  2056. int devfs_register_chrdev (unsigned int major, const char *name,
  2057.    struct file_operations *fops)
  2058. {
  2059.     if (boot_options & OPTION_ONLY) return 0;
  2060.     return register_chrdev (major, name, fops);
  2061. }   /*  End Function devfs_register_chrdev  */
  2062. /**
  2063.  * devfs_register_blkdev - Optionally register a conventional block driver.
  2064.  * @major: The major number for the driver.
  2065.  * @name: The name of the driver (as seen in /proc/devices).
  2066.  * @bdops: The &block_device_operations structure pointer.
  2067.  *
  2068.  * This function will register a block driver provided the "devfs=only"
  2069.  * option was not provided at boot time.
  2070.  * Returns 0 on success, else a negative error code on failure.
  2071.  */
  2072. int devfs_register_blkdev (unsigned int major, const char *name,
  2073.    struct block_device_operations *bdops)
  2074. {
  2075.     if (boot_options & OPTION_ONLY) return 0;
  2076.     return register_blkdev (major, name, bdops);
  2077. }   /*  End Function devfs_register_blkdev  */
  2078. /**
  2079.  * devfs_unregister_chrdev - Optionally unregister a conventional character driver.
  2080.  * @major: The major number for the driver.
  2081.  * @name: The name of the driver (as seen in /proc/devices).
  2082.  *
  2083.  * This function will unregister a character driver provided the "devfs=only"
  2084.  * option was not provided at boot time.
  2085.  * Returns 0 on success, else a negative error code on failure.
  2086.  */
  2087. int devfs_unregister_chrdev (unsigned int major, const char *name)
  2088. {
  2089.     if (boot_options & OPTION_ONLY) return 0;
  2090.     return unregister_chrdev (major, name);
  2091. }   /*  End Function devfs_unregister_chrdev  */
  2092. /**
  2093.  * devfs_unregister_blkdev - Optionally unregister a conventional block driver.
  2094.  * @major: The major number for the driver.
  2095.  * @name: The name of the driver (as seen in /proc/devices).
  2096.  *
  2097.  * This function will unregister a block driver provided the "devfs=only"
  2098.  * option was not provided at boot time.
  2099.  * Returns 0 on success, else a negative error code on failure.
  2100.  */
  2101. int devfs_unregister_blkdev (unsigned int major, const char *name)
  2102. {
  2103.     if (boot_options & OPTION_ONLY) return 0;
  2104.     return unregister_blkdev (major, name);
  2105. }   /*  End Function devfs_unregister_blkdev  */
  2106. /**
  2107.  * devfs_setup - Process kernel boot options.
  2108.  * @str: The boot options after the "devfs=".
  2109.  */
  2110. static int __init devfs_setup (char *str)
  2111. {
  2112.     static struct
  2113.     {
  2114. char *name;
  2115. unsigned int mask;
  2116. unsigned int *opt;
  2117.     } devfs_options_tab[] __initdata =
  2118.     {
  2119. #ifdef CONFIG_DEVFS_DEBUG
  2120. {"dall",      DEBUG_ALL,          &devfs_debug_init},
  2121. {"dmod",      DEBUG_MODULE_LOAD,  &devfs_debug_init},
  2122. {"dreg",      DEBUG_REGISTER,     &devfs_debug_init},
  2123. {"dunreg",    DEBUG_UNREGISTER,   &devfs_debug_init},
  2124. {"dfree",     DEBUG_FREE,         &devfs_debug_init},
  2125. {"diget",     DEBUG_I_GET,        &devfs_debug_init},
  2126. {"dchange",   DEBUG_SET_FLAGS,    &devfs_debug_init},
  2127. {"dsread",    DEBUG_S_READ,       &devfs_debug_init},
  2128. {"dichange",  DEBUG_I_CHANGE,     &devfs_debug_init},
  2129. {"dimknod",   DEBUG_I_MKNOD,      &devfs_debug_init},
  2130. {"dilookup",  DEBUG_I_LOOKUP,     &devfs_debug_init},
  2131. {"diunlink",  DEBUG_I_UNLINK,     &devfs_debug_init},
  2132. #endif  /*  CONFIG_DEVFS_DEBUG  */
  2133. {"only",      OPTION_ONLY,        &boot_options},
  2134. {"mount",     OPTION_MOUNT,       &boot_options},
  2135. {NULL,        0,                  NULL}
  2136.     };
  2137.     while ( (*str != '') && !isspace (*str) )
  2138.     {
  2139. int i, found = 0, invert = 0;
  2140. if (strncmp (str, "no", 2) == 0)
  2141. {
  2142.     invert = 1;
  2143.     str += 2;
  2144. }
  2145. for (i = 0; devfs_options_tab[i].name != NULL; i++)
  2146. {
  2147.     int len = strlen (devfs_options_tab[i].name);
  2148.     if (strncmp (str, devfs_options_tab[i].name, len) == 0)
  2149.     {
  2150. if (invert)
  2151.     *devfs_options_tab[i].opt &= ~devfs_options_tab[i].mask;
  2152. else
  2153.     *devfs_options_tab[i].opt |= devfs_options_tab[i].mask;
  2154. str += len;
  2155. found = 1;
  2156. break;
  2157.     }
  2158. }
  2159. if (!found) return 0;       /*  No match         */
  2160. if (*str != ',') return 0;  /*  No more options  */
  2161. ++str;
  2162.     }
  2163.     return 1;
  2164. }   /*  End Function devfs_setup  */
  2165. __setup("devfs=", devfs_setup);
  2166. EXPORT_SYMBOL(devfs_put);
  2167. EXPORT_SYMBOL(devfs_register);
  2168. EXPORT_SYMBOL(devfs_unregister);
  2169. EXPORT_SYMBOL(devfs_mk_symlink);
  2170. EXPORT_SYMBOL(devfs_mk_dir);
  2171. EXPORT_SYMBOL(devfs_get_handle);
  2172. EXPORT_SYMBOL(devfs_find_handle);
  2173. EXPORT_SYMBOL(devfs_get_flags);
  2174. EXPORT_SYMBOL(devfs_set_flags);
  2175. EXPORT_SYMBOL(devfs_get_maj_min);
  2176. EXPORT_SYMBOL(devfs_get_handle_from_inode);
  2177. EXPORT_SYMBOL(devfs_generate_path);
  2178. EXPORT_SYMBOL(devfs_get_ops);
  2179. EXPORT_SYMBOL(devfs_set_file_size);
  2180. EXPORT_SYMBOL(devfs_get_info);
  2181. EXPORT_SYMBOL(devfs_set_info);
  2182. EXPORT_SYMBOL(devfs_get_parent);
  2183. EXPORT_SYMBOL(devfs_get_first_child);
  2184. EXPORT_SYMBOL(devfs_get_next_sibling);
  2185. EXPORT_SYMBOL(devfs_auto_unregister);
  2186. EXPORT_SYMBOL(devfs_get_unregister_slave);
  2187. EXPORT_SYMBOL(devfs_get_name);
  2188. EXPORT_SYMBOL(devfs_register_chrdev);
  2189. EXPORT_SYMBOL(devfs_register_blkdev);
  2190. EXPORT_SYMBOL(devfs_unregister_chrdev);
  2191. EXPORT_SYMBOL(devfs_unregister_blkdev);
  2192. /**
  2193.  * try_modload - Notify devfsd of an inode lookup by a non-devfsd process.
  2194.  * @parent: The parent devfs entry.
  2195.  * @fs_info: The filesystem info.
  2196.  * @name: The device name.
  2197.  * @namelen: The number of characters in @name.
  2198.  * @buf: A working area that will be used. This must not go out of scope
  2199.  *            until devfsd is idle again.
  2200.  *
  2201.  * Returns 0 on success (event was queued), else a negative error code.
  2202.  */
  2203. static int try_modload (struct devfs_entry *parent, struct fs_info *fs_info,
  2204. const char *name, unsigned namelen,
  2205. struct devfs_entry *buf)
  2206. {
  2207.     if ( !( fs_info->devfsd_event_mask & (1 << DEVFSD_NOTIFY_LOOKUP) ) )
  2208. return -ENOENT;
  2209.     if ( is_devfsd_or_child (fs_info) ) return -ENOENT;
  2210.     memset (buf, 0, sizeof *buf);
  2211.     atomic_set (&buf->refcount, 1);
  2212.     buf->parent = parent;
  2213.     buf->namelen = namelen;
  2214.     buf->u.name = name;
  2215.     WRITE_ENTRY_MAGIC (buf, MAGIC_VALUE);
  2216.     if ( !devfsd_notify_de (buf, DEVFSD_NOTIFY_LOOKUP, 0,
  2217.     current->euid, current->egid, fs_info, 0) )
  2218. return -ENOENT;
  2219.     /*  Possible success: event has been queued  */
  2220.     return 0;
  2221. }   /*  End Function try_modload  */
  2222. /**
  2223.  * check_disc_changed - Check if a removable disc was changed.
  2224.  * @de: The device.
  2225.  *
  2226.  * Returns 1 if the media was changed, else 0.
  2227.  *
  2228.  * This function may block, and may indirectly cause the parent directory
  2229.  * contents to be changed due to partition re-reading.
  2230.  */
  2231. static int check_disc_changed (struct devfs_entry *de)
  2232. {
  2233.     int tmp;
  2234.     int retval = 0;
  2235.     kdev_t dev = mk_kdev (de->u.fcb.u.device.major, de->u.fcb.u.device.minor);
  2236.     struct block_device_operations *bdops;
  2237.     extern int warn_no_part;
  2238.     if ( !S_ISBLK (de->mode) ) return 0;
  2239.     bdops = devfs_get_ops (de);
  2240.     if (!bdops) return 0;
  2241.     if (bdops->check_media_change == NULL) goto out;
  2242.     if ( !bdops->check_media_change (dev) ) goto out;
  2243.     retval = 1;
  2244.     printk (KERN_DEBUG "VFS: Disk change detected on device %sn",
  2245.      kdevname (dev) );
  2246.     if ( invalidate_device (dev, 0) )
  2247. printk (KERN_WARNING "VFS: busy inodes on changed media..n");
  2248.     /*  Ugly hack to disable messages about unable to read partition table  */
  2249.     tmp = warn_no_part;
  2250.     warn_no_part = 0;
  2251.     if (bdops->revalidate) bdops->revalidate (dev);
  2252.     warn_no_part = tmp;
  2253. out:
  2254.     devfs_put_ops (de);
  2255.     return retval;
  2256. }   /*  End Function check_disc_changed  */
  2257. /**
  2258.  * scan_dir_for_removable - Scan a directory for removable media devices and check media.
  2259.  * @dir: The directory.
  2260.  *
  2261.  * This function may block, and may indirectly cause the directory
  2262.  * contents to be changed due to partition re-reading. The directory will
  2263.  * be locked for reading.
  2264.  */
  2265. static void scan_dir_for_removable (struct devfs_entry *dir)
  2266. {
  2267.     struct devfs_entry *de;
  2268.     read_lock (&dir->u.dir.lock);
  2269.     if (dir->u.dir.num_removable < 1) de = NULL;
  2270.     else
  2271.     {
  2272. for (de = dir->u.dir.first; de != NULL; de = de->next)
  2273. {
  2274.     if (S_ISBLK (de->mode) && de->u.fcb.removable) break;
  2275. }
  2276. devfs_get (de);
  2277.     }
  2278.     read_unlock (&dir->u.dir.lock);
  2279.     if (de) check_disc_changed (de);
  2280.     devfs_put (de);
  2281. }   /*  End Function scan_dir_for_removable  */
  2282. /**
  2283.  * get_removable_partition - Get removable media partition.
  2284.  * @dir: The parent directory.
  2285.  * @name: The name of the entry.
  2286.  * @namelen: The number of characters in <<name>>.
  2287.  *
  2288.  * Returns 1 if the media was changed, else 0.
  2289.  *
  2290.  * This function may block, and may indirectly cause the directory
  2291.  * contents to be changed due to partition re-reading. The directory must
  2292.  * be locked for reading upon entry, and will be unlocked upon exit.
  2293.  */
  2294. static int get_removable_partition (struct devfs_entry *dir, const char *name,
  2295.     unsigned int namelen)
  2296. {
  2297.     int retval;
  2298.     struct devfs_entry *de;
  2299.     if (dir->u.dir.num_removable < 1)
  2300.     {
  2301. read_unlock (&dir->u.dir.lock);
  2302. return 0;
  2303.     }
  2304.     for (de = dir->u.dir.first; de != NULL; de = de->next)
  2305.     {
  2306. if (!S_ISBLK (de->mode) || !de->u.fcb.removable) continue;
  2307. if (strcmp (de->name, "disc") == 0) break;
  2308. /*  Support for names where the partition is appended to the disc name
  2309.  */
  2310. if (de->namelen >= namelen) continue;
  2311. if (strncmp (de->name, name, de->namelen) == 0) break;
  2312.     }
  2313.     devfs_get (de);
  2314.     read_unlock (&dir->u.dir.lock);
  2315.     retval = de ? check_disc_changed (de) : 0;
  2316.     devfs_put (de);
  2317.     return retval;
  2318. }   /*  End Function get_removable_partition  */
  2319. /*  Superblock operations follow  */
  2320. static struct inode_operations devfs_iops;
  2321. static struct inode_operations devfs_dir_iops;
  2322. static struct file_operations devfs_fops;
  2323. static struct file_operations devfs_dir_fops;
  2324. static struct inode_operations devfs_symlink_iops;
  2325. static int devfs_notify_change (struct dentry *dentry, struct iattr *iattr)
  2326. {
  2327.     int retval;
  2328.     struct devfs_entry *de;
  2329.     struct inode *inode = dentry->d_inode;
  2330.     struct fs_info *fs_info = inode->i_sb->u.generic_sbp;
  2331.     de = get_devfs_entry_from_vfs_inode (inode);
  2332.     if (de == NULL) return -ENODEV;
  2333.     retval = inode_change_ok (inode, iattr);
  2334.     if (retval != 0) return retval;
  2335.     retval = inode_setattr (inode, iattr);
  2336.     if (retval != 0) return retval;
  2337.     DPRINTK (DEBUG_I_CHANGE, "(%d): VFS inode: %p  devfs_entry: %pn",
  2338.      (int) inode->i_ino, inode, de);
  2339.     DPRINTK (DEBUG_I_CHANGE, "():   mode: 0%o  uid: %d  gid: %dn",
  2340.      (int) inode->i_mode, (int) inode->i_uid, (int) inode->i_gid);
  2341.     /*  Inode is not on hash chains, thus must save permissions here rather
  2342. than in a write_inode() method  */
  2343.     if ( ( !S_ISREG (inode->i_mode) && !S_ISCHR (inode->i_mode) &&
  2344.    !S_ISBLK (inode->i_mode) ) || !de->u.fcb.auto_owner )
  2345.     {
  2346. de->mode = inode->i_mode;
  2347. de->inode.uid = inode->i_uid;
  2348. de->inode.gid = inode->i_gid;
  2349.     }
  2350.     de->inode.atime = inode->i_atime;
  2351.     de->inode.mtime = inode->i_mtime;
  2352.     de->inode.ctime = inode->i_ctime;
  2353.     if ( ( iattr->ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID) ) &&
  2354.  !is_devfsd_or_child (fs_info) )
  2355. devfsd_notify_de (de, DEVFSD_NOTIFY_CHANGE, inode->i_mode,
  2356.   inode->i_uid, inode->i_gid, fs_info, 0);
  2357.     return 0;
  2358. }   /*  End Function devfs_notify_change  */
  2359. static int devfs_statfs (struct super_block *sb, struct statfs *buf)
  2360. {
  2361.     buf->f_type = DEVFS_SUPER_MAGIC;
  2362.     buf->f_bsize = FAKE_BLOCK_SIZE;
  2363.     buf->f_bfree = 0;
  2364.     buf->f_bavail = 0;
  2365.     buf->f_ffree = 0;
  2366.     buf->f_namelen = NAME_MAX;
  2367.     return 0;
  2368. }   /*  End Function devfs_statfs  */
  2369. static void devfs_clear_inode (struct inode *inode)
  2370. {
  2371.     if ( S_ISBLK (inode->i_mode) ) bdput (inode->i_bdev);
  2372. }   /*  End Function devfs_clear_inode  */
  2373. static struct super_operations devfs_sops =
  2374.     .put_inode     = force_delete,
  2375.     .clear_inode   = devfs_clear_inode,
  2376.     .statfs        = devfs_statfs,
  2377. };
  2378. /**
  2379.  * _devfs_get_vfs_inode - Get a VFS inode.
  2380.  * @sb: The super block.
  2381.  * @de: The devfs inode.
  2382.  * @dentry: The dentry to register with the devfs inode.
  2383.  *
  2384.  * Returns the inode on success, else %NULL. An implicit devfs_get() is
  2385.  *       performed if the inode is created.
  2386.  */
  2387. static struct inode *_devfs_get_vfs_inode (struct super_block *sb,
  2388.    struct devfs_entry *de,
  2389.    struct dentry *dentry)
  2390. {
  2391.     int is_fcb = FALSE;
  2392.     struct inode *inode;
  2393.     if (de->prev == de) return NULL;  /*  Quick check to see if unhooked  */
  2394.     if ( ( inode = new_inode (sb) ) == NULL )
  2395.     {
  2396. PRINTK ("(%s): new_inode() failed, de: %pn", de->name, de);
  2397. return NULL;
  2398.     }
  2399.     if (de->parent)
  2400.     {
  2401. read_lock (&de->parent->u.dir.lock);
  2402. if (de->prev != de) de->inode.dentry = dentry; /*      Not unhooked  */
  2403. read_unlock (&de->parent->u.dir.lock);
  2404.     }
  2405.     else de->inode.dentry = dentry;             /*  Root: no locking needed  */
  2406.     if (de->inode.dentry != dentry)
  2407.     {   /*  Must have been unhooked  */
  2408. iput (inode);
  2409. return NULL;
  2410.     }
  2411.     inode->u.generic_ip = devfs_get (de);
  2412.     inode->i_ino = de->inode.ino;
  2413.     DPRINTK (DEBUG_I_GET, "(%d): VFS inode: %p  devfs_entry: %pn",
  2414.      (int) inode->i_ino, inode, de);
  2415.     inode->i_blocks = 0;
  2416.     inode->i_blksize = FAKE_BLOCK_SIZE;
  2417.     inode->i_op = &devfs_iops;
  2418.     inode->i_fop = &devfs_fops;
  2419.     inode->i_rdev = NODEV;
  2420.     if ( S_ISCHR (de->mode) )
  2421.     {
  2422. inode->i_rdev = mk_kdev (de->u.fcb.u.device.major,
  2423.  de->u.fcb.u.device.minor);
  2424. inode->i_cdev = cdget ( kdev_t_to_nr (inode->i_rdev) );
  2425. is_fcb = TRUE;
  2426.     }
  2427.     else if ( S_ISBLK (de->mode) )
  2428.     {
  2429. inode->i_rdev = mk_kdev (de->u.fcb.u.device.major,
  2430.  de->u.fcb.u.device.minor);
  2431. if (bd_acquire (inode) == 0)
  2432. {
  2433.     if (!inode->i_bdev->bd_op && de->u.fcb.ops)
  2434. inode->i_bdev->bd_op = de->u.fcb.ops;
  2435. }
  2436. else PRINTK ("(%d): no block device from bdget()n",(int)inode->i_ino);
  2437. is_fcb = TRUE;
  2438.     }
  2439.     else if ( S_ISFIFO (de->mode) ) inode->i_fop = &def_fifo_fops;
  2440.     else if ( S_ISREG (de->mode) )
  2441.     {
  2442. inode->i_size = de->u.fcb.u.file.size;
  2443. is_fcb = TRUE;
  2444.     }
  2445.     else if ( S_ISDIR (de->mode) )
  2446.     {
  2447. inode->i_op = &devfs_dir_iops;
  2448.      inode->i_fop = &devfs_dir_fops;
  2449.     }
  2450.     else if ( S_ISLNK (de->mode) )
  2451.     {
  2452. inode->i_op = &devfs_symlink_iops;
  2453. inode->i_size = de->u.symlink.length;
  2454.     }
  2455.     if (is_fcb && de->u.fcb.auto_owner)
  2456. inode->i_mode = (de->mode & S_IFMT) | S_IRUGO | S_IWUGO;
  2457.     else inode->i_mode = de->mode;
  2458.     inode->i_uid = de->inode.uid;
  2459.     inode->i_gid = de->inode.gid;
  2460.     inode->i_atime = de->inode.atime;
  2461.     inode->i_mtime = de->inode.mtime;
  2462.     inode->i_ctime = de->inode.ctime;
  2463.     DPRINTK (DEBUG_I_GET, "():   mode: 0%o  uid: %d  gid: %dn",
  2464.      (int) inode->i_mode, (int) inode->i_uid, (int) inode->i_gid);
  2465.     return inode;
  2466. }   /*  End Function _devfs_get_vfs_inode  */
  2467. /*  File operations for device entries follow  */
  2468. static int devfs_readdir (struct file *file, void *dirent, filldir_t filldir)
  2469. {
  2470.     int err, count;
  2471.     int stored = 0;
  2472.     struct fs_info *fs_info;
  2473.     struct devfs_entry *parent, *de, *next = NULL;
  2474.     struct inode *inode = file->f_dentry->d_inode;
  2475.     fs_info = inode->i_sb->u.generic_sbp;
  2476.     parent = get_devfs_entry_from_vfs_inode (file->f_dentry->d_inode);
  2477.     if ( (long) file->f_pos < 0 ) return -EINVAL;
  2478.     DPRINTK (DEBUG_F_READDIR, "(%s): fs_info: %p  pos: %ldn",
  2479.      parent->name, fs_info, (long) file->f_pos);
  2480.     switch ( (long) file->f_pos )
  2481.     {
  2482.       case 0:
  2483. scan_dir_for_removable (parent);
  2484. err = (*filldir) (dirent, "..", 2, file->f_pos,
  2485.   file->f_dentry->d_parent->d_inode->i_ino, DT_DIR);
  2486. if (err == -EINVAL) break;
  2487. if (err < 0) return err;
  2488. file->f_pos++;
  2489. ++stored;
  2490. /*  Fall through  */
  2491.       case 1:
  2492. err = (*filldir) (dirent, ".", 1, file->f_pos, inode->i_ino, DT_DIR);
  2493. if (err == -EINVAL) break;
  2494. if (err < 0) return err;
  2495. file->f_pos++;
  2496. ++stored;
  2497. /*  Fall through  */
  2498.       default:
  2499. /*  Skip entries  */
  2500. count = file->f_pos - 2;
  2501. read_lock (&parent->u.dir.lock);
  2502. for (de = parent->u.dir.first; de && (count > 0); de = de->next)
  2503.     if ( !IS_HIDDEN (de) ) --count;
  2504. devfs_get (de);
  2505. read_unlock (&parent->u.dir.lock);
  2506. /*  Now add all remaining entries  */
  2507. while (de)
  2508. {
  2509.     if ( IS_HIDDEN (de) ) err = 0;
  2510.     else
  2511.     {
  2512. err = (*filldir) (dirent, de->name, de->namelen,
  2513.   file->f_pos, de->inode.ino, de->mode >> 12);
  2514. if (err < 0) devfs_put (de);
  2515. else
  2516. {
  2517.     file->f_pos++;
  2518.     ++stored;
  2519. }
  2520.     }
  2521.     if (err == -EINVAL) break;
  2522.     if (err < 0) return err;
  2523.     read_lock (&parent->u.dir.lock);
  2524.     next = devfs_get (de->next);
  2525.     read_unlock (&parent->u.dir.lock);
  2526.     devfs_put (de);
  2527.     de = next;
  2528. }
  2529. break;
  2530.     }
  2531.     return stored;
  2532. }   /*  End Function devfs_readdir  */
  2533. static int devfs_open (struct inode *inode, struct file *file)
  2534. {
  2535.     int err;
  2536.     struct fcb_type *df;
  2537.     struct devfs_entry *de;
  2538.     struct fs_info *fs_info = inode->i_sb->u.generic_sbp;
  2539.     void *ops;
  2540.     de = get_devfs_entry_from_vfs_inode (inode);
  2541.     if (de == NULL) return -ENODEV;
  2542.     if ( S_ISDIR (de->mode) ) return 0;
  2543.     df = &de->u.fcb;
  2544.     file->private_data = de->info;
  2545.     ops = devfs_get_ops (de);  /*  Now have module refcount  */
  2546.     if ( S_ISBLK (inode->i_mode) )
  2547.     {
  2548. file->f_op = &def_blk_fops;
  2549. if (ops) inode->i_bdev->bd_op = ops;
  2550. err = def_blk_fops.open (inode, file); /* This bumps module refcount */
  2551. devfs_put_ops (de);                    /* So drop my refcount        */
  2552.     }
  2553.     else
  2554.     {
  2555. file->f_op = ops;
  2556. if (file->f_op)
  2557. {
  2558.     lock_kernel ();
  2559.     err = file->f_op->open ? (*file->f_op->open) (inode, file) : 0;
  2560.     unlock_kernel ();
  2561. }
  2562. else
  2563. {   /*  Fallback to legacy scheme (I don't have a module refcount)  */
  2564.     if ( S_ISCHR (inode->i_mode) ) err = chrdev_open (inode, file);
  2565.     else err = -ENODEV;
  2566. }
  2567.     }
  2568.     if (err < 0) return err;
  2569.     /*  Open was successful  */
  2570.     if (df->open) return 0;
  2571.     df->open = TRUE;  /*  This is the first open  */
  2572.     if (df->auto_owner)
  2573.     {
  2574. /*  Change the ownership/protection to what driver specified  */
  2575. inode->i_mode = de->mode;
  2576. inode->i_uid = current->euid;
  2577. inode->i_gid = current->egid;
  2578.     }
  2579.     if ( df->aopen_notify && !is_devfsd_or_child (fs_info) )
  2580. devfsd_notify_de (de, DEVFSD_NOTIFY_ASYNC_OPEN, inode->i_mode,
  2581.   current->euid, current->egid, fs_info, 0);
  2582.     return 0;
  2583. }   /*  End Function devfs_open  */
  2584. static struct file_operations devfs_fops =
  2585. {
  2586.     .open    = devfs_open,
  2587. };
  2588. static struct file_operations devfs_dir_fops =
  2589. {
  2590.     .read    = generic_read_dir,
  2591.     .readdir = devfs_readdir,
  2592.     .open    = devfs_open,
  2593. };
  2594. /*  Dentry operations for device entries follow  */
  2595. /**
  2596.  * devfs_d_release - Callback for when a dentry is freed.
  2597.  * @dentry: The dentry.
  2598.  */
  2599. static void devfs_d_release (struct dentry *dentry)
  2600. {
  2601.     DPRINTK (DEBUG_D_RELEASE, "(%p): inode: %pn", dentry, dentry->d_inode);
  2602. }   /*  End Function devfs_d_release  */
  2603. /**
  2604.  * devfs_d_iput - Callback for when a dentry loses its inode.
  2605.  * @dentry: The dentry.
  2606.  * @inode: The inode.
  2607.  */
  2608. static void devfs_d_iput (struct dentry *dentry, struct inode *inode)
  2609. {
  2610.     struct devfs_entry *de;
  2611.     de = get_devfs_entry_from_vfs_inode (inode);
  2612.     DPRINTK (DEBUG_D_IPUT,"(%s): dentry: %p inode: %p de: %p de->dentry: %pn",
  2613.      de->name, dentry, inode, de, de->inode.dentry);
  2614.     if ( de->inode.dentry && (de->inode.dentry != dentry) )
  2615. OOPS ("(%s): de: %p dentry: %p de->dentry: %pn",
  2616.       de->name, de, dentry, de->inode.dentry);
  2617.     de->inode.dentry = NULL;
  2618.     iput (inode);
  2619.     devfs_put (de);
  2620. }   /*  End Function devfs_d_iput  */
  2621. static int devfs_d_delete (struct dentry *dentry);
  2622. static struct dentry_operations devfs_dops =
  2623. {
  2624.     .d_delete     = devfs_d_delete,
  2625.     .d_release    = devfs_d_release,
  2626.     .d_iput       = devfs_d_iput,
  2627. };
  2628. static int devfs_d_revalidate_wait (struct dentry *dentry, int flags);
  2629. static struct dentry_operations devfs_wait_dops =
  2630. {
  2631.     .d_delete     = devfs_d_delete,
  2632.     .d_release    = devfs_d_release,
  2633.     .d_iput       = devfs_d_iput,
  2634.     .d_revalidate = devfs_d_revalidate_wait,
  2635. };
  2636. /**
  2637.  * devfs_d_delete - Callback for when all files for a dentry are closed.
  2638.  * @dentry: The dentry.
  2639.  */
  2640. static int devfs_d_delete (struct dentry *dentry)
  2641. {
  2642.     struct inode *inode = dentry->d_inode;
  2643.     struct devfs_entry *de;
  2644.     struct fs_info *fs_info;
  2645.     if (dentry->d_op == &devfs_wait_dops) dentry->d_op = &devfs_dops;
  2646.     /*  Unhash dentry if negative (has no inode)  */
  2647.     if (inode == NULL)
  2648.     {
  2649. DPRINTK (DEBUG_D_DELETE, "(%p): dropping negative dentryn", dentry);
  2650. return 1;
  2651.     }
  2652.     fs_info = inode->i_sb->u.generic_sbp;
  2653.     de = get_devfs_entry_from_vfs_inode (inode);
  2654.     DPRINTK (DEBUG_D_DELETE, "(%p): inode: %p  devfs_entry: %pn",
  2655.      dentry, inode, de);
  2656.     if (de == NULL) return 0;
  2657.     if ( !S_ISCHR (de->mode) && !S_ISBLK (de->mode) && !S_ISREG (de->mode) )
  2658. return 0;
  2659.     if (!de->u.fcb.open) return 0;
  2660.     de->u.fcb.open = FALSE;
  2661.     if (de->u.fcb.aopen_notify)
  2662. devfsd_notify_de (de, DEVFSD_NOTIFY_CLOSE, inode->i_mode,
  2663.   current->euid, current->egid, fs_info, 1);
  2664.     if (!de->u.fcb.auto_owner) return 0;
  2665.     /*  Change the ownership/protection back  */
  2666.     inode->i_mode = (de->mode & S_IFMT) | S_IRUGO | S_IWUGO;
  2667.     inode->i_uid = de->inode.uid;
  2668.     inode->i_gid = de->inode.gid;
  2669.     return 0;
  2670. }   /*  End Function devfs_d_delete  */
  2671. struct devfs_lookup_struct
  2672. {
  2673.     devfs_handle_t de;
  2674.     wait_queue_head_t wait_queue;
  2675. };
  2676. static int devfs_d_revalidate_wait (struct dentry *dentry, int flags)
  2677. {
  2678.     struct inode *dir = dentry->d_parent->d_inode;
  2679.     struct fs_info *fs_info = dir->i_sb->u.generic_sbp;
  2680.     devfs_handle_t parent = get_devfs_entry_from_vfs_inode (dir);
  2681.     struct devfs_lookup_struct *lookup_info = dentry->d_fsdata;
  2682.     DECLARE_WAITQUEUE (wait, current);
  2683.     if ( is_devfsd_or_child (fs_info) )
  2684.     {
  2685. devfs_handle_t de = lookup_info->de;
  2686. struct inode *inode;
  2687. DPRINTK (DEBUG_I_LOOKUP,
  2688.  "(%s): dentry: %p inode: %p de: %p by: "%s"n",
  2689.  dentry->d_name.name, dentry, dentry->d_inode, de,
  2690.  current->comm);
  2691. if (dentry->d_inode) return 1;
  2692. if (de == NULL)
  2693. {
  2694.     read_lock (&parent->u.dir.lock);
  2695.     de = _devfs_search_dir (parent, dentry->d_name.name,
  2696.     dentry->d_name.len);
  2697.     read_unlock (&parent->u.dir.lock);
  2698.     if (de == NULL) return 1;
  2699.     lookup_info->de = de;
  2700. }
  2701. /*  Create an inode, now that the driver information is available  */
  2702. inode = _devfs_get_vfs_inode (dir->i_sb, de, dentry);
  2703. if (!inode) return 1;
  2704. DPRINTK (DEBUG_I_LOOKUP,
  2705.  "(%s): new VFS inode(%u): %p de: %p by: "%s"n",
  2706.  de->name, de->inode.ino, inode, de, current->comm);
  2707. d_instantiate (dentry, inode);
  2708. return 1;
  2709.     }
  2710.     if (lookup_info == NULL) return 1;  /*  Early termination  */
  2711.     read_lock (&parent->u.dir.lock);
  2712.     if (dentry->d_fsdata)
  2713.     {
  2714. set_current_state (TASK_UNINTERRUPTIBLE);
  2715. add_wait_queue (&lookup_info->wait_queue, &wait);
  2716. read_unlock (&parent->u.dir.lock);
  2717. schedule ();
  2718.     }
  2719.     else read_unlock (&parent->u.dir.lock);
  2720.     return 1;
  2721. }   /*  End Function devfs_d_revalidate_wait  */
  2722. /*  Inode operations for device entries follow  */
  2723. static struct dentry *devfs_lookup (struct inode *dir, struct dentry *dentry)
  2724. {
  2725.     struct devfs_entry tmp;  /*  Must stay in scope until devfsd idle again  */
  2726.     struct devfs_lookup_struct lookup_info;
  2727.     struct fs_info *fs_info = dir->i_sb->u.generic_sbp;
  2728.     struct devfs_entry *parent, *de;
  2729.     struct inode *inode;
  2730.     struct dentry *retval = NULL;
  2731.     /*  Set up the dentry operations before anything else, to ensure cleaning
  2732. up on any error  */
  2733.     dentry->d_op = &devfs_dops;
  2734.     /*  First try to get the devfs entry for this directory  */
  2735.     parent = get_devfs_entry_from_vfs_inode (dir);
  2736.     DPRINTK (DEBUG_I_LOOKUP, "(%s): dentry: %p parent: %p by: "%s"n",
  2737.      dentry->d_name.name, dentry, parent, current->comm);
  2738.     if (parent == NULL) return ERR_PTR (-ENOENT);
  2739.     read_lock (&parent->u.dir.lock);
  2740.     de = _devfs_search_dir (parent, dentry->d_name.name, dentry->d_name.len);
  2741.     if (de) read_unlock (&parent->u.dir.lock);
  2742.     else
  2743.     {   /*  Try re-reading the partition (media may have changed)  */
  2744. if ( get_removable_partition (parent, dentry->d_name.name,
  2745.       dentry->d_name.len) )  /*  Unlocks  */
  2746. {   /*  Media did change  */
  2747.     read_lock (&parent->u.dir.lock);
  2748.     de = _devfs_search_dir (parent, dentry->d_name.name,
  2749.     dentry->d_name.len);
  2750.     read_unlock (&parent->u.dir.lock);
  2751. }
  2752.     }
  2753.     lookup_info.de = de;
  2754.     init_waitqueue_head (&lookup_info.wait_queue);
  2755.     dentry->d_fsdata = &lookup_info;
  2756.     if (de == NULL)
  2757.     {   /*  Try with devfsd. For any kind of failure, leave a negative dentry
  2758.     so someone else can deal with it (in the case where the sysadmin
  2759.     does a mknod()). It's important to do this before hashing the
  2760.     dentry, so that the devfsd queue is filled before revalidates
  2761.     can start  */
  2762. if (try_modload (parent, fs_info,
  2763.  dentry->d_name.name, dentry->d_name.len, &tmp) < 0)
  2764. {   /*  Lookup event was not queued to devfsd  */
  2765.     d_add (dentry, NULL);
  2766.     return NULL;
  2767. }
  2768.     }
  2769.     dentry->d_op = &devfs_wait_dops;
  2770.     d_add (dentry, NULL);  /*  Open the floodgates  */
  2771.     /*  Unlock directory semaphore, which will release any waiters. They
  2772. will get the hashed dentry, and may be forced to wait for
  2773. revalidation  */
  2774.     up (&dir->i_sem);
  2775.     wait_for_devfsd_finished (fs_info);  /*  If I'm not devfsd, must wait  */
  2776.     down (&dir->i_sem);      /*  Grab it again because them's the rules  */
  2777.     de = lookup_info.de;
  2778.     /*  If someone else has been so kind as to make the inode, we go home
  2779. early  */
  2780.     if (dentry->d_inode) goto out;
  2781.     if (de == NULL)
  2782.     {
  2783. read_lock (&parent->u.dir.lock);
  2784. de = _devfs_search_dir (parent, dentry->d_name.name,
  2785. dentry->d_name.len);
  2786. read_unlock (&parent->u.dir.lock);
  2787. if (de == NULL) goto out;
  2788. /*  OK, there's an entry now, but no VFS inode yet  */
  2789.     }
  2790.     /*  Create an inode, now that the driver information is available  */
  2791.     inode = _devfs_get_vfs_inode (dir->i_sb, de, dentry);
  2792.     if (!inode)
  2793.     {
  2794. retval = ERR_PTR (-ENOMEM);
  2795. goto out;
  2796.     }
  2797.     DPRINTK (DEBUG_I_LOOKUP, "(%s): new VFS inode(%u): %p de: %p by: "%s"n",
  2798.      de->name, de->inode.ino, inode, de, current->comm);
  2799.     d_instantiate (dentry, inode);
  2800. out:
  2801.     dentry->d_op = &devfs_dops;
  2802.     dentry->d_fsdata = NULL;
  2803.     write_lock (&parent->u.dir.lock);
  2804.     wake_up (&lookup_info.wait_queue);
  2805.     write_unlock (&parent->u.dir.lock);
  2806.     devfs_put (de);
  2807.     return retval;
  2808. }   /*  End Function devfs_lookup  */
  2809. static int devfs_unlink (struct inode *dir, struct dentry *dentry)
  2810. {
  2811.     int unhooked;
  2812.     struct devfs_entry *de;
  2813.     struct inode *inode = dentry->d_inode;
  2814.     struct fs_info *fs_info = dir->i_sb->u.generic_sbp;
  2815.     de = get_devfs_entry_from_vfs_inode (inode);
  2816.     DPRINTK (DEBUG_I_UNLINK, "(%s): de: %pn", dentry->d_name.name, de);
  2817.     if (de == NULL) return -ENOENT;
  2818.     if (!de->vfs_deletable) return -EPERM;
  2819.     write_lock (&de->parent->u.dir.lock);
  2820.     unhooked = _devfs_unhook (de);
  2821.     write_unlock (&de->parent->u.dir.lock);
  2822.     if (!unhooked) return -ENOENT;
  2823.     if ( !is_devfsd_or_child (fs_info) )
  2824. devfsd_notify_de (de, DEVFSD_NOTIFY_DELETE, inode->i_mode,
  2825.   inode->i_uid, inode->i_gid, fs_info, 0);
  2826.     free_dentry (de);
  2827.     devfs_put (de);
  2828.     return 0;
  2829. }   /*  End Function devfs_unlink  */
  2830. static int devfs_symlink (struct inode *dir, struct dentry *dentry,
  2831.   const char *symname)
  2832. {
  2833.     int err;
  2834.     struct fs_info *fs_info = dir->i_sb->u.generic_sbp;
  2835.     struct devfs_entry *parent, *de;
  2836.     struct inode *inode;
  2837.     /*  First try to get the devfs entry for this directory  */
  2838.     parent = get_devfs_entry_from_vfs_inode (dir);
  2839.     if (parent == NULL) return -ENOENT;
  2840.     err = devfs_do_symlink (parent, dentry->d_name.name, DEVFS_FL_NONE,
  2841.     symname, &de, NULL);
  2842.     DPRINTK (DEBUG_DISABLED, "(%s): errcode from <devfs_do_symlink>: %dn",
  2843.      dentry->d_name.name, err);
  2844.     if (err < 0) return err;
  2845.     de->vfs_deletable = TRUE;
  2846.     de->inode.uid = current->euid;
  2847.     de->inode.gid = current->egid;
  2848.     de->inode.atime = CURRENT_TIME;
  2849.     de->inode.mtime = CURRENT_TIME;
  2850.     de->inode.ctime = CURRENT_TIME;
  2851.     if ( ( inode = _devfs_get_vfs_inode (dir->i_sb, de, dentry) ) == NULL )
  2852. return -ENOMEM;
  2853.     DPRINTK (DEBUG_DISABLED, "(%s): new VFS inode(%u): %p  dentry: %pn",
  2854.      dentry->d_name.name, de->inode.ino, inode, dentry);
  2855.     d_instantiate (dentry, inode);
  2856.     if ( !is_devfsd_or_child (fs_info) )
  2857. devfsd_notify_de (de, DEVFSD_NOTIFY_CREATE, inode->i_mode,
  2858.   inode->i_uid, inode->i_gid, fs_info, 0);
  2859.     return 0;
  2860. }   /*  End Function devfs_symlink  */
  2861. static int devfs_mkdir (struct inode *dir, struct dentry *dentry, int mode)
  2862. {
  2863.     int err;
  2864.     struct fs_info *fs_info = dir->i_sb->u.generic_sbp;
  2865.     struct devfs_entry *parent, *de;
  2866.     struct inode *inode;
  2867.     mode = (mode & ~S_IFMT) | S_IFDIR;  /*  VFS doesn't pass S_IFMT part  */
  2868.     parent = get_devfs_entry_from_vfs_inode (dir);
  2869.     if (parent == NULL) return -ENOENT;
  2870.     de = _devfs_alloc_entry (dentry->d_name.name, dentry->d_name.len, mode);
  2871.     if (!de) return -ENOMEM;
  2872.     de->vfs_deletable = TRUE;
  2873.     if ( ( err = _devfs_append_entry (parent, de, FALSE, NULL) ) != 0 )
  2874. return err;
  2875.     de->inode.uid = current->euid;
  2876.     de->inode.gid = current->egid;
  2877.     de->inode.atime = CURRENT_TIME;
  2878.     de->inode.mtime = CURRENT_TIME;
  2879.     de->inode.ctime = CURRENT_TIME;
  2880.     if ( ( inode = _devfs_get_vfs_inode (dir->i_sb, de, dentry) ) == NULL )
  2881. return -ENOMEM;
  2882.     DPRINTK (DEBUG_DISABLED, "(%s): new VFS inode(%u): %p  dentry: %pn",
  2883.      dentry->d_name.name, de->inode.ino, inode, dentry);
  2884.     d_instantiate (dentry, inode);
  2885.     if ( !is_devfsd_or_child (fs_info) )
  2886. devfsd_notify_de (de, DEVFSD_NOTIFY_CREATE, inode->i_mode,
  2887.   inode->i_uid, inode->i_gid, fs_info, 0);
  2888.     return 0;
  2889. }   /*  End Function devfs_mkdir  */
  2890. static int devfs_rmdir (struct inode *dir, struct dentry *dentry)
  2891. {
  2892.     int err = 0;
  2893.     struct devfs_entry *de;
  2894.     struct fs_info *fs_info = dir->i_sb->u.generic_sbp;
  2895.     struct inode *inode = dentry->d_inode;
  2896.     if (dir->i_sb->u.generic_sbp != inode->i_sb->u.generic_sbp) return -EINVAL;
  2897.     de = get_devfs_entry_from_vfs_inode (inode);
  2898.     if (de == NULL) return -ENOENT;
  2899.     if ( !S_ISDIR (de->mode) ) return -ENOTDIR;
  2900.     if (!de->vfs_deletable) return -EPERM;
  2901.     /*  First ensure the directory is empty and will stay that way  */
  2902.     write_lock (&de->u.dir.lock);
  2903.     if (de->u.dir.first) err = -ENOTEMPTY;
  2904.     else de->u.dir.no_more_additions = TRUE;
  2905.     write_unlock (&de->u.dir.lock);
  2906.     if (err) return err;
  2907.     /*  Now unhook the directory from it's parent  */
  2908.     write_lock (&de->parent->u.dir.lock);
  2909.     if ( !_devfs_unhook (de) ) err = -ENOENT;
  2910.     write_unlock (&de->parent->u.dir.lock);
  2911.     if (err) return err;
  2912.     if ( !is_devfsd_or_child (fs_info) )
  2913. devfsd_notify_de (de, DEVFSD_NOTIFY_DELETE, inode->i_mode,
  2914.   inode->i_uid, inode->i_gid, fs_info, 0);
  2915.     free_dentry (de);
  2916.     devfs_put (de);
  2917.     return 0;
  2918. }   /*  End Function devfs_rmdir  */
  2919. static int devfs_mknod (struct inode *dir, struct dentry *dentry, int mode,
  2920. int rdev)
  2921. {
  2922.     int err;
  2923.     struct fs_info *fs_info = dir->i_sb->u.generic_sbp;
  2924.     struct devfs_entry *parent, *de;
  2925.     struct inode *inode;
  2926.     DPRINTK (DEBUG_I_MKNOD, "(%s): mode: 0%o  dev: %dn",
  2927.      dentry->d_name.name, mode, rdev);
  2928.     parent = get_devfs_entry_from_vfs_inode (dir);
  2929.     if (parent == NULL) return -ENOENT;
  2930.     de = _devfs_alloc_entry (dentry->d_name.name, dentry->d_name.len, mode);
  2931.     if (!de) return -ENOMEM;
  2932.     de->vfs_deletable = TRUE;
  2933.     if ( S_ISBLK (mode) || S_ISCHR (mode) )
  2934.     {
  2935. de->u.fcb.u.device.major = MAJOR (rdev);
  2936. de->u.fcb.u.device.minor = MINOR (rdev);
  2937.     }
  2938.     if ( ( err = _devfs_append_entry (parent, de, FALSE, NULL) ) != 0 )
  2939. return err;
  2940.     de->inode.uid = current->euid;
  2941.     de->inode.gid = current->egid;
  2942.     de->inode.atime = CURRENT_TIME;
  2943.     de->inode.mtime = CURRENT_TIME;
  2944.     de->inode.ctime = CURRENT_TIME;
  2945.     if ( ( inode = _devfs_get_vfs_inode (dir->i_sb, de, dentry) ) == NULL )
  2946. return -ENOMEM;
  2947.     DPRINTK (DEBUG_I_MKNOD, ":   new VFS inode(%u): %p  dentry: %pn",
  2948.      de->inode.ino, inode, dentry);
  2949.     d_instantiate (dentry, inode);
  2950.     if ( !is_devfsd_or_child (fs_info) )
  2951. devfsd_notify_de (de, DEVFSD_NOTIFY_CREATE, inode->i_mode,
  2952.   inode->i_uid, inode->i_gid, fs_info, 0);
  2953.     return 0;
  2954. }   /*  End Function devfs_mknod  */
  2955. static int devfs_readlink (struct dentry *dentry, char *buffer, int buflen)
  2956. {
  2957.     int err;
  2958.     struct devfs_entry *de;
  2959.     de = get_devfs_entry_from_vfs_inode (dentry->d_inode);
  2960.     if (!de) return -ENODEV;
  2961.     err = vfs_readlink (dentry, buffer, buflen, de->u.symlink.linkname);
  2962.     return err;
  2963. }   /*  End Function devfs_readlink  */
  2964. static int devfs_follow_link (struct dentry *dentry, struct nameidata *nd)
  2965. {
  2966.     int err;
  2967.     struct devfs_entry *de;
  2968.     de = get_devfs_entry_from_vfs_inode (dentry->d_inode);
  2969.     if (!de) return -ENODEV;
  2970.     err = vfs_follow_link (nd, de->u.symlink.linkname);
  2971.     return err;
  2972. }   /*  End Function devfs_follow_link  */
  2973. static struct inode_operations devfs_iops =
  2974. {
  2975.     .setattr        = devfs_notify_change,
  2976. };
  2977. static struct inode_operations devfs_dir_iops =
  2978. {
  2979.     .lookup         = devfs_lookup,
  2980.     .unlink         = devfs_unlink,
  2981.     .symlink        = devfs_symlink,
  2982.     .mkdir          = devfs_mkdir,
  2983.     .rmdir          = devfs_rmdir,
  2984.     .mknod          = devfs_mknod,
  2985.     .setattr        = devfs_notify_change,
  2986. };
  2987. static struct inode_operations devfs_symlink_iops =
  2988. {
  2989.     .readlink       = devfs_readlink,
  2990.     .follow_link    = devfs_follow_link,
  2991.     .setattr        = devfs_notify_change,
  2992. };
  2993. static struct super_block *devfs_read_super (struct super_block *sb,
  2994.      void *data, int silent)
  2995. {
  2996.     struct inode *root_inode = NULL;
  2997.     if (_devfs_get_root_entry () == NULL) goto out_no_root;
  2998.     atomic_set (&fs_info.devfsd_overrun_count, 0);
  2999.     init_waitqueue_head (&fs_info.devfsd_wait_queue);
  3000.     init_waitqueue_head (&fs_info.revalidate_wait_queue);
  3001.     fs_info.sb = sb;
  3002.     sb->u.generic_sbp = &fs_info;
  3003.     sb->s_blocksize = 1024;
  3004.     sb->s_blocksize_bits = 10;
  3005.     sb->s_magic = DEVFS_SUPER_MAGIC;
  3006.     sb->s_op = &devfs_sops;
  3007.     if ( ( root_inode = _devfs_get_vfs_inode (sb, root_entry, NULL) ) == NULL )
  3008. goto out_no_root;
  3009.     sb->s_root = d_alloc_root (root_inode);
  3010.     if (!sb->s_root) goto out_no_root;
  3011.     DPRINTK (DEBUG_S_READ, "(): made devfs ptr: %pn", sb->u.generic_sbp);
  3012.     return sb;
  3013. out_no_root:
  3014.     PRINTK ("(): get root inode failedn");
  3015.     if (root_inode) iput (root_inode);
  3016.     return NULL;
  3017. }   /*  End Function devfs_read_super  */
  3018. static DECLARE_FSTYPE (devfs_fs_type, DEVFS_NAME, devfs_read_super, FS_SINGLE);
  3019. /*  File operations for devfsd follow  */
  3020. static ssize_t devfsd_read (struct file *file, char *buf, size_t len,
  3021.     loff_t *ppos)
  3022. {
  3023.     int done = FALSE;
  3024.     int ival;
  3025.     loff_t pos, devname_offset, tlen, rpos;
  3026.     devfs_handle_t de;
  3027.     struct devfsd_buf_entry *entry;
  3028.     struct fs_info *fs_info = file->f_dentry->d_inode->i_sb->u.generic_sbp;
  3029.     struct devfsd_notify_struct *info = fs_info->devfsd_info;
  3030.     DECLARE_WAITQUEUE (wait, current);
  3031.     /*  Can't seek (pread) on this device  */
  3032.     if (ppos != &file->f_pos) return -ESPIPE;
  3033.     /*  Verify the task has grabbed the queue  */
  3034.     if (fs_info->devfsd_task != current) return -EPERM;
  3035.     info->major = 0;
  3036.     info->minor = 0;
  3037.     /*  Block for a new entry  */
  3038.     set_current_state (TASK_INTERRUPTIBLE);
  3039.     add_wait_queue (&fs_info->devfsd_wait_queue, &wait);
  3040.     while ( devfsd_queue_empty (fs_info) )
  3041.     {
  3042. fs_info->devfsd_sleeping = TRUE;
  3043. wake_up (&fs_info->revalidate_wait_queue);
  3044. schedule ();
  3045. fs_info->devfsd_sleeping = FALSE;
  3046. if ( signal_pending (current) )
  3047. {
  3048.     remove_wait_queue (&fs_info->devfsd_wait_queue, &wait);
  3049.     __set_current_state (TASK_RUNNING);
  3050.     return -EINTR;
  3051. }
  3052. set_current_state (TASK_INTERRUPTIBLE);
  3053.     }
  3054.     remove_wait_queue (&fs_info->devfsd_wait_queue, &wait);
  3055.     __set_current_state (TASK_RUNNING);
  3056.     /*  Now play with the data  */
  3057.     ival = atomic_read (&fs_info->devfsd_overrun_count);
  3058.     info->overrun_count = ival;
  3059.     entry = fs_info->devfsd_first_event;
  3060.     info->type = entry->type;
  3061.     info->mode = entry->mode;
  3062.     info->uid = entry->uid;
  3063.     info->gid = entry->gid;
  3064.     de = entry->de;
  3065.     if ( S_ISCHR (de->mode) || S_ISBLK (de->mode) )
  3066.     {
  3067. info->major = de->u.fcb.u.device.major;
  3068. info->minor = de->u.fcb.u.device.minor;
  3069.     }
  3070.     pos = devfs_generate_path (de, info->devname, DEVFS_PATHLEN);
  3071.     if (pos < 0) return pos;
  3072.     info->namelen = DEVFS_PATHLEN - pos - 1;
  3073.     if (info->mode == 0) info->mode = de->mode;
  3074.     devname_offset = info->devname - (char *) info;
  3075.     rpos = *ppos;
  3076.     if (rpos < devname_offset)
  3077.     {
  3078. /*  Copy parts of the header  */
  3079. tlen = devname_offset - rpos;
  3080. if (tlen > len) tlen = len;
  3081. if ( copy_to_user (buf, (char *) info + rpos, tlen) )
  3082. {
  3083.     return -EFAULT;
  3084. }
  3085. rpos += tlen;
  3086. buf += tlen;
  3087. len -= tlen;
  3088.     }
  3089.     if ( (rpos >= devname_offset) && (len > 0) )
  3090.     {
  3091. /*  Copy the name  */
  3092. tlen = info->namelen + 1;
  3093. if (tlen > len) tlen = len;
  3094. else done = TRUE;
  3095. if ( copy_to_user (buf, info->devname + pos + rpos - devname_offset,
  3096.    tlen) )
  3097. {
  3098.     return -EFAULT;
  3099. }
  3100. rpos += tlen;
  3101.     }
  3102.     tlen = rpos - *ppos;
  3103.     if (done)
  3104.     {
  3105. devfs_handle_t parent;
  3106. spin_lock (&fs_info->devfsd_buffer_lock);
  3107. fs_info->devfsd_first_event = entry->next;
  3108. if (entry->next == NULL) fs_info->devfsd_last_event = NULL;
  3109. spin_unlock (&fs_info->devfsd_buffer_lock);
  3110. for (; de != NULL; de = parent)
  3111. {
  3112.     parent = de->parent;
  3113.     devfs_put (de);
  3114. }
  3115. kmem_cache_free (devfsd_buf_cache, entry);
  3116. if (ival > 0) atomic_sub (ival, &fs_info->devfsd_overrun_count);
  3117. *ppos = 0;
  3118.     }
  3119.     else *ppos = rpos;
  3120.     return tlen;
  3121. }   /*  End Function devfsd_read  */
  3122. static int devfsd_ioctl (struct inode *inode, struct file *file,
  3123.  unsigned int cmd, unsigned long arg)
  3124. {
  3125.     int ival;
  3126.     struct fs_info *fs_info = inode->i_sb->u.generic_sbp;
  3127.     switch (cmd)
  3128.     {
  3129.       case DEVFSDIOC_GET_PROTO_REV:
  3130. ival = DEVFSD_PROTOCOL_REVISION_KERNEL;
  3131. if ( copy_to_user ( (void *)arg, &ival, sizeof ival ) ) return -EFAULT;
  3132. break;
  3133.       case DEVFSDIOC_SET_EVENT_MASK:
  3134. /*  Ensure only one reader has access to the queue. This scheme will
  3135.     work even if the global kernel lock were to be removed, because it
  3136.     doesn't matter who gets in first, as long as only one gets it  */
  3137. if (fs_info->devfsd_task == NULL)
  3138. {
  3139.     static spinlock_t lock = SPIN_LOCK_UNLOCKED;
  3140.     if ( !spin_trylock (&lock) ) return -EBUSY;
  3141.     if (fs_info->devfsd_task != NULL)
  3142.     {   /*  We lost the race...  */
  3143. spin_unlock (&lock);
  3144. return -EBUSY;
  3145.     }
  3146.     fs_info->devfsd_task = current;
  3147.     spin_unlock (&lock);
  3148.     fs_info->devfsd_pgrp = (current->pgrp == current->pid) ?
  3149. current->pgrp : 0;
  3150.     fs_info->devfsd_file = file;
  3151.     fs_info->devfsd_info = kmalloc (sizeof *fs_info->devfsd_info,
  3152.     GFP_KERNEL);
  3153.     if (!fs_info->devfsd_info)
  3154.     {
  3155. devfsd_close (inode, file);
  3156. return -ENOMEM;
  3157.     }
  3158. }
  3159. else if (fs_info->devfsd_task != current) return -EBUSY;
  3160. fs_info->devfsd_event_mask = arg;  /*  Let the masses come forth  */
  3161. break;
  3162.       case DEVFSDIOC_RELEASE_EVENT_QUEUE:
  3163. if (fs_info->devfsd_file != file) return -EPERM;
  3164. return devfsd_close (inode, file);
  3165. /*break;*/
  3166. #ifdef CONFIG_DEVFS_DEBUG
  3167.       case DEVFSDIOC_SET_DEBUG_MASK:
  3168. if ( copy_from_user (&ival, (void *) arg, sizeof ival) )return -EFAULT;
  3169. devfs_debug = ival;
  3170. break;
  3171. #endif
  3172.       default:
  3173. return -ENOIOCTLCMD;
  3174.     }
  3175.     return 0;
  3176. }   /*  End Function devfsd_ioctl  */
  3177. static int devfsd_close (struct inode *inode, struct file *file)
  3178. {
  3179.     struct devfsd_buf_entry *entry, *next;
  3180.     struct fs_info *fs_info = inode->i_sb->u.generic_sbp;
  3181.     if (fs_info->devfsd_file != file) return 0;
  3182.     fs_info->devfsd_event_mask = 0;
  3183.     fs_info->devfsd_file = NULL;
  3184.     spin_lock (&fs_info->devfsd_buffer_lock);
  3185.     entry = fs_info->devfsd_first_event;
  3186.     fs_info->devfsd_first_event = NULL;
  3187.     fs_info->devfsd_last_event = NULL;
  3188.     if (fs_info->devfsd_info)
  3189.     {
  3190. kfree (fs_info->devfsd_info);
  3191. fs_info->devfsd_info = NULL;
  3192.     }
  3193.     spin_unlock (&fs_info->devfsd_buffer_lock);
  3194.     fs_info->devfsd_pgrp = 0;
  3195.     fs_info->devfsd_task = NULL;
  3196.     wake_up (&fs_info->revalidate_wait_queue);
  3197.     for (; entry; entry = next)
  3198.     {
  3199. next = entry->next;
  3200. kmem_cache_free (devfsd_buf_cache, entry);
  3201.     }
  3202.     return 0;
  3203. }   /*  End Function devfsd_close  */
  3204. #ifdef CONFIG_DEVFS_DEBUG
  3205. static ssize_t stat_read (struct file *file, char *buf, size_t len,
  3206.   loff_t *ppos)
  3207. {
  3208.     ssize_t num;
  3209.     char txt[80];
  3210.     num = sprintf (txt, "Number of entries: %u  number of bytes: %un",
  3211.    stat_num_entries, stat_num_bytes) + 1;
  3212.     /*  Can't seek (pread) on this device  */
  3213.     if (ppos != &file->f_pos) return -ESPIPE;
  3214.     if (*ppos >= num) return 0;
  3215.     if (*ppos + len > num) len = num - *ppos;
  3216.     if ( copy_to_user (buf, txt + *ppos, len) ) return -EFAULT;
  3217.     *ppos += len;
  3218.     return len;
  3219. }   /*  End Function stat_read  */
  3220. #endif
  3221. static int __init init_devfs_fs (void)
  3222. {
  3223.     int err;
  3224.     printk (KERN_INFO "%s: v%s Richard Gooch (rgooch@atnf.csiro.au)n",
  3225.     DEVFS_NAME, DEVFS_VERSION);
  3226.     devfsd_buf_cache = kmem_cache_create ("devfsd_event",
  3227.   sizeof (struct devfsd_buf_entry),
  3228.   0, 0, NULL, NULL);
  3229.     if (!devfsd_buf_cache) OOPS ("(): unable to allocate event slabn");
  3230. #ifdef CONFIG_DEVFS_DEBUG
  3231.     devfs_debug = devfs_debug_init;
  3232.     printk (KERN_INFO "%s: devfs_debug: 0x%0xn", DEVFS_NAME, devfs_debug);
  3233. #endif
  3234.     printk (KERN_INFO "%s: boot_options: 0x%0xn", DEVFS_NAME, boot_options);
  3235.     err = register_filesystem (&devfs_fs_type);
  3236.     if (!err)
  3237.     {
  3238. struct vfsmount *devfs_mnt = kern_mount (&devfs_fs_type);
  3239. err = PTR_ERR (devfs_mnt);
  3240. if ( !IS_ERR (devfs_mnt) ) err = 0;
  3241.     }
  3242.     return err;
  3243. }   /*  End Function init_devfs_fs  */
  3244. void __init mount_devfs_fs (void)
  3245. {
  3246.     int err;
  3247.     if ( !(boot_options & OPTION_MOUNT) ) return;
  3248.     err = do_mount ("none", "/dev", "devfs", 0, "");
  3249.     if (err == 0) printk (KERN_INFO "Mounted devfs on /devn");
  3250.     else PRINTK ("(): unable to mount devfs, err: %dn", err);
  3251. }   /*  End Function mount_devfs_fs  */
  3252. module_init(init_devfs_fs)