ieee80211_ioctl_getparam(struct net_device *dev, struct iw_request_info *info, void *w, char *extra) 中dev参数是从如何传递过来的
时间: 2023-12-21 22:03:11 浏览: 173
dev参数是通过函数的参数传递进来的。在调用ieee80211_ioctl_getparam函数时,需要传递一个指向net_device结构体的指针作为第一个参数dev,这个指针指向的net_device结构体包含了网络设备的相关信息,比如MAC地址、设备名称等。因此,dev参数就是通过这种方式传递进来的。
相关问题
ieee80211_ioctl_siwfreq 源码解析
ieee80211_ioctl_siwfreq 是一个用于设置 802.11 网络中无线频率的 ioctl 函数。以下是该函数的代码解析:
```c
static int ieee80211_ioctl_siwfreq(struct net_device *dev,
struct iw_request_info *info,
struct iw_freq *fwrq, char *extra)
{
struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr);
struct cfg80211_chan_def chandef;
int rc;
if (fwrq->e == 1) {
if (fwrq->m == 0 && fwrq->i == 0)
chandef.width = NL80211_CHAN_WIDTH_20_NOHT;
else if (fwrq->m == 0 && fwrq->i == 1)
chandef.width = NL80211_CHAN_WIDTH_20;
else if (fwrq->m == 1 && fwrq->i == 0)
chandef.width = NL80211_CHAN_WIDTH_40;
else if (fwrq->m == 1 && fwrq->i == 1)
chandef.width = NL80211_CHAN_WIDTH_80;
else
return -EINVAL;
chandef.center_freq1 = fwrq->m * 5 + 2407;
chandef.center_freq1 *= 1000;
if (chandef.width != NL80211_CHAN_WIDTH_20_NOHT)
chandef.center_freq1 += 10 * fwrq->i;
/* Set the channel */
rc = ieee80211_set_channel(local, &chandef);
if (rc) {
if (rc == -ENOENT)
return -EAGAIN;
else
return -EINVAL;
}
} else {
rc = ieee80211_get_channel(local);
if (rc < 0)
return rc;
fwrq->e = 1;
fwrq->m = (rc->center_freq - 2407) / 5;
fwrq->i = ((rc->center_freq - 2407) % 5) / 2;
switch (rc->width) {
case NL80211_CHAN_WIDTH_20_NOHT:
fwrq->m = 0;
fwrq->i = 0;
break;
case NL80211_CHAN_WIDTH_20:
fwrq->i = 1;
break;
case NL80211_CHAN_WIDTH_40:
fwrq->m = 1;
fwrq->i = 0;
break;
case NL80211_CHAN_WIDTH_80:
fwrq->m = 1;
fwrq->i = 1;
break;
default:
return -EINVAL;
}
}
return 0;
}
```
首先获取了指向设备结构体的指针,并将其转换为 IEEE 802.11 本地数据结构体的指针。然后,它从参数 fwrq 中获取无线频率信息,并将其存储到一个 cfg80211_chan_def 结构体中。
如果设置了频率,则使用 chandef 结构体中的信息设置 IEEE 802.11 网络的无线频率。如果获取频率,则使用当前频率信息填充 fwrq 结构体。
最后,函数返回值为 0 表示成功,否则表示失败并返回错误代码。
实现简单的字符设备驱动程序,要求能对字符设备执行打开、读、写、I/O控制和关闭这些基本操作。模块由一组函数和数据结构组成,用来实现一种文件系统、一个驱动程序和其他内核上层功能。 编写设备驱动源程序,即编写内核模块文件chardev.c和Makefile文件: static int device_open(struct inode *inode,struct file *file) //打开设备 static int device_release(struct inode *inode,struct file *file) //释放设备 static ssize_t device_read(struct file *filp,char *buffer,size_t length,loff_t*offset) //读设备 static ssize_t device_write(struct file *filp,const char *buff,size_t length,loff_t *off) //写设备 int init_chardev_module(void) //初始化字符设备 void exit_chardev_module(void) //关闭字符设备
好的,我已经理解了您的问题。以下是一个简单的字符设备驱动程序的示例代码,包括设备打开、读、写、I/O控制和关闭等基本操作。请注意,这只是一个示例,您需要根据自己的需求进行适当的修改。
chardev.c:
#include <linux/init.h>
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/uaccess.h>
#define DEVICE_NAME "chardev" //设备名称
#define BUF_LEN 80 //缓冲区大小
static int major; //主设备号
static char msg[BUF_LEN]; //缓冲区
static char *msg_ptr; //缓冲区指针
//打开设备
static int device_open(struct inode *inode, struct file *file)
{
static int counter = 0;
if (counter)
return -EBUSY;
counter++;
msg_ptr = msg;
try_module_get(THIS_MODULE);
return 0;
}
//释放设备
static int device_release(struct inode *inode, struct file *file)
{
counter--;
module_put(THIS_MODULE);
return 0;
}
//读设备
static ssize_t device_read(struct file *filp, char *buffer, size_t length, loff_t *offset)
{
int bytes_read = 0;
if (*msg_ptr == 0)
return 0;
while (length && *msg_ptr) {
put_user(*(msg_ptr++), buffer++);
length--;
bytes_read++;
}
return bytes_read;
}
//写设备
static ssize_t device_write(struct file *filp, const char *buff, size_t length, loff_t *off)
{
int i;
for (i = 0; i < length && i < BUF_LEN; i++)
get_user(msg[i], buff + i);
msg_ptr = msg;
return i;
}
//I/O控制
static long device_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
{
switch (cmd) {
case 1:
printk(KERN_INFO "IOCTL command 1\n");
break;
case 2:
printk(KERN_INFO "IOCTL command 2\n");
break;
default:
return -EINVAL;
}
return 0;
}
//设备文件操作结构体
static struct file_operations fops = {
.owner = THIS_MODULE,
.read = device_read,
.write = device_write,
.unlocked_ioctl = device_ioctl,
.open = device_open,
.release = device_release
};
//初始化字符设备
int init_chardev_module(void)
{
major = register_chrdev(0, DEVICE_NAME, &fops);
if (major < 0) {
printk(KERN_ALERT "Registering char device failed with %d\n", major);
return major;
}
printk(KERN_INFO "Chardev module loaded with major number %d\n", major);
return 0;
}
//关闭字符设备
void exit_chardev_module(void)
{
unregister_chrdev(major, DEVICE_NAME);
printk(KERN_INFO "Chardev module unloaded\n");
}
module_init(init_chardev_module);
module_exit(exit_chardev_module);
Makefile:
obj-m := chardev.o
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
在使用前,请确定您的系统已经安装了适当的编译工具链和内核头文件。可以使用以下命令来编译和加载模块:
make
sudo insmod chardev.ko
您可以使用以下命令来测试设备驱动程序:
echo "Hello, world!" > /dev/chardev
cat /dev/chardev
sudo ioctl /dev/chardev 1
希望这能帮助您了解如何编写一个简单的字符设备驱动程序。
阅读全文