From: gregkh at linuxfoundation.org (Greg KH)
Subject: [PATCH v5 1/2] char: sparc64: Add privileged ADI driver
Date: Mon, 23 Apr 2018 19:52:16 +0200 [thread overview]
Message-ID: <20180423175216.GA16904@kroah.com> (raw)
In-Reply-To: <20180423173332.561489-2-tom.hromatka@oracle.com>
On Mon, Apr 23, 2018 at 11:33:31AM -0600, Tom Hromatka wrote:
> SPARC M7 and newer processors utilize ADI to version and
> protect memory. This driver is capable of reading/writing
> ADI/MCD versions from privileged user space processes.
> Addresses in the adi file are mapped linearly to physical
> memory at a ratio of 1:adi_blksz. Thus, a read (or write)
> of offset K in the file operates upon the ADI version at
> physical address K * adi_blksz. The version information
> is encoded as one version per byte. Intended consumers
> are makedumpfile and crash.
What do you mean by "crash"? Should this tie into the pstore
infrastructure, or is this just a userspace thing? Just curious.
Minor code comments below now that the license stuff is correct, I
decided to read the code :)
> +#include <linux/kernel.h>
> +#include <linux/miscdevice.h>
> +#include <linux/module.h>
> +#include <linux/proc_fs.h>
> +#include <linux/slab.h>
> +#include <linux/uaccess.h>
> +#include <asm/asi.h>
> +
> +#define MODULE_NAME "adi"
What's wrong with KBUILD_MODNAME? Just use that instead of MODULE_NAME
later on in the file.
> +#define MAX_BUF_SZ 4096
PAGE_SIZE? Just curious.
> +
> +static int adi_open(struct inode *inode, struct file *file)
> +{
> + file->f_mode |= FMODE_UNSIGNED_OFFSET;
That's odd, why?
> + return 0;
> +}
> +
> +static int read_mcd_tag(unsigned long addr)
> +{
> + long err;
> + int ver;
> +
> + __asm__ __volatile__(
> + "1: ldxa [%[addr]] %[asi], %[ver]\n"
> + " mov 0, %[err]\n"
> + "2:\n"
> + " .section .fixup,#alloc,#execinstr\n"
> + " .align 4\n"
> + "3: sethi %%hi(2b), %%g1\n"
> + " jmpl %%g1 + %%lo(2b), %%g0\n"
> + " mov %[invalid], %[err]\n"
> + " .previous\n"
> + " .section __ex_table, \"a\"\n"
> + " .align 4\n"
> + " .word 1b, 3b\n"
> + " .previous\n"
> + : [ver] "=r" (ver), [err] "=r" (err)
> + : [addr] "r" (addr), [invalid] "i" (EFAULT),
> + [asi] "i" (ASI_MCD_REAL)
> + : "memory", "g1"
> + );
> +
> + if (err)
> + return -EFAULT;
> + else
> + return ver;
> +}
> +
> +static ssize_t adi_read(struct file *file, char __user *buf,
> + size_t count, loff_t *offp)
> +{
> + size_t ver_buf_sz, bytes_read = 0;
> + int ver_buf_idx = 0;
> + loff_t offset;
> + u8 *ver_buf;
> + ssize_t ret;
> +
> + ver_buf_sz = min_t(size_t, count, MAX_BUF_SZ);
> + ver_buf = kmalloc(ver_buf_sz, GFP_KERNEL);
> + if (!ver_buf)
> + return -ENOMEM;
> +
> + offset = (*offp) * adi_blksize();
> +
> + while (bytes_read < count) {
> + ret = read_mcd_tag(offset);
> + if (ret < 0)
> + goto out;
> +
> + ver_buf[ver_buf_idx] = (u8)ret;
Are you sure ret fits in 8 bits here?
> + ver_buf_idx++;
> + offset += adi_blksize();
> +
> + if (ver_buf_idx >= ver_buf_sz) {
> + if (copy_to_user(buf + bytes_read, ver_buf,
> + ver_buf_sz)) {
> + ret = -EFAULT;
> + goto out;
> + }
> +
> + bytes_read += ver_buf_sz;
> + ver_buf_idx = 0;
> +
> + ver_buf_sz = min(count - bytes_read,
> + (size_t)MAX_BUF_SZ);
> + }
> + }
> +
> + (*offp) += bytes_read;
> + ret = bytes_read;
> +out:
> + kfree(ver_buf);
> + return ret;
> +}
> +
> +static int set_mcd_tag(unsigned long addr, u8 ver)
> +{
> + long err;
> +
> + __asm__ __volatile__(
> + "1: stxa %[ver], [%[addr]] %[asi]\n"
> + " mov 0, %[err]\n"
> + "2:\n"
> + " .section .fixup,#alloc,#execinstr\n"
> + " .align 4\n"
> + "3: sethi %%hi(2b), %%g1\n"
> + " jmpl %%g1 + %%lo(2b), %%g0\n"
> + " mov %[invalid], %[err]\n"
> + " .previous\n"
> + " .section __ex_table, \"a\"\n"
> + " .align 4\n"
> + " .word 1b, 3b\n"
> + " .previous\n"
> + : [err] "=r" (err)
> + : [ver] "r" (ver), [addr] "r" (addr),
> + [invalid] "i" (EFAULT), [asi] "i" (ASI_MCD_REAL)
> + : "memory", "g1"
> + );
> +
> + if (err)
> + return -EFAULT;
> + else
> + return ver;
> +}
> +
> +static ssize_t adi_write(struct file *file, const char __user *buf,
> + size_t count, loff_t *offp)
> +{
> + size_t ver_buf_sz, bytes_written = 0;
> + loff_t offset;
> + u8 *ver_buf;
> + ssize_t ret;
> + int i;
> +
> + if (count <= 0)
> + return -EINVAL;
> +
> + ver_buf_sz = min_t(size_t, count, MAX_BUF_SZ);
> + ver_buf = kmalloc(ver_buf_sz, (size_t)GFP_KERNEL);
(size_t) for GFP_KERNEL? That's really odd looking.
> + if (!ver_buf)
> + return -ENOMEM;
> +
> + offset = (*offp) * adi_blksize();
> +
> + do {
> + if (copy_from_user(ver_buf, &buf[bytes_written],
> + ver_buf_sz)) {
> + ret = -EFAULT;
> + goto out;
> + }
> +
> + for (i = 0; i < ver_buf_sz; i++) {
> + ret = set_mcd_tag(offset, ver_buf[i]);
> + if (ret < 0)
> + goto out;
> +
> + offset += adi_blksize();
> + }
> +
> + bytes_written += ver_buf_sz;
> + ver_buf_sz = min(count - bytes_written, (size_t)MAX_BUF_SZ);
> + } while (bytes_written < count);
> +
> + (*offp) += bytes_written;
> + ret = bytes_written;
> +out:
> + __asm__ __volatile__("membar #Sync");
> + kfree(ver_buf);
> + return ret;
> +}
> +
> +static loff_t adi_llseek(struct file *file, loff_t offset, int whence)
> +{
> + loff_t ret = -EINVAL;
> +
> + switch (whence) {
> + case SEEK_END:
> + case SEEK_DATA:
> + case SEEK_HOLE:
> + /* unsupported */
> + return -EINVAL;
> + case SEEK_CUR:
> + if (offset == 0)
> + return file->f_pos;
> +
> + offset += file->f_pos;
> + break;
> + case SEEK_SET:
> + break;
> + }
> +
> + if (offset != file->f_pos) {
> + file->f_pos = offset;
> + file->f_version = 0;
> + ret = offset;
> + }
> +
> + return ret;
> +}
Why can't you use default_llseek here? Why do you not allow HOLE and
others?
Anyway, just tiny questions, all are trivial and not really a big deal
if you have tested it on your hardware. I'm guessing this will go
through the SPARC tree? If so feel free to add:
Reviewed-by: Greg Kroah-Hartman <gregkh at linuxfoundation.org>
Or if you want/need me to take it through my char/misc tree, just let me
know and I can.
thanks,
greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kselftest" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: gregkh@linuxfoundation.org (Greg KH)
Subject: [PATCH v5 1/2] char: sparc64: Add privileged ADI driver
Date: Mon, 23 Apr 2018 19:52:16 +0200 [thread overview]
Message-ID: <20180423175216.GA16904@kroah.com> (raw)
Message-ID: <20180423175216.xNreCWu8x1Ss86kMFaJe4TeP2QGmwbukoVUjzi0jZWI@z> (raw)
In-Reply-To: <20180423173332.561489-2-tom.hromatka@oracle.com>
On Mon, Apr 23, 2018@11:33:31AM -0600, Tom Hromatka wrote:
> SPARC M7 and newer processors utilize ADI to version and
> protect memory. This driver is capable of reading/writing
> ADI/MCD versions from privileged user space processes.
> Addresses in the adi file are mapped linearly to physical
> memory at a ratio of 1:adi_blksz. Thus, a read (or write)
> of offset K in the file operates upon the ADI version at
> physical address K * adi_blksz. The version information
> is encoded as one version per byte. Intended consumers
> are makedumpfile and crash.
What do you mean by "crash"? Should this tie into the pstore
infrastructure, or is this just a userspace thing? Just curious.
Minor code comments below now that the license stuff is correct, I
decided to read the code :)
> +#include <linux/kernel.h>
> +#include <linux/miscdevice.h>
> +#include <linux/module.h>
> +#include <linux/proc_fs.h>
> +#include <linux/slab.h>
> +#include <linux/uaccess.h>
> +#include <asm/asi.h>
> +
> +#define MODULE_NAME "adi"
What's wrong with KBUILD_MODNAME? Just use that instead of MODULE_NAME
later on in the file.
> +#define MAX_BUF_SZ 4096
PAGE_SIZE? Just curious.
> +
> +static int adi_open(struct inode *inode, struct file *file)
> +{
> + file->f_mode |= FMODE_UNSIGNED_OFFSET;
That's odd, why?
> + return 0;
> +}
> +
> +static int read_mcd_tag(unsigned long addr)
> +{
> + long err;
> + int ver;
> +
> + __asm__ __volatile__(
> + "1: ldxa [%[addr]] %[asi], %[ver]\n"
> + " mov 0, %[err]\n"
> + "2:\n"
> + " .section .fixup,#alloc,#execinstr\n"
> + " .align 4\n"
> + "3: sethi %%hi(2b), %%g1\n"
> + " jmpl %%g1 + %%lo(2b), %%g0\n"
> + " mov %[invalid], %[err]\n"
> + " .previous\n"
> + " .section __ex_table, \"a\"\n"
> + " .align 4\n"
> + " .word 1b, 3b\n"
> + " .previous\n"
> + : [ver] "=r" (ver), [err] "=r" (err)
> + : [addr] "r" (addr), [invalid] "i" (EFAULT),
> + [asi] "i" (ASI_MCD_REAL)
> + : "memory", "g1"
> + );
> +
> + if (err)
> + return -EFAULT;
> + else
> + return ver;
> +}
> +
> +static ssize_t adi_read(struct file *file, char __user *buf,
> + size_t count, loff_t *offp)
> +{
> + size_t ver_buf_sz, bytes_read = 0;
> + int ver_buf_idx = 0;
> + loff_t offset;
> + u8 *ver_buf;
> + ssize_t ret;
> +
> + ver_buf_sz = min_t(size_t, count, MAX_BUF_SZ);
> + ver_buf = kmalloc(ver_buf_sz, GFP_KERNEL);
> + if (!ver_buf)
> + return -ENOMEM;
> +
> + offset = (*offp) * adi_blksize();
> +
> + while (bytes_read < count) {
> + ret = read_mcd_tag(offset);
> + if (ret < 0)
> + goto out;
> +
> + ver_buf[ver_buf_idx] = (u8)ret;
Are you sure ret fits in 8 bits here?
> + ver_buf_idx++;
> + offset += adi_blksize();
> +
> + if (ver_buf_idx >= ver_buf_sz) {
> + if (copy_to_user(buf + bytes_read, ver_buf,
> + ver_buf_sz)) {
> + ret = -EFAULT;
> + goto out;
> + }
> +
> + bytes_read += ver_buf_sz;
> + ver_buf_idx = 0;
> +
> + ver_buf_sz = min(count - bytes_read,
> + (size_t)MAX_BUF_SZ);
> + }
> + }
> +
> + (*offp) += bytes_read;
> + ret = bytes_read;
> +out:
> + kfree(ver_buf);
> + return ret;
> +}
> +
> +static int set_mcd_tag(unsigned long addr, u8 ver)
> +{
> + long err;
> +
> + __asm__ __volatile__(
> + "1: stxa %[ver], [%[addr]] %[asi]\n"
> + " mov 0, %[err]\n"
> + "2:\n"
> + " .section .fixup,#alloc,#execinstr\n"
> + " .align 4\n"
> + "3: sethi %%hi(2b), %%g1\n"
> + " jmpl %%g1 + %%lo(2b), %%g0\n"
> + " mov %[invalid], %[err]\n"
> + " .previous\n"
> + " .section __ex_table, \"a\"\n"
> + " .align 4\n"
> + " .word 1b, 3b\n"
> + " .previous\n"
> + : [err] "=r" (err)
> + : [ver] "r" (ver), [addr] "r" (addr),
> + [invalid] "i" (EFAULT), [asi] "i" (ASI_MCD_REAL)
> + : "memory", "g1"
> + );
> +
> + if (err)
> + return -EFAULT;
> + else
> + return ver;
> +}
> +
> +static ssize_t adi_write(struct file *file, const char __user *buf,
> + size_t count, loff_t *offp)
> +{
> + size_t ver_buf_sz, bytes_written = 0;
> + loff_t offset;
> + u8 *ver_buf;
> + ssize_t ret;
> + int i;
> +
> + if (count <= 0)
> + return -EINVAL;
> +
> + ver_buf_sz = min_t(size_t, count, MAX_BUF_SZ);
> + ver_buf = kmalloc(ver_buf_sz, (size_t)GFP_KERNEL);
(size_t) for GFP_KERNEL? That's really odd looking.
> + if (!ver_buf)
> + return -ENOMEM;
> +
> + offset = (*offp) * adi_blksize();
> +
> + do {
> + if (copy_from_user(ver_buf, &buf[bytes_written],
> + ver_buf_sz)) {
> + ret = -EFAULT;
> + goto out;
> + }
> +
> + for (i = 0; i < ver_buf_sz; i++) {
> + ret = set_mcd_tag(offset, ver_buf[i]);
> + if (ret < 0)
> + goto out;
> +
> + offset += adi_blksize();
> + }
> +
> + bytes_written += ver_buf_sz;
> + ver_buf_sz = min(count - bytes_written, (size_t)MAX_BUF_SZ);
> + } while (bytes_written < count);
> +
> + (*offp) += bytes_written;
> + ret = bytes_written;
> +out:
> + __asm__ __volatile__("membar #Sync");
> + kfree(ver_buf);
> + return ret;
> +}
> +
> +static loff_t adi_llseek(struct file *file, loff_t offset, int whence)
> +{
> + loff_t ret = -EINVAL;
> +
> + switch (whence) {
> + case SEEK_END:
> + case SEEK_DATA:
> + case SEEK_HOLE:
> + /* unsupported */
> + return -EINVAL;
> + case SEEK_CUR:
> + if (offset == 0)
> + return file->f_pos;
> +
> + offset += file->f_pos;
> + break;
> + case SEEK_SET:
> + break;
> + }
> +
> + if (offset != file->f_pos) {
> + file->f_pos = offset;
> + file->f_version = 0;
> + ret = offset;
> + }
> +
> + return ret;
> +}
Why can't you use default_llseek here? Why do you not allow HOLE and
others?
Anyway, just tiny questions, all are trivial and not really a big deal
if you have tested it on your hardware. I'm guessing this will go
through the SPARC tree? If so feel free to add:
Reviewed-by: Greg Kroah-Hartman <gregkh at linuxfoundation.org>
Or if you want/need me to take it through my char/misc tree, just let me
know and I can.
thanks,
greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-kselftest" in
the body of a message to majordomo at vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: Greg KH <gregkh@linuxfoundation.org>
To: sparclinux@vger.kernel.org
Subject: Re: [PATCH v5 1/2] char: sparc64: Add privileged ADI driver
Date: Mon, 23 Apr 2018 17:52:16 +0000 [thread overview]
Message-ID: <20180423175216.GA16904@kroah.com> (raw)
In-Reply-To: <20180423173332.561489-2-tom.hromatka@oracle.com>
On Mon, Apr 23, 2018 at 11:33:31AM -0600, Tom Hromatka wrote:
> SPARC M7 and newer processors utilize ADI to version and
> protect memory. This driver is capable of reading/writing
> ADI/MCD versions from privileged user space processes.
> Addresses in the adi file are mapped linearly to physical
> memory at a ratio of 1:adi_blksz. Thus, a read (or write)
> of offset K in the file operates upon the ADI version at
> physical address K * adi_blksz. The version information
> is encoded as one version per byte. Intended consumers
> are makedumpfile and crash.
What do you mean by "crash"? Should this tie into the pstore
infrastructure, or is this just a userspace thing? Just curious.
Minor code comments below now that the license stuff is correct, I
decided to read the code :)
> +#include <linux/kernel.h>
> +#include <linux/miscdevice.h>
> +#include <linux/module.h>
> +#include <linux/proc_fs.h>
> +#include <linux/slab.h>
> +#include <linux/uaccess.h>
> +#include <asm/asi.h>
> +
> +#define MODULE_NAME "adi"
What's wrong with KBUILD_MODNAME? Just use that instead of MODULE_NAME
later on in the file.
> +#define MAX_BUF_SZ 4096
PAGE_SIZE? Just curious.
> +
> +static int adi_open(struct inode *inode, struct file *file)
> +{
> + file->f_mode |= FMODE_UNSIGNED_OFFSET;
That's odd, why?
> + return 0;
> +}
> +
> +static int read_mcd_tag(unsigned long addr)
> +{
> + long err;
> + int ver;
> +
> + __asm__ __volatile__(
> + "1: ldxa [%[addr]] %[asi], %[ver]\n"
> + " mov 0, %[err]\n"
> + "2:\n"
> + " .section .fixup,#alloc,#execinstr\n"
> + " .align 4\n"
> + "3: sethi %%hi(2b), %%g1\n"
> + " jmpl %%g1 + %%lo(2b), %%g0\n"
> + " mov %[invalid], %[err]\n"
> + " .previous\n"
> + " .section __ex_table, \"a\"\n"
> + " .align 4\n"
> + " .word 1b, 3b\n"
> + " .previous\n"
> + : [ver] "=r" (ver), [err] "=r" (err)
> + : [addr] "r" (addr), [invalid] "i" (EFAULT),
> + [asi] "i" (ASI_MCD_REAL)
> + : "memory", "g1"
> + );
> +
> + if (err)
> + return -EFAULT;
> + else
> + return ver;
> +}
> +
> +static ssize_t adi_read(struct file *file, char __user *buf,
> + size_t count, loff_t *offp)
> +{
> + size_t ver_buf_sz, bytes_read = 0;
> + int ver_buf_idx = 0;
> + loff_t offset;
> + u8 *ver_buf;
> + ssize_t ret;
> +
> + ver_buf_sz = min_t(size_t, count, MAX_BUF_SZ);
> + ver_buf = kmalloc(ver_buf_sz, GFP_KERNEL);
> + if (!ver_buf)
> + return -ENOMEM;
> +
> + offset = (*offp) * adi_blksize();
> +
> + while (bytes_read < count) {
> + ret = read_mcd_tag(offset);
> + if (ret < 0)
> + goto out;
> +
> + ver_buf[ver_buf_idx] = (u8)ret;
Are you sure ret fits in 8 bits here?
> + ver_buf_idx++;
> + offset += adi_blksize();
> +
> + if (ver_buf_idx >= ver_buf_sz) {
> + if (copy_to_user(buf + bytes_read, ver_buf,
> + ver_buf_sz)) {
> + ret = -EFAULT;
> + goto out;
> + }
> +
> + bytes_read += ver_buf_sz;
> + ver_buf_idx = 0;
> +
> + ver_buf_sz = min(count - bytes_read,
> + (size_t)MAX_BUF_SZ);
> + }
> + }
> +
> + (*offp) += bytes_read;
> + ret = bytes_read;
> +out:
> + kfree(ver_buf);
> + return ret;
> +}
> +
> +static int set_mcd_tag(unsigned long addr, u8 ver)
> +{
> + long err;
> +
> + __asm__ __volatile__(
> + "1: stxa %[ver], [%[addr]] %[asi]\n"
> + " mov 0, %[err]\n"
> + "2:\n"
> + " .section .fixup,#alloc,#execinstr\n"
> + " .align 4\n"
> + "3: sethi %%hi(2b), %%g1\n"
> + " jmpl %%g1 + %%lo(2b), %%g0\n"
> + " mov %[invalid], %[err]\n"
> + " .previous\n"
> + " .section __ex_table, \"a\"\n"
> + " .align 4\n"
> + " .word 1b, 3b\n"
> + " .previous\n"
> + : [err] "=r" (err)
> + : [ver] "r" (ver), [addr] "r" (addr),
> + [invalid] "i" (EFAULT), [asi] "i" (ASI_MCD_REAL)
> + : "memory", "g1"
> + );
> +
> + if (err)
> + return -EFAULT;
> + else
> + return ver;
> +}
> +
> +static ssize_t adi_write(struct file *file, const char __user *buf,
> + size_t count, loff_t *offp)
> +{
> + size_t ver_buf_sz, bytes_written = 0;
> + loff_t offset;
> + u8 *ver_buf;
> + ssize_t ret;
> + int i;
> +
> + if (count <= 0)
> + return -EINVAL;
> +
> + ver_buf_sz = min_t(size_t, count, MAX_BUF_SZ);
> + ver_buf = kmalloc(ver_buf_sz, (size_t)GFP_KERNEL);
(size_t) for GFP_KERNEL? That's really odd looking.
> + if (!ver_buf)
> + return -ENOMEM;
> +
> + offset = (*offp) * adi_blksize();
> +
> + do {
> + if (copy_from_user(ver_buf, &buf[bytes_written],
> + ver_buf_sz)) {
> + ret = -EFAULT;
> + goto out;
> + }
> +
> + for (i = 0; i < ver_buf_sz; i++) {
> + ret = set_mcd_tag(offset, ver_buf[i]);
> + if (ret < 0)
> + goto out;
> +
> + offset += adi_blksize();
> + }
> +
> + bytes_written += ver_buf_sz;
> + ver_buf_sz = min(count - bytes_written, (size_t)MAX_BUF_SZ);
> + } while (bytes_written < count);
> +
> + (*offp) += bytes_written;
> + ret = bytes_written;
> +out:
> + __asm__ __volatile__("membar #Sync");
> + kfree(ver_buf);
> + return ret;
> +}
> +
> +static loff_t adi_llseek(struct file *file, loff_t offset, int whence)
> +{
> + loff_t ret = -EINVAL;
> +
> + switch (whence) {
> + case SEEK_END:
> + case SEEK_DATA:
> + case SEEK_HOLE:
> + /* unsupported */
> + return -EINVAL;
> + case SEEK_CUR:
> + if (offset = 0)
> + return file->f_pos;
> +
> + offset += file->f_pos;
> + break;
> + case SEEK_SET:
> + break;
> + }
> +
> + if (offset != file->f_pos) {
> + file->f_pos = offset;
> + file->f_version = 0;
> + ret = offset;
> + }
> +
> + return ret;
> +}
Why can't you use default_llseek here? Why do you not allow HOLE and
others?
Anyway, just tiny questions, all are trivial and not really a big deal
if you have tested it on your hardware. I'm guessing this will go
through the SPARC tree? If so feel free to add:
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Or if you want/need me to take it through my char/misc tree, just let me
know and I can.
thanks,
greg k-h
WARNING: multiple messages have this Message-ID (diff)
From: Greg KH <gregkh@linuxfoundation.org>
To: Tom Hromatka <tom.hromatka@oracle.com>
Cc: davem@davemloft.net, sparclinux@vger.kernel.org, arnd@arndb.de,
linux-kernel@vger.kernel.org, shuah@kernel.org,
linux-kselftest@vger.kernel.org, allen.pais@oracle.com,
khalid.aziz@oracle.com, shannon.nelson@oracle.com,
anthony.yznaga@oracle.com
Subject: Re: [PATCH v5 1/2] char: sparc64: Add privileged ADI driver
Date: Mon, 23 Apr 2018 19:52:16 +0200 [thread overview]
Message-ID: <20180423175216.GA16904@kroah.com> (raw)
In-Reply-To: <20180423173332.561489-2-tom.hromatka@oracle.com>
On Mon, Apr 23, 2018 at 11:33:31AM -0600, Tom Hromatka wrote:
> SPARC M7 and newer processors utilize ADI to version and
> protect memory. This driver is capable of reading/writing
> ADI/MCD versions from privileged user space processes.
> Addresses in the adi file are mapped linearly to physical
> memory at a ratio of 1:adi_blksz. Thus, a read (or write)
> of offset K in the file operates upon the ADI version at
> physical address K * adi_blksz. The version information
> is encoded as one version per byte. Intended consumers
> are makedumpfile and crash.
What do you mean by "crash"? Should this tie into the pstore
infrastructure, or is this just a userspace thing? Just curious.
Minor code comments below now that the license stuff is correct, I
decided to read the code :)
> +#include <linux/kernel.h>
> +#include <linux/miscdevice.h>
> +#include <linux/module.h>
> +#include <linux/proc_fs.h>
> +#include <linux/slab.h>
> +#include <linux/uaccess.h>
> +#include <asm/asi.h>
> +
> +#define MODULE_NAME "adi"
What's wrong with KBUILD_MODNAME? Just use that instead of MODULE_NAME
later on in the file.
> +#define MAX_BUF_SZ 4096
PAGE_SIZE? Just curious.
> +
> +static int adi_open(struct inode *inode, struct file *file)
> +{
> + file->f_mode |= FMODE_UNSIGNED_OFFSET;
That's odd, why?
> + return 0;
> +}
> +
> +static int read_mcd_tag(unsigned long addr)
> +{
> + long err;
> + int ver;
> +
> + __asm__ __volatile__(
> + "1: ldxa [%[addr]] %[asi], %[ver]\n"
> + " mov 0, %[err]\n"
> + "2:\n"
> + " .section .fixup,#alloc,#execinstr\n"
> + " .align 4\n"
> + "3: sethi %%hi(2b), %%g1\n"
> + " jmpl %%g1 + %%lo(2b), %%g0\n"
> + " mov %[invalid], %[err]\n"
> + " .previous\n"
> + " .section __ex_table, \"a\"\n"
> + " .align 4\n"
> + " .word 1b, 3b\n"
> + " .previous\n"
> + : [ver] "=r" (ver), [err] "=r" (err)
> + : [addr] "r" (addr), [invalid] "i" (EFAULT),
> + [asi] "i" (ASI_MCD_REAL)
> + : "memory", "g1"
> + );
> +
> + if (err)
> + return -EFAULT;
> + else
> + return ver;
> +}
> +
> +static ssize_t adi_read(struct file *file, char __user *buf,
> + size_t count, loff_t *offp)
> +{
> + size_t ver_buf_sz, bytes_read = 0;
> + int ver_buf_idx = 0;
> + loff_t offset;
> + u8 *ver_buf;
> + ssize_t ret;
> +
> + ver_buf_sz = min_t(size_t, count, MAX_BUF_SZ);
> + ver_buf = kmalloc(ver_buf_sz, GFP_KERNEL);
> + if (!ver_buf)
> + return -ENOMEM;
> +
> + offset = (*offp) * adi_blksize();
> +
> + while (bytes_read < count) {
> + ret = read_mcd_tag(offset);
> + if (ret < 0)
> + goto out;
> +
> + ver_buf[ver_buf_idx] = (u8)ret;
Are you sure ret fits in 8 bits here?
> + ver_buf_idx++;
> + offset += adi_blksize();
> +
> + if (ver_buf_idx >= ver_buf_sz) {
> + if (copy_to_user(buf + bytes_read, ver_buf,
> + ver_buf_sz)) {
> + ret = -EFAULT;
> + goto out;
> + }
> +
> + bytes_read += ver_buf_sz;
> + ver_buf_idx = 0;
> +
> + ver_buf_sz = min(count - bytes_read,
> + (size_t)MAX_BUF_SZ);
> + }
> + }
> +
> + (*offp) += bytes_read;
> + ret = bytes_read;
> +out:
> + kfree(ver_buf);
> + return ret;
> +}
> +
> +static int set_mcd_tag(unsigned long addr, u8 ver)
> +{
> + long err;
> +
> + __asm__ __volatile__(
> + "1: stxa %[ver], [%[addr]] %[asi]\n"
> + " mov 0, %[err]\n"
> + "2:\n"
> + " .section .fixup,#alloc,#execinstr\n"
> + " .align 4\n"
> + "3: sethi %%hi(2b), %%g1\n"
> + " jmpl %%g1 + %%lo(2b), %%g0\n"
> + " mov %[invalid], %[err]\n"
> + " .previous\n"
> + " .section __ex_table, \"a\"\n"
> + " .align 4\n"
> + " .word 1b, 3b\n"
> + " .previous\n"
> + : [err] "=r" (err)
> + : [ver] "r" (ver), [addr] "r" (addr),
> + [invalid] "i" (EFAULT), [asi] "i" (ASI_MCD_REAL)
> + : "memory", "g1"
> + );
> +
> + if (err)
> + return -EFAULT;
> + else
> + return ver;
> +}
> +
> +static ssize_t adi_write(struct file *file, const char __user *buf,
> + size_t count, loff_t *offp)
> +{
> + size_t ver_buf_sz, bytes_written = 0;
> + loff_t offset;
> + u8 *ver_buf;
> + ssize_t ret;
> + int i;
> +
> + if (count <= 0)
> + return -EINVAL;
> +
> + ver_buf_sz = min_t(size_t, count, MAX_BUF_SZ);
> + ver_buf = kmalloc(ver_buf_sz, (size_t)GFP_KERNEL);
(size_t) for GFP_KERNEL? That's really odd looking.
> + if (!ver_buf)
> + return -ENOMEM;
> +
> + offset = (*offp) * adi_blksize();
> +
> + do {
> + if (copy_from_user(ver_buf, &buf[bytes_written],
> + ver_buf_sz)) {
> + ret = -EFAULT;
> + goto out;
> + }
> +
> + for (i = 0; i < ver_buf_sz; i++) {
> + ret = set_mcd_tag(offset, ver_buf[i]);
> + if (ret < 0)
> + goto out;
> +
> + offset += adi_blksize();
> + }
> +
> + bytes_written += ver_buf_sz;
> + ver_buf_sz = min(count - bytes_written, (size_t)MAX_BUF_SZ);
> + } while (bytes_written < count);
> +
> + (*offp) += bytes_written;
> + ret = bytes_written;
> +out:
> + __asm__ __volatile__("membar #Sync");
> + kfree(ver_buf);
> + return ret;
> +}
> +
> +static loff_t adi_llseek(struct file *file, loff_t offset, int whence)
> +{
> + loff_t ret = -EINVAL;
> +
> + switch (whence) {
> + case SEEK_END:
> + case SEEK_DATA:
> + case SEEK_HOLE:
> + /* unsupported */
> + return -EINVAL;
> + case SEEK_CUR:
> + if (offset == 0)
> + return file->f_pos;
> +
> + offset += file->f_pos;
> + break;
> + case SEEK_SET:
> + break;
> + }
> +
> + if (offset != file->f_pos) {
> + file->f_pos = offset;
> + file->f_version = 0;
> + ret = offset;
> + }
> +
> + return ret;
> +}
Why can't you use default_llseek here? Why do you not allow HOLE and
others?
Anyway, just tiny questions, all are trivial and not really a big deal
if you have tested it on your hardware. I'm guessing this will go
through the SPARC tree? If so feel free to add:
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Or if you want/need me to take it through my char/misc tree, just let me
know and I can.
thanks,
greg k-h
next prev parent reply other threads:[~2018-04-23 17:52 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-23 17:33 [PATCH v5 0/2] sparc64: Add privileged ADI driver tom.hromatka
2018-04-23 17:33 ` Tom Hromatka
2018-04-23 17:33 ` Tom Hromatka
2018-04-23 17:33 ` Tom Hromatka
2018-04-23 17:33 ` [PATCH v5 1/2] char: " tom.hromatka
2018-04-23 17:33 ` Tom Hromatka
2018-04-23 17:33 ` Tom Hromatka
2018-04-23 17:33 ` Tom Hromatka
2018-04-23 17:52 ` gregkh [this message]
2018-04-23 17:52 ` Greg KH
2018-04-23 17:52 ` Greg KH
2018-04-23 17:52 ` Greg KH
2018-04-24 16:47 ` tom.hromatka
2018-04-24 16:47 ` Tom Hromatka
2018-04-24 16:47 ` Tom Hromatka
2018-04-24 16:47 ` Tom Hromatka
2018-04-23 17:33 ` [PATCH v5 2/2] selftests: sparc64: char: Selftest for " tom.hromatka
2018-04-23 17:33 ` Tom Hromatka
2018-04-23 17:33 ` Tom Hromatka
2018-04-23 17:33 ` Tom Hromatka
2018-04-23 21:01 ` shuah
2018-04-23 21:01 ` Shuah Khan
2018-04-23 21:01 ` Shuah Khan
2018-04-23 21:01 ` Shuah Khan
2018-04-26 16:25 ` tom.hromatka
2018-04-26 16:25 ` Tom Hromatka
2018-04-26 16:25 ` Tom Hromatka
2018-04-26 16:25 ` Tom Hromatka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180423175216.GA16904@kroah.com \
--to=unknown@example.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.