X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fparser.c;h=e2940e19e1b939a3aaaaf2dca45b28d8a02e418b;hp=5e50dcbdafc292f8c05a29f986f1d5510259938b;hb=d28c07b5e23237a97387435e157e248e19128598;hpb=32e6a41f33e5576716b351bd473a27939fe94fa1 diff --git a/discover/parser.c b/discover/parser.c index 5e50dcb..e2940e1 100644 --- a/discover/parser.c +++ b/discover/parser.c @@ -1,85 +1,186 @@ -#include +#include #include -#include +#include +#include -#include "parser.h" +#include "types/types.h" +#include +#include -extern struct parser native_parser; -extern struct parser yaboot_parser; -extern struct parser kboot_parser; +#include "device-handler.h" +#include "parser.h" +#include "parser-utils.h" +#include "paths.h" -/* array of parsers, ordered by priority */ -static struct parser *parsers[] = { - &native_parser, - &yaboot_parser, - &kboot_parser, - NULL +struct p_item { + struct list_item list; + struct parser *parser; }; -void iterate_parsers(const char *devpath, const char *mountpoint) +STATIC_LIST(parsers); + +static const int max_file_size = 1024 * 1024; + +static int read_file(struct discover_context *ctx, + const char *filename, char **bufp, int *lenp) { - int i; + struct stat statbuf; + int rc, fd, i, len; + char *buf; - pb_log("trying parsers for %s\n", devpath); + fd = open(filename, O_RDONLY); + if (fd < 0) + return -1; + + rc = fstat(fd, &statbuf); + if (rc < 0) + goto err_close; + + len = statbuf.st_size; + if (len > max_file_size) + goto err_close; + + buf = talloc_array(ctx, char, len + 1); + if (!buf) + goto err_close; + + for (i = 0; i < len; i += rc) { + rc = read(fd, buf + i, len - i); + + /* unexpected EOF: trim and return */ + if (rc == 0) { + len = i; + break; + } + + if (rc < 0) + goto err_free; - for (i = 0; parsers[i]; i++) { - pb_log("\ttrying parser '%s'\n", parsers[i]->name); - /* just use a dummy device path for now */ - if (parsers[i]->parse(devpath)) - return; } - pb_log("\tno boot_options found\n"); + + buf[len] = '\0'; + + close(fd); + *bufp = buf; + *lenp = len; + return 0; + +err_free: + talloc_free(buf); +err_close: + close(fd); + return -1; } -/* convenience functions for parsers */ -void free_device(struct device *dev) +static char *local_path(struct discover_context *ctx, + const char *filename) { - if (!dev) - return; - if (dev->id) - free(dev->id); - if (dev->name) - free(dev->name); - if (dev->description) - free(dev->description); - if (dev->icon_file) - free(dev->icon_file); - free(dev); + return join_paths(ctx, ctx->device->mount_path, filename); } -void free_boot_option(struct boot_option *opt) +static int download_config(struct discover_context *ctx, char **buf, int *len) { - if (!opt) + unsigned tempfile; + const char *file; + int rc; + + file = load_url(ctx, ctx->conf_url, &tempfile); + if (!file) + return -1; + + rc = read_file(ctx, file, buf, len); + if (rc) + goto out_clean; + + return 0; + +out_clean: + if (tempfile) + unlink(file); + return -1; +} + +static void iterate_parser_files(struct discover_context *ctx, + const struct parser *parser) +{ + const char * const *filename; + const char *path; + + if (!parser->filenames) return; - if (opt->name) - free(opt->name); - if (opt->description) - free(opt->description); - if (opt->icon_file) - free(opt->icon_file); - if (opt->boot_image_file) - free(opt->boot_image_file); - if (opt->initrd_file) - free(opt->initrd_file); - if (opt->boot_args) - free(opt->boot_args); - free(opt); + + for (filename = parser->filenames; *filename; filename++) { + int rc, len; + char *buf; + + path = local_path(ctx, *filename); + if (!path) + continue; + + rc = read_file(ctx, path, &buf, &len); + if (!rc) { + pb_log("Running parser %s on file %s\n", + parser->name, *filename); + parser->parse(ctx, buf, len); + talloc_free(buf); + } + } } -const char *generic_icon_file(enum generic_icon_type type) +void iterate_parsers(struct discover_context *ctx, enum conf_method method) { - switch (type) { - case ICON_TYPE_DISK: - return artwork_pathname("hdd.png"); - case ICON_TYPE_USB: - return artwork_pathname("usbpen.png"); - case ICON_TYPE_OPTICAL: - return artwork_pathname("cdrom.png"); - case ICON_TYPE_NETWORK: - case ICON_TYPE_UNKNOWN: + struct p_item* i; + int rc, len; + char *buf; + + pb_log("trying parsers for %s\n", ctx->device->device->id); + + switch (method) { + case CONF_METHOD_LOCAL_FILE: + list_for_each_entry(&parsers, i, list) { + if (i->parser->method != CONF_METHOD_LOCAL_FILE) + continue; + + pb_log("\ttrying parser '%s'\n", i->parser->name); + ctx->parser = i->parser; + iterate_parser_files(ctx, ctx->parser); + } + ctx->parser = NULL; + break; + + case CONF_METHOD_DHCP: + rc = download_config(ctx, &buf, &len); + if (rc) { + pb_log("\tdownload failed, aborting\n"); + return; + } + + list_for_each_entry(&parsers, i, list) { + if (i->parser->method != method) + continue; + + pb_log("\ttrying parser '%s'\n", i->parser->name); + ctx->parser = i->parser; + i->parser->parse(ctx, buf, len); + } + + break; + + case CONF_METHOD_UNKNOWN: break; + } - return artwork_pathname("hdd.png"); } +void __register_parser(struct parser *parser) +{ + struct p_item* i = talloc(NULL, struct p_item); + + i->parser = parser; + list_add(&parsers, &i->list); +} + +void parser_init(void) +{ +}