Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 | * Use of this source code is governed by a BSD-style license that can be |
| 3 | * found in the LICENSE file. |
| 4 | * |
| 5 | * Utility for ChromeOS-specific GPT partitions, Please see corresponding .c |
| 6 | * files for more details. |
| 7 | */ |
| 8 | |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 9 | #include <stdio.h> |
| 10 | #include <string.h> |
| 11 | #include <unistd.h> |
Jay Srinivasan | 5fac757 | 2012-02-23 10:59:01 -0800 | [diff] [blame] | 12 | #include <uuid/uuid.h> |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 13 | |
Bill Richardson | 0c3ba24 | 2013-03-29 11:09:30 -0700 | [diff] [blame] | 14 | #include "cgpt.h" |
| 15 | #include "vboot_host.h" |
| 16 | |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 17 | const char* progname; |
Bill Richardson | 4cb5497 | 2014-06-20 14:33:00 -0700 | [diff] [blame] | 18 | |
| 19 | int GenerateGuid(Guid *newguid) |
| 20 | { |
| 21 | /* From libuuid */ |
| 22 | uuid_generate(newguid->u.raw); |
| 23 | return CGPT_OK; |
| 24 | } |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 25 | |
| 26 | struct { |
| 27 | const char *name; |
| 28 | int (*fp)(int argc, char *argv[]); |
| 29 | const char *comment; |
| 30 | } cmds[] = { |
| 31 | {"create", cmd_create, "Create or reset GPT headers and tables"}, |
| 32 | {"add", cmd_add, "Add, edit or remove a partition entry"}, |
| 33 | {"show", cmd_show, "Show partition table and entries"}, |
| 34 | {"repair", cmd_repair, "Repair damaged GPT headers and tables"}, |
| 35 | {"boot", cmd_boot, "Edit the PMBR sector for legacy BIOSes"}, |
Bill Richardson | 4a20931 | 2010-07-02 11:34:38 -0700 | [diff] [blame] | 36 | {"find", cmd_find, "Locate a partition by its GUID"}, |
Bill Richardson | 3430b32 | 2010-11-29 14:24:51 -0800 | [diff] [blame] | 37 | {"prioritize", cmd_prioritize, |
| 38 | "Reorder the priority of all kernel partitions"}, |
Stefan Reinauer | b7b865c | 2012-08-23 15:06:25 -0700 | [diff] [blame] | 39 | {"legacy", cmd_legacy, "Switch between GPT and Legacy GPT"}, |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 40 | }; |
| 41 | |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 42 | void Usage(void) { |
| 43 | int i; |
| 44 | |
Bill Richardson | 3430b32 | 2010-11-29 14:24:51 -0800 | [diff] [blame] | 45 | printf("\nUsage: %s COMMAND [OPTIONS] DRIVE\n\n" |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 46 | "Supported COMMANDs:\n\n", |
| 47 | progname); |
| 48 | |
| 49 | for (i = 0; i < sizeof(cmds)/sizeof(cmds[0]); ++i) { |
Bill Richardson | 3430b32 | 2010-11-29 14:24:51 -0800 | [diff] [blame] | 50 | printf(" %-15s %s\n", cmds[i].name, cmds[i].comment); |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 51 | } |
| 52 | printf("\nFor more detailed usage, use %s COMMAND -h\n\n", progname); |
| 53 | } |
| 54 | |
Albert Chaulk | a75071c | 2013-03-29 15:02:38 -0700 | [diff] [blame] | 55 | static int is_pow2(size_t v) { |
| 56 | return v && (v & (v - 1)) == 0; |
| 57 | } |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 58 | |
Albert Chaulk | a75071c | 2013-03-29 15:02:38 -0700 | [diff] [blame] | 59 | static int parse_nand_option(const char *arg) { |
Albert Chaulk | d41000e | 2013-07-19 11:12:42 -0700 | [diff] [blame] | 60 | int bytes_per_page, pages_per_block, fts_block_offset, fts_block_size; |
| 61 | |
Albert Chaulk | a75071c | 2013-03-29 15:02:38 -0700 | [diff] [blame] | 62 | if ('=' != arg[0]) |
| 63 | return -1; |
| 64 | |
| 65 | arg++; |
Albert Chaulk | d41000e | 2013-07-19 11:12:42 -0700 | [diff] [blame] | 66 | bytes_per_page = atoi(arg); |
Albert Chaulk | a75071c | 2013-03-29 15:02:38 -0700 | [diff] [blame] | 67 | arg = strchr(arg, ','); |
| 68 | if (!arg) |
| 69 | return -1; |
| 70 | |
| 71 | arg++; |
Albert Chaulk | d41000e | 2013-07-19 11:12:42 -0700 | [diff] [blame] | 72 | pages_per_block = atoi(arg); |
Albert Chaulk | a75071c | 2013-03-29 15:02:38 -0700 | [diff] [blame] | 73 | arg = strchr(arg, ','); |
| 74 | if (!arg) |
| 75 | return -1; |
| 76 | |
| 77 | arg++; |
Albert Chaulk | d41000e | 2013-07-19 11:12:42 -0700 | [diff] [blame] | 78 | fts_block_offset = atoi(arg); |
Albert Chaulk | a75071c | 2013-03-29 15:02:38 -0700 | [diff] [blame] | 79 | arg = strchr(arg, ','); |
| 80 | if (!arg) |
| 81 | return -1; |
| 82 | |
| 83 | arg++; |
Albert Chaulk | d41000e | 2013-07-19 11:12:42 -0700 | [diff] [blame] | 84 | fts_block_size = atoi(arg); |
| 85 | if (fts_block_size == 0 || !is_pow2(pages_per_block) || |
| 86 | !is_pow2(bytes_per_page) || bytes_per_page < 512) { |
Albert Chaulk | a75071c | 2013-03-29 15:02:38 -0700 | [diff] [blame] | 87 | return -1; |
| 88 | } |
Albert Chaulk | d41000e | 2013-07-19 11:12:42 -0700 | [diff] [blame] | 89 | EnableNandImage(bytes_per_page, pages_per_block, fts_block_offset, |
| 90 | fts_block_size); |
Albert Chaulk | a75071c | 2013-03-29 15:02:38 -0700 | [diff] [blame] | 91 | return 0; |
| 92 | } |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 93 | |
| 94 | int main(int argc, char *argv[]) { |
| 95 | int i; |
Bill Richardson | 3430b32 | 2010-11-29 14:24:51 -0800 | [diff] [blame] | 96 | int match_count = 0; |
| 97 | int match_index = 0; |
Bill Richardson | 4cb5497 | 2014-06-20 14:33:00 -0700 | [diff] [blame] | 98 | char* command; |
Jay Srinivasan | 5fac757 | 2012-02-23 10:59:01 -0800 | [diff] [blame] | 99 | |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 100 | progname = strrchr(argv[0], '/'); |
| 101 | if (progname) |
| 102 | progname++; |
| 103 | else |
| 104 | progname = argv[0]; |
| 105 | |
Albert Chaulk | a75071c | 2013-03-29 15:02:38 -0700 | [diff] [blame] | 106 | |
Albert Chaulk | a75071c | 2013-03-29 15:02:38 -0700 | [diff] [blame] | 107 | for (i = 1; i < argc; ++i) { |
| 108 | if (0 == strncmp(argv[i], "-N", 2)) { |
| 109 | if (!parse_nand_option(argv[i] + 2)) { |
| 110 | int j; |
Albert Chaulk | a75071c | 2013-03-29 15:02:38 -0700 | [diff] [blame] | 111 | |
| 112 | // Remove it form the list. |
| 113 | for (j = i; j < argc - 1; j++) |
| 114 | argv[j] = argv[j + 1]; |
| 115 | argc--; |
| 116 | break; |
| 117 | } |
| 118 | // Bad nand config. |
| 119 | printf("Nand option must fit: -N=<bytes_per_page>,<pages_per_block>," |
| 120 | "<block_offset_of_partition>,<block_size_of_partition>\n"); |
| 121 | return CGPT_FAILED; |
| 122 | } |
| 123 | } |
| 124 | |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 125 | if (argc < 2) { |
| 126 | Usage(); |
| 127 | return CGPT_FAILED; |
| 128 | } |
| 129 | |
| 130 | // increment optind now, so that getopt skips argv[0] in command function |
| 131 | command = argv[optind++]; |
| 132 | |
| 133 | // Find the command to invoke. |
| 134 | for (i = 0; command && i < sizeof(cmds)/sizeof(cmds[0]); ++i) { |
Bill Richardson | 3430b32 | 2010-11-29 14:24:51 -0800 | [diff] [blame] | 135 | // exact match? |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 136 | if (0 == strcmp(cmds[i].name, command)) { |
Bill Richardson | 3430b32 | 2010-11-29 14:24:51 -0800 | [diff] [blame] | 137 | match_index = i; |
| 138 | match_count = 1; |
| 139 | break; |
| 140 | } |
| 141 | // unique match? |
| 142 | else if (0 == strncmp(cmds[i].name, command, strlen(command))) { |
| 143 | match_index = i; |
| 144 | match_count++; |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 145 | } |
| 146 | } |
| 147 | |
Bill Richardson | 3430b32 | 2010-11-29 14:24:51 -0800 | [diff] [blame] | 148 | if (match_count == 1) |
| 149 | return cmds[match_index].fp(argc, argv); |
| 150 | |
| 151 | // Couldn't find a single matching command. |
Bill Richardson | f1372d9 | 2010-06-11 09:15:55 -0700 | [diff] [blame] | 152 | Usage(); |
| 153 | |
| 154 | return CGPT_FAILED; |
| 155 | } |