Newly introduced findings

List of Findings

Error: GCC_ANALYZER_WARNING (CWE-401): [#def1]
util-linux-2.42.start/lsfd-cmd/lsfd.h:41: included_from: Included from here.
util-linux-2.42.start/lsfd-cmd/collection-filter.c:25: included_from: Included from here.
util-linux-2.42.start/include/xalloc.h: scope_hint: In function ‘cl_filters_add_bdev’
util-linux-2.42.start/include/xalloc.h:32:13: warning[-Wanalyzer-malloc-leak]: leak of ‘new_cl_filter_bdev(bdev)’
#   30|   	void *ret = malloc(size);
#   31|   
#   32|-> 	if (!ret && size)
#   33|   		err(XALLOC_EXIT_CODE, "cannot allocate %zu bytes", size);
#   34|   	return ret;

Error: GCC_ANALYZER_WARNING (CWE-401): [#def2]
util-linux-2.42.start/include/xalloc.h: scope_hint: In function ‘cl_filters_add_devino’
util-linux-2.42.start/include/xalloc.h:32:13: warning[-Wanalyzer-malloc-leak]: leak of ‘new_cl_filter_devino(dev,  ino)’
#   30|   	void *ret = malloc(size);
#   31|   
#   32|-> 	if (!ret && size)
#   33|   		err(XALLOC_EXIT_CODE, "cannot allocate %zu bytes", size);
#   34|   	return ret;

Error: GCC_ANALYZER_WARNING (CWE-401): [#def3]
util-linux-2.42.start/include/xalloc.h: scope_hint: In function ‘cl_filters_add_name’
util-linux-2.42.start/include/xalloc.h:32:13: warning[-Wanalyzer-malloc-leak]: leak of ‘new_cl_filter_name(name)’
#   30|   	void *ret = malloc(size);
#   31|   
#   32|-> 	if (!ret && size)
#   33|   		err(XALLOC_EXIT_CODE, "cannot allocate %zu bytes", size);
#   34|   	return ret;

Error: GCC_ANALYZER_WARNING (CWE-401): [#def4]
util-linux-2.42.start/include/xalloc.h: scope_hint: In function ‘cl_filters_add_pid’
util-linux-2.42.start/include/xalloc.h:32:13: warning[-Wanalyzer-malloc-leak]: leak of ‘new_cl_filter_pid(pid)’
#   30|   	void *ret = malloc(size);
#   31|   
#   32|-> 	if (!ret && size)
#   33|   		err(XALLOC_EXIT_CODE, "cannot allocate %zu bytes", size);
#   34|   	return ret;

Error: GCC_ANALYZER_WARNING (CWE-688): [#def5]
util-linux-2.42.start/lsfd-cmd/collection-filter.c:106:9: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘*cl_filters.pids’ where non-null expected
util-linux-2.42.start/lsfd-cmd/collection-filter.c: scope_hint: In function ‘cl_filters_optimize’
util-linux-2.42.start/lsfd-cmd/lsfd.h:33: included_from: Included from here.
/usr/include/stdlib.h: scope_hint: In function ‘cl_filters_optimize’
/usr/include/stdlib.h:998:13: note: argument 1 of ‘qsort’ must be non-null
#  104|   static void sort_pids(pid_t pids[], const int count)
#  105|   {
#  106|-> 	qsort(pids, count, sizeof(pid_t), pidcmp);
#  107|   }
#  108|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def6]
util-linux-2.42.start/lsfd-cmd/collection-filter.c:124:55: warning[-Wanalyzer-possible-null-dereference]: dereference of possibly-NULL ‘*cl_filters.pids’
util-linux-2.42.start/lsfd-cmd/lsfd.h:37: included_from: Included from here.
util-linux-2.42.start/lsfd-cmd/collection-filter.c:119:17: note: in expansion of macro ‘list_for_each’
#  122|   								 filters);
#  123|   			if (cl_filter->type == clf_pid)
#  124|-> 				cl_filters->pids[i++] = cl_filter->pid;
#  125|   		}
#  126|   		sort_pids(cl_filters->pids, cl_filters->n_pid_filters);

Error: GCC_ANALYZER_WARNING (CWE-476): [#def7]
util-linux-2.42.start/lsfd-cmd/lsfd.c:2199:13: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘filter_expr’
# 2197|   	       && (isspace((unsigned char)*next) || *next == ','))
# 2198|   		next++;
# 2199|-> 	if (*next != '\0')
# 2200|   		add_pids_to_cl_filters(next, cl_filters);
# 2201|   }

Error: GCC_ANALYZER_WARNING (CWE-401): [#def8]
util-linux-2.42.start/lsfd-cmd/lsfd.c: scope_hint: In function ‘new_filter’
util-linux-2.42.start/lsfd-cmd/lsfd.c:2436:28: warning[-Wanalyzer-malloc-leak]: leak of ‘xcalloc(17, 8) + i * 8’
# 2434|   	struct libscols_counter *ct;
# 2435|   
# 2436|-> 	f = new_filter(spec->expr, false, ctl);
# 2437|   
# 2438|   	ct = scols_filter_new_counter(f);

Error: GCC_ANALYZER_WARNING (CWE-401): [#def9]
util-linux-2.42.start/lsfd-cmd/lsfd.c:2436:28: warning[-Wanalyzer-malloc-leak]: leak of ‘xcalloc(ct + 1, 8) + i * 8’
util-linux-2.42.start/lsfd-cmd/lsfd.c:2456:9: note: in expansion of macro ‘list_for_each’
# 2434|   	struct libscols_counter *ct;
# 2435|   
# 2436|-> 	f = new_filter(spec->expr, false, ctl);
# 2437|   
# 2438|   	ct = scols_filter_new_counter(f);

Error: GCC_ANALYZER_WARNING (CWE-476): [#def10]
util-linux-2.42.start/misc-utils/blkid.c: scope_hint: In function ‘main’
util-linux-2.42.start/misc-utils/blkid.c:889:43: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘xcalloc((long unsigned int)(argc - optind), 8)’
util-linux-2.42.start/misc-utils/blkid.c:18: included_from: Included from here.
#  887|   				continue;
#  888|   
#  889|-> 			devices[numdev++] = dev;
#  890|   		}
#  891|   

Error: GCC_ANALYZER_WARNING (CWE-476): [#def11]
util-linux-2.42.start/misc-utils/cal.c: scope_hint: In function ‘monthly’
util-linux-2.42.start/misc-utils/cal.c:1099:28: warning[-Wanalyzer-null-dereference]: dereference of NULL ‘xcalloc((long unsigned int)*ctl.months_in_row, 208) + (sizetype)i * 208’
util-linux-2.42.start/misc-utils/cal.c:79: included_from: Included from here.
# 1097|   
# 1098|   	for (i = 0; i < ctl->months_in_row - 1; i++)
# 1099|-> 		ms[i].next = &ms[i + 1];
# 1100|   
# 1101|   	rows = (ctl->num_months - 1) / ctl->months_in_row;

Error: GCC_ANALYZER_WARNING (CWE-476): [#def12]
util-linux-2.42.start/misc-utils/logger.c:1053:24: warning[-Wanalyzer-possible-null-dereference]: dereference of possibly-NULL ‘xmalloc(*ctl.max_message_size + 4)’
# 1051|   			c = getchar();
# 1052|   		}
# 1053|-> 		buf[i] = '\0';
# 1054|   
# 1055|   		if (i > 0 || !ctl->skip_empty_lines) {

Scan Properties

analyzer-version-clippy1.92.0
analyzer-version-cppcheck2.19.1
analyzer-version-gcc16.0.1
analyzer-version-gcc-analyzer16.0.1
analyzer-version-shellcheck0.11.0
analyzer-version-unicontrol0.0.2
diffbase-analyzer-version-clippy1.92.0
diffbase-analyzer-version-cppcheck2.19.1
diffbase-analyzer-version-gcc16.0.1
diffbase-analyzer-version-gcc-analyzer16.0.1
diffbase-analyzer-version-shellcheck0.11.0
diffbase-analyzer-version-unicontrol0.0.2
diffbase-enabled-pluginsclippy, cppcheck, gcc, shellcheck, unicontrol
diffbase-exit-code0
diffbase-hostip-172-16-1-101.us-west-2.compute.internal
diffbase-known-false-positives/usr/share/csmock/known-false-positives.js
diffbase-known-false-positives-rpmknown-false-positives-0.0.0.20260119.105402.g7a5be1b.main-1.el9.noarch
diffbase-mock-configfedora-rawhide-x86_64
diffbase-project-nameutil-linux-2.42.start-7.20260119115118703208.master.1203.g223cb52c5
diffbase-store-results-to/tmp/tmpm3dadb7w/util-linux-2.42.start-7.20260119115118703208.master.1203.g223cb52c5.tar.xz
diffbase-time-created2026-01-20 00:34:34
diffbase-time-finished2026-01-20 00:53:38
diffbase-toolcsmock
diffbase-tool-args'/usr/bin/csmock' '-r' 'fedora-rawhide-x86_64' '-t' 'gcc,cppcheck,clippy,shellcheck,unicontrol' '-o' '/tmp/tmpm3dadb7w/util-linux-2.42.start-7.20260119115118703208.master.1203.g223cb52c5.tar.xz' '--gcc-analyze' '--unicontrol-notests' '--unicontrol-bidi-only' '--install' 'pam' '/tmp/tmpm3dadb7w/util-linux-2.42.start-7.20260119115118703208.master.1203.g223cb52c5.src.rpm'
diffbase-tool-versioncsmock-3.8.3.20251215.161544.g62de9a5-1.el9
enabled-pluginsclippy, cppcheck, gcc, shellcheck, unicontrol
exit-code0
hostip-172-16-1-101.us-west-2.compute.internal
known-false-positives/usr/share/csmock/known-false-positives.js
known-false-positives-rpmknown-false-positives-0.0.0.20260119.105402.g7a5be1b.main-1.el9.noarch
mock-configfedora-rawhide-x86_64
project-nameutil-linux-2.42.start-7.20260120001912326870.pr3328.1212.gd4e68f8d5
store-results-to/tmp/tmpdbr9372b/util-linux-2.42.start-7.20260120001912326870.pr3328.1212.gd4e68f8d5.tar.xz
time-created2026-01-20 00:54:08
time-finished2026-01-20 01:12:03
titleNewly introduced findings
toolcsmock
tool-args'/usr/bin/csmock' '-r' 'fedora-rawhide-x86_64' '-t' 'gcc,cppcheck,clippy,shellcheck,unicontrol' '-o' '/tmp/tmpdbr9372b/util-linux-2.42.start-7.20260120001912326870.pr3328.1212.gd4e68f8d5.tar.xz' '--gcc-analyze' '--unicontrol-notests' '--unicontrol-bidi-only' '--install' 'pam' '/tmp/tmpdbr9372b/util-linux-2.42.start-7.20260120001912326870.pr3328.1212.gd4e68f8d5.src.rpm'
tool-versioncsmock-3.8.3.20251215.161544.g62de9a5-1.el9