dbus.doxygen 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918
  1. /**
  2. \page dbus %wpa_supplicant D-Bus API
  3. This section documents the %wpa_supplicant D-Bus API. Every D-Bus
  4. interface implemented by %wpa_supplicant is described here including
  5. their methods, signals, and properties with arguments, returned
  6. values, and possible errors.
  7. Interfaces:
  8. - \ref dbus_main
  9. - \ref dbus_interface
  10. - \ref dbus_wps
  11. - \ref dbus_bss
  12. - \ref dbus_network
  13. \section dbus_main fi.w1.wpa_supplicant1
  14. Interface implemented by the main %wpa_supplicant D-Bus object
  15. registered in the bus with fi.w1.wpa_supplicant1 name.
  16. \subsection dbus_main_methods Methods
  17. <ul>
  18. <li>
  19. <h3>CreateInterface ( a{sv} : args ) --> o : interface</h3>
  20. <p>Registers a wireless interface in %wpa_supplicant.</p>
  21. <h4>Arguments</h4>
  22. <dl>
  23. <dt>a{sv} : args</dt>
  24. <dd>
  25. A dictionary with arguments used to add the interface to %wpa_supplicant. The dictionary may contain the following entries:
  26. <table>
  27. <tr><th>Key</th><th>Value type</th><th>Description</th><th>Required</th>
  28. <tr><td>Ifname</td><td>s</td><td>Name of the network interface to control, e.g., wlan0</td><td>Yes</td>
  29. <tr><td>BridgeIfname</td><td>s</td><td>Name of the bridge interface to control, e.g., br0</td><td>No</td>
  30. <tr><td>Driver</td><td>s</td><td>Driver name which the interface uses, e.g., nl80211</td><td>No</td>
  31. <tr><td>ConfigFile</td><td>s</td><td>Configuration file path</td><td>No</td>
  32. </table>
  33. </dd>
  34. </dl>
  35. <h4>Returns</h4>
  36. <dl>
  37. <dt>o : interface</dt>
  38. <dd>A D-Bus path to object representing created interface</dd>
  39. </dl>
  40. <h4>Possible errors</h4>
  41. <dl>
  42. <dt>fi.w1.wpa_supplicant1.InterfaceExists</dt>
  43. <dd>%wpa_supplicant already controls this interface.</dd>
  44. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  45. <dd>Creating interface failed for an unknown reason.</dd>
  46. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  47. <dd>Invalid entries were found in the passed argument.</dd>
  48. </dl>
  49. </li>
  50. <li>
  51. <h3>RemoveInterface ( o : interface ) --> nothing</h3>
  52. <p>Deregisters a wireless interface from %wpa_supplicant.</p>
  53. <h4>Arguments</h4>
  54. <dl>
  55. <dt>o : interface</dt>
  56. <dd>A D-Bus path to an object representing an interface to remove returned by CreateInterface</dd>
  57. </dl>
  58. <h4>Possible errors</h4>
  59. <dl>
  60. <dt>fi.w1.wpa_supplicant1.InterfaceUnknown</dt>
  61. <dd>Object pointed by the path doesn't exist or doesn't represent an interface.</dd>
  62. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  63. <dd>Removing interface failed for an unknown reason.</dd>
  64. </dl>
  65. </li>
  66. <li>
  67. <h3>GetInterface ( s : ifname ) --> o : interface</h3>
  68. <p>Returns a D-Bus path to an object related to an interface which %wpa_supplicant already controls.</p>
  69. <h4>Arguments</h4>
  70. <dl>
  71. <dt>s : ifname</dt>
  72. <dd>Name of the network interface, e.g., wlan0</dd>
  73. </dl>
  74. <h4>Returns</h4>
  75. <dl>
  76. <dt>o : interface</dt>
  77. <dd>A D-Bus path to an object representing an interface</dd>
  78. </dl>
  79. <h4>Possible errors</h4>
  80. <dl>
  81. <dt>fi.w1.wpa_supplicant1.InterfaceUnknown</dt>
  82. <dd>An interface with the passed name in not controlled by %wpa_supplicant.</dd>
  83. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  84. <dd>Getting an interface object path failed for an unknown reason.</dd>
  85. </dl>
  86. </li>
  87. </ul>
  88. \subsection dbus_main_properties Properties
  89. <ul>
  90. <li>
  91. <h3>DebugLevel - s - (read/write)</h3>
  92. <p>Global %wpa_supplicant debugging level. Possible values are
  93. "msgdump" (verbose debugging), "debug" (debugging),
  94. "info" (informative), "warning" (warnings), and "error" (errors).</p>
  95. </li>
  96. <li>
  97. <h3>DebugTimestamp - b - (read/write)</h3>
  98. <p>Global %wpa_supplicant debugging parameter. Determines if timestamps are shown in debug logs.</p>
  99. </li>
  100. <li>
  101. <h3>DebugShowKeys - b - (read/write)</h3>
  102. <p>Global %wpa_supplicant debugging parameter. Determines if secrets are shown in debug logs.</p>
  103. </li>
  104. <li>
  105. <h3>Interfaces - ao - (read)</h3>
  106. <p>An array with paths to D-Bus objects representing controlled interfaces each.</p>
  107. </li>
  108. <li>
  109. <h3>EapMethods - as - (read)</h3>
  110. <p>An array with supported EAP methods names.</p>
  111. </li>
  112. <li>
  113. <h3>Capabilities - as - (read)</h3>
  114. <p>An array with supported capabilities (e.g., "ap", "ibss-rsn", "p2p", "interworking").</p>
  115. </li>
  116. </ul>
  117. \subsection dbus_main_signals Signals
  118. <ul>
  119. <li>
  120. <h3>InterfaceAdded ( o : interface, a{sv} : properties )</h3>
  121. <p>A new interface was added to %wpa_supplicant.</p>
  122. <h4>Arguments</h4>
  123. <dl>
  124. <dt>o : interface</dt>
  125. <dd>A D-Bus path to an object representing the added interface</dd>
  126. </dl>
  127. <dl>
  128. <dt>a{sv} : properties</dt>
  129. <dd>A dictionary containing properties of added interface.</dd>
  130. </dl>
  131. </li>
  132. <li>
  133. <h3>InterfaceRemoved ( o : interface )</h3>
  134. <p>An interface was removed from %wpa_supplicant.</p>
  135. <h4>Arguments</h4>
  136. <dl>
  137. <dt>o : interface</dt>
  138. <dd>A D-Bus path to an object representing the removed interface</dd>
  139. </dl>
  140. </li>
  141. <li>
  142. <h3>PropertiesChanged ( a{sv} : properties )</h3>
  143. <p>Some properties have changed.</p>
  144. <h4>Arguments</h4>
  145. <dl>
  146. <dt>a{sv} : properties</dt>
  147. <dd>A dictionary with pairs of properties names which have changed and theirs new values. Possible dictionary keys are: "DebugParams"</dd>
  148. </dl>
  149. </li>
  150. </ul>
  151. \section dbus_interface fi.w1.wpa_supplicant1.Interface
  152. Interface implemented by objects related to network interface added to
  153. %wpa_supplicant, i.e., returned by
  154. fi.w1.wpa_supplicant1.CreateInterface.
  155. \subsection dbus_interface_methods Methods
  156. <ul>
  157. <li>
  158. <h3>Scan ( a{sv} : args ) --> nothing</h3>
  159. <p>Triggers a scan.</p>
  160. <h4>Arguments</h4>
  161. <dl>
  162. <dt>a{sv} : args</dt>
  163. <dd>
  164. A dictionary with arguments describing scan type:
  165. <table>
  166. <tr><th>Key</th><th>Value type</th><th>Description</th><th>Required</th>
  167. <tr><td>Type</td><td>s</td><td>Type of the scan. Possible values: "active", "passive"</td><td>Yes</td>
  168. <tr><td>SSIDs</td><td>aay</td><td>Array of SSIDs to scan for (applies only if scan type is active)</td><td>No</td>
  169. <tr><td>IEs</td><td>aay</td><td>Information elements to used in active scan (applies only if scan type is active)</td><td>No</td>
  170. <tr><td>Channels</td><td>a(uu)</td><td>Array of frequencies to scan in form of (center, width) in MHz.</td><td>No</td>
  171. <tr><td>AllowRoam</td><td>b</td><td>TRUE (or absent) to allow a roaming decision based on the results of this scan, FALSE to prevent a roaming decision.</td><td>No</td>
  172. </table>
  173. </dd>
  174. </dl>
  175. <h4>Possible errors</h4>
  176. <dl>
  177. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  178. <dd>Invalid entries were found in the passed argument.</dd>
  179. </dl>
  180. </li>
  181. <li>
  182. <h3>Disconnect ( ) --> nothing</h3>
  183. <p>Disassociates the interface from current network.</p>
  184. <h4>Possible errors</h4>
  185. <dl>
  186. <dt>fi.w1.wpa_supplicant1.NotConnected</dt>
  187. <dd>Interface is not connected to any network.</dd>
  188. </dl>
  189. </li>
  190. <li>
  191. <h3>AddNetwork ( a{sv} : args ) --> o : network</h3>
  192. <p>Adds a new network to the interface.</p>
  193. <h4>Arguments</h4>
  194. <dl>
  195. <dt>a{sv} : args</dt>
  196. <dd>A dictionary with network configuration. Dictionary entries are equivalent to entries in the "network" block in %wpa_supplicant configuration file. Entry values should be appropriate type to the entry, e.g., an entry with key "frequency" should have value type int.</dd>
  197. </dl>
  198. <h4>Returns</h4>
  199. <dl>
  200. <dt>o : network</dt>
  201. <dd>A D-Bus path to an object representing a configured network</dd>
  202. </dl>
  203. <h4>Possible errors</h4>
  204. <dl>
  205. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  206. <dd>Invalid entries were found in the passed argument.</dd>
  207. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  208. <dd>Adding network failed for an unknown reason.</dd>
  209. </dl>
  210. </li>
  211. <li>
  212. <h3>RemoveNetwork ( o : network ) --> nothing</h3>
  213. <p>Removes a configured network from the interface.</p>
  214. <h4>Arguments</h4>
  215. <dl>
  216. <dt>o : network</dt>
  217. <dd>A D-Bus path to an object representing a configured network returned by fi.w1.wpa_supplicant1.Interface.AddNetwork</dd>
  218. </dl>
  219. <h4>Possible errors</h4>
  220. <dl>
  221. <dt>fi.w1.wpa_supplicant1.NetworkUnknown</dt>
  222. <dd>A passed path doesn't point to any network object.</dd>
  223. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  224. <dd>A passed path doesn't point to any network object.</dd>
  225. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  226. <dd>Removing network failed for an unknown reason.</dd>
  227. </dl>
  228. </li>
  229. <li>
  230. <h3>SelectNetwork ( o : network ) --> nothing</h3>
  231. <p>Attempt association with a configured network.</p>
  232. <h4>Arguments</h4>
  233. <dl>
  234. <dt>o : network</dt>
  235. <dd>A D-Bus path to an object representing a configured network returned by fi.w1.wpa_supplicant1.Interface.AddNetwork</dd>
  236. </dl>
  237. <h4>Possible errors</h4>
  238. <dl>
  239. <dt>fi.w1.wpa_supplicant1.NetworkUnknown</dt>
  240. <dd>A passed path doesn't point to any network object.</dd>
  241. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  242. <dd>A passed path doesn't point to any network object.</dd>
  243. </dl>
  244. </li>
  245. <li>
  246. <h3>Reassociate ( ) --> nothing</h3>
  247. <p>Attempt reassociation.</p>
  248. <h4>Possible errors</h4>
  249. <dl>
  250. <dt>fi.w1.wpa_supplicant1.InterfaceDisabled</dt>
  251. <dd>The interface is disabled.</dd>
  252. </dl>
  253. </li>
  254. <li>
  255. <h3>AddBlob ( s : name, ay : data ) --> nothing</h3>
  256. <p>Adds a blob to the interface.</p>
  257. <h4>Arguments</h4>
  258. <dl>
  259. <dt>s : name</dt>
  260. <dd>A name of a blob</dd>
  261. <dt>ay : data</dt>
  262. <dd>A blob data</dd>
  263. </dl>
  264. <h4>Possible errors</h4>
  265. <dl>
  266. <dt>fi.w1.wpa_supplicant1.BlobExists</dt>
  267. <dd>A blob with the specified name already exists.</dd>
  268. </dl>
  269. </li>
  270. <li>
  271. <h3>RemoveBlob ( s : name ) --> nothing</h3>
  272. <p>Removes the blob from the interface.</p>
  273. <h4>Arguments</h4>
  274. <dl>
  275. <dt>s : name</dt>
  276. <dd>A name of the blob to remove</dd>
  277. </dl>
  278. <h4>Possible errors</h4>
  279. <dl>
  280. <dt>fi.w1.wpa_supplicant1.BlobUnknown</dt>
  281. <dd>A blob with the specified name doesn't exist.</dd>
  282. </dl>
  283. </li>
  284. <li>
  285. <h3>GetBlob ( s : name ) --> ay : data</h3>
  286. <p>Returns the blob data of a previously added blob.</p>
  287. <h4>Arguments</h4>
  288. <dl>
  289. <dt>s : name</dt>
  290. <dd>A name of the blob</dd>
  291. </dl>
  292. <h4>Returns</h4>
  293. <dl>
  294. <dt>ay : data</dt>
  295. <dd>A blob data</dd>
  296. </dl>
  297. <h4>Possible errors</h4>
  298. <dl>
  299. <dt>fi.w1.wpa_supplicant1.BlobUnknown</dt>
  300. <dd>A blob with the specified name doesn't exist.</dd>
  301. </dl>
  302. </li>
  303. <li>
  304. <h3>AutoScan ( s : arg ) --> nothing</h3>
  305. <p>Set autoscan parameters for the interface.</p>
  306. <h4>Arguments</h4>
  307. <dl>
  308. <dt>s : arg</dt>
  309. <dd>Autoscan parameter line or empty to unset autoscan.</dd>
  310. </dl>
  311. <h4>Possible errors</h4>
  312. <dl>
  313. <dt>fi.w1.wpa_supplicant1.NoMemory</dt>
  314. <dd>Needed memory was not possible to get allocated.</dd>
  315. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  316. <dd>Invalid entries were found in the passed argument.</dd>
  317. </dl>
  318. </li>
  319. <li>
  320. <h3>TDLSDiscover ( s : peer_address ) --> nothing</h3>
  321. <p>Initiate a TDLS discovery for a peer.</p>
  322. <h4>Arguments</h4>
  323. <dl>
  324. <dt>s : peer_address</dt>
  325. <dd>MAC address for the peer to perform TDLS discovery.</dd>
  326. </dl>
  327. <h4>Possible errors</h4>
  328. <dl>
  329. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  330. <dd>The "peer_address" argument is not a properly formatted MAC.</dd>
  331. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  332. <dd>Initiating the TDLS operation failed for an unknown reason.</dd>
  333. </dl>
  334. </li>
  335. <li>
  336. <h3>TDLSSetup ( s : peer_address ) --> nothing</h3>
  337. <p>Setup a TDLS session for a peer.</p>
  338. <h4>Arguments</h4>
  339. <dl>
  340. <dt>s : peer_address</dt>
  341. <dd>MAC address for the peer to perform TDLS setup.</dd>
  342. </dl>
  343. <h4>Possible errors</h4>
  344. <dl>
  345. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  346. <dd>The "peer_address" argument is not a properly formatted MAC.</dd>
  347. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  348. <dd>Initiating the TDLS operation failed for an unknown reason.</dd>
  349. </dl>
  350. </li>
  351. <li>
  352. <h3>TDLSStatus ( s : peer_address ) --> s</h3>
  353. <p>Return TDLS status with respect to a peer.</p>
  354. <h4>Arguments</h4>
  355. <dl>
  356. <dt>s : peer_address</dt>
  357. <dd>MAC address for the peer for which status is requested.</dd>
  358. </dl>
  359. <h4>Returns</h4>
  360. <dl>
  361. <dt>s : status</dt>
  362. <dd>Current status of the TDLS link with the selected peer.</dd>
  363. </dl>
  364. <h4>Possible errors</h4>
  365. <dl>
  366. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  367. <dd>The "peer_address" argument is not a properly formatted MAC.</dd>
  368. </dl>
  369. </li>
  370. <li>
  371. <h3>TDLSTeardown ( s : peer_address ) --> nothing</h3>
  372. <p>Tear down a TDLS session with a peer.</p>
  373. <h4>Arguments</h4>
  374. <dl>
  375. <dt>s : peer_address</dt>
  376. <dd>MAC address for the peer to tear down TDLS connectivity with.</dd>
  377. </dl>
  378. <h4>Possible errors</h4>
  379. <dl>
  380. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  381. <dd>The "peer_address" argument is not a properly formatted MAC.</dd>
  382. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  383. <dd>Initiating the TDLS operation failed for an unknown reason.</dd>
  384. </dl>
  385. </li>
  386. <li>
  387. <h3>EAPLogoff ( ) --> nothing</h3>
  388. <p>IEEE 802.1X EAPOL state machine logoff.</p>
  389. </li>
  390. <li>
  391. <h3>EAPLogon ( ) --> nothing</h3>
  392. <p>IEEE 802.1X EAPOL state machine logon.</p>
  393. </li>
  394. <li>
  395. <h3>SetPKCS11EngineAndModulePath ( s : pkcs11_engine_path, s : pkcs11_module_path ) --> nothing</h3>
  396. <p>Set PKCS #11 engine and module path.</p>
  397. <h4>Arguments</h4>
  398. <dl>
  399. <dt>s : pkcs11_engine_path</dt>
  400. <dd>PKCS #11 engine path.</dd>
  401. <dt>s : pkcs11_module_path</dt>
  402. <dd>PKCS #11 module path.</dd>
  403. </dl>
  404. <h4>Possible errors</h4>
  405. <dl>
  406. <dt>org.freedesktop.DBus.Error.Failed.InvalidArgs</dt>
  407. <dd>Invalid PKCS #11 engine or module path.</dd>
  408. <dt>org.freedesktop.DBus.Error.Failed</dt>
  409. <dd>Reinit of the EAPOL state machine with the new PKCS #11 engine and module path failed.</dd>
  410. </dl>
  411. </li>
  412. <li>
  413. <h3>SignalPoll ( ) --> a{sv} : properties</h3>
  414. <p>Fetch signal properties for the current connection.</p>
  415. <h4>Returns</h4>
  416. <dl>
  417. <dt>a{sv} : properties</dt>
  418. <dd>
  419. <table>
  420. <tr><th>Key</th><th>Value type</th><th>Description</th><th>Required</th>
  421. <tr><td>linkspeed</td><td>i</td><td>Link speed (Mbps)</td><td>No</td>
  422. <tr><td>noise</td><td>i</td><td>Noise (dBm)</td><td>No</td>
  423. <tr><td>width</td><td>s</td><td>Channel width</td><td>No</td>
  424. <tr><td>frequency</td><td>u</td><td>Frequency (MHz)</td><td>No</td>
  425. <tr><td>rssi</td><td>i</td><td>RSSI (dBm)</td><td>No</td>
  426. <tr><td>avg-rssi</td><td>i</td><td>Average RSSI (dBm)</td><td>No</td>
  427. <tr><td>center-frq1</td><td>i</td><td>VHT segment 1 frequency (MHz)</td><td>No</td>
  428. <tr><td>center-frq2</td><td>i</td><td>VHT segment 2 frequency (MHz)</td><td>No</td>
  429. </table>
  430. </dd>
  431. </dl>
  432. </li>
  433. </ul>
  434. \subsection dbus_interface_properties Properties
  435. <ul>
  436. <li>
  437. <h3>Capabilities - a{sv} - (read)</h3>
  438. <p>Capabilities of the interface. Dictionary contains following entries:</p>
  439. <table>
  440. <tr><th>Key</th><th>Value type</th><th>Description</th>
  441. <tr><td>Pairwise</td><td>as</td><td>Possible array elements: "ccmp", "tkip", "none"</td>
  442. <tr><td>Group</td><td>as</td><td>Possible array elements: "ccmp", "tkip", "wep104", "wep40"</td>
  443. <tr><td>KeyMgmt</td><td>as</td><td>Possible array elements: "wpa-psk", "wpa-ft-psk", "wpa-psk-sha256", "wpa-eap", "wpa-ft-eap", "wpa-eap-sha256", "ieee8021x", "wpa-none", "wps", "none"</td>
  444. <tr><td>Protocol</td><td>as</td><td>Possible array elements: "rsn", "wpa"</td>
  445. <tr><td>AuthAlg</td><td>as</td><td>Possible array elements: "open", "shared", "leap"</td>
  446. <tr><td>Scan</td><td>as</td><td>Possible array elements: "active", "passive", "ssid"</td>
  447. <tr><td>Modes</td><td>as</td><td>Possible array elements: "infrastructure", "ad-hoc", "ap"</td>
  448. </table>
  449. </li>
  450. <li>
  451. <h3>State - s - (read)</h3>
  452. <p>A state of the interface. Possible values are: return "disconnected", "inactive", "scanning", "authenticating", "associating", "associated", "4way_handshake", "group_handshake", "completed","unknown".</p>
  453. </li>
  454. <li>
  455. <h3>Scanning - b - (read)</h3>
  456. <p>Determines if the interface is already scanning or not</p>
  457. </li>
  458. <li>
  459. <h3>ApScan - u - (read/write)</h3>
  460. <p>Identical to ap_scan entry in %wpa_supplicant configuration file. Possible values are 0, 1 or 2.</p>
  461. </li>
  462. <li>
  463. <h3>BSSExpireAge - u - (read/write)</h3>
  464. <p>Identical to bss_expiration_age entry in %wpa_supplicant configuration file.</p>
  465. </li>
  466. <li>
  467. <h3>BSSExpireCount - u - (read/write)</h3>
  468. <p>Identical to bss_expiration_scan_count entry in %wpa_supplicant configuration file.</p>
  469. </li>
  470. <li>
  471. <h3>Country - s - (read/write)</h3>
  472. <p>Identical to country entry in %wpa_supplicant configuration file.</p>
  473. </li>
  474. <li>
  475. <h3>Ifname - s - (read)</h3>
  476. <p>Name of network interface controlled by the interface, e.g., wlan0.</p>
  477. </li>
  478. <li>
  479. <h3>BridgeIfname - s - (read)</h3>
  480. <p>Name of bridge network interface controlled by the interface, e.g., br0.</p>
  481. </li>
  482. <li>
  483. <h3>Driver - s - (read)</h3>
  484. <p>Name of driver used by the interface, e.g., nl80211.</p>
  485. </li>
  486. <li>
  487. <h3>CurrentBSS - o - (read)</h3>
  488. <p>Path to D-Bus object representing BSS which %wpa_supplicant is associated with, or "/" if is not associated at all.</p>
  489. </li>
  490. <li>
  491. <h3>CurrentNetwork - o - (read)</h3>
  492. <p>Path to D-Bus object representing configured network which %wpa_supplicant uses at the moment, or "/" if doesn't use any.</p>
  493. </li>
  494. <li>
  495. <h3>Blobs - as - (read)</h3>
  496. <p>List of blobs names added to the Interface.</p>
  497. </li>
  498. <li>
  499. <h3>BSSs - ao - (read)</h3>
  500. <p>List of D-Bus objects paths representing BSSs known to the interface, i.e., scan results.</p>
  501. </li>
  502. <li>
  503. <h3>Networks - ao - (read)</h3>
  504. <p>List of D-Bus objects paths representing configured networks.</p>
  505. </li>
  506. <li>
  507. <h3>FastReauth - b - (read/write)</h3>
  508. <p>Identical to fast_reauth entry in %wpa_supplicant configuration file.</p>
  509. </li>
  510. <li>
  511. <h3>ScanInterval - i - (read/write)</h3>
  512. <p>Time (in seconds) between scans for a suitable AP. Must be >= 0.</p>
  513. </li>
  514. <li>
  515. <h3>PKCS11EnginePath - s - (read)</h3>
  516. <p>PKCS #11 engine path.</p>
  517. </li>
  518. <li>
  519. <h3>PKCS11ModulePath - s - (read)</h3>
  520. <p>PKCS #11 module path.</p>
  521. </li>
  522. </ul>
  523. \subsection dbus_interface_signals Signals
  524. <ul>
  525. <li>
  526. <h3>ScanDone ( b : success )</h3>
  527. <p>Scanning finished. </p>
  528. <h4>Arguments</h4>
  529. <dl>
  530. <dt>s : success</dt>
  531. <dd>Determines if scanning was successful. If so, results are available.</dd>
  532. </dl>
  533. </li>
  534. <li>
  535. <h3>BSSAdded ( o : BSS, a{sv} : properties )</h3>
  536. <p>Interface became aware of a new BSS.</p>
  537. <h4>Arguments</h4>
  538. <dl>
  539. <dt>o : BSS</dt>
  540. <dd>A D-Bus path to an object representing the new BSS.</dd>
  541. </dl>
  542. <dl>
  543. <dt>a{sv} : properties</dt>
  544. <dd>A dictionary containing properties of added BSS.</dd>
  545. </dl>
  546. </li>
  547. <li>
  548. <h3>BSSRemoved ( o : BSS )</h3>
  549. <p>BSS disappeared.</p>
  550. <h4>Arguments</h4>
  551. <dl>
  552. <dt>o : BSS</dt>
  553. <dd>A D-Bus path to an object representing the BSS.</dd>
  554. </dl>
  555. </li>
  556. <li>
  557. <h3>BlobAdded ( s : blobName )</h3>
  558. <p>A new blob has been added to the interface.</p>
  559. <h4>Arguments</h4>
  560. <dl>
  561. <dt>s : blobName</dt>
  562. <dd>A name of the added blob.</dd>
  563. </dl>
  564. </li>
  565. <li>
  566. <h3>BlobRemoved ( s : blobName )</h3>
  567. <p>A blob has been removed from the interface.</p>
  568. <h4>Arguments</h4>
  569. <dl>
  570. <dt>s : blobName</dt>
  571. <dd>A name of the removed blob.</dd>
  572. </dl>
  573. </li>
  574. <li>
  575. <h3>NetworkAdded ( o : network, a{sv} : properties )</h3>
  576. <p>A new network has been added to the interface.</p>
  577. <h4>Arguments</h4>
  578. <dl>
  579. <dt>o : network</dt>
  580. <dd>A D-Bus path to an object representing the added network.</dd>
  581. </dl>
  582. <dl>
  583. <dt>a{sv} : properties</dt>
  584. <dd>A dictionary containing properties of added network.</dd>
  585. </dl>
  586. </li>
  587. <li>
  588. <h3>NetworkRemoved ( o : network )</h3>
  589. <p>The network has been removed from the interface.</p>
  590. <h4>Arguments</h4>
  591. <dl>
  592. <dt>o : network</dt>
  593. <dd>A D-Bus path to an object representing the removed network.</dd>
  594. </dl>
  595. </li>
  596. <li>
  597. <h3>NetworkSelected ( o : network )</h3>
  598. <p>The network has been selected.</p>
  599. <h4>Arguments</h4>
  600. <dl>
  601. <dt>o : network</dt>
  602. <dd>A D-Bus path to an object representing the selected network.</dd>
  603. </dl>
  604. </li>
  605. <li>
  606. <h3>StaAuthorized ( s : mac )</h3>
  607. <p>A new station has been authorized to the interface.</p>
  608. <h4>Arguments</h4>
  609. <dl>
  610. <dt>s : mac</dt>
  611. <dd>A mac address which has been authorized.</dd>
  612. </dl>
  613. </li>
  614. <li>
  615. <h3>StaDeauthorized ( s : mac )</h3>
  616. <p>A station has been deauthorized to the interface.</p>
  617. <h4>Arguments</h4>
  618. <dl>
  619. <dt>s : mac</dt>
  620. <dd>A mac address which has been deauthorized.</dd>
  621. </dl>
  622. </li>
  623. <li>
  624. <h3>PropertiesChanged ( a{sv} : properties )</h3>
  625. <p>Some properties have changed.</p>
  626. <h4>Arguments</h4>
  627. <dl>
  628. <dt>a{sv} : properties</dt>
  629. <dd>A dictionary with pairs of properties names which have changed and theirs new values. Possible dictionary keys are: "ApScan", "Scanning", "State", "CurrentBSS", "CurrentNetwork"</dd>
  630. </dl>
  631. </li>
  632. </ul>
  633. \section dbus_wps fi.w1.wpa_supplicant1.Interface.WPS
  634. Interface implemented by objects related to network interface added to
  635. %wpa_supplicant, i.e., returned by fi.w1.wpa_supplicant1.CreateInterface.
  636. \subsection dbus_wps_methods Methods
  637. <ul>
  638. <li>
  639. <h3>Start ( a{sv} : args ) --> a{sv} : output</h3>
  640. <p>Starts WPS configuration.</p>
  641. <h4>Arguments</h4>
  642. <dl>
  643. <dt>a{sv} : args</dt>
  644. <dd>
  645. A dictionary with arguments used to start WPS configuration. The dictionary may contain the following entries:
  646. <table>
  647. <tr><th>Key</th><th>Value type</th><th>Description</th><th>Required</th>
  648. <tr><td>Role</td><td>s</td><td>The device's role. Possible values are "enrollee" and "registrar".</td><td>Yes</td>
  649. <tr><td>Type</td><td>s</td><td>WPS authentication type. Applies only for enrollee role. Possible values are "pin" and "pbc".</td><td>Yes, for enrollee role; otherwise no</td>
  650. <tr><td>Pin</td><td>s</td><td>WPS Pin.</td><td>Yes, for registrar role; otherwise optional</td>
  651. <tr><td>Bssid</td><td>ay</td><td></td><td>No</td>
  652. </table>
  653. </dd>
  654. </dl>
  655. <h4>Returns</h4>
  656. <dl>
  657. <dt>a{sv} : output</dt>
  658. <dd>
  659. <table>
  660. <tr><th>Key</th><th>Value type</th><th>Description</th><th>Required</th>
  661. <tr><td>Pin</td><td>s</td><td>Newly generated PIN, if not specified for enrollee role and pin authentication type.</td><td>No</td>
  662. </table>
  663. </dd>
  664. </dl>
  665. <h4>Possible errors</h4>
  666. <dl>
  667. <dt>fi.w1.wpa_supplicant1.UnknownError</dt>
  668. <dd>Starting WPS configuration failed for an unknown reason.</dd>
  669. <dt>fi.w1.wpa_supplicant1.InvalidArgs</dt>
  670. <dd>Invalid entries were found in the passed argument.</dd>
  671. </dl>
  672. </li>
  673. </ul>
  674. \subsection dbus_wps_properties Properties
  675. <ul>
  676. <li>
  677. <h3>ProcessCredentials - b - (read/write)</h3>
  678. <p>Determines if the interface will process the credentials (credentials_processed configuration file parameter).</p>
  679. </li>
  680. </ul>
  681. \subsection dbus_wps_signals Signals
  682. <ul>
  683. <li>
  684. <h3>Event ( s : name, a{sv} : args )</h3>
  685. <p>WPS event occurred.</p>
  686. <h4>Arguments</h4>
  687. <dl>
  688. <dt>s : event</dt>
  689. <dd>Event type. Possible values are: "success, "fail" and "m2d"</dd>
  690. <dt>a{sv} : args</dt>
  691. <dd>
  692. Event arguments. Empty for success event, one entry ( "msg" : i ) for fail event and following entries for m2d event:
  693. <table>
  694. <tr><th>config_methods</th><th>Value type</th>
  695. <tr><td>manufacturer</td><td>q</td>
  696. <tr><td>model_name</td><td>ay</td>
  697. <tr><td>model_number</td><td>ay</td>
  698. <tr><td>serial_number</td><td>ay</td>
  699. <tr><td>dev_name</td><td>ay</td>
  700. <tr><td>primary_dev_type</td><td>ay</td>
  701. <tr><td>config_error</td><td>q</td>
  702. <tr><td>dev_password_id</td><td>q</td>
  703. </table>
  704. </dd>
  705. </dl>
  706. </li>
  707. <li>
  708. <h3>Credentials ( a{sv} : credentials )</h3>
  709. <p>WPS credentials. Dictionary contains:</p>
  710. <table>
  711. <tr><th>Key</th><th>Value type</th><th>Description</th>
  712. <tr><td>BSSID</td><td>ay</td><td></td>
  713. <tr><td>SSID</td><td>s</td><td></td>
  714. <tr><td>AuthType</td><td>as</td><td>Possible array elements: "open", "shared", "wpa-psk", "wpa-eap", "wpa2-eap", "wpa2-psk"</td>
  715. <tr><td>EncrType</td><td>as</td><td>Possible array elements: "none", "wep", "tkip", "aes"</td>
  716. <tr><td>Key</td><td>ay</td><td>Key data</td>
  717. <tr><td>KeyIndex</td><td>u</td><td>Key index</td>
  718. </table>
  719. </li>
  720. <li>
  721. <h3>PropertiesChanged ( a{sv} : properties )</h3>
  722. <p>Some properties have changed.</p>
  723. <h4>Arguments</h4>
  724. <dl>
  725. <dt>a{sv} : properties</dt>
  726. <dd>A dictionary with pairs of properties names which have changed and theirs new values. Possible dictionary keys are: "ProcessCredentials"</dd>
  727. </dl>
  728. </li>
  729. </ul>
  730. \section dbus_bss fi.w1.wpa_supplicant1.BSS
  731. Interface implemented by objects representing a scanned BSSs, i.e.,
  732. scan results.
  733. \subsection dbus_bss_properties Properties
  734. <ul>
  735. <li>
  736. <h3>BSSID - ay - (read)</h3>
  737. <p>BSSID of the BSS.</p>
  738. </li>
  739. <li>
  740. <h3>SSID - ay - (read)</h3>
  741. <p>SSID of the BSS.</p>
  742. </li>
  743. <li>
  744. <h3>WPA - a{sv} - (read)</h3>
  745. <p>WPA information of the BSS. Empty dictionary indicates no WPA support. Dictionary entries are:</p>
  746. <table>
  747. <tr><td>KeyMgmt</td><td>as</td><td>Key management suite. Possible array elements: "wpa-psk", "wpa-eap", "wpa-none"</td>
  748. <tr><td>Pairwise</td><td>as</td><td>Pairwise cipher suites. Possible array elements: "ccmp", "tkip"</td>
  749. <tr><td>Group</td><td>s</td><td>Group cipher suite. Possible values are: "ccmp", "tkip", "wep104", "wep40"</td>
  750. </table>
  751. </li>
  752. <li>
  753. <h3>RSN - a{sv} - (read)</h3>
  754. <p>RSN information of the BSS. Empty dictionary indicates no RSN support. Dictionary entries are:</p>
  755. <table>
  756. <tr><td>KeyMgmt</td><td>as</td><td>Key management suite. Possible array elements: "wpa-psk", "wpa-eap", "wpa-ft-psk", "wpa-ft-eap", "wpa-psk-sha256", "wpa-eap-sha256",</td>
  757. <tr><td>Pairwise</td><td>as</td><td>Pairwise cipher suites. Possible array elements: "ccmp", "tkip"</td>
  758. <tr><td>Group</td><td>s</td><td>Group cipher suite. Possible values are: "ccmp", "tkip", "wep104", "wep40"</td>
  759. <tr><td>MgmtGroup</td><td>s</td><td>Mangement frames cipher suite. Possible values are: "aes128cmac"</td>
  760. </table>
  761. </li>
  762. <li>
  763. <h3>IEs - ay - (read)</h3>
  764. <p>All IEs of the BSS as a chain of TLVs</p>
  765. </li>
  766. <li>
  767. <h3>Privacy - b - (read)</h3>
  768. <p>Indicates if BSS supports privacy.</p>
  769. </li>
  770. <li>
  771. <h3>Mode - s - (read)</h3>
  772. <p>Describes mode of the BSS. Possible values are: "ad-hoc" and "infrastructure".</p>
  773. </li>
  774. <li>
  775. <h3>Frequency - q - (read)</h3>
  776. <p>Frequency of the BSS in MHz.</p>
  777. </li>
  778. <li>
  779. <h3>Rates - au - (read)</h3>
  780. <p>Descending ordered array of rates supported by the BSS in bits per second.</p>
  781. </li>
  782. <li>
  783. <h3>Signal - n - (read)</h3>
  784. <p>Signal strength of the BSS.</p>
  785. </li>
  786. </ul>
  787. \subsection dbus_bss_signals Signals
  788. <ul>
  789. <li>
  790. <h3>PropertiesChanged ( a{sv} : properties )</h3>
  791. <p>Some properties have changed.</p>
  792. <h4>Arguments</h4>
  793. <dl>
  794. <dt>a{sv} : properties</dt>
  795. <dd>A dictionary with pairs of properties names which have changed and theirs new values.</dd>
  796. </dl>
  797. </li>
  798. </ul>
  799. \section dbus_network fi.w1.wpa_supplicant1.Network
  800. Interface implemented by objects representing configured networks,
  801. i.e., returned by fi.w1.wpa_supplicant1.Interface.AddNetwork.
  802. \subsection dbus_network_properties Properties
  803. <ul>
  804. <li>
  805. <h3>Enabled - b - (read/write)</h3>
  806. <p>Determines if the configured network is enabled or not.</p>
  807. </li>
  808. <li>
  809. <h3>Properties - a{sv} - (read)</h3>
  810. <p>Properties of the configured network. Dictionary contains entries from "network" block of %wpa_supplicant configuration file. All values are string type, e.g., frequency is "2437", not 2437.
  811. </li>
  812. </ul>
  813. \subsection dbus_network_signals Signals
  814. <ul>
  815. <li>
  816. <h3>PropertiesChanged ( a{sv} : properties )</h3>
  817. <p>Some properties have changed.</p>
  818. <h4>Arguments</h4>
  819. <dl>
  820. <dt>a{sv} : properties</dt>
  821. <dd>A dictionary with pairs of properties names which have changed and theirs new values. Possible dictionary keys are: "Enabled"</dd>
  822. </dl>
  823. </li>
  824. </ul>
  825. */