Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / drivers / char / mem.c
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 mmaping 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/smp_lock.h>
22 #include <linux/ptrace.h>
23 #include <linux/device.h>
24 #include <linux/highmem.h>
25 #include <linux/crash_dump.h>
26 #include <linux/backing-dev.h>
27 #include <linux/bootmem.h>
28 #include <linux/pipe_fs_i.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
37 static inline int range_is_allowed(unsigned long from, unsigned long to)
38 {
39         unsigned long cursor;
40
41         cursor = from >> PAGE_SHIFT;
42         while ((cursor << PAGE_SHIFT) < to) {
43                 if (!devmem_is_allowed(cursor)) {
44                         printk ("Program %s tried to read /dev/mem between %lx->%lx.\n",
45                                         current->comm, from, to);
46                         return 0;
47                 }
48                 cursor++;
49         }
50         return 1;
51 }
52
53 /*
54  * Architectures vary in how they handle caching for addresses
55  * outside of main memory.
56  *
57  */
58 static inline int uncached_access(struct file *file, unsigned long addr)
59 {
60 #if defined(__i386__)
61         /*
62          * On the PPro and successors, the MTRRs are used to set
63          * memory types for physical addresses outside main memory,
64          * so blindly setting PCD or PWT on those pages is wrong.
65          * For Pentiums and earlier, the surround logic should disable
66          * caching for the high addresses through the KEN pin, but
67          * we maintain the tradition of paranoia in this code.
68          */
69         if (file->f_flags & O_SYNC)
70                 return 1;
71         return !( test_bit(X86_FEATURE_MTRR, boot_cpu_data.x86_capability) ||
72                   test_bit(X86_FEATURE_K6_MTRR, boot_cpu_data.x86_capability) ||
73                   test_bit(X86_FEATURE_CYRIX_ARR, boot_cpu_data.x86_capability) ||
74                   test_bit(X86_FEATURE_CENTAUR_MCR, boot_cpu_data.x86_capability) )
75           && addr >= __pa(high_memory);
76 #elif defined(__x86_64__)
77         /* 
78          * This is broken because it can generate memory type aliases,
79          * which can cause cache corruptions
80          * But it is only available for root and we have to be bug-to-bug
81          * compatible with i386.
82          */
83         if (file->f_flags & O_SYNC)
84                 return 1;
85         /* same behaviour as i386. PAT always set to cached and MTRRs control the
86            caching behaviour. 
87            Hopefully a full PAT implementation will fix that soon. */      
88         return 0;
89 #elif defined(CONFIG_IA64)
90         /*
91          * On ia64, we ignore O_SYNC because we cannot tolerate memory attribute aliases.
92          */
93         return !(efi_mem_attributes(addr) & EFI_MEMORY_WB);
94 #else
95         /*
96          * Accessing memory above the top the kernel knows about or through a file pointer
97          * that was marked O_SYNC will be done non-cached.
98          */
99         if (file->f_flags & O_SYNC)
100                 return 1;
101         return addr >= __pa(high_memory);
102 #endif
103 }
104
105 #ifndef ARCH_HAS_VALID_PHYS_ADDR_RANGE
106 static inline int valid_phys_addr_range(unsigned long addr, size_t count)
107 {
108         if (addr + count > __pa(high_memory))
109                 return 0;
110
111         return 1;
112 }
113
114 static inline int valid_mmap_phys_addr_range(unsigned long pfn, size_t size)
115 {
116         return 1;
117 }
118 #endif
119
120 #ifndef ARCH_HAS_DEV_MEM
121 /*
122  * This funcion reads the *physical* memory. The f_pos points directly to the 
123  * memory location. 
124  */
125 static ssize_t read_mem(struct file * file, char __user * buf,
126                         size_t count, loff_t *ppos)
127 {
128         unsigned long p = *ppos;
129         ssize_t read, sz;
130         char *ptr;
131
132         if (!valid_phys_addr_range(p, count))
133                 return -EFAULT;
134         read = 0;
135 #ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
136         /* we don't have page 0 mapped on sparc and m68k.. */
137         if (p < PAGE_SIZE) {
138                 sz = PAGE_SIZE - p;
139                 if (sz > count) 
140                         sz = count; 
141                 if (sz > 0) {
142                         if (clear_user(buf, sz))
143                                 return -EFAULT;
144                         buf += sz; 
145                         p += sz; 
146                         count -= sz; 
147                         read += sz; 
148                 }
149         }
150 #endif
151
152         while (count > 0) {
153                 /*
154                  * Handle first page in case it's not aligned
155                  */
156                 if (-p & (PAGE_SIZE - 1))
157                         sz = -p & (PAGE_SIZE - 1);
158                 else
159                         sz = PAGE_SIZE;
160
161                 sz = min_t(unsigned long, sz, count);
162
163                 /*
164                  * On ia64 if a page has been mapped somewhere as
165                  * uncached, then it must also be accessed uncached
166                  * by the kernel or data corruption may occur
167                  */
168                 ptr = xlate_dev_mem_ptr(p);
169
170                 if (!range_is_allowed(p, p+count))
171                         return -EPERM;
172                 if (copy_to_user(buf, ptr, sz))
173                         return -EFAULT;
174                 buf += sz;
175                 p += sz;
176                 count -= sz;
177                 read += sz;
178         }
179
180         *ppos += read;
181         return read;
182 }
183
184 static 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
192         if (!valid_phys_addr_range(p, count))
193                 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
222                 /*
223                  * On ia64 if a page has been mapped somewhere as
224                  * uncached, then it must also be accessed uncached
225                  * by the kernel or data corruption may occur
226                  */
227                 ptr = xlate_dev_mem_ptr(p);
228
229                 if (!range_is_allowed(ptr, ptr+sz))
230                         return -EPERM;
231                 copied = copy_from_user(ptr, buf, sz);
232                 if (copied) {
233                         written += sz - copied;
234                         if (written)
235                                 break;
236                         return -EFAULT;
237                 }
238                 buf += sz;
239                 p += sz;
240                 count -= sz;
241                 written += sz;
242         }
243
244         *ppos += written;
245         return written;
246 }
247 #endif
248
249 #ifndef __HAVE_PHYS_MEM_ACCESS_PROT
250 static pgprot_t phys_mem_access_prot(struct file *file, unsigned long pfn,
251                                      unsigned long size, pgprot_t vma_prot)
252 {
253 #ifdef pgprot_noncached
254         unsigned long offset = pfn << PAGE_SHIFT;
255
256         if (uncached_access(file, offset))
257                 return pgprot_noncached(vma_prot);
258 #endif
259         return vma_prot;
260 }
261 #endif
262
263 static int mmap_mem(struct file * file, struct vm_area_struct * vma)
264 {
265         size_t size = vma->vm_end - vma->vm_start;
266
267         if (!valid_mmap_phys_addr_range(vma->vm_pgoff, size))
268                 return -EINVAL;
269
270         vma->vm_page_prot = phys_mem_access_prot(file, vma->vm_pgoff,
271                                                  size,
272                                                  vma->vm_page_prot);
273
274         /* Remap-pfn-range will mark the range VM_IO and VM_RESERVED */
275         if (remap_pfn_range(vma,
276                             vma->vm_start,
277                             vma->vm_pgoff,
278                             size,
279                             vma->vm_page_prot))
280                 return -EAGAIN;
281         return 0;
282 }
283
284 static int mmap_kmem(struct file * file, struct vm_area_struct * vma)
285 {
286         unsigned long pfn;
287
288         /* Turn a kernel-virtual address into a physical page frame */
289         pfn = __pa((u64)vma->vm_pgoff << PAGE_SHIFT) >> PAGE_SHIFT;
290
291         /*
292          * RED-PEN: on some architectures there is more mapped memory
293          * than available in mem_map which pfn_valid checks
294          * for. Perhaps should add a new macro here.
295          *
296          * RED-PEN: vmalloc is not supported right now.
297          */
298         if (!pfn_valid(pfn))
299                 return -EIO;
300
301         vma->vm_pgoff = pfn;
302         return mmap_mem(file, vma);
303 }
304
305 #ifdef CONFIG_CRASH_DUMP
306 /*
307  * Read memory corresponding to the old kernel.
308  */
309 static ssize_t read_oldmem(struct file *file, char __user *buf,
310                                 size_t count, loff_t *ppos)
311 {
312         unsigned long pfn, offset;
313         size_t read = 0, csize;
314         int rc = 0;
315
316         while (count) {
317                 pfn = *ppos / PAGE_SIZE;
318                 if (pfn > saved_max_pfn)
319                         return read;
320
321                 offset = (unsigned long)(*ppos % PAGE_SIZE);
322                 if (count > PAGE_SIZE - offset)
323                         csize = PAGE_SIZE - offset;
324                 else
325                         csize = count;
326
327                 rc = copy_oldmem_page(pfn, buf, csize, offset, 1);
328                 if (rc < 0)
329                         return rc;
330                 buf += csize;
331                 *ppos += csize;
332                 read += csize;
333                 count -= csize;
334         }
335         return read;
336 }
337 #endif
338
339 extern long vread(char *buf, char *addr, unsigned long count);
340 extern long vwrite(char *buf, char *addr, unsigned long count);
341
342 /*
343  * This function reads the *virtual* memory as seen by the kernel.
344  */
345 static ssize_t read_kmem(struct file *file, char __user *buf, 
346                          size_t count, loff_t *ppos)
347 {
348         unsigned long p = *ppos;
349         ssize_t low_count, read, sz;
350         char * kbuf; /* k-addr because vread() takes vmlist_lock rwlock */
351
352         return -EPERM;
353
354         read = 0;
355         if (p < (unsigned long) high_memory) {
356                 low_count = count;
357                 if (count > (unsigned long) high_memory - p)
358                         low_count = (unsigned long) high_memory - p;
359
360 #ifdef __ARCH_HAS_NO_PAGE_ZERO_MAPPED
361                 /* we don't have page 0 mapped on sparc and m68k.. */
362                 if (p < PAGE_SIZE && low_count > 0) {
363                         size_t tmp = PAGE_SIZE - p;
364                         if (tmp > low_count) tmp = low_count;
365                         if (clear_user(buf, tmp))
366                                 return -EFAULT;
367                         buf += tmp;
368                         p += tmp;
369                         read += tmp;
370                         low_count -= tmp;
371                         count -= tmp;
372                 }
373 #endif
374                 while (low_count > 0) {
375                         /*
376                          * Handle first page in case it's not aligned
377                          */
378                         if (-p & (PAGE_SIZE - 1))
379                                 sz = -p & (PAGE_SIZE - 1);
380                         else
381                                 sz = PAGE_SIZE;
382
383                         sz = min_t(unsigned long, sz, low_count);
384
385                         /*
386                          * On ia64 if a page has been mapped somewhere as
387                          * uncached, then it must also be accessed uncached
388                          * by the kernel or data corruption may occur
389                          */
390                         kbuf = xlate_dev_kmem_ptr((char *)p);
391
392                         if (copy_to_user(buf, kbuf, sz))
393                                 return -EFAULT;
394                         buf += sz;
395                         p += sz;
396                         read += sz;
397                         low_count -= sz;
398                         count -= sz;
399                 }
400         }
401
402         if (count > 0) {
403                 kbuf = (char *)__get_free_page(GFP_KERNEL);
404                 if (!kbuf)
405                         return -ENOMEM;
406                 while (count > 0) {
407                         int len = count;
408
409                         if (len > PAGE_SIZE)
410                                 len = PAGE_SIZE;
411                         len = vread(kbuf, (char *)p, len);
412                         if (!len)
413                                 break;
414                         if (copy_to_user(buf, kbuf, len)) {
415                                 free_page((unsigned long)kbuf);
416                                 return -EFAULT;
417                         }
418                         count -= len;
419                         buf += len;
420                         read += len;
421                         p += len;
422                 }
423                 free_page((unsigned long)kbuf);
424         }
425         *ppos = p;
426         return read;
427 }
428
429
430 #if defined(CONFIG_ISA) || !defined(__mc68000__)
431 static ssize_t read_port(struct file * file, char __user * buf,
432                          size_t count, loff_t *ppos)
433 {
434         unsigned long i = *ppos;
435         char __user *tmp = buf;
436
437         if (!access_ok(VERIFY_WRITE, buf, count))
438                 return -EFAULT; 
439         while (count-- > 0 && i < 65536) {
440                 if (__put_user(inb(i),tmp) < 0) 
441                         return -EFAULT;  
442                 i++;
443                 tmp++;
444         }
445         *ppos = i;
446         return tmp-buf;
447 }
448
449 static ssize_t write_port(struct file * file, const char __user * buf,
450                           size_t count, loff_t *ppos)
451 {
452         unsigned long i = *ppos;
453         const char __user * tmp = buf;
454
455         if (!access_ok(VERIFY_READ,buf,count))
456                 return -EFAULT;
457         while (count-- > 0 && i < 65536) {
458                 char c;
459                 if (__get_user(c, tmp)) {
460                         if (tmp > buf)
461                                 break;
462                         return -EFAULT; 
463                 }
464                 outb(c,i);
465                 i++;
466                 tmp++;
467         }
468         *ppos = i;
469         return tmp-buf;
470 }
471 #endif
472
473 static ssize_t read_null(struct file * file, char __user * buf,
474                          size_t count, loff_t *ppos)
475 {
476         return 0;
477 }
478
479 static ssize_t write_null(struct file * file, const char __user * buf,
480                           size_t count, loff_t *ppos)
481 {
482         return count;
483 }
484
485 static int pipe_to_null(struct pipe_inode_info *info, struct pipe_buffer *buf,
486                         struct splice_desc *sd)
487 {
488         return sd->len;
489 }
490
491 static ssize_t splice_write_null(struct pipe_inode_info *pipe,struct file *out,
492                                  loff_t *ppos, size_t len, unsigned int flags)
493 {
494         return splice_from_pipe(pipe, out, ppos, len, flags, pipe_to_null);
495 }
496
497 #ifdef CONFIG_MMU
498 /*
499  * For fun, we are using the MMU for this.
500  */
501 static inline size_t read_zero_pagealigned(char __user * buf, size_t size)
502 {
503         struct mm_struct *mm;
504         struct vm_area_struct * vma;
505         unsigned long addr=(unsigned long)buf;
506
507         mm = current->mm;
508         /* Oops, this was forgotten before. -ben */
509         down_read(&mm->mmap_sem);
510
511         /* For private mappings, just map in zero pages. */
512         for (vma = find_vma(mm, addr); vma; vma = vma->vm_next) {
513                 unsigned long count;
514
515                 if (vma->vm_start > addr || (vma->vm_flags & VM_WRITE) == 0)
516                         goto out_up;
517                 if (vma->vm_flags & (VM_SHARED | VM_HUGETLB))
518                         break;
519                 count = vma->vm_end - addr;
520                 if (count > size)
521                         count = size;
522
523                 zap_page_range(vma, addr, count, NULL);
524                 zeromap_page_range(vma, addr, count, PAGE_COPY);
525
526                 size -= count;
527                 buf += count;
528                 addr += count;
529                 if (size == 0)
530                         goto out_up;
531         }
532
533         up_read(&mm->mmap_sem);
534         
535         /* The shared case is hard. Let's do the conventional zeroing. */ 
536         do {
537                 unsigned long unwritten = clear_user(buf, PAGE_SIZE);
538                 if (unwritten)
539                         return size + unwritten - PAGE_SIZE;
540                 cond_resched();
541                 buf += PAGE_SIZE;
542                 size -= PAGE_SIZE;
543         } while (size);
544
545         return size;
546 out_up:
547         up_read(&mm->mmap_sem);
548         return size;
549 }
550
551 static ssize_t read_zero(struct file * file, char __user * buf, 
552                          size_t count, loff_t *ppos)
553 {
554         unsigned long left, unwritten, written = 0;
555
556         if (!count)
557                 return 0;
558
559         if (!access_ok(VERIFY_WRITE, buf, count))
560                 return -EFAULT;
561
562         left = count;
563
564         /* do we want to be clever? Arbitrary cut-off */
565         if (count >= PAGE_SIZE*4) {
566                 unsigned long partial;
567
568                 /* How much left of the page? */
569                 partial = (PAGE_SIZE-1) & -(unsigned long) buf;
570                 unwritten = clear_user(buf, partial);
571                 written = partial - unwritten;
572                 if (unwritten)
573                         goto out;
574                 left -= partial;
575                 buf += partial;
576                 unwritten = read_zero_pagealigned(buf, left & PAGE_MASK);
577                 written += (left & PAGE_MASK) - unwritten;
578                 if (unwritten)
579                         goto out;
580                 buf += left & PAGE_MASK;
581                 left &= ~PAGE_MASK;
582         }
583         unwritten = clear_user(buf, left);
584         written += left - unwritten;
585 out:
586         return written ? written : -EFAULT;
587 }
588
589 static int mmap_zero(struct file * file, struct vm_area_struct * vma)
590 {
591         if (vma->vm_flags & VM_SHARED)
592                 return shmem_zero_setup(vma);
593         if (zeromap_page_range(vma, vma->vm_start, vma->vm_end - vma->vm_start, vma->vm_page_prot))
594                 return -EAGAIN;
595         return 0;
596 }
597 #else /* CONFIG_MMU */
598 static ssize_t read_zero(struct file * file, char * buf, 
599                          size_t count, loff_t *ppos)
600 {
601         size_t todo = count;
602
603         while (todo) {
604                 size_t chunk = todo;
605
606                 if (chunk > 4096)
607                         chunk = 4096;   /* Just for latency reasons */
608                 if (clear_user(buf, chunk))
609                         return -EFAULT;
610                 buf += chunk;
611                 todo -= chunk;
612                 cond_resched();
613         }
614         return count;
615 }
616
617 static int mmap_zero(struct file * file, struct vm_area_struct * vma)
618 {
619         return -ENOSYS;
620 }
621 #endif /* CONFIG_MMU */
622
623 static ssize_t write_full(struct file * file, const char __user * buf,
624                           size_t count, loff_t *ppos)
625 {
626         return -ENOSPC;
627 }
628
629 /*
630  * Special lseek() function for /dev/null and /dev/zero.  Most notably, you
631  * can fopen() both devices with "a" now.  This was previously impossible.
632  * -- SRB.
633  */
634
635 static loff_t null_lseek(struct file * file, loff_t offset, int orig)
636 {
637         return file->f_pos = 0;
638 }
639
640 /*
641  * The memory devices use the full 32/64 bits of the offset, and so we cannot
642  * check against negative addresses: they are ok. The return value is weird,
643  * though, in that case (0).
644  *
645  * also note that seeking relative to the "end of file" isn't supported:
646  * it has no meaning, so it returns -EINVAL.
647  */
648 static loff_t memory_lseek(struct file * file, loff_t offset, int orig)
649 {
650         loff_t ret;
651
652         mutex_lock(&file->f_dentry->d_inode->i_mutex);
653         switch (orig) {
654                 case 0:
655                         file->f_pos = offset;
656                         ret = file->f_pos;
657                         force_successful_syscall_return();
658                         break;
659                 case 1:
660                         file->f_pos += offset;
661                         ret = file->f_pos;
662                         force_successful_syscall_return();
663                         break;
664                 default:
665                         ret = -EINVAL;
666         }
667         mutex_unlock(&file->f_dentry->d_inode->i_mutex);
668         return ret;
669 }
670
671 static int open_port(struct inode * inode, struct file * filp)
672 {
673         return capable(CAP_SYS_RAWIO) ? 0 : -EPERM;
674 }
675
676 #define zero_lseek      null_lseek
677 #define full_lseek      null_lseek
678 #define write_zero      write_null
679 #define read_full       read_zero
680 #define open_mem        open_port
681 #define open_kmem       open_mem
682 #define open_oldmem     open_mem
683
684 #ifndef ARCH_HAS_DEV_MEM
685 static const struct file_operations mem_fops = {
686         .llseek         = memory_lseek,
687         .read           = read_mem,
688         .write          = write_mem,
689         .mmap           = mmap_mem,
690         .open           = open_mem,
691 };
692 #else
693 extern struct file_operations mem_fops;
694 #endif
695
696 static const struct file_operations kmem_fops = {
697         .llseek         = memory_lseek,
698         .read           = read_kmem,
699         .mmap           = mmap_kmem,
700         .open           = open_kmem,
701 };
702
703 static const struct file_operations null_fops = {
704         .llseek         = null_lseek,
705         .read           = read_null,
706         .write          = write_null,
707         .splice_write   = splice_write_null,
708 };
709
710 #if defined(CONFIG_ISA) || !defined(__mc68000__)
711 static const struct file_operations port_fops = {
712         .llseek         = memory_lseek,
713         .read           = read_port,
714         .write          = write_port,
715         .open           = open_port,
716 };
717 #endif
718
719 static const struct file_operations zero_fops = {
720         .llseek         = zero_lseek,
721         .read           = read_zero,
722         .write          = write_zero,
723         .mmap           = mmap_zero,
724 };
725
726 static struct backing_dev_info zero_bdi = {
727         .capabilities   = BDI_CAP_MAP_COPY,
728 };
729
730 static const struct file_operations full_fops = {
731         .llseek         = full_lseek,
732         .read           = read_full,
733         .write          = write_full,
734 };
735
736 #ifdef CONFIG_CRASH_DUMP
737 static const struct file_operations oldmem_fops = {
738         .read   = read_oldmem,
739         .open   = open_oldmem,
740 };
741 #endif
742
743 static ssize_t kmsg_write(struct file * file, const char __user * buf,
744                           size_t count, loff_t *ppos)
745 {
746         char *tmp;
747         ssize_t ret;
748
749         tmp = kmalloc(count + 1, GFP_KERNEL);
750         if (tmp == NULL)
751                 return -ENOMEM;
752         ret = -EFAULT;
753         if (!copy_from_user(tmp, buf, count)) {
754                 tmp[count] = 0;
755                 ret = printk("%s", tmp);
756                 if (ret > count)
757                         /* printk can add a prefix */
758                         ret = count;
759         }
760         kfree(tmp);
761         return ret;
762 }
763
764 static const struct file_operations kmsg_fops = {
765         .write =        kmsg_write,
766 };
767
768 static int memory_open(struct inode * inode, struct file * filp)
769 {
770         switch (iminor(inode)) {
771                 case 1:
772                         filp->f_op = &mem_fops;
773                         break;
774                 case 2:
775                         filp->f_op = &kmem_fops;
776                         break;
777                 case 3:
778                         filp->f_op = &null_fops;
779                         break;
780 #if defined(CONFIG_ISA) || !defined(__mc68000__)
781                 case 4:
782                         filp->f_op = &port_fops;
783                         break;
784 #endif
785                 case 5:
786                         filp->f_mapping->backing_dev_info = &zero_bdi;
787                         filp->f_op = &zero_fops;
788                         break;
789                 case 7:
790                         filp->f_op = &full_fops;
791                         break;
792                 case 8:
793                         filp->f_op = &random_fops;
794                         break;
795                 case 9:
796                         filp->f_op = &urandom_fops;
797                         break;
798                 case 11:
799                         filp->f_op = &kmsg_fops;
800                         break;
801 #ifdef CONFIG_CRASH_DUMP
802                 case 12:
803                         filp->f_op = &oldmem_fops;
804                         break;
805 #endif
806                 default:
807                         return -ENXIO;
808         }
809         if (filp->f_op && filp->f_op->open)
810                 return filp->f_op->open(inode,filp);
811         return 0;
812 }
813
814 static const struct file_operations memory_fops = {
815         .open           = memory_open,  /* just a selector for the real open */
816 };
817
818 static const struct {
819         unsigned int            minor;
820         char                    *name;
821         umode_t                 mode;
822         const struct file_operations    *fops;
823 } devlist[] = { /* list of minor devices */
824         {1, "mem",     S_IRUSR | S_IWUSR | S_IRGRP, &mem_fops},
825         {3, "null",    S_IRUGO | S_IWUGO,           &null_fops},
826 #if defined(CONFIG_ISA) || !defined(__mc68000__)
827         {4, "port",    S_IRUSR | S_IWUSR | S_IRGRP, &port_fops},
828 #endif
829         {5, "zero",    S_IRUGO | S_IWUGO,           &zero_fops},
830         {7, "full",    S_IRUGO | S_IWUGO,           &full_fops},
831         {8, "random",  S_IRUGO | S_IWUSR,           &random_fops},
832         {9, "urandom", S_IRUGO | S_IWUSR,           &urandom_fops},
833         {11,"kmsg",    S_IRUGO | S_IWUSR,           &kmsg_fops},
834 #ifdef CONFIG_CRASH_DUMP
835         {12,"oldmem",    S_IRUSR | S_IWUSR | S_IRGRP, &oldmem_fops},
836 #endif
837 };
838
839 static struct class *mem_class;
840
841 static int __init chr_dev_init(void)
842 {
843         int i;
844
845         if (register_chrdev(MEM_MAJOR,"mem",&memory_fops))
846                 printk("unable to get major %d for memory devs\n", MEM_MAJOR);
847
848         mem_class = class_create(THIS_MODULE, "mem");
849         for (i = 0; i < ARRAY_SIZE(devlist); i++)
850                 class_device_create(mem_class, NULL,
851                                         MKDEV(MEM_MAJOR, devlist[i].minor),
852                                         NULL, devlist[i].name);
853         
854         return 0;
855 }
856
857 fs_initcall(chr_dev_init);