]> git.ozlabs.org Git - petitboot/commitdiff
Separate parsing infrastructure and add test wrapper
authorJeremy Kerr <jk@ozlabs.org>
Thu, 5 Apr 2007 08:48:02 +0000 (18:48 +1000)
committerJeremy Kerr <jk@ozlabs.org>
Thu, 5 Apr 2007 08:48:02 +0000 (18:48 +1000)
Add a parsers.h header, providing the interface that parsers should
be written to (instead of the olf udev-helper.h). This allows us to
build the parsers into a separate test executable.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Makefile
devices/kboot-parser.c
devices/message.h
devices/native-parser.c
devices/parser-test.c [new file with mode: 0644]
devices/parser.c [new file with mode: 0644]
devices/parser.h [new file with mode: 0644]
devices/udev-helper.c
devices/udev-helper.h [deleted file]
devices/yaboot-parser.c

index 21bbd1b3f2c7ad018d2330b48b25a4f9ebd67f8f..54e8f9a67eba36ff0984e7c802ad068a4d01d1b7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,13 @@ petitboot: petitboot.o devices.o
 petitboot: LDFLAGS+=$(TWIN_LDFLAGS)
 petitboot: CFLAGS+=$(TWIN_CFLAGS)
 
 petitboot: LDFLAGS+=$(TWIN_LDFLAGS)
 petitboot: CFLAGS+=$(TWIN_CFLAGS)
 
-udev-helper: devices/udev-helper.o devices/params.o devices/yaboot-cfg.o \
+udev-helper: devices/udev-helper.o devices/params.o devices/parser.o \
+               devices/yaboot-cfg.o \
+               $(foreach p,$(PARSERS),devices/$(p)-parser.o)
+       $(CC) $(LDFLAGS) -o $@ $^
+
+parser-test: devices/parser-test.o devices/params.o devices/parser.o \
+               devices/yaboot-cfg.o \
                $(foreach p,$(PARSERS),devices/$(p)-parser.o)
        $(CC) $(LDFLAGS) -o $@ $^
 
                $(foreach p,$(PARSERS),devices/$(p)-parser.o)
        $(CC) $(LDFLAGS) -o $@ $^
 
index 4b997e7bca7098646c86b376b262fb3689f1fbe8..ef1f247b8b39ffd5ce879220d314933ca7ebf5d2 100644 (file)
@@ -10,7 +10,7 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 
 #include <sys/types.h>
 #include <sys/stat.h>
 
-#include "udev-helper.h"
+#include "parser.h"
 #include "params.h"
 
 #define buf_size 1024
 #include "params.h"
 
 #define buf_size 1024
index 2e8bbba81578f10679c53597ac78819fae32133b..7a5d4f288e3c86b22d5f32589dd344ab11e6e8a0 100644 (file)
@@ -1,4 +1,7 @@
 
 
+#ifndef _MESSAGE_H
+#define _MESSAGE_H
+
 enum device_action {
        DEV_ACTION_ADD_DEVICE = 0,
        DEV_ACTION_ADD_OPTION = 1,
 enum device_action {
        DEV_ACTION_ADD_DEVICE = 0,
        DEV_ACTION_ADD_OPTION = 1,
@@ -24,3 +27,4 @@ struct boot_option {
 };
 
 
 };
 
 
+#endif /* _MESSAGE_H */
index 4f94d9da343cda29d9298bc23e4a42f19f16ebe3..5f7945111fcfa6e4712a55df2024167e951d8598 100644 (file)
@@ -1,5 +1,5 @@
 
 
-#include "udev-helper.h"
+#include "parser.h"
 #include "params.h"
 
 #include <stdlib.h>
 #include "params.h"
 
 #include <stdlib.h>
diff --git a/devices/parser-test.c b/devices/parser-test.c
new file mode 100644 (file)
index 0000000..9b106b6
--- /dev/null
@@ -0,0 +1,63 @@
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <stdarg.h>
+#include <unistd.h>
+
+#include "parser.h"
+
+void pb_log(const char *fmt, ...)
+{
+       va_list ap;
+
+       va_start(ap, fmt);
+       fprintf(stderr, fmt, ap);
+       va_end(ap);
+}
+
+
+int mount_device(const char *dev_path, char *mount_path)
+{
+       pb_log("attempt to mount device (%s) not supported\n", dev_path);
+       return -1;
+}
+
+int add_device(const struct device *dev)
+{
+       printf("device added:\n");
+       printf("\tid: %s\n", dev->id);
+       printf("\tname: %s\n", dev->name);
+       printf("\tdescription: %s\n", dev->description);
+       printf("\tboot_image: %s\n", dev->icon_file);
+       return 0;
+}
+
+int add_boot_option(const struct boot_option *opt)
+{
+       printf("option added:\n");
+       printf("\tname: %s\n", opt->name);
+       printf("\tdescription: %s\n", opt->description);
+       printf("\tboot_image: %s\n", opt->boot_image_file);
+       printf("\tinitrd: %s\n", opt->initrd_file);
+       printf("\tboot_args: %s\n", opt->boot_args);
+       return 0;
+}
+
+enum generic_icon_type guess_device_type(void)
+{
+       return ICON_TYPE_UNKNOWN;
+}
+
+int main(int argc, char **argv)
+{
+       const char *dev = "/dev/null";
+
+       if (argc != 2) {
+               fprintf(stderr, "usage: %s <fake-mountpoint>\n", argv[0]);
+               return EXIT_FAILURE;
+       }
+
+       iterate_parsers(dev, argv[1]);
+
+       return EXIT_SUCCESS;
+}
diff --git a/devices/parser.c b/devices/parser.c
new file mode 100644 (file)
index 0000000..b9edff7
--- /dev/null
@@ -0,0 +1,99 @@
+
+#include <petitboot-paths.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "parser.h"
+
+extern struct parser native_parser;
+extern struct parser yaboot_parser;
+extern struct parser kboot_parser;
+
+/* array of parsers, ordered by priority */
+static struct parser *parsers[] = {
+       &native_parser,
+       &yaboot_parser,
+       &kboot_parser,
+       NULL
+};
+
+void iterate_parsers(const char *devpath, const char *mountpoint)
+{
+       int i;
+
+       pb_log("trying parsers for %s@%s\n", devpath, mountpoint);
+
+       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, mountpoint))
+                       /*return*/;
+       }
+       pb_log("\tno boot_options found\n");
+}
+
+/* convenience functions for parsers */
+void free_device(struct device *dev)
+{
+       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);
+}
+
+void free_boot_option(struct boot_option *opt)
+{
+       if (!opt)
+               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);
+}
+
+char *join_paths(const char *a, const char *b)
+{
+       char *full_path;
+
+       full_path = malloc(strlen(a) + strlen(b) + 2);
+
+       strcpy(full_path, a);
+       if (b[0] != '/')
+               strcat(full_path, "/");
+       strcat(full_path, b);
+
+       return full_path;
+}
+
+const char *generic_icon_file(enum generic_icon_type type)
+{
+       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:
+               break;
+       }
+       return artwork_pathname("hdd.png");
+}
+
diff --git a/devices/parser.h b/devices/parser.h
new file mode 100644 (file)
index 0000000..2034cf1
--- /dev/null
@@ -0,0 +1,45 @@
+
+#ifndef _PARSERS_H
+#define _PARSERS_H
+
+#include <stdarg.h>
+#include "message.h"
+
+struct parser {
+       char *name;
+       int priority;
+       int (*parse)(const char *devicepath, const char *mountpoint);
+       struct parser *next;
+};
+
+enum generic_icon_type {
+       ICON_TYPE_DISK,
+       ICON_TYPE_USB,
+       ICON_TYPE_OPTICAL,
+       ICON_TYPE_NETWORK,
+       ICON_TYPE_UNKNOWN
+};
+
+#define streq(a,b) (!strcasecmp((a),(b)))
+
+/* general functions provided by parsers.c */
+void iterate_parsers(const char *devpath, const char *mountpoint);
+
+void free_device(struct device *dev);
+void free_boot_option(struct boot_option *opt);
+
+char *join_paths(const char *a, const char *b);
+
+const char *generic_icon_file(enum generic_icon_type type);
+
+/* functions provided by udev-helper or the test wrapper */
+void pb_log(const char *fmt, ...);
+
+int mount_device(const char *dev_path, char *mount_path);
+
+enum generic_icon_type guess_device_type(void);
+
+int add_device(const struct device *dev);
+int add_boot_option(const struct boot_option *opt);
+
+#endif /* _PARSERS_H */
index 84b2bef95947cd16ea70ce5d311998f250ff5bd9..f0b80b3a0c330a344ca8a21a215dc44326d812e4 100644 (file)
@@ -1,6 +1,7 @@
 
 #include <stdio.h>
 #include <stdlib.h>
 
 #include <stdio.h>
 #include <stdlib.h>
