chiark / gitweb /
remove redundant string copy in udev_rules_apply_format()
[elogind.git] / udev / udevadm.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3   "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5 <article>
6   <section>
7     <title>udevadm</title>
8     <refentry>
9       <refentryinfo>
10         <title>udevd</title>
11         <date>November 2007</date>
12         <productname>udev</productname>
13       </refentryinfo>
14
15       <refmeta>
16         <refentrytitle>udevadm</refentrytitle>
17         <manvolnum>8</manvolnum>
18         <refmiscinfo class="version"></refmiscinfo>
19       </refmeta>
20
21       <refnamediv>
22         <refname>udevadm</refname><refpurpose>udev management tool</refpurpose>
23       </refnamediv>
24
25       <refsynopsisdiv>
26         <cmdsynopsis>
27           <command>udevadm</command>
28             <arg><option>--debug</option></arg>
29             <arg><option>--version</option></arg>
30             <arg><option>--help</option></arg>
31         </cmdsynopsis>
32         <cmdsynopsis>
33           <command>udevadm info <replaceable>options</replaceable></command>
34         </cmdsynopsis>
35         <cmdsynopsis>
36           <command>udevadm trigger <optional>options</optional></command>
37         </cmdsynopsis>
38         <cmdsynopsis>
39           <command>udevadm settle <optional>options</optional></command>
40         </cmdsynopsis>
41         <cmdsynopsis>
42           <command>udevadm control <replaceable>command</replaceable></command>
43         </cmdsynopsis>
44         <cmdsynopsis>
45           <command>udevadm monitor <optional>options</optional></command>
46         </cmdsynopsis>
47         <cmdsynopsis>
48           <command>udevadm test <optional>options</optional> <replaceable>devpath</replaceable></command>
49         </cmdsynopsis>
50       </refsynopsisdiv>
51
52       <refsect1><title>DESCRIPTION</title>
53         <para>udevadm expects a command and command specific options.  It
54         controls the runtime behavior of udev, requests kernel events,
55         manages the event queue, and provides simple debugging mechanisms.</para>
56       </refsect1>
57
58       <refsect1><title>OPTIONS</title>
59         <variablelist>
60           <varlistentry>
61             <term><option>--debug</option></term>
62             <listitem>
63               <para>Print debug messages to stderr.</para>
64             </listitem>
65           </varlistentry>
66           <varlistentry>
67             <term><option>--version</option></term>
68             <listitem>
69               <para>Print version number.</para>
70             </listitem>
71           </varlistentry>
72           <varlistentry>
73             <term><option>--help</option></term>
74             <listitem>
75               <para>Print help text.</para>
76             </listitem>
77           </varlistentry>
78         </variablelist>
79
80         <refsect2><title>udevadm info <replaceable>options</replaceable></title>
81           <para>Queries the udev database for device information
82           stored in the udev database. It can also query the properties
83           of a device from its sysfs representation to help creating udev
84           rules that match this device.</para>
85           <variablelist>
86             <varlistentry>
87               <term><option>--query=<replaceable>type</replaceable></option></term>
88               <listitem>
89                 <para>Query the database for specified type of device data. It needs the
90                 <option>--path</option> or <option>--name</option> to identify the specified
91                 device. Valid queries are:
92                 <command>name</command>, <command>symlink</command>, <command>path</command>,
93                 <command>env</command>, <command>all</command>.</para>
94               </listitem>
95             </varlistentry>
96             <varlistentry>
97               <term><option>--path=<replaceable>devpath</replaceable></option></term>
98               <listitem>
99                 <para>The devpath of the device to query.</para>
100               </listitem>
101             </varlistentry>
102             <varlistentry>
103               <term><option>--name=<replaceable>file</replaceable></option></term>
104               <listitem>
105                 <para>The name of the device node or a symlink to query</para>
106               </listitem>
107             </varlistentry>
108             <varlistentry>
109               <term><option>--root</option></term>
110               <listitem>
111                 <para>The udev root directory: <filename>/dev</filename>. If used in conjunction
112                 with a <command>name</command> or <command>symlink</command> query, the
113                 query returns the absolute path including the root directory.</para>
114               </listitem>
115             </varlistentry>
116             <varlistentry>
117               <term><option>--attribute-walk</option></term>
118               <listitem>
119                 <para>Print all sysfs properties of the specified device that can be used
120                 in udev rules to match the specified device. It prints all devices
121                 along the chain, up to the root of sysfs that can be used in udev rules.</para>
122               </listitem>
123             </varlistentry>
124             <varlistentry>
125               <term><option>--device-id-of-file=<replaceable>file</replaceable></option></term>
126               <listitem>
127                 <para>Print major/minor numbers of the underlying device, where the file
128                 lives on.</para>
129               </listitem>
130             </varlistentry>
131             <varlistentry>
132               <term><option>--export-db</option></term>
133               <listitem>
134                 <para>Export the content of the udev database.</para>
135               </listitem>
136             </varlistentry>
137             <varlistentry>
138               <term><option>--version</option></term>
139               <listitem>
140                 <para>Print version.</para>
141               </listitem>
142             </varlistentry>
143             <varlistentry>
144               <term><option>--help</option></term>
145               <listitem>
146                 <para>Print help text.</para>
147               </listitem>
148             </varlistentry>
149           </variablelist>
150         </refsect2>
151
152         <refsect2><title>udevadm trigger <optional>options</optional></title>
153           <para>Request device uevents, usually used to replay events at system coldplug.</para>
154           <variablelist>
155             <varlistentry>
156               <term><option>--verbose</option></term>
157               <listitem>
158                 <para>Print the list of devices which will be triggered.</para>
159               </listitem>
160             </varlistentry>
161             <varlistentry>
162               <term><option>--dry-run</option></term>
163               <listitem>
164                 <para>Do not actually trigger the event.</para>
165               </listitem>
166             </varlistentry>
167             <varlistentry>
168               <term><option>--retry-failed</option></term>
169               <listitem>
170                 <para>Trigger only the events which are failed during a previous run.</para>
171               </listitem>
172             </varlistentry>
173             <varlistentry>
174               <term><option>--action=<replaceable>action</replaceable></option></term>
175               <listitem>
176                 <para>Type of event to be triggered. The default value is "add".</para>
177               </listitem>
178             </varlistentry>
179             <varlistentry>
180               <term><option>--subsystem-match=<replaceable>subsystem</replaceable></option></term>
181               <listitem>
182                 <para>Trigger events for devices which belong to a matching subsystem. This option
183                 can be specified multiple times and supports shell style pattern matching.</para>
184               </listitem>
185             </varlistentry>
186             <varlistentry>
187               <term><option>--subsystem-nomatch=<replaceable>subsystem</replaceable></option></term>
188               <listitem>
189                 <para>Do not trigger events for devices which belong to a matching subsystem. This option
190                 can be specified multiple times and supports shell style pattern matching.</para>
191               </listitem>
192             </varlistentry>
193             <varlistentry>
194               <term><option>--attr-match=<replaceable>attribute</replaceable>=<replaceable>value</replaceable></option></term>
195               <listitem>
196                 <para>Trigger events for devices with a matching sysfs attribute. If a value is specified
197                 along with the attribute name, the content of the attribute is matched against the given
198                 value using shell style pattern matching. If no value is specified, the existence of the
199                 sysfs attribute is checked. This option can be specified multiple times.</para>
200               </listitem>
201             </varlistentry>
202             <varlistentry>
203               <term><option>--attr-nomatch=<replaceable>attribute</replaceable>=<replaceable>value</replaceable></option></term>
204               <listitem>
205                 <para>Do not trigger events for devices with a matching sysfs attribute. If a value is
206                 specified along with the attribute name, the content of the attribute is matched against
207                 the given value using shell style pattern matching. If no value is specified, the existence
208                 of the sysfs attribute is checked. This option can be specified multiple times.</para>
209               </listitem>
210             </varlistentry>
211             <varlistentry>
212               <term><option>--socket=<replaceable>path</replaceable></option></term>
213               <listitem>
214                 <para>Pass the synthesized events to the specified socket, instead of triggering
215                 a global kernel event. All available event values will be send in the same format
216                 the kernel sends an uevent, or <option>RUN+="socket:<replaceable>path</replaceable>"</option>
217                 sends a message. If the first character of the specified path is an @ character,
218                 an abstract namespace socket is used, instead of an existing socket file.</para>
219               </listitem>
220             </varlistentry>
221             <varlistentry>
222               <term><option>--env=<replaceable>KEY</replaceable>=<replaceable>value</replaceable></option></term>
223               <listitem>
224                 <para>Pass an additional environemt key to the event. This works only with the
225                 --socket option.</para>
226               </listitem>
227             </varlistentry>
228           </variablelist>
229         </refsect2>
230
231         <refsect2><title>udevadm settle <optional>options</optional></title>
232           <para>Watches the udev event queue, and exits if all current events are handled.</para>
233           <variablelist>
234             <varlistentry>
235               <term><option>--timeout=<replaceable>seconds</replaceable></option></term>
236               <listitem>
237                 <para>Maximum number of seconds to wait for the event queue to become empty.
238                 The default value is 180 seconds.</para>
239               </listitem>
240             </varlistentry>
241             <varlistentry>
242               <term><option>--help</option></term>
243               <listitem>
244                 <para>Print help text.</para>
245               </listitem>
246             </varlistentry>
247           </variablelist>
248         </refsect2>
249
250         <refsect2><title>udevadm control <replaceable>command</replaceable></title>
251           <para>Modify the internal state of the running udev daemon.</para>
252           <variablelist>
253             <varlistentry>
254               <term><option>--log-priority=<replaceable>value</replaceable></option></term>
255               <listitem>
256                 <para>Set the internal log level of udevd. Valid values are the numerical
257                 syslog priorities or their textual representations: <option>err</option>,
258                 <option>info</option> and <option>debug</option>.</para>
259               </listitem>
260             </varlistentry>
261             <varlistentry>
262               <term><option>--stop-exec-queue</option></term>
263               <listitem>
264                 <para>Signal udevd to stop executing new events. Incoming events
265                 will be queued.</para>
266               </listitem>
267             </varlistentry>
268             <varlistentry>
269               <term><option>--start-exec-queue</option></term>
270               <listitem>
271                 <para>Signal udevd to enable the execution of events.</para>
272               </listitem>
273             </varlistentry>
274             <varlistentry>
275               <term><option>--reload-rules</option></term>
276               <listitem>
277                 <para>Signal udevd to reload the rules from the config.</para>
278               </listitem>
279             </varlistentry>
280             <varlistentry>
281               <term><option>--env=<replaceable>KEY</replaceable>=<replaceable>value</replaceable></option></term>
282               <listitem>
283                 <para>Set global variable.</para>
284               </listitem>
285             </varlistentry>
286             <varlistentry>
287               <term><option>--max-childs=</option><replaceable>value</replaceable></term>
288               <listitem>
289                 <para>Set the maximum number of events, udevd will handle at the
290                 same time.</para>
291               </listitem>
292             </varlistentry>
293             <varlistentry>
294               <term><option>--max-childs-running=<replaceable>value</replaceable></option></term>
295               <listitem>
296                 <para>Set the maximum number of events, which are allowed to run at the
297                 same time.</para>
298               </listitem>
299             </varlistentry>
300             <varlistentry>
301               <term><option>--help</option></term>
302               <listitem>
303                 <para>Print help text.</para>
304               </listitem>
305             </varlistentry>
306           </variablelist>
307         </refsect2>
308
309         <refsect2><title>udevadm monitor <optional>options</optional></title>
310           <para>Listens to the kernel uevents and events sent out by a udev rule
311           and prints the devpath of the event to the console. It can be used to analyze the
312           event timing, by comparing the timestamps of the kernel uevent and the udev event.
313           </para>
314           <variablelist>
315             <varlistentry>
316               <term><option>--environment</option></term>
317               <listitem>
318                 <para>Print the complete environment for all events. Can be used to compare the
319                 kernel supplied and the udev added environment values.</para>
320               </listitem>
321             </varlistentry>
322             <varlistentry>
323               <term><option>--kernel</option></term>
324               <listitem>
325                 <para>Print the kernel uevents.</para>
326               </listitem>
327             </varlistentry>
328             <varlistentry>
329               <term><option>--udev</option></term>
330               <listitem>
331                 <para>Print the udev event after the rule processing.</para>
332               </listitem>
333             </varlistentry>
334             <varlistentry>
335               <term><option>--help</option></term>
336               <listitem>
337                 <para>Print help text.</para>
338               </listitem>
339             </varlistentry>
340           </variablelist>
341         </refsect2>
342
343         <refsect2><title>udevadm test <optional>options</optional> <replaceable>devpath</replaceable></title>
344           <para>Simulate a udev event run for the given device, and print out debug
345           output. Unless forced to, no device node or symlink will be created.</para>
346           <variablelist>
347             <varlistentry>
348               <term><option>--action=<replaceable>string</replaceable></option></term>
349               <listitem>
350                 <para>The action string.</para>
351               </listitem>
352             </varlistentry>
353             <varlistentry>
354               <term><option>--subsystem=<replaceable>string</replaceable></option></term>
355               <listitem>
356                 <para>The subsystem string.</para>
357               </listitem>
358             </varlistentry>
359             <varlistentry>
360               <term><option>--force</option></term>
361               <listitem>
362                 <para>Force the creation of a device node or symlink. Usually the test run
363                 prints only debug output.</para>
364               </listitem>
365             </varlistentry>
366             <varlistentry>
367               <term><option>--help</option></term>
368               <listitem>
369                 <para>Print help text.</para>
370               </listitem>
371             </varlistentry>
372           </variablelist>
373         </refsect2>
374       </refsect1>
375
376       <refsect1><title>AUTHOR</title>
377         <para>Written by Kay Sievers <email>kay.sievers@vrfy.org</email>.</para>
378       </refsect1>
379
380       <refsect1>
381         <title>SEE ALSO</title>
382         <para><citerefentry>
383             <refentrytitle>udev</refentrytitle><manvolnum>7</manvolnum>
384         </citerefentry>
385         <citerefentry>
386             <refentrytitle>udevd</refentrytitle><manvolnum>8</manvolnum>
387         </citerefentry></para>
388       </refsect1>
389     </refentry>
390   </section>
391 </article>