ユーザー空間とカーネル空間の間で通信するために netlink を使用して Linux ドライバーを作成しています。しかし、ネットリンクが Linux カーネル >=2.6.24 から変更されたため、役立つ資料が見つかりません。netlink ソケットの作成方法について提案してくれる人はいますか? 前もって感謝します!
12750 次
2 に答える
7
以下のコードは、netlink を使用してユーザー空間アプリケーションからカーネル モジュールにデータを送信する基本を示しています。このコードは、 libnlの git バージョン (ef8ba32) を備えた Linux 2.6.28.9 で動作します。詳細については、libnl のドキュメントと、 netlink を広く使用しているiwのコードを確認してください。
カーネル
#include <linux/kernel.h>
#include <linux/module.h>
#include <net/sock.h>
#include <net/netlink.h>
#define MY_MSG_TYPE (0x10 + 2) // + 2 is arbitrary. same value for kern/usr
static struct sock *my_nl_sock;
DEFINE_MUTEX(my_mutex);
static int
my_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
{
int type;
char *data;
type = nlh->nlmsg_type;
if (type != MY_MSG_TYPE) {
printk("%s: expect %#x got %#x\n", __func__, MY_MSG_TYPE, type);
return -EINVAL;
}
data = NLMSG_DATA(nlh);
printk("%s: %02x %02x %02x %02x %02x %02x %02x %02x\n", __func__,
data[0], data[1], data[2], data[3],
data[4], data[5], data[6], data[7]);
return 0;
}
static void
my_nl_rcv_msg(struct sk_buff *skb)
{
mutex_lock(&my_mutex);
netlink_rcv_skb(skb, &my_rcv_msg);
mutex_unlock(&my_mutex);
}
static int
my_init(void)
{
my_nl_sock = netlink_kernel_create(&init_net, NETLINK_USERSOCK, 0,
my_nl_rcv_msg, NULL, THIS_MODULE);
if (!my_nl_sock) {
printk(KERN_ERR "%s: receive handler registration failed\n", __func__);
return -ENOMEM;
}
return 0;
}
static void
my_exit(void)
{
if (my_nl_sock) {
netlink_kernel_release(my_nl_sock);
}
}
module_init(my_init);
module_exit(my_exit);
ユーザースペース
#include <stdio.h>
#include <stdlib.h>
#include <netlink/netlink.h>
#define MY_MSG_TYPE (0x10 + 2) // + 2 is arbitrary but is the same for kern/usr
int
main(int argc, char *argv[])
{
struct nl_sock *nls;
char msg[] = { 0xde, 0xad, 0xbe, 0xef, 0x90, 0x0d, 0xbe, 0xef };
int ret;
nls = nl_socket_alloc();
if (!nls) {
printf("bad nl_socket_alloc\n");
return EXIT_FAILURE;
}
ret = nl_connect(nls, NETLINK_USERSOCK);
if (ret < 0) {
nl_perror(ret, "nl_connect");
nl_socket_free(nls);
return EXIT_FAILURE;
}
ret = nl_send_simple(nls, MY_MSG_TYPE, 0, msg, sizeof(msg));
if (ret < 0) {
nl_perror(ret, "nl_send_simple");
nl_close(nls);
nl_socket_free(nls);
return EXIT_FAILURE;
} else {
printf("sent %d bytes\n", ret);
}
nl_close(nls);
nl_socket_free(nls);
return EXIT_SUCCESS;
}
于 2009-06-22T17:42:38.963 に答える