From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 03/10] _fireinfo: Refactor some code
Date: Fri, 07 May 2021 11:16:47 +0000 [thread overview]
Message-ID: <20210507111654.2397-4-michael.tremer@ipfire.org> (raw)
In-Reply-To: <20210507111654.2397-1-michael.tremer@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 2347 bytes --]
No functional changes. This only makes the code more similar to what I
am writing in other projects and makes it tidier.
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
src/_fireinfo/fireinfo.c | 35 ++++++++++++++++++-----------------
1 file changed, 18 insertions(+), 17 deletions(-)
diff --git a/src/_fireinfo/fireinfo.c b/src/_fireinfo/fireinfo.c
index 58ee7e2..75ccb2c 100644
--- a/src/_fireinfo/fireinfo.c
+++ b/src/_fireinfo/fireinfo.c
@@ -58,23 +58,22 @@ const char *hypervisor_vendors[] = {
#define NEWLINE "\n\r"
-char *truncate_nl(char *s) {
+static void truncate_nl(char *s) {
assert(s);
- s[strcspn(s, NEWLINE)] = 0;
- return s;
+ s[strcspn(s, NEWLINE)] = '\0';
}
-int read_one_line_file(const char *filename, char **line) {
- assert(filename);
- assert(line);
+static int read_one_line_file(const char *filename, char **line) {
+ char t[2048];
+
+ if (!filename || !line)
+ return -EINVAL;
- FILE *f = NULL;
- f = fopen(filename, "re");
+ FILE* f = fopen(filename, "re");
if (!f)
return -errno;
- char t[2048];
if (!fgets(t, sizeof(t), f)) {
if (ferror(f))
return errno ? -errno : -EIO;
@@ -85,6 +84,7 @@ int read_one_line_file(const char *filename, char **line) {
char *c = strdup(t);
if (!c)
return -ENOMEM;
+
truncate_nl(c);
*line = c;
@@ -171,7 +171,6 @@ int detect_hypervisor(int *hypervisor) {
return 0;
}
-
static PyObject *
do_detect_hypervisor() {
/*
@@ -197,27 +196,29 @@ do_get_harddisk_serial(PyObject *o, PyObject *args) {
Python wrapper around read_harddisk_serial.
*/
static struct hd_driveid hd;
- int fd;
const char *device = NULL;
+ char serial[21];
if (!PyArg_ParseTuple(args, "s", &device))
return NULL;
- if ((fd = open(device, O_RDONLY | O_NONBLOCK)) < 0) {
+ int fd = open(device, O_RDONLY | O_NONBLOCK);
+ if (fd < 0) {
PyErr_Format(PyExc_OSError, "Could not open block device: %s", device);
return NULL;
}
if (!ioctl(fd, HDIO_GET_IDENTITY, &hd)) {
- char serial[21];
- memset(serial, 0, sizeof(serial));
-
- strncpy(serial, (const char *)hd.serial_no, sizeof(serial) - 1);
+ snprintf(serial, sizeof(serial) - 1, "%s", (const char *)hd.serial_no);
- if (serial[0])
+ if (*serial) {
+ close(fd);
return PyUnicode_FromString(serial);
+ }
}
+ close(fd);
+
Py_RETURN_NONE;
}
--
2.20.1
next prev parent reply other threads:[~2021-05-07 11:16 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-05 14:27 Dropping Python 2 Michael Tremer
2021-05-05 16:49 ` Adolf Belka
2021-05-05 17:12 ` Adolf Belka
2021-05-05 21:46 ` Adolf Belka
2021-05-05 22:30 ` Michael Tremer
2021-05-06 19:40 ` Dropping Python 2 - question about boost Adolf Belka
2021-05-07 11:00 ` Michael Tremer
2021-05-07 11:16 ` Migrating fireinfo to Python 3 Michael Tremer
2021-05-07 11:16 ` [PATCH 01/10] configure: Link against " Michael Tremer
2021-05-07 11:16 ` [PATCH 02/10] _fireinfo: Migrate to " Michael Tremer
2021-05-07 11:16 ` Michael Tremer [this message]
2021-05-07 11:16 ` [PATCH 04/10] Run 2to3 Michael Tremer
2021-05-07 11:21 ` Michael Tremer
2021-05-14 12:10 ` Migrating fireinfo to Python 3 Adolf Belka
2021-05-14 12:13 ` Michael Tremer
2021-05-17 13:59 ` Adolf Belka
2021-05-18 10:29 ` Michael Tremer
2021-05-11 10:37 ` Dropping Python 2 (Problem with ipaddr) Adolf Belka
2021-05-11 10:40 ` Michael Tremer
2021-05-15 11:51 ` Adolf Belka
2021-05-11 12:18 ` Dropping Python 2 (questions about python modules that are in python3 and python2 versions) Adolf Belka
2021-05-12 18:34 ` Jonatan Schlag
2021-05-13 17:36 ` Adolf Belka
2021-05-11 13:24 ` Dropping Python 2 (problems with libxml2 and libxslt) Adolf Belka
2021-05-11 13:25 ` Michael Tremer
2021-05-11 13:31 ` Adolf Belka
2021-05-12 11:07 ` Dropping Python 2 (python-distutils & python-distutils-extra) Adolf Belka
2021-05-12 17:11 ` Michael Tremer
2021-05-12 12:31 ` Dropping Python 2 (python-mechanize + knock on effects) Adolf Belka
2021-05-14 19:28 ` Dropping Python 2 (python-m2crypto) Adolf Belka
2021-05-15 21:03 ` Adolf Belka
2021-05-16 14:16 ` Adolf Belka
2021-05-20 10:15 ` Michael Tremer
2021-05-20 10:30 ` Adolf Belka
2021-05-20 11:21 ` Michael Tremer
2021-05-22 12:25 ` Adolf Belka
2021-05-25 10:03 ` Michael Tremer
2021-05-29 14:31 ` Jonatan Schlag
2021-05-29 16:19 ` Adolf Belka
2021-05-15 8:28 ` Dropping Python 2 (python-optional-src) Adolf Belka
2021-05-15 8:41 ` Adolf Belka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210507111654.2397-4-michael.tremer@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox