* [PATCH 1/4] mkfs.xfs: avoid potential overflowing expression in xfs_mkfs.c
2024-06-13 18:07 [PATCH 0/4] xfsprogs: coverity fixes Bill O'Donnell
@ 2024-06-13 18:07 ` Bill O'Donnell
2024-06-13 18:35 ` Christoph Hellwig
2024-06-13 18:07 ` [PATCH 2/4] xfs_db: fix unitialized variable ifake->if_levels Bill O'Donnell
` (2 subsequent siblings)
3 siblings, 1 reply; 10+ messages in thread
From: Bill O'Donnell @ 2024-06-13 18:07 UTC (permalink / raw)
To: linux-xfs; +Cc: cmaiolino, Bill O'Donnell
Cast max_tx_bytes to uint64_t to avoid overflowing expression in
calc_concurrency_logblocks().
Coverity-id: 1596603
Signed-off-by: Bill O'Donnell <bodonnel@redhat.com>
---
mkfs/xfs_mkfs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mkfs/xfs_mkfs.c b/mkfs/xfs_mkfs.c
index f4a9bf20..2f801dd4 100644
--- a/mkfs/xfs_mkfs.c
+++ b/mkfs/xfs_mkfs.c
@@ -3678,7 +3678,7 @@ calc_concurrency_logblocks(
* without blocking for space. Increase the figure by 50% so that
* background threads can also run.
*/
- log_bytes = max_tx_bytes * 3 * cli->log_concurrency / 2;
+ log_bytes = (uint64_t)max_tx_bytes * 3 * cli->log_concurrency / 2;
new_logblocks = min(XFS_MAX_LOG_BYTES >> cfg->blocklog,
log_bytes >> cfg->blocklog);
--
2.45.2
^ permalink raw reply related [flat|nested] 10+ messages in thread* [PATCH 2/4] xfs_db: fix unitialized variable ifake->if_levels
2024-06-13 18:07 [PATCH 0/4] xfsprogs: coverity fixes Bill O'Donnell
2024-06-13 18:07 ` [PATCH 1/4] mkfs.xfs: avoid potential overflowing expression in xfs_mkfs.c Bill O'Donnell
@ 2024-06-13 18:07 ` Bill O'Donnell
2024-06-13 18:36 ` Christoph Hellwig
2024-06-13 18:07 ` [PATCH 3/4] xfs_fsr: correct type in fsrprintf() call Bill O'Donnell
2024-06-13 18:07 ` [PATCH 4/4] xfs_repair: correct type of variable global_msgs.interval to time_t Bill O'Donnell
3 siblings, 1 reply; 10+ messages in thread
From: Bill O'Donnell @ 2024-06-13 18:07 UTC (permalink / raw)
To: linux-xfs; +Cc: cmaiolino, Bill O'Donnell
Initialize if_levels to 0.
Coverity-id: 1596600, 1596597
Signed-off-by: Bill O'Donnell <bodonnel@redhat.com>
---
db/bmap_inflate.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/db/bmap_inflate.c b/db/bmap_inflate.c
index 33b0c954..8232f486 100644
--- a/db/bmap_inflate.c
+++ b/db/bmap_inflate.c
@@ -351,6 +351,7 @@ build_new_datafork(
/* Set up staging for the new bmbt */
ifake.if_fork = kmem_cache_zalloc(xfs_ifork_cache, 0);
ifake.if_fork_size = xfs_inode_fork_size(ip, XFS_DATA_FORK);
+ ifake.if_levels = 0;
bmap_cur = libxfs_bmbt_stage_cursor(ip->i_mount, ip, &ifake);
/*
@@ -404,6 +405,7 @@ estimate_size(
ifake.if_fork = kmem_cache_zalloc(xfs_ifork_cache, 0);
ifake.if_fork_size = xfs_inode_fork_size(ip, XFS_DATA_FORK);
+ ifake.if_levels = 0;
bmap_cur = libxfs_bmbt_stage_cursor(ip->i_mount, ip, &ifake);
error = -libxfs_btree_bload_compute_geometry(bmap_cur, &bmap_bload,
--
2.45.2
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 2/4] xfs_db: fix unitialized variable ifake->if_levels
2024-06-13 18:07 ` [PATCH 2/4] xfs_db: fix unitialized variable ifake->if_levels Bill O'Donnell
@ 2024-06-13 18:36 ` Christoph Hellwig
2024-06-13 18:58 ` Bill O'Donnell
0 siblings, 1 reply; 10+ messages in thread
From: Christoph Hellwig @ 2024-06-13 18:36 UTC (permalink / raw)
To: Bill O'Donnell; +Cc: linux-xfs, cmaiolino
On Thu, Jun 13, 2024 at 01:07:06PM -0500, Bill O'Donnell wrote:
> Initialize if_levels to 0.
>
> Coverity-id: 1596600, 1596597
>
> Signed-off-by: Bill O'Donnell <bodonnel@redhat.com>
> ---
> db/bmap_inflate.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/db/bmap_inflate.c b/db/bmap_inflate.c
> index 33b0c954..8232f486 100644
> --- a/db/bmap_inflate.c
> +++ b/db/bmap_inflate.c
> @@ -351,6 +351,7 @@ build_new_datafork(
> /* Set up staging for the new bmbt */
> ifake.if_fork = kmem_cache_zalloc(xfs_ifork_cache, 0);
> ifake.if_fork_size = xfs_inode_fork_size(ip, XFS_DATA_FORK);
> + ifake.if_levels = 0;
> bmap_cur = libxfs_bmbt_stage_cursor(ip->i_mount, ip, &ifake);
>
> /*
> @@ -404,6 +405,7 @@ estimate_size(
>
> ifake.if_fork = kmem_cache_zalloc(xfs_ifork_cache, 0);
> ifake.if_fork_size = xfs_inode_fork_size(ip, XFS_DATA_FORK);
> + ifake.if_levels = 0;
Maybe initialize it at declaration time by doing:
struct xbtree_ifakeroot ifake = { };
to future-proof against adding more fields?
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: [PATCH 2/4] xfs_db: fix unitialized variable ifake->if_levels
2024-06-13 18:36 ` Christoph Hellwig
@ 2024-06-13 18:58 ` Bill O'Donnell
0 siblings, 0 replies; 10+ messages in thread
From: Bill O'Donnell @ 2024-06-13 18:58 UTC (permalink / raw)
To: Christoph Hellwig; +Cc: linux-xfs, cmaiolino
On Thu, Jun 13, 2024 at 11:36:51AM -0700, Christoph Hellwig wrote:
> On Thu, Jun 13, 2024 at 01:07:06PM -0500, Bill O'Donnell wrote:
> > Initialize if_levels to 0.
> >
> > Coverity-id: 1596600, 1596597
> >
> > Signed-off-by: Bill O'Donnell <bodonnel@redhat.com>
> > ---
> > db/bmap_inflate.c | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/db/bmap_inflate.c b/db/bmap_inflate.c
> > index 33b0c954..8232f486 100644
> > --- a/db/bmap_inflate.c
> > +++ b/db/bmap_inflate.c
> > @@ -351,6 +351,7 @@ build_new_datafork(
> > /* Set up staging for the new bmbt */
> > ifake.if_fork = kmem_cache_zalloc(xfs_ifork_cache, 0);
> > ifake.if_fork_size = xfs_inode_fork_size(ip, XFS_DATA_FORK);
> > + ifake.if_levels = 0;
> > bmap_cur = libxfs_bmbt_stage_cursor(ip->i_mount, ip, &ifake);
> >
> > /*
> > @@ -404,6 +405,7 @@ estimate_size(
> >
> > ifake.if_fork = kmem_cache_zalloc(xfs_ifork_cache, 0);
> > ifake.if_fork_size = xfs_inode_fork_size(ip, XFS_DATA_FORK);
> > + ifake.if_levels = 0;
>
> Maybe initialize it at declaration time by doing:
>
> struct xbtree_ifakeroot ifake = { };
>
> to future-proof against adding more fields?
>
Makes sense, I'll send a new version.
Thanks-
Bill
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 3/4] xfs_fsr: correct type in fsrprintf() call
2024-06-13 18:07 [PATCH 0/4] xfsprogs: coverity fixes Bill O'Donnell
2024-06-13 18:07 ` [PATCH 1/4] mkfs.xfs: avoid potential overflowing expression in xfs_mkfs.c Bill O'Donnell
2024-06-13 18:07 ` [PATCH 2/4] xfs_db: fix unitialized variable ifake->if_levels Bill O'Donnell
@ 2024-06-13 18:07 ` Bill O'Donnell
2024-06-13 18:37 ` Christoph Hellwig
2024-06-13 18:07 ` [PATCH 4/4] xfs_repair: correct type of variable global_msgs.interval to time_t Bill O'Donnell
3 siblings, 1 reply; 10+ messages in thread
From: Bill O'Donnell @ 2024-06-13 18:07 UTC (permalink / raw)
To: linux-xfs; +Cc: cmaiolino, Bill O'Donnell
Use %ld instead of %d for howlong variable.
Coverity-id: 1596598
Signed-off-by: Bill O'Donnell <bodonnel@redhat.com>
---
fsr/xfs_fsr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fsr/xfs_fsr.c b/fsr/xfs_fsr.c
index fdd37756..d204e3a4 100644
--- a/fsr/xfs_fsr.c
+++ b/fsr/xfs_fsr.c
@@ -426,7 +426,7 @@ fsrallfs(char *mtab, time_t howlong, char *leftofffile)
fsdesc_t *fsp;
struct stat sb, sb2;
- fsrprintf("xfs_fsr -m %s -t %d -f %s ...\n", mtab, howlong, leftofffile);
+ fsrprintf("xfs_fsr -m %s -t %ld -f %s ...\n", mtab, howlong, leftofffile);
endtime = starttime + howlong;
fs = fsbase;
--
2.45.2
^ permalink raw reply related [flat|nested] 10+ messages in thread* [PATCH 4/4] xfs_repair: correct type of variable global_msgs.interval to time_t
2024-06-13 18:07 [PATCH 0/4] xfsprogs: coverity fixes Bill O'Donnell
` (2 preceding siblings ...)
2024-06-13 18:07 ` [PATCH 3/4] xfs_fsr: correct type in fsrprintf() call Bill O'Donnell
@ 2024-06-13 18:07 ` Bill O'Donnell
2024-06-13 18:38 ` Christoph Hellwig
3 siblings, 1 reply; 10+ messages in thread
From: Bill O'Donnell @ 2024-06-13 18:07 UTC (permalink / raw)
To: linux-xfs; +Cc: cmaiolino, Bill O'Donnell
Use time_t instead of int for interval field.
Coverity-id: 1596599
Signed-off-by: Bill O'Donnell <bodonnel@redhat.com>
---
repair/progress.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/repair/progress.c b/repair/progress.c
index 2ce36cef..15455a99 100644
--- a/repair/progress.c
+++ b/repair/progress.c
@@ -91,7 +91,7 @@ typedef struct msg_block_s {
uint64_t *done;
uint64_t *total;
int count;
- int interval;
+ time_t interval;
} msg_block_t;
static msg_block_t global_msgs;
--
2.45.2
^ permalink raw reply related [flat|nested] 10+ messages in thread