1. ホーム
  2. c

[解決済み] ioctl呼び出しプログラムコンパイルエラー

2022-02-09 03:10:09

質問内容

カーネルモジュールを呼び出したい driver.ko ioctl コンパイル時に以下のようなエラーが発生しました。

header.h:13:38: error: expected expression before ‘char’
 #define IOCTL_CMD _IORW(MAGIC_NO, 0, char *)

定義上、私は正しい引数を置く: _IORW(int type, int number, data_type)

main.c

#include <stdio.h>
#include <fcntl.h>
#include <string.h>
#include "header.h"

int main()
{
    int fd;
    char * msg = "5";
    fd = open(DEVICE_PATH, O_RDWR);
    ioctl(fd, IOCTL_CMD, msg);
    printf("ioctl executed\n");
    close(fd);
    return 0;
}

header.h

#include <linux/ioctl.h>
#include <linux/kdev_t.h> /* for MKDEV */

#define DEVICE_NAME "driver"
#define DEVICE_PATH "/dev/driver"
#define WRITE 0
static int major_no;

#define MAGIC_NO '4'
    /* 
     * Set the message of the device driver 
     */
#define IOCTL_CMD _IORW(MAGIC_NO, 0, char *)

解決方法は?

マクロ _IORW はLinuxのヘッダには存在しないようです。 _IOWR の代わりに また、私はあなたが使っている char * はここでは正しいです。それは、最後のパラメータが ioctl のアドレスは char * 変数で、文字列ではありません。