2 * linux/drivers/char/mem.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
7 * Jan-11-1998, C. Scott Ananian <cananian@alumni.princeton.edu>
8 * Shared /dev/zero mmaping support, Feb 2000, Kanoj Sarcar <kanoj@sgi.com>
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>
21 #include <linux/ptrace.h>
22 #include <linux/device.h>
23 #include <linux/highmem.h>
24 #include <linux/crash_dump.h>
25 #include <linux/backing-dev.h>
26 #include <linux/bootmem.h>
27 #include <linux/splice.h>
28 #include <linux/pfn.h>
30 #include <asm/uaccess.h>
34 # include <linux/efi.h>
38 * Architectures vary in how they handle caching for addresses
39 * outside of main memory.
42 static inline int uncached_access(struct file
*file
, unsigned long addr
)
44 #if defined(CONFIG_IA64)
46 * On ia64, we ignore O_SYNC because we cannot tolerate memory attribute aliases.
48 return !(efi_mem_attributes(addr
) & EFI_MEMORY_WB
);
49 #elif defined(CONFIG_MIPS)
51 extern int __uncached_access(struct file
*file
,
54 return __uncached_access(file
, addr
);
58 * Accessing memory above the top the kernel knows about or through a file pointer
59 * that was marked O_SYNC will be done non-cached.
61 if (file
->f_flags
& O_SYNC
)
63 return addr
>= __pa(high_memory
);
67 #ifndef ARCH_HAS_VALID_PHYS_ADDR_RANGE
68 static inline int valid_phys_addr_range(unsigned long addr
, size_t count
)
70 if (addr
+ count
> __pa(high_memory
))
76 static inline int valid_mmap_phys_addr_range(unsigned long pfn
, size_t size
)
82 #ifdef CONFIG_NONPROMISC_DEVMEM
83 static inline int range_is_allowed(unsigned long pfn
, unsigned long size
)
85 u64 from
= ((u64
)pfn
) << PAGE_SHIFT
;
90 if (!devmem_is_allowed(pfn
)) {
92 "Program %s tried to access /dev/mem between %Lx->%Lx.\n",
93 current
->comm
, from
, to
);
102 static inline int range_is_allowed(unsigned long pfn
, unsigned long size
)
108 void __attribute__((weak
)) unxlate_dev_mem_ptr(unsigned long phys
, void *addr
)
113 * This funcion reads the *physical* memory. The f_pos points directly to the
116 static ssize_t
read_mem(struct file
* file
, char __user
* buf
,
117 size_t count
, loff_t
*ppos
)
119 unsigned long p
= *ppos
;
123 if (!valid_phys_addr_range(p
, count
))
126 #ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
127 /* we don't have page 0 mapped on sparc and m68k.. */
133 if (clear_user(buf
, sz
))
145 * Handle first page in case it's not aligned
147 if (-p
& (PAGE_SIZE
- 1))
148 sz
= -p
& (PAGE_SIZE
- 1);
152 sz
= min_t(unsigned long, sz
, count
);
154 if (!range_is_allowed(p
>> PAGE_SHIFT
, count
))
158 * On ia64 if a page has been mapped somewhere as
159 * uncached, then it must also be accessed uncached
160 * by the kernel or data corruption may occur
162 ptr
= xlate_dev_mem_ptr(p
);
166 if (copy_to_user(buf
, ptr
, sz
)) {
167 unxlate_dev_mem_ptr(p
, ptr
);
171 unxlate_dev_mem_ptr(p
, ptr
);
183 static ssize_t
write_mem(struct file
* file
, const char __user
* buf
,
184 size_t count
, loff_t
*ppos
)
186 unsigned long p
= *ppos
;
188 unsigned long copied
;
191 if (!valid_phys_addr_range(p
, count
))
196 #ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
197 /* we don't have page 0 mapped on sparc and m68k.. */
199 unsigned long sz
= PAGE_SIZE
- p
;
202 /* Hmm. Do something? */
212 * Handle first page in case it's not aligned
214 if (-p
& (PAGE_SIZE
- 1))
215 sz
= -p
& (PAGE_SIZE
- 1);
219 sz
= min_t(unsigned long, sz
, count
);
221 if (!range_is_allowed(p
>> PAGE_SHIFT
, sz
))
225 * On ia64 if a page has been mapped somewhere as
226 * uncached, then it must also be accessed uncached
227 * by the kernel or data corruption may occur
229 ptr
= xlate_dev_mem_ptr(p
);
236 copied
= copy_from_user(ptr
, buf
, sz
);
238 written
+= sz
- copied
;
239 unxlate_dev_mem_ptr(p
, ptr
);
245 unxlate_dev_mem_ptr(p
, ptr
);
257 int __attribute__((weak
)) phys_mem_access_prot_allowed(struct file
*file
,
258 unsigned long pfn
, unsigned long size
, pgprot_t
*vma_prot
)
263 #ifndef __HAVE_PHYS_MEM_ACCESS_PROT
264 static pgprot_t
phys_mem_access_prot(struct file
*file
, unsigned long pfn
,
265 unsigned long size
, pgprot_t vma_prot
)
267 #ifdef pgprot_noncached
268 unsigned long offset
= pfn
<< PAGE_SHIFT
;
270 if (uncached_access(file
, offset
))
271 return pgprot_noncached(vma_prot
);
278 static unsigned long get_unmapped_area_mem(struct file
*file
,
284 if (!valid_mmap_phys_addr_range(pgoff
, len
))
285 return (unsigned long) -EINVAL
;
286 return pgoff
<< PAGE_SHIFT
;
289 /* can't do an in-place private mapping if there's no MMU */
290 static inline int private_mapping_ok(struct vm_area_struct
*vma
)
292 return vma
->vm_flags
& VM_MAYSHARE
;
295 #define get_unmapped_area_mem NULL
297 static inline int private_mapping_ok(struct vm_area_struct
*vma
)
303 void __attribute__((weak
))
304 map_devmem(unsigned long pfn
, unsigned long len
, pgprot_t prot
)
306 /* nothing. architectures can override. */
309 void __attribute__((weak
))
310 unmap_devmem(unsigned long pfn
, unsigned long len
, pgprot_t prot
)
312 /* nothing. architectures can override. */
315 static void mmap_mem_open(struct vm_area_struct
*vma
)
317 map_devmem(vma
->vm_pgoff
, vma
->vm_end
- vma
->vm_start
,
321 static void mmap_mem_close(struct vm_area_struct
*vma
)
323 unmap_devmem(vma
->vm_pgoff
, vma
->vm_end
- vma
->vm_start
,
327 static struct vm_operations_struct mmap_mem_ops
= {
328 .open
= mmap_mem_open
,
329 .close
= mmap_mem_close
332 static int mmap_mem(struct file
* file
, struct vm_area_struct
* vma
)
334 size_t size
= vma
->vm_end
- vma
->vm_start
;
336 if (!valid_mmap_phys_addr_range(vma
->vm_pgoff
, size
))
339 if (!private_mapping_ok(vma
))
342 if (!range_is_allowed(vma
->vm_pgoff
, size
))
345 if (!phys_mem_access_prot_allowed(file
, vma
->vm_pgoff
, size
,
349 vma
->vm_page_prot
= phys_mem_access_prot(file
, vma
->vm_pgoff
,
353 vma
->vm_ops
= &mmap_mem_ops
;
355 /* Remap-pfn-range will mark the range VM_IO and VM_RESERVED */
356 if (remap_pfn_range(vma
,
360 vma
->vm_page_prot
)) {
361 unmap_devmem(vma
->vm_pgoff
, size
, vma
->vm_page_prot
);
367 #ifdef CONFIG_DEVKMEM
368 static int mmap_kmem(struct file
* file
, struct vm_area_struct
* vma
)
372 /* Turn a kernel-virtual address into a physical page frame */
373 pfn
= __pa((u64
)vma
->vm_pgoff
<< PAGE_SHIFT
) >> PAGE_SHIFT
;
376 * RED-PEN: on some architectures there is more mapped memory
377 * than available in mem_map which pfn_valid checks
378 * for. Perhaps should add a new macro here.
380 * RED-PEN: vmalloc is not supported right now.
386 return mmap_mem(file
, vma
);
390 #ifdef CONFIG_CRASH_DUMP
392 * Read memory corresponding to the old kernel.
394 static ssize_t
read_oldmem(struct file
*file
, char __user
*buf
,
395 size_t count
, loff_t
*ppos
)
397 unsigned long pfn
, offset
;
398 size_t read
= 0, csize
;
402 pfn
= *ppos
/ PAGE_SIZE
;
403 if (pfn
> saved_max_pfn
)
406 offset
= (unsigned long)(*ppos
% PAGE_SIZE
);
407 if (count
> PAGE_SIZE
- offset
)
408 csize
= PAGE_SIZE
- offset
;
412 rc
= copy_oldmem_page(pfn
, buf
, csize
, offset
, 1);
424 extern long vread(char *buf
, char *addr
, unsigned long count
);
425 extern long vwrite(char *buf
, char *addr
, unsigned long count
);
427 #ifdef CONFIG_DEVKMEM
429 * This function reads the *virtual* memory as seen by the kernel.
431 static ssize_t
read_kmem(struct file
*file
, char __user
*buf
,
432 size_t count
, loff_t
*ppos
)
434 unsigned long p
= *ppos
;
435 ssize_t low_count
, read
, sz
;
436 char * kbuf
; /* k-addr because vread() takes vmlist_lock rwlock */
439 if (p
< (unsigned long) high_memory
) {
441 if (count
> (unsigned long) high_memory
- p
)
442 low_count
= (unsigned long) high_memory
- p
;
444 #ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
445 /* we don't have page 0 mapped on sparc and m68k.. */
446 if (p
< PAGE_SIZE
&& low_count
> 0) {
447 size_t tmp
= PAGE_SIZE
- p
;
448 if (tmp
> low_count
) tmp
= low_count
;
449 if (clear_user(buf
, tmp
))
458 while (low_count
> 0) {
460 * Handle first page in case it's not aligned
462 if (-p
& (PAGE_SIZE
- 1))
463 sz
= -p
& (PAGE_SIZE
- 1);
467 sz
= min_t(unsigned long, sz
, low_count
);
470 * On ia64 if a page has been mapped somewhere as
471 * uncached, then it must also be accessed uncached
472 * by the kernel or data corruption may occur
474 kbuf
= xlate_dev_kmem_ptr((char *)p
);
476 if (copy_to_user(buf
, kbuf
, sz
))
487 kbuf
= (char *)__get_free_page(GFP_KERNEL
);
495 len
= vread(kbuf
, (char *)p
, len
);
498 if (copy_to_user(buf
, kbuf
, len
)) {
499 free_page((unsigned long)kbuf
);
507 free_page((unsigned long)kbuf
);
514 static inline ssize_t
515 do_write_kmem(void *p
, unsigned long realp
, const char __user
* buf
,
516 size_t count
, loff_t
*ppos
)
519 unsigned long copied
;
522 #ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
523 /* we don't have page 0 mapped on sparc and m68k.. */
524 if (realp
< PAGE_SIZE
) {
525 unsigned long sz
= PAGE_SIZE
- realp
;
528 /* Hmm. Do something? */
540 * Handle first page in case it's not aligned
542 if (-realp
& (PAGE_SIZE
- 1))
543 sz
= -realp
& (PAGE_SIZE
- 1);
547 sz
= min_t(unsigned long, sz
, count
);
550 * On ia64 if a page has been mapped somewhere as
551 * uncached, then it must also be accessed uncached
552 * by the kernel or data corruption may occur
554 ptr
= xlate_dev_kmem_ptr(p
);
556 copied
= copy_from_user(ptr
, buf
, sz
);
558 written
+= sz
- copied
;
576 * This function writes to the *virtual* memory as seen by the kernel.
578 static ssize_t
write_kmem(struct file
* file
, const char __user
* buf
,
579 size_t count
, loff_t
*ppos
)
581 unsigned long p
= *ppos
;
585 char * kbuf
; /* k-addr because vwrite() takes vmlist_lock rwlock */
587 if (p
< (unsigned long) high_memory
) {
590 if (count
> (unsigned long) high_memory
- p
)
591 wrote
= (unsigned long) high_memory
- p
;
593 written
= do_write_kmem((void*)p
, p
, buf
, wrote
, ppos
);
594 if (written
!= wrote
)
603 kbuf
= (char *)__get_free_page(GFP_KERNEL
);
605 return wrote
? wrote
: -ENOMEM
;
612 written
= copy_from_user(kbuf
, buf
, len
);
616 free_page((unsigned long)kbuf
);
620 len
= vwrite(kbuf
, (char *)p
, len
);
626 free_page((unsigned long)kbuf
);
630 return virtr
+ wrote
;
634 #ifdef CONFIG_DEVPORT
635 static ssize_t
read_port(struct file
* file
, char __user
* buf
,
636 size_t count
, loff_t
*ppos
)
638 unsigned long i
= *ppos
;
639 char __user
*tmp
= buf
;
641 if (!access_ok(VERIFY_WRITE
, buf
, count
))
643 while (count
-- > 0 && i
< 65536) {
644 if (__put_user(inb(i
),tmp
) < 0)
653 static ssize_t
write_port(struct file
* file
, const char __user
* buf
,
654 size_t count
, loff_t
*ppos
)
656 unsigned long i
= *ppos
;
657 const char __user
* tmp
= buf
;
659 if (!access_ok(VERIFY_READ
,buf
,count
))
661 while (count
-- > 0 && i
< 65536) {
663 if (__get_user(c
, tmp
)) {
677 static ssize_t
read_null(struct file
* file
, char __user
* buf
,
678 size_t count
, loff_t
*ppos
)
683 static ssize_t
write_null(struct file
* file
, const char __user
* buf
,
684 size_t count
, loff_t
*ppos
)
689 static int pipe_to_null(struct pipe_inode_info
*info
, struct pipe_buffer
*buf
,
690 struct splice_desc
*sd
)
695 static ssize_t
splice_write_null(struct pipe_inode_info
*pipe
,struct file
*out
,
696 loff_t
*ppos
, size_t len
, unsigned int flags
)
698 return splice_from_pipe(pipe
, out
, ppos
, len
, flags
, pipe_to_null
);
701 static ssize_t
read_zero(struct file
* file
, char __user
* buf
,
702 size_t count
, loff_t
*ppos
)
709 if (!access_ok(VERIFY_WRITE
, buf
, count
))
714 unsigned long unwritten
;
715 size_t chunk
= count
;
717 if (chunk
> PAGE_SIZE
)
718 chunk
= PAGE_SIZE
; /* Just for latency reasons */
719 unwritten
= clear_user(buf
, chunk
);
720 written
+= chunk
- unwritten
;
727 return written
? written
: -EFAULT
;
730 static int mmap_zero(struct file
* file
, struct vm_area_struct
* vma
)
735 if (vma
->vm_flags
& VM_SHARED
)
736 return shmem_zero_setup(vma
);
740 static ssize_t
write_full(struct file
* file
, const char __user
* buf
,
741 size_t count
, loff_t
*ppos
)
747 * Special lseek() function for /dev/null and /dev/zero. Most notably, you
748 * can fopen() both devices with "a" now. This was previously impossible.
752 static loff_t
null_lseek(struct file
* file
, loff_t offset
, int orig
)
754 return file
->f_pos
= 0;
758 * The memory devices use the full 32/64 bits of the offset, and so we cannot
759 * check against negative addresses: they are ok. The return value is weird,
760 * though, in that case (0).
762 * also note that seeking relative to the "end of file" isn't supported:
763 * it has no meaning, so it returns -EINVAL.
765 static loff_t
memory_lseek(struct file
* file
, loff_t offset
, int orig
)
769 mutex_lock(&file
->f_path
.dentry
->d_inode
->i_mutex
);
772 file
->f_pos
= offset
;
774 force_successful_syscall_return();
777 file
->f_pos
+= offset
;
779 force_successful_syscall_return();
784 mutex_unlock(&file
->f_path
.dentry
->d_inode
->i_mutex
);
788 static int open_port(struct inode
* inode
, struct file
* filp
)
790 return capable(CAP_SYS_RAWIO
) ? 0 : -EPERM
;
793 #define zero_lseek null_lseek
794 #define full_lseek null_lseek
795 #define write_zero write_null
796 #define read_full read_zero
797 #define open_mem open_port
798 #define open_kmem open_mem
799 #define open_oldmem open_mem
801 static const struct file_operations mem_fops
= {
802 .llseek
= memory_lseek
,
807 .get_unmapped_area
= get_unmapped_area_mem
,
810 #ifdef CONFIG_DEVKMEM
811 static const struct file_operations kmem_fops
= {
812 .llseek
= memory_lseek
,
817 .get_unmapped_area
= get_unmapped_area_mem
,
821 static const struct file_operations null_fops
= {
822 .llseek
= null_lseek
,
825 .splice_write
= splice_write_null
,
828 #ifdef CONFIG_DEVPORT
829 static const struct file_operations port_fops
= {
830 .llseek
= memory_lseek
,
837 static const struct file_operations zero_fops
= {
838 .llseek
= zero_lseek
,
845 * capabilities for /dev/zero
846 * - permits private mappings, "copies" are taken of the source of zeros
848 static struct backing_dev_info zero_bdi
= {
849 .capabilities
= BDI_CAP_MAP_COPY
,
852 static const struct file_operations full_fops
= {
853 .llseek
= full_lseek
,
858 #ifdef CONFIG_CRASH_DUMP
859 static const struct file_operations oldmem_fops
= {
865 static ssize_t
kmsg_write(struct file
* file
, const char __user
* buf
,
866 size_t count
, loff_t
*ppos
)
871 tmp
= kmalloc(count
+ 1, GFP_KERNEL
);
875 if (!copy_from_user(tmp
, buf
, count
)) {
877 ret
= printk("%s", tmp
);
879 /* printk can add a prefix */
886 static const struct file_operations kmsg_fops
= {
890 static int memory_open(struct inode
* inode
, struct file
* filp
)
892 switch (iminor(inode
)) {
894 filp
->f_op
= &mem_fops
;
895 filp
->f_mapping
->backing_dev_info
=
896 &directly_mappable_cdev_bdi
;
898 #ifdef CONFIG_DEVKMEM
900 filp
->f_op
= &kmem_fops
;
901 filp
->f_mapping
->backing_dev_info
=
902 &directly_mappable_cdev_bdi
;
906 filp
->f_op
= &null_fops
;
908 #ifdef CONFIG_DEVPORT
910 filp
->f_op
= &port_fops
;
914 filp
->f_mapping
->backing_dev_info
= &zero_bdi
;
915 filp
->f_op
= &zero_fops
;
918 filp
->f_op
= &full_fops
;
921 filp
->f_op
= &random_fops
;
924 filp
->f_op
= &urandom_fops
;
927 filp
->f_op
= &kmsg_fops
;
929 #ifdef CONFIG_CRASH_DUMP
931 filp
->f_op
= &oldmem_fops
;
937 if (filp
->f_op
&& filp
->f_op
->open
)
938 return filp
->f_op
->open(inode
,filp
);
942 static const struct file_operations memory_fops
= {
943 .open
= memory_open
, /* just a selector for the real open */
946 static const struct {
950 const struct file_operations
*fops
;
951 } devlist
[] = { /* list of minor devices */
952 {1, "mem", S_IRUSR
| S_IWUSR
| S_IRGRP
, &mem_fops
},
953 #ifdef CONFIG_DEVKMEM
954 {2, "kmem", S_IRUSR
| S_IWUSR
| S_IRGRP
, &kmem_fops
},
956 {3, "null", S_IRUGO
| S_IWUGO
, &null_fops
},
957 #ifdef CONFIG_DEVPORT
958 {4, "port", S_IRUSR
| S_IWUSR
| S_IRGRP
, &port_fops
},
960 {5, "zero", S_IRUGO
| S_IWUGO
, &zero_fops
},
961 {7, "full", S_IRUGO
| S_IWUGO
, &full_fops
},
962 {8, "random", S_IRUGO
| S_IWUSR
, &random_fops
},
963 {9, "urandom", S_IRUGO
| S_IWUSR
, &urandom_fops
},
964 {11,"kmsg", S_IRUGO
| S_IWUSR
, &kmsg_fops
},
965 #ifdef CONFIG_CRASH_DUMP
966 {12,"oldmem", S_IRUSR
| S_IWUSR
| S_IRGRP
, &oldmem_fops
},
970 static struct class *mem_class
;
972 static int __init
chr_dev_init(void)
977 err
= bdi_init(&zero_bdi
);
981 if (register_chrdev(MEM_MAJOR
,"mem",&memory_fops
))
982 printk("unable to get major %d for memory devs\n", MEM_MAJOR
);
984 mem_class
= class_create(THIS_MODULE
, "mem");
985 for (i
= 0; i
< ARRAY_SIZE(devlist
); i
++)
986 device_create(mem_class
, NULL
,
987 MKDEV(MEM_MAJOR
, devlist
[i
].minor
),
993 fs_initcall(chr_dev_init
);