私の知る限り、ioctl 番号はドライバーによって適切に定義され、カーネルに登録されています。
ジョイスティックの状態を照会するために、Python でいくつかのコードをいじっていました。ジョイスティック api に関するこのドキュメント、ioctl 番号に関するこのドキュメント、および python fcntl モジュールからのこのドキュメントを読みました。
値をテストおよびクエリするための C プログラムを作成しました。Python は、 C マクロを実装するためにここから取得したコードを使用してテストします。_IOR()
カーネル ドライバーの定義:
monolith@monolith ~/temp $ grep JSIOCGAXES /usr/include/* -r
/usr/include/linux/joystick.h:#define JSIOCGAXES _IOR('j', 0x11, __u8)
Cプログラム
#include <stdio.h>
#include <linux/joystick.h>
#include <fcntl.h>
int main() {
int fd = open("/dev/input/js0", O_RDONLY);
printf("Ioctl Number: (int)%d (hex)%x\n", JSIOCGAXES, JSIOCGAXES);
char number;
ioctl(fd, JSIOCGAXES, &number);
printf("Number of axes: %d\n", number);
close(fd);
return 0;
}
C プログラムの出力:
monolith@monolith ~/temp $ ./test
Ioctl Number: (int)-2147390959 (hex)80016a11
Number of axes: 6
Python 出力
# check if _IOR results in the used ioctl number in C
>>> _IOR(ord('j'), 0x11, 'c')
-2147390959
>>> file = open("/dev/input/js0")
# use that integer
>>> fcntl.ioctl(file, -2147390959)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IOError: [Errno 14] Bad address
# ask what hex value is
>>> "%x" % -2147390959
'-7ffe95ef'
# WHY THIS HEX CONVERSION DIFFERS?
>>> fcntl.ioctl(file, -0x7ffe95ef)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IOError: [Errno 14] Bad address
# Use the hex value from the C program output
>>> fcntl.ioctl(file, 0x80016a11)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IOError: [Errno 14] Bad address
その ioctl 番号でファイル記述子を照会できない理由はありますか? ioctl()
関数は、メソッドが実装されfcntl()
たファイル記述子またはオブジェクトを取るためfileno()
、オブジェクトからエラーを破棄しfile
ます。
数値変換と型に問題があるのかもしれませんが、わかりません...手がかりはありますか?