]> git.ozlabs.org Git - petitboot/commitdiff
lib: Move generic file-handling code to lib/
authorJeremy Kerr <jk@ozlabs.org>
Wed, 23 Jul 2014 05:47:32 +0000 (13:47 +0800)
committerJeremy Kerr <jk@ozlabs.org>
Tue, 5 Aug 2014 02:49:30 +0000 (10:49 +0800)
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
discover/Makefile.am
discover/file.c [deleted file]
discover/file.h [deleted file]
discover/grub2/env.c
discover/network.c
discover/parser.c
lib/Makefile.am
lib/file/file.c [new file with mode: 0644]
lib/file/file.h [new file with mode: 0644]

index cd5c95709d429617841dc3c73f269afb29cf78ac..5d0f6e28f97a4ecc0c3f6578cb9482864df82da7 100644 (file)
@@ -26,8 +26,6 @@ discover_pb_discover_SOURCES = \
        discover/discover-server.h \
        discover/event.c \
        discover/event.h \
        discover/discover-server.h \
        discover/event.c \
        discover/event.h \
-       discover/file.c \
-       discover/file.h \
        discover/params.c \
        discover/params.h \
        discover/parser.c \
        discover/params.c \
        discover/params.h \
        discover/parser.c \
@@ -75,6 +73,3 @@ discover_platform_ro_SOURCES = \
 
 discover_platform_ro_LINK = \
        $(LD) -r -o $@
 
 discover_platform_ro_LINK = \
        $(LD) -r -o $@
-
-EXTRA_DIST += discover/native-parser.c
-
diff --git a/discover/file.c b/discover/file.c
deleted file mode 100644 (file)
index 1bde9fb..0000000
+++ /dev/null
@@ -1,123 +0,0 @@
-/*
- *  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 <stdlib.h>
-#include <errno.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;
-}
-
-static int write_fd(int fd, char *buf, int len)
-{
-       int i, rc;
-
-       for (i = 0; i < len; i += rc) {
-               rc = write(fd, buf + i, len - i);
-               if (rc < 0 && errno != -EINTR)
-                       return rc;
-       }
-
-       return 0;
-}
-
-int replace_file(const char *filename, char *buf, int len)
-{
-       char *tempfile;
-       mode_t oldmask;
-       int rc, fd;
-
-       tempfile = talloc_asprintf(NULL, "%s.XXXXXX", filename);
-
-       oldmask = umask(0644);
-       fd = mkstemp(tempfile);
-       umask(oldmask);
-       if (fd < 0) {
-               talloc_free(tempfile);
-               return fd;
-       }
-
-       rc = write_fd(fd, buf, len);
-       if (rc) {
-               unlink(tempfile);
-       } else {
-               rc = rename(tempfile, filename);
-       }
-
-       talloc_free(tempfile);
-
-       fchmod(fd, 0644);
-
-       close(fd);
-       return rc;
-}
diff --git a/discover/file.h b/discover/file.h
deleted file mode 100644 (file)
index 8aa7d3c..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- *  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);
-int replace_file(const char *filename, char *buf, int len);
-
-#endif /* FILE_H */
-
index 1c8635fbc924427b880ab518ff3e3ba7664dc259..9de5e9f95d819df9170f8031a870a5dceb0ca0df 100644 (file)
@@ -3,12 +3,12 @@
 #include <string.h>
 
 #include <log/log.h>
 #include <string.h>
 
 #include <log/log.h>
+#include <file/file.h>
 #include <types/types.h>
 #include <talloc/talloc.h>
 #include <util/util.h>
 
 #include <discover/parser.h>
 #include <types/types.h>
 #include <talloc/talloc.h>
 #include <util/util.h>
 
 #include <discover/parser.h>
-#include <discover/file.h>
 
 #include "grub2.h"
 
 
 #include "grub2.h"
 
index c0bd2af01e84a0321be6f511fdfbc64e6046b07f..c9460ac5ae4a0802c15eebf9a1c3c948a5eaabf8 100644 (file)
 
 #include <log/log.h>
 #include <list/list.h>
 
 #include <log/log.h>
 #include <list/list.h>
