Linuxカーネルでchar []をintに変換する方法
入力されたテキストが実際にintであることを検証して?
int procfile_write(struct file *file, const char *buffer, unsigned long count,
void *data)
{
char procfs_buffer[PROCFS_MAX_SIZE];
/* get buffer size */
unsigned long procfs_buffer_size = count;
if (procfs_buffer_size > PROCFS_MAX_SIZE ) {
procfs_buffer_size = PROCFS_MAX_SIZE;
}
/* write data to the buffer */
if ( copy_from_user(procfs_buffer, buffer, procfs_buffer_size) ) {
return -EFAULT;
}
int = buffer2int(procfs_buffer, procfs_buffer_size);
return procfs_buffer_size;
}
使いやすいLinuxソースツリーの _#include <include/linux/kernel.h>
_ にあるkstrtol()
のさまざまな化身をご覧ください。
どちらが必要かは、_*buffer
_がユーザーアドレスかカーネルアドレスか、およびエラー処理/バッファの内容のチェックの必要性がどれだけ厳しいかによって異なります(たとえば、_123qx
_は無効か、 _123
_?)を返します。
最小限の実行可能kstrtoull_from_user
debugfs
の例
kstrto*_from_user
ファミリは、ユーザーデータを処理するときに非常に便利です。
kstrto.c:
#include <linux/debugfs.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <uapi/linux/stat.h> /* S_IRUSR */
static struct dentry *toplevel_file;
static ssize_t write(struct file *filp, const char __user *buf, size_t len, loff_t *off)
{
int ret;
unsigned long long res;
ret = kstrtoull_from_user(buf, len, 10, &res);
if (ret) {
/* Negative error code. */
pr_info("ko = %d\n", ret);
return ret;
} else {
pr_info("ok = %llu\n", res);
*off= len;
return len;
}
}
static const struct file_operations fops = {
.owner = THIS_MODULE,
.write = write,
};
static int myinit(void)
{
toplevel_file = debugfs_create_file("lkmc_kstrto", S_IWUSR, NULL, NULL, &fops);
if (!toplevel_file) {
return -1;
}
return 0;
}
static void myexit(void)
{
debugfs_remove(toplevel_file);
}
module_init(myinit)
module_exit(myexit)
MODULE_LICENSE("GPL");
使用法:
insmod kstrto.ko
cd /sys/kernel/debug
echo 1234 > lkmc_kstrto
echo foobar > lkmc_kstrto
Dmesg出力:
ok = 1234
ko = -22
Linuxカーネル4.16で このQEMU + Buildroot設定 を使用してテストされています。
この特定の例では、 debugfs_create_u32
代わりに。
Linuxカーネルでは多くの一般的な関数/マクロを使用できないため、文字列バッファから整数値を取得するために直接関数を使用することはできません。
これは私がこれを行うために長い間使用してきたコードであり、すべての* NIXフレーバー(おそらく変更なしで)で使用できます。
これはコードの修正された形式であり、私はオープンソースプロジェクトから長い間使用していました(今の名前は覚えていません)。
#define ISSPACE(c) ((c) == ' ' || ((c) >= '\t' && (c) <= '\r'))
#define ISASCII(c) (((c) & ~0x7f) == 0)
#define ISUPPER(c) ((c) >= 'A' && (c) <= 'Z')
#define ISLOWER(c) ((c) >= 'a' && (c) <= 'z')
#define ISALPHA(c) (ISUPPER(c) || ISLOWER(c))
#define ISDIGIT(c) ((c) >= '0' && (c) <= '9')
unsigned long mystr_toul (
char* nstr,
char** endptr,
int base)
{
#if !(defined(__KERNEL__))
return strtoul (nstr, endptr, base); /* user mode */
#else
char* s = nstr;
unsigned long acc;
unsigned char c;
unsigned long cutoff;
int neg = 0, any, cutlim;
do
{
c = *s++;
} while (ISSPACE(c));
if (c == '-')
{
neg = 1;
c = *s++;
}
else if (c == '+')
c = *s++;
if ((base == 0 || base == 16) &&
c == '0' && (*s == 'x' || *s == 'X'))
{
c = s[1];
s += 2;
base = 16;
}
if (base == 0)
base = c == '0' ? 8 : 10;
cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
for (acc = 0, any = 0; ; c = *s++)
{
if (!ISASCII(c))
break;
if (ISDIGIT(c))
c -= '0';
else if (ISALPHA(c))
c -= ISUPPER(c) ? 'A' - 10 : 'a' - 10;
else
break;
if (c >= base)
break;
if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
any = -1;
else
{
any = 1;
acc *= base;
acc += c;
}
}
if (any < 0)
{
acc = INT_MAX;
}
else if (neg)
acc = -acc;
if (endptr != 0)
*((const char **)endptr) = any ? s - 1 : nstr;
return (acc);
#endif
}
strtoul
またはstrtol
を使用できます。ここにmanページへのリンクがあります:
http://www.kernel.org/doc/man-pages/online/pages/man3/strtoul.3.html
http://www.kernel.org/doc/man-pages/online/pages/man3/strtol.3.html
文字列ストリームからスキャンするためにsscanf()(カーネルバージョン)を使用し、2.6.39-gentoo-r3で動作します。率直に言って、simple_strtol()をカーネルで動作させることはできませんでした-現在、これが私のボックスで動作しない理由を理解しています。
...
memcpy(bufActual, calc_buffer, calc_buffer_size);
/* a = simple_strtol(bufActual, NULL, 10); */ // Could not get this to work
sscanf(bufActual, "%c%ld", &opr, &a); // places '+' in opr and a=20 for bufActual = "20+\0"
...