+#include <stdarg.h>
 #include <stdint.h>
 #include <unistd.h>
 #include <sys/types.h>
 #include <stdint.h>
 #include <unistd.h>
 #include <sys/types.h>
@@ -15,7 +16,7 @@
 #include <linux/cdrom.h>
 #include <sys/ioctl.h>
 
 #include <linux/cdrom.h>
 #include <sys/ioctl.h>
 
-#include "udev-helper.h"
+#include "parser.h"
 #include "petitboot-paths.h"
 
 /* Define below to operate without the frontend */
 #include "petitboot-paths.h"
 
 /* Define below to operate without the frontend */
 /* Delay in seconds between polling of removable devices */
 #define REMOVABLE_SLEEP_DELAY  2
 
 /* Delay in seconds between polling of removable devices */
 #define REMOVABLE_SLEEP_DELAY  2
 
-extern struct parser native_parser;
-extern struct parser yaboot_parser;
-extern struct parser kboot_parser;
 static FILE *logf;
 static int sock;
 
 static FILE *logf;
 static int sock;
 
-/* array of parsers, ordered by priority */
-static struct parser *parsers[] = {
-       &native_parser,
-       &yaboot_parser,
-       &kboot_parser,
-       NULL
-};
-
-#define log(...) fprintf(logf, __VA_ARGS__)
-
-static void iterate_parsers(const char *devpath, const char *mountpoint)
+void pb_log(const char *fmt, ...)
 {
 {
-       int i;
-
-       log("trying parsers for %s@%s\n", devpath, mountpoint);
+       va_list ap;
 
 
-       for (i = 0; parsers[i]; i++) {
-               log("\ttrying parser '%s'\n", parsers[i]->name);
-               /* just use a dummy device path for now */
-               if (parsers[i]->parse(devpath, mountpoint))
-                       /*return*/;
-       }
-       log("\tno boot_options found\n");
+       va_start(ap, fmt);
+       fprintf(logf, fmt, ap);
+       va_end(ap);
 }
 
 static void print_boot_option(const struct boot_option *opt)
 {
 }
 
 static void print_boot_option(const struct boot_option *opt)
 {
-       log("\tname: %s\n", opt->name);
-       log("\tdescription: %s\n", opt->description);
-       log("\tboot_image: %s\n", opt->boot_image_file);
-       log("\tinitrd: %s\n", opt->initrd_file);
-       log("\tboot_args: %s\n", opt->boot_args);
+       pb_log("\tname: %s\n", opt->name);
+       pb_log("\tdescription: %s\n", opt->description);
+       pb_log("\tboot_image: %s\n", opt->boot_image_file);
+       pb_log("\tinitrd: %s\n", opt->initrd_file);
+       pb_log("\tboot_args: %s\n", opt->boot_args);
 
 }
 
 static void print_device(const struct device *dev)
 {
 
 }
 
 static void print_device(const struct device *dev)
 {
-       log("\tid: %s\n", dev->id);
-       log("\tname: %s\n", dev->name);
-       log("\tdescription: %s\n", dev->description);
-       log("\tboot_image: %s\n", dev->icon_file);
-}
-
-
-void free_device(struct device *dev)
-{
-       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);
-}
-
-void free_boot_option(struct boot_option *opt)
-{
-       if (!opt)
-               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);
+       pb_log("\tid: %s\n", dev->id);
+       pb_log("\tname: %s\n", dev->name);
+       pb_log("\tdescription: %s\n", dev->description);
+       pb_log("\tboot_image: %s\n", dev->icon_file);
 }
 
 static int write_action(int fd, enum device_action action)
 }
 
 static int write_action(int fd, enum device_action action)
