blob: c2c48ec64b2709c5f252e164bc3397df0c439210 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/partitions/mac.c
3 *
4 * Code extracted from drivers/block/genhd.c
5 * Copyright (C) 1991-1998 Linus Torvalds
6 * Re-organised Feb 1998 Russell King
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/ctype.h>
10#include "check.h"
11#include "mac.h"
12
13#ifdef CONFIG_PPC_PMAC
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110014#include <asm/machdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015extern void note_bootable_part(dev_t dev, int part, int goodness);
16#endif
17
18/*
19 * Code to understand MacOS partition tables.
20 */
21
22static inline void mac_fix_string(char *stg, int len)
23{
24 int i;
25
26 for (i = len - 1; i >= 0 && stg[i] == ' '; i--)
27 stg[i] = 0;
28}
29
Tejun Heo1493bf22010-05-15 20:09:30 +020030int mac_partition(struct parsed_partitions *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 Sector sect;
33 unsigned char *data;
Timo Warnsfa7ea872011-02-17 22:27:40 +010034 int slot, blocks_in_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 unsigned secsize;
36#ifdef CONFIG_PPC_PMAC
37 int found_root = 0;
38 int found_root_goodness = 0;
39#endif
40 struct mac_partition *part;
41 struct mac_driver_desc *md;
42
43 /* Get 0th block and look at the first partition map entry. */
Tejun Heo1493bf22010-05-15 20:09:30 +020044 md = read_part_sector(state, 0, &sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 if (!md)
46 return -1;
47 if (be16_to_cpu(md->signature) != MAC_DRIVER_MAGIC) {
48 put_dev_sector(sect);
49 return 0;
50 }
51 secsize = be16_to_cpu(md->block_size);
52 put_dev_sector(sect);
Tejun Heo1493bf22010-05-15 20:09:30 +020053 data = read_part_sector(state, secsize/512, &sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 if (!data)
55 return -1;
56 part = (struct mac_partition *) (data + secsize%512);
57 if (be16_to_cpu(part->signature) != MAC_PARTITION_MAGIC) {
58 put_dev_sector(sect);
59 return 0; /* not a MacOS disk */
60 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 blocks_in_map = be32_to_cpu(part->map_count);
Timo Warnsfa7ea872011-02-17 22:27:40 +010062 if (blocks_in_map < 0 || blocks_in_map >= DISK_MAX_PARTS) {
63 put_dev_sector(sect);
64 return 0;
65 }
Ming Lei06004e62013-02-27 17:05:18 -080066
67 if (blocks_in_map >= state->limit)
68 blocks_in_map = state->limit - 1;
69
Timo Warnsfa7ea872011-02-17 22:27:40 +010070 strlcat(state->pp_buf, " [mac]", PAGE_SIZE);
71 for (slot = 1; slot <= blocks_in_map; ++slot) {
72 int pos = slot * secsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 put_dev_sector(sect);
Tejun Heo1493bf22010-05-15 20:09:30 +020074 data = read_part_sector(state, pos/512, &sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (!data)
76 return -1;
77 part = (struct mac_partition *) (data + pos%512);
78 if (be16_to_cpu(part->signature) != MAC_PARTITION_MAGIC)
79 break;
80 put_partition(state, slot,
81 be32_to_cpu(part->start_block) * (secsize/512),
82 be32_to_cpu(part->block_count) * (secsize/512));
83
Rasmus Villemoes58294052014-09-16 22:51:16 +020084 if (!strncasecmp(part->type, "Linux_RAID", 10))
Cesar Eduardo Barroscc910622010-04-17 19:28:09 -030085 state->parts[slot].flags = ADDPART_FLAG_RAID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#ifdef CONFIG_PPC_PMAC
87 /*
88 * If this is the first bootable partition, tell the
89 * setup code, in case it wants to make this the root.
90 */
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110091 if (machine_is(powermac)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 int goodness = 0;
93
94 mac_fix_string(part->processor, 16);
95 mac_fix_string(part->name, 32);
96 mac_fix_string(part->type, 32);
97
98 if ((be32_to_cpu(part->status) & MAC_STATUS_BOOTABLE)
99 && strcasecmp(part->processor, "powerpc") == 0)
100 goodness++;
101
102 if (strcasecmp(part->type, "Apple_UNIX_SVR2") == 0
Rasmus Villemoes58294052014-09-16 22:51:16 +0200103 || (strncasecmp(part->type, "Linux", 5) == 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 && strcasecmp(part->type, "Linux_swap") != 0)) {
105 int i, l;
106
107 goodness++;
108 l = strlen(part->name);
109 if (strcmp(part->name, "/") == 0)
110 goodness++;
111 for (i = 0; i <= l - 4; ++i) {
Rasmus Villemoes58294052014-09-16 22:51:16 +0200112 if (strncasecmp(part->name + i, "root",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 4) == 0) {
114 goodness += 2;
115 break;
116 }
117 }
Rasmus Villemoes58294052014-09-16 22:51:16 +0200118 if (strncasecmp(part->name, "swap", 4) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 goodness--;
120 }
121
122 if (goodness > found_root_goodness) {
Timo Warnsfa7ea872011-02-17 22:27:40 +0100123 found_root = slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 found_root_goodness = goodness;
125 }
126 }
127#endif /* CONFIG_PPC_PMAC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
129#ifdef CONFIG_PPC_PMAC
130 if (found_root_goodness)
Tejun Heo1493bf22010-05-15 20:09:30 +0200131 note_bootable_part(state->bdev->bd_dev, found_root,
132 found_root_goodness);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#endif
134
135 put_dev_sector(sect);
Alexey Dobriyan9c867fb2010-08-10 18:03:14 -0700136 strlcat(state->pp_buf, "\n", PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 return 1;
138}