+#include <file/file.h>
 #include <types/types.h>
 #include <talloc/talloc.h>
 #include <waiter/waiter.h>
 #include <process/process.h>
 #include <system/system.h>
 
 #include <types/types.h>
 #include <talloc/talloc.h>
 #include <waiter/waiter.h>
 #include <process/process.h>
 #include <system/system.h>
 
-#include "file.h"
 #include "network.h"
 #include "sysinfo.h"
 #include "platform.h"
 #include "network.h"
 #include "sysinfo.h"
 #include "platform.h"
index 74b2559c8ab9776d138bddc7a8ea51ef9625351d..7833981ae3785d11aa072066f4aa834ae3a4acbc 100644 (file)
@@ -5,6 +5,7 @@
 #include <sys/stat.h>
 
 #include "types/types.h"
 #include <sys/stat.h>
 
 #include "types/types.h"
+#include <file/file.h>
 #include <log/log.h>
 #include <talloc/talloc.h>
 
 #include <log/log.h>
 #include <talloc/talloc.h>
 
@@ -12,7 +13,6 @@
 #include "parser.h"
 #include "parser-utils.h"
 #include "paths.h"
 #include "parser.h"
 #include "parser-utils.h"
 #include "paths.h"
-#include "file.h"
 
 struct p_item {
        struct list_item list;
 
 struct p_item {
        struct list_item list;
index f9f9461fdf5100824feb7ebad8896949fc39d420..fbf2ee2db9371b64dc49a5fefb32b1741dbb4978 100644 (file)
@@ -21,6 +21,8 @@ lib_libpbcore_la_CPPFLAGS = \
        -DPREFIX='"$(prefix)"'
 
 lib_libpbcore_la_SOURCES = \
        -DPREFIX='"$(prefix)"'
 
 lib_libpbcore_la_SOURCES = \
+       lib/file/file.h \
+       lib/file/file.c \
        lib/fold/fold.h \
        lib/fold/fold.c \
        lib/i18n/i18n.h \
        lib/fold/fold.h \
        lib/fold/fold.c \
        lib/i18n/i18n.h \
@@ -45,4 +47,3 @@ lib_libpbcore_la_SOURCES = \
        lib/url/url.h \
        lib/util/util.c \
        lib/util/util.h
        lib/url/url.h \
        lib/util/util.c \
        lib/util/util.h
-
diff --git a/lib/file/file.c b/lib/file/file.c
new file mode 100644 (file)
index 0000000..1bde9fb
--- /dev/null
@@ -0,0 +1,123 @@
+/*
+ *  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 <stdlib.h>
+#include <errno.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;
+}
+
+static int write_fd(int fd, char *buf, int len)
+{
+       int i, rc;
+
+       for (i = 0; i < len; i += rc) {
+               rc = write(fd, buf + i, len - i);
+               if (rc < 0 && errno != -EINTR)
+                       return rc;
+       }
+
+       return 0;
+}
+
+int replace_file(const char *filename, char *buf, int len)
+{
+       char *tempfile;
+       mode_t oldmask;
+       int rc, fd;
+
+       tempfile = talloc_asprintf(NULL, "%s.XXXXXX", filename);
+
+       oldmask = umask(0644);
+       fd = mkstemp(tempfile);
+       umask(oldmask);
+       if (fd < 0) {
+               talloc_free(tempfile);
+               return fd;
+       }
+
+       rc = write_fd(fd, buf, len);
+       if (rc) {
+               unlink(tempfile);
+       } else {
+               rc = rename(tempfile, filename);
+       }
+
+       talloc_free(tempfile);
+
+       fchmod(fd, 0644);
+
+       close(fd);
+       return rc;
+}
diff --git a/lib/file/file.h b/lib/file/file.h
new file mode 100644 (file)
index 0000000..8aa7d3c
--- /dev/null
@@ -0,0 +1,24 @@
+/*
+ *  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);
+int replace_file(const char *filename, char *buf, int len);
+
+#endif /* FILE_H */
+