2019-05-28 17:10:09 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2006-09-27 08:50:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2001-2006 Silicon Graphics, Inc. All rights
|
|
|
|
* reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SN Platform Special Memory (mspec) Support
|
|
|
|
*
|
|
|
|
* This driver exports the SN special memory (mspec) facility to user
|
|
|
|
* processes.
|
2019-08-13 07:24:55 +00:00
|
|
|
* There are two types of memory made available thru this driver:
|
|
|
|
* uncached and cached.
|
2006-09-27 08:50:11 +00:00
|
|
|
*
|
|
|
|
* Uncached are used for memory write combining feature of the ia64
|
|
|
|
* cpu.
|
|
|
|
*
|
|
|
|
* Cached are used for areas of memory that are used as cached addresses
|
|
|
|
* on our partition and used as uncached addresses from other partitions.
|
|
|
|
* Due to a design constraint of the SN2 Shub, you can not have processors
|
|
|
|
* on the same FSB perform both a cached and uncached reference to the
|
|
|
|
* same cache line. These special memory cached regions prevent the
|
|
|
|
* kernel from ever dropping in a TLB entry and therefore prevent the
|
|
|
|
* processor from ever speculating a cache line from this page.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/miscdevice.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/mm.h>
|
2007-07-29 22:36:13 +00:00
|
|
|
#include <linux/fs.h>
|
2006-09-27 08:50:11 +00:00
|
|
|
#include <linux/vmalloc.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/numa.h>
|
2017-03-06 14:20:50 +00:00
|
|
|
#include <linux/refcount.h>
|
2006-09-27 08:50:11 +00:00
|
|
|
#include <asm/page.h>
|
2011-07-26 23:09:06 +00:00
|
|
|
#include <linux/atomic.h>
|
2006-09-27 08:50:11 +00:00
|
|
|
#include <asm/tlbflush.h>
|
|
|
|
#include <asm/uncached.h>
|
|
|
|
|
|
|
|
|
|
|
|
#define CACHED_ID "Cached,"
|
|
|
|
#define UNCACHED_ID "Uncached"
|
|
|
|
#define REVISION "4.0"
|
|
|
|
#define MSPEC_BASENAME "mspec"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Page types allocated by the device.
|
|
|
|
*/
|
2007-09-19 05:46:31 +00:00
|
|
|
enum mspec_page_type {
|
2019-08-13 07:24:55 +00:00
|
|
|
MSPEC_CACHED = 2,
|
2006-09-27 08:50:11 +00:00
|
|
|
MSPEC_UNCACHED
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* One of these structures is allocated when an mspec region is mmaped. The
|
|
|
|
* structure is pointed to by the vma->vm_private_data field in the vma struct.
|
|
|
|
* This structure is used to record the addresses of the mspec pages.
|
2007-09-19 05:46:31 +00:00
|
|
|
* This structure is shared by all vma's that are split off from the
|
|
|
|
* original vma when split_vma()'s are done.
|
|
|
|
*
|
2020-06-09 04:33:54 +00:00
|
|
|
* The refcnt is incremented atomically because mm->mmap_lock does not
|
2007-09-19 05:46:31 +00:00
|
|
|
* protect in fork case where multiple tasks share the vma_data.
|
2006-09-27 08:50:11 +00:00
|
|
|
*/
|
|
|
|
struct vma_data {
|
2017-03-06 14:20:50 +00:00
|
|
|
refcount_t refcnt; /* Number of vmas sharing the data. */
|
2007-09-19 05:46:31 +00:00
|
|
|
spinlock_t lock; /* Serialize access to this structure. */
|
2006-09-27 08:50:11 +00:00
|
|
|
int count; /* Number of pages allocated. */
|
2007-09-19 05:46:31 +00:00
|
|
|
enum mspec_page_type type; /* Type of pages allocated. */
|
|
|
|
unsigned long vm_start; /* Original (unsplit) base. */
|
|
|
|
unsigned long vm_end; /* Original (unsplit) end. */
|
2020-02-27 18:48:08 +00:00
|
|
|
unsigned long maddr[]; /* Array of MSPEC addresses. */
|
2006-09-27 08:50:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* mspec_open
|
|
|
|
*
|
|
|
|
* Called when a device mapping is created by a means other than mmap
|
2007-09-19 05:46:31 +00:00
|
|
|
* (via fork, munmap, etc.). Increments the reference count on the
|
|
|
|
* underlying mspec data so it is not freed prematurely.
|
2006-09-27 08:50:11 +00:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
mspec_open(struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
struct vma_data *vdata;
|
|
|
|
|
|
|
|
vdata = vma->vm_private_data;
|
2017-03-06 14:20:50 +00:00
|
|
|
refcount_inc(&vdata->refcnt);
|
2006-09-27 08:50:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* mspec_close
|
|
|
|
*
|
|
|
|
* Called when unmapping a device mapping. Frees all mspec pages
|
2007-09-25 04:24:41 +00:00
|
|
|
* belonging to all the vma's sharing this vma_data structure.
|
2006-09-27 08:50:11 +00:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
mspec_close(struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
struct vma_data *vdata;
|
2007-09-25 04:24:41 +00:00
|
|
|
int index, last_index;
|
2007-09-19 05:46:31 +00:00
|
|
|
unsigned long my_page;
|
2006-09-27 08:50:11 +00:00
|
|
|
|
|
|
|
vdata = vma->vm_private_data;
|
|
|
|
|
2017-03-06 14:20:50 +00:00
|
|
|
if (!refcount_dec_and_test(&vdata->refcnt))
|
2007-09-25 04:24:41 +00:00
|
|
|
return;
|
2007-09-19 05:46:31 +00:00
|
|
|
|
2007-09-25 04:24:41 +00:00
|
|
|
last_index = (vdata->vm_end - vdata->vm_start) >> PAGE_SHIFT;
|
|
|
|
for (index = 0; index < last_index; index++) {
|
2007-09-19 05:46:31 +00:00
|
|
|
if (vdata->maddr[index] == 0)
|
2006-09-27 08:50:11 +00:00
|
|
|
continue;
|
|
|
|
/*
|
|
|
|
* Clear the page before sticking it back
|
|
|
|
* into the pool.
|
|
|
|
*/
|
2007-09-19 05:46:31 +00:00
|
|
|
my_page = vdata->maddr[index];
|
|
|
|
vdata->maddr[index] = 0;
|
2019-08-13 07:24:55 +00:00
|
|
|
memset((char *)my_page, 0, PAGE_SIZE);
|
|
|
|
uncached_free_page(my_page, 1);
|
2006-09-27 08:50:11 +00:00
|
|
|
}
|
2007-09-19 05:46:31 +00:00
|
|
|
|
2016-01-22 23:11:02 +00:00
|
|
|
kvfree(vdata);
|
2006-09-27 08:50:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2008-07-24 04:27:00 +00:00
|
|
|
* mspec_fault
|
2006-09-27 08:50:11 +00:00
|
|
|
*
|
|
|
|
* Creates a mspec page and maps it to user space.
|
|
|
|
*/
|
2018-04-16 14:26:09 +00:00
|
|
|
static vm_fault_t
|
2017-02-24 22:56:41 +00:00
|
|
|
mspec_fault(struct vm_fault *vmf)
|
2006-09-27 08:50:11 +00:00
|
|
|
{
|
|
|
|
unsigned long paddr, maddr;
|
|
|
|
unsigned long pfn;
|
2008-07-24 04:27:00 +00:00
|
|
|
pgoff_t index = vmf->pgoff;
|
2017-02-24 22:56:41 +00:00
|
|
|
struct vma_data *vdata = vmf->vma->vm_private_data;
|
2006-09-27 08:50:11 +00:00
|
|
|
|
|
|
|
maddr = (volatile unsigned long) vdata->maddr[index];
|
|
|
|
if (maddr == 0) {
|
2008-04-25 20:22:19 +00:00
|
|
|
maddr = uncached_alloc_page(numa_node_id(), 1);
|
2006-09-27 08:50:11 +00:00
|
|
|
if (maddr == 0)
|
2008-07-24 04:27:00 +00:00
|
|
|
return VM_FAULT_OOM;
|
2006-09-27 08:50:11 +00:00
|
|
|
|
|
|
|
spin_lock(&vdata->lock);
|
|
|
|
if (vdata->maddr[index] == 0) {
|
|
|
|
vdata->count++;
|
|
|
|
vdata->maddr[index] = maddr;
|
|
|
|
} else {
|
2008-04-25 20:22:19 +00:00
|
|
|
uncached_free_page(maddr, 1);
|
2006-09-27 08:50:11 +00:00
|
|
|
maddr = vdata->maddr[index];
|
|
|
|
}
|
|
|
|
spin_unlock(&vdata->lock);
|
|
|
|
}
|
|
|
|
|
2019-08-13 07:24:55 +00:00
|
|
|
paddr = maddr & ~__IA64_UNCACHED_OFFSET;
|
2006-09-27 08:50:11 +00:00
|
|
|
pfn = paddr >> PAGE_SHIFT;
|
|
|
|
|
2018-04-16 14:26:09 +00:00
|
|
|
return vmf_insert_pfn(vmf->vma, vmf->address, pfn);
|
2006-09-27 08:50:11 +00:00
|
|
|
}
|
|
|
|
|
2009-09-27 18:29:37 +00:00
|
|
|
static const struct vm_operations_struct mspec_vm_ops = {
|
2006-09-27 08:50:11 +00:00
|
|
|
.open = mspec_open,
|
|
|
|
.close = mspec_close,
|
2008-07-24 04:27:00 +00:00
|
|
|
.fault = mspec_fault,
|
2006-09-27 08:50:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* mspec_mmap
|
|
|
|
*
|
tree-wide: fix assorted typos all over the place
That is "success", "unknown", "through", "performance", "[re|un]mapping"
, "access", "default", "reasonable", "[con]currently", "temperature"
, "channel", "[un]used", "application", "example","hierarchy", "therefore"
, "[over|under]flow", "contiguous", "threshold", "enough" and others.
Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2009-11-14 15:09:05 +00:00
|
|
|
* Called when mmapping the device. Initializes the vma with a fault handler
|
2006-09-27 08:50:11 +00:00
|
|
|
* and private data structure necessary to allocate, track, and free the
|
|
|
|
* underlying pages.
|
|
|
|
*/
|
|
|
|
static int
|
2007-09-19 05:46:31 +00:00
|
|
|
mspec_mmap(struct file *file, struct vm_area_struct *vma,
|
|
|
|
enum mspec_page_type type)
|
2006-09-27 08:50:11 +00:00
|
|
|
{
|
|
|
|
struct vma_data *vdata;
|
2016-01-22 23:11:02 +00:00
|
|
|
int pages, vdata_size;
|
2006-09-27 08:50:11 +00:00
|
|
|
|
|
|
|
if (vma->vm_pgoff != 0)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if ((vma->vm_flags & VM_SHARED) == 0)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if ((vma->vm_flags & VM_WRITE) == 0)
|
|
|
|
return -EPERM;
|
|
|
|
|
2013-05-13 02:17:39 +00:00
|
|
|
pages = vma_pages(vma);
|
2006-09-27 08:50:11 +00:00
|
|
|
vdata_size = sizeof(struct vma_data) + pages * sizeof(long);
|
2020-08-27 21:34:21 +00:00
|
|
|
vdata = kvzalloc(vdata_size, GFP_KERNEL);
|
2006-09-27 08:50:11 +00:00
|
|
|
if (!vdata)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2007-09-19 05:46:31 +00:00
|
|
|
vdata->vm_start = vma->vm_start;
|
|
|
|
vdata->vm_end = vma->vm_end;
|
2006-09-27 08:50:11 +00:00
|
|
|
vdata->type = type;
|
|
|
|
spin_lock_init(&vdata->lock);
|
2017-03-06 14:20:50 +00:00
|
|
|
refcount_set(&vdata->refcnt, 1);
|
2006-09-27 08:50:11 +00:00
|
|
|
vma->vm_private_data = vdata;
|
|
|
|
|
mm: kill vma flag VM_RESERVED and mm->reserved_vm counter
A long time ago, in v2.4, VM_RESERVED kept swapout process off VMA,
currently it lost original meaning but still has some effects:
| effect | alternative flags
-+------------------------+---------------------------------------------
1| account as reserved_vm | VM_IO
2| skip in core dump | VM_IO, VM_DONTDUMP
3| do not merge or expand | VM_IO, VM_DONTEXPAND, VM_HUGETLB, VM_PFNMAP
4| do not mlock | VM_IO, VM_DONTEXPAND, VM_HUGETLB, VM_PFNMAP
This patch removes reserved_vm counter from mm_struct. Seems like nobody
cares about it, it does not exported into userspace directly, it only
reduces total_vm showed in proc.
Thus VM_RESERVED can be replaced with VM_IO or pair VM_DONTEXPAND | VM_DONTDUMP.
remap_pfn_range() and io_remap_pfn_range() set VM_IO|VM_DONTEXPAND|VM_DONTDUMP.
remap_vmalloc_range() set VM_DONTEXPAND | VM_DONTDUMP.
[akpm@linux-foundation.org: drivers/vfio/pci/vfio_pci.c fixup]
Signed-off-by: Konstantin Khlebnikov <khlebnikov@openvz.org>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Carsten Otte <cotte@de.ibm.com>
Cc: Chris Metcalf <cmetcalf@tilera.com>
Cc: Cyrill Gorcunov <gorcunov@openvz.org>
Cc: Eric Paris <eparis@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: James Morris <james.l.morris@oracle.com>
Cc: Jason Baron <jbaron@redhat.com>
Cc: Kentaro Takeda <takedakn@nttdata.co.jp>
Cc: Matt Helsley <matthltc@us.ibm.com>
Cc: Nick Piggin <npiggin@kernel.dk>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Robert Richter <robert.richter@amd.com>
Cc: Suresh Siddha <suresh.b.siddha@intel.com>
Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Cc: Venkatesh Pallipadi <venki@google.com>
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2012-10-08 23:29:02 +00:00
|
|
|
vma->vm_flags |= VM_IO | VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP;
|
2019-08-13 07:24:55 +00:00
|
|
|
if (vdata->type == MSPEC_UNCACHED)
|
2006-09-27 08:50:11 +00:00
|
|
|
vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
|
|
|
|
vma->vm_ops = &mspec_vm_ops;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
cached_mmap(struct file *file, struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
return mspec_mmap(file, vma, MSPEC_CACHED);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
uncached_mmap(struct file *file, struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
return mspec_mmap(file, vma, MSPEC_UNCACHED);
|
|
|
|
}
|
|
|
|
|
2007-02-12 08:55:32 +00:00
|
|
|
static const struct file_operations cached_fops = {
|
2006-09-27 08:50:11 +00:00
|
|
|
.owner = THIS_MODULE,
|
llseek: automatically add .llseek fop
All file_operations should get a .llseek operation so we can make
nonseekable_open the default for future file operations without a
.llseek pointer.
The three cases that we can automatically detect are no_llseek, seq_lseek
and default_llseek. For cases where we can we can automatically prove that
the file offset is always ignored, we use noop_llseek, which maintains
the current behavior of not returning an error from a seek.
New drivers should normally not use noop_llseek but instead use no_llseek
and call nonseekable_open at open time. Existing drivers can be converted
to do the same when the maintainer knows for certain that no user code
relies on calling seek on the device file.
The generated code is often incorrectly indented and right now contains
comments that clarify for each added line why a specific variant was
chosen. In the version that gets submitted upstream, the comments will
be gone and I will manually fix the indentation, because there does not
seem to be a way to do that using coccinelle.
Some amount of new code is currently sitting in linux-next that should get
the same modifications, which I will do at the end of the merge window.
Many thanks to Julia Lawall for helping me learn to write a semantic
patch that does all this.
===== begin semantic patch =====
// This adds an llseek= method to all file operations,
// as a preparation for making no_llseek the default.
//
// The rules are
// - use no_llseek explicitly if we do nonseekable_open
// - use seq_lseek for sequential files
// - use default_llseek if we know we access f_pos
// - use noop_llseek if we know we don't access f_pos,
// but we still want to allow users to call lseek
//
@ open1 exists @
identifier nested_open;
@@
nested_open(...)
{
<+...
nonseekable_open(...)
...+>
}
@ open exists@
identifier open_f;
identifier i, f;
identifier open1.nested_open;
@@
int open_f(struct inode *i, struct file *f)
{
<+...
(
nonseekable_open(...)
|
nested_open(...)
)
...+>
}
@ read disable optional_qualifier exists @
identifier read_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
expression E;
identifier func;
@@
ssize_t read_f(struct file *f, char *p, size_t s, loff_t *off)
{
<+...
(
*off = E
|
*off += E
|
func(..., off, ...)
|
E = *off
)
...+>
}
@ read_no_fpos disable optional_qualifier exists @
identifier read_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
@@
ssize_t read_f(struct file *f, char *p, size_t s, loff_t *off)
{
... when != off
}
@ write @
identifier write_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
expression E;
identifier func;
@@
ssize_t write_f(struct file *f, const char *p, size_t s, loff_t *off)
{
<+...
(
*off = E
|
*off += E
|
func(..., off, ...)
|
E = *off
)
...+>
}
@ write_no_fpos @
identifier write_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
@@
ssize_t write_f(struct file *f, const char *p, size_t s, loff_t *off)
{
... when != off
}
@ fops0 @
identifier fops;
@@
struct file_operations fops = {
...
};
@ has_llseek depends on fops0 @
identifier fops0.fops;
identifier llseek_f;
@@
struct file_operations fops = {
...
.llseek = llseek_f,
...
};
@ has_read depends on fops0 @
identifier fops0.fops;
identifier read_f;
@@
struct file_operations fops = {
...
.read = read_f,
...
};
@ has_write depends on fops0 @
identifier fops0.fops;
identifier write_f;
@@
struct file_operations fops = {
...
.write = write_f,
...
};
@ has_open depends on fops0 @
identifier fops0.fops;
identifier open_f;
@@
struct file_operations fops = {
...
.open = open_f,
...
};
// use no_llseek if we call nonseekable_open
////////////////////////////////////////////
@ nonseekable1 depends on !has_llseek && has_open @
identifier fops0.fops;
identifier nso ~= "nonseekable_open";
@@
struct file_operations fops = {
... .open = nso, ...
+.llseek = no_llseek, /* nonseekable */
};
@ nonseekable2 depends on !has_llseek @
identifier fops0.fops;
identifier open.open_f;
@@
struct file_operations fops = {
... .open = open_f, ...
+.llseek = no_llseek, /* open uses nonseekable */
};
// use seq_lseek for sequential files
/////////////////////////////////////
@ seq depends on !has_llseek @
identifier fops0.fops;
identifier sr ~= "seq_read";
@@
struct file_operations fops = {
... .read = sr, ...
+.llseek = seq_lseek, /* we have seq_read */
};
// use default_llseek if there is a readdir
///////////////////////////////////////////
@ fops1 depends on !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier readdir_e;
@@
// any other fop is used that changes pos
struct file_operations fops = {
... .readdir = readdir_e, ...
+.llseek = default_llseek, /* readdir is present */
};
// use default_llseek if at least one of read/write touches f_pos
/////////////////////////////////////////////////////////////////
@ fops2 depends on !fops1 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier read.read_f;
@@
// read fops use offset
struct file_operations fops = {
... .read = read_f, ...
+.llseek = default_llseek, /* read accesses f_pos */
};
@ fops3 depends on !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier write.write_f;
@@
// write fops use offset
struct file_operations fops = {
... .write = write_f, ...
+ .llseek = default_llseek, /* write accesses f_pos */
};
// Use noop_llseek if neither read nor write accesses f_pos
///////////////////////////////////////////////////////////
@ fops4 depends on !fops1 && !fops2 && !fops3 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier read_no_fpos.read_f;
identifier write_no_fpos.write_f;
@@
// write fops use offset
struct file_operations fops = {
...
.write = write_f,
.read = read_f,
...
+.llseek = noop_llseek, /* read and write both use no f_pos */
};
@ depends on has_write && !has_read && !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier write_no_fpos.write_f;
@@
struct file_operations fops = {
... .write = write_f, ...
+.llseek = noop_llseek, /* write uses no f_pos */
};
@ depends on has_read && !has_write && !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier read_no_fpos.read_f;
@@
struct file_operations fops = {
... .read = read_f, ...
+.llseek = noop_llseek, /* read uses no f_pos */
};
@ depends on !has_read && !has_write && !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
@@
struct file_operations fops = {
...
+.llseek = noop_llseek, /* no read or write fn */
};
===== End semantic patch =====
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Julia Lawall <julia@diku.dk>
Cc: Christoph Hellwig <hch@infradead.org>
2010-08-15 16:52:59 +00:00
|
|
|
.mmap = cached_mmap,
|
|
|
|
.llseek = noop_llseek,
|
2006-09-27 08:50:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct miscdevice cached_miscdev = {
|
|
|
|
.minor = MISC_DYNAMIC_MINOR,
|
|
|
|
.name = "mspec_cached",
|
|
|
|
.fops = &cached_fops
|
|
|
|
};
|
|
|
|
|
2007-02-12 08:55:32 +00:00
|
|
|
static const struct file_operations uncached_fops = {
|
2006-09-27 08:50:11 +00:00
|
|
|
.owner = THIS_MODULE,
|
llseek: automatically add .llseek fop
All file_operations should get a .llseek operation so we can make
nonseekable_open the default for future file operations without a
.llseek pointer.
The three cases that we can automatically detect are no_llseek, seq_lseek
and default_llseek. For cases where we can we can automatically prove that
the file offset is always ignored, we use noop_llseek, which maintains
the current behavior of not returning an error from a seek.
New drivers should normally not use noop_llseek but instead use no_llseek
and call nonseekable_open at open time. Existing drivers can be converted
to do the same when the maintainer knows for certain that no user code
relies on calling seek on the device file.
The generated code is often incorrectly indented and right now contains
comments that clarify for each added line why a specific variant was
chosen. In the version that gets submitted upstream, the comments will
be gone and I will manually fix the indentation, because there does not
seem to be a way to do that using coccinelle.
Some amount of new code is currently sitting in linux-next that should get
the same modifications, which I will do at the end of the merge window.
Many thanks to Julia Lawall for helping me learn to write a semantic
patch that does all this.
===== begin semantic patch =====
// This adds an llseek= method to all file operations,
// as a preparation for making no_llseek the default.
//
// The rules are
// - use no_llseek explicitly if we do nonseekable_open
// - use seq_lseek for sequential files
// - use default_llseek if we know we access f_pos
// - use noop_llseek if we know we don't access f_pos,
// but we still want to allow users to call lseek
//
@ open1 exists @
identifier nested_open;
@@
nested_open(...)
{
<+...
nonseekable_open(...)
...+>
}
@ open exists@
identifier open_f;
identifier i, f;
identifier open1.nested_open;
@@
int open_f(struct inode *i, struct file *f)
{
<+...
(
nonseekable_open(...)
|
nested_open(...)
)
...+>
}
@ read disable optional_qualifier exists @
identifier read_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
expression E;
identifier func;
@@
ssize_t read_f(struct file *f, char *p, size_t s, loff_t *off)
{
<+...
(
*off = E
|
*off += E
|
func(..., off, ...)
|
E = *off
)
...+>
}
@ read_no_fpos disable optional_qualifier exists @
identifier read_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
@@
ssize_t read_f(struct file *f, char *p, size_t s, loff_t *off)
{
... when != off
}
@ write @
identifier write_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
expression E;
identifier func;
@@
ssize_t write_f(struct file *f, const char *p, size_t s, loff_t *off)
{
<+...
(
*off = E
|
*off += E
|
func(..., off, ...)
|
E = *off
)
...+>
}
@ write_no_fpos @
identifier write_f;
identifier f, p, s, off;
type ssize_t, size_t, loff_t;
@@
ssize_t write_f(struct file *f, const char *p, size_t s, loff_t *off)
{
... when != off
}
@ fops0 @
identifier fops;
@@
struct file_operations fops = {
...
};
@ has_llseek depends on fops0 @
identifier fops0.fops;
identifier llseek_f;
@@
struct file_operations fops = {
...
.llseek = llseek_f,
...
};
@ has_read depends on fops0 @
identifier fops0.fops;
identifier read_f;
@@
struct file_operations fops = {
...
.read = read_f,
...
};
@ has_write depends on fops0 @
identifier fops0.fops;
identifier write_f;
@@
struct file_operations fops = {
...
.write = write_f,
...
};
@ has_open depends on fops0 @
identifier fops0.fops;
identifier open_f;
@@
struct file_operations fops = {
...
.open = open_f,
...
};
// use no_llseek if we call nonseekable_open
////////////////////////////////////////////
@ nonseekable1 depends on !has_llseek && has_open @
identifier fops0.fops;
identifier nso ~= "nonseekable_open";
@@
struct file_operations fops = {
... .open = nso, ...
+.llseek = no_llseek, /* nonseekable */
};
@ nonseekable2 depends on !has_llseek @
identifier fops0.fops;
identifier open.open_f;
@@
struct file_operations fops = {
... .open = open_f, ...
+.llseek = no_llseek, /* open uses nonseekable */
};
// use seq_lseek for sequential files
/////////////////////////////////////
@ seq depends on !has_llseek @
identifier fops0.fops;
identifier sr ~= "seq_read";
@@
struct file_operations fops = {
... .read = sr, ...
+.llseek = seq_lseek, /* we have seq_read */
};
// use default_llseek if there is a readdir
///////////////////////////////////////////
@ fops1 depends on !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier readdir_e;
@@
// any other fop is used that changes pos
struct file_operations fops = {
... .readdir = readdir_e, ...
+.llseek = default_llseek, /* readdir is present */
};
// use default_llseek if at least one of read/write touches f_pos
/////////////////////////////////////////////////////////////////
@ fops2 depends on !fops1 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier read.read_f;
@@
// read fops use offset
struct file_operations fops = {
... .read = read_f, ...
+.llseek = default_llseek, /* read accesses f_pos */
};
@ fops3 depends on !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier write.write_f;
@@
// write fops use offset
struct file_operations fops = {
... .write = write_f, ...
+ .llseek = default_llseek, /* write accesses f_pos */
};
// Use noop_llseek if neither read nor write accesses f_pos
///////////////////////////////////////////////////////////
@ fops4 depends on !fops1 && !fops2 && !fops3 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier read_no_fpos.read_f;
identifier write_no_fpos.write_f;
@@
// write fops use offset
struct file_operations fops = {
...
.write = write_f,
.read = read_f,
...
+.llseek = noop_llseek, /* read and write both use no f_pos */
};
@ depends on has_write && !has_read && !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier write_no_fpos.write_f;
@@
struct file_operations fops = {
... .write = write_f, ...
+.llseek = noop_llseek, /* write uses no f_pos */
};
@ depends on has_read && !has_write && !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
identifier read_no_fpos.read_f;
@@
struct file_operations fops = {
... .read = read_f, ...
+.llseek = noop_llseek, /* read uses no f_pos */
};
@ depends on !has_read && !has_write && !fops1 && !fops2 && !has_llseek && !nonseekable1 && !nonseekable2 && !seq @
identifier fops0.fops;
@@
struct file_operations fops = {
...
+.llseek = noop_llseek, /* no read or write fn */
};
===== End semantic patch =====
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Julia Lawall <julia@diku.dk>
Cc: Christoph Hellwig <hch@infradead.org>
2010-08-15 16:52:59 +00:00
|
|
|
.mmap = uncached_mmap,
|
|
|
|
.llseek = noop_llseek,
|
2006-09-27 08:50:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct miscdevice uncached_miscdev = {
|
|
|
|
.minor = MISC_DYNAMIC_MINOR,
|
|
|
|
.name = "mspec_uncached",
|
|
|
|
.fops = &uncached_fops
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* mspec_init
|
|
|
|
*
|
|
|
|
* Called at boot time to initialize the mspec facility.
|
|
|
|
*/
|
|
|
|
static int __init
|
|
|
|
mspec_init(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = misc_register(&cached_miscdev);
|
|
|
|
if (ret) {
|
|
|
|
printk(KERN_ERR "%s: failed to register device %i\n",
|
|
|
|
CACHED_ID, ret);
|
2019-08-13 07:24:55 +00:00
|
|
|
return ret;
|
2006-09-27 08:50:11 +00:00
|
|
|
}
|
|
|
|
ret = misc_register(&uncached_miscdev);
|
|
|
|
if (ret) {
|
|
|
|
printk(KERN_ERR "%s: failed to register device %i\n",
|
|
|
|
UNCACHED_ID, ret);
|
|
|
|
misc_deregister(&cached_miscdev);
|
2019-08-13 07:24:55 +00:00
|
|
|
return ret;
|
2006-09-27 08:50:11 +00:00
|
|
|
}
|
|
|
|
|
2019-08-13 07:24:55 +00:00
|
|
|
printk(KERN_INFO "%s %s initialized devices: %s %s\n",
|
|
|
|
MSPEC_BASENAME, REVISION, CACHED_ID, UNCACHED_ID);
|
2006-09-27 08:50:11 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit
|
|
|
|
mspec_exit(void)
|
|
|
|
{
|
|
|
|
misc_deregister(&uncached_miscdev);
|
|
|
|
misc_deregister(&cached_miscdev);
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(mspec_init);
|
|
|
|
module_exit(mspec_exit);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Silicon Graphics, Inc. <linux-altix@sgi.com>");
|
|
|
|
MODULE_DESCRIPTION("Driver for SGI SN special memory operations");
|
|
|
|
MODULE_LICENSE("GPL");
|