]> git.ozlabs.org Git - petitboot/commitdiff
discover: separate file-reading code into file.c
authorJeremy Kerr <jk@ozlabs.org>
Thu, 8 Aug 2013 06:40:59 +0000 (14:40 +0800)
committerJeremy Kerr <jk@ozlabs.org>
Thu, 8 Aug 2013 08:28:39 +0000 (16:28 +0800)
We'll need to read files in the network config code, so add a 'file'
object, containing the read_file function.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
discover/Makefile.am
discover/file.c [new file with mode: 0644]
discover/file.h [new file with mode: 0644]
discover/parser.c

index e736e936d817d885c55ed8bf3e82086949be503e..45b168f9b726c919eb15bff6caa29c656f147ff4 100644 (file)
@@ -36,6 +36,8 @@ pb_discover_SOURCES = \
        event.c \
        event.h \
        event-parser.c \
+       file.c \
+       file.h \
        params.c \
        params.h \
        parser.c \
diff --git a/discover/file.c b/discover/file.c
new file mode 100644 (file)
index 0000000..269421c
--- /dev/null
@@ -0,0 +1,77 @@
+/*
+ *  Copyright (C) 2013 Jeremy Kerr <jk@ozlabs.org>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; version 2 of the License.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+#include <fcntl.h>
+#include <unistd.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+
+#include <talloc/talloc.h>
+
+#include "file.h"
+
+static const int max_file_size = 1024 * 1024;
+
+int read_file(void *ctx, const char *filename, char **bufp, int *lenp)
+{
+       struct stat statbuf;
+       int rc, fd, i, len;
+       char *buf;
+
+       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;
+
+       }
+
+       buf[len] = '\0';
+
+       close(fd);
+       *bufp = buf;
+       *lenp = len;
+       return 0;
+
+err_free:
+       talloc_free(buf);
+err_close:
+       close(fd);
+       return -1;
+}
diff --git a/discover/file.h b/discover/file.h
new file mode 100644 (file)
index 0000000..1997eca
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+ *  Copyright (C) 2013 Jeremy Kerr <jk@ozlabs.org>
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU General Public License as published by
+ *  the Free Software Foundation; version 2 of the License.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+#ifndef FILE_H
+#define FILE_H
+
+int read_file(void *ctx, const char *filename, char **bufp, int *lenp);
+
+#endif /* FILE_H */
+
index e2940e19e1b939a3aaaaf2dca45b28d8a02e418b..6896075ed1742b82b4e9306a5b1072556c8463df 100644 (file)
@@ -12,6 +12,7 @@
 #include "parser.h"
 #include "parser-utils.h"
 #include "paths.h"
+#include "file.h"
 
 struct p_item {
        struct list_item list;
@@ -20,59 +21,6 @@ struct p_item {
 
 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)
-{
-       struct stat statbuf;
-       int rc, fd, i, len;
-       char *buf;
-
-       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;
-
-       }
-
-       buf[len] = '\0';
-
-       close(fd);
-       *bufp = buf;
-       *lenp = len;
-       return 0;
-
-err_free:
-       talloc_free(buf);
-err_close:
-       close(fd);
-       return -1;
-}
-
 static char *local_path(struct discover_context *ctx,
                const char *filename)
 {