procfs-guide.tmpl
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:19k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. <!-- -*- sgml -*- -->
  2. <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V3.1//EN"[
  3. <!ENTITY procfsexample SYSTEM "procfs_example.sgml">
  4. ]>
  5. <book id="LKProcfsGuide">
  6.   <bookinfo>
  7.     <title>Linux Kernel Procfs Guide</title>
  8.     <authorgroup>
  9.       <author>
  10. <firstname>Erik</firstname>
  11. <othername>(J.A.K.)</othername>
  12. <surname>Mouw</surname>
  13. <affiliation>
  14.   <orgname>Delft University of Technology</orgname>
  15.   <orgdiv>Faculty of Information Technology and Systems</orgdiv>
  16.   <address>
  17.             <email>J.A.K.Mouw@its.tudelft.nl</email>
  18.             <pob>PO BOX 5031</pob>
  19.             <postcode>2600 GA</postcode>
  20.             <city>Delft</city>
  21.             <country>The Netherlands</country>
  22.           </address>
  23. </affiliation>
  24.       </author>
  25.     </authorgroup>
  26.     <revhistory>
  27.       <revision>
  28. <revnumber>1.0&nbsp;</revnumber>
  29. <date>May 30, 2001</date>
  30. <revremark>Initial revision posted to linux-kernel</revremark>
  31.       </revision>
  32.       <revision>
  33. <revnumber>1.1&nbsp;</revnumber>
  34. <date>June 3, 2001</date>
  35. <revremark>Revised after comments from linux-kernel</revremark>
  36.       </revision>
  37.     </revhistory>
  38.     <copyright>
  39.       <year>2001</year>
  40.       <holder>Erik Mouw</holder>
  41.     </copyright>
  42.     <legalnotice>
  43.       <para>
  44.         This documentation is free software; you can redistribute it
  45.         and/or modify it under the terms of the GNU General Public
  46.         License as published by the Free Software Foundation; either
  47.         version 2 of the License, or (at your option) any later
  48.         version.
  49.       </para>
  50.       
  51.       <para>
  52.         This documentation is distributed in the hope that it will be
  53.         useful, but WITHOUT ANY WARRANTY; without even the implied
  54.         warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  55.         PURPOSE.  See the GNU General Public License for more details.
  56.       </para>
  57.       
  58.       <para>
  59.         You should have received a copy of the GNU General Public
  60.         License along with this program; if not, write to the Free
  61.         Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  62.         MA 02111-1307 USA
  63.       </para>
  64.       
  65.       <para>
  66.         For more details see the file COPYING in the source
  67.         distribution of Linux.
  68.       </para>
  69.     </legalnotice>
  70.   </bookinfo>
  71.   <toc>
  72.   </toc>
  73.   <preface>
  74.     <title>Preface</title>
  75.     <para>
  76.       This guide describes the use of the procfs file system from
  77.       within the Linux kernel. The idea to write this guide came up on
  78.       the #kernelnewbies IRC channel (see <ulink
  79.       url="http://www.kernelnewbies.org/">http://www.kernelnewbies.org/</ulink>),
  80.       when Jeff Garzik explained the use of procfs and forwarded me a
  81.       message Alexander Viro wrote to the linux-kernel mailing list. I
  82.       agreed to write it up nicely, so here it is.
  83.     </para>
  84.     <para>
  85.       I'd like to thank Jeff Garzik
  86.       <email>jgarzik@mandrakesoft.com</email> and Alexander Viro
  87.       <email>viro@math.psu.edu</email> for their input, Tim Waugh
  88.       <email>twaugh@redhat.com</email> for his <ulink
  89.       url="http://people.redhat.com/twaugh/docbook/selfdocbook/">Selfdocbook</ulink>,
  90.       and Marc Joosen <email>marcj@historia.et.tudelft.nl</email> for
  91.       proofreading.
  92.     </para>
  93.     <para>
  94.       This documentation was written while working on the LART
  95.       computing board (<ulink
  96.       url="http://www.lart.tudelft.nl/">http://www.lart.tudelft.nl/</ulink>),
  97.       which is sponsored by the Mobile Multi-media Communications
  98.       (<ulink
  99.       url="http://www.mmc.tudelft.nl/">http://www.mmc.tudelft.nl/</ulink>)
  100.       and Ubiquitous Communications (<ulink
  101.       url="http://www.ubicom.tudelft.nl/">http://www.ubicom.tudelft.nl/</ulink>)
  102.       projects.
  103.     </para>
  104.     <para>
  105.       Erik
  106.     </para>
  107.   </preface>
  108.   <chapter id="intro">
  109.     <title>Introduction</title>
  110.     <para>
  111.       The <filename class="directory">/proc</filename> file system
  112.       (procfs) is a special file system in the linux kernel. It's a
  113.       virtual file system: it is not associated with a block device
  114.       but exists only in memory. The files in the procfs are there to
  115.       allow userland programs access to certain information from the
  116.       kernel (like process information in <filename
  117.       class="directory">/proc/[0-9]+/</filename>), but also for debug
  118.       purposes (like <filename>/proc/ksyms</filename>).
  119.     </para>
  120.     <para>
  121.       This guide describes the use of the procfs file system from
  122.       within the Linux kernel. It starts by introducing all relevant
  123.       functions to manage the files within the file system. After that
  124.       it shows how to communicate with userland, and some tips and
  125.       tricks will be pointed out. Finally a complete example will be
  126.       shown.
  127.     </para>
  128.     <para>
  129.       Note that the files in <filename
  130.       class="directory">/proc/sys</filename> are sysctl files: they
  131.       don't belong to procfs and are governed by a completely
  132.       different API described in the Kernel API book.
  133.     </para>
  134.   </chapter>
  135.   <chapter id="managing">
  136.     <title>Managing procfs entries</title>
  137.     
  138.     <para>
  139.       This chapter describes the functions that various kernel
  140.       components use to populate the procfs with files, symlinks,
  141.       device nodes, and directories.
  142.     </para>
  143.     <para>
  144.       A minor note before we start: if you want to use any of the
  145.       procfs functions, be sure to include the correct header file! 
  146.       This should be one of the first lines in your code:
  147.     </para>
  148.     <programlisting>
  149. #include &lt;linux/proc_fs.h&gt;
  150.     </programlisting>
  151.     <sect1 id="regularfile">
  152.       <title>Creating a regular file</title>
  153.       
  154.       <funcsynopsis>
  155. <funcprototype>
  156.   <funcdef>struct proc_dir_entry* <function>create_proc_entry</function></funcdef>
  157.   <paramdef>const char* <parameter>name</parameter></paramdef>
  158.   <paramdef>mode_t <parameter>mode</parameter></paramdef>
  159.   <paramdef>struct proc_dir_entry* <parameter>parent</parameter></paramdef>
  160. </funcprototype>
  161.       </funcsynopsis>
  162.       <para>
  163.         This function creates a regular file with the name
  164.         <parameter>name</parameter>, file mode
  165.         <parameter>mode</parameter> in the directory
  166.         <parameter>parent</parameter>. To create a file in the root of
  167.         the procfs, use <constant>NULL</constant> as
  168.         <parameter>parent</parameter> parameter. When successful, the
  169.         function will return a pointer to the freshly created
  170.         <structname>struct proc_dir_entry</structname>; otherwise it
  171.         will return <constant>NULL</constant>. <xref
  172.         linkend="userland"> describes how to do something useful with
  173.         regular files.
  174.       </para>
  175.       <para>
  176.         Note that it is specifically supported that you can pass a
  177.         path that spans multiple directories. For example
  178.         <function>create_proc_entry</function>(<parameter>"drivers/via0/info"</parameter>)
  179.         will create the <filename class="directory">via0</filename>
  180.         directory if necessary, with standard
  181.         <constant>0755</constant> permissions.
  182.       </para>
  183.     <para>
  184.       If you only want to be able to read the file, the function
  185.       <function>create_proc_read_entry</function> described in <xref
  186.       linkend="convenience"> may be used to create and initialise
  187.       the procfs entry in one single call.
  188.     </para>
  189.     </sect1>
  190.     <sect1>
  191.       <title>Creating a symlink</title>
  192.       <funcsynopsis>
  193. <funcprototype>
  194.   <funcdef>struct proc_dir_entry*
  195.   <function>proc_symlink</function></funcdef> <paramdef>const
  196.   char* <parameter>name</parameter></paramdef>
  197.   <paramdef>struct proc_dir_entry*
  198.   <parameter>parent</parameter></paramdef> <paramdef>const
  199.   char* <parameter>dest</parameter></paramdef>
  200. </funcprototype>
  201.       </funcsynopsis>
  202.       
  203.       <para>
  204.         This creates a symlink in the procfs directory
  205.         <parameter>parent</parameter> that points from
  206.         <parameter>name</parameter> to
  207.         <parameter>dest</parameter>. This translates in userland to
  208.         <literal>ln -s</literal> <parameter>dest</parameter>
  209.         <parameter>name</parameter>.
  210.       </para>
  211.     </sect1>
  212.     <sect1>
  213.       <title>Creating a device</title>
  214.       <funcsynopsis>
  215. <funcprototype>
  216.   <funcdef>struct proc_dir_entry* <function>proc_mknod</function></funcdef>
  217.   <paramdef>const char* <parameter>name</parameter></paramdef>
  218.   <paramdef>mode_t <parameter>mode</parameter></paramdef>
  219.   <paramdef>struct proc_dir_entry* <parameter>parent</parameter></paramdef>
  220.   <paramdef>kdev_t <parameter>rdev</parameter></paramdef>
  221. </funcprototype>
  222.       </funcsynopsis>
  223.       
  224.       <para>
  225.         Creates a device file <parameter>name</parameter> with mode
  226.         <parameter>mode</parameter> in the procfs directory
  227.         <parameter>parent</parameter>. The device file will work on
  228.         the device <parameter>rdev</parameter>, which can be generated
  229.         by using the <literal>MKDEV</literal> macro from
  230.         <literal>linux/kdev_t.h</literal>. The
  231.         <parameter>mode</parameter> parameter
  232.         <emphasis>must</emphasis> contain <constant>S_IFBLK</constant>
  233.         or <constant>S_IFCHR</constant> to create a device
  234.         node. Compare with userland <literal>mknod
  235.         --mode=</literal><parameter>mode</parameter>
  236.         <parameter>name</parameter> <parameter>rdev</parameter>.
  237.       </para>
  238.     </sect1>
  239.     <sect1>
  240.       <title>Creating a directory</title>
  241.       
  242.       <funcsynopsis>
  243. <funcprototype>
  244.   <funcdef>struct proc_dir_entry* <function>proc_mkdir</function></funcdef>
  245.   <paramdef>const char* <parameter>name</parameter></paramdef>
  246.   <paramdef>struct proc_dir_entry* <parameter>parent</parameter></paramdef>
  247. </funcprototype>
  248.       </funcsynopsis>
  249.       <para>
  250.         Create a directory <parameter>name</parameter> in the procfs
  251.         directory <parameter>parent</parameter>.
  252.       </para>
  253.     </sect1>
  254.     <sect1>
  255.       <title>Removing an entry</title>
  256.       
  257.       <funcsynopsis>
  258. <funcprototype>
  259.   <funcdef>void <function>remove_proc_entry</function></funcdef>
  260.   <paramdef>const char* <parameter>name</parameter></paramdef>
  261.   <paramdef>struct proc_dir_entry* <parameter>parent</parameter></paramdef>
  262. </funcprototype>
  263.       </funcsynopsis>
  264.       <para>
  265.         Removes the entry <parameter>name</parameter> in the directory
  266.         <parameter>parent</parameter> from the procfs. Entries are
  267.         removed by their <emphasis>name</emphasis>, not by the
  268.         <structname>struct proc_dir_entry</structname> returned by the
  269.         various create functions. Note that this function doesn't
  270.         recursively remove entries.
  271.       </para>
  272.       <para>
  273.         Be sure to free the <structfield>data</structfield> entry from
  274.         the <structname>struct proc_dir_entry</structname> before
  275.         <function>remove_proc_entry</function> is called (that is: if
  276.         there was some <structfield>data</structfield> allocated, of
  277.         course). See <xref linkend="usingdata"> for more information
  278.         on using the <structfield>data</structfield> entry.
  279.       </para>
  280.     </sect1>
  281.   </chapter>
  282.   <chapter id="userland">
  283.     <title>Communicating with userland</title>
  284.     
  285.     <para>
  286.        Instead of reading (or writing) information directly from
  287.        kernel memory, procfs works with <emphasis>call back
  288.        functions</emphasis> for files: functions that are called when
  289.        a specific file is being read or written. Such functions have
  290.        to be initialised after the procfs file is created by setting
  291.        the <structfield>read_proc</structfield> and/or
  292.        <structfield>write_proc</structfield> fields in the
  293.        <structname>struct proc_dir_entry*</structname> that the
  294.        function <function>create_proc_entry</function> returned:
  295.     </para>
  296.     <programlisting>
  297. struct proc_dir_entry* entry;
  298. entry->read_proc = read_proc_foo;
  299. entry->write_proc = write_proc_foo;
  300.     </programlisting>
  301.     <para>
  302.       If you only want to use a the
  303.       <structfield>read_proc</structfield>, the function
  304.       <function>create_proc_read_entry</function> described in <xref
  305.       linkend="convenience"> may be used to create and initialise the
  306.       procfs entry in one single call.
  307.     </para>
  308.     <sect1>
  309.       <title>Reading data</title>
  310.       <para>
  311.         The read function is a call back function that allows userland
  312.         processes to read data from the kernel. The read function
  313.         should have the following format:
  314.       </para>
  315.       <funcsynopsis>
  316. <funcprototype>
  317.   <funcdef>int <function>read_func</function></funcdef>
  318.   <paramdef>char* <parameter>page</parameter></paramdef>
  319.   <paramdef>char** <parameter>start</parameter></paramdef>
  320.   <paramdef>off_t <parameter>off</parameter></paramdef>
  321.   <paramdef>int <parameter>count</parameter></paramdef>
  322.   <paramdef>int* <parameter>eof</parameter></paramdef>
  323.   <paramdef>void* <parameter>data</parameter></paramdef>
  324. </funcprototype>
  325.       </funcsynopsis>
  326.       <para>
  327.         The read function should write its information into the
  328.         <parameter>page</parameter>. For proper use, the function
  329.         should start writing at an offset of
  330.         <parameter>off</parameter> in <parameter>page</parameter> and
  331.         write at most <parameter>count</parameter> bytes, but because
  332.         most read functions are quite simple and only return a small
  333.         amount of information, these two parameters are usually
  334.         ignored (it breaks pagers like <literal>more</literal> and
  335.         <literal>less</literal>, but <literal>cat</literal> still
  336.         works).
  337.       </para>
  338.       <para>
  339.         If the <parameter>off</parameter> and
  340.         <parameter>count</parameter> parameters are properly used,
  341.         <parameter>eof</parameter> should be used to signal that the
  342.         end of the file has been reached by writing
  343.         <literal>1</literal> to the memory location
  344.         <parameter>eof</parameter> points to.
  345.       </para>
  346.       <para>
  347.         The parameter <parameter>start</parameter> doesn't seem to be
  348.         used anywhere in the kernel. The <parameter>data</parameter>
  349.         parameter can be used to create a single call back function for
  350.         several files, see <xref linkend="usingdata">.
  351.       </para>
  352.       <para>
  353.         The <function>read_func</function> function must return the
  354.         number of bytes written into the <parameter>page</parameter>.
  355.       </para>
  356.       <para>
  357.         <xref linkend="example"> shows how to use a read call back
  358.         function.
  359.       </para>
  360.     </sect1>
  361.     <sect1>
  362.       <title>Writing data</title>
  363.       <para>
  364.         The write call back function allows a userland process to write
  365.         data to the kernel, so it has some kind of control over the
  366.         kernel. The write function should have the following format:
  367.       </para>
  368.       <funcsynopsis>
  369. <funcprototype>
  370.   <funcdef>int <function>write_func</function></funcdef>
  371.   <paramdef>struct file* <parameter>file</parameter></paramdef>
  372.   <paramdef>const char* <parameter>buffer</parameter></paramdef>
  373.   <paramdef>unsigned long <parameter>count</parameter></paramdef>
  374.   <paramdef>void* <parameter>data</parameter></paramdef>
  375. </funcprototype>
  376.       </funcsynopsis>
  377.       <para>
  378.         The write function should read <parameter>count</parameter>
  379.         bytes at maximum from the <parameter>buffer</parameter>. Note
  380.         that the <parameter>buffer</parameter> doesn't live in the
  381.         kernel's memory space, so it should first be copied to kernel
  382.         space with <function>copy_from_user</function>. The
  383.         <parameter>file</parameter> parameter is usually
  384.         ignored. <xref linkend="usingdata"> shows how to use the
  385.         <parameter>data</parameter> parameter.
  386.       </para>
  387.       <para>
  388.         Again, <xref linkend="example"> shows how to use this call back
  389.         function.
  390.       </para>
  391.     </sect1>
  392.     <sect1 id="usingdata">
  393.       <title>A single call back for many files</title>
  394.       <para>
  395.          When a large number of almost identical files is used, it's
  396.          quite inconvenient to use a separate call back function for
  397.          each file. A better approach is to have a single call back
  398.          function that distinguishes between the files by using the
  399.          <structfield>data</structfield> field in <structname>struct
  400.          proc_dir_entry</structname>. First of all, the
  401.          <structfield>data</structfield> field has to be initialised:
  402.       </para>
  403.       <programlisting>
  404. struct proc_dir_entry* entry;
  405. struct my_file_data *file_data;
  406. file_data = kmalloc(sizeof(struct my_file_data), GFP_KERNEL);
  407. entry->data = file_data;
  408.       </programlisting>
  409.      
  410.       <para>
  411.           The <structfield>data</structfield> field is a <type>void
  412.           *</type>, so it can be initialised with anything.
  413.       </para>
  414.       <para>
  415.         Now that the <structfield>data</structfield> field is set, the
  416.         <function>read_proc</function> and
  417.         <function>write_proc</function> can use it to distinguish
  418.         between files because they get it passed into their
  419.         <parameter>data</parameter> parameter:
  420.       </para>
  421.       <programlisting>
  422. int foo_read_func(char *page, char **start, off_t off,
  423.                   int count, int *eof, void *data)
  424. {
  425.         int len;
  426.         if(data == file_data) {
  427.                 /* special case for this file */
  428.         } else {
  429.                 /* normal processing */
  430.         }
  431.         return len;
  432. }
  433.       </programlisting>
  434.       <para>
  435.         Be sure to free the <structfield>data</structfield> data field
  436.         when removing the procfs entry.
  437.       </para>
  438.     </sect1>
  439.   </chapter>
  440.   <chapter id="tips">
  441.     <title>Tips and tricks</title>
  442.     <sect1 id="convenience">
  443.       <title>Convenience functions</title>
  444.       <funcsynopsis>
  445. <funcprototype>
  446.   <funcdef>struct proc_dir_entry* <function>create_proc_read_entry</function></funcdef>
  447.   <paramdef>const char* <parameter>name</parameter></paramdef>
  448.   <paramdef>mode_t <parameter>mode</parameter></paramdef>
  449.   <paramdef>struct proc_dir_entry* <parameter>parent</parameter></paramdef>
  450.   <paramdef>read_proc_t* <parameter>read_proc</parameter></paramdef>
  451.   <paramdef>void* <parameter>data</parameter></paramdef>
  452. </funcprototype>
  453.       </funcsynopsis>
  454.       
  455.       <para>
  456.         This function creates a regular file in exactly the same way
  457.         as <function>create_proc_entry</function> from <xref
  458.         linkend="regularfile"> does, but also allows to set the read
  459.         function <parameter>read_proc</parameter> in one call. This
  460.         function can set the <parameter>data</parameter> as well, like
  461.         explained in <xref linkend="usingdata">.
  462.       </para>
  463.     </sect1>
  464.     <sect1>
  465.       <title>Modules</title>
  466.       <para>
  467.         If procfs is being used from within a module, be sure to set
  468.         the <structfield>owner</structfield> field in the
  469.         <structname>struct proc_dir_entry</structname> to
  470.         <constant>THIS_MODULE</constant>.
  471.       </para>
  472.       <programlisting>
  473. struct proc_dir_entry* entry;
  474. entry->owner = THIS_MODULE;
  475.       </programlisting>
  476.     </sect1>
  477.     <sect1>
  478.       <title>Mode and ownership</title>
  479.       <para>
  480.         Sometimes it is useful to change the mode and/or ownership of
  481.         a procfs entry. Here is an example that shows how to achieve
  482.         that:
  483.       </para>
  484.       <programlisting>
  485. struct proc_dir_entry* entry;
  486. entry->mode =  S_IWUSR |S_IRUSR | S_IRGRP | S_IROTH;
  487. entry->uid = 0;
  488. entry->gid = 100;
  489.       </programlisting>
  490.     </sect1>
  491.   </chapter>
  492.   <chapter id="example">
  493.     <title>Example</title>
  494.     <!-- be careful with the example code: it shouldn't be wider than
  495.     approx. 60 columns, or otherwise it won't fit properly on a page
  496.     -->
  497. &procfsexample;
  498.   </chapter>
  499. </book>