1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228 |
- #include <assert.h>
- #include <ctype.h>
- #include <getopt.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <unistd.h>
- #include <../include/libfdt.h>
- #include <libfdt_internal.h>
- #ifdef DEBUG
- #define debug(a, b...) fprintf(stderr, a, ## b)
- #else
- #define debug(a, b...)
- #endif
- struct value_node {
- int type;
- int include;
- const char *string;
- struct value_node *next;
- };
- enum output_t {
- OUT_DTS,
- OUT_DTB,
- OUT_BIN,
- };
- struct display_info {
- enum output_t output;
- int add_aliases;
- int all;
- int colour;
- int region_list;
- int flags;
- int list_strings;
- int show_offset;
- int show_addr;
- int header;
- int diff;
- int include_root;
- int remove_strings;
- int show_dts_version;
- int types_inc;
- int types_exc;
- int invert;
- struct value_node *value_head;
- const char *output_fname;
- FILE *fout;
- };
- static void report_error(const char *where, int err)
- {
- fprintf(stderr, "Error at '%s': %s\n", where, fdt_strerror(err));
- }
- enum {
- COL_BLACK,
- COL_RED,
- COL_GREEN,
- COL_YELLOW,
- COL_BLUE,
- COL_MAGENTA,
- COL_CYAN,
- COL_WHITE,
- COL_NONE = -1,
- };
- static void print_ansi_colour(FILE *fout, int col)
- {
- if (col == COL_NONE)
- fprintf(fout, "\033[0m");
- else
- fprintf(fout, "\033[1;%dm", col + 30);
- }
- static int value_add(struct display_info *disp, struct value_node **headp,
- int type, int include, const char *str)
- {
- struct value_node *node;
-
- if (include)
- disp->types_inc |= type;
- else
- disp->types_exc |= type;
- if (disp->types_inc & disp->types_exc & type) {
- fprintf(stderr,
- "Cannot use both include and exclude for '%s'\n", str);
- return -1;
- }
- str = strdup(str);
- node = malloc(sizeof(*node));
- if (!str || !node) {
- fprintf(stderr, "Out of memory\n");
- return -1;
- }
- node->next = *headp;
- node->type = type;
- node->include = include;
- node->string = str;
- *headp = node;
- return 0;
- }
- static bool util_is_printable_string(const void *data, int len)
- {
- const char *s = data;
- const char *ss, *se;
-
- if (len == 0)
- return 0;
-
- if (s[len - 1] != '\0')
- return 0;
- se = s + len;
- while (s < se) {
- ss = s;
- while (s < se && *s && isprint((unsigned char)*s))
- s++;
-
- if (*s != '\0' || s == ss)
- return 0;
- s++;
- }
- return 1;
- }
- static void utilfdt_print_data(const char *data, int len)
- {
- int i;
- const char *p = data;
- const char *s;
-
- if (len == 0)
- return;
- if (util_is_printable_string(data, len)) {
- printf(" = ");
- s = data;
- do {
- printf("\"%s\"", s);
- s += strlen(s) + 1;
- if (s < data + len)
- printf(", ");
- } while (s < data + len);
- } else if ((len % 4) == 0) {
- const uint32_t *cell = (const uint32_t *)data;
- printf(" = <");
- for (i = 0, len /= 4; i < len; i++)
- printf("0x%08x%s", fdt32_to_cpu(cell[i]),
- i < (len - 1) ? " " : "");
- printf(">");
- } else {
- printf(" = [");
- for (i = 0; i < len; i++)
- printf("%02x%s", *p++, i < len - 1 ? " " : "");
- printf("]");
- }
- }
- static int display_fdt_by_regions(struct display_info *disp, const void *blob,
- struct fdt_region region[], int count)
- {
- struct fdt_region *reg = region, *reg_end = region + count;
- uint32_t off_mem_rsvmap = fdt_off_mem_rsvmap(blob);
- int base = fdt_off_dt_struct(blob);
- int version = fdt_version(blob);
- int offset, nextoffset;
- int tag, depth, shift;
- FILE *f = disp->fout;
- uint64_t addr, size;
- int in_region;
- int file_ofs;
- int i;
- if (disp->show_dts_version)
- fprintf(f, "/dts-v1/;\n");
- if (disp->header) {
- fprintf(f, "// magic:\t\t0x%x\n", fdt_magic(blob));
- fprintf(f, "// totalsize:\t\t0x%x (%d)\n", fdt_totalsize(blob),
- fdt_totalsize(blob));
- fprintf(f, "// off_dt_struct:\t0x%x\n",
- fdt_off_dt_struct(blob));
- fprintf(f, "// off_dt_strings:\t0x%x\n",
- fdt_off_dt_strings(blob));
- fprintf(f, "// off_mem_rsvmap:\t0x%x\n", off_mem_rsvmap);
- fprintf(f, "// version:\t\t%d\n", version);
- fprintf(f, "// last_comp_version:\t%d\n",
- fdt_last_comp_version(blob));
- if (version >= 2) {
- fprintf(f, "// boot_cpuid_phys:\t0x%x\n",
- fdt_boot_cpuid_phys(blob));
- }
- if (version >= 3) {
- fprintf(f, "// size_dt_strings:\t0x%x\n",
- fdt_size_dt_strings(blob));
- }
- if (version >= 17) {
- fprintf(f, "// size_dt_struct:\t0x%x\n",
- fdt_size_dt_struct(blob));
- }
- fprintf(f, "\n");
- }
- if (disp->flags & FDT_REG_ADD_MEM_RSVMAP) {
- const struct fdt_reserve_entry *p_rsvmap;
- p_rsvmap = (const struct fdt_reserve_entry *)
- ((const char *)blob + off_mem_rsvmap);
- for (i = 0; ; i++) {
- addr = fdt64_to_cpu(p_rsvmap[i].address);
- size = fdt64_to_cpu(p_rsvmap[i].size);
- if (addr == 0 && size == 0)
- break;
- fprintf(f, "/memreserve/ %llx %llx;\n",
- (unsigned long long)addr,
- (unsigned long long)size);
- }
- }
- depth = 0;
- nextoffset = 0;
- shift = 4;
- do {
- const struct fdt_property *prop;
- const char *name;
- int show;
- int len;
- offset = nextoffset;
-
- file_ofs = base + offset;
- if (reg < reg_end && file_ofs >= reg->offset + reg->size)
- reg++;
- in_region = reg < reg_end && file_ofs >= reg->offset &&
- file_ofs < reg->offset + reg->size;
- tag = fdt_next_tag(blob, offset, &nextoffset);
- if (tag == FDT_END)
- break;
- show = in_region || disp->all;
- if (show && disp->diff)
- fprintf(f, "%c", in_region ? '+' : '-');
- if (!show) {
-
- if (tag == FDT_BEGIN_NODE)
- depth++;
- else if (tag == FDT_END_NODE)
- depth--;
- continue;
- }
- if (tag != FDT_END) {
- if (disp->show_addr)
- fprintf(f, "%4x: ", file_ofs);
- if (disp->show_offset)
- fprintf(f, "%4x: ", file_ofs - base);
- }
-
- if (disp->colour)
- print_ansi_colour(f, in_region ? COL_GREEN : COL_RED);
- switch (tag) {
- case FDT_PROP:
- prop = fdt_get_property_by_offset(blob, offset, NULL);
- name = fdt_string(blob, fdt32_to_cpu(prop->nameoff));
- fprintf(f, "%*s%s", depth * shift, "", name);
- utilfdt_print_data(prop->data,
- fdt32_to_cpu(prop->len));
- fprintf(f, ";");
- break;
- case FDT_NOP:
- fprintf(f, "%*s// [NOP]", depth * shift, "");
- break;
- case FDT_BEGIN_NODE:
- name = fdt_get_name(blob, offset, &len);
- fprintf(f, "%*s%s {", depth++ * shift, "",
- *name ? name : "/");
- break;
- case FDT_END_NODE:
- fprintf(f, "%*s};", --depth * shift, "");
- break;
- }
-
- if (disp->colour)
- print_ansi_colour(f, COL_NONE);
- fprintf(f, "\n");
- } while (1);
-
- if (disp->list_strings) {
- const char *str;
- int str_base = fdt_off_dt_strings(blob);
- for (offset = 0; offset < fdt_size_dt_strings(blob);
- offset += strlen(str) + 1) {
- str = fdt_string(blob, offset);
- int len = strlen(str) + 1;
- int show;
-
- file_ofs = str_base + offset;
- in_region = reg < reg_end &&
- file_ofs >= reg->offset &&
- file_ofs + len < reg->offset +
- reg->size;
- show = in_region || disp->all;
- if (show && disp->diff)
- printf("%c", in_region ? '+' : '-');
- if (disp->show_addr)
- printf("%4x: ", file_ofs);
- if (disp->show_offset)
- printf("%4x: ", offset);
- printf("%s\n", str);
- }
- }
- return 0;
- }
- static int dump_fdt_regions(struct display_info *disp, const void *blob,
- struct fdt_region region[], int count, char *out)
- {
- struct fdt_header *fdt;
- int size, struct_start;
- int ptr;
- int i;
-
- fdt = (struct fdt_header *)out;
- memset(fdt, '\0', sizeof(*fdt));
- fdt_set_magic(fdt, FDT_MAGIC);
- struct_start = FDT_ALIGN(sizeof(struct fdt_header),
- sizeof(struct fdt_reserve_entry));
- fdt_set_off_mem_rsvmap(fdt, struct_start);
- fdt_set_version(fdt, FDT_LAST_SUPPORTED_VERSION);
- fdt_set_last_comp_version(fdt, FDT_FIRST_SUPPORTED_VERSION);
-
- for (i = size = 0; i < count; i++)
- size += region[i].size;
-
- if (count > 0 && (disp->flags & FDT_REG_ADD_MEM_RSVMAP)) {
- struct_start += region[0].size;
- size -= region[0].size;
- }
- fdt_set_off_dt_struct(fdt, struct_start);
-
- if (count >= 2 && (disp->flags & FDT_REG_ADD_STRING_TAB)) {
- int str_size;
- str_size = region[count - 1].size;
- fdt_set_size_dt_struct(fdt, size - str_size);
- fdt_set_off_dt_strings(fdt, struct_start + size - str_size);
- fdt_set_size_dt_strings(fdt, str_size);
- fdt_set_totalsize(fdt, struct_start + size);
- }
-
- ptr = 0;
- if (disp->header) {
- ptr = sizeof(*fdt);
- while (ptr < fdt_off_mem_rsvmap(fdt))
- out[ptr++] = '\0';
- }
-
- for (i = 0; i < count; i++) {
- struct fdt_region *reg = ®ion[i];
- memcpy(out + ptr, (const char *)blob + reg->offset, reg->size);
- ptr += reg->size;
- }
- return ptr;
- }
- static void show_region_list(struct fdt_region *reg, int count)
- {
- int i;
- printf("Regions: %d\n", count);
- for (i = 0; i < count; i++, reg++) {
- printf("%d: %-10x %-10x\n", i, reg->offset,
- reg->offset + reg->size);
- }
- }
- static int check_type_include(void *priv, int type, const char *data, int size)
- {
- struct display_info *disp = priv;
- struct value_node *val;
- int match, none_match = FDT_IS_ANY;
-
- debug("type=%x, data=%s\n", type, data ? data : "(null)");
- if (!((disp->types_inc | disp->types_exc) & type)) {
- debug(" - not in any condition\n");
- return -1;
- }
-
- for (val = disp->value_head; val; val = val->next) {
- if (!(type & val->type))
- continue;
- match = fdt_stringlist_contains(data, size, val->string);
- debug(" - val->type=%x, str='%s', match=%d\n",
- val->type, val->string, match);
- if (match && val->include) {
- debug(" - match inc %s\n", val->string);
- return 1;
- }
- if (match)
- none_match &= ~val->type;
- }
-
- if ((type & disp->types_exc) && (none_match & type)) {
- debug(" - match exc\n");
-
- if (type == FDT_IS_NODE && disp->types_exc == FDT_ANY_GLOBAL) {
- debug(" - supressed exc node\n");
- return -1;
- }
- return 1;
- }
-
- if (type == FDT_IS_NODE && disp->types_inc == FDT_ANY_GLOBAL)
- return -1;
- debug(" - no match, types_inc=%x, types_exc=%x, none_match=%x\n",
- disp->types_inc, disp->types_exc, none_match);
- return 0;
- }
- static int h_include(void *priv, const void *fdt, int offset, int type,
- const char *data, int size)
- {
- struct display_info *disp = priv;
- int inc, len;
- inc = check_type_include(priv, type, data, size);
- if (disp->include_root && type == FDT_IS_PROP && offset == 0 && inc)
- return 1;
-
- if (inc == -1 && type == FDT_IS_NODE) {
- debug(" - checking compatible2\n");
- data = fdt_getprop(fdt, offset, "compatible", &len);
- inc = check_type_include(priv, FDT_IS_COMPAT, data, len);
- }
-
- if (inc != 1 && type == FDT_IS_NODE &&
- (disp->types_inc & FDT_NODE_HAS_PROP)) {
- debug(" - checking node '%s'\n",
- fdt_get_name(fdt, offset, NULL));
- for (offset = fdt_first_property_offset(fdt, offset);
- offset > 0 && inc != 1;
- offset = fdt_next_property_offset(fdt, offset)) {
- const struct fdt_property *prop;
- const char *str;
- prop = fdt_get_property_by_offset(fdt, offset, NULL);
- if (!prop)
- continue;
- str = fdt_string(fdt, fdt32_to_cpu(prop->nameoff));
- inc = check_type_include(priv, FDT_NODE_HAS_PROP, str,
- strlen(str));
- }
- if (inc == -1)
- inc = 0;
- }
- switch (inc) {
- case 1:
- inc = !disp->invert;
- break;
- case 0:
- inc = disp->invert;
- break;
- }
- debug(" - returning %d\n", inc);
- return inc;
- }
- static int h_cmp_region(const void *v1, const void *v2)
- {
- const struct fdt_region *region1 = v1, *region2 = v2;
- return region1->offset - region2->offset;
- }
- static int fdtgrep_find_regions(const void *fdt,
- int (*include_func)(void *priv, const void *fdt, int offset,
- int type, const char *data, int size),
- struct display_info *disp, struct fdt_region *region,
- int max_regions, char *path, int path_len, int flags)
- {
- struct fdt_region_state state;
- int count;
- int ret;
- count = 0;
- ret = fdt_first_region(fdt, include_func, disp,
- ®ion[count++], path, path_len,
- disp->flags, &state);
- while (ret == 0) {
- ret = fdt_next_region(fdt, include_func, disp,
- count < max_regions ? ®ion[count] : NULL,
- path, path_len, disp->flags, &state);
- if (!ret)
- count++;
- }
- if (ret && ret != -FDT_ERR_NOTFOUND)
- return ret;
-
- if (disp->add_aliases && count < max_regions) {
- int new_count;
- new_count = fdt_add_alias_regions(fdt, region, count,
- max_regions, &state);
- if (new_count == -FDT_ERR_NOTFOUND) {
-
- } else if (new_count < 0) {
- return new_count;
- } else if (new_count <= max_regions) {
-
- count = new_count;
- qsort(region, count, sizeof(struct fdt_region),
- h_cmp_region);
- }
- }
- return count;
- }
- int utilfdt_read_err_len(const char *filename, char **buffp, off_t *len)
- {
- int fd = 0;
- char *buf = NULL;
- off_t bufsize = 1024, offset = 0;
- int ret = 0;
- *buffp = NULL;
- if (strcmp(filename, "-") != 0) {
- fd = open(filename, O_RDONLY);
- if (fd < 0)
- return errno;
- }
-
- buf = malloc(bufsize);
- if (!buf)
- return -ENOMEM;
- do {
-
- if (offset == bufsize) {
- bufsize *= 2;
- buf = realloc(buf, bufsize);
- if (!buf)
- return -ENOMEM;
- }
- ret = read(fd, &buf[offset], bufsize - offset);
- if (ret < 0) {
- ret = errno;
- break;
- }
- offset += ret;
- } while (ret != 0);
-
- close(fd);
- if (ret)
- free(buf);
- else
- *buffp = buf;
- *len = bufsize;
- return ret;
- }
- int utilfdt_read_err(const char *filename, char **buffp)
- {
- off_t len;
- return utilfdt_read_err_len(filename, buffp, &len);
- }
- char *utilfdt_read_len(const char *filename, off_t *len)
- {
- char *buff;
- int ret = utilfdt_read_err_len(filename, &buff, len);
- if (ret) {
- fprintf(stderr, "Couldn't open blob from '%s': %s\n", filename,
- strerror(ret));
- return NULL;
- }
-
- return buff;
- }
- char *utilfdt_read(const char *filename)
- {
- off_t len;
- return utilfdt_read_len(filename, &len);
- }
- static int do_fdtgrep(struct display_info *disp, const char *filename)
- {
- struct fdt_region *region;
- int max_regions;
- int count = 100;
- char path[1024];
- char *blob;
- int i, ret;
- blob = utilfdt_read(filename);
- if (!blob)
- return -1;
- ret = fdt_check_header(blob);
- if (ret) {
- fprintf(stderr, "Error: %s\n", fdt_strerror(ret));
- return ret;
- }
-
- if (fdt_version(blob) < 17 && disp->value_head) {
- fprintf(stderr,
- "Warning: fdtgrep does not fully support version %d files\n",
- fdt_version(blob));
- }
-
- for (i = 0; i < 3; i++) {
- region = malloc(count * sizeof(struct fdt_region));
- if (!region) {
- fprintf(stderr, "Out of memory for %d regions\n",
- count);
- return -1;
- }
- max_regions = count;
- count = fdtgrep_find_regions(blob,
- h_include, disp,
- region, max_regions, path, sizeof(path),
- disp->flags);
- if (count < 0) {
- report_error("fdt_find_regions", count);
- if (count == -FDT_ERR_BADLAYOUT)
- fprintf(stderr,
- "/aliases node must come before all other nodes\n");
- return -1;
- }
- if (count <= max_regions)
- break;
- free(region);
- }
-
- if (disp->region_list)
- show_region_list(region, count);
-
- if (disp->output == OUT_DTS) {
- ret = display_fdt_by_regions(disp, blob, region, count);
- } else {
- void *fdt;
-
- int size = fdt_totalsize(blob) + 16;
- fdt = malloc(size);
- if (!fdt) {
- fprintf(stderr, "Out_of_memory\n");
- ret = -1;
- goto err;
- }
- size = dump_fdt_regions(disp, blob, region, count, fdt);
- if (disp->remove_strings) {
- void *out;
- out = malloc(size);
- if (!out) {
- fprintf(stderr, "Out_of_memory\n");
- ret = -1;
- goto err;
- }
- ret = fdt_remove_unused_strings(fdt, out);
- if (ret < 0) {
- fprintf(stderr,
- "Failed to remove unused strings: err=%d\n",
- ret);
- goto err;
- }
- free(fdt);
- fdt = out;
- ret = fdt_pack(fdt);
- if (ret < 0) {
- fprintf(stderr, "Failed to pack: err=%d\n",
- ret);
- goto err;
- }
- size = fdt_totalsize(fdt);
- }
- if (size != fwrite(fdt, 1, size, disp->fout)) {
- fprintf(stderr, "Write failure, %d bytes\n", size);
- free(fdt);
- ret = 1;
- goto err;
- }
- free(fdt);
- }
- err:
- free(blob);
- free(region);
- return ret;
- }
- static const char usage_synopsis[] =
- "fdtgrep - extract portions from device tree\n"
- "\n"
- "Usage:\n"
- " fdtgrep <options> <dt file>|-\n\n"
- "Output formats are:\n"
- "\tdts - device tree soure text\n"
- "\tdtb - device tree blob (sets -Hmt automatically)\n"
- "\tbin - device tree fragment (may not be a valid .dtb)";
- #define USAGE_COMMON_SHORT_OPTS "hV"
- #define a_argument required_argument
- #define USAGE_COMMON_LONG_OPTS \
- {"help", no_argument, NULL, 'h'}, \
- {"version", no_argument, NULL, 'V'}, \
- {NULL, no_argument, NULL, 0x0}
- #define USAGE_COMMON_OPTS_HELP \
- "Print this help and exit", \
- "Print version and exit", \
- NULL
- #define case_USAGE_COMMON_FLAGS \
- case 'h': usage(NULL); \
- case 'V': util_version(); \
- case '?': usage("unknown option");
- static const char usage_short_opts[] =
- "haAc:b:C:defg:G:HIlLmn:N:o:O:p:P:rRsStTv"
- USAGE_COMMON_SHORT_OPTS;
- static struct option const usage_long_opts[] = {
- {"show-address", no_argument, NULL, 'a'},
- {"colour", no_argument, NULL, 'A'},
- {"include-node-with-prop", a_argument, NULL, 'b'},
- {"include-compat", a_argument, NULL, 'c'},
- {"exclude-compat", a_argument, NULL, 'C'},
- {"diff", no_argument, NULL, 'd'},
- {"enter-node", no_argument, NULL, 'e'},
- {"show-offset", no_argument, NULL, 'f'},
- {"include-match", a_argument, NULL, 'g'},
- {"exclude-match", a_argument, NULL, 'G'},
- {"show-header", no_argument, NULL, 'H'},
- {"show-version", no_argument, NULL, 'I'},
- {"list-regions", no_argument, NULL, 'l'},
- {"list-strings", no_argument, NULL, 'L'},
- {"include-mem", no_argument, NULL, 'm'},
- {"include-node", a_argument, NULL, 'n'},
- {"exclude-node", a_argument, NULL, 'N'},
- {"include-prop", a_argument, NULL, 'p'},
- {"exclude-prop", a_argument, NULL, 'P'},
- {"remove-strings", no_argument, NULL, 'r'},
- {"include-root", no_argument, NULL, 'R'},
- {"show-subnodes", no_argument, NULL, 's'},
- {"skip-supernodes", no_argument, NULL, 'S'},
- {"show-stringtab", no_argument, NULL, 't'},
- {"show-aliases", no_argument, NULL, 'T'},
- {"out", a_argument, NULL, 'o'},
- {"out-format", a_argument, NULL, 'O'},
- {"invert-match", no_argument, NULL, 'v'},
- USAGE_COMMON_LONG_OPTS,
- };
- static const char * const usage_opts_help[] = {
- "Display address",
- "Show all nodes/tags, colour those that match",
- "Include contains containing property",
- "Compatible nodes to include in grep",
- "Compatible nodes to exclude in grep",
- "Diff: Mark matching nodes with +, others with -",
- "Enter direct subnode names of matching nodes",
- "Display offset",
- "Node/property/compatible string to include in grep",
- "Node/property/compatible string to exclude in grep",
- "Output a header",
- "Put \"/dts-v1/;\" on first line of dts output",
- "Output a region list",
- "List strings in string table",
- "Include mem_rsvmap section in binary output",
- "Node to include in grep",
- "Node to exclude in grep",
- "Property to include in grep",
- "Property to exclude in grep",
- "Remove unused strings from string table",
- "Include root node and all properties",
- "Show all subnodes matching nodes",
- "Don't include supernodes of matching nodes",
- "Include string table in binary output",
- "Include matching aliases in output",
- "-o <output file>",
- "-O <output format>",
- "Invert the sense of matching (select non-matching lines)",
- USAGE_COMMON_OPTS_HELP
- };
- #define util_getopt_long() getopt_long(argc, argv, usage_short_opts, \
- usage_long_opts, NULL)
- void util_usage(const char *errmsg, const char *synopsis,
- const char *short_opts, struct option const long_opts[],
- const char * const opts_help[])
- {
- FILE *fp = errmsg ? stderr : stdout;
- const char a_arg[] = "<arg>";
- size_t a_arg_len = strlen(a_arg) + 1;
- size_t i;
- int optlen;
- fprintf(fp,
- "Usage: %s\n"
- "\n"
- "Options: -[%s]\n", synopsis, short_opts);
-
- optlen = 0;
- for (i = 0; long_opts[i].name; ++i) {
-
- int l = strlen(long_opts[i].name) + 1;
- if (long_opts[i].has_arg == a_argument)
- l += a_arg_len;
- if (optlen < l)
- optlen = l;
- }
- for (i = 0; long_opts[i].name; ++i) {
-
- assert(opts_help[i] != NULL);
-
- if (long_opts[i].val > '~')
- fprintf(fp, " ");
- else
- fprintf(fp, " -%c, ", long_opts[i].val);
-
- if (long_opts[i].has_arg == no_argument) {
- fprintf(fp, "--%-*s", optlen, long_opts[i].name);
- } else {
- fprintf(fp, "--%s %s%*s", long_opts[i].name, a_arg,
- (int)(optlen - strlen(long_opts[i].name) -
- a_arg_len), "");
- }
-
- fprintf(fp, "%s\n", opts_help[i]);
- }
- if (errmsg) {
- fprintf(fp, "\nError: %s\n", errmsg);
- exit(EXIT_FAILURE);
- } else {
- exit(EXIT_SUCCESS);
- }
- }
- #define usage(errmsg) \
- util_usage(errmsg, usage_synopsis, usage_short_opts, \
- usage_long_opts, usage_opts_help)
- void util_version(void)
- {
- printf("Version: %s\n", "(U-Boot)");
- exit(0);
- }
- static void scan_args(struct display_info *disp, int argc, char *argv[])
- {
- int opt;
- while ((opt = util_getopt_long()) != EOF) {
- int type = 0;
- int inc = 1;
- switch (opt) {
- case_USAGE_COMMON_FLAGS
- case 'a':
- disp->show_addr = 1;
- break;
- case 'A':
- disp->all = 1;
- break;
- case 'b':
- type = FDT_NODE_HAS_PROP;
- break;
- case 'C':
- inc = 0;
-
- case 'c':
- type = FDT_IS_COMPAT;
- break;
- case 'd':
- disp->diff = 1;
- break;
- case 'e':
- disp->flags |= FDT_REG_DIRECT_SUBNODES;
- break;
- case 'f':
- disp->show_offset = 1;
- break;
- case 'G':
- inc = 0;
-
- case 'g':
- type = FDT_ANY_GLOBAL;
- break;
- case 'H':
- disp->header = 1;
- break;
- case 'l':
- disp->region_list = 1;
- break;
- case 'L':
- disp->list_strings = 1;
- break;
- case 'm':
- disp->flags |= FDT_REG_ADD_MEM_RSVMAP;
- break;
- case 'N':
- inc = 0;
-
- case 'n':
- type = FDT_IS_NODE;
- break;
- case 'o':
- disp->output_fname = optarg;
- break;
- case 'O':
- if (!strcmp(optarg, "dtb"))
- disp->output = OUT_DTB;
- else if (!strcmp(optarg, "dts"))
- disp->output = OUT_DTS;
- else if (!strcmp(optarg, "bin"))
- disp->output = OUT_BIN;
- else
- usage("Unknown output format");
- break;
- case 'P':
- inc = 0;
-
- case 'p':
- type = FDT_IS_PROP;
- break;
- case 'r':
- disp->remove_strings = 1;
- break;
- case 'R':
- disp->include_root = 1;
- break;
- case 's':
- disp->flags |= FDT_REG_ALL_SUBNODES;
- break;
- case 'S':
- disp->flags &= ~FDT_REG_SUPERNODES;
- break;
- case 't':
- disp->flags |= FDT_REG_ADD_STRING_TAB;
- break;
- case 'T':
- disp->add_aliases = 1;
- break;
- case 'v':
- disp->invert = 1;
- break;
- case 'I':
- disp->show_dts_version = 1;
- break;
- }
- if (type && value_add(disp, &disp->value_head, type, inc,
- optarg))
- usage("Cannot add value");
- }
- if (disp->invert && disp->types_exc)
- usage("-v has no meaning when used with 'exclude' conditions");
- }
- int main(int argc, char *argv[])
- {
- char *filename = NULL;
- struct display_info disp;
- int ret;
-
- memset(&disp, '\0', sizeof(disp));
- disp.flags = FDT_REG_SUPERNODES;
- scan_args(&disp, argc, argv);
-
- disp.colour = disp.all && isatty(0);
-
- while (optind < argc - 1) {
- if (value_add(&disp, &disp.value_head, FDT_IS_ANY, 1,
- argv[optind++]))
- usage("Cannot add value");
- }
- if (optind < argc)
- filename = argv[optind++];
- if (!filename)
- usage("Missing filename");
-
- if (disp.output == OUT_DTB) {
- disp.header = 1;
- disp.flags |= FDT_REG_ADD_MEM_RSVMAP | FDT_REG_ADD_STRING_TAB;
- }
- if (disp.output_fname) {
- disp.fout = fopen(disp.output_fname, "w");
- if (!disp.fout)
- usage("Cannot open output file");
- } else {
- disp.fout = stdout;
- }
-
- ret = do_fdtgrep(&disp, filename);
- if (disp.output_fname)
- fclose(disp.fout);
- if (ret)
- return 1;
- return 0;
- }
|