blob: 1e064c4a4f86017ed8fa8832fee08c2224cd09b6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Horst Hummelef1597d2006-03-24 03:15:23 -08002 * File...........: linux/fs/partitions/ibm.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
4 * Volker Sameske <sameske@de.ibm.com>
5 * Bugreports.to..: <Linux390@de.ibm.com>
6 * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999,2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/buffer_head.h>
10#include <linux/hdreg.h>
11#include <linux/slab.h>
12#include <asm/dasd.h>
13#include <asm/ebcdic.h>
14#include <asm/uaccess.h>
15#include <asm/vtoc.h>
16
17#include "check.h"
18#include "ibm.h"
19
20/*
Horst Hummelef1597d2006-03-24 03:15:23 -080021 * compute the block number from a
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 * cyl-cyl-head-head structure
23 */
24static inline int
Peter Oberparleiter4cd5b9f2005-11-07 00:59:09 -080025cchh2blk (struct vtoc_cchh *ptr, struct hd_geometry *geo) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 return ptr->cc * geo->heads * geo->sectors +
27 ptr->hh * geo->sectors;
28}
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/*
Horst Hummelef1597d2006-03-24 03:15:23 -080031 * compute the block number from a
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 * cyl-cyl-head-head-block structure
33 */
34static inline int
Peter Oberparleiter4cd5b9f2005-11-07 00:59:09 -080035cchhb2blk (struct vtoc_cchhb *ptr, struct hd_geometry *geo) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 return ptr->cc * geo->heads * geo->sectors +
37 ptr->hh * geo->sectors +
38 ptr->b;
39}
40
41/*
42 */
Horst Hummelef1597d2006-03-24 03:15:23 -080043int
Linus Torvalds1da177e2005-04-16 15:20:36 -070044ibm_partition(struct parsed_partitions *state, struct block_device *bdev)
45{
Suzuki K P57881dd2006-12-06 20:35:16 -080046 int blocksize, offset, size,res;
Horst Hummel90f00942006-03-07 21:55:39 -080047 loff_t i_size;
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +020048 dasd_information2_t *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 struct hd_geometry *geo;
50 char type[5] = {0,};
51 char name[7] = {0,};
Peter Oberparleiter56dc6a82006-01-06 00:19:09 -080052 union label_t {
53 struct vtoc_volume_label vol;
54 struct vtoc_cms_label cms;
55 } *label;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 unsigned char *data;
57 Sector sect;
58
Suzuki K P57881dd2006-12-06 20:35:16 -080059 res = 0;
Horst Hummel90f00942006-03-07 21:55:39 -080060 blocksize = bdev_hardsect_size(bdev);
61 if (blocksize <= 0)
Suzuki K P57881dd2006-12-06 20:35:16 -080062 goto out_exit;
Horst Hummel90f00942006-03-07 21:55:39 -080063 i_size = i_size_read(bdev->bd_inode);
64 if (i_size == 0)
Suzuki K P57881dd2006-12-06 20:35:16 -080065 goto out_exit;
Horst Hummel90f00942006-03-07 21:55:39 -080066
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +020067 info = kmalloc(sizeof(dasd_information2_t), GFP_KERNEL);
68 if (info == NULL)
Suzuki K P57881dd2006-12-06 20:35:16 -080069 goto out_exit;
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +020070 geo = kmalloc(sizeof(struct hd_geometry), GFP_KERNEL);
71 if (geo == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 goto out_nogeo;
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +020073 label = kmalloc(sizeof(union label_t), GFP_KERNEL);
74 if (label == NULL)
Peter Oberparleiter56dc6a82006-01-06 00:19:09 -080075 goto out_nolab;
Horst Hummelef1597d2006-03-24 03:15:23 -080076
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +020077 if (ioctl_by_bdev(bdev, BIODASDINFO2, (unsigned long)info) != 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 ioctl_by_bdev(bdev, HDIO_GETGEO, (unsigned long)geo) != 0)
Suzuki K P57881dd2006-12-06 20:35:16 -080079 goto out_freeall;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 /*
82 * Get volume label, extract name and type.
83 */
84 data = read_dev_sector(bdev, info->label_block*(blocksize/512), &sect);
85 if (data == NULL)
86 goto out_readerr;
87
88 strncpy (type, data, 4);
89 if ((!info->FBA_layout) && (!strcmp(info->type, "ECKD")))
90 strncpy(name, data + 8, 6);
91 else
92 strncpy(name, data + 4, 6);
Peter Oberparleiter56dc6a82006-01-06 00:19:09 -080093 memcpy(label, data, sizeof(union label_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 put_dev_sector(sect);
95
96 EBCASC(type, 4);
97 EBCASC(name, 6);
98
Suzuki K P57881dd2006-12-06 20:35:16 -080099 res = 1;
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 /*
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200102 * Three different formats: LDL, CDL and unformated disk
103 *
104 * identified by info->format
105 *
106 * unformated disks we do not have to care about
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 */
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200108 if (info->format == DASD_FORMAT_LDL) {
109 if (strncmp(type, "CMS1", 4) == 0) {
110 /*
111 * VM style CMS1 labeled disk
112 */
113 if (label->cms.disk_offset != 0) {
114 printk("CMS1/%8s(MDSK):", name);
115 /* disk is reserved minidisk */
116 blocksize = label->cms.block_size;
117 offset = label->cms.disk_offset;
118 size = (label->cms.block_count - 1)
119 * (blocksize >> 9);
120 } else {
121 printk("CMS1/%8s:", name);
122 offset = (info->label_block + 1);
123 size = i_size >> 9;
124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 } else {
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200126 /*
127 * Old style LNX1 or unlabeled disk
128 */
129 if (strncmp(type, "LNX1", 4) == 0)
130 printk ("LNX1/%8s:", name);
131 else
132 printk("(nonl)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 offset = (info->label_block + 1);
Horst Hummel90f00942006-03-07 21:55:39 -0800134 size = i_size >> 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136 put_partition(state, 1, offset*(blocksize >> 9),
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200137 size-offset*(blocksize >> 9));
138 } else if (info->format == DASD_FORMAT_CDL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 /*
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200140 * New style CDL formatted disk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 */
142 unsigned int blk;
143 int counter;
144
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200145 /*
146 * check if VOL1 label is available
147 * if not, something is wrong, skipping partition detection
148 */
149 if (strncmp(type, "VOL1", 4) == 0) {
150 printk("VOL1/%8s:", name);
151 /*
152 * get block number and read then go through format1
153 * labels
154 */
155 blk = cchhb2blk(&label->vol.vtoc, geo) + 1;
156 counter = 0;
157 data = read_dev_sector(bdev, blk * (blocksize/512),
158 &sect);
159 while (data != NULL) {
160 struct vtoc_format1_label f1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200162 memcpy(&f1, data,
163 sizeof(struct vtoc_format1_label));
164 put_dev_sector(sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200166 /* skip FMT4 / FMT5 / FMT7 labels */
167 if (f1.DS1FMTID == _ascebc['4']
168 || f1.DS1FMTID == _ascebc['5']
169 || f1.DS1FMTID == _ascebc['7']) {
170 blk++;
171 data = read_dev_sector(bdev, blk *
172 (blocksize/512),
173 &sect);
174 continue;
175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200177 /* only FMT1 valid at this point */
178 if (f1.DS1FMTID != _ascebc['1'])
179 break;
180
181 /* OK, we got valid partition data */
182 offset = cchh2blk(&f1.DS1EXT1.llimit, geo);
183 size = cchh2blk(&f1.DS1EXT1.ulimit, geo) -
184 offset + geo->sectors;
185 if (counter >= state->limit)
186 break;
187 put_partition(state, counter + 1,
188 offset * (blocksize >> 9),
189 size * (blocksize >> 9));
190 counter++;
191 blk++;
192 data = read_dev_sector(bdev,
193 blk * (blocksize/512),
194 &sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200197 if (!data)
198 /* Are we not supposed to report this ? */
199 goto out_readerr;
200 } else
201 printk(KERN_WARNING "Warning, expected Label VOL1 not "
202 "found, treating as CDL formated Disk");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205
206 printk("\n");
Suzuki K P57881dd2006-12-06 20:35:16 -0800207 goto out_freeall;
208
Horst Hummelef1597d2006-03-24 03:15:23 -0800209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210out_readerr:
Suzuki K P57881dd2006-12-06 20:35:16 -0800211 res = -1;
212out_freeall:
Peter Oberparleiter56dc6a82006-01-06 00:19:09 -0800213 kfree(label);
214out_nolab:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 kfree(geo);
216out_nogeo:
217 kfree(info);
Suzuki K P57881dd2006-12-06 20:35:16 -0800218out_exit:
219 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}