@@ -122,7 +69,7 @@ static int write_string(int fd, const char *str)
        if (!str) {
                len_buf = 0;
                if (write(fd, &len_buf, sizeof(len_buf)) != sizeof(len_buf)) {
        if (!str) {
                len_buf = 0;
                if (write(fd, &len_buf, sizeof(len_buf)) != sizeof(len_buf)) {
-                       log("write failed: %s\n", strerror(errno));
+                       pb_log("write failed: %s\n", strerror(errno));
                        return -1;
                }
                return 0;
                        return -1;
                }
                return 0;
@@ -130,20 +77,20 @@ static int write_string(int fd, const char *str)
 
        len = strlen(str);
        if (len > (1ull << (sizeof(len_buf) * 8 - 1))) {
 
        len = strlen(str);
        if (len > (1ull << (sizeof(len_buf) * 8 - 1))) {
-               log("string too large\n");
+               pb_log("string too large\n");
                return -1;
        }
 
        len_buf = __cpu_to_be32(len);
        if (write(fd, &len_buf, sizeof(len_buf)) != sizeof(len_buf)) {
                return -1;
        }
 
        len_buf = __cpu_to_be32(len);
        if (write(fd, &len_buf, sizeof(len_buf)) != sizeof(len_buf)) {
-               log("write failed: %s\n", strerror(errno));
+               pb_log("write failed: %s\n", strerror(errno));
                return -1;
        }
 
        while (pos < len) {
                int rc = write(fd, str, len - pos);
                if (rc <= 0) {
                return -1;
        }
 
        while (pos < len) {
                int rc = write(fd, str, len - pos);
                if (rc <= 0) {
-                       log("write failed: %s\n", strerror(errno));
+                       pb_log("write failed: %s\n", strerror(errno));
                        return -1;
                }
                pos += rc;
                        return -1;
                }
                pos += rc;
@@ -157,7 +104,7 @@ int add_device(const struct device *dev)
 {
        int rc;
 
 {
        int rc;
 
-       log("device added:\n");
+       pb_log("device added:\n");
        print_device(dev);
        rc = write_action(sock, DEV_ACTION_ADD_DEVICE) ||
                write_string(sock, dev->id) ||
        print_device(dev);
        rc = write_action(sock, DEV_ACTION_ADD_DEVICE) ||
                write_string(sock, dev->id) ||
@@ -166,7 +113,7 @@ int add_device(const struct device *dev)
                write_string(sock, dev->icon_file);
 
        if (rc)
                write_string(sock, dev->icon_file);
 
        if (rc)
-               log("error writing device %s to socket\n", dev->name);
+               pb_log("error writing device %s to socket\n", dev->name);
 
        return rc;
 }
 
        return rc;
 }
@@ -175,7 +122,7 @@ int add_boot_option(const struct boot_option *opt)
 {
        int rc;
 
 {
        int rc;
 
-       log("boot option added:\n");
+       pb_log("boot option added:\n");
        print_boot_option(opt);
 
        rc = write_action(sock, DEV_ACTION_ADD_OPTION) ||
        print_boot_option(opt);
 
        rc = write_action(sock, DEV_ACTION_ADD_OPTION) ||
@@ -188,7 +135,7 @@ int add_boot_option(const struct boot_option *opt)
                write_string(sock, opt->boot_args);
 
        if (rc)
                write_string(sock, opt->boot_args);
 
        if (rc)
-               log("error writing boot option %s to socket\n", opt->name);
+               pb_log("error writing boot option %s to socket\n", opt->name);
 
        return rc;
 }
 
        return rc;
 }
@@ -207,7 +154,7 @@ int connect_to_socket()
 
        fd = socket(PF_UNIX, SOCK_STREAM, 0);
        if (fd == -1) {
 
        fd = socket(PF_UNIX, SOCK_STREAM, 0);
        if (fd == -1) {
-               log("can't create socket: %s\n", strerror(errno));
+               pb_log("can't create socket: %s\n", strerror(errno));
                return -1;
        }
 
                return -1;
        }
 
@@ -215,7 +162,7 @@ int connect_to_socket()
        strcpy(addr.sun_path, PBOOT_DEVICE_SOCKET);
 
        if (connect(fd, (struct sockaddr *)&addr, sizeof(addr))) {
        strcpy(addr.sun_path, PBOOT_DEVICE_SOCKET);
 
        if (connect(fd, (struct sockaddr *)&addr, sizeof(addr))) {
-               log("can't connect to %s: %s\n",
+               pb_log("can't connect to %s: %s\n",
                                addr.sun_path, strerror(errno));
                return -1;
        }
                                addr.sun_path, strerror(errno));
                return -1;
        }
@@ -226,7 +173,7 @@ int connect_to_socket()
        int fd;
        fd = open("./debug_socket", O_WRONLY | O_CREAT, 0640);
        if (fd < 0) {
        int fd;
        fd = open("./debug_socket", O_WRONLY | O_CREAT, 0640);
        if (fd < 0) {
-               log("can't create output file: %s\n", strerror(errno));
+               pb_log("can't create output file: %s\n", strerror(errno));
                return -1;
        }
        sock = fd;
                return -1;
        }
        sock = fd;
@@ -251,14 +198,14 @@ int mount_device(const char *dev_path, char *mount_path)
        sprintf(dir, "%s/mnt-%s-XXXXXX", TMP_DIR, basename);
 
        if (!mkdtemp(dir)) {
        sprintf(dir, "%s/mnt-%s-XXXXXX", TMP_DIR, basename);
 
        if (!mkdtemp(dir)) {
-               log("failed to create temporary directory in %s: %s",
+               pb_log("failed to create temporary directory in %s: %s",
                                TMP_DIR, strerror(errno));
                goto out;
        }
 
        pid = fork();
        if (pid == -1) {
                                TMP_DIR, strerror(errno));
                goto out;
        }
 
        pid = fork();
        if (pid == -1) {
-               log("%s: fork failed: %s\n", __FUNCTION__, strerror(errno));
+               pb_log("%s: fork failed: %s\n", __FUNCTION__, strerror(errno));
                goto out;
        }
 
                goto out;
        }
 
@@ -268,7 +215,8 @@ int mount_device(const char *dev_path, char *mount_path)
        }
 
        if (waitpid(pid, &status, 0) == -1) {
        }
 
        if (waitpid(pid, &status, 0) == -1) {
-               log("%s: waitpid failed: %s\n", __FUNCTION__, strerror(errno));
+               pb_log("%s: waitpid failed: %s\n", __FUNCTION__,
+                               strerror(errno));
                goto out;
        }
 
                goto out;
        }
 
@@ -289,7 +237,7 @@ static int unmount_device(const char *dev_path)
        pid = fork();
 
        if (pid == -1) {
        pid = fork();
 
        if (pid == -1) {
-               log("%s: fork failed: %s\n", __FUNCTION__, strerror(errno));
+               pb_log("%s: fork failed: %s\n", __FUNCTION__, strerror(errno));
                return -1;
        }
 
                return -1;
        }
 
@@ -299,7 +247,8 @@ static int unmount_device(const char *dev_path)
        }
 
        if (waitpid(pid, &status, 0) == -1) {
        }
 
        if (waitpid(pid, &status, 0) == -1) {
-               log("%s: waitpid failed: %s\n", __FUNCTION__, strerror(errno));
+               pb_log("%s: waitpid failed: %s\n", __FUNCTION__,
+                               strerror(errno));
                return -1;
        }
 
                return -1;
        }
 
