Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
6c74863d47 |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/lsscsi-0.32.tgz
|
lsscsi-0.32.tgz
|
||||||
|
@ -1 +0,0 @@
|
|||||||
2660fb6e16d2128869e89cd353d37d45ba8cd2f9 SOURCES/lsscsi-0.32.tgz
|
|
@ -1,34 +0,0 @@
|
|||||||
From db8d419ba39e4547de602ef1ff58cd97d5e1102d Mon Sep 17 00:00:00 2001
|
|
||||||
From: Tomas Bzatek <tbzatek@redhat.com>
|
|
||||||
Date: Wed, 11 Nov 2020 15:39:16 +0100
|
|
||||||
Subject: [PATCH] fix uninitialized variable
|
|
||||||
|
|
||||||
Error: UNINIT (CWE-457): [#def1]
|
|
||||||
lsscsi-032r164/src/lsscsi.c:3341: var_decl: Declaring variable "type" without initializer.
|
|
||||||
lsscsi-032r164/src/lsscsi.c:3586: uninit_use_in_call: Using uninitialized value "type" when calling "is_direct_access_dev".
|
|
||||||
3584| my_strcopy(blkdir, buff, sizeof(blkdir));
|
|
||||||
3585| value[0] = 0;
|
|
||||||
3586|-> if (! (is_direct_access_dev(type) &&
|
|
||||||
3587| block_scan(blkdir) &&
|
|
||||||
3588| if_directory_chdir(blkdir, ".") &&
|
|
||||||
---
|
|
||||||
src/lsscsi.c | 3 ++-
|
|
||||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/src/lsscsi.c b/src/lsscsi.c
|
|
||||||
index 6544153..8a30299 100644
|
|
||||||
--- a/src/lsscsi.c
|
|
||||||
+++ b/src/lsscsi.c
|
|
||||||
@@ -3338,7 +3338,8 @@ one_sdev_entry(const char * dir_name, const char * devname,
|
|
||||||
const struct lsscsi_opts * op)
|
|
||||||
{
|
|
||||||
bool get_wwn = false;
|
|
||||||
- int type, n, vlen;
|
|
||||||
+ int type = 0;
|
|
||||||
+ int n, vlen;
|
|
||||||
int devname_len = 13;
|
|
||||||
char buff[LMAX_DEVPATH];
|
|
||||||
char extra[LMAX_DEVPATH];
|
|
||||||
--
|
|
||||||
2.26.2
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
|||||||
From c13c9d3a90aec4779a0cbe484913f24bce947ab1 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Wenchao Hao <haowenchao@huawei.com>
|
|
||||||
Date: Tue, 8 Jun 2021 16:26:04 +0800
|
|
||||||
Subject: [PATCH] Fix lsscsi wwn number output error
|
|
||||||
|
|
||||||
The true wwn number is from the sixth byte of scsi-*
|
|
||||||
|
|
||||||
Signed-off-by: Wenchao Hao <haowenchao@huawei.com>
|
|
||||||
---
|
|
||||||
src/lsscsi.c | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/src/lsscsi.c b/src/lsscsi.c
|
|
||||||
index 6f6953f..2be3ab9 100644
|
|
||||||
--- a/src/lsscsi.c
|
|
||||||
+++ b/src/lsscsi.c
|
|
||||||
@@ -1515,7 +1515,7 @@ collect_disk_wwn_nodes(void)
|
|
||||||
|
|
||||||
cur_ent = &cur_list->nodes[cur_list->count];
|
|
||||||
my_strcopy(cur_ent->wwn, "0x", 3);
|
|
||||||
- my_strcopy(cur_ent->wwn + 2, dep->d_name + 5,
|
|
||||||
+ my_strcopy(cur_ent->wwn + 2, dep->d_name + 6,
|
|
||||||
sizeof(cur_ent->wwn) - 2);
|
|
||||||
my_strcopy(cur_ent->disk_bname, basename(symlink_path),
|
|
||||||
sizeof(cur_ent->disk_bname));
|
|
@ -1,15 +1,13 @@
|
|||||||
Summary: List SCSI devices (or hosts) and associated information
|
Summary: List SCSI devices (or hosts) and associated information
|
||||||
Name: lsscsi
|
Name: lsscsi
|
||||||
Version: 0.32
|
Version: 0.32
|
||||||
Release: 3%{?dist}
|
Release: 12%{?dist}
|
||||||
License: GPLv2+
|
License: GPL-2.0-or-later
|
||||||
Group: Applications/System
|
|
||||||
# official git repository: https://github.com/doug-gilbert/lsscsi
|
# official git repository: https://github.com/doug-gilbert/lsscsi
|
||||||
Source0: http://sg.danny.cz/scsi/%{name}-%{version}.tgz
|
Source0: http://sg.danny.cz/scsi/%{name}-%{version}.tgz
|
||||||
URL: http://sg.danny.cz/scsi/lsscsi.html
|
URL: http://sg.danny.cz/scsi/lsscsi.html
|
||||||
Patch0: lsscsi-0.32-fix-uninitialized-variable.patch
|
BuildRequires: gcc
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1981038
|
BuildRequires: make
|
||||||
Patch1: lsscsi-0.33-wwn-trunc.patch
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Uses information provided by the sysfs pseudo file system in Linux kernel
|
Uses information provided by the sysfs pseudo file system in Linux kernel
|
||||||
@ -23,14 +21,15 @@ Author:
|
|||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p 1 -n %{name}-032r164
|
%autosetup -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure --disable-nvme-supp
|
||||||
make %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make DESTDIR=%{buildroot} install
|
%make_install
|
||||||
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
@ -40,20 +39,72 @@ make DESTDIR=%{buildroot} install
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon Aug 16 2021 Tomas Bzatek <tbzatek@redhat.com> - 0.32-3
|
* Tue May 07 2024 Tomas Bzatek <tbzatek@redhat.com> - 0.32-12
|
||||||
- Fix WWN ID truncation (#1981038)
|
- Disable NVMe support
|
||||||
|
|
||||||
* Wed Nov 11 2020 Tomas Bzatek <tbzatek@redhat.com> - 0.32-2
|
* Mon Feb 12 2024 Tomas Bzatek <tbzatek@redhat.com> - 0.32-11
|
||||||
- Fix an unitialized variable (Covscan)
|
- Use a SPDX license tag
|
||||||
|
|
||||||
* Tue Nov 10 2020 Tomas Bzatek <tbzatek@redhat.com> - 0.32-1
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.32-10
|
||||||
- Upgrade to 0.32 upstream snapshot (#1855766)
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
- Fix NVMe device parsing (#1687841, #1845977)
|
|
||||||
- Fix WWN string reporting (#1846559)
|
|
||||||
- Implement SCSI identifier sort priority (#1846566)
|
|
||||||
|
|
||||||
* Fri Aug 10 2018 Gris Ge <fge@redhat.com> 0.30-1
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.32-9
|
||||||
- Upgrade to 0.30 release.
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.32-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.32-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.32-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.32-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.32-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri May 07 2021 Dan Horák <dan[at]danny.cz> - 0.32-3
|
||||||
|
- update to 0.32 final
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.32-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Nov 12 2020 Tomas Bzatek <tbzatek@redhat.com> - 0.32-1
|
||||||
|
- Update to 0.32 upstream snapshot
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.31-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 0.31-2
|
||||||
|
- Use make macros
|
||||||
|
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
|
||||||
|
|
||||||
|
* Fri Feb 21 2020 Dan Horák <dan[at]danny.cz> - 0.31-1
|
||||||
|
- update to 0.31 (#1758436)
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.30-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 24 2018 Dan Horák <dan[at]danny.cz> - 0.30-1
|
||||||
|
- update to 0.30
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.28-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Apr 16 2018 Dan Horák <dan[at]danny.cz> - 0.28-8
|
||||||
|
- fix FTBFS
|
||||||
|
|
||||||
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.28-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.28-6
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.28-6
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
Loading…
Reference in New Issue
Block a user