root/drivers/block/ramdisk.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. do_rd_request
  2. rd_init
  3. do_load
  4. rd_load

   1 /*
   2  *  linux/kernel/blk_drv/ramdisk.c
   3  *
   4  *  Written by Theodore Ts'o, 12/2/91
   5  *
   6  * Modifications by Fred N. van Kempen to allow for bootable root
   7  * disks (which are used in LINUX/Pro).  Also some cleanups.  03/03/93
   8  */
   9 
  10 
  11 #include <linux/sched.h>
  12 #include <linux/minix_fs.h>
  13 #include <linux/ext2_fs.h>
  14 #include <linux/fs.h>
  15 #include <linux/kernel.h>
  16 #include <linux/string.h>
  17 #include <asm/system.h>
  18 #include <asm/segment.h>
  19 
  20 #define MAJOR_NR  MEM_MAJOR
  21 #include "blk.h"
  22 
  23 #define RAMDISK_MINOR   1
  24 
  25 extern void wait_for_keypress(void);
  26 
  27 char    *rd_start;
  28 int     rd_length = 0;
  29 static int rd_blocksizes[2] = {0, 0};
  30 
  31 static void do_rd_request(void)
     /* [previous][next][first][last][top][bottom][index][help] */
  32 {
  33         int     len;
  34         char    *addr;
  35 
  36 repeat:
  37         INIT_REQUEST;
  38         addr = rd_start + (CURRENT->sector << 9);
  39         len = CURRENT->current_nr_sectors << 9;
  40 
  41         if ((MINOR(CURRENT->dev) != RAMDISK_MINOR) ||
  42             (addr+len > rd_start+rd_length)) {
  43                 end_request(0);
  44                 goto repeat;
  45         }
  46         if (CURRENT-> cmd == WRITE) {
  47                 (void ) memcpy(addr,
  48                               CURRENT->buffer,
  49                               len);
  50         } else if (CURRENT->cmd == READ) {
  51                 (void) memcpy(CURRENT->buffer, 
  52                               addr,
  53                               len);
  54         } else
  55                 panic("RAMDISK: unknown RAM disk command !\n");
  56         end_request(1);
  57         goto repeat;
  58 }
  59 
  60 static struct file_operations rd_fops = {
  61         NULL,                   /* lseek - default */
  62         block_read,             /* read - general block-dev read */
  63         block_write,            /* write - general block-dev write */
  64         NULL,                   /* readdir - bad */
  65         NULL,                   /* select */
  66         NULL,                   /* ioctl */
  67         NULL,                   /* mmap */
  68         NULL,                   /* no special open code */
  69         NULL,                   /* no special release code */
  70         block_fsync             /* fsync */
  71 };
  72 
  73 /*
  74  * Returns amount of memory which needs to be reserved.
  75  */
  76 long rd_init(long mem_start, int length)
     /* [previous][next][first][last][top][bottom][index][help] */
  77 {
  78         int     i;
  79         char    *cp;
  80 
  81         if (register_blkdev(MEM_MAJOR,"rd",&rd_fops)) {
  82                 printk("RAMDISK: Unable to get major %d.\n", MEM_MAJOR);
  83                 return 0;
  84         }
  85         blk_dev[MEM_MAJOR].request_fn = DEVICE_REQUEST;
  86         rd_start = (char *) mem_start;
  87         rd_length = length;
  88         cp = rd_start;
  89         for (i=0; i < length; i++)
  90                 *cp++ = '\0';
  91 
  92         for(i=0;i<2;i++) rd_blocksizes[i] = 1024;
  93         blksize_size[MAJOR_NR] = rd_blocksizes;
  94 
  95         return(length);
  96 }
  97 
  98 static void do_load(void)
     /* [previous][next][first][last][top][bottom][index][help] */
  99 {
 100         struct buffer_head *bh;
 101         struct super_block {
 102           union
 103           {
 104             char minix [sizeof (struct minix_super_block)];
 105             char ext2 [sizeof (struct ext2_super_block)];
 106           } record;
 107         } sb;
 108         struct minix_super_block *minixsb =
 109                 (struct minix_super_block *)&sb;
 110         struct ext2_super_block *ext2sb =
 111                 (struct ext2_super_block *)&sb;
 112         int             block, tries;
 113         int             i = 1;
 114         int             nblocks;
 115         char            *cp;
 116         
 117         /*
 118          * Check for a super block on the diskette.
 119          * The old-style boot/root diskettes had their RAM image
 120          * starting at block 512 of the boot diskette.  LINUX/Pro
 121          * uses the entire diskette as a file system, so in that
 122          * case, we have to look at block 0.  Be intelligent about
 123          * this, and check both... - FvK
 124          */
 125         for (tries = 0; tries < 1000; tries += 512) {
 126                 block = tries;
 127                 bh = breada(ROOT_DEV,block+1,BLOCK_SIZE, 0,  PAGE_SIZE);
 128                 if (!bh) {
 129                         printk("RAMDISK: I/O error while looking for super block!\n");
 130                         return;
 131                 }
 132 
 133                 /* This is silly- why do we require it to be a MINIX FS? */
 134                 *((struct super_block *) &sb) =
 135                         *((struct super_block *) bh->b_data);
 136                 brelse(bh);
 137 
 138 
 139                 /* Try Minix */
 140                 nblocks = -1;
 141                 if (minixsb->s_magic == MINIX_SUPER_MAGIC ||
 142                     minixsb->s_magic == MINIX_SUPER_MAGIC2) {
 143                         printk("RAMDISK: Minix filesystem found at block %d\n",
 144                                 block);
 145                         nblocks = minixsb->s_nzones << minixsb->s_log_zone_size;
 146                 }
 147 
 148                 /* Try ext2 */
 149                 if (nblocks == -1 && (ext2sb->s_magic ==
 150                         EXT2_PRE_02B_MAGIC ||
 151                         ext2sb->s_magic == EXT2_SUPER_MAGIC))
 152                 {
 153                         printk("RAMDISK: Ext2 filesystem found at block %d\n",
 154                                 block);
 155                         nblocks = ext2sb->s_blocks_count;
 156                 }
 157 
 158                 if (nblocks == -1)
 159                 {
 160                         printk("RAMDISK: trying old-style RAM image.\n");
 161                         continue;
 162                 }
 163 
 164                 if (nblocks > (rd_length >> BLOCK_SIZE_BITS)) {
 165                         printk("RAMDISK: image too big! (%d/%d blocks)\n",
 166                                         nblocks, rd_length >> BLOCK_SIZE_BITS);
 167                         return;
 168                 }
 169                 printk("RAMDISK: Loading %d blocks into RAM disk", nblocks);
 170 
 171                 /* We found an image file system.  Load it into core! */
 172                 cp = rd_start;
 173                 while (nblocks) {
 174                         if (nblocks > 2) 
 175                                 bh = breada(ROOT_DEV, block, BLOCK_SIZE, 0,  PAGE_SIZE);
 176                         else
 177                                 bh = bread(ROOT_DEV, block, BLOCK_SIZE);
 178                         if (!bh) {
 179                                 printk("RAMDISK: I/O error on block %d, aborting!\n", 
 180                                 block);
 181                                 return;
 182                         }
 183                         (void) memcpy(cp, bh->b_data, BLOCK_SIZE);
 184                         brelse(bh);
 185                         if (!(nblocks-- & 15)) printk(".");
 186                         cp += BLOCK_SIZE;
 187                         block++;
 188                         i++;
 189                 }
 190                 printk("\ndone\n");
 191 
 192                 /* We loaded the file system image.  Prepare for mounting it. */
 193                 ROOT_DEV = ((MEM_MAJOR << 8) | RAMDISK_MINOR);
 194                 return;
 195         }
 196 }
 197 
 198 /*
 199  * If the root device is the RAM disk, try to load it.
 200  * In order to do this, the root device is originally set to the
 201  * floppy, and we later change it to be RAM disk.
 202  */
 203 void rd_load(void)
     /* [previous][next][first][last][top][bottom][index][help] */
 204 {
 205         struct inode inode;
 206         struct file filp;
 207 
 208         /* If no RAM disk specified, give up early. */
 209         if (!rd_length)
 210                 return;
 211         printk("RAMDISK: %d bytes, starting at 0x%p\n",
 212                         rd_length, rd_start);
 213 
 214         /* If we are doing a diskette boot, we might have to pre-load it. */
 215         if (MAJOR(ROOT_DEV) != FLOPPY_MAJOR)
 216                 return;
 217 
 218         /* for Slackware install disks */
 219         printk(KERN_NOTICE "VFS: Insert ramdisk floppy and press ENTER\n");
 220         wait_for_keypress();
 221 
 222         memset(&filp, 0, sizeof(filp));
 223         memset(&inode, 0, sizeof(inode));
 224         inode.i_rdev = ROOT_DEV;
 225         filp.f_mode = 1; /* read only */
 226         filp.f_inode = &inode;
 227         if(blkdev_open(&inode, &filp) == 0 ){
 228                 do_load();
 229                 if(filp.f_op && filp.f_op->release)
 230                         filp.f_op->release(&inode,&filp);
 231         }
 232 }

/* [previous][next][first][last][top][bottom][index][help] */