Sophie

Sophie

distrib > CentOS > 6 > i386 > by-pkgid > 2c51d8eb79f8810ada971ee8c30ce1e5 > files > 2504

kernel-doc-2.6.32-71.14.1.el6.noarch.rpm

<?xml version="1.0" encoding="ANSI_X3.4-1968" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=ANSI_X3.4-1968" /><title>Chapter&#160;14.&#160;Key handling</title><meta name="generator" content="DocBook XSL Stylesheets V1.75.2" /><link rel="home" href="index.html" title="The mac80211 subsystem for kernel developers" /><link rel="up" href="pt04.html" title="Part&#160;IV.&#160;Internals" /><link rel="prev" href="pt04.html" title="Part&#160;IV.&#160;Internals" /><link rel="next" href="ch14s02.html" title="MORE TBD" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter&#160;14.&#160;Key handling</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="pt04.html">Prev</a>&#160;</td><th width="60%" align="center">Part&#160;IV.&#160;Internals</th><td width="20%" align="right">&#160;<a accesskey="n" href="ch14s02.html">Next</a></td></tr></table><hr /></div><div class="chapter" title="Chapter&#160;14.&#160;Key handling"><div class="titlepage"><div><div><h2 class="title"><a id="key-handling"></a>Chapter&#160;14.&#160;Key handling</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="ch14.html#id2712584">Key handling basics</a></span></dt><dt><span class="sect1"><a href="ch14s02.html">MORE TBD</a></span></dt></dl></div><div class="sect1" title="Key handling basics"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="id2712584"></a>Key handling basics</h2></div></div></div><p>
   </p><p>
   Key handling in mac80211 is done based on per-interface (sub_if_data)
   keys and per-station keys. Since each station belongs to an interface,
   each station key also belongs to that interface.
   </p><p>
   Hardware acceleration is done on a best-effort basis, for each key
   that is eligible the hardware is asked to enable that key but if
   it cannot do that they key is simply kept for software encryption.
   There is currently no way of knowing this except by looking into
   debugfs.
   </p><p>
   All key operations are protected internally so you can call them at
   any time.
   </p><p>
   Within mac80211, key references are, just as STA structure references,
   protected by RCU. Note, however, that some things are unprotected,
   namely the key-&gt;sta dereferences within the hardware acceleration
   functions. This means that <code class="function">sta_info_destroy</code> must flush the key todo
   list.
   </p><p>
   All the direct key list manipulation functions must not sleep because
   they can operate on STA info structs that are protected by RCU.
</p></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="pt04.html">Prev</a>&#160;</td><td width="20%" align="center"><a accesskey="u" href="pt04.html">Up</a></td><td width="40%" align="right">&#160;<a accesskey="n" href="ch14s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Part&#160;IV.&#160;Internals&#160;</td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top">&#160;MORE TBD</td></tr></table></div></body></html>