Linux Audio

Check our new training course

Loading...
v5.9
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 *  linux/drivers/char/mem.c
   4 *
   5 *  Copyright (C) 1991, 1992  Linus Torvalds
   6 *
   7 *  Added devfs support.
   8 *    Jan-11-1998, C. Scott Ananian <cananian@alumni.princeton.edu>
   9 *  Shared /dev/zero mmapping support, Feb 2000, Kanoj Sarcar <kanoj@sgi.com>
  10 */
  11
  12#include <linux/mm.h>
  13#include <linux/miscdevice.h>
  14#include <linux/slab.h>
  15#include <linux/vmalloc.h>
  16#include <linux/mman.h>
  17#include <linux/random.h>
  18#include <linux/init.h>
  19#include <linux/raw.h>
  20#include <linux/tty.h>
  21#include <linux/capability.h>
  22#include <linux/ptrace.h>
  23#include <linux/device.h>
  24#include <linux/highmem.h>
 
  25#include <linux/backing-dev.h>
  26#include <linux/shmem_fs.h>
  27#include <linux/splice.h>
  28#include <linux/pfn.h>
  29#include <linux/export.h>
  30#include <linux/io.h>
  31#include <linux/uio.h>
  32#include <linux/uaccess.h>
  33#include <linux/security.h>
  34#include <linux/pseudo_fs.h>
  35#include <uapi/linux/magic.h>
  36#include <linux/mount.h>
  37
  38#ifdef CONFIG_IA64
  39# include <linux/efi.h>
  40#endif
  41
  42#define DEVMEM_MINOR	1
  43#define DEVPORT_MINOR	4
  44
  45static inline unsigned long size_inside_page(unsigned long start,
  46					     unsigned long size)
  47{
  48	unsigned long sz;
  49
  50	sz = PAGE_SIZE - (start & (PAGE_SIZE - 1));
  51
  52	return min(sz, size);
  53}
  54
  55#ifndef ARCH_HAS_VALID_PHYS_ADDR_RANGE
  56static inline int valid_phys_addr_range(phys_addr_t addr, size_t count)
  57{
  58	return addr + count <= __pa(high_memory);
  59}
  60
  61static inline int valid_mmap_phys_addr_range(unsigned long pfn, size_t size)
  62{
  63	return 1;
  64}
  65#endif
  66
  67#ifdef CONFIG_STRICT_DEVMEM
  68static inline int page_is_allowed(unsigned long pfn)
  69{
  70	return devmem_is_allowed(pfn);
  71}
  72static inline int range_is_allowed(unsigned long pfn, unsigned long size)
  73{
  74	u64 from = ((u64)pfn) << PAGE_SHIFT;
  75	u64 to = from + size;
  76	u64 cursor = from;
  77
  78	while (cursor < to) {
  79		if (!devmem_is_allowed(pfn))
 
 
 
  80			return 0;
 
  81		cursor += PAGE_SIZE;
  82		pfn++;
  83	}
  84	return 1;
  85}
  86#else
  87static inline int page_is_allowed(unsigned long pfn)
  88{
  89	return 1;
  90}
  91static inline int range_is_allowed(unsigned long pfn, unsigned long size)
  92{
  93	return 1;
  94}
  95#endif
  96
  97#ifndef unxlate_dev_mem_ptr
  98#define unxlate_dev_mem_ptr unxlate_dev_mem_ptr
  99void __weak unxlate_dev_mem_ptr(phys_addr_t phys, void *addr)
 100{
 101}
 102#endif
 103
 104static inline bool should_stop_iteration(void)
 105{
 106	if (need_resched())
 107		cond_resched();
 108	return fatal_signal_pending(current);
 109}
 110
 111/*
 112 * This funcion reads the *physical* memory. The f_pos points directly to the
 113 * memory location.
 114 */
 115static ssize_t read_mem(struct file *file, char __user *buf,
 116			size_t count, loff_t *ppos)
 117{
 118	phys_addr_t p = *ppos;
 119	ssize_t read, sz;
 120	void *ptr;
 121	char *bounce;
 122	int err;
 123
 124	if (p != *ppos)
 125		return 0;
 126
 127	if (!valid_phys_addr_range(p, count))
 128		return -EFAULT;
 129	read = 0;
 130#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
 131	/* we don't have page 0 mapped on sparc and m68k.. */
 132	if (p < PAGE_SIZE) {
 133		sz = size_inside_page(p, count);
 134		if (sz > 0) {
 135			if (clear_user(buf, sz))
 136				return -EFAULT;
 137			buf += sz;
 138			p += sz;
 139			count -= sz;
 140			read += sz;
 141		}
 142	}
 143#endif
 144
 145	bounce = kmalloc(PAGE_SIZE, GFP_KERNEL);
 146	if (!bounce)
 147		return -ENOMEM;
 148
 149	while (count > 0) {
 150		unsigned long remaining;
 151		int allowed, probe;
 152
 153		sz = size_inside_page(p, count);
 154
 155		err = -EPERM;
 156		allowed = page_is_allowed(p >> PAGE_SHIFT);
 157		if (!allowed)
 158			goto failed;
 159
 160		err = -EFAULT;
 161		if (allowed == 2) {
 162			/* Show zeros for restricted memory. */
 163			remaining = clear_user(buf, sz);
 164		} else {
 165			/*
 166			 * On ia64 if a page has been mapped somewhere as
 167			 * uncached, then it must also be accessed uncached
 168			 * by the kernel or data corruption may occur.
 169			 */
 170			ptr = xlate_dev_mem_ptr(p);
 171			if (!ptr)
 172				goto failed;
 173
 174			probe = copy_from_kernel_nofault(bounce, ptr, sz);
 175			unxlate_dev_mem_ptr(p, ptr);
 176			if (probe)
 177				goto failed;
 178
 179			remaining = copy_to_user(buf, bounce, sz);
 180		}
 
 
 
 
 
 
 181
 
 
 182		if (remaining)
 183			goto failed;
 184
 185		buf += sz;
 186		p += sz;
 187		count -= sz;
 188		read += sz;
 189		if (should_stop_iteration())
 190			break;
 191	}
 192	kfree(bounce);
 193
 194	*ppos += read;
 195	return read;
 196
 197failed:
 198	kfree(bounce);
 199	return err;
 200}
 201
 202static ssize_t write_mem(struct file *file, const char __user *buf,
 203			 size_t count, loff_t *ppos)
 204{
 205	phys_addr_t p = *ppos;
 206	ssize_t written, sz;
 207	unsigned long copied;
 208	void *ptr;
 209
 210	if (p != *ppos)
 211		return -EFBIG;
 212
 213	if (!valid_phys_addr_range(p, count))
 214		return -EFAULT;
 215
 216	written = 0;
 217
 218#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
 219	/* we don't have page 0 mapped on sparc and m68k.. */
 220	if (p < PAGE_SIZE) {
 221		sz = size_inside_page(p, count);
 222		/* Hmm. Do something? */
 223		buf += sz;
 224		p += sz;
 225		count -= sz;
 226		written += sz;
 227	}
 228#endif
 229
 230	while (count > 0) {
 231		int allowed;
 232
 233		sz = size_inside_page(p, count);
 234
 235		allowed = page_is_allowed(p >> PAGE_SHIFT);
 236		if (!allowed)
 237			return -EPERM;
 238
 239		/* Skip actual writing when a page is marked as restricted. */
 240		if (allowed == 1) {
 241			/*
 242			 * On ia64 if a page has been mapped somewhere as
 243			 * uncached, then it must also be accessed uncached
 244			 * by the kernel or data corruption may occur.
 245			 */
 246			ptr = xlate_dev_mem_ptr(p);
 247			if (!ptr) {
 248				if (written)
 249					break;
 250				return -EFAULT;
 251			}
 252
 253			copied = copy_from_user(ptr, buf, sz);
 254			unxlate_dev_mem_ptr(p, ptr);
 255			if (copied) {
 256				written += sz - copied;
 257				if (written)
 258					break;
 259				return -EFAULT;
 260			}
 261		}
 262
 263		buf += sz;
 264		p += sz;
 265		count -= sz;
 266		written += sz;
 267		if (should_stop_iteration())
 268			break;
 269	}
 270
 271	*ppos += written;
 272	return written;
 273}
 274
 275int __weak phys_mem_access_prot_allowed(struct file *file,
 276	unsigned long pfn, unsigned long size, pgprot_t *vma_prot)
 277{
 278	return 1;
 279}
 280
 281#ifndef __HAVE_PHYS_MEM_ACCESS_PROT
 282
 283/*
 284 * Architectures vary in how they handle caching for addresses
 285 * outside of main memory.
 286 *
 287 */
 288#ifdef pgprot_noncached
 289static int uncached_access(struct file *file, phys_addr_t addr)
 290{
 291#if defined(CONFIG_IA64)
 292	/*
 293	 * On ia64, we ignore O_DSYNC because we cannot tolerate memory
 294	 * attribute aliases.
 295	 */
 296	return !(efi_mem_attributes(addr) & EFI_MEMORY_WB);
 297#elif defined(CONFIG_MIPS)
 298	{
 299		extern int __uncached_access(struct file *file,
 300					     unsigned long addr);
 301
 302		return __uncached_access(file, addr);
 303	}
 304#else
 305	/*
 306	 * Accessing memory above the top the kernel knows about or through a
 307	 * file pointer
 308	 * that was marked O_DSYNC will be done non-cached.
 309	 */
 310	if (file->f_flags & O_DSYNC)
 311		return 1;
 312	return addr >= __pa(high_memory);
 313#endif
 314}
 315#endif
 316
 317static pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
 318				     unsigned long size, pgprot_t vma_prot)
 319{
 320#ifdef pgprot_noncached
 321	phys_addr_t offset = pfn << PAGE_SHIFT;
 322
 323	if (uncached_access(file, offset))
 324		return pgprot_noncached(vma_prot);
 325#endif
 326	return vma_prot;
 327}
 328#endif
 329
 330#ifndef CONFIG_MMU
 331static unsigned long get_unmapped_area_mem(struct file *file,
 332					   unsigned long addr,
 333					   unsigned long len,
 334					   unsigned long pgoff,
 335					   unsigned long flags)
 336{
 337	if (!valid_mmap_phys_addr_range(pgoff, len))
 338		return (unsigned long) -EINVAL;
 339	return pgoff << PAGE_SHIFT;
 340}
 341
 342/* permit direct mmap, for read, write or exec */
 343static unsigned memory_mmap_capabilities(struct file *file)
 344{
 345	return NOMMU_MAP_DIRECT |
 346		NOMMU_MAP_READ | NOMMU_MAP_WRITE | NOMMU_MAP_EXEC;
 347}
 348
 349static unsigned zero_mmap_capabilities(struct file *file)
 350{
 351	return NOMMU_MAP_COPY;
 352}
 353
 354/* can't do an in-place private mapping if there's no MMU */
 355static inline int private_mapping_ok(struct vm_area_struct *vma)
 356{
 357	return vma->vm_flags & VM_MAYSHARE;
 358}
 359#else
 
 360
 361static inline int private_mapping_ok(struct vm_area_struct *vma)
 362{
 363	return 1;
 364}
 365#endif
 366
 367static const struct vm_operations_struct mmap_mem_ops = {
 368#ifdef CONFIG_HAVE_IOREMAP_PROT
 369	.access = generic_access_phys
 370#endif
 371};
 372
 373static int mmap_mem(struct file *file, struct vm_area_struct *vma)
 374{
 375	size_t size = vma->vm_end - vma->vm_start;
 376	phys_addr_t offset = (phys_addr_t)vma->vm_pgoff << PAGE_SHIFT;
 377
 378	/* Does it even fit in phys_addr_t? */
 379	if (offset >> PAGE_SHIFT != vma->vm_pgoff)
 380		return -EINVAL;
 381
 382	/* It's illegal to wrap around the end of the physical address space. */
 383	if (offset + (phys_addr_t)size - 1 < offset)
 384		return -EINVAL;
 385
 386	if (!valid_mmap_phys_addr_range(vma->vm_pgoff, size))
 387		return -EINVAL;
 388
 389	if (!private_mapping_ok(vma))
 390		return -ENOSYS;
 391
 392	if (!range_is_allowed(vma->vm_pgoff, size))
 393		return -EPERM;
 394
 395	if (!phys_mem_access_prot_allowed(file, vma->vm_pgoff, size,
 396						&vma->vm_page_prot))
 397		return -EINVAL;
 398
 399	vma->vm_page_prot = phys_mem_access_prot(file, vma->vm_pgoff,
 400						 size,
 401						 vma->vm_page_prot);
 402
 403	vma->vm_ops = &mmap_mem_ops;
 404
 405	/* Remap-pfn-range will mark the range VM_IO */
 406	if (remap_pfn_range(vma,
 407			    vma->vm_start,
 408			    vma->vm_pgoff,
 409			    size,
 410			    vma->vm_page_prot)) {
 411		return -EAGAIN;
 412	}
 413	return 0;
 414}
 415
 
 416static int mmap_kmem(struct file *file, struct vm_area_struct *vma)
 417{
 418	unsigned long pfn;
 419
 420	/* Turn a kernel-virtual address into a physical page frame */
 421	pfn = __pa((u64)vma->vm_pgoff << PAGE_SHIFT) >> PAGE_SHIFT;
 422
 423	/*
 424	 * RED-PEN: on some architectures there is more mapped memory than
 425	 * available in mem_map which pfn_valid checks for. Perhaps should add a
 426	 * new macro here.
 427	 *
 428	 * RED-PEN: vmalloc is not supported right now.
 429	 */
 430	if (!pfn_valid(pfn))
 431		return -EIO;
 432
 433	vma->vm_pgoff = pfn;
 434	return mmap_mem(file, vma);
 435}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 436
 
 437/*
 438 * This function reads the *virtual* memory as seen by the kernel.
 439 */
 440static ssize_t read_kmem(struct file *file, char __user *buf,
 441			 size_t count, loff_t *ppos)
 442{
 443	unsigned long p = *ppos;
 444	ssize_t low_count, read, sz;
 445	char *kbuf; /* k-addr because vread() takes vmlist_lock rwlock */
 446	int err = 0;
 447
 448	read = 0;
 449	if (p < (unsigned long) high_memory) {
 450		low_count = count;
 451		if (count > (unsigned long)high_memory - p)
 452			low_count = (unsigned long)high_memory - p;
 453
 454#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
 455		/* we don't have page 0 mapped on sparc and m68k.. */
 456		if (p < PAGE_SIZE && low_count > 0) {
 457			sz = size_inside_page(p, low_count);
 458			if (clear_user(buf, sz))
 459				return -EFAULT;
 460			buf += sz;
 461			p += sz;
 462			read += sz;
 463			low_count -= sz;
 464			count -= sz;
 465		}
 466#endif
 467		while (low_count > 0) {
 468			sz = size_inside_page(p, low_count);
 469
 470			/*
 471			 * On ia64 if a page has been mapped somewhere as
 472			 * uncached, then it must also be accessed uncached
 473			 * by the kernel or data corruption may occur
 474			 */
 475			kbuf = xlate_dev_kmem_ptr((void *)p);
 476			if (!virt_addr_valid(kbuf))
 477				return -ENXIO;
 478
 479			if (copy_to_user(buf, kbuf, sz))
 480				return -EFAULT;
 481			buf += sz;
 482			p += sz;
 483			read += sz;
 484			low_count -= sz;
 485			count -= sz;
 486			if (should_stop_iteration()) {
 487				count = 0;
 488				break;
 489			}
 490		}
 491	}
 492
 493	if (count > 0) {
 494		kbuf = (char *)__get_free_page(GFP_KERNEL);
 495		if (!kbuf)
 496			return -ENOMEM;
 497		while (count > 0) {
 498			sz = size_inside_page(p, count);
 499			if (!is_vmalloc_or_module_addr((void *)p)) {
 500				err = -ENXIO;
 501				break;
 502			}
 503			sz = vread(kbuf, (char *)p, sz);
 504			if (!sz)
 505				break;
 506			if (copy_to_user(buf, kbuf, sz)) {
 507				err = -EFAULT;
 508				break;
 509			}
 510			count -= sz;
 511			buf += sz;
 512			read += sz;
 513			p += sz;
 514			if (should_stop_iteration())
 515				break;
 516		}
 517		free_page((unsigned long)kbuf);
 518	}
 519	*ppos = p;
 520	return read ? read : err;
 521}
 522
 523
 524static ssize_t do_write_kmem(unsigned long p, const char __user *buf,
 525				size_t count, loff_t *ppos)
 526{
 527	ssize_t written, sz;
 528	unsigned long copied;
 529
 530	written = 0;
 531#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
 532	/* we don't have page 0 mapped on sparc and m68k.. */
 533	if (p < PAGE_SIZE) {
 534		sz = size_inside_page(p, count);
 535		/* Hmm. Do something? */
 536		buf += sz;
 537		p += sz;
 538		count -= sz;
 539		written += sz;
 540	}
 541#endif
 542
 543	while (count > 0) {
 544		void *ptr;
 545
 546		sz = size_inside_page(p, count);
 547
 548		/*
 549		 * On ia64 if a page has been mapped somewhere as uncached, then
 550		 * it must also be accessed uncached by the kernel or data
 551		 * corruption may occur.
 552		 */
 553		ptr = xlate_dev_kmem_ptr((void *)p);
 554		if (!virt_addr_valid(ptr))
 555			return -ENXIO;
 556
 557		copied = copy_from_user(ptr, buf, sz);
 558		if (copied) {
 559			written += sz - copied;
 560			if (written)
 561				break;
 562			return -EFAULT;
 563		}
 564		buf += sz;
 565		p += sz;
 566		count -= sz;
 567		written += sz;
 568		if (should_stop_iteration())
 569			break;
 570	}
 571
 572	*ppos += written;
 573	return written;
 574}
 575
 576/*
 577 * This function writes to the *virtual* memory as seen by the kernel.
 578 */
 579static ssize_t write_kmem(struct file *file, const char __user *buf,
 580			  size_t count, loff_t *ppos)
 581{
 582	unsigned long p = *ppos;
 583	ssize_t wrote = 0;
 584	ssize_t virtr = 0;
 585	char *kbuf; /* k-addr because vwrite() takes vmlist_lock rwlock */
 586	int err = 0;
 587
 588	if (p < (unsigned long) high_memory) {
 589		unsigned long to_write = min_t(unsigned long, count,
 590					       (unsigned long)high_memory - p);
 591		wrote = do_write_kmem(p, buf, to_write, ppos);
 592		if (wrote != to_write)
 593			return wrote;
 594		p += wrote;
 595		buf += wrote;
 596		count -= wrote;
 597	}
 598
 599	if (count > 0) {
 600		kbuf = (char *)__get_free_page(GFP_KERNEL);
 601		if (!kbuf)
 602			return wrote ? wrote : -ENOMEM;
 603		while (count > 0) {
 604			unsigned long sz = size_inside_page(p, count);
 605			unsigned long n;
 606
 607			if (!is_vmalloc_or_module_addr((void *)p)) {
 608				err = -ENXIO;
 609				break;
 610			}
 611			n = copy_from_user(kbuf, buf, sz);
 612			if (n) {
 613				err = -EFAULT;
 614				break;
 615			}
 616			vwrite(kbuf, (char *)p, sz);
 617			count -= sz;
 618			buf += sz;
 619			virtr += sz;
 620			p += sz;
 621			if (should_stop_iteration())
 622				break;
 623		}
 624		free_page((unsigned long)kbuf);
 625	}
 626
 627	*ppos = p;
 628	return virtr + wrote ? : err;
 629}
 
 630
 
 631static ssize_t read_port(struct file *file, char __user *buf,
 632			 size_t count, loff_t *ppos)
 633{
 634	unsigned long i = *ppos;
 635	char __user *tmp = buf;
 636
 637	if (!access_ok(buf, count))
 638		return -EFAULT;
 639	while (count-- > 0 && i < 65536) {
 640		if (__put_user(inb(i), tmp) < 0)
 641			return -EFAULT;
 642		i++;
 643		tmp++;
 644	}
 645	*ppos = i;
 646	return tmp-buf;
 647}
 648
 649static ssize_t write_port(struct file *file, const char __user *buf,
 650			  size_t count, loff_t *ppos)
 651{
 652	unsigned long i = *ppos;
 653	const char __user *tmp = buf;
 654
 655	if (!access_ok(buf, count))
 656		return -EFAULT;
 657	while (count-- > 0 && i < 65536) {
 658		char c;
 659
 660		if (__get_user(c, tmp)) {
 661			if (tmp > buf)
 662				break;
 663			return -EFAULT;
 664		}
 665		outb(c, i);
 666		i++;
 667		tmp++;
 668	}
 669	*ppos = i;
 670	return tmp-buf;
 671}
 
 672
 673static ssize_t read_null(struct file *file, char __user *buf,
 674			 size_t count, loff_t *ppos)
 675{
 676	return 0;
 677}
 678
 679static ssize_t write_null(struct file *file, const char __user *buf,
 680			  size_t count, loff_t *ppos)
 681{
 682	return count;
 683}
 684
 685static ssize_t read_iter_null(struct kiocb *iocb, struct iov_iter *to)
 686{
 687	return 0;
 688}
 689
 690static ssize_t write_iter_null(struct kiocb *iocb, struct iov_iter *from)
 691{
 692	size_t count = iov_iter_count(from);
 693	iov_iter_advance(from, count);
 694	return count;
 695}
 696
 697static int pipe_to_null(struct pipe_inode_info *info, struct pipe_buffer *buf,
 698			struct splice_desc *sd)
 699{
 700	return sd->len;
 701}
 702
 703static ssize_t splice_write_null(struct pipe_inode_info *pipe, struct file *out,
 704				 loff_t *ppos, size_t len, unsigned int flags)
 705{
 706	return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_null);
 707}
 708
 709static ssize_t read_iter_zero(struct kiocb *iocb, struct iov_iter *iter)
 
 710{
 711	size_t written = 0;
 
 
 
 712
 713	while (iov_iter_count(iter)) {
 714		size_t chunk = iov_iter_count(iter), n;
 
 
 
 
 
 715
 716		if (chunk > PAGE_SIZE)
 717			chunk = PAGE_SIZE;	/* Just for latency reasons */
 718		n = iov_iter_zero(chunk, iter);
 719		if (!n && iov_iter_count(iter))
 720			return written ? written : -EFAULT;
 721		written += n;
 722		if (signal_pending(current))
 723			return written ? written : -ERESTARTSYS;
 
 
 724		cond_resched();
 725	}
 726	return written;
 727}
 728
 729static int mmap_zero(struct file *file, struct vm_area_struct *vma)
 730{
 731#ifndef CONFIG_MMU
 732	return -ENOSYS;
 733#endif
 734	if (vma->vm_flags & VM_SHARED)
 735		return shmem_zero_setup(vma);
 736	vma_set_anonymous(vma);
 737	return 0;
 738}
 739
 740static unsigned long get_unmapped_area_zero(struct file *file,
 741				unsigned long addr, unsigned long len,
 742				unsigned long pgoff, unsigned long flags)
 743{
 744#ifdef CONFIG_MMU
 745	if (flags & MAP_SHARED) {
 746		/*
 747		 * mmap_zero() will call shmem_zero_setup() to create a file,
 748		 * so use shmem's get_unmapped_area in case it can be huge;
 749		 * and pass NULL for file as in mmap.c's get_unmapped_area(),
 750		 * so as not to confuse shmem with our handle on "/dev/zero".
 751		 */
 752		return shmem_get_unmapped_area(NULL, addr, len, pgoff, flags);
 753	}
 754
 755	/* Otherwise flags & MAP_PRIVATE: with no shmem object beneath it */
 756	return current->mm->get_unmapped_area(file, addr, len, pgoff, flags);
 757#else
 758	return -ENOSYS;
 759#endif
 760}
 761
 762static ssize_t write_full(struct file *file, const char __user *buf,
 763			  size_t count, loff_t *ppos)
 764{
 765	return -ENOSPC;
 766}
 767
 768/*
 769 * Special lseek() function for /dev/null and /dev/zero.  Most notably, you
 770 * can fopen() both devices with "a" now.  This was previously impossible.
 771 * -- SRB.
 772 */
 773static loff_t null_lseek(struct file *file, loff_t offset, int orig)
 774{
 775	return file->f_pos = 0;
 776}
 777
 778/*
 779 * The memory devices use the full 32/64 bits of the offset, and so we cannot
 780 * check against negative addresses: they are ok. The return value is weird,
 781 * though, in that case (0).
 782 *
 783 * also note that seeking relative to the "end of file" isn't supported:
 784 * it has no meaning, so it returns -EINVAL.
 785 */
 786static loff_t memory_lseek(struct file *file, loff_t offset, int orig)
 787{
 788	loff_t ret;
 789
 790	inode_lock(file_inode(file));
 791	switch (orig) {
 792	case SEEK_CUR:
 793		offset += file->f_pos;
 794		fallthrough;
 795	case SEEK_SET:
 796		/* to avoid userland mistaking f_pos=-9 as -EBADF=-9 */
 797		if ((unsigned long long)offset >= -MAX_ERRNO) {
 798			ret = -EOVERFLOW;
 799			break;
 800		}
 801		file->f_pos = offset;
 802		ret = file->f_pos;
 803		force_successful_syscall_return();
 804		break;
 805	default:
 806		ret = -EINVAL;
 807	}
 808	inode_unlock(file_inode(file));
 809	return ret;
 810}
 811
 812static struct inode *devmem_inode;
 813
 814#ifdef CONFIG_IO_STRICT_DEVMEM
 815void revoke_devmem(struct resource *res)
 816{
 817	/* pairs with smp_store_release() in devmem_init_inode() */
 818	struct inode *inode = smp_load_acquire(&devmem_inode);
 819
 820	/*
 821	 * Check that the initialization has completed. Losing the race
 822	 * is ok because it means drivers are claiming resources before
 823	 * the fs_initcall level of init and prevent /dev/mem from
 824	 * establishing mappings.
 825	 */
 826	if (!inode)
 827		return;
 828
 829	/*
 830	 * The expectation is that the driver has successfully marked
 831	 * the resource busy by this point, so devmem_is_allowed()
 832	 * should start returning false, however for performance this
 833	 * does not iterate the entire resource range.
 834	 */
 835	if (devmem_is_allowed(PHYS_PFN(res->start)) &&
 836	    devmem_is_allowed(PHYS_PFN(res->end))) {
 837		/*
 838		 * *cringe* iomem=relaxed says "go ahead, what's the
 839		 * worst that can happen?"
 840		 */
 841		return;
 842	}
 843
 844	unmap_mapping_range(inode->i_mapping, res->start, resource_size(res), 1);
 845}
 846#endif
 847
 848static int open_port(struct inode *inode, struct file *filp)
 849{
 850	int rc;
 851
 852	if (!capable(CAP_SYS_RAWIO))
 853		return -EPERM;
 854
 855	rc = security_locked_down(LOCKDOWN_DEV_MEM);
 856	if (rc)
 857		return rc;
 858
 859	if (iminor(inode) != DEVMEM_MINOR)
 860		return 0;
 861
 862	/*
 863	 * Use a unified address space to have a single point to manage
 864	 * revocations when drivers want to take over a /dev/mem mapped
 865	 * range.
 866	 */
 867	inode->i_mapping = devmem_inode->i_mapping;
 868	filp->f_mapping = inode->i_mapping;
 869
 870	return 0;
 871}
 872
 873#define zero_lseek	null_lseek
 874#define full_lseek      null_lseek
 875#define write_zero	write_null
 876#define write_iter_zero	write_iter_null
 877#define open_mem	open_port
 878#define open_kmem	open_mem
 
 879
 880static const struct file_operations __maybe_unused mem_fops = {
 881	.llseek		= memory_lseek,
 882	.read		= read_mem,
 883	.write		= write_mem,
 884	.mmap		= mmap_mem,
 885	.open		= open_mem,
 886#ifndef CONFIG_MMU
 887	.get_unmapped_area = get_unmapped_area_mem,
 888	.mmap_capabilities = memory_mmap_capabilities,
 889#endif
 890};
 891
 892static const struct file_operations __maybe_unused kmem_fops = {
 
 893	.llseek		= memory_lseek,
 894	.read		= read_kmem,
 895	.write		= write_kmem,
 896	.mmap		= mmap_kmem,
 897	.open		= open_kmem,
 898#ifndef CONFIG_MMU
 899	.get_unmapped_area = get_unmapped_area_mem,
 900	.mmap_capabilities = memory_mmap_capabilities,
 901#endif
 902};
 
 903
 904static const struct file_operations null_fops = {
 905	.llseek		= null_lseek,
 906	.read		= read_null,
 907	.write		= write_null,
 908	.read_iter	= read_iter_null,
 909	.write_iter	= write_iter_null,
 910	.splice_write	= splice_write_null,
 911};
 912
 913static const struct file_operations __maybe_unused port_fops = {
 
 914	.llseek		= memory_lseek,
 915	.read		= read_port,
 916	.write		= write_port,
 917	.open		= open_port,
 918};
 
 919
 920static const struct file_operations zero_fops = {
 921	.llseek		= zero_lseek,
 
 922	.write		= write_zero,
 923	.read_iter	= read_iter_zero,
 924	.write_iter	= write_iter_zero,
 925	.mmap		= mmap_zero,
 926	.get_unmapped_area = get_unmapped_area_zero,
 927#ifndef CONFIG_MMU
 928	.mmap_capabilities = zero_mmap_capabilities,
 929#endif
 
 
 
 
 
 
 930};
 931
 932static const struct file_operations full_fops = {
 933	.llseek		= full_lseek,
 934	.read_iter	= read_iter_zero,
 935	.write		= write_full,
 936};
 937
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 938static const struct memdev {
 939	const char *name;
 940	umode_t mode;
 941	const struct file_operations *fops;
 942	fmode_t fmode;
 943} devlist[] = {
 944#ifdef CONFIG_DEVMEM
 945	 [DEVMEM_MINOR] = { "mem", 0, &mem_fops, FMODE_UNSIGNED_OFFSET },
 946#endif
 947#ifdef CONFIG_DEVKMEM
 948	 [2] = { "kmem", 0, &kmem_fops, FMODE_UNSIGNED_OFFSET },
 949#endif
 950	 [3] = { "null", 0666, &null_fops, 0 },
 951#ifdef CONFIG_DEVPORT
 952	 [4] = { "port", 0, &port_fops, 0 },
 953#endif
 954	 [5] = { "zero", 0666, &zero_fops, 0 },
 955	 [7] = { "full", 0666, &full_fops, 0 },
 956	 [8] = { "random", 0666, &random_fops, 0 },
 957	 [9] = { "urandom", 0666, &urandom_fops, 0 },
 958#ifdef CONFIG_PRINTK
 959	[11] = { "kmsg", 0644, &kmsg_fops, 0 },
 
 960#endif
 961};
 962
 963static int memory_open(struct inode *inode, struct file *filp)
 964{
 965	int minor;
 966	const struct memdev *dev;
 967
 968	minor = iminor(inode);
 969	if (minor >= ARRAY_SIZE(devlist))
 970		return -ENXIO;
 971
 972	dev = &devlist[minor];
 973	if (!dev->fops)
 974		return -ENXIO;
 975
 976	filp->f_op = dev->fops;
 977	filp->f_mode |= dev->fmode;
 
 
 
 
 
 978
 979	if (dev->fops->open)
 980		return dev->fops->open(inode, filp);
 981
 982	return 0;
 983}
 984
 985static const struct file_operations memory_fops = {
 986	.open = memory_open,
 987	.llseek = noop_llseek,
 988};
 989
 990static char *mem_devnode(struct device *dev, umode_t *mode)
 991{
 992	if (mode && devlist[MINOR(dev->devt)].mode)
 993		*mode = devlist[MINOR(dev->devt)].mode;
 994	return NULL;
 995}
 996
 997static struct class *mem_class;
 998
 999static int devmem_fs_init_fs_context(struct fs_context *fc)
1000{
1001	return init_pseudo(fc, DEVMEM_MAGIC) ? 0 : -ENOMEM;
1002}
1003
1004static struct file_system_type devmem_fs_type = {
1005	.name		= "devmem",
1006	.owner		= THIS_MODULE,
1007	.init_fs_context = devmem_fs_init_fs_context,
1008	.kill_sb	= kill_anon_super,
1009};
1010
1011static int devmem_init_inode(void)
1012{
1013	static struct vfsmount *devmem_vfs_mount;
1014	static int devmem_fs_cnt;
1015	struct inode *inode;
1016	int rc;
1017
1018	rc = simple_pin_fs(&devmem_fs_type, &devmem_vfs_mount, &devmem_fs_cnt);
1019	if (rc < 0) {
1020		pr_err("Cannot mount /dev/mem pseudo filesystem: %d\n", rc);
1021		return rc;
1022	}
1023
1024	inode = alloc_anon_inode(devmem_vfs_mount->mnt_sb);
1025	if (IS_ERR(inode)) {
1026		rc = PTR_ERR(inode);
1027		pr_err("Cannot allocate inode for /dev/mem: %d\n", rc);
1028		simple_release_fs(&devmem_vfs_mount, &devmem_fs_cnt);
1029		return rc;
1030	}
1031
1032	/*
1033	 * Publish /dev/mem initialized.
1034	 * Pairs with smp_load_acquire() in revoke_devmem().
1035	 */
1036	smp_store_release(&devmem_inode, inode);
1037
1038	return 0;
1039}
1040
1041static int __init chr_dev_init(void)
1042{
1043	int minor;
 
 
 
 
 
1044
1045	if (register_chrdev(MEM_MAJOR, "mem", &memory_fops))
1046		printk("unable to get major %d for memory devs\n", MEM_MAJOR);
1047
1048	mem_class = class_create(THIS_MODULE, "mem");
1049	if (IS_ERR(mem_class))
1050		return PTR_ERR(mem_class);
1051
1052	mem_class->devnode = mem_devnode;
1053	for (minor = 1; minor < ARRAY_SIZE(devlist); minor++) {
1054		if (!devlist[minor].name)
1055			continue;
1056
1057		/*
1058		 * Create /dev/port?
1059		 */
1060		if ((minor == DEVPORT_MINOR) && !arch_has_dev_port())
1061			continue;
1062		if ((minor == DEVMEM_MINOR) && devmem_init_inode() != 0)
1063			continue;
1064
1065		device_create(mem_class, NULL, MKDEV(MEM_MAJOR, minor),
1066			      NULL, devlist[minor].name);
1067	}
1068
1069	return tty_init();
1070}
1071
1072fs_initcall(chr_dev_init);
v3.1
 
  1/*
  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 mmapping support, Feb 2000, Kanoj Sarcar <kanoj@sgi.com>
  9 */
 10
 11#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>
 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>
 29
 30#include <asm/uaccess.h>
 31#include <asm/io.h>
 
 
 
 
 
 32
 33#ifdef CONFIG_IA64
 34# include <linux/efi.h>
 35#endif
 36
 
 
 
 37static inline unsigned long size_inside_page(unsigned long start,
 38					     unsigned long size)
 39{
 40	unsigned long sz;
 41
 42	sz = PAGE_SIZE - (start & (PAGE_SIZE - 1));
 43
 44	return min(sz, size);
 45}
 46
 47#ifndef ARCH_HAS_VALID_PHYS_ADDR_RANGE
 48static inline int valid_phys_addr_range(unsigned long addr, size_t count)
 49{
 50	return addr + count <= __pa(high_memory);
 51}
 52
 53static inline int valid_mmap_phys_addr_range(unsigned long pfn, size_t size)
 54{
 55	return 1;
 56}
 57#endif
 58
 59#ifdef CONFIG_STRICT_DEVMEM
 
 
 
 
 60static inline int range_is_allowed(unsigned long pfn, unsigned long size)
 61{
 62	u64 from = ((u64)pfn) << PAGE_SHIFT;
 63	u64 to = from + size;
 64	u64 cursor = from;
 65
 66	while (cursor < to) {
 67		if (!devmem_is_allowed(pfn)) {
 68			printk(KERN_INFO
 69		"Program %s tried to access /dev/mem between %Lx->%Lx.\n",
 70				current->comm, from, to);
 71			return 0;
 72		}
 73		cursor += PAGE_SIZE;
 74		pfn++;
 75	}
 76	return 1;
 77}
 78#else
 
 
 
 
 79static inline int range_is_allowed(unsigned long pfn, unsigned long size)
 80{
 81	return 1;
 82}
 83#endif
 84
 85void __weak unxlate_dev_mem_ptr(unsigned long phys, void *addr)
 
 
 
 
 
 
 
 86{
 
 
 
 87}
 88
 89/*
 90 * This funcion reads the *physical* memory. The f_pos points directly to the
 91 * memory location.
 92 */
 93static ssize_t read_mem(struct file *file, char __user *buf,
 94			size_t count, loff_t *ppos)
 95{
 96	unsigned long p = *ppos;
 97	ssize_t read, sz;
 98	char *ptr;
 
 
 
 
 
 99
100	if (!valid_phys_addr_range(p, count))
101		return -EFAULT;
102	read = 0;
103#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
104	/* we don't have page 0 mapped on sparc and m68k.. */
105	if (p < PAGE_SIZE) {
106		sz = size_inside_page(p, count);
107		if (sz > 0) {
108			if (clear_user(buf, sz))
109				return -EFAULT;
110			buf += sz;
111			p += sz;
112			count -= sz;
113			read += sz;
114		}
115	}
116#endif
117
 
 
 
 
118	while (count > 0) {
119		unsigned long remaining;
 
120
121		sz = size_inside_page(p, count);
122
123		if (!range_is_allowed(p >> PAGE_SHIFT, count))
124			return -EPERM;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
126		/*
127		 * On ia64 if a page has been mapped somewhere as uncached, then
128		 * it must also be accessed uncached by the kernel or data
129		 * corruption may occur.
130		 */
131		ptr = xlate_dev_mem_ptr(p);
132		if (!ptr)
133			return -EFAULT;
134
135		remaining = copy_to_user(buf, ptr, sz);
136		unxlate_dev_mem_ptr(p, ptr);
137		if (remaining)
138			return -EFAULT;
139
140		buf += sz;
141		p += sz;
142		count -= sz;
143		read += sz;
 
 
144	}
 
145
146	*ppos += read;
147	return read;
 
 
 
 
148}
149
150static ssize_t write_mem(struct file *file, const char __user *buf,
151			 size_t count, loff_t *ppos)
152{
153	unsigned long p = *ppos;
154	ssize_t written, sz;
155	unsigned long copied;
156	void *ptr;
157
 
 
 
158	if (!valid_phys_addr_range(p, count))
159		return -EFAULT;
160
161	written = 0;
162
163#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
164	/* we don't have page 0 mapped on sparc and m68k.. */
165	if (p < PAGE_SIZE) {
166		sz = size_inside_page(p, count);
167		/* Hmm. Do something? */
168		buf += sz;
169		p += sz;
170		count -= sz;
171		written += sz;
172	}
173#endif
174
175	while (count > 0) {
 
 
176		sz = size_inside_page(p, count);
177
178		if (!range_is_allowed(p >> PAGE_SHIFT, sz))
 
179			return -EPERM;
180
181		/*
182		 * On ia64 if a page has been mapped somewhere as uncached, then
183		 * it must also be accessed uncached by the kernel or data
184		 * corruption may occur.
185		 */
186		ptr = xlate_dev_mem_ptr(p);
187		if (!ptr) {
188			if (written)
189				break;
190			return -EFAULT;
191		}
 
 
192
193		copied = copy_from_user(ptr, buf, sz);
194		unxlate_dev_mem_ptr(p, ptr);
195		if (copied) {
196			written += sz - copied;
197			if (written)
198				break;
199			return -EFAULT;
 
200		}
201
202		buf += sz;
203		p += sz;
204		count -= sz;
205		written += sz;
 
 
206	}
207
208	*ppos += written;
209	return written;
210}
211
212int __weak phys_mem_access_prot_allowed(struct file *file,
213	unsigned long pfn, unsigned long size, pgprot_t *vma_prot)
214{
215	return 1;
216}
217
218#ifndef __HAVE_PHYS_MEM_ACCESS_PROT
219
220/*
221 * Architectures vary in how they handle caching for addresses
222 * outside of main memory.
223 *
224 */
225#ifdef pgprot_noncached
226static int uncached_access(struct file *file, unsigned long addr)
227{
228#if defined(CONFIG_IA64)
229	/*
230	 * On ia64, we ignore O_DSYNC because we cannot tolerate memory
231	 * attribute aliases.
232	 */
233	return !(efi_mem_attributes(addr) & EFI_MEMORY_WB);
234#elif defined(CONFIG_MIPS)
235	{
236		extern int __uncached_access(struct file *file,
237					     unsigned long addr);
238
239		return __uncached_access(file, addr);
240	}
241#else
242	/*
243	 * Accessing memory above the top the kernel knows about or through a
244	 * file pointer
245	 * that was marked O_DSYNC will be done non-cached.
246	 */
247	if (file->f_flags & O_DSYNC)
248		return 1;
249	return addr >= __pa(high_memory);
250#endif
251}
252#endif
253
254static pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
255				     unsigned long size, pgprot_t vma_prot)
256{
257#ifdef pgprot_noncached
258	unsigned long offset = pfn << PAGE_SHIFT;
259
260	if (uncached_access(file, offset))
261		return pgprot_noncached(vma_prot);
262#endif
263	return vma_prot;
264}
265#endif
266
267#ifndef CONFIG_MMU
268static unsigned long get_unmapped_area_mem(struct file *file,
269					   unsigned long addr,
270					   unsigned long len,
271					   unsigned long pgoff,
272					   unsigned long flags)
273{
274	if (!valid_mmap_phys_addr_range(pgoff, len))
275		return (unsigned long) -EINVAL;
276	return pgoff << PAGE_SHIFT;
277}
278
 
 
 
 
 
 
 
 
 
 
 
 
279/* can't do an in-place private mapping if there's no MMU */
280static inline int private_mapping_ok(struct vm_area_struct *vma)
281{
282	return vma->vm_flags & VM_MAYSHARE;
283}
284#else
285#define get_unmapped_area_mem	NULL
286
287static inline int private_mapping_ok(struct vm_area_struct *vma)
288{
289	return 1;
290}
291#endif
292
293static const struct vm_operations_struct mmap_mem_ops = {
294#ifdef CONFIG_HAVE_IOREMAP_PROT
295	.access = generic_access_phys
296#endif
297};
298
299static int mmap_mem(struct file *file, struct vm_area_struct *vma)
300{
301	size_t size = vma->vm_end - vma->vm_start;
 
 
 
 
 
 
 
 
 
302
303	if (!valid_mmap_phys_addr_range(vma->vm_pgoff, size))
304		return -EINVAL;
305
306	if (!private_mapping_ok(vma))
307		return -ENOSYS;
308
309	if (!range_is_allowed(vma->vm_pgoff, size))
310		return -EPERM;
311
312	if (!phys_mem_access_prot_allowed(file, vma->vm_pgoff, size,
313						&vma->vm_page_prot))
314		return -EINVAL;
315
316	vma->vm_page_prot = phys_mem_access_prot(file, vma->vm_pgoff,
317						 size,
318						 vma->vm_page_prot);
319
320	vma->vm_ops = &mmap_mem_ops;
321
322	/* Remap-pfn-range will mark the range VM_IO and VM_RESERVED */
323	if (remap_pfn_range(vma,
324			    vma->vm_start,
325			    vma->vm_pgoff,
326			    size,
327			    vma->vm_page_prot)) {
328		return -EAGAIN;
329	}
330	return 0;
331}
332
333#ifdef CONFIG_DEVKMEM
334static int mmap_kmem(struct file *file, struct vm_area_struct *vma)
335{
336	unsigned long pfn;
337
338	/* Turn a kernel-virtual address into a physical page frame */
339	pfn = __pa((u64)vma->vm_pgoff << PAGE_SHIFT) >> PAGE_SHIFT;
340
341	/*
342	 * RED-PEN: on some architectures there is more mapped memory than
343	 * available in mem_map which pfn_valid checks for. Perhaps should add a
344	 * new macro here.
345	 *
346	 * RED-PEN: vmalloc is not supported right now.
347	 */
348	if (!pfn_valid(pfn))
349		return -EIO;
350
351	vma->vm_pgoff = pfn;
352	return mmap_mem(file, vma);
353}
354#endif
355
356#ifdef CONFIG_CRASH_DUMP
357/*
358 * Read memory corresponding to the old kernel.
359 */
360static ssize_t read_oldmem(struct file *file, char __user *buf,
361				size_t count, loff_t *ppos)
362{
363	unsigned long pfn, offset;
364	size_t read = 0, csize;
365	int rc = 0;
366
367	while (count) {
368		pfn = *ppos / PAGE_SIZE;
369		if (pfn > saved_max_pfn)
370			return read;
371
372		offset = (unsigned long)(*ppos % PAGE_SIZE);
373		if (count > PAGE_SIZE - offset)
374			csize = PAGE_SIZE - offset;
375		else
376			csize = count;
377
378		rc = copy_oldmem_page(pfn, buf, csize, offset, 1);
379		if (rc < 0)
380			return rc;
381		buf += csize;
382		*ppos += csize;
383		read += csize;
384		count -= csize;
385	}
386	return read;
387}
388#endif
389
390#ifdef CONFIG_DEVKMEM
391/*
392 * This function reads the *virtual* memory as seen by the kernel.
393 */
394static ssize_t read_kmem(struct file *file, char __user *buf,
395			 size_t count, loff_t *ppos)
396{
397	unsigned long p = *ppos;
398	ssize_t low_count, read, sz;
399	char * kbuf; /* k-addr because vread() takes vmlist_lock rwlock */
400	int err = 0;
401
402	read = 0;
403	if (p < (unsigned long) high_memory) {
404		low_count = count;
405		if (count > (unsigned long)high_memory - p)
406			low_count = (unsigned long)high_memory - p;
407
408#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
409		/* we don't have page 0 mapped on sparc and m68k.. */
410		if (p < PAGE_SIZE && low_count > 0) {
411			sz = size_inside_page(p, low_count);
412			if (clear_user(buf, sz))
413				return -EFAULT;
414			buf += sz;
415			p += sz;
416			read += sz;
417			low_count -= sz;
418			count -= sz;
419		}
420#endif
421		while (low_count > 0) {
422			sz = size_inside_page(p, low_count);
423
424			/*
425			 * On ia64 if a page has been mapped somewhere as
426			 * uncached, then it must also be accessed uncached
427			 * by the kernel or data corruption may occur
428			 */
429			kbuf = xlate_dev_kmem_ptr((char *)p);
 
 
430
431			if (copy_to_user(buf, kbuf, sz))
432				return -EFAULT;
433			buf += sz;
434			p += sz;
435			read += sz;
436			low_count -= sz;
437			count -= sz;
 
 
 
 
438		}
439	}
440
441	if (count > 0) {
442		kbuf = (char *)__get_free_page(GFP_KERNEL);
443		if (!kbuf)
444			return -ENOMEM;
445		while (count > 0) {
446			sz = size_inside_page(p, count);
447			if (!is_vmalloc_or_module_addr((void *)p)) {
448				err = -ENXIO;
449				break;
450			}
451			sz = vread(kbuf, (char *)p, sz);
452			if (!sz)
453				break;
454			if (copy_to_user(buf, kbuf, sz)) {
455				err = -EFAULT;
456				break;
457			}
458			count -= sz;
459			buf += sz;
460			read += sz;
461			p += sz;
 
 
462		}
463		free_page((unsigned long)kbuf);
464	}
465	*ppos = p;
466	return read ? read : err;
467}
468
469
470static ssize_t do_write_kmem(unsigned long p, const char __user *buf,
471				size_t count, loff_t *ppos)
472{
473	ssize_t written, sz;
474	unsigned long copied;
475
476	written = 0;
477#ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
478	/* we don't have page 0 mapped on sparc and m68k.. */
479	if (p < PAGE_SIZE) {
480		sz = size_inside_page(p, count);
481		/* Hmm. Do something? */
482		buf += sz;
483		p += sz;
484		count -= sz;
485		written += sz;
486	}
487#endif
488
489	while (count > 0) {
490		char *ptr;
491
492		sz = size_inside_page(p, count);
493
494		/*
495		 * On ia64 if a page has been mapped somewhere as uncached, then
496		 * it must also be accessed uncached by the kernel or data
497		 * corruption may occur.
498		 */
499		ptr = xlate_dev_kmem_ptr((char *)p);
 
 
500
501		copied = copy_from_user(ptr, buf, sz);
502		if (copied) {
503			written += sz - copied;
504			if (written)
505				break;
506			return -EFAULT;
507		}
508		buf += sz;
509		p += sz;
510		count -= sz;
511		written += sz;
 
 
512	}
513
514	*ppos += written;
515	return written;
516}
517
518/*
519 * This function writes to the *virtual* memory as seen by the kernel.
520 */
521static ssize_t write_kmem(struct file *file, const char __user *buf,
522			  size_t count, loff_t *ppos)
523{
524	unsigned long p = *ppos;
525	ssize_t wrote = 0;
526	ssize_t virtr = 0;
527	char * kbuf; /* k-addr because vwrite() takes vmlist_lock rwlock */
528	int err = 0;
529
530	if (p < (unsigned long) high_memory) {
531		unsigned long to_write = min_t(unsigned long, count,
532					       (unsigned long)high_memory - p);
533		wrote = do_write_kmem(p, buf, to_write, ppos);
534		if (wrote != to_write)
535			return wrote;
536		p += wrote;
537		buf += wrote;
538		count -= wrote;
539	}
540
541	if (count > 0) {
542		kbuf = (char *)__get_free_page(GFP_KERNEL);
543		if (!kbuf)
544			return wrote ? wrote : -ENOMEM;
545		while (count > 0) {
546			unsigned long sz = size_inside_page(p, count);
547			unsigned long n;
548
549			if (!is_vmalloc_or_module_addr((void *)p)) {
550				err = -ENXIO;
551				break;
552			}
553			n = copy_from_user(kbuf, buf, sz);
554			if (n) {
555				err = -EFAULT;
556				break;
557			}
558			vwrite(kbuf, (char *)p, sz);
559			count -= sz;
560			buf += sz;
561			virtr += sz;
562			p += sz;
 
 
563		}
564		free_page((unsigned long)kbuf);
565	}
566
567	*ppos = p;
568	return virtr + wrote ? : err;
569}
570#endif
571
572#ifdef CONFIG_DEVPORT
573static ssize_t read_port(struct file *file, char __user *buf,
574			 size_t count, loff_t *ppos)
575{
576	unsigned long i = *ppos;
577	char __user *tmp = buf;
578
579	if (!access_ok(VERIFY_WRITE, buf, count))
580		return -EFAULT;
581	while (count-- > 0 && i < 65536) {
582		if (__put_user(inb(i), tmp) < 0)
583			return -EFAULT;
584		i++;
585		tmp++;
586	}
587	*ppos = i;
588	return tmp-buf;
589}
590
591static ssize_t write_port(struct file *file, const char __user *buf,
592			  size_t count, loff_t *ppos)
593{
594	unsigned long i = *ppos;
595	const char __user * tmp = buf;
596
597	if (!access_ok(VERIFY_READ, buf, count))
598		return -EFAULT;
599	while (count-- > 0 && i < 65536) {
600		char c;
 
601		if (__get_user(c, tmp)) {
602			if (tmp > buf)
603				break;
604			return -EFAULT;
605		}
606		outb(c, i);
607		i++;
608		tmp++;
609	}
610	*ppos = i;
611	return tmp-buf;
612}
613#endif
614
615static ssize_t read_null(struct file *file, char __user *buf,
616			 size_t count, loff_t *ppos)
617{
618	return 0;
619}
620
621static ssize_t write_null(struct file *file, const char __user *buf,
622			  size_t count, loff_t *ppos)
623{
624	return count;
625}
626
 
 
 
 
 
 
 
 
 
 
 
 
627static int pipe_to_null(struct pipe_inode_info *info, struct pipe_buffer *buf,
628			struct splice_desc *sd)
629{
630	return sd->len;
631}
632
633static ssize_t splice_write_null(struct pipe_inode_info *pipe, struct file *out,
634				 loff_t *ppos, size_t len, unsigned int flags)
635{
636	return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_null);
637}
638
639static ssize_t read_zero(struct file *file, char __user *buf,
640			 size_t count, loff_t *ppos)
641{
642	size_t written;
643
644	if (!count)
645		return 0;
646
647	if (!access_ok(VERIFY_WRITE, buf, count))
648		return -EFAULT;
649
650	written = 0;
651	while (count) {
652		unsigned long unwritten;
653		size_t chunk = count;
654
655		if (chunk > PAGE_SIZE)
656			chunk = PAGE_SIZE;	/* Just for latency reasons */
657		unwritten = __clear_user(buf, chunk);
658		written += chunk - unwritten;
659		if (unwritten)
660			break;
661		if (signal_pending(current))
662			return written ? written : -ERESTARTSYS;
663		buf += chunk;
664		count -= chunk;
665		cond_resched();
666	}
667	return written ? written : -EFAULT;
668}
669
670static int mmap_zero(struct file *file, struct vm_area_struct *vma)
671{
672#ifndef CONFIG_MMU
673	return -ENOSYS;
674#endif
675	if (vma->vm_flags & VM_SHARED)
676		return shmem_zero_setup(vma);
 
677	return 0;
678}
679
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
680static ssize_t write_full(struct file *file, const char __user *buf,
681			  size_t count, loff_t *ppos)
682{
683	return -ENOSPC;
684}
685
686/*
687 * Special lseek() function for /dev/null and /dev/zero.  Most notably, you
688 * can fopen() both devices with "a" now.  This was previously impossible.
689 * -- SRB.
690 */
691static loff_t null_lseek(struct file *file, loff_t offset, int orig)
692{
693	return file->f_pos = 0;
694}
695
696/*
697 * The memory devices use the full 32/64 bits of the offset, and so we cannot
698 * check against negative addresses: they are ok. The return value is weird,
699 * though, in that case (0).
700 *
701 * also note that seeking relative to the "end of file" isn't supported:
702 * it has no meaning, so it returns -EINVAL.
703 */
704static loff_t memory_lseek(struct file *file, loff_t offset, int orig)
705{
706	loff_t ret;
707
708	mutex_lock(&file->f_path.dentry->d_inode->i_mutex);
709	switch (orig) {
710	case SEEK_CUR:
711		offset += file->f_pos;
 
712	case SEEK_SET:
713		/* to avoid userland mistaking f_pos=-9 as -EBADF=-9 */
714		if ((unsigned long long)offset >= ~0xFFFULL) {
715			ret = -EOVERFLOW;
716			break;
717		}
718		file->f_pos = offset;
719		ret = file->f_pos;
720		force_successful_syscall_return();
721		break;
722	default:
723		ret = -EINVAL;
724	}
725	mutex_unlock(&file->f_path.dentry->d_inode->i_mutex);
726	return ret;
727}
728
729static int open_port(struct inode * inode, struct file * filp)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
730{
731	return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
732}
733
734#define zero_lseek	null_lseek
735#define full_lseek      null_lseek
736#define write_zero	write_null
737#define read_full       read_zero
738#define open_mem	open_port
739#define open_kmem	open_mem
740#define open_oldmem	open_mem
741
742static const struct file_operations mem_fops = {
743	.llseek		= memory_lseek,
744	.read		= read_mem,
745	.write		= write_mem,
746	.mmap		= mmap_mem,
747	.open		= open_mem,
 
748	.get_unmapped_area = get_unmapped_area_mem,
 
 
749};
750
751#ifdef CONFIG_DEVKMEM
752static const struct file_operations kmem_fops = {
753	.llseek		= memory_lseek,
754	.read		= read_kmem,
755	.write		= write_kmem,
756	.mmap		= mmap_kmem,
757	.open		= open_kmem,
 
758	.get_unmapped_area = get_unmapped_area_mem,
 
 
759};
760#endif
761
762static const struct file_operations null_fops = {
763	.llseek		= null_lseek,
764	.read		= read_null,
765	.write		= write_null,
 
 
766	.splice_write	= splice_write_null,
767};
768
769#ifdef CONFIG_DEVPORT
770static const struct file_operations port_fops = {
771	.llseek		= memory_lseek,
772	.read		= read_port,
773	.write		= write_port,
774	.open		= open_port,
775};
776#endif
777
778static const struct file_operations zero_fops = {
779	.llseek		= zero_lseek,
780	.read		= read_zero,
781	.write		= write_zero,
 
 
782	.mmap		= mmap_zero,
783};
784
785/*
786 * capabilities for /dev/zero
787 * - permits private mappings, "copies" are taken of the source of zeros
788 * - no writeback happens
789 */
790static struct backing_dev_info zero_bdi = {
791	.name		= "char/mem",
792	.capabilities	= BDI_CAP_MAP_COPY | BDI_CAP_NO_ACCT_AND_WRITEBACK,
793};
794
795static const struct file_operations full_fops = {
796	.llseek		= full_lseek,
797	.read		= read_full,
798	.write		= write_full,
799};
800
801#ifdef CONFIG_CRASH_DUMP
802static const struct file_operations oldmem_fops = {
803	.read	= read_oldmem,
804	.open	= open_oldmem,
805	.llseek = default_llseek,
806};
807#endif
808
809static ssize_t kmsg_writev(struct kiocb *iocb, const struct iovec *iv,
810			   unsigned long count, loff_t pos)
811{
812	char *line, *p;
813	int i;
814	ssize_t ret = -EFAULT;
815	size_t len = iov_length(iv, count);
816
817	line = kmalloc(len + 1, GFP_KERNEL);
818	if (line == NULL)
819		return -ENOMEM;
820
821	/*
822	 * copy all vectors into a single string, to ensure we do
823	 * not interleave our log line with other printk calls
824	 */
825	p = line;
826	for (i = 0; i < count; i++) {
827		if (copy_from_user(p, iv[i].iov_base, iv[i].iov_len))
828			goto out;
829		p += iv[i].iov_len;
830	}
831	p[0] = '\0';
832
833	ret = printk("%s", line);
834	/* printk can add a prefix */
835	if (ret > len)
836		ret = len;
837out:
838	kfree(line);
839	return ret;
840}
841
842static const struct file_operations kmsg_fops = {
843	.aio_write = kmsg_writev,
844	.llseek = noop_llseek,
845};
846
847static const struct memdev {
848	const char *name;
849	mode_t mode;
850	const struct file_operations *fops;
851	struct backing_dev_info *dev_info;
852} devlist[] = {
853	 [1] = { "mem", 0, &mem_fops, &directly_mappable_cdev_bdi },
 
 
854#ifdef CONFIG_DEVKMEM
855	 [2] = { "kmem", 0, &kmem_fops, &directly_mappable_cdev_bdi },
856#endif
857	 [3] = { "null", 0666, &null_fops, NULL },
858#ifdef CONFIG_DEVPORT
859	 [4] = { "port", 0, &port_fops, NULL },
860#endif
861	 [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 },
865	[11] = { "kmsg", 0, &kmsg_fops, NULL },
866#ifdef CONFIG_CRASH_DUMP
867	[12] = { "oldmem", 0, &oldmem_fops, NULL },
868#endif
869};
870
871static int memory_open(struct inode *inode, struct file *filp)
872{
873	int minor;
874	const struct memdev *dev;
875
876	minor = iminor(inode);
877	if (minor >= ARRAY_SIZE(devlist))
878		return -ENXIO;
879
880	dev = &devlist[minor];
881	if (!dev->fops)
882		return -ENXIO;
883
884	filp->f_op = dev->fops;
885	if (dev->dev_info)
886		filp->f_mapping->backing_dev_info = dev->dev_info;
887
888	/* Is /dev/mem or /dev/kmem ? */
889	if (dev->dev_info == &directly_mappable_cdev_bdi)
890		filp->f_mode |= FMODE_UNSIGNED_OFFSET;
891
892	if (dev->fops->open)
893		return dev->fops->open(inode, filp);
894
895	return 0;
896}
897
898static const struct file_operations memory_fops = {
899	.open = memory_open,
900	.llseek = noop_llseek,
901};
902
903static char *mem_devnode(struct device *dev, mode_t *mode)
904{
905	if (mode && devlist[MINOR(dev->devt)].mode)
906		*mode = devlist[MINOR(dev->devt)].mode;
907	return NULL;
908}
909
910static struct class *mem_class;
911
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
912static int __init chr_dev_init(void)
913{
914	int minor;
915	int err;
916
917	err = bdi_init(&zero_bdi);
918	if (err)
919		return err;
920
921	if (register_chrdev(MEM_MAJOR, "mem", &memory_fops))
922		printk("unable to get major %d for memory devs\n", MEM_MAJOR);
923
924	mem_class = class_create(THIS_MODULE, "mem");
925	if (IS_ERR(mem_class))
926		return PTR_ERR(mem_class);
927
928	mem_class->devnode = mem_devnode;
929	for (minor = 1; minor < ARRAY_SIZE(devlist); minor++) {
930		if (!devlist[minor].name)
931			continue;
 
 
 
 
 
 
 
 
 
932		device_create(mem_class, NULL, MKDEV(MEM_MAJOR, minor),
933			      NULL, devlist[minor].name);
934	}
935
936	return tty_init();
937}
938
939fs_initcall(chr_dev_init);