From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 10/13] installer: Replace all uses of strncpy with snprintf
Date: Fri, 05 Apr 2024 12:59:39 +0000 [thread overview]
Message-ID: <20240405125942.1803058-10-michael.tremer@ipfire.org> (raw)
In-Reply-To: <20240405125942.1803058-1-michael.tremer@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 3091 bytes --]
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
src/installer/hw.c | 8 ++++----
src/installer/main.c | 7 ++++---
2 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/src/installer/hw.c b/src/installer/hw.c
index 809a448a0..6bf05b185 100644
--- a/src/installer/hw.c
+++ b/src/installer/hw.c
@@ -324,6 +324,7 @@ static unsigned long long hw_block_device_get_size(const char* dev) {
struct hw_disk** hw_find_disks(struct hw* hw, const char* sourcedrive) {
struct hw_disk** ret = hw_create_disks();
struct hw_disk** disks = ret;
+ char size_str[32];
// Determine the disk device of source if it is a partition
const char* sourcedisk = NULL;
@@ -388,7 +389,7 @@ struct hw_disk** hw_find_disks(struct hw* hw, const char* sourcedrive) {
disk->ref = 1;
- strncpy(disk->path, dev_path, sizeof(disk->path));
+ snprintf(disk->path, sizeof(disk->path), "%s", dev_path);
const char* p = disk->path + 5;
disk->size = size;
@@ -401,7 +402,7 @@ struct hw_disk** hw_find_disks(struct hw* hw, const char* sourcedrive) {
vendor = udev_device_get_sysattr_value(dev, "manufacturer");
if (vendor)
- strncpy(disk->vendor, vendor, sizeof(disk->vendor));
+ snprintf(disk->vendor, sizeof(disk->vendor), "%s", vendor);
else
*disk->vendor = '\0';
@@ -413,12 +414,11 @@ struct hw_disk** hw_find_disks(struct hw* hw, const char* sourcedrive) {
model = udev_device_get_sysattr_value(dev, "product");
if (model)
- strncpy(disk->model, model, sizeof(disk->model));
+ snprintf(disk->model, sizeof(disk->model), "%s", model);
else
*disk->model = '\0';
// Format description
- char size_str[STRING_SIZE];
snprintf(size_str, sizeof(size_str), "%4.1fGB", (double)disk->size / pow(1024, 3));
if (*disk->vendor && *disk->model) {
diff --git a/src/installer/main.c b/src/installer/main.c
index 20a8cc962..ecfcff2ec 100644
--- a/src/installer/main.c
+++ b/src/installer/main.c
@@ -310,7 +310,8 @@ static void parse_command_line(FILE* flog, struct config* c) {
char* token = strtok(cmdline, " ");
while (token) {
- strncpy(buffer, token, sizeof(buffer));
+ snprintf(buffer, sizeof(buffer), "%s", token);
+
char* val = buffer;
char* key = strsep(&val, "=");
@@ -336,7 +337,7 @@ static void parse_command_line(FILE* flog, struct config* c) {
// download url
else if (strcmp(key, "installer.download-url") == 0) {
- strncpy(c->download_url, val, sizeof(c->download_url));
+ snprintf(c->download_url, sizeof(c->download_url), "%s", val);
c->perform_download = 1;
// Require networking for the download
@@ -344,7 +345,7 @@ static void parse_command_line(FILE* flog, struct config* c) {
// postinstall script
} else if (strcmp(key, "installer.postinstall") == 0) {
- strncpy(c->postinstall, val, sizeof(c->postinstall));
+ snprintf(c->postinstall, sizeof(c->postinstall), "%s", val);
// Require networking for the download
c->require_networking = 1;
--
2.39.2
next prev parent reply other threads:[~2024-04-05 12:59 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-05 12:59 [PATCH 01/13] installer: Update language files Michael Tremer
2024-04-05 12:59 ` [PATCH 02/13] installer: Translate BTRFS string Michael Tremer
2024-04-05 12:59 ` [PATCH 03/13] installer: Remove obsolete macros from configure script Michael Tremer
2024-04-05 12:59 ` [PATCH 04/13] installer: Fix lots of constify issues Michael Tremer
2024-04-05 12:59 ` [PATCH 05/13] installer: Make btrfs functions static Michael Tremer
2024-04-05 12:59 ` [PATCH 06/13] installer: Make hw_mkdir static Michael Tremer
2024-04-05 12:59 ` [PATCH 07/13] installer: Remove unused variables Michael Tremer
2024-04-05 12:59 ` [PATCH 08/13] installer: Fix use of uninitialized variable Michael Tremer
2024-04-05 12:59 ` [PATCH 09/13] installer: Correctly pass mount flags Michael Tremer
2024-04-05 12:59 ` Michael Tremer [this message]
2024-04-05 12:59 ` [PATCH 11/13] installer: Pass correct length of hostname to sethostname() Michael Tremer
2024-04-05 12:59 ` [PATCH 12/13] installer: Fix more const warnings Michael Tremer
2024-04-05 12:59 ` [PATCH 13/13] installer: Fix using uninitialized variables Michael Tremer
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=20240405125942.1803058-10-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