rk: restore file mode
[firefly-linux-kernel-4.4.55.git] / block / partitions / check.c
1 /*
2  *  fs/partitions/check.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  *  We now have independent partition support from the
9  *  block drivers, which allows all the partition code to
10  *  be grouped in one location, and it to be mostly self
11  *  contained.
12  *
13  *  Added needed MAJORS for new pairs, {hdi,hdj}, {hdk,hdl}
14  */
15
16 #include <linux/slab.h>
17 #include <linux/vmalloc.h>
18 #include <linux/ctype.h>
19 #include <linux/genhd.h>
20
21 #include "check.h"
22 #include "acorn.h"
23 #include "amiga.h"
24 #include "atari.h"
25 #include "ldm.h"
26 #include "mac.h"
27 #include "msdos.h"
28 #include "osf.h"
29 #include "sgi.h"
30 #include "sun.h"
31 #include "ibm.h"
32 #include "ultrix.h"
33 #include "efi.h"
34 #include "karma.h"
35 #include "sysv68.h"
36 #include "rk.h"
37 #include "cmdline.h"
38
39 int warn_no_part = 1; /*This is ugly: should make genhd removable media aware*/
40
41 static int (*check_part[])(struct parsed_partitions *) = {
42         /*
43          * Probe partition formats with tables at disk address 0
44          * that also have an ADFS boot block at 0xdc0.
45          */
46 #ifdef CONFIG_ACORN_PARTITION_ICS
47         adfspart_check_ICS,
48 #endif
49 #ifdef CONFIG_ACORN_PARTITION_POWERTEC
50         adfspart_check_POWERTEC,
51 #endif
52 #ifdef CONFIG_ACORN_PARTITION_EESOX
53         adfspart_check_EESOX,
54 #endif
55
56         /*
57          * Now move on to formats that only have partition info at
58          * disk address 0xdc0.  Since these may also have stale
59          * PC/BIOS partition tables, they need to come before
60          * the msdos entry.
61          */
62 #ifdef CONFIG_ACORN_PARTITION_CUMANA
63         adfspart_check_CUMANA,
64 #endif
65 #ifdef CONFIG_ACORN_PARTITION_ADFS
66         adfspart_check_ADFS,
67 #endif
68
69 #ifdef CONFIG_CMDLINE_PARTITION
70         cmdline_partition,
71 #endif
72 #ifdef CONFIG_EFI_PARTITION
73         efi_partition,          /* this must come before msdos */
74 #endif
75 #ifdef CONFIG_SGI_PARTITION
76         sgi_partition,
77 #endif
78 #ifdef CONFIG_LDM_PARTITION
79         ldm_partition,          /* this must come before msdos */
80 #endif
81 #ifdef CONFIG_MSDOS_PARTITION
82         msdos_partition,
83 #endif
84 #ifdef CONFIG_OSF_PARTITION
85         osf_partition,
86 #endif
87 #ifdef CONFIG_SUN_PARTITION
88         sun_partition,
89 #endif
90 #ifdef CONFIG_AMIGA_PARTITION
91         amiga_partition,
92 #endif
93 #ifdef CONFIG_ATARI_PARTITION
94         atari_partition,
95 #endif
96 #ifdef CONFIG_MAC_PARTITION
97         mac_partition,
98 #endif
99 #ifdef CONFIG_ULTRIX_PARTITION
100         ultrix_partition,
101 #endif
102 #ifdef CONFIG_IBM_PARTITION
103         ibm_partition,
104 #endif
105 #ifdef CONFIG_KARMA_PARTITION
106         karma_partition,
107 #endif
108 #ifdef CONFIG_SYSV68_PARTITION
109         sysv68_partition,
110 #endif
111 #ifdef CONFIG_RK_PARTITION
112         rkpart_partition,
113 #endif
114
115         NULL
116 };
117
118 static struct parsed_partitions *allocate_partitions(struct gendisk *hd)
119 {
120         struct parsed_partitions *state;
121         int nr;
122
123         state = kzalloc(sizeof(*state), GFP_KERNEL);
124         if (!state)
125                 return NULL;
126
127         nr = disk_max_parts(hd);
128         state->parts = vzalloc(nr * sizeof(state->parts[0]));
129         if (!state->parts) {
130                 kfree(state);
131                 return NULL;
132         }
133
134         state->limit = nr;
135
136         return state;
137 }
138
139 void free_partitions(struct parsed_partitions *state)
140 {
141         vfree(state->parts);
142         kfree(state);
143 }
144
145 struct parsed_partitions *
146 check_partition(struct gendisk *hd, struct block_device *bdev)
147 {
148         struct parsed_partitions *state;
149         int i, res, err;
150
151         state = allocate_partitions(hd);
152         if (!state)
153                 return NULL;
154         state->pp_buf = (char *)__get_free_page(GFP_KERNEL);
155         if (!state->pp_buf) {
156                 free_partitions(state);
157                 return NULL;
158         }
159         state->pp_buf[0] = '\0';
160
161         state->bdev = bdev;
162         disk_name(hd, 0, state->name);
163         snprintf(state->pp_buf, PAGE_SIZE, " %s:", state->name);
164         if (isdigit(state->name[strlen(state->name)-1]))
165                 sprintf(state->name, "p");
166
167         i = res = err = 0;
168
169         /* Rockchip partition table ONLY used by eMMC disk */
170         #ifdef CONFIG_RK_PARTITION
171         if ((179 == MAJOR(bdev->bd_dev) && (1 == hd->emmc_disk)))
172                 i = sizeof(check_part) / sizeof(struct parsed_partitions *) - 2;
173         #endif
174
175         while (!res && check_part[i]) {
176                 memset(state->parts, 0, state->limit * sizeof(state->parts[0]));
177                 res = check_part[i++](state);
178                 if (res < 0) {
179                         /* We have hit an I/O error which we don't report now.
180                         * But record it, and let the others do their job.
181                         */
182                         err = res;
183                         res = 0;
184                 }
185
186         }
187         if (res > 0) {
188                 printk(KERN_INFO "%s", state->pp_buf);
189
190                 free_page((unsigned long)state->pp_buf);
191                 return state;
192         }
193         if (state->access_beyond_eod)
194                 err = -ENOSPC;
195         if (err)
196         /* The partition is unrecognized. So report I/O errors if there were any */
197                 res = err;
198         if (!res)
199                 strlcat(state->pp_buf, " unknown partition table\n", PAGE_SIZE);
200         else if (warn_no_part)
201                 strlcat(state->pp_buf, " unable to read partition table\n", PAGE_SIZE);
202
203         printk(KERN_INFO "%s", state->pp_buf);
204
205         free_page((unsigned long)state->pp_buf);
206         free_partitions(state);
207         return ERR_PTR(res);
208 }