blob: afa8813e737a31cd630d9bdd890b878175b993e6 [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>
8 * Shared /dev/zero mmaping support, Feb 2000, Kanoj Sarcar <kanoj@sgi.com>
9 */
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>
Jonathan Corbet1f439642008-05-15 11:04:19 -060029#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/uaccess.h>
32#include <asm/io.h>
33
34#ifdef CONFIG_IA64
35# include <linux/efi.h>
36#endif
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/*
39 * Architectures vary in how they handle caching for addresses
40 * outside of main memory.
41 *
42 */
43static inline int uncached_access(struct file *file, unsigned long addr)
44{
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -070045#if defined(CONFIG_IA64)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 /*
47 * On ia64, we ignore O_SYNC because we cannot tolerate memory attribute aliases.
48 */
49 return !(efi_mem_attributes(addr) & EFI_MEMORY_WB);
Ralf Baechle24e9d0b962007-07-10 17:32:56 +010050#elif defined(CONFIG_MIPS)
51 {
52 extern int __uncached_access(struct file *file,
53 unsigned long addr);
54
55 return __uncached_access(file, addr);
56 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#else
58 /*
59 * Accessing memory above the top the kernel knows about or through a file pointer
60 * that was marked O_SYNC will be done non-cached.
61 */
62 if (file->f_flags & O_SYNC)
63 return 1;
64 return addr >= __pa(high_memory);
65#endif
66}
67
68#ifndef ARCH_HAS_VALID_PHYS_ADDR_RANGE
Bjorn Helgaas136939a2006-03-26 01:37:05 -080069static inline int valid_phys_addr_range(unsigned long addr, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Bjorn Helgaas136939a2006-03-26 01:37:05 -080071 if (addr + count > __pa(high_memory))
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return 0;
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 return 1;
75}
Bjorn Helgaas80851ef2006-01-08 01:04:13 -080076
Lennert Buytenhek06c67be2006-07-10 04:45:27 -070077static inline int valid_mmap_phys_addr_range(unsigned long pfn, size_t size)
Bjorn Helgaas80851ef2006-01-08 01:04:13 -080078{
79 return 1;
80}
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#endif
82
Ingo Molnard0926332008-07-18 00:26:59 +020083#ifdef CONFIG_STRICT_DEVMEM
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080084static inline int range_is_allowed(unsigned long pfn, unsigned long size)
Arjan van de Venae531c22008-04-24 23:40:47 +020085{
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080086 u64 from = ((u64)pfn) << PAGE_SHIFT;
87 u64 to = from + size;
88 u64 cursor = from;
Arjan van de Venae531c22008-04-24 23:40:47 +020089
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080090 while (cursor < to) {
91 if (!devmem_is_allowed(pfn)) {
92 printk(KERN_INFO
93 "Program %s tried to access /dev/mem between %Lx->%Lx.\n",
Arjan van de Venae531c22008-04-24 23:40:47 +020094 current->comm, from, to);
95 return 0;
96 }
Venki Pallipadie2beb3e2008-03-06 23:01:47 -080097 cursor += PAGE_SIZE;
98 pfn++;
Arjan van de Venae531c22008-04-24 23:40:47 +020099 }
100 return 1;
101}
102#else
Venki Pallipadie2beb3e2008-03-06 23:01:47 -0800103static inline int range_is_allowed(unsigned long pfn, unsigned long size)
Arjan van de Venae531c22008-04-24 23:40:47 +0200104{
105 return 1;
106}
107#endif
108
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700109void __attribute__((weak)) unxlate_dev_mem_ptr(unsigned long phys, void *addr)
110{
111}
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/*
114 * This funcion reads the *physical* memory. The f_pos points directly to the
115 * memory location.
116 */
117static ssize_t read_mem(struct file * file, char __user * buf,
118 size_t count, loff_t *ppos)
119{
120 unsigned long p = *ppos;
121 ssize_t read, sz;
122 char *ptr;
123
Bjorn Helgaas136939a2006-03-26 01:37:05 -0800124 if (!valid_phys_addr_range(p, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return -EFAULT;
126 read = 0;
127#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
128 /* we don't have page 0 mapped on sparc and m68k.. */
129 if (p < PAGE_SIZE) {
130 sz = PAGE_SIZE - p;
131 if (sz > count)
132 sz = count;
133 if (sz > 0) {
134 if (clear_user(buf, sz))
135 return -EFAULT;
136 buf += sz;
137 p += sz;
138 count -= sz;
139 read += sz;
140 }
141 }
142#endif
143
144 while (count > 0) {
145 /*
146 * Handle first page in case it's not aligned
147 */
148 if (-p & (PAGE_SIZE - 1))
149 sz = -p & (PAGE_SIZE - 1);
150 else
151 sz = PAGE_SIZE;
152
153 sz = min_t(unsigned long, sz, count);
154
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700155 if (!range_is_allowed(p >> PAGE_SHIFT, count))
156 return -EPERM;
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 /*
159 * On ia64 if a page has been mapped somewhere as
160 * uncached, then it must also be accessed uncached
161 * by the kernel or data corruption may occur
162 */
163 ptr = xlate_dev_mem_ptr(p);
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700164 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return -EFAULT;
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700166
167 if (copy_to_user(buf, ptr, sz)) {
168 unxlate_dev_mem_ptr(p, ptr);
169 return -EFAULT;
170 }
171
172 unxlate_dev_mem_ptr(p, ptr);
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 buf += sz;
175 p += sz;
176 count -= sz;
177 read += sz;
178 }
179
180 *ppos += read;
181 return read;
182}
183
184static ssize_t write_mem(struct file * file, const char __user * buf,
185 size_t count, loff_t *ppos)
186{
187 unsigned long p = *ppos;
188 ssize_t written, sz;
189 unsigned long copied;
190 void *ptr;
191
Bjorn Helgaas136939a2006-03-26 01:37:05 -0800192 if (!valid_phys_addr_range(p, count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return -EFAULT;
194
195 written = 0;
196
197#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
198 /* we don't have page 0 mapped on sparc and m68k.. */
199 if (p < PAGE_SIZE) {
200 unsigned long sz = PAGE_SIZE - p;
201 if (sz > count)
202 sz = count;
203 /* Hmm. Do something? */
204 buf += sz;
205 p += sz;
206 count -= sz;
207 written += sz;
208 }
209#endif
210
211 while (count > 0) {
212 /*
213 * Handle first page in case it's not aligned
214 */
215 if (-p & (PAGE_SIZE - 1))
216 sz = -p & (PAGE_SIZE - 1);
217 else
218 sz = PAGE_SIZE;
219
220 sz = min_t(unsigned long, sz, count);
221
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700222 if (!range_is_allowed(p >> PAGE_SHIFT, sz))
223 return -EPERM;
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 /*
226 * On ia64 if a page has been mapped somewhere as
227 * uncached, then it must also be accessed uncached
228 * by the kernel or data corruption may occur
229 */
230 ptr = xlate_dev_mem_ptr(p);
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700231 if (!ptr) {
Jan Beulichc654d602006-03-25 03:07:31 -0800232 if (written)
233 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return -EFAULT;
235 }
venkatesh.pallipadi@intel.come045fb22008-03-18 17:00:15 -0700236
237 copied = copy_from_user(ptr, buf, sz);
238 if (copied) {
239 written += sz - copied;
240 unxlate_dev_mem_ptr(p, ptr);
241 if (written)
242 break;
243 return -EFAULT;
244 }
245
246 unxlate_dev_mem_ptr(p, ptr);
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 buf += sz;
249 p += sz;
250 count -= sz;
251 written += sz;
252 }
253
254 *ppos += written;
255 return written;
256}
257
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700258int __attribute__((weak)) phys_mem_access_prot_allowed(struct file *file,
259 unsigned long pfn, unsigned long size, pgprot_t *vma_prot)
260{
261 return 1;
262}
263
Bjorn Helgaas44ac8412006-01-08 01:04:10 -0800264#ifndef __HAVE_PHYS_MEM_ACCESS_PROT
265static pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
266 unsigned long size, pgprot_t vma_prot)
267{
268#ifdef pgprot_noncached
269 unsigned long offset = pfn << PAGE_SHIFT;
270
271 if (uncached_access(file, offset))
272 return pgprot_noncached(vma_prot);
273#endif
274 return vma_prot;
275}
276#endif
277
David Howells5da61852006-09-27 01:50:16 -0700278#ifndef CONFIG_MMU
279static unsigned long get_unmapped_area_mem(struct file *file,
280 unsigned long addr,
281 unsigned long len,
282 unsigned long pgoff,
283 unsigned long flags)
284{
285 if (!valid_mmap_phys_addr_range(pgoff, len))
286 return (unsigned long) -EINVAL;
Benjamin Herrenschmidt8a932582007-04-16 22:53:16 -0700287 return pgoff << PAGE_SHIFT;
David Howells5da61852006-09-27 01:50:16 -0700288}
289
290/* can't do an in-place private mapping if there's no MMU */
291static inline int private_mapping_ok(struct vm_area_struct *vma)
292{
293 return vma->vm_flags & VM_MAYSHARE;
294}
295#else
296#define get_unmapped_area_mem NULL
297
298static inline int private_mapping_ok(struct vm_area_struct *vma)
299{
300 return 1;
301}
302#endif
303
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700304static struct vm_operations_struct mmap_mem_ops = {
Rik van Riel7ae8ed52008-07-23 21:27:07 -0700305#ifdef CONFIG_HAVE_IOREMAP_PROT
306 .access = generic_access_phys
307#endif
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700308};
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310static int mmap_mem(struct file * file, struct vm_area_struct * vma)
311{
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800312 size_t size = vma->vm_end - vma->vm_start;
313
Lennert Buytenhek06c67be2006-07-10 04:45:27 -0700314 if (!valid_mmap_phys_addr_range(vma->vm_pgoff, size))
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800315 return -EINVAL;
316
David Howells5da61852006-09-27 01:50:16 -0700317 if (!private_mapping_ok(vma))
318 return -ENOSYS;
319
Venki Pallipadie2beb3e2008-03-06 23:01:47 -0800320 if (!range_is_allowed(vma->vm_pgoff, size))
321 return -EPERM;
322
venkatesh.pallipadi@intel.comf0970c12008-03-18 17:00:20 -0700323 if (!phys_mem_access_prot_allowed(file, vma->vm_pgoff, size,
324 &vma->vm_page_prot))
325 return -EINVAL;
326
Roland Dreier8b150472005-10-28 17:46:18 -0700327 vma->vm_page_prot = phys_mem_access_prot(file, vma->vm_pgoff,
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800328 size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700331 vma->vm_ops = &mmap_mem_ops;
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 /* Remap-pfn-range will mark the range VM_IO and VM_RESERVED */
334 if (remap_pfn_range(vma,
335 vma->vm_start,
336 vma->vm_pgoff,
Bjorn Helgaas80851ef2006-01-08 01:04:13 -0800337 size,
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700338 vma->vm_page_prot)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return -EAGAIN;
venkatesh.pallipadi@intel.come7f260a2008-03-18 17:00:21 -0700340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return 0;
342}
343
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700344#ifdef CONFIG_DEVKMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345static int mmap_kmem(struct file * file, struct vm_area_struct * vma)
346{
Linus Torvalds4bb82552005-08-13 14:22:59 -0700347 unsigned long pfn;
348
Linus Torvalds6d3154c2007-01-22 08:53:24 -0800349 /* Turn a kernel-virtual address into a physical page frame */
350 pfn = __pa((u64)vma->vm_pgoff << PAGE_SHIFT) >> PAGE_SHIFT;
Linus Torvalds4bb82552005-08-13 14:22:59 -0700351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /*
353 * RED-PEN: on some architectures there is more mapped memory
354 * than available in mem_map which pfn_valid checks
355 * for. Perhaps should add a new macro here.
356 *
357 * RED-PEN: vmalloc is not supported right now.
358 */
Linus Torvalds4bb82552005-08-13 14:22:59 -0700359 if (!pfn_valid(pfn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return -EIO;
Linus Torvalds4bb82552005-08-13 14:22:59 -0700361
362 vma->vm_pgoff = pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return mmap_mem(file, vma);
364}
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700365#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700367#ifdef CONFIG_CRASH_DUMP
368/*
369 * Read memory corresponding to the old kernel.
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700370 */
Vivek Goyal315c2152005-06-25 14:58:24 -0700371static ssize_t read_oldmem(struct file *file, char __user *buf,
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700372 size_t count, loff_t *ppos)
373{
Vivek Goyal315c2152005-06-25 14:58:24 -0700374 unsigned long pfn, offset;
375 size_t read = 0, csize;
376 int rc = 0;
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700377
Maneesh Soni72414d32005-06-25 14:58:28 -0700378 while (count) {
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700379 pfn = *ppos / PAGE_SIZE;
Vivek Goyal315c2152005-06-25 14:58:24 -0700380 if (pfn > saved_max_pfn)
381 return read;
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700382
Vivek Goyal315c2152005-06-25 14:58:24 -0700383 offset = (unsigned long)(*ppos % PAGE_SIZE);
384 if (count > PAGE_SIZE - offset)
385 csize = PAGE_SIZE - offset;
386 else
387 csize = count;
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700388
Vivek Goyal315c2152005-06-25 14:58:24 -0700389 rc = copy_oldmem_page(pfn, buf, csize, offset, 1);
390 if (rc < 0)
391 return rc;
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700392 buf += csize;
393 *ppos += csize;
394 read += csize;
395 count -= csize;
396 }
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700397 return read;
398}
399#endif
400
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700401#ifdef CONFIG_DEVKMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402/*
403 * This function reads the *virtual* memory as seen by the kernel.
404 */
405static ssize_t read_kmem(struct file *file, char __user *buf,
406 size_t count, loff_t *ppos)
407{
408 unsigned long p = *ppos;
409 ssize_t low_count, read, sz;
410 char * kbuf; /* k-addr because vread() takes vmlist_lock rwlock */
411
412 read = 0;
413 if (p < (unsigned long) high_memory) {
414 low_count = count;
415 if (count > (unsigned long) high_memory - p)
416 low_count = (unsigned long) high_memory - p;
417
418#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
419 /* we don't have page 0 mapped on sparc and m68k.. */
420 if (p < PAGE_SIZE && low_count > 0) {
421 size_t tmp = PAGE_SIZE - p;
422 if (tmp > low_count) tmp = low_count;
423 if (clear_user(buf, tmp))
424 return -EFAULT;
425 buf += tmp;
426 p += tmp;
427 read += tmp;
428 low_count -= tmp;
429 count -= tmp;
430 }
431#endif
432 while (low_count > 0) {
433 /*
434 * Handle first page in case it's not aligned
435 */
436 if (-p & (PAGE_SIZE - 1))
437 sz = -p & (PAGE_SIZE - 1);
438 else
439 sz = PAGE_SIZE;
440
441 sz = min_t(unsigned long, sz, low_count);
442
443 /*
444 * On ia64 if a page has been mapped somewhere as
445 * uncached, then it must also be accessed uncached
446 * by the kernel or data corruption may occur
447 */
448 kbuf = xlate_dev_kmem_ptr((char *)p);
449
450 if (copy_to_user(buf, kbuf, sz))
451 return -EFAULT;
452 buf += sz;
453 p += sz;
454 read += sz;
455 low_count -= sz;
456 count -= sz;
457 }
458 }
459
460 if (count > 0) {
461 kbuf = (char *)__get_free_page(GFP_KERNEL);
462 if (!kbuf)
463 return -ENOMEM;
464 while (count > 0) {
465 int len = count;
466
467 if (len > PAGE_SIZE)
468 len = PAGE_SIZE;
469 len = vread(kbuf, (char *)p, len);
470 if (!len)
471 break;
472 if (copy_to_user(buf, kbuf, len)) {
473 free_page((unsigned long)kbuf);
474 return -EFAULT;
475 }
476 count -= len;
477 buf += len;
478 read += len;
479 p += len;
480 }
481 free_page((unsigned long)kbuf);
482 }
483 *ppos = p;
484 return read;
485}
486
487
488static inline ssize_t
489do_write_kmem(void *p, unsigned long realp, const char __user * buf,
490 size_t count, loff_t *ppos)
491{
492 ssize_t written, sz;
493 unsigned long copied;
494
495 written = 0;
496#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
497 /* we don't have page 0 mapped on sparc and m68k.. */
498 if (realp < PAGE_SIZE) {
499 unsigned long sz = PAGE_SIZE - realp;
500 if (sz > count)
501 sz = count;
502 /* Hmm. Do something? */
503 buf += sz;
504 p += sz;
505 realp += sz;
506 count -= sz;
507 written += sz;
508 }
509#endif
510
511 while (count > 0) {
512 char *ptr;
513 /*
514 * Handle first page in case it's not aligned
515 */
516 if (-realp & (PAGE_SIZE - 1))
517 sz = -realp & (PAGE_SIZE - 1);
518 else
519 sz = PAGE_SIZE;
520
521 sz = min_t(unsigned long, sz, count);
522
523 /*
524 * On ia64 if a page has been mapped somewhere as
525 * uncached, then it must also be accessed uncached
526 * by the kernel or data corruption may occur
527 */
528 ptr = xlate_dev_kmem_ptr(p);
529
530 copied = copy_from_user(ptr, buf, sz);
531 if (copied) {
Jan Beulichc654d602006-03-25 03:07:31 -0800532 written += sz - copied;
533 if (written)
534 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return -EFAULT;
536 }
537 buf += sz;
538 p += sz;
539 realp += sz;
540 count -= sz;
541 written += sz;
542 }
543
544 *ppos += written;
545 return written;
546}
547
548
549/*
550 * This function writes to the *virtual* memory as seen by the kernel.
551 */
552static ssize_t write_kmem(struct file * file, const char __user * buf,
553 size_t count, loff_t *ppos)
554{
555 unsigned long p = *ppos;
556 ssize_t wrote = 0;
557 ssize_t virtr = 0;
558 ssize_t written;
559 char * kbuf; /* k-addr because vwrite() takes vmlist_lock rwlock */
560
561 if (p < (unsigned long) high_memory) {
562
563 wrote = count;
564 if (count > (unsigned long) high_memory - p)
565 wrote = (unsigned long) high_memory - p;
566
567 written = do_write_kmem((void*)p, p, buf, wrote, ppos);
568 if (written != wrote)
569 return written;
570 wrote = written;
571 p += wrote;
572 buf += wrote;
573 count -= wrote;
574 }
575
576 if (count > 0) {
577 kbuf = (char *)__get_free_page(GFP_KERNEL);
578 if (!kbuf)
579 return wrote ? wrote : -ENOMEM;
580 while (count > 0) {
581 int len = count;
582
583 if (len > PAGE_SIZE)
584 len = PAGE_SIZE;
585 if (len) {
586 written = copy_from_user(kbuf, buf, len);
587 if (written) {
Jan Beulichc654d602006-03-25 03:07:31 -0800588 if (wrote + virtr)
589 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 free_page((unsigned long)kbuf);
Jan Beulichc654d602006-03-25 03:07:31 -0800591 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 }
593 }
594 len = vwrite(kbuf, (char *)p, len);
595 count -= len;
596 buf += len;
597 virtr += len;
598 p += len;
599 }
600 free_page((unsigned long)kbuf);
601 }
602
603 *ppos = p;
604 return virtr + wrote;
605}
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700606#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Russell King4f911d62007-05-08 00:28:17 -0700608#ifdef CONFIG_DEVPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609static ssize_t read_port(struct file * file, char __user * buf,
610 size_t count, loff_t *ppos)
611{
612 unsigned long i = *ppos;
613 char __user *tmp = buf;
614
615 if (!access_ok(VERIFY_WRITE, buf, count))
616 return -EFAULT;
617 while (count-- > 0 && i < 65536) {
618 if (__put_user(inb(i),tmp) < 0)
619 return -EFAULT;
620 i++;
621 tmp++;
622 }
623 *ppos = i;
624 return tmp-buf;
625}
626
627static ssize_t write_port(struct file * file, const char __user * buf,
628 size_t count, loff_t *ppos)
629{
630 unsigned long i = *ppos;
631 const char __user * tmp = buf;
632
633 if (!access_ok(VERIFY_READ,buf,count))
634 return -EFAULT;
635 while (count-- > 0 && i < 65536) {
636 char c;
Jan Beulichc654d602006-03-25 03:07:31 -0800637 if (__get_user(c, tmp)) {
638 if (tmp > buf)
639 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return -EFAULT;
Jan Beulichc654d602006-03-25 03:07:31 -0800641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 outb(c,i);
643 i++;
644 tmp++;
645 }
646 *ppos = i;
647 return tmp-buf;
648}
649#endif
650
651static ssize_t read_null(struct file * file, char __user * buf,
652 size_t count, loff_t *ppos)
653{
654 return 0;
655}
656
657static ssize_t write_null(struct file * file, const char __user * buf,
658 size_t count, loff_t *ppos)
659{
660 return count;
661}
662
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200663static int pipe_to_null(struct pipe_inode_info *info, struct pipe_buffer *buf,
664 struct splice_desc *sd)
665{
666 return sd->len;
667}
668
669static ssize_t splice_write_null(struct pipe_inode_info *pipe,struct file *out,
670 loff_t *ppos, size_t len, unsigned int flags)
671{
672 return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_null);
673}
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675static ssize_t read_zero(struct file * file, char __user * buf,
676 size_t count, loff_t *ppos)
677{
Nick Piggin557ed1f2007-10-16 01:24:40 -0700678 size_t written;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 if (!count)
681 return 0;
682
683 if (!access_ok(VERIFY_WRITE, buf, count))
684 return -EFAULT;
685
Nick Piggin557ed1f2007-10-16 01:24:40 -0700686 written = 0;
687 while (count) {
688 unsigned long unwritten;
689 size_t chunk = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Nick Piggin557ed1f2007-10-16 01:24:40 -0700691 if (chunk > PAGE_SIZE)
692 chunk = PAGE_SIZE; /* Just for latency reasons */
693 unwritten = clear_user(buf, chunk);
694 written += chunk - unwritten;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if (unwritten)
Nick Piggin557ed1f2007-10-16 01:24:40 -0700696 break;
Linus Torvalds2b838682009-06-09 20:40:25 -0700697 if (signal_pending(current))
698 return written ? written : -ERESTARTSYS;
Nick Piggin557ed1f2007-10-16 01:24:40 -0700699 buf += chunk;
700 count -= chunk;
701 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return written ? written : -EFAULT;
704}
705
706static int mmap_zero(struct file * file, struct vm_area_struct * vma)
707{
Nick Piggin557ed1f2007-10-16 01:24:40 -0700708#ifndef CONFIG_MMU
709 return -ENOSYS;
710#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (vma->vm_flags & VM_SHARED)
712 return shmem_zero_setup(vma);
Nick Piggin557ed1f2007-10-16 01:24:40 -0700713 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716static ssize_t write_full(struct file * file, const char __user * buf,
717 size_t count, loff_t *ppos)
718{
719 return -ENOSPC;
720}
721
722/*
723 * Special lseek() function for /dev/null and /dev/zero. Most notably, you
724 * can fopen() both devices with "a" now. This was previously impossible.
725 * -- SRB.
726 */
727
728static loff_t null_lseek(struct file * file, loff_t offset, int orig)
729{
730 return file->f_pos = 0;
731}
732
733/*
734 * The memory devices use the full 32/64 bits of the offset, and so we cannot
735 * check against negative addresses: they are ok. The return value is weird,
736 * though, in that case (0).
737 *
738 * also note that seeking relative to the "end of file" isn't supported:
739 * it has no meaning, so it returns -EINVAL.
740 */
741static loff_t memory_lseek(struct file * file, loff_t offset, int orig)
742{
743 loff_t ret;
744
Josef Sipeka7113a92006-12-08 02:36:55 -0800745 mutex_lock(&file->f_path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 switch (orig) {
747 case 0:
748 file->f_pos = offset;
749 ret = file->f_pos;
750 force_successful_syscall_return();
751 break;
752 case 1:
753 file->f_pos += offset;
754 ret = file->f_pos;
755 force_successful_syscall_return();
756 break;
757 default:
758 ret = -EINVAL;
759 }
Josef Sipeka7113a92006-12-08 02:36:55 -0800760 mutex_unlock(&file->f_path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return ret;
762}
763
764static int open_port(struct inode * inode, struct file * filp)
765{
766 return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
767}
768
769#define zero_lseek null_lseek
770#define full_lseek null_lseek
771#define write_zero write_null
772#define read_full read_zero
773#define open_mem open_port
774#define open_kmem open_mem
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700775#define open_oldmem open_mem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Arjan van de Ven62322d22006-07-03 00:24:21 -0700777static const struct file_operations mem_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 .llseek = memory_lseek,
779 .read = read_mem,
780 .write = write_mem,
781 .mmap = mmap_mem,
782 .open = open_mem,
David Howells5da61852006-09-27 01:50:16 -0700783 .get_unmapped_area = get_unmapped_area_mem,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784};
785
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700786#ifdef CONFIG_DEVKMEM
Arjan van de Ven62322d22006-07-03 00:24:21 -0700787static const struct file_operations kmem_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 .llseek = memory_lseek,
789 .read = read_kmem,
790 .write = write_kmem,
791 .mmap = mmap_kmem,
792 .open = open_kmem,
David Howells5da61852006-09-27 01:50:16 -0700793 .get_unmapped_area = get_unmapped_area_mem,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794};
Arjan van de Venb781ecb2008-04-29 00:58:34 -0700795#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Arjan van de Ven62322d22006-07-03 00:24:21 -0700797static const struct file_operations null_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 .llseek = null_lseek,
799 .read = read_null,
800 .write = write_null,
Jens Axboe1ebd32f2006-04-26 14:40:08 +0200801 .splice_write = splice_write_null,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802};
803
Russell King4f911d62007-05-08 00:28:17 -0700804#ifdef CONFIG_DEVPORT
Arjan van de Ven62322d22006-07-03 00:24:21 -0700805static const struct file_operations port_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 .llseek = memory_lseek,
807 .read = read_port,
808 .write = write_port,
809 .open = open_port,
810};
811#endif
812
Arjan van de Ven62322d22006-07-03 00:24:21 -0700813static const struct file_operations zero_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 .llseek = zero_lseek,
815 .read = read_zero,
816 .write = write_zero,
817 .mmap = mmap_zero,
818};
819
David Howells5da61852006-09-27 01:50:16 -0700820/*
821 * capabilities for /dev/zero
822 * - permits private mappings, "copies" are taken of the source of zeros
823 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824static struct backing_dev_info zero_bdi = {
825 .capabilities = BDI_CAP_MAP_COPY,
826};
827
Arjan van de Ven62322d22006-07-03 00:24:21 -0700828static const struct file_operations full_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 .llseek = full_lseek,
830 .read = read_full,
831 .write = write_full,
832};
833
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700834#ifdef CONFIG_CRASH_DUMP
Arjan van de Ven62322d22006-07-03 00:24:21 -0700835static const struct file_operations oldmem_fops = {
Vivek Goyal50b1fdb2005-06-25 14:58:23 -0700836 .read = read_oldmem,
837 .open = open_oldmem,
838};
839#endif
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841static ssize_t kmsg_write(struct file * file, const char __user * buf,
842 size_t count, loff_t *ppos)
843{
844 char *tmp;
Guillaume Chazaraincd140a52006-01-08 01:02:43 -0800845 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 tmp = kmalloc(count + 1, GFP_KERNEL);
848 if (tmp == NULL)
849 return -ENOMEM;
850 ret = -EFAULT;
851 if (!copy_from_user(tmp, buf, count)) {
852 tmp[count] = 0;
853 ret = printk("%s", tmp);
Guillaume Chazaraincd140a52006-01-08 01:02:43 -0800854 if (ret > count)
855 /* printk can add a prefix */
856 ret = count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
858 kfree(tmp);
859 return ret;
860}
861
Arjan van de Ven62322d22006-07-03 00:24:21 -0700862static const struct file_operations kmsg_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 .write = kmsg_write,
864};
865
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700866static const struct {
867 unsigned int minor;
868 char *name;
869 umode_t mode;
870 const struct file_operations *fops;
871 struct backing_dev_info *dev_info;
872} devlist[] = { /* list of minor devices */
873 {1, "mem", S_IRUSR | S_IWUSR | S_IRGRP, &mem_fops,
874 &directly_mappable_cdev_bdi},
875#ifdef CONFIG_DEVKMEM
876 {2, "kmem", S_IRUSR | S_IWUSR | S_IRGRP, &kmem_fops,
877 &directly_mappable_cdev_bdi},
878#endif
879 {3, "null", S_IRUGO | S_IWUGO, &null_fops, NULL},
880#ifdef CONFIG_DEVPORT
881 {4, "port", S_IRUSR | S_IWUSR | S_IRGRP, &port_fops, NULL},
882#endif
883 {5, "zero", S_IRUGO | S_IWUGO, &zero_fops, &zero_bdi},
884 {7, "full", S_IRUGO | S_IWUGO, &full_fops, NULL},
885 {8, "random", S_IRUGO | S_IWUSR, &random_fops, NULL},
886 {9, "urandom", S_IRUGO | S_IWUSR, &urandom_fops, NULL},
887 {11,"kmsg", S_IRUGO | S_IWUSR, &kmsg_fops, NULL},
888#ifdef CONFIG_CRASH_DUMP
889 {12,"oldmem", S_IRUSR | S_IWUSR | S_IRGRP, &oldmem_fops, NULL},
890#endif
891};
892
893static int memory_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
Jonathan Corbet1f439642008-05-15 11:04:19 -0600895 int ret = 0;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700896 int i;
Jonathan Corbet1f439642008-05-15 11:04:19 -0600897
898 lock_kernel();
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700899
900 for (i = 0; i < ARRAY_SIZE(devlist); i++) {
901 if (devlist[i].minor == iminor(inode)) {
902 filp->f_op = devlist[i].fops;
903 if (devlist[i].dev_info) {
904 filp->f_mapping->backing_dev_info =
905 devlist[i].dev_info;
906 }
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 break;
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
Adriano dos Santos Fernandesd6f47be2009-06-17 16:27:48 -0700911
912 if (i == ARRAY_SIZE(devlist))
913 ret = -ENXIO;
914 else
915 if (filp->f_op && filp->f_op->open)
916 ret = filp->f_op->open(inode, filp);
917
Jonathan Corbet1f439642008-05-15 11:04:19 -0600918 unlock_kernel();
919 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920}
921
Arjan van de Ven62322d22006-07-03 00:24:21 -0700922static const struct file_operations memory_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 .open = memory_open, /* just a selector for the real open */
924};
925
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800926static struct class *mem_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928static int __init chr_dev_init(void)
929{
930 int i;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700931 int err;
932
933 err = bdi_init(&zero_bdi);
934 if (err)
935 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 if (register_chrdev(MEM_MAJOR,"mem",&memory_fops))
938 printk("unable to get major %d for memory devs\n", MEM_MAJOR);
939
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800940 mem_class = class_create(THIS_MODULE, "mem");
Greg Kroah-Hartman7c69ef72005-06-20 21:15:16 -0700941 for (i = 0; i < ARRAY_SIZE(devlist); i++)
Greg Kroah-Hartman03457cd2008-07-21 20:03:34 -0700942 device_create(mem_class, NULL,
943 MKDEV(MEM_MAJOR, devlist[i].minor), NULL,
944 devlist[i].name);
Greg Kroah-Hartmanebf644c2006-07-25 17:13:31 -0700945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return 0;
947}
948
949fs_initcall(chr_dev_init);