blob: 3e73de5967ff94c9e5896aaf84cd0c6a1c7a4b96 [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 */
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +010024static sector_t
Peter Oberparleiter4cd5b9f2005-11-07 00:59:09 -080025cchh2blk (struct vtoc_cchh *ptr, struct hd_geometry *geo) {
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +010026
27 sector_t cyl;
28 __u16 head;
29
30 /*decode cylinder and heads for large volumes */
31 cyl = ptr->hh & 0xFFF0;
32 cyl <<= 12;
33 cyl |= ptr->cc;
34 head = ptr->hh & 0x000F;
35 return cyl * geo->heads * geo->sectors +
36 head * geo->sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037}
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/*
Horst Hummelef1597d2006-03-24 03:15:23 -080040 * compute the block number from a
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * cyl-cyl-head-head-block structure
42 */
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +010043static sector_t
Peter Oberparleiter4cd5b9f2005-11-07 00:59:09 -080044cchhb2blk (struct vtoc_cchhb *ptr, struct hd_geometry *geo) {
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +010045
46 sector_t cyl;
47 __u16 head;
48
49 /*decode cylinder and heads for large volumes */
50 cyl = ptr->hh & 0xFFF0;
51 cyl <<= 12;
52 cyl |= ptr->cc;
53 head = ptr->hh & 0x000F;
54 return cyl * geo->heads * geo->sectors +
55 head * geo->sectors +
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 ptr->b;
57}
58
59/*
60 */
Tejun Heo1493bf22010-05-15 20:09:30 +020061int ibm_partition(struct parsed_partitions *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Tejun Heo1493bf22010-05-15 20:09:30 +020063 struct block_device *bdev = state->bdev;
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +010064 int blocksize, res;
65 loff_t i_size, offset, size, fmt_size;
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +020066 dasd_information2_t *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct hd_geometry *geo;
68 char type[5] = {0,};
69 char name[7] = {0,};
Peter Oberparleiter56dc6a82006-01-06 00:19:09 -080070 union label_t {
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +010071 struct vtoc_volume_label_cdl vol;
72 struct vtoc_volume_label_ldl lnx;
Peter Oberparleiter56dc6a82006-01-06 00:19:09 -080073 struct vtoc_cms_label cms;
74 } *label;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 unsigned char *data;
76 Sector sect;
77
Suzuki K P57881dd2006-12-06 20:35:16 -080078 res = 0;
Martin K. Petersene1defc42009-05-22 17:17:49 -040079 blocksize = bdev_logical_block_size(bdev);
Horst Hummel90f00942006-03-07 21:55:39 -080080 if (blocksize <= 0)
Suzuki K P57881dd2006-12-06 20:35:16 -080081 goto out_exit;
Horst Hummel90f00942006-03-07 21:55:39 -080082 i_size = i_size_read(bdev->bd_inode);
83 if (i_size == 0)
Suzuki K P57881dd2006-12-06 20:35:16 -080084 goto out_exit;
Horst Hummel90f00942006-03-07 21:55:39 -080085
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +020086 info = kmalloc(sizeof(dasd_information2_t), GFP_KERNEL);
87 if (info == NULL)
Suzuki K P57881dd2006-12-06 20:35:16 -080088 goto out_exit;
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +020089 geo = kmalloc(sizeof(struct hd_geometry), GFP_KERNEL);
90 if (geo == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 goto out_nogeo;
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +020092 label = kmalloc(sizeof(union label_t), GFP_KERNEL);
93 if (label == NULL)
Peter Oberparleiter56dc6a82006-01-06 00:19:09 -080094 goto out_nolab;
Horst Hummelef1597d2006-03-24 03:15:23 -080095
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +020096 if (ioctl_by_bdev(bdev, BIODASDINFO2, (unsigned long)info) != 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 ioctl_by_bdev(bdev, HDIO_GETGEO, (unsigned long)geo) != 0)
Suzuki K P57881dd2006-12-06 20:35:16 -080098 goto out_freeall;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 /*
101 * Get volume label, extract name and type.
102 */
Tejun Heo1493bf22010-05-15 20:09:30 +0200103 data = read_part_sector(state, info->label_block*(blocksize/512),
104 &sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (data == NULL)
106 goto out_readerr;
107
Peter Oberparleiter56dc6a82006-01-06 00:19:09 -0800108 memcpy(label, data, sizeof(union label_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 put_dev_sector(sect);
110
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100111 if ((!info->FBA_layout) && (!strcmp(info->type, "ECKD"))) {
112 strncpy(type, label->vol.vollbl, 4);
113 strncpy(name, label->vol.volid, 6);
114 } else {
115 strncpy(type, label->lnx.vollbl, 4);
116 strncpy(name, label->lnx.volid, 6);
117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 EBCASC(type, 4);
119 EBCASC(name, 6);
120
Suzuki K P57881dd2006-12-06 20:35:16 -0800121 res = 1;
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 /*
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200124 * Three different formats: LDL, CDL and unformated disk
125 *
126 * identified by info->format
127 *
128 * unformated disks we do not have to care about
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 */
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200130 if (info->format == DASD_FORMAT_LDL) {
131 if (strncmp(type, "CMS1", 4) == 0) {
132 /*
133 * VM style CMS1 labeled disk
134 */
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100135 blocksize = label->cms.block_size;
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200136 if (label->cms.disk_offset != 0) {
137 printk("CMS1/%8s(MDSK):", name);
138 /* disk is reserved minidisk */
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200139 offset = label->cms.disk_offset;
140 size = (label->cms.block_count - 1)
141 * (blocksize >> 9);
142 } else {
143 printk("CMS1/%8s:", name);
144 offset = (info->label_block + 1);
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100145 size = label->cms.block_count
146 * (blocksize >> 9);
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200147 }
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100148 put_partition(state, 1, offset*(blocksize >> 9),
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200149 size-offset*(blocksize >> 9));
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100150 } else {
151 if (strncmp(type, "LNX1", 4) == 0) {
152 printk("LNX1/%8s:", name);
153 if (label->lnx.ldl_version == 0xf2) {
154 fmt_size = label->lnx.formatted_blocks
155 * (blocksize >> 9);
156 } else if (!strcmp(info->type, "ECKD")) {
157 /* formated w/o large volume support */
158 fmt_size = geo->cylinders * geo->heads
159 * geo->sectors * (blocksize >> 9);
160 } else {
161 /* old label and no usable disk geometry
162 * (e.g. DIAG) */
163 fmt_size = i_size >> 9;
164 }
165 size = i_size >> 9;
166 if (fmt_size < size)
167 size = fmt_size;
168 offset = (info->label_block + 1);
169 } else {
170 /* unlabeled disk */
171 printk("(nonl)");
172 size = i_size >> 9;
173 offset = (info->label_block + 1);
174 }
175 put_partition(state, 1, offset*(blocksize >> 9),
176 size-offset*(blocksize >> 9));
177 }
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200178 } else if (info->format == DASD_FORMAT_CDL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 /*
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200180 * New style CDL formatted disk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 */
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100182 sector_t blk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 int counter;
184
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200185 /*
186 * check if VOL1 label is available
187 * if not, something is wrong, skipping partition detection
188 */
189 if (strncmp(type, "VOL1", 4) == 0) {
190 printk("VOL1/%8s:", name);
191 /*
192 * get block number and read then go through format1
193 * labels
194 */
195 blk = cchhb2blk(&label->vol.vtoc, geo) + 1;
196 counter = 0;
Tejun Heo1493bf22010-05-15 20:09:30 +0200197 data = read_part_sector(state, blk * (blocksize/512),
198 &sect);
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200199 while (data != NULL) {
200 struct vtoc_format1_label f1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200202 memcpy(&f1, data,
203 sizeof(struct vtoc_format1_label));
204 put_dev_sector(sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200206 /* skip FMT4 / FMT5 / FMT7 labels */
207 if (f1.DS1FMTID == _ascebc['4']
208 || f1.DS1FMTID == _ascebc['5']
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100209 || f1.DS1FMTID == _ascebc['7']
210 || f1.DS1FMTID == _ascebc['9']) {
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200211 blk++;
Tejun Heo1493bf22010-05-15 20:09:30 +0200212 data = read_part_sector(state,
213 blk * (blocksize/512), &sect);
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200214 continue;
215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Stefan Weinhuberb44b0ab32009-03-26 15:23:47 +0100217 /* only FMT1 and 8 labels valid at this point */
218 if (f1.DS1FMTID != _ascebc['1'] &&
219 f1.DS1FMTID != _ascebc['8'])
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200220 break;
221
222 /* OK, we got valid partition data */
223 offset = cchh2blk(&f1.DS1EXT1.llimit, geo);
224 size = cchh2blk(&f1.DS1EXT1.ulimit, geo) -
225 offset + geo->sectors;
226 if (counter >= state->limit)
227 break;
228 put_partition(state, counter + 1,
229 offset * (blocksize >> 9),
230 size * (blocksize >> 9));
231 counter++;
232 blk++;
Tejun Heo1493bf22010-05-15 20:09:30 +0200233 data = read_part_sector(state,
234 blk * (blocksize/512), &sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
Stefan Haberlandbf1a95a2007-07-10 11:24:11 +0200237 if (!data)
238 /* Are we not supposed to report this ? */
239 goto out_readerr;
240 } else
241 printk(KERN_WARNING "Warning, expected Label VOL1 not "
242 "found, treating as CDL formated Disk");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245
246 printk("\n");
Suzuki K P57881dd2006-12-06 20:35:16 -0800247 goto out_freeall;
248
Horst Hummelef1597d2006-03-24 03:15:23 -0800249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250out_readerr:
Suzuki K P57881dd2006-12-06 20:35:16 -0800251 res = -1;
252out_freeall:
Peter Oberparleiter56dc6a82006-01-06 00:19:09 -0800253 kfree(label);
254out_nolab:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 kfree(geo);
256out_nogeo:
257 kfree(info);
Suzuki K P57881dd2006-12-06 20:35:16 -0800258out_exit:
259 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}