如何在Linux下写无线网卡的驱动【转】
转自:http://www.crifan.com/files/doc/docbook/linux_wireless/release/html/linux_wireless.html
版本:v0.3
How to write wireless network card driver under Linux
Crifan Li
摘要
本文主要介绍了Linux下的无线网络相关的基础知识,从网络到无线网络再到802.11的无线网络,然后再介绍Linux无线网络的框架,最后介绍如何在Linux的框架下编写无线驱动
2012-08-09
修订历史 | ||
---|---|---|
修订 0.2 | 2011-07-02 | crl |
|
||
修订 0.3 | 2012-08-09 | crl |
|
版权 © 2012 Crifan, http://crifan.com
目录
插图清单
- 1.1. OSI参考模型以及不同层所对应的协议
- 1.2. 802.11和OSI模型
- 5.1. 旧的Linux的网络架构
- 5.2. 新的Linux的网络架构
- 5.3. 计划的Linux的网络架构
- 5.4. CRDA的架构
缩略词
常用缩略词如下:
A
- AP (AP)
-
Access Point
B
- BPSK (BPSK)
-
Binary Phase Shift Keying
- BSS (BSS)
-
Basic Service Set
C
- CCK (CCK)
-
Complementary Code Keying
- CRC (CRC)
-
Cyclic Redundancy Check
- CRDA (CRDA)
-
Central Regulatory Domain Agent
- CSMA/CA (CSMA/CA)
-
Carrier Sense Multiple Access with Collision Avoidance
- CSMA/CD (CSMA/CD)
-
Carrier Sense Multiple Access with Collision Detection
- CTS (CTS)
-
Clear To Send
D
- DCF (DCF)
-
Distribution Coordination Function
- DHCP (DHCP)
-
Dynamic Host Configuration Protocol
- ()
- DS (DS)
-
Distribution System
- DSSS (DSSS)
-
Direct Sequence Spread Spectrum
E
- ESS (ESS)
-
Extended Service Set
- ETSI (ETSI)
-
European Telecommunications Standards Institute
F
- FCC (FCC)
-
Federal Communications Commission (USA)
- FDDI (FDDI)
-
Fiber Distributed Data Interface
- FHSS (FHSS)
-
Frequency Hopping Spread Spectrum
I
- IBSS (IBSS)
-
Independent Basic Service Set
参见BSS.
- IEEE (IEEE)
-
Institute of Electrical and Electronics Engineers
- ()
- IETF (IETF)
-
Internet Engineering Task Force
- IP (IP)
-
Internet Protocol
- IPSec (IPSec)
-
Internet Protocol security
- ISA (ISA)
-
Integrated Services Architecture
- ISM (ISM)
-
Industry, Scientific, and Medical
- ISO (ISO)
-
International Organization for Standardization
- ITU-T (ITU-T)
-
International Telecommunication Union-Telecommunication
L
- LLC (LLC)
-
Logical Link Control
M
- MAC (MAC)
-
Media Access Control
- MIB (MIB)
-
Management Information Base
- MKK (MKK)
-
Radio Equipment Inspection and Certification Institute (Japan)
N
- NIC (NIC)
-
Network Interface Card
- NOS (NOS)
-
Network Operating System
O
- OSI (OSI)
-
Open System Interconnection
P
- PCF (PCF)
-
Point Coordination Function
- PCI (PCI)
-
Peripheral Component Interconnect
- PRNG (PRNG)
-
Pseudo Random Number Generator
Q
- QPSK (QPSK)
-
Quadrature Phase Shift Keying
R
- RC4 (RC4)
-
Rivest Cipher 4
- RTS (RTS)
-
Request to Send
S
- SNMP (SNMP)
-
Simple Network Management Protocol
T
- TCP/IP (TCP/IP)
-
Transmission Control Protocol/Internet Protocol
W
- WECA (WECA)
-
Wireless Ethernet Compatibility Alliance
- WEP (WEP)
-
Wired Equivalent Privacy
- Wext (Wext)
-
Wireless Extension
- WLAN (WLAN)
-
Wireless Local Area Network
- WLANA (WLANA)
-
Wireless LAN Alliance
正文之前
1. 目的
- 搞懂如何写Linux无线网卡的驱动
- 记录所学知识。把自己搞懂的东西,能写到让别人也能理解的程度,因为这样才是真正理解了。另外现在理解了,以后还是会忘,而好记性不如烂笔头,万一哪天再需要用到这些知识,也方便查看和温习。
- 无线网络相关基础知识介绍:此贴不仅仅是要搞懂如何写Linux无线网卡驱动,因为在写驱动之前,肯定也要了解对应的无线网络基础知识,所以此贴也可以用作学习无线网络基础知识之用。
当然,写无线网卡驱动之前,肯定是不仅有了对应的硬件,也还要有无线网卡的datasheet(数据手册)。
再当然,写代码之前,肯定也要搞清楚Linux无线网络驱动的整体架构,
2. 前提
- 有一定的网络基础知识。
- 对Linux系统的驱动的基本架构有一定了解
- 最好有写过其他Linux驱动的经验,这样对于文中所述内容,会有更好的了解
3. 声明
- 鉴于书写和理解的方便,文中对于常见的缩写,就不一定全部都写中文了。而且表述内容的时候,有可能会出现中英文混杂,而且暂定一些内容,尽量用英文的术语,个人觉得这样有时候更容易把问题说的更透彻。
- 由于笔者知识有限,错误在所难免,欢迎指正错误和切磋。
- 任何人可以任意拷贝转载此文,但请注明出处。即版权所有,但欢迎传播。
4. 本文内容组织的逻辑
对于本文的组织内容的逻辑,简单解释一下。
此处,首先要搞懂我们的目的/目标是,好像听到旁边有人喊“没有蛀牙!”恭喜这位同学,你都抢答了!只可惜答案不对,囧。此文目的前面已经说了,就是想要搞懂如何去实现Linux下对应的无线网卡驱动。
而实现驱动之前,肯定至少要知道两件事情:
- 一是硬件上,有哪些东西,他们是如何放置的。
- 二是软件上,通信协议上,是如何实现通信的。
而对于硬件,无线网卡,就要知道其相关的基本名词,基本工作原理等等,对应的还有无线网络的知识。
而无线网络,是在有线网络之后才出现的,很多技术规范和设计等,也是参照和兼容有线网络而设计的,两者关系很紧密,所以也要知道有线网卡的一些知识。
最后,当然有线网络和无线网络,都属于网络,所以对于所涉及到的网络的基础知识,也要清楚。
正因此,才按照:
硬件:网络 + 有线网络 ⇒ 无线网络 ⇒ 80211无线网络
这样的顺序来介绍的。
而对于软件方面,无线网络驱动,是80211架构下的,而80211无线网络架构,也还是基于Linux的网络架构上的,所以要按照:
软件:Linux网络架构 ⇒ Linux下的80211 无线网络架构
来介绍的。
这样,将相关的硬件和软件的知识都介绍完了,也才能搞懂后面要介绍的,有哪些硬件,对应软件是如何工作的。
其中软件部分,知道Linux无线网络架构本身已经实现了哪些功能,剩下的部分,就是你要实现的驱动的细节部分,这样硬件和软件全部协同工作,才能让无线网卡正常工作。
第 1 章 Network
摘要
1.1. OSI
OSI是一套规范的总称,包含了很多具体的协议标准,用于方便不同的系统之间互操作。OSI是ISO和ITU-U这两个组织定义的。
其中最有名的就是OSI参考模型,将网络分成不同Layer层次,并且为不同的Layer制定了相应的N多协议规范。
图示如下:
图 1.1. OSI参考模型以及不同层所对应的协议
对应的物理层和数据链路层,OSI所支持的介质访问协议包括:
- IEEE 802.2 LLC
- IEEE 802.3
- Token Ring/IEEE 802.5
- FDDI
- X.25
而80211协议,只涉及最底层的,物理层和数据链路层。
下图是802.11和OSI模型的对应关系:
图 1.2. 802.11和OSI模型
对应的物理层方面,可能用到.FH/DS/IR/CCK/OFDM等技术,这部分后面会有详细解释。
1.2. Ethernet
NIC
1.3. 802 Related Specifications
第 2 章 Wireless LAN
摘要
无线信号传输方式有两种,窄带通信与扩频通信:
- 窄带无线电通信(Narrow-Band Radio)
这种技术类似于无线电台的广播,必须把发送器和接收器都调拨到同一频带。
无线电信号可以穿越墙物,在一个很广的域内传播,所以不必把它调聚成束。
然而,窄带射频发送有无线电波反射的问题,并受联邦通信委员会管制,它们必须准确地进行调谐,以防其它频率的干扰。
- 扩展频谱通信(Spread Spectrum Communication)
简称扩频通信,是一种信息传输方式,其信号所占有的频带宽度远大于所传信息必需的最小带宽。
频带的扩展是通过一个独立的码序列(一般是伪随机码)来完成,用编码及调制的方法来实现的,与所传信息数据无关
在接收端则用同样的码进行相关同步接收、解扩及恢复所传信息数据。
这种技术是在一个很宽的频率范围内广播信号,避免在窄带无线电通信中遇到的问题。
用一种编码来传播信号,接收站用同一编码来恢复信号。用这种方法,扩频无 线电信号能工作在其它信号所占据的频率范围内。
扩频无线电信号不会干涉常规的无线电广播,这是因为它的能量十分微弱。
2.1. 802.11
2.2. Bluetooth
2.3. IR
第 3 章 80211 Wireless LAN
目录
摘要
3.1. BSS
- BSS
BSS stands for Basic Service Set. The coverage of an access point is called a BSS.
- STA
STA indicates a wireless device acting in in BSS as a regular STAtion.
3.2. ESS
3.3. IBSS
- IBSS
IBSS stands for Independent Basic Service Set. Its basically Ad-Hoc mode.
详情参考:
3.4. DSS
3.5. SSID
- SSID
SSID stands for Service Set IDentifier. The SSID is a code attached to all packets on a wireless network to identify each packet as part of that network. The code consists of a string of 1-32 octets (usually represented as case sensitive alphanumeric characters).
http://en.wikipedia.org/wiki/SSID
3.6. Frame Type
Frame Types
http://www.wi-fiplanet.com/tutorials/article.php/1447501
Management Frames:
- Authentication
Authentication frame, Deauthentication frame
- Association
Association request frame, Association response frame, Disassociation frame
- Reassociation
Reassociation request frame, Reassociation response frame
- Beacon Frame
Authentication frame, Deauthentication frame
- Probe
Probe request frame, Probe response frame
Control Frames
- Request to Send (RTS) frame
- Clear to Send (CTS) frame
- Acknowledgement (ACK) frame
Data Frames
PLME
On the other hand PLME stands for Physical Layer Management Entity.
3.7. 802.11 Beacons Related
http://www.wi-fiplanet.com/tutorials/article.php/1492071/80211-Beacons-Revealed.htm
3.8. Use RTS/CTS to avoid hidden station problem
http://www.pulsewan.com/data101/802_11_b_basics.htm
Another MAC-layer problem specific to wireless is the ?hidden node? issue, in which two stations on opposite sides of an access point can both ?hear? activity from an access point, but not from each other, usually due to distance or an obstruction. To solve this problem, 802.11 specifies an optional Request to Send/Clear to Send (RTS/CTS) protocol at the MAC layer. When this feature is in use, a sending station transmits an RTS and waits for the access point to reply with a CTS. Since all stations in the network can hear the access point, the CTS causes them to delay any intended transmissions, allowing the sending station to transmit and receive a packet acknowledgment without any chance of collision. Since RTS/CTS adds additional overhead to the network by temporarily reserving the medium, it is typically used only on the largest-sized packets, for which retransmission would be expensive from a bandwidth standpoint.
3.9. CSMA/CA working flow
http://www.pulsewan.com/data101/802_11_b_basics.htm
CSMA/CA (Carrier Sense Multiple Access with Collision Avoidance) works as follows.
A station wishing to transmit senses the air, and, if no activity is detected, the station waits an additional, randomly selected period of time and then transmits if the medium is still free. If the packet is received intact, the receiving station issues an ACK frame that, once successfully received by the sender, completes the process. If the ACK frame is not detected by the sending station, either because the original data packet was not received intact or the ACK was not received intact, a collision is assumed to have occurred and the data packet is transmitted again after waiting another random amount of time.
第 4 章 Linux Network
摘要
已经实现了哪些层,(简单描述)有线网络是如何工作的
第 5 章 Linux Wireless LAN & 80211
目录
摘要
Linux: Generic 2.6 Wireless Driver
http://kerneltrap.org/node/3245
这个解释了,当时为何选Host AP作为wireless stack 的来龙去脉。
5.1. 无线网络的架构
5.1.1. Framework
From: Page 6/47 Johannes Berg's presentation
Old:
图 5.1. 旧的Linux的网络架构
From: page 4/47 Johannes Berg's presentation
New:
图 5.2. 新的Linux的网络架构
From: page 5/47 Johannes Berg's presentation
Planned:
图 5.3. 计划的Linux的网络架构
5.1.2. CRDA
图 5.4. CRDA的架构
5.1.3. Wext/WE
Wireless Extensions的缩写, 是旧的Linux无线网络的架构,其基于mac80211。现在已逐渐转移到新的架构上面了,新的架构使用cfg80211和nl80211。
WE
WE stands for Wireless-Extensions - the old driver API and user <–> kernel communication transport.
5.1.4. cfg80211
新的Linux无线网络架构中,为驱动提供配置接口/API。
5.1.5. nl80211
新的Linux无线网络架构中,为内核空间和用户空间之间,提供通讯转换接口。
5.1.6. Radiotap
用于802.11的 帧接收(frame reception)和帧注入(frame injection)
5.1.7. Frame Reception/ Injection
所谓的帧接收,就是硬件(网卡)用中断通知CPU,一个数据帧到了,要CPU去接收。一般是在将无线网卡设置为 ???模式的时候,底层接受到数据帧之后,不处理,而是直接传送给上层处理,一般用于分析无线网络数据传输的时候,分析网络问题到底出现在哪。
5.1.8. MLME
MLME Stands for Media Access Control (MAC) Sublayer Management Entity. MLME is the management entity where the Physical layer (PHY) MAC state machines reside. Examples of states an MLME may assist in reaching:
- Authenticate
- Deauthenticate
- Associate
- Disassociate
- Reassociate
- Beacon
- Probe
- Timing Synchronization Function (TSF)
5.1.9. FullMAC
FullMAC is a term used to describe a type of wireless card where the MLME is managed in hardware. You would not use mac80211 to write a FullMAC wireless driver.
5.1.10. SoftMAC
SoftMAC is a term used to describe a type of wireless card where the MLME is expected to be managed in software. mac80211 is a driver API for SoftMAC wireless cards, for example.
如何在Linux下写无线网卡的驱动【转】的更多相关文章
- 如何在Linux下添加自己的驱动
在此Linux驱动开发采用网络的方式,介绍两种驱动开发的方法:一.驱动编译到内核 1.先选择一个放置驱动代码的位置,例:drivers/char/xxx.c 2.在drivers/char/Kconf ...
- 如何在linux下制作一个windows的可启动u盘?
如何在linux下制作一个windows的可启动u盘? 情景是这样的,有一个windows10的iso,现在想通过U盘安装,要求即支持UEFI(启动引导器),又支持Legacy(启动引导器),因为有一 ...
- 如何在Linux下安装Tomcat
上篇文章写到了Linux下安装JDK1.8,这篇文章详细阐述一下 如何在Linux下安装Tomcat!!!有啥问题可以留言,博主每天都会看博客的. 准备步骤和方法和以前一样,博主用的工具是XShell ...
- 如何在Linux下安装JDK1.8
本文会详细介绍如何在Linux下安装JDK1.8 首先要设置虚拟机的IP地址,不知道如何设置的话可以 翻看我的前一篇博客 http://www.cnblogs.com/xiaoxiaoSMILE/ ...
- 一步一步教你如何在linux下配置apache+tomcat(转)
一步一步教你如何在linux下配置apache+tomcat 一.安装前准备. 1. 所有组件都安装到/usr/local/e789目录下 2. 解压缩命令:tar —vxzf 文件名(. ...
- 如何在Linux下拷贝一个目录呢
cp -af newadmin/movie/. uploadfile/mallvideo/ 如何在Linux下拷贝一个目录呢?这好像是再简单不过的问题了. 比如要把/home/usera拷贝到/m ...
- 如何在linux下开启FTP服务
如何在linux下开启FTP服务 1. 首先服务器要安装ftp软件,查看是否已经安装ftp软件下: #which vsftpd 如果看到有vsftpd的目录说明服务器已经安装了ftp软件 2. ...
- 如何在Linux下禁用IPv6
如何在Linux下禁用IPv6 echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6 禁用IP ...
- 如何在Linux下使用Rsync
如何在Linux下使用Rsync 吐槽 昨天对scp进行总结之后看到最后有说到Rsync,俗语有云:好奇心害死猫.抱着学习的态度将Rsync给找了出来,然后进行了一些简单的学习.下面介绍一些个常用的命 ...
随机推荐
- [luogu3505][bzoj2088][POI2010]TEL-Teleportation【分层图】
题目大意 给出了一个图,然后让你加最多的边,让点\(1\)到\(2\)之间至少要经过5条边 解法 比较清楚,我们可以将这个图看作一个分层图,点\(1\)为第一层,再将\(2\)作为第五层,这样第一层和 ...
- [USACO 2018 December Contest]作业总结
t1 Convention 题目大意 每一头牛都有一个来的时间,一共有\(n\)辆车,求出等待时间最长的那头牛等待的最小时间. 解法 第一眼看到这道题还以为是\(2018noip\)普及组的t3魔鬼题 ...
- 洛谷 P2300 合并神犇 解题报告
P2300 合并神犇 题目背景 loidc来到了NOI的赛场上,他在那里看到了好多神犇. 题目描述 神犇们现在正排成一排在刷题.每个神犇都有一个能力值p[i].loidc认为坐在附近的金牌爷能力参差不 ...
- Linux下Vim编辑器访问系统剪切板
默认情况下VIM使用的是内置的寄存器,而不是X Window的剪切板 启用系统剪切板支持 可以使用vim --version | grep clipboard查看,若clipboard前显示-标记,而 ...
- ReactNative组件之scrollView实现轮播
想要实现轮播效果,首先安装时间定时器 接下来就是在我们的项目中使用定时器 接下来我们将竖着的轮播图变成横着的 接下来我们调整间距 我们知道轮播图下方,还有5个圆点,那我们怎么做呢? 拿到每一个圆点 看 ...
- 走进JVM【二】理解JVM内存区域
引言 对于C++程序员,内存分配与回收的处理一直是令人头疼的问题.Java由于自身的自动内存管理机制,使得管理内存变得非常轻松,不容易出现内存泄漏,溢出的问题. 不容易不代表不会出现问题,一旦内存泄漏 ...
- SQL Server 2008以上误操作数据库恢复方法——日志尾部备份
原文出处:http://blog.csdn.net/dba_huangzj/article/details/8491327 问题: 经常看到有人误删数据,或者误操作,特别是update和delete的 ...
- 困惑2----(已经OK)
题目: 运行结果:以及图示分析 源代码: package com.mon11.day18; /** * 类说明 : * @author 作者 :chenyanlong * @version 创建时间: ...
- Python/spss-多元回归建模-共线性诊断1(推荐A)
欢迎关注博主主页,学习python视频资源,还有大量免费python经典文章 sklearn实战-乳腺癌细胞数据挖掘 https://study.163.com/course/introduction ...
- Shell标准输出、标准错误
shell中可能经常能看到:>/dev/null 2>&1 eg:sudo kill -9 ps -elf |grep -v grep|grep $1|awk '{print $4 ...