@@ -308,22 +257,6 @@ static int unmount_device(const char *dev_path)
        return rc;
 }
 
        return rc;
 }
 
-const char *generic_icon_file(enum generic_icon_type type)
-{
-       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:
-               break;
-       }
-       return artwork_pathname("hdd.png");
-}
-
 static const struct device fake_boot_devices[] =
 {
        {
 static const struct device fake_boot_devices[] =
 {
        {
@@ -418,11 +351,11 @@ static int found_new_device(const char *dev_path)
        char mountpoint[PATH_MAX];
 
        if (mount_device(dev_path, mountpoint)) {
        char mountpoint[PATH_MAX];
 
        if (mount_device(dev_path, mountpoint)) {
-               log("failed to mount %s\n", dev_path);
+               pb_log("failed to mount %s\n", dev_path);
                return EXIT_FAILURE;
        }
 
                return EXIT_FAILURE;
        }
 
-       log("mounted %s at %s\n", dev_path, mountpoint);
+       pb_log("mounted %s at %s\n", dev_path, mountpoint);
 
        iterate_parsers(dev_path, mountpoint);
 
 
        iterate_parsers(dev_path, mountpoint);
 
@@ -438,7 +371,7 @@ static void detach_and_sleep(int sec)
                return;
 
        if (!forked) {
                return;
 
        if (!forked) {
-               log("running in background...");
+               pb_log("running in background...");
                rc = fork();
                forked = 1;
        }
                rc = fork();
                forked = 1;
        }
@@ -555,11 +488,12 @@ int main(int argc, char **argv)
 
        action = getenv("ACTION");
 
 
        action = getenv("ACTION");
 
-       logf = stdout;
+       logf = fopen("/var/tmp/petitboot-udev-helpers.log", "a");
+       pb_log("%d started\n", getpid());
        rc = EXIT_SUCCESS;
 
        if (!action) {
        rc = EXIT_SUCCESS;
 
        if (!action) {
-               log("missing environment?\n");
+               pb_log("missing environment?\n");
                return EXIT_FAILURE;
        }
 
                return EXIT_FAILURE;
        }
 
@@ -567,7 +501,7 @@ int main(int argc, char **argv)
                return EXIT_FAILURE;
 
        if (streq(action, "fake")) {
                return EXIT_FAILURE;
 
        if (streq(action, "fake")) {
-               log("fake mode");
+               pb_log("fake mode");
 
                add_device(&fake_boot_devices[0]);
                add_boot_option(&fake_boot_options[0]);
 
                add_device(&fake_boot_devices[0]);
                add_boot_option(&fake_boot_options[0]);
@@ -581,7 +515,7 @@ int main(int argc, char **argv)
 
        dev_path = getenv("DEVNAME");
        if (!dev_path) {
 
        dev_path = getenv("DEVNAME");
        if (!dev_path) {
-               log("missing environment?\n");
+               pb_log("missing environment?\n");
                return EXIT_FAILURE;
        }
 
                return EXIT_FAILURE;
        }
 
@@ -595,7 +529,7 @@ int main(int argc, char **argv)
                else
                        rc = found_new_device(dev_path);
        } else if (streq(action, "remove")) {
                else
                        rc = found_new_device(dev_path);
        } else if (streq(action, "remove")) {
-               log("%s removed\n", dev_path);
+               pb_log("%s removed\n", dev_path);
 
                remove_device(dev_path);
 
 
                remove_device(dev_path);
 
@@ -604,24 +538,8 @@ int main(int argc, char **argv)
                        ;
 
        } else {
                        ;
 
        } else {
-               log("invalid action '%s'\n", action);
+               pb_log("invalid action '%s'\n", action);
                rc = EXIT_FAILURE;
        }
        return rc;
 }
                rc = EXIT_FAILURE;
        }
        return rc;
 }
-
-/* convenience function for parsers */
-char *join_paths(const char *a, const char *b)
-{
-       char *full_path;
-
-       full_path = malloc(strlen(a) + strlen(b) + 2);
-
-       strcpy(full_path, a);
-       if (b[0] != '/')
-               strcat(full_path, "/");
-       strcat(full_path, b);
-
-       return full_path;
-}
-
diff --git a/devices/udev-helper.h b/devices/udev-helper.h
deleted file mode 100644 (file)
index 6b9ba9d..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-
-#include "message.h"
-
-int add_device(const struct device *dev);
-
-int add_boot_option(const struct boot_option *opt);
-void free_boot_option(struct boot_option *opt);
-
-char *join_paths(const char *a, const char *b);
-
-int mount_device(const char *dev_path, char *mount_path);
-
-struct parser {
-       char *name;
-       int priority;
-       int (*parse)(const char *devicepath, const char *mountpoint);
-       struct parser *next;
-};
-
-enum generic_icon_type {
-       ICON_TYPE_DISK,
-       ICON_TYPE_USB,
-       ICON_TYPE_OPTICAL,
-       ICON_TYPE_NETWORK,
-       ICON_TYPE_UNKNOWN
-};
-
-enum generic_icon_type guess_device_type(void);
-const char *generic_icon_file(enum generic_icon_type type);
-
-#define streq(a,b) (!strcasecmp((a),(b)))
index ee14cb1b41d144fcbcf1e59cd35791c8cff3a45a..f457abd7dca06682741a19dc7829f305023bb8e7 100644 (file)
@@ -1,5 +1,5 @@
 
 
-#include "udev-helper.h"
+#include "parser.h"
 #include "params.h"
 #include "yaboot-cfg.h"
 
 #include "params.h"
 #include "yaboot-cfg.h"