blob: e49265f18f86bc9b2c22603db340381c3ff057bd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/char/mem.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 *
Andrew Mortond7d4d842010-03-10 15:21:52 -08006 * Added devfs support.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Jan-11-1998, C. Scott Ananian <cananian@alumni.princeton.edu>
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02008 * Shared /dev/zero mmapping support, Feb 2000, Kanoj Sarcar <kanoj@sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/mm.h>
12#include <linux/miscdevice.h>
13#include <linux/slab.h>
14#include <linux/vmalloc.h>
15#include <linux/mman.h>
16#include <linux/random.h>
17#include <linux/init.h>
18#include <linux/raw.h>
19#include <linux/tty.h>
20#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/ptrace.h>
22#include <linux/device.h>
Vivek Goyal50b1fdb2005-06-25 14:58:23 -070023#include <linux/highmem.h>
24#include <linux/crash_dump.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/backing-dev.h>
Vivek Goyal315c2152005-06-25 14:58:24 -070026#include <linux/bootmem.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020027#include <linux/splice.h>
Linus Torvaldsb8a3ad52006-10-13 08:42:10 -070028#include <linux/pfn.h>
Paul Gortmaker66300e62011-07-10 12:14:53 -040029#include <linux/export.h>
Haren Mynenie1612de2012-07-11 15:18:44 +100030#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#ifdef CONFIG_IA64
35# include <linux/efi.h>
36#endif
37
Haren Mynenie1612de2012-07-11 15:18:44 +100038#define DEVPORT_MINOR 4
39
Wu Fengguangf2223182009-12-14 17:58:07 -080040static inline unsigned long size_inside_page(unsigned long start,
41 unsigned long size)
42{
43 unsigned long sz;
44
Wu Fengguang7fabadd2009-12-14 17:58:09 -080045 sz = PAGE_SIZE - (start & (PAGE_SIZE - 1));
Wu Fengguangf2223182009-12-14 17:58:07 -080046
Wu Fengguang7fabadd2009-12-14 17:58:09 -080047 return min(sz, size);
Wu Fengguangf2223182009-12-14 17:58:07 -080048}
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#ifndef ARCH_HAS_VALID_PHYS_ADDR_RANGE
Cyril Chemparathy7e6735c2012-09-12 14:05:58 -040051static inline int valid_phys_addr_range(phys_addr_t addr, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
Changli Gaocfaf346c2011-03-23 16:42:58 -070053 return addr + count <= __pa(high_memory);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054}
Bjorn Helgaas80851ef2006-01-08 01:04:13 -080055
Lennert Buytenhek06c67be2006-07-10 04:45:27 -070056static inline int valid_mmap_phys_addr_range(unsigned long pfn, size_t size)
Bjorn Helgaas80851ef2006-01-08 01:04:13 -080057{
58 return 1;
59}
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#endif
61
Ingo Molnard0926332008-07-18 00:26:59 +020062#ifdef CONFIG_STRICT_DEVMEM
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080063static inline int range_is_allowed(unsigned long pfn, unsigned long size)
Arjan van de Venae531c22008-04-24 23:40:47 +020064{
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080065 u64 from = ((u64)pfn) << PAGE_SHIFT;
66 u64 to = from + size;
67 u64 cursor = from;
Arjan van de Venae531c22008-04-24 23:40:47 +020068
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080069 while (cursor < to) {
70 if (!devmem_is_allowed(pfn)) {
71 printk(KERN_INFO
72 "Program %s tried to access /dev/mem between %Lx->%Lx.\n",
Arjan van de Venae531c22008-04-24 23:40:47 +020073 current->comm, from, to);
74 return 0;
75 }
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080076 cursor += PAGE_SIZE;
77 pfn++;
Arjan van de Venae531c22008-04-24 23:40:47 +020078 }
79 return 1;
80}
81#else
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080082static inline int range_is_allowed(unsigned long pfn, unsigned long size)
Arjan van de Venae531c22008-04-24 23:40:47 +020083{
84 return 1;
85}
86#endif
87
Andrew Mortond7d4d842010-03-10 15:21:52 -080088void __weak unxlate_dev_mem_ptr(unsigned long phys, void *addr)
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -070089{
90}
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*
Andrew Mortond7d4d842010-03-10 15:21:52 -080093 * This funcion reads the *physical* memory. The f_pos points directly to the
94 * memory location.
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 */
Andrew Mortond7d4d842010-03-10 15:21:52 -080096static ssize_t read_mem(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 size_t count, loff_t *ppos)
98{
Cyril Chemparathy7e6735c2012-09-12 14:05:58 -040099 phys_addr_t p = *ppos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 ssize_t read, sz;
101 char *ptr;
102
Bjorn Helgaas136939a2006-03-26 01:37:05 -0800103 if (!valid_phys_addr_range(p, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return -EFAULT;
105 read = 0;
106#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
107 /* we don't have page 0 mapped on sparc and m68k.. */
108 if (p < PAGE_SIZE) {
Wu Fengguang7fabadd2009-12-14 17:58:09 -0800109 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 if (sz > 0) {
111 if (clear_user(buf, sz))
112 return -EFAULT;
Andrew Mortond7d4d842010-03-10 15:21:52 -0800113 buf += sz;
114 p += sz;
115 count -= sz;
116 read += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118 }
119#endif
120
121 while (count > 0) {
Wu Fengguangfa29e972009-12-14 17:58:08 -0800122 unsigned long remaining;
123
Wu Fengguangf2223182009-12-14 17:58:07 -0800124 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700126 if (!range_is_allowed(p >> PAGE_SHIFT, count))
127 return -EPERM;
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 /*
Andrew Mortond7d4d842010-03-10 15:21:52 -0800130 * On ia64 if a page has been mapped somewhere as uncached, then
131 * it must also be accessed uncached by the kernel or data
132 * corruption may occur.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 */
134 ptr = xlate_dev_mem_ptr(p);
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700135 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return -EFAULT;
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700137
Wu Fengguangfa29e972009-12-14 17:58:08 -0800138 remaining = copy_to_user(buf, ptr, sz);
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700139 unxlate_dev_mem_ptr(p, ptr);
Wu Fengguangfa29e972009-12-14 17:58:08 -0800140 if (remaining)
141 return -EFAULT;
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 buf += sz;
144 p += sz;
145 count -= sz;
146 read += sz;
147 }
148
149 *ppos += read;
150 return read;
151}
152
Andrew Mortond7d4d842010-03-10 15:21:52 -0800153static ssize_t write_mem(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 size_t count, loff_t *ppos)
155{
Cyril Chemparathy7e6735c2012-09-12 14:05:58 -0400156 phys_addr_t p = *ppos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 ssize_t written, sz;
158 unsigned long copied;
159 void *ptr;
160
Bjorn Helgaas136939a2006-03-26 01:37:05 -0800161 if (!valid_phys_addr_range(p, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 return -EFAULT;
163
164 written = 0;
165
166#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
167 /* we don't have page 0 mapped on sparc and m68k.. */
168 if (p < PAGE_SIZE) {
Wu Fengguang7fabadd2009-12-14 17:58:09 -0800169 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 /* Hmm. Do something? */
171 buf += sz;
172 p += sz;
173 count -= sz;
174 written += sz;
175 }
176#endif
177
178 while (count > 0) {
Wu Fengguangf2223182009-12-14 17:58:07 -0800179 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700181 if (!range_is_allowed(p >> PAGE_SHIFT, sz))
182 return -EPERM;
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 /*
Andrew Mortond7d4d842010-03-10 15:21:52 -0800185 * On ia64 if a page has been mapped somewhere as uncached, then
186 * it must also be accessed uncached by the kernel or data
187 * corruption may occur.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 */
189 ptr = xlate_dev_mem_ptr(p);
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700190 if (!ptr) {
Jan Beulichc654d602006-03-25 03:07:31 -0800191 if (written)
192 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return -EFAULT;
194 }
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700195
196 copied = copy_from_user(ptr, buf, sz);
Wu Fengguangfa29e972009-12-14 17:58:08 -0800197 unxlate_dev_mem_ptr(p, ptr);
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700198 if (copied) {
199 written += sz - copied;
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700200 if (written)
201 break;
202 return -EFAULT;
203 }
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 buf += sz;
206 p += sz;
207 count -= sz;
208 written += sz;
209 }
210
211 *ppos += written;
212 return written;
213}
214
Andrew Mortond7d4d842010-03-10 15:21:52 -0800215int __weak phys_mem_access_prot_allowed(struct file *file,
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700216 unsigned long pfn, unsigned long size, pgprot_t *vma_prot)
217{
218 return 1;
219}
220
Bjorn Helgaas44ac8412006-01-08 01:04:10 -0800221#ifndef __HAVE_PHYS_MEM_ACCESS_PROT
Andrew Mortond7d4d842010-03-10 15:21:52 -0800222
223/*
224 * Architectures vary in how they handle caching for addresses
225 * outside of main memory.
226 *
227 */
David Howellsea56f412010-04-06 14:35:08 -0700228#ifdef pgprot_noncached
Cyril Chemparathy7e6735c2012-09-12 14:05:58 -0400229static int uncached_access(struct file *file, phys_addr_t addr)
Andrew Mortond7d4d842010-03-10 15:21:52 -0800230{
231#if defined(CONFIG_IA64)
232 /*
233 * On ia64, we ignore O_DSYNC because we cannot tolerate memory
234 * attribute aliases.
235 */
236 return !(efi_mem_attributes(addr) & EFI_MEMORY_WB);
237#elif defined(CONFIG_MIPS)
238 {
239 extern int __uncached_access(struct file *file,
240 unsigned long addr);
241
242 return __uncached_access(file, addr);
243 }
244#else
245 /*
246 * Accessing memory above the top the kernel knows about or through a
247 * file pointer
248 * that was marked O_DSYNC will be done non-cached.
249 */
250 if (file->f_flags & O_DSYNC)
251 return 1;
252 return addr >= __pa(high_memory);
253#endif
254}
David Howellsea56f412010-04-06 14:35:08 -0700255#endif
Andrew Mortond7d4d842010-03-10 15:21:52 -0800256
Bjorn Helgaas44ac8412006-01-08 01:04:10 -0800257static pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
258 unsigned long size, pgprot_t vma_prot)
259{
260#ifdef pgprot_noncached
Cyril Chemparathy7e6735c2012-09-12 14:05:58 -0400261 phys_addr_t offset = pfn << PAGE_SHIFT;
Bjorn Helgaas44ac8412006-01-08 01:04:10 -0800262
263 if (uncached_access(file, offset))
264 return pgprot_noncached(vma_prot);
265#endif
266 return vma_prot;
267}
268#endif
269
David Howells5da61852006-09-27 01:50:16 -0700270#ifndef CONFIG_MMU
271static unsigned long get_unmapped_area_mem(struct file *file,
272 unsigned long addr,
273 unsigned long len,
274 unsigned long pgoff,
275 unsigned long flags)
276{
277 if (!valid_mmap_phys_addr_range(pgoff, len))
278 return (unsigned long) -EINVAL;
Benjamin Herrenschmidt8a932582007-04-16 22:53:16 -0700279 return pgoff << PAGE_SHIFT;
David Howells5da61852006-09-27 01:50:16 -0700280}
281
282/* can't do an in-place private mapping if there's no MMU */
283static inline int private_mapping_ok(struct vm_area_struct *vma)
284{
285 return vma->vm_flags & VM_MAYSHARE;
286}
287#else
288#define get_unmapped_area_mem NULL
289
290static inline int private_mapping_ok(struct vm_area_struct *vma)
291{
292 return 1;
293}
294#endif
295
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400296static const struct vm_operations_struct mmap_mem_ops = {
Rik van Riel7ae8ed52008-07-23 21:27:07 -0700297#ifdef CONFIG_HAVE_IOREMAP_PROT
298 .access = generic_access_phys
299#endif
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700300};
301
Andrew Mortond7d4d842010-03-10 15:21:52 -0800302static int mmap_mem(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800304 size_t size = vma->vm_end - vma->vm_start;
305
Lennert Buytenhek06c67be2006-07-10 04:45:27 -0700306 if (!valid_mmap_phys_addr_range(vma->vm_pgoff, size))
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800307 return -EINVAL;
308
David Howells5da61852006-09-27 01:50:16 -0700309 if (!private_mapping_ok(vma))
310 return -ENOSYS;
311
Venki Pallipadie2beb3e2008-03-06 23:01:47 -0800312 if (!range_is_allowed(vma->vm_pgoff, size))
313 return -EPERM;
314
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700315 if (!phys_mem_access_prot_allowed(file, vma->vm_pgoff, size,
316 &vma->vm_page_prot))
317 return -EINVAL;
318
Roland Dreier8b150472005-10-28 17:46:18 -0700319 vma->vm_page_prot = phys_mem_access_prot(file, vma->vm_pgoff,
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800320 size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700323 vma->vm_ops = &mmap_mem_ops;
324
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -0700325 /* Remap-pfn-range will mark the range VM_IO */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (remap_pfn_range(vma,
327 vma->vm_start,
328 vma->vm_pgoff,
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800329 size,
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700330 vma->vm_page_prot)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return -EAGAIN;
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return 0;
334}
335
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700336#ifdef CONFIG_DEVKMEM
Andrew Mortond7d4d842010-03-10 15:21:52 -0800337static int mmap_kmem(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Linus Torvalds4bb82552005-08-13 14:22:59 -0700339 unsigned long pfn;
340
Linus Torvalds6d3154c2007-01-22 08:53:24 -0800341 /* Turn a kernel-virtual address into a physical page frame */
342 pfn = __pa((u64)vma->vm_pgoff << PAGE_SHIFT) >> PAGE_SHIFT;
Linus Torvalds4bb82552005-08-13 14:22:59 -0700343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 /*
Andrew Mortond7d4d842010-03-10 15:21:52 -0800345 * RED-PEN: on some architectures there is more mapped memory than
346 * available in mem_map which pfn_valid checks for. Perhaps should add a
347 * new macro here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 *
349 * RED-PEN: vmalloc is not supported right now.
350 */
Linus Torvalds4bb82552005-08-13 14:22:59 -0700351 if (!pfn_valid(pfn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return -EIO;
Linus Torvalds4bb82552005-08-13 14:22:59 -0700353
354 vma->vm_pgoff = pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return mmap_mem(file, vma);
356}
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700357#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700359#ifdef CONFIG_CRASH_DUMP
360/*
361 * Read memory corresponding to the old kernel.
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700362 */
Vivek Goyal315c2152005-06-25 14:58:24 -0700363static ssize_t read_oldmem(struct file *file, char __user *buf,
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700364 size_t count, loff_t *ppos)
365{
Vivek Goyal315c2152005-06-25 14:58:24 -0700366 unsigned long pfn, offset;
367 size_t read = 0, csize;
368 int rc = 0;
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700369
Maneesh Soni72414d32005-06-25 14:58:28 -0700370 while (count) {
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700371 pfn = *ppos / PAGE_SIZE;
Vivek Goyal315c2152005-06-25 14:58:24 -0700372 if (pfn > saved_max_pfn)
373 return read;
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700374
Vivek Goyal315c2152005-06-25 14:58:24 -0700375 offset = (unsigned long)(*ppos % PAGE_SIZE);
376 if (count > PAGE_SIZE - offset)
377 csize = PAGE_SIZE - offset;
378 else
379 csize = count;
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700380
Vivek Goyal315c2152005-06-25 14:58:24 -0700381 rc = copy_oldmem_page(pfn, buf, csize, offset, 1);
382 if (rc < 0)
383 return rc;
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700384 buf += csize;
385 *ppos += csize;
386 read += csize;
387 count -= csize;
388 }
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700389 return read;
390}
391#endif
392
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700393#ifdef CONFIG_DEVKMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394/*
395 * This function reads the *virtual* memory as seen by the kernel.
396 */
Andrew Mortond7d4d842010-03-10 15:21:52 -0800397static ssize_t read_kmem(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 size_t count, loff_t *ppos)
399{
400 unsigned long p = *ppos;
401 ssize_t low_count, read, sz;
Hans Grob890537b2013-02-06 11:37:20 +0100402 char *kbuf; /* k-addr because vread() takes vmlist_lock rwlock */
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800403 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 read = 0;
406 if (p < (unsigned long) high_memory) {
407 low_count = count;
Andrew Mortond7d4d842010-03-10 15:21:52 -0800408 if (count > (unsigned long)high_memory - p)
409 low_count = (unsigned long)high_memory - p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
412 /* we don't have page 0 mapped on sparc and m68k.. */
413 if (p < PAGE_SIZE && low_count > 0) {
Wu Fengguang7fabadd2009-12-14 17:58:09 -0800414 sz = size_inside_page(p, low_count);
415 if (clear_user(buf, sz))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return -EFAULT;
Wu Fengguang7fabadd2009-12-14 17:58:09 -0800417 buf += sz;
418 p += sz;
419 read += sz;
420 low_count -= sz;
421 count -= sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423#endif
424 while (low_count > 0) {
Wu Fengguangf2223182009-12-14 17:58:07 -0800425 sz = size_inside_page(p, low_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 /*
428 * On ia64 if a page has been mapped somewhere as
429 * uncached, then it must also be accessed uncached
430 * by the kernel or data corruption may occur
431 */
432 kbuf = xlate_dev_kmem_ptr((char *)p);
433
434 if (copy_to_user(buf, kbuf, sz))
435 return -EFAULT;
436 buf += sz;
437 p += sz;
438 read += sz;
439 low_count -= sz;
440 count -= sz;
441 }
442 }
443
444 if (count > 0) {
445 kbuf = (char *)__get_free_page(GFP_KERNEL);
446 if (!kbuf)
447 return -ENOMEM;
448 while (count > 0) {
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800449 sz = size_inside_page(p, count);
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800450 if (!is_vmalloc_or_module_addr((void *)p)) {
451 err = -ENXIO;
452 break;
453 }
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800454 sz = vread(kbuf, (char *)p, sz);
455 if (!sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 break;
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800457 if (copy_to_user(buf, kbuf, sz)) {
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800458 err = -EFAULT;
459 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800461 count -= sz;
462 buf += sz;
463 read += sz;
464 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 }
466 free_page((unsigned long)kbuf);
467 }
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800468 *ppos = p;
469 return read ? read : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
472
Andrew Mortond7d4d842010-03-10 15:21:52 -0800473static ssize_t do_write_kmem(unsigned long p, const char __user *buf,
474 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
476 ssize_t written, sz;
477 unsigned long copied;
478
479 written = 0;
480#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
481 /* we don't have page 0 mapped on sparc and m68k.. */
Wu Fengguangee323982009-12-14 17:58:10 -0800482 if (p < PAGE_SIZE) {
483 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 /* Hmm. Do something? */
485 buf += sz;
486 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 count -= sz;
488 written += sz;
489 }
490#endif
491
492 while (count > 0) {
493 char *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Wu Fengguangee323982009-12-14 17:58:10 -0800495 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 /*
Andrew Mortond7d4d842010-03-10 15:21:52 -0800498 * On ia64 if a page has been mapped somewhere as uncached, then
499 * it must also be accessed uncached by the kernel or data
500 * corruption may occur.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 */
Wu Fengguangee323982009-12-14 17:58:10 -0800502 ptr = xlate_dev_kmem_ptr((char *)p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 copied = copy_from_user(ptr, buf, sz);
505 if (copied) {
Jan Beulichc654d602006-03-25 03:07:31 -0800506 written += sz - copied;
507 if (written)
508 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return -EFAULT;
510 }
511 buf += sz;
512 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 count -= sz;
514 written += sz;
515 }
516
517 *ppos += written;
518 return written;
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/*
522 * This function writes to the *virtual* memory as seen by the kernel.
523 */
Andrew Mortond7d4d842010-03-10 15:21:52 -0800524static ssize_t write_kmem(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 size_t count, loff_t *ppos)
526{
527 unsigned long p = *ppos;
528 ssize_t wrote = 0;
529 ssize_t virtr = 0;
Hans Grob890537b2013-02-06 11:37:20 +0100530 char *kbuf; /* k-addr because vwrite() takes vmlist_lock rwlock */
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800531 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 if (p < (unsigned long) high_memory) {
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800534 unsigned long to_write = min_t(unsigned long, count,
535 (unsigned long)high_memory - p);
Wu Fengguangee323982009-12-14 17:58:10 -0800536 wrote = do_write_kmem(p, buf, to_write, ppos);
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800537 if (wrote != to_write)
538 return wrote;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 p += wrote;
540 buf += wrote;
541 count -= wrote;
542 }
543
544 if (count > 0) {
545 kbuf = (char *)__get_free_page(GFP_KERNEL);
546 if (!kbuf)
547 return wrote ? wrote : -ENOMEM;
548 while (count > 0) {
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800549 unsigned long sz = size_inside_page(p, count);
550 unsigned long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800552 if (!is_vmalloc_or_module_addr((void *)p)) {
553 err = -ENXIO;
554 break;
555 }
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800556 n = copy_from_user(kbuf, buf, sz);
557 if (n) {
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800558 err = -EFAULT;
559 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 }
Wu Fengguangc85e9a92010-02-02 13:44:06 -0800561 vwrite(kbuf, (char *)p, sz);
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800562 count -= sz;
563 buf += sz;
564 virtr += sz;
565 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
567 free_page((unsigned long)kbuf);
568 }
569
KAMEZAWA Hiroyuki325fda72010-02-02 13:44:05 -0800570 *ppos = p;
571 return virtr + wrote ? : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700573#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Russell King4f911d62007-05-08 00:28:17 -0700575#ifdef CONFIG_DEVPORT
Andrew Mortond7d4d842010-03-10 15:21:52 -0800576static ssize_t read_port(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 size_t count, loff_t *ppos)
578{
579 unsigned long i = *ppos;
580 char __user *tmp = buf;
581
582 if (!access_ok(VERIFY_WRITE, buf, count))
Andrew Mortond7d4d842010-03-10 15:21:52 -0800583 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 while (count-- > 0 && i < 65536) {
Andrew Mortond7d4d842010-03-10 15:21:52 -0800585 if (__put_user(inb(i), tmp) < 0)
586 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 i++;
588 tmp++;
589 }
590 *ppos = i;
591 return tmp-buf;
592}
593
Andrew Mortond7d4d842010-03-10 15:21:52 -0800594static ssize_t write_port(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 size_t count, loff_t *ppos)
596{
597 unsigned long i = *ppos;
Hans Grob890537b2013-02-06 11:37:20 +0100598 const char __user *tmp = buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Andrew Mortond7d4d842010-03-10 15:21:52 -0800600 if (!access_ok(VERIFY_READ, buf, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return -EFAULT;
602 while (count-- > 0 && i < 65536) {
603 char c;
Jan Beulichc654d602006-03-25 03:07:31 -0800604 if (__get_user(c, tmp)) {
605 if (tmp > buf)
606 break;
Andrew Mortond7d4d842010-03-10 15:21:52 -0800607 return -EFAULT;
Jan Beulichc654d602006-03-25 03:07:31 -0800608 }
Andrew Mortond7d4d842010-03-10 15:21:52 -0800609 outb(c, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 i++;
611 tmp++;
612 }
613 *ppos = i;
614 return tmp-buf;
615}
616#endif
617
Andrew Mortond7d4d842010-03-10 15:21:52 -0800618static ssize_t read_null(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 size_t count, loff_t *ppos)
620{
621 return 0;
622}
623
Andrew Mortond7d4d842010-03-10 15:21:52 -0800624static ssize_t write_null(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 size_t count, loff_t *ppos)
626{
627 return count;
628}
629
Zach Brown162934d2013-05-07 16:18:27 -0700630static ssize_t aio_read_null(struct kiocb *iocb, const struct iovec *iov,
631 unsigned long nr_segs, loff_t pos)
632{
633 return 0;
634}
635
636static ssize_t aio_write_null(struct kiocb *iocb, const struct iovec *iov,
637 unsigned long nr_segs, loff_t pos)
638{
639 return iov_length(iov, nr_segs);
640}
641
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200642static int pipe_to_null(struct pipe_inode_info *info, struct pipe_buffer *buf,
643 struct splice_desc *sd)
644{
645 return sd->len;
646}
647
Andrew Mortond7d4d842010-03-10 15:21:52 -0800648static ssize_t splice_write_null(struct pipe_inode_info *pipe, struct file *out,
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200649 loff_t *ppos, size_t len, unsigned int flags)
650{
651 return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_null);
652}
653
Andrew Mortond7d4d842010-03-10 15:21:52 -0800654static ssize_t read_zero(struct file *file, char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 size_t count, loff_t *ppos)
656{
Nick Piggin557ed1f2007-10-16 01:24:40 -0700657 size_t written;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 if (!count)
660 return 0;
661
662 if (!access_ok(VERIFY_WRITE, buf, count))
663 return -EFAULT;
664
Nick Piggin557ed1f2007-10-16 01:24:40 -0700665 written = 0;
666 while (count) {
667 unsigned long unwritten;
668 size_t chunk = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Nick Piggin557ed1f2007-10-16 01:24:40 -0700670 if (chunk > PAGE_SIZE)
671 chunk = PAGE_SIZE; /* Just for latency reasons */
Nikanth Karthikesanbb521c52009-09-23 15:57:09 -0700672 unwritten = __clear_user(buf, chunk);
Nick Piggin557ed1f2007-10-16 01:24:40 -0700673 written += chunk - unwritten;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (unwritten)
Nick Piggin557ed1f2007-10-16 01:24:40 -0700675 break;
Linus Torvalds2b838682009-06-09 20:40:25 -0700676 if (signal_pending(current))
677 return written ? written : -ERESTARTSYS;
Nick Piggin557ed1f2007-10-16 01:24:40 -0700678 buf += chunk;
679 count -= chunk;
680 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return written ? written : -EFAULT;
683}
684
Zach Brown162934d2013-05-07 16:18:27 -0700685static ssize_t aio_read_zero(struct kiocb *iocb, const struct iovec *iov,
686 unsigned long nr_segs, loff_t pos)
687{
688 size_t written = 0;
689 unsigned long i;
690 ssize_t ret;
691
692 for (i = 0; i < nr_segs; i++) {
693 ret = read_zero(iocb->ki_filp, iov[i].iov_base, iov[i].iov_len,
694 &pos);
695 if (ret < 0)
696 break;
697 written += ret;
698 }
699
700 return written ? written : -EFAULT;
701}
702
Andrew Mortond7d4d842010-03-10 15:21:52 -0800703static int mmap_zero(struct file *file, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Nick Piggin557ed1f2007-10-16 01:24:40 -0700705#ifndef CONFIG_MMU
706 return -ENOSYS;
707#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (vma->vm_flags & VM_SHARED)
709 return shmem_zero_setup(vma);
Nick Piggin557ed1f2007-10-16 01:24:40 -0700710 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Andrew Mortond7d4d842010-03-10 15:21:52 -0800713static ssize_t write_full(struct file *file, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 size_t count, loff_t *ppos)
715{
716 return -ENOSPC;
717}
718
719/*
720 * Special lseek() function for /dev/null and /dev/zero. Most notably, you
721 * can fopen() both devices with "a" now. This was previously impossible.
722 * -- SRB.
723 */
Andrew Mortond7d4d842010-03-10 15:21:52 -0800724static loff_t null_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
726 return file->f_pos = 0;
727}
728
729/*
730 * The memory devices use the full 32/64 bits of the offset, and so we cannot
731 * check against negative addresses: they are ok. The return value is weird,
732 * though, in that case (0).
733 *
734 * also note that seeking relative to the "end of file" isn't supported:
735 * it has no meaning, so it returns -EINVAL.
736 */
Andrew Mortond7d4d842010-03-10 15:21:52 -0800737static loff_t memory_lseek(struct file *file, loff_t offset, int orig)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
739 loff_t ret;
740
Al Viro496ad9a2013-01-23 17:07:38 -0500741 mutex_lock(&file_inode(file)->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 switch (orig) {
Andrew Mortond7d4d842010-03-10 15:21:52 -0800743 case SEEK_CUR:
744 offset += file->f_pos;
Andrew Mortond7d4d842010-03-10 15:21:52 -0800745 case SEEK_SET:
746 /* to avoid userland mistaking f_pos=-9 as -EBADF=-9 */
747 if ((unsigned long long)offset >= ~0xFFFULL) {
748 ret = -EOVERFLOW;
749 break;
750 }
751 file->f_pos = offset;
752 ret = file->f_pos;
753 force_successful_syscall_return();
754 break;
755 default:
756 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
Al Viro496ad9a2013-01-23 17:07:38 -0500758 mutex_unlock(&file_inode(file)->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return ret;
760}
761
Hans Grob890537b2013-02-06 11:37:20 +0100762static int open_port(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
764 return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
765}
766
767#define zero_lseek null_lseek
768#define full_lseek null_lseek
769#define write_zero write_null
770#define read_full read_zero
Zach Brown162934d2013-05-07 16:18:27 -0700771#define aio_write_zero aio_write_null
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772#define open_mem open_port
773#define open_kmem open_mem
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700774#define open_oldmem open_mem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Arjan van de Ven62322d22006-07-03 00:24:21 -0700776static const struct file_operations mem_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 .llseek = memory_lseek,
778 .read = read_mem,
779 .write = write_mem,
780 .mmap = mmap_mem,
781 .open = open_mem,
David Howells5da61852006-09-27 01:50:16 -0700782 .get_unmapped_area = get_unmapped_area_mem,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783};
784
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700785#ifdef CONFIG_DEVKMEM
Arjan van de Ven62322d22006-07-03 00:24:21 -0700786static const struct file_operations kmem_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 .llseek = memory_lseek,
788 .read = read_kmem,
789 .write = write_kmem,
790 .mmap = mmap_kmem,
791 .open = open_kmem,
David Howells5da61852006-09-27 01:50:16 -0700792 .get_unmapped_area = get_unmapped_area_mem,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793};
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700794#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Arjan van de Ven62322d22006-07-03 00:24:21 -0700796static const struct file_operations null_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 .llseek = null_lseek,
798 .read = read_null,
799 .write = write_null,
Zach Brown162934d2013-05-07 16:18:27 -0700800 .aio_read = aio_read_null,
801 .aio_write = aio_write_null,
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200802 .splice_write = splice_write_null,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803};
804
Russell King4f911d62007-05-08 00:28:17 -0700805#ifdef CONFIG_DEVPORT
Arjan van de Ven62322d22006-07-03 00:24:21 -0700806static const struct file_operations port_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 .llseek = memory_lseek,
808 .read = read_port,
809 .write = write_port,
810 .open = open_port,
811};
812#endif
813
Arjan van de Ven62322d22006-07-03 00:24:21 -0700814static const struct file_operations zero_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 .llseek = zero_lseek,
816 .read = read_zero,
817 .write = write_zero,
Zach Brown162934d2013-05-07 16:18:27 -0700818 .aio_read = aio_read_zero,
819 .aio_write = aio_write_zero,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 .mmap = mmap_zero,
821};
822
David Howells5da61852006-09-27 01:50:16 -0700823/*
824 * capabilities for /dev/zero
825 * - permits private mappings, "copies" are taken of the source of zeros
Jan Kara371d2172010-09-21 11:49:01 +0200826 * - no writeback happens
David Howells5da61852006-09-27 01:50:16 -0700827 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828static struct backing_dev_info zero_bdi = {
Jens Axboed9938312009-06-12 14:45:52 +0200829 .name = "char/mem",
Jan Kara371d2172010-09-21 11:49:01 +0200830 .capabilities = BDI_CAP_MAP_COPY | BDI_CAP_NO_ACCT_AND_WRITEBACK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831};
832
Arjan van de Ven62322d22006-07-03 00:24:21 -0700833static const struct file_operations full_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 .llseek = full_lseek,
835 .read = read_full,
836 .write = write_full,
837};
838
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700839#ifdef CONFIG_CRASH_DUMP
Arjan van de Ven62322d22006-07-03 00:24:21 -0700840static const struct file_operations oldmem_fops = {
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700841 .read = read_oldmem,
842 .open = open_oldmem,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200843 .llseek = default_llseek,
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700844};
845#endif
846
Kay Sievers389e0cb2009-07-04 16:51:29 +0200847static const struct memdev {
848 const char *name;
Al Viro2c9ede52011-07-23 20:24:48 -0400849 umode_t mode;
Kay Sievers389e0cb2009-07-04 16:51:29 +0200850 const struct file_operations *fops;
851 struct backing_dev_info *dev_info;
852} devlist[] = {
Kay Sieverse454cea2009-09-18 23:01:12 +0200853 [1] = { "mem", 0, &mem_fops, &directly_mappable_cdev_bdi },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700854#ifdef CONFIG_DEVKMEM
Kay Sieverse454cea2009-09-18 23:01:12 +0200855 [2] = { "kmem", 0, &kmem_fops, &directly_mappable_cdev_bdi },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700856#endif
Kay Sieverse454cea2009-09-18 23:01:12 +0200857 [3] = { "null", 0666, &null_fops, NULL },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700858#ifdef CONFIG_DEVPORT
Kay Sieverse454cea2009-09-18 23:01:12 +0200859 [4] = { "port", 0, &port_fops, NULL },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700860#endif
Kay Sieverse454cea2009-09-18 23:01:12 +0200861 [5] = { "zero", 0666, &zero_fops, &zero_bdi },
862 [7] = { "full", 0666, &full_fops, NULL },
863 [8] = { "random", 0666, &random_fops, NULL },
864 [9] = { "urandom", 0666, &urandom_fops, NULL },
Kay Sievers7f3a7812012-05-09 01:37:51 +0200865#ifdef CONFIG_PRINTK
Kay Sieverse11fea92012-05-03 02:29:41 +0200866 [11] = { "kmsg", 0644, &kmsg_fops, NULL },
Kay Sievers7f3a7812012-05-09 01:37:51 +0200867#endif
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700868#ifdef CONFIG_CRASH_DUMP
Kay Sieverse454cea2009-09-18 23:01:12 +0200869 [12] = { "oldmem", 0, &oldmem_fops, NULL },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700870#endif
871};
872
873static int memory_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Kay Sievers389e0cb2009-07-04 16:51:29 +0200875 int minor;
876 const struct memdev *dev;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700877
Kay Sievers389e0cb2009-07-04 16:51:29 +0200878 minor = iminor(inode);
879 if (minor >= ARRAY_SIZE(devlist))
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200880 return -ENXIO;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700881
Kay Sievers389e0cb2009-07-04 16:51:29 +0200882 dev = &devlist[minor];
883 if (!dev->fops)
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200884 return -ENXIO;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700885
Kay Sievers389e0cb2009-07-04 16:51:29 +0200886 filp->f_op = dev->fops;
887 if (dev->dev_info)
888 filp->f_mapping->backing_dev_info = dev->dev_info;
889
KAMEZAWA Hiroyuki4a3956c2010-10-01 14:20:22 -0700890 /* Is /dev/mem or /dev/kmem ? */
891 if (dev->dev_info == &directly_mappable_cdev_bdi)
892 filp->f_mode |= FMODE_UNSIGNED_OFFSET;
893
Kay Sievers389e0cb2009-07-04 16:51:29 +0200894 if (dev->fops->open)
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200895 return dev->fops->open(inode, filp);
896
897 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
Arjan van de Ven62322d22006-07-03 00:24:21 -0700900static const struct file_operations memory_fops = {
Andrew Mortond7d4d842010-03-10 15:21:52 -0800901 .open = memory_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200902 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903};
904
Al Viro2c9ede52011-07-23 20:24:48 -0400905static char *mem_devnode(struct device *dev, umode_t *mode)
Kay Sieverse454cea2009-09-18 23:01:12 +0200906{
907 if (mode && devlist[MINOR(dev->devt)].mode)
908 *mode = devlist[MINOR(dev->devt)].mode;
909 return NULL;
910}
911
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800912static struct class *mem_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914static int __init chr_dev_init(void)
915{
Kay Sievers389e0cb2009-07-04 16:51:29 +0200916 int minor;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700917 int err;
918
919 err = bdi_init(&zero_bdi);
920 if (err)
921 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Andrew Mortond7d4d842010-03-10 15:21:52 -0800923 if (register_chrdev(MEM_MAJOR, "mem", &memory_fops))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 printk("unable to get major %d for memory devs\n", MEM_MAJOR);
925
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800926 mem_class = class_create(THIS_MODULE, "mem");
Anton Blanchard6e191f72010-04-06 14:34:55 -0700927 if (IS_ERR(mem_class))
928 return PTR_ERR(mem_class);
929
Kay Sieverse454cea2009-09-18 23:01:12 +0200930 mem_class->devnode = mem_devnode;
Kay Sievers389e0cb2009-07-04 16:51:29 +0200931 for (minor = 1; minor < ARRAY_SIZE(devlist); minor++) {
932 if (!devlist[minor].name)
933 continue;
Haren Mynenie1612de2012-07-11 15:18:44 +1000934
935 /*
Hans Grob890537b2013-02-06 11:37:20 +0100936 * Create /dev/port?
Haren Mynenie1612de2012-07-11 15:18:44 +1000937 */
938 if ((minor == DEVPORT_MINOR) && !arch_has_dev_port())
939 continue;
940
Kay Sievers389e0cb2009-07-04 16:51:29 +0200941 device_create(mem_class, NULL, MKDEV(MEM_MAJOR, minor),
942 NULL, devlist[minor].name);
943 }
Greg Kroah-Hartmanebf644c2006-07-25 17:13:31 -0700944
David Howells31d1d482010-08-06 16:34:43 +0100945 return tty_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
948fs_initcall(chr_dev_init);