blob: be832b6f8279919831df235a11738f7398668722 [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 *
6 * Added devfs support.
7 * 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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include <asm/uaccess.h>
31#include <asm/io.h>
32
33#ifdef CONFIG_IA64
34# include <linux/efi.h>
35#endif
36
Wu Fengguangf2223182009-12-14 17:58:07 -080037static inline unsigned long size_inside_page(unsigned long start,
38 unsigned long size)
39{
40 unsigned long sz;
41
Wu Fengguang7fabadd2009-12-14 17:58:09 -080042 sz = PAGE_SIZE - (start & (PAGE_SIZE - 1));
Wu Fengguangf2223182009-12-14 17:58:07 -080043
Wu Fengguang7fabadd2009-12-14 17:58:09 -080044 return min(sz, size);
Wu Fengguangf2223182009-12-14 17:58:07 -080045}
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/*
48 * Architectures vary in how they handle caching for addresses
49 * outside of main memory.
50 *
51 */
52static inline int uncached_access(struct file *file, unsigned long addr)
53{
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -070054#if defined(CONFIG_IA64)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 /*
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +010056 * On ia64, we ignore O_DSYNC because we cannot tolerate memory attribute aliases.
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 */
58 return !(efi_mem_attributes(addr) & EFI_MEMORY_WB);
Ralf Baechle24e9d0b2007-07-10 17:32:56 +010059#elif defined(CONFIG_MIPS)
60 {
61 extern int __uncached_access(struct file *file,
62 unsigned long addr);
63
64 return __uncached_access(file, addr);
65 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#else
67 /*
68 * Accessing memory above the top the kernel knows about or through a file pointer
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +010069 * that was marked O_DSYNC will be done non-cached.
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 */
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +010071 if (file->f_flags & O_DSYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return 1;
73 return addr >= __pa(high_memory);
74#endif
75}
76
77#ifndef ARCH_HAS_VALID_PHYS_ADDR_RANGE
Bjorn Helgaas136939a2006-03-26 01:37:05 -080078static inline int valid_phys_addr_range(unsigned long addr, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
Bjorn Helgaas136939a2006-03-26 01:37:05 -080080 if (addr + count > __pa(high_memory))
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return 0;
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return 1;
84}
Bjorn Helgaas80851ef2006-01-08 01:04:13 -080085
Lennert Buytenhek06c67be2006-07-10 04:45:27 -070086static inline int valid_mmap_phys_addr_range(unsigned long pfn, size_t size)
Bjorn Helgaas80851ef2006-01-08 01:04:13 -080087{
88 return 1;
89}
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#endif
91
Ingo Molnard0926332008-07-18 00:26:59 +020092#ifdef CONFIG_STRICT_DEVMEM
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080093static inline int range_is_allowed(unsigned long pfn, unsigned long size)
Arjan van de Venae531c22008-04-24 23:40:47 +020094{
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080095 u64 from = ((u64)pfn) << PAGE_SHIFT;
96 u64 to = from + size;
97 u64 cursor = from;
Arjan van de Venae531c22008-04-24 23:40:47 +020098
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080099 while (cursor < to) {
100 if (!devmem_is_allowed(pfn)) {
101 printk(KERN_INFO
102 "Program %s tried to access /dev/mem between %Lx->%Lx.\n",
Arjan van de Venae531c22008-04-24 23:40:47 +0200103 current->comm, from, to);
104 return 0;
105 }
Venki Pallipadie2beb3e2008-03-06 23:01:47 -0800106 cursor += PAGE_SIZE;
107 pfn++;
Arjan van de Venae531c22008-04-24 23:40:47 +0200108 }
109 return 1;
110}
111#else
Venki Pallipadie2beb3e2008-03-06 23:01:47 -0800112static inline int range_is_allowed(unsigned long pfn, unsigned long size)
Arjan van de Venae531c22008-04-24 23:40:47 +0200113{
114 return 1;
115}
116#endif
117
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700118void __attribute__((weak)) unxlate_dev_mem_ptr(unsigned long phys, void *addr)
119{
120}
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/*
123 * This funcion reads the *physical* memory. The f_pos points directly to the
124 * memory location.
125 */
126static ssize_t read_mem(struct file * file, char __user * buf,
127 size_t count, loff_t *ppos)
128{
129 unsigned long p = *ppos;
130 ssize_t read, sz;
131 char *ptr;
132
Bjorn Helgaas136939a2006-03-26 01:37:05 -0800133 if (!valid_phys_addr_range(p, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return -EFAULT;
135 read = 0;
136#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
137 /* we don't have page 0 mapped on sparc and m68k.. */
138 if (p < PAGE_SIZE) {
Wu Fengguang7fabadd2009-12-14 17:58:09 -0800139 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 if (sz > 0) {
141 if (clear_user(buf, sz))
142 return -EFAULT;
143 buf += sz;
144 p += sz;
145 count -= sz;
146 read += sz;
147 }
148 }
149#endif
150
151 while (count > 0) {
Wu Fengguangfa29e972009-12-14 17:58:08 -0800152 unsigned long remaining;
153
Wu Fengguangf2223182009-12-14 17:58:07 -0800154 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700156 if (!range_is_allowed(p >> PAGE_SHIFT, count))
157 return -EPERM;
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 /*
160 * On ia64 if a page has been mapped somewhere as
161 * uncached, then it must also be accessed uncached
162 * by the kernel or data corruption may occur
163 */
164 ptr = xlate_dev_mem_ptr(p);
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700165 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 return -EFAULT;
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700167
Wu Fengguangfa29e972009-12-14 17:58:08 -0800168 remaining = copy_to_user(buf, ptr, sz);
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700169 unxlate_dev_mem_ptr(p, ptr);
Wu Fengguangfa29e972009-12-14 17:58:08 -0800170 if (remaining)
171 return -EFAULT;
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 buf += sz;
174 p += sz;
175 count -= sz;
176 read += sz;
177 }
178
179 *ppos += read;
180 return read;
181}
182
183static ssize_t write_mem(struct file * file, const char __user * buf,
184 size_t count, loff_t *ppos)
185{
186 unsigned long p = *ppos;
187 ssize_t written, sz;
188 unsigned long copied;
189 void *ptr;
190
Bjorn Helgaas136939a2006-03-26 01:37:05 -0800191 if (!valid_phys_addr_range(p, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return -EFAULT;
193
194 written = 0;
195
196#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
197 /* we don't have page 0 mapped on sparc and m68k.. */
198 if (p < PAGE_SIZE) {
Wu Fengguang7fabadd2009-12-14 17:58:09 -0800199 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 /* Hmm. Do something? */
201 buf += sz;
202 p += sz;
203 count -= sz;
204 written += sz;
205 }
206#endif
207
208 while (count > 0) {
Wu Fengguangf2223182009-12-14 17:58:07 -0800209 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700211 if (!range_is_allowed(p >> PAGE_SHIFT, sz))
212 return -EPERM;
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 /*
215 * On ia64 if a page has been mapped somewhere as
216 * uncached, then it must also be accessed uncached
217 * by the kernel or data corruption may occur
218 */
219 ptr = xlate_dev_mem_ptr(p);
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700220 if (!ptr) {
Jan Beulichc654d602006-03-25 03:07:31 -0800221 if (written)
222 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 return -EFAULT;
224 }
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700225
226 copied = copy_from_user(ptr, buf, sz);
Wu Fengguangfa29e972009-12-14 17:58:08 -0800227 unxlate_dev_mem_ptr(p, ptr);
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700228 if (copied) {
229 written += sz - copied;
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700230 if (written)
231 break;
232 return -EFAULT;
233 }
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 buf += sz;
236 p += sz;
237 count -= sz;
238 written += sz;
239 }
240
241 *ppos += written;
242 return written;
243}
244
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700245int __attribute__((weak)) phys_mem_access_prot_allowed(struct file *file,
246 unsigned long pfn, unsigned long size, pgprot_t *vma_prot)
247{
248 return 1;
249}
250
Bjorn Helgaas44ac8412006-01-08 01:04:10 -0800251#ifndef __HAVE_PHYS_MEM_ACCESS_PROT
252static pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
253 unsigned long size, pgprot_t vma_prot)
254{
255#ifdef pgprot_noncached
256 unsigned long offset = pfn << PAGE_SHIFT;
257
258 if (uncached_access(file, offset))
259 return pgprot_noncached(vma_prot);
260#endif
261 return vma_prot;
262}
263#endif
264
David Howells5da61852006-09-27 01:50:16 -0700265#ifndef CONFIG_MMU
266static unsigned long get_unmapped_area_mem(struct file *file,
267 unsigned long addr,
268 unsigned long len,
269 unsigned long pgoff,
270 unsigned long flags)
271{
272 if (!valid_mmap_phys_addr_range(pgoff, len))
273 return (unsigned long) -EINVAL;
Benjamin Herrenschmidt8a932582007-04-16 22:53:16 -0700274 return pgoff << PAGE_SHIFT;
David Howells5da61852006-09-27 01:50:16 -0700275}
276
277/* can't do an in-place private mapping if there's no MMU */
278static inline int private_mapping_ok(struct vm_area_struct *vma)
279{
280 return vma->vm_flags & VM_MAYSHARE;
281}
282#else
283#define get_unmapped_area_mem NULL
284
285static inline int private_mapping_ok(struct vm_area_struct *vma)
286{
287 return 1;
288}
289#endif
290
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +0400291static const struct vm_operations_struct mmap_mem_ops = {
Rik van Riel7ae8ed52008-07-23 21:27:07 -0700292#ifdef CONFIG_HAVE_IOREMAP_PROT
293 .access = generic_access_phys
294#endif
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700295};
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297static int mmap_mem(struct file * file, struct vm_area_struct * vma)
298{
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800299 size_t size = vma->vm_end - vma->vm_start;
300
Lennert Buytenhek06c67be2006-07-10 04:45:27 -0700301 if (!valid_mmap_phys_addr_range(vma->vm_pgoff, size))
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800302 return -EINVAL;
303
David Howells5da61852006-09-27 01:50:16 -0700304 if (!private_mapping_ok(vma))
305 return -ENOSYS;
306
Venki Pallipadie2beb3e2008-03-06 23:01:47 -0800307 if (!range_is_allowed(vma->vm_pgoff, size))
308 return -EPERM;
309
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700310 if (!phys_mem_access_prot_allowed(file, vma->vm_pgoff, size,
311 &vma->vm_page_prot))
312 return -EINVAL;
313
Roland Dreier8b150472005-10-28 17:46:18 -0700314 vma->vm_page_prot = phys_mem_access_prot(file, vma->vm_pgoff,
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800315 size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700318 vma->vm_ops = &mmap_mem_ops;
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /* Remap-pfn-range will mark the range VM_IO and VM_RESERVED */
321 if (remap_pfn_range(vma,
322 vma->vm_start,
323 vma->vm_pgoff,
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800324 size,
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700325 vma->vm_page_prot)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return -EAGAIN;
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return 0;
329}
330
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700331#ifdef CONFIG_DEVKMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332static int mmap_kmem(struct file * file, struct vm_area_struct * vma)
333{
Linus Torvalds4bb82552005-08-13 14:22:59 -0700334 unsigned long pfn;
335
Linus Torvalds6d3154c2007-01-22 08:53:24 -0800336 /* Turn a kernel-virtual address into a physical page frame */
337 pfn = __pa((u64)vma->vm_pgoff << PAGE_SHIFT) >> PAGE_SHIFT;
Linus Torvalds4bb82552005-08-13 14:22:59 -0700338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 /*
340 * RED-PEN: on some architectures there is more mapped memory
341 * than available in mem_map which pfn_valid checks
342 * for. Perhaps should add a new macro here.
343 *
344 * RED-PEN: vmalloc is not supported right now.
345 */
Linus Torvalds4bb82552005-08-13 14:22:59 -0700346 if (!pfn_valid(pfn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return -EIO;
Linus Torvalds4bb82552005-08-13 14:22:59 -0700348
349 vma->vm_pgoff = pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return mmap_mem(file, vma);
351}
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700352#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700354#ifdef CONFIG_CRASH_DUMP
355/*
356 * Read memory corresponding to the old kernel.
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700357 */
Vivek Goyal315c2152005-06-25 14:58:24 -0700358static ssize_t read_oldmem(struct file *file, char __user *buf,
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700359 size_t count, loff_t *ppos)
360{
Vivek Goyal315c2152005-06-25 14:58:24 -0700361 unsigned long pfn, offset;
362 size_t read = 0, csize;
363 int rc = 0;
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700364
Maneesh Soni72414d32005-06-25 14:58:28 -0700365 while (count) {
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700366 pfn = *ppos / PAGE_SIZE;
Vivek Goyal315c2152005-06-25 14:58:24 -0700367 if (pfn > saved_max_pfn)
368 return read;
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700369
Vivek Goyal315c2152005-06-25 14:58:24 -0700370 offset = (unsigned long)(*ppos % PAGE_SIZE);
371 if (count > PAGE_SIZE - offset)
372 csize = PAGE_SIZE - offset;
373 else
374 csize = count;
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700375
Vivek Goyal315c2152005-06-25 14:58:24 -0700376 rc = copy_oldmem_page(pfn, buf, csize, offset, 1);
377 if (rc < 0)
378 return rc;
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700379 buf += csize;
380 *ppos += csize;
381 read += csize;
382 count -= csize;
383 }
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700384 return read;
385}
386#endif
387
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700388#ifdef CONFIG_DEVKMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389/*
390 * This function reads the *virtual* memory as seen by the kernel.
391 */
392static ssize_t read_kmem(struct file *file, char __user *buf,
393 size_t count, loff_t *ppos)
394{
395 unsigned long p = *ppos;
396 ssize_t low_count, read, sz;
397 char * kbuf; /* k-addr because vread() takes vmlist_lock rwlock */
398
399 read = 0;
400 if (p < (unsigned long) high_memory) {
401 low_count = count;
402 if (count > (unsigned long) high_memory - p)
403 low_count = (unsigned long) high_memory - p;
404
405#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
406 /* we don't have page 0 mapped on sparc and m68k.. */
407 if (p < PAGE_SIZE && low_count > 0) {
Wu Fengguang7fabadd2009-12-14 17:58:09 -0800408 sz = size_inside_page(p, low_count);
409 if (clear_user(buf, sz))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return -EFAULT;
Wu Fengguang7fabadd2009-12-14 17:58:09 -0800411 buf += sz;
412 p += sz;
413 read += sz;
414 low_count -= sz;
415 count -= sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417#endif
418 while (low_count > 0) {
Wu Fengguangf2223182009-12-14 17:58:07 -0800419 sz = size_inside_page(p, low_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 /*
422 * On ia64 if a page has been mapped somewhere as
423 * uncached, then it must also be accessed uncached
424 * by the kernel or data corruption may occur
425 */
426 kbuf = xlate_dev_kmem_ptr((char *)p);
427
428 if (copy_to_user(buf, kbuf, sz))
429 return -EFAULT;
430 buf += sz;
431 p += sz;
432 read += sz;
433 low_count -= sz;
434 count -= sz;
435 }
436 }
437
438 if (count > 0) {
439 kbuf = (char *)__get_free_page(GFP_KERNEL);
440 if (!kbuf)
441 return -ENOMEM;
442 while (count > 0) {
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800443 sz = size_inside_page(p, count);
444 sz = vread(kbuf, (char *)p, sz);
445 if (!sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 break;
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800447 if (copy_to_user(buf, kbuf, sz)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 free_page((unsigned long)kbuf);
449 return -EFAULT;
450 }
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800451 count -= sz;
452 buf += sz;
453 read += sz;
454 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456 free_page((unsigned long)kbuf);
457 }
458 *ppos = p;
459 return read;
460}
461
462
463static inline ssize_t
Wu Fengguangee323982009-12-14 17:58:10 -0800464do_write_kmem(unsigned long p, const char __user *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 size_t count, loff_t *ppos)
466{
467 ssize_t written, sz;
468 unsigned long copied;
469
470 written = 0;
471#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
472 /* we don't have page 0 mapped on sparc and m68k.. */
Wu Fengguangee323982009-12-14 17:58:10 -0800473 if (p < PAGE_SIZE) {
474 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 /* Hmm. Do something? */
476 buf += sz;
477 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 count -= sz;
479 written += sz;
480 }
481#endif
482
483 while (count > 0) {
484 char *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Wu Fengguangee323982009-12-14 17:58:10 -0800486 sz = size_inside_page(p, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 /*
489 * On ia64 if a page has been mapped somewhere as
490 * uncached, then it must also be accessed uncached
491 * by the kernel or data corruption may occur
492 */
Wu Fengguangee323982009-12-14 17:58:10 -0800493 ptr = xlate_dev_kmem_ptr((char *)p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 copied = copy_from_user(ptr, buf, sz);
496 if (copied) {
Jan Beulichc654d602006-03-25 03:07:31 -0800497 written += sz - copied;
498 if (written)
499 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return -EFAULT;
501 }
502 buf += sz;
503 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 count -= sz;
505 written += sz;
506 }
507
508 *ppos += written;
509 return written;
510}
511
512
513/*
514 * This function writes to the *virtual* memory as seen by the kernel.
515 */
516static ssize_t write_kmem(struct file * file, const char __user * buf,
517 size_t count, loff_t *ppos)
518{
519 unsigned long p = *ppos;
520 ssize_t wrote = 0;
521 ssize_t virtr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 char * kbuf; /* k-addr because vwrite() takes vmlist_lock rwlock */
523
524 if (p < (unsigned long) high_memory) {
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800525 unsigned long to_write = min_t(unsigned long, count,
526 (unsigned long)high_memory - p);
Wu Fengguangee323982009-12-14 17:58:10 -0800527 wrote = do_write_kmem(p, buf, to_write, ppos);
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800528 if (wrote != to_write)
529 return wrote;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 p += wrote;
531 buf += wrote;
532 count -= wrote;
533 }
534
535 if (count > 0) {
536 kbuf = (char *)__get_free_page(GFP_KERNEL);
537 if (!kbuf)
538 return wrote ? wrote : -ENOMEM;
539 while (count > 0) {
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800540 unsigned long sz = size_inside_page(p, count);
541 unsigned long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800543 n = copy_from_user(kbuf, buf, sz);
544 if (n) {
Wu Fengguang4ea2f432009-12-14 17:57:57 -0800545 if (wrote + virtr)
546 break;
547 free_page((unsigned long)kbuf);
548 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
Wu Fengguang80ad89a2009-12-14 17:58:10 -0800550 sz = vwrite(kbuf, (char *)p, sz);
551 count -= sz;
552 buf += sz;
553 virtr += sz;
554 p += sz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556 free_page((unsigned long)kbuf);
557 }
558
559 *ppos = p;
560 return virtr + wrote;
561}
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700562#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Russell King4f911d62007-05-08 00:28:17 -0700564#ifdef CONFIG_DEVPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565static ssize_t read_port(struct file * file, char __user * buf,
566 size_t count, loff_t *ppos)
567{
568 unsigned long i = *ppos;
569 char __user *tmp = buf;
570
571 if (!access_ok(VERIFY_WRITE, buf, count))
572 return -EFAULT;
573 while (count-- > 0 && i < 65536) {
574 if (__put_user(inb(i),tmp) < 0)
575 return -EFAULT;
576 i++;
577 tmp++;
578 }
579 *ppos = i;
580 return tmp-buf;
581}
582
583static ssize_t write_port(struct file * file, const char __user * buf,
584 size_t count, loff_t *ppos)
585{
586 unsigned long i = *ppos;
587 const char __user * tmp = buf;
588
589 if (!access_ok(VERIFY_READ,buf,count))
590 return -EFAULT;
591 while (count-- > 0 && i < 65536) {
592 char c;
Jan Beulichc654d602006-03-25 03:07:31 -0800593 if (__get_user(c, tmp)) {
594 if (tmp > buf)
595 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return -EFAULT;
Jan Beulichc654d602006-03-25 03:07:31 -0800597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 outb(c,i);
599 i++;
600 tmp++;
601 }
602 *ppos = i;
603 return tmp-buf;
604}
605#endif
606
607static ssize_t read_null(struct file * file, char __user * buf,
608 size_t count, loff_t *ppos)
609{
610 return 0;
611}
612
613static ssize_t write_null(struct file * file, const char __user * buf,
614 size_t count, loff_t *ppos)
615{
616 return count;
617}
618
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200619static int pipe_to_null(struct pipe_inode_info *info, struct pipe_buffer *buf,
620 struct splice_desc *sd)
621{
622 return sd->len;
623}
624
625static ssize_t splice_write_null(struct pipe_inode_info *pipe,struct file *out,
626 loff_t *ppos, size_t len, unsigned int flags)
627{
628 return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_null);
629}
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631static ssize_t read_zero(struct file * file, char __user * buf,
632 size_t count, loff_t *ppos)
633{
Nick Piggin557ed1f2007-10-16 01:24:40 -0700634 size_t written;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 if (!count)
637 return 0;
638
639 if (!access_ok(VERIFY_WRITE, buf, count))
640 return -EFAULT;
641
Nick Piggin557ed1f2007-10-16 01:24:40 -0700642 written = 0;
643 while (count) {
644 unsigned long unwritten;
645 size_t chunk = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Nick Piggin557ed1f2007-10-16 01:24:40 -0700647 if (chunk > PAGE_SIZE)
648 chunk = PAGE_SIZE; /* Just for latency reasons */
Nikanth Karthikesanbb521c52009-09-23 15:57:09 -0700649 unwritten = __clear_user(buf, chunk);
Nick Piggin557ed1f2007-10-16 01:24:40 -0700650 written += chunk - unwritten;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (unwritten)
Nick Piggin557ed1f2007-10-16 01:24:40 -0700652 break;
Linus Torvalds2b838682009-06-09 20:40:25 -0700653 if (signal_pending(current))
654 return written ? written : -ERESTARTSYS;
Nick Piggin557ed1f2007-10-16 01:24:40 -0700655 buf += chunk;
656 count -= chunk;
657 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return written ? written : -EFAULT;
660}
661
662static int mmap_zero(struct file * file, struct vm_area_struct * vma)
663{
Nick Piggin557ed1f2007-10-16 01:24:40 -0700664#ifndef CONFIG_MMU
665 return -ENOSYS;
666#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 if (vma->vm_flags & VM_SHARED)
668 return shmem_zero_setup(vma);
Nick Piggin557ed1f2007-10-16 01:24:40 -0700669 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672static ssize_t write_full(struct file * file, const char __user * buf,
673 size_t count, loff_t *ppos)
674{
675 return -ENOSPC;
676}
677
678/*
679 * Special lseek() function for /dev/null and /dev/zero. Most notably, you
680 * can fopen() both devices with "a" now. This was previously impossible.
681 * -- SRB.
682 */
683
684static loff_t null_lseek(struct file * file, loff_t offset, int orig)
685{
686 return file->f_pos = 0;
687}
688
689/*
690 * The memory devices use the full 32/64 bits of the offset, and so we cannot
691 * check against negative addresses: they are ok. The return value is weird,
692 * though, in that case (0).
693 *
694 * also note that seeking relative to the "end of file" isn't supported:
695 * it has no meaning, so it returns -EINVAL.
696 */
697static loff_t memory_lseek(struct file * file, loff_t offset, int orig)
698{
699 loff_t ret;
700
Josef Sipeka7113a92006-12-08 02:36:55 -0800701 mutex_lock(&file->f_path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 switch (orig) {
703 case 0:
704 file->f_pos = offset;
705 ret = file->f_pos;
706 force_successful_syscall_return();
707 break;
708 case 1:
709 file->f_pos += offset;
710 ret = file->f_pos;
711 force_successful_syscall_return();
712 break;
713 default:
714 ret = -EINVAL;
715 }
Josef Sipeka7113a92006-12-08 02:36:55 -0800716 mutex_unlock(&file->f_path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return ret;
718}
719
720static int open_port(struct inode * inode, struct file * filp)
721{
722 return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
723}
724
725#define zero_lseek null_lseek
726#define full_lseek null_lseek
727#define write_zero write_null
728#define read_full read_zero
729#define open_mem open_port
730#define open_kmem open_mem
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700731#define open_oldmem open_mem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Arjan van de Ven62322d22006-07-03 00:24:21 -0700733static const struct file_operations mem_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 .llseek = memory_lseek,
735 .read = read_mem,
736 .write = write_mem,
737 .mmap = mmap_mem,
738 .open = open_mem,
David Howells5da61852006-09-27 01:50:16 -0700739 .get_unmapped_area = get_unmapped_area_mem,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740};
741
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700742#ifdef CONFIG_DEVKMEM
Arjan van de Ven62322d22006-07-03 00:24:21 -0700743static const struct file_operations kmem_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 .llseek = memory_lseek,
745 .read = read_kmem,
746 .write = write_kmem,
747 .mmap = mmap_kmem,
748 .open = open_kmem,
David Howells5da61852006-09-27 01:50:16 -0700749 .get_unmapped_area = get_unmapped_area_mem,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750};
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700751#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Arjan van de Ven62322d22006-07-03 00:24:21 -0700753static const struct file_operations null_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 .llseek = null_lseek,
755 .read = read_null,
756 .write = write_null,
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200757 .splice_write = splice_write_null,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758};
759
Russell King4f911d62007-05-08 00:28:17 -0700760#ifdef CONFIG_DEVPORT
Arjan van de Ven62322d22006-07-03 00:24:21 -0700761static const struct file_operations port_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 .llseek = memory_lseek,
763 .read = read_port,
764 .write = write_port,
765 .open = open_port,
766};
767#endif
768
Arjan van de Ven62322d22006-07-03 00:24:21 -0700769static const struct file_operations zero_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 .llseek = zero_lseek,
771 .read = read_zero,
772 .write = write_zero,
773 .mmap = mmap_zero,
774};
775
David Howells5da61852006-09-27 01:50:16 -0700776/*
777 * capabilities for /dev/zero
778 * - permits private mappings, "copies" are taken of the source of zeros
779 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780static struct backing_dev_info zero_bdi = {
Jens Axboed9938312009-06-12 14:45:52 +0200781 .name = "char/mem",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 .capabilities = BDI_CAP_MAP_COPY,
783};
784
Arjan van de Ven62322d22006-07-03 00:24:21 -0700785static const struct file_operations full_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 .llseek = full_lseek,
787 .read = read_full,
788 .write = write_full,
789};
790
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700791#ifdef CONFIG_CRASH_DUMP
Arjan van de Ven62322d22006-07-03 00:24:21 -0700792static const struct file_operations oldmem_fops = {
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700793 .read = read_oldmem,
794 .open = open_oldmem,
795};
796#endif
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798static ssize_t kmsg_write(struct file * file, const char __user * buf,
799 size_t count, loff_t *ppos)
800{
801 char *tmp;
Guillaume Chazaraincd140a52006-01-08 01:02:43 -0800802 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 tmp = kmalloc(count + 1, GFP_KERNEL);
805 if (tmp == NULL)
806 return -ENOMEM;
807 ret = -EFAULT;
808 if (!copy_from_user(tmp, buf, count)) {
809 tmp[count] = 0;
810 ret = printk("%s", tmp);
Guillaume Chazaraincd140a52006-01-08 01:02:43 -0800811 if (ret > count)
812 /* printk can add a prefix */
813 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815 kfree(tmp);
816 return ret;
817}
818
Arjan van de Ven62322d22006-07-03 00:24:21 -0700819static const struct file_operations kmsg_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 .write = kmsg_write,
821};
822
Kay Sievers389e0cb2009-07-04 16:51:29 +0200823static const struct memdev {
824 const char *name;
Kay Sieverse454cea2009-09-18 23:01:12 +0200825 mode_t mode;
Kay Sievers389e0cb2009-07-04 16:51:29 +0200826 const struct file_operations *fops;
827 struct backing_dev_info *dev_info;
828} devlist[] = {
Kay Sieverse454cea2009-09-18 23:01:12 +0200829 [1] = { "mem", 0, &mem_fops, &directly_mappable_cdev_bdi },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700830#ifdef CONFIG_DEVKMEM
Kay Sieverse454cea2009-09-18 23:01:12 +0200831 [2] = { "kmem", 0, &kmem_fops, &directly_mappable_cdev_bdi },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700832#endif
Kay Sieverse454cea2009-09-18 23:01:12 +0200833 [3] = { "null", 0666, &null_fops, NULL },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700834#ifdef CONFIG_DEVPORT
Kay Sieverse454cea2009-09-18 23:01:12 +0200835 [4] = { "port", 0, &port_fops, NULL },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700836#endif
Kay Sieverse454cea2009-09-18 23:01:12 +0200837 [5] = { "zero", 0666, &zero_fops, &zero_bdi },
838 [7] = { "full", 0666, &full_fops, NULL },
839 [8] = { "random", 0666, &random_fops, NULL },
840 [9] = { "urandom", 0666, &urandom_fops, NULL },
841 [11] = { "kmsg", 0, &kmsg_fops, NULL },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700842#ifdef CONFIG_CRASH_DUMP
Kay Sieverse454cea2009-09-18 23:01:12 +0200843 [12] = { "oldmem", 0, &oldmem_fops, NULL },
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700844#endif
845};
846
847static int memory_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Kay Sievers389e0cb2009-07-04 16:51:29 +0200849 int minor;
850 const struct memdev *dev;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700851
Kay Sievers389e0cb2009-07-04 16:51:29 +0200852 minor = iminor(inode);
853 if (minor >= ARRAY_SIZE(devlist))
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200854 return -ENXIO;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700855
Kay Sievers389e0cb2009-07-04 16:51:29 +0200856 dev = &devlist[minor];
857 if (!dev->fops)
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200858 return -ENXIO;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700859
Kay Sievers389e0cb2009-07-04 16:51:29 +0200860 filp->f_op = dev->fops;
861 if (dev->dev_info)
862 filp->f_mapping->backing_dev_info = dev->dev_info;
863
864 if (dev->fops->open)
Frederic Weisbecker205153a2009-10-09 20:31:02 +0200865 return dev->fops->open(inode, filp);
866
867 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
Arjan van de Ven62322d22006-07-03 00:24:21 -0700870static const struct file_operations memory_fops = {
Kay Sievers389e0cb2009-07-04 16:51:29 +0200871 .open = memory_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872};
873
Kay Sieverse454cea2009-09-18 23:01:12 +0200874static char *mem_devnode(struct device *dev, mode_t *mode)
875{
876 if (mode && devlist[MINOR(dev->devt)].mode)
877 *mode = devlist[MINOR(dev->devt)].mode;
878 return NULL;
879}
880
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800881static struct class *mem_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883static int __init chr_dev_init(void)
884{
Kay Sievers389e0cb2009-07-04 16:51:29 +0200885 int minor;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700886 int err;
887
888 err = bdi_init(&zero_bdi);
889 if (err)
890 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 if (register_chrdev(MEM_MAJOR,"mem",&memory_fops))
893 printk("unable to get major %d for memory devs\n", MEM_MAJOR);
894
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800895 mem_class = class_create(THIS_MODULE, "mem");
Kay Sieverse454cea2009-09-18 23:01:12 +0200896 mem_class->devnode = mem_devnode;
Kay Sievers389e0cb2009-07-04 16:51:29 +0200897 for (minor = 1; minor < ARRAY_SIZE(devlist); minor++) {
898 if (!devlist[minor].name)
899 continue;
900 device_create(mem_class, NULL, MKDEV(MEM_MAJOR, minor),
901 NULL, devlist[minor].name);
902 }
Greg Kroah-Hartmanebf644c2006-07-25 17:13:31 -0700903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 return 0;
905}
906
907fs_initcall(chr_dev_init);