Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 715787b720 | |||
| 1943a21967 |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/libnftnl-1.2.2.tar.bz2
|
||||
libnftnl-1.2.8.tar.xz
|
||||
|
||||
@ -1 +0,0 @@
|
||||
a43773c5569d6a80cd94add256bef4dd63dd7571 SOURCES/libnftnl-1.2.2.tar.bz2
|
||||
@ -0,0 +1,48 @@
|
||||
From 73e56f12f39cf114532eb37119ac84865ffd71fd Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <psutter@redhat.com>
|
||||
Date: Wed, 4 Dec 2024 16:20:16 +0100
|
||||
Subject: [PATCH] set: Fix for array overrun when setting NFTNL_SET_DESC_CONCAT
|
||||
|
||||
JIRA: https://issues.redhat.com/browse/RHEL-34697
|
||||
Upstream Status: libnftnl commit 7cb2a63d67af14576988631e916404592f261fd4
|
||||
|
||||
commit 7cb2a63d67af14576988631e916404592f261fd4
|
||||
Author: Phil Sutter <phil@nwl.cc>
|
||||
Date: Wed Nov 27 16:30:08 2024 +0100
|
||||
|
||||
set: Fix for array overrun when setting NFTNL_SET_DESC_CONCAT
|
||||
|
||||
Assuming max data_len of 16 * 4B and no zero bytes in 'data':
|
||||
The while loop will increment field_count, use it as index for the
|
||||
field_len array and afterwards make sure it hasn't increased to
|
||||
NFT_REG32_COUNT. Thus a value of NFT_REG32_COUNT - 1 (= 15) will pass
|
||||
the check, get incremented to 16 and used as index to the 16 fields long
|
||||
array.
|
||||
Use a less fancy for-loop to avoid the increment vs. check problem.
|
||||
|
||||
Fixes: 407f616ea5318 ("set: buffer overflow in NFTNL_SET_DESC_CONCAT setter")
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Reviewed-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
src/set.c | 6 ++++--
|
||||
1 file changed, 4 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/set.c b/src/set.c
|
||||
index 75ad64e..e9048e0 100644
|
||||
--- a/src/set.c
|
||||
+++ b/src/set.c
|
||||
@@ -189,8 +189,10 @@ int nftnl_set_set_data(struct nftnl_set *s, uint16_t attr, const void *data,
|
||||
return -1;
|
||||
|
||||
memcpy(&s->desc.field_len, data, data_len);
|
||||
- while (s->desc.field_len[++s->desc.field_count]) {
|
||||
- if (s->desc.field_count >= NFT_REG32_COUNT)
|
||||
+ for (s->desc.field_count = 0;
|
||||
+ s->desc.field_count < NFT_REG32_COUNT;
|
||||
+ s->desc.field_count++) {
|
||||
+ if (!s->desc.field_len[s->desc.field_count])
|
||||
break;
|
||||
}
|
||||
break;
|
||||
153
0002-trace-add-support-for-TRACE_CT-information.patch
Normal file
153
0002-trace-add-support-for-TRACE_CT-information.patch
Normal file
@ -0,0 +1,153 @@
|
||||
From 486a9c5ed53e3f1bea1bc4b8668eefa9453e1aa8 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <psutter@redhat.com>
|
||||
Date: Tue, 15 Jul 2025 20:42:30 +0200
|
||||
Subject: [PATCH] trace: add support for TRACE_CT information
|
||||
|
||||
JIRA: https://issues.redhat.com/browse/RHEL-103864
|
||||
Upstream Status: libnftnl commit 56e37303ed30a4f9b73ec1f90b53da7dda645748
|
||||
|
||||
commit 56e37303ed30a4f9b73ec1f90b53da7dda645748
|
||||
Author: Florian Westphal <fw@strlen.de>
|
||||
Date: Thu May 22 15:51:15 2025 +0200
|
||||
|
||||
trace: add support for TRACE_CT information
|
||||
|
||||
Decode direction/id/state/status information.
|
||||
This will be used by 'nftables monitor trace' to print a packets
|
||||
conntrack state.
|
||||
|
||||
Signed-off-by: Florian Westphal <fw@strlen.de>
|
||||
Reviewed-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
include/libnftnl/trace.h | 4 +++
|
||||
include/linux/netfilter/nf_tables.h | 8 +++++
|
||||
src/trace.c | 46 +++++++++++++++++++++++++++++
|
||||
3 files changed, 58 insertions(+)
|
||||
|
||||
diff --git a/include/libnftnl/trace.h b/include/libnftnl/trace.h
|
||||
index 18ab0c3..5d66b50 100644
|
||||
--- a/include/libnftnl/trace.h
|
||||
+++ b/include/libnftnl/trace.h
|
||||
@@ -28,6 +28,10 @@ enum nftnl_trace_attr {
|
||||
NFTNL_TRACE_VERDICT,
|
||||
NFTNL_TRACE_NFPROTO,
|
||||
NFTNL_TRACE_POLICY,
|
||||
+ NFTNL_TRACE_CT_DIRECTION,
|
||||
+ NFTNL_TRACE_CT_ID,
|
||||
+ NFTNL_TRACE_CT_STATE,
|
||||
+ NFTNL_TRACE_CT_STATUS,
|
||||
__NFTNL_TRACE_MAX,
|
||||
};
|
||||
#define NFTNL_TRACE_MAX (__NFTNL_TRACE_MAX - 1)
|
||||
diff --git a/include/linux/netfilter/nf_tables.h b/include/linux/netfilter/nf_tables.h
|
||||
index c48b193..2c9f833 100644
|
||||
--- a/include/linux/netfilter/nf_tables.h
|
||||
+++ b/include/linux/netfilter/nf_tables.h
|
||||
@@ -1797,6 +1797,10 @@ enum nft_xfrm_keys {
|
||||
* @NFTA_TRACE_MARK: nfmark (NLA_U32)
|
||||
* @NFTA_TRACE_NFPROTO: nf protocol processed (NLA_U32)
|
||||
* @NFTA_TRACE_POLICY: policy that decided fate of packet (NLA_U32)
|
||||
+ * @NFTA_TRACE_CT_ID: conntrack id (NLA_U32)
|
||||
+ * @NFTA_TRACE_CT_DIRECTION: packets direction (NLA_U8)
|
||||
+ * @NFTA_TRACE_CT_STATUS: conntrack status (NLA_U32)
|
||||
+ * @NFTA_TRACE_CT_STATE: packet state (new, established, ...) (NLA_U32)
|
||||
*/
|
||||
enum nft_trace_attributes {
|
||||
NFTA_TRACE_UNSPEC,
|
||||
@@ -1817,6 +1821,10 @@ enum nft_trace_attributes {
|
||||
NFTA_TRACE_NFPROTO,
|
||||
NFTA_TRACE_POLICY,
|
||||
NFTA_TRACE_PAD,
|
||||
+ NFTA_TRACE_CT_ID,
|
||||
+ NFTA_TRACE_CT_DIRECTION,
|
||||
+ NFTA_TRACE_CT_STATUS,
|
||||
+ NFTA_TRACE_CT_STATE,
|
||||
__NFTA_TRACE_MAX
|
||||
};
|
||||
#define NFTA_TRACE_MAX (__NFTA_TRACE_MAX - 1)
|
||||
diff --git a/src/trace.c b/src/trace.c
|
||||
index f426437..26bf8d7 100644
|
||||
--- a/src/trace.c
|
||||
+++ b/src/trace.c
|
||||
@@ -48,6 +48,12 @@ struct nftnl_trace {
|
||||
uint32_t policy;
|
||||
uint16_t iiftype;
|
||||
uint16_t oiftype;
|
||||
+ struct {
|
||||
+ uint16_t dir;
|
||||
+ uint32_t id;
|
||||
+ uint32_t state;
|
||||
+ uint32_t status;
|
||||
+ } ct;
|
||||
|
||||
uint32_t flags;
|
||||
};
|
||||
@@ -92,6 +98,10 @@ static int nftnl_trace_parse_attr_cb(const struct nlattr *attr, void *data)
|
||||
if (mnl_attr_validate(attr, MNL_TYPE_NESTED) < 0)
|
||||
abi_breakage();
|
||||
break;
|
||||
+ case NFTA_TRACE_CT_DIRECTION:
|
||||
+ if (mnl_attr_validate(attr, MNL_TYPE_U8) < 0)
|
||||
+ abi_breakage();
|
||||
+ break;
|
||||
case NFTA_TRACE_IIFTYPE:
|
||||
case NFTA_TRACE_OIFTYPE:
|
||||
if (mnl_attr_validate(attr, MNL_TYPE_U16) < 0)
|
||||
@@ -104,6 +114,9 @@ static int nftnl_trace_parse_attr_cb(const struct nlattr *attr, void *data)
|
||||
case NFTA_TRACE_POLICY:
|
||||
case NFTA_TRACE_NFPROTO:
|
||||
case NFTA_TRACE_TYPE:
|
||||
+ case NFTA_TRACE_CT_ID:
|
||||
+ case NFTA_TRACE_CT_STATE:
|
||||
+ case NFTA_TRACE_CT_STATUS:
|
||||
if (mnl_attr_validate(attr, MNL_TYPE_U32) < 0)
|
||||
abi_breakage();
|
||||
break;
|
||||
@@ -194,6 +207,18 @@ const void *nftnl_trace_get_data(const struct nftnl_trace *trace,
|
||||
case NFTNL_TRACE_POLICY:
|
||||
*data_len = sizeof(uint32_t);
|
||||
return &trace->policy;
|
||||
+ case NFTNL_TRACE_CT_DIRECTION:
|
||||
+ *data_len = sizeof(uint16_t);
|
||||
+ return &trace->ct.dir;
|
||||
+ case NFTNL_TRACE_CT_ID:
|
||||
+ *data_len = sizeof(uint32_t);
|
||||
+ return &trace->ct.id;
|
||||
+ case NFTNL_TRACE_CT_STATE:
|
||||
+ *data_len = sizeof(uint32_t);
|
||||
+ return &trace->ct.state;
|
||||
+ case NFTNL_TRACE_CT_STATUS:
|
||||
+ *data_len = sizeof(uint32_t);
|
||||
+ return &trace->ct.status;
|
||||
case __NFTNL_TRACE_MAX:
|
||||
break;
|
||||
}
|
||||
@@ -423,5 +448,26 @@ int nftnl_trace_nlmsg_parse(const struct nlmsghdr *nlh, struct nftnl_trace *t)
|
||||
t->flags |= (1 << NFTNL_TRACE_MARK);
|
||||
}
|
||||
|
||||
+ if (tb[NFTA_TRACE_CT_DIRECTION]) {
|
||||
+ t->ct.dir = mnl_attr_get_u8(tb[NFTA_TRACE_CT_DIRECTION]);
|
||||
+ t->flags |= (1 << NFTNL_TRACE_CT_DIRECTION);
|
||||
+ }
|
||||
+
|
||||
+ if (tb[NFTA_TRACE_CT_ID]) {
|
||||
+ /* NFT_CT_ID is expected to be in big endian */
|
||||
+ t->ct.id = mnl_attr_get_u32(tb[NFTA_TRACE_CT_ID]);
|
||||
+ t->flags |= (1 << NFTNL_TRACE_CT_ID);
|
||||
+ }
|
||||
+
|
||||
+ if (tb[NFTA_TRACE_CT_STATE]) {
|
||||
+ t->ct.state = ntohl(mnl_attr_get_u32(tb[NFTA_TRACE_CT_STATE]));
|
||||
+ t->flags |= (1 << NFTNL_TRACE_CT_STATE);
|
||||
+ }
|
||||
+
|
||||
+ if (tb[NFTA_TRACE_CT_STATUS]) {
|
||||
+ t->ct.status = ntohl(mnl_attr_get_u32(tb[NFTA_TRACE_CT_STATUS]));
|
||||
+ t->flags |= (1 << NFTNL_TRACE_CT_STATUS);
|
||||
+ }
|
||||
+
|
||||
return 0;
|
||||
}
|
||||
37
0003-udata-Introduce-NFTNL_UDATA_TABLE_NFT-VER-BLD.patch
Normal file
37
0003-udata-Introduce-NFTNL_UDATA_TABLE_NFT-VER-BLD.patch
Normal file
@ -0,0 +1,37 @@
|
||||
From 775bf5eba066f61c7737d6995f276765f76328d9 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <psutter@redhat.com>
|
||||
Date: Wed, 10 Sep 2025 17:29:07 +0200
|
||||
Subject: [PATCH] udata: Introduce NFTNL_UDATA_TABLE_NFT{VER,BLD}
|
||||
|
||||
JIRA: https://issues.redhat.com/browse/RHEL-113823
|
||||
Upstream Status: libnftnl commit eb8fb569c501dc088dc950061369102687f8d2a5
|
||||
|
||||
commit eb8fb569c501dc088dc950061369102687f8d2a5
|
||||
Author: Phil Sutter <phil@nwl.cc>
|
||||
Date: Tue Aug 12 18:47:14 2025 +0200
|
||||
|
||||
udata: Introduce NFTNL_UDATA_TABLE_NFT{VER,BLD}
|
||||
|
||||
Register these table udata types here to avoid accidental overlaps.
|
||||
|
||||
Signed-off-by: Phil Sutter <phil@nwl.cc>
|
||||
Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
|
||||
|
||||
Signed-off-by: Phil Sutter <psutter@redhat.com>
|
||||
---
|
||||
include/libnftnl/udata.h | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/include/libnftnl/udata.h b/include/libnftnl/udata.h
|
||||
index dbf3a60..9b8a3b6 100644
|
||||
--- a/include/libnftnl/udata.h
|
||||
+++ b/include/libnftnl/udata.h
|
||||
@@ -11,6 +11,8 @@ extern "C" {
|
||||
|
||||
enum nftnl_udata_table_types {
|
||||
NFTNL_UDATA_TABLE_COMMENT,
|
||||
+ NFTNL_UDATA_TABLE_NFTVER,
|
||||
+ NFTNL_UDATA_TABLE_NFTBLD,
|
||||
__NFTNL_UDATA_TABLE_MAX
|
||||
};
|
||||
#define NFTNL_UDATA_TABLE_MAX (__NFTNL_UDATA_TABLE_MAX - 1)
|
||||
@ -1,47 +0,0 @@
|
||||
From 7255af8a844a1444d59023500d176c8c2fff7a62 Mon Sep 17 00:00:00 2001
|
||||
From: Phil Sutter <psutter@redhat.com>
|
||||
Date: Wed, 28 Jun 2023 15:41:05 +0200
|
||||
Subject: [PATCH] libnftnl.map: Restore custom LIBNFTNL_RHEL_14 version
|
||||
|
||||
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2211096
|
||||
Upstream Status: RHEL-only
|
||||
|
||||
Avoid breaking old binaries. Keep the custom version name exporting
|
||||
symbol nftnl_set_elem_nlmsg_build upstream exported in LIBNFTNL_17.
|
||||
---
|
||||
src/libnftnl.map | 7 +++++--
|
||||
1 file changed, 5 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/libnftnl.map b/src/libnftnl.map
|
||||
index ad8f2af060aef..26701c2984296 100644
|
||||
--- a/src/libnftnl.map
|
||||
+++ b/src/libnftnl.map
|
||||
@@ -360,6 +360,10 @@ LIBNFTNL_13 {
|
||||
nftnl_flowtable_set_data;
|
||||
} LIBNFTNL_12;
|
||||
|
||||
+LIBNFTNL_RHEL_14 {
|
||||
+ nftnl_set_elem_nlmsg_build;
|
||||
+} LIBNFTNL_13;
|
||||
+
|
||||
LIBNFTNL_14 {
|
||||
nftnl_udata_nest_start;
|
||||
nftnl_udata_nest_end;
|
||||
@@ -367,7 +371,7 @@ LIBNFTNL_14 {
|
||||
nftnl_chain_get_array;
|
||||
nftnl_flowtable_set_array;
|
||||
nftnl_flowtable_get_array;
|
||||
-} LIBNFTNL_13;
|
||||
+} LIBNFTNL_RHEL_14;
|
||||
|
||||
LIBNFTNL_15 {
|
||||
nftnl_obj_get_data;
|
||||
@@ -385,5 +389,4 @@ LIBNFTNL_16 {
|
||||
} LIBNFTNL_15;
|
||||
|
||||
LIBNFTNL_17 {
|
||||
- nftnl_set_elem_nlmsg_build;
|
||||
} LIBNFTNL_16;
|
||||
--
|
||||
2.40.0
|
||||
|
||||
@ -1,221 +0,0 @@
|
||||
%define rpmversion 1.2.2
|
||||
%define specrelease 3
|
||||
|
||||
Name: libnftnl
|
||||
Version: %{rpmversion}
|
||||
Release: %{specrelease}%{?dist}
|
||||
Summary: Library for low-level interaction with nftables Netlink's API over libmnl
|
||||
License: GPLv2+
|
||||
URL: http://netfilter.org/projects/libnftnl/
|
||||
Source0: http://ftp.netfilter.org/pub/libnftnl/libnftnl-%{version}.tar.bz2
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: automake
|
||||
BuildRequires: libtool
|
||||
BuildRequires: libmnl-devel
|
||||
|
||||
Patch0001: 0001-libnftnl.map-Restore-custom-LIBNFTNL_RHEL_14-version.patch
|
||||
|
||||
%description
|
||||
A library for low-level interaction with nftables Netlink's API over libmnl.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
The %{name}-devel package contains libraries and header files for
|
||||
developing applications that use %{name}.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
# This is what autogen.sh (only in git repo) does - without it, patches changing
|
||||
# Makefile.am cause the build system to regenerate Makefile.in and trying to use
|
||||
# automake-1.14 for that which is not available in RHEL.
|
||||
autoreconf -fi
|
||||
rm -rf autom4te*.cache
|
||||
|
||||
%configure --disable-static --disable-silent-rules
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%check
|
||||
make %{?_smp_mflags} check
|
||||
|
||||
%install
|
||||
%make_install
|
||||
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%doc COPYING
|
||||
%{_libdir}/*.so.*
|
||||
|
||||
%files devel
|
||||
%{_libdir}/libnft*.so
|
||||
%{_libdir}/pkgconfig/libnftnl.pc
|
||||
%{_includedir}/libnftnl
|
||||
|
||||
%changelog
|
||||
* Wed Jun 28 2023 Phil Sutter <psutter@redhat.com> [1.2.2-3.el8]
|
||||
- Export nftnl_set_elem_nlmsg_build symbol in the right version
|
||||
|
||||
* Wed Jun 28 2023 Phil Sutter <psutter@redhat.com> [1.2.2-2.el8]
|
||||
- libnftnl.map: Restore custom LIBNFTNL_RHEL_14 version (Phil Sutter) [2211096]
|
||||
|
||||
* Tue May 30 2023 Phil Sutter <psutter@redhat.com> [1.2.2-1.el8]
|
||||
- Rebase onto version 1.2.2 (Phil Sutter) [2211096]
|
||||
|
||||
* Fri Jan 21 2022 Phil Sutter <psutter@redhat.com> [1.1.5-5.el8]
|
||||
- set: expose nftnl_set_elem_nlmsg_build() (Phil Sutter) [2040754]
|
||||
- expr: dynset: release stateful expression from .free path (Phil Sutter) [2040478]
|
||||
- set_elem: missing set and build for NFTNL_SET_ELEM_EXPR (Phil Sutter) [2040478]
|
||||
|
||||
* Wed Feb 19 2020 Phil Sutter <psutter@redhat.com> [1.1.5-4.el8]
|
||||
- src: Fix for reading garbage in nftnl_chain getters (Phil Sutter) [1758673]
|
||||
|
||||
* Fri Feb 14 2020 Phil Sutter <psutter@redhat.com> [1.1.5-3.el8]
|
||||
- set_elem: Introduce support for NFTNL_SET_ELEM_KEY_END (Phil Sutter) [1795223]
|
||||
- set: Add support for NFTA_SET_DESC_CONCAT attributes (Phil Sutter) [1795223]
|
||||
- include: resync nf_tables.h cache copy (Phil Sutter) [1795223]
|
||||
|
||||
* Fri Dec 06 2019 Phil Sutter <psutter@redhat.com> [1.1.5-2.el8]
|
||||
- chain: Correctly check realloc() call (Phil Sutter) [1778952]
|
||||
- flowtable: Correctly check realloc() call (Phil Sutter) [1778952]
|
||||
- chain: Fix memleak in error path of nftnl_chain_parse_devs() (Phil Sutter) [1778952]
|
||||
- flowtable: Fix memleak in error path of nftnl_flowtable_parse_devs() (Phil Sutter) [1778952]
|
||||
|
||||
* Mon Dec 02 2019 Phil Sutter <psutter@redhat.com> [1.1.5-1.el8]
|
||||
- Rebase onto upstream version 1.1.5 (Phil Sutter) [1717129]
|
||||
|
||||
* Thu Oct 24 2019 Phil Sutter <psutter@redhat.com> [1.1.4-3.el8]
|
||||
- set: Export nftnl_set_list_lookup_byname() (Phil Sutter) [1762563]
|
||||
|
||||
* Thu Oct 17 2019 Phil Sutter <psutter@redhat.com> [1.1.4-2.el8]
|
||||
- obj/ct_timeout: Fix NFTA_CT_TIMEOUT_DATA parser (Phil Sutter) [1758673]
|
||||
- set_elem: Validate nftnl_set_elem_set() parameters (Phil Sutter) [1758673]
|
||||
- obj/ct_timeout: Avoid array overrun in timeout_parse_attr_data() (Phil Sutter) [1758673]
|
||||
- set: Don't bypass checks in nftnl_set_set_u{32,64}() (Phil Sutter) [1758673]
|
||||
- obj/tunnel: Fix for undefined behaviour (Phil Sutter) [1758673]
|
||||
- set_elem: Fix return code of nftnl_set_elem_set() (Phil Sutter) [1758673]
|
||||
- obj: ct_timeout: Check return code of mnl_attr_parse_nested() (Phil Sutter) [1758673]
|
||||
|
||||
* Fri Oct 04 2019 Phil Sutter <psutter@redhat.com> [1.1.4-1.el8]
|
||||
- Rebase to upstream version 1.1.4 (Phil Sutter) [1717129]
|
||||
|
||||
* Thu Jan 31 2019 Phil Sutter <psutter@redhat.com> [1.1.1-4.el8]
|
||||
- src: rule: Support NFTA_RULE_POSITION_ID attribute (Phil Sutter) [1670565]
|
||||
|
||||
* Tue Jan 29 2019 Phil Sutter <psutter@redhat.com> [1.1.1-3.el8]
|
||||
- src: chain: Fix nftnl_chain_rule_insert_at() (Phil Sutter) [1666495]
|
||||
- src: chain: Add missing nftnl_chain_rule_del() (Phil Sutter) [1666495]
|
||||
- flowtable: Fix for reading garbage (Phil Sutter) [1661327]
|
||||
- flowtable: Fix memleak in nftnl_flowtable_parse_devs() (Phil Sutter) [1661327]
|
||||
- flowtable: Fix use after free in two spots (Phil Sutter) [1661327]
|
||||
- flowtable: Add missing break (Phil Sutter) [1661327]
|
||||
- object: Avoid obj_ops array overrun (Phil Sutter) [1661327]
|
||||
|
||||
* Mon Dec 17 2018 Phil Sutter <psutter@redhat.com> [1.1.1-2.el8]
|
||||
- chain: Hash chain list by name (Phil Sutter) [1658533]
|
||||
- chain: Add lookup functions for chain list and rules in chain (Phil Sutter) [1658533]
|
||||
- chain: Support per chain rules list (Phil Sutter) [1658533]
|
||||
- src: remove nftnl_rule_cmp() and nftnl_expr_cmp() (Phil Sutter) [1658533]
|
||||
|
||||
* Thu Jul 12 2018 Phil Sutter <psutter@redhat.com> [1.1.1-1.el8]
|
||||
- Rebase onto upstream version 1.1.1
|
||||
- Sync spec file with RHEL7
|
||||
- Disable JSON parsing, deprecated by upstream
|
||||
- Make use of builtin testsuite
|
||||
|
||||
* Sat Jun 23 2018 Phil Sutter - 1.0.9-3
|
||||
- Drop leftover mxml dependency [1594917]
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Mon Jan 08 2018 Kevin Fenzi <kevin@scrye.com> - 1.0.9-1
|
||||
- Update to 1.0.9. Fixes bug #1531004
|
||||
|
||||
* Sat Oct 21 2017 Kevin Fenzi <kevin@scrye.com> - 1.0.8-4
|
||||
- Update to 1.0.8. Fixes bug #1504350
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.7-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.7-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Dec 22 2016 Kevin Fenzi <kevin@scrye.com> - 1.0.7-1
|
||||
- Update to 1.0.7. Fixes bug #1406201
|
||||
|
||||
* Wed Jun 01 2016 Kevin Fenzi <kevin@scrye.com> - 1.0.6-1
|
||||
- Update to 1.0.6. Fixes bug #1341384
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Sep 17 2015 Kevin Fenzi <kevin@scrye.com> 1.0.5-1
|
||||
- Update to 1.0.5. Fixes bug #1263684
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Fri Dec 26 2014 Kevin Fenzi <kevin@scrye.com> 1.0.3-1
|
||||
- Update to final 1.0.3
|
||||
|
||||
* Wed Sep 03 2014 Kevin Fenzi <kevin@scrye.com> 1.0.3-0.1.20140903git
|
||||
- Update to 20140903 git snapshot
|
||||
|
||||
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Wed Jun 25 2014 Kevin Fenzi <kevin@scrye.com> 1.0.2-1
|
||||
- Update to 1.0.2
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Thu Apr 24 2014 Kevin Fenzi <kevin@scrye.com> 1.0.1-1.
|
||||
- Update to 1.0.1
|
||||
|
||||
* Sun Mar 30 2014 Kevin Fenzi <kevin@scrye.com> 1.0.0-1.20140330git
|
||||
- Update to 20140330 snapshot
|
||||
- Sync version to be a post 1.0.0 snapshot
|
||||
|
||||
* Wed Mar 26 2014 Kevin Fenzi <kevin@scrye.com> 0-0.10.20140326git
|
||||
- Update to 20140326 snapshot
|
||||
|
||||
* Fri Mar 07 2014 Kevin Fenzi <kevin@scrye.com> 0-0.9.20140307git
|
||||
- Update to 20140307 snapshot
|
||||
|
||||
* Sat Jan 25 2014 Kevin Fenzi <kevin@scrye.com> 0-0.8.20140125git
|
||||
- Update to 20140125
|
||||
|
||||
* Thu Jan 23 2014 Kevin Fenzi <kevin@scrye.com> 0-0.7.20140122git
|
||||
- Add obsoletes/provides to devel subpackage as well.
|
||||
|
||||
* Wed Jan 22 2014 Kevin Fenzi <kevin@scrye.com> 0-0.6.20140122git
|
||||
- Renamed libnftnl
|
||||
- Update to 20140122 snapshot.
|
||||
|
||||
* Sat Jan 18 2014 Kevin Fenzi <kevin@scrye.com> 0-0.5.20140118git
|
||||
- Update to 20140118 snapshot.
|
||||
|
||||
* Sat Jan 11 2014 Kevin Fenzi <kevin@scrye.com> 0-0.4.20140111git
|
||||
- Update to 20140111 snapshot.
|
||||
- Enable xml (some tests stll fail, but it otherwise builds ok)
|
||||
|
||||
* Mon Dec 02 2013 Kevin Fenzi <kevin@scrye.com> 0-0.3.20131202git
|
||||
- Update to 20131202 snapshot, switch to upstream snapshot repo instead of git checkouts.
|
||||
|
||||
* Mon Dec 02 2013 Kevin Fenzi <kevin@scrye.com> 0-0.2
|
||||
- Fixes from review.
|
||||
|
||||
* Sat Nov 30 2013 Kevin Fenzi <kevin@scrye.com> 0-0.1
|
||||
- initial version for Fedora review
|
||||
286
libnftnl.spec
Normal file
286
libnftnl.spec
Normal file
@ -0,0 +1,286 @@
|
||||
Name: libnftnl
|
||||
Version: 1.2.8
|
||||
Release: 4%{?dist}
|
||||
Summary: Library for low-level interaction with nftables Netlink's API over libmnl
|
||||
License: GPL-2.0-or-later
|
||||
URL: https://netfilter.org/projects/libnftnl/
|
||||
Source0: %{url}/files/%{name}-%{version}.tar.xz
|
||||
|
||||
Patch1: 0001-set-Fix-for-array-overrun-when-setting-NFTNL_SET_DES.patch
|
||||
Patch2: 0002-trace-add-support-for-TRACE_CT-information.patch
|
||||
Patch3: 0003-udata-Introduce-NFTNL_UDATA_TABLE_NFT-VER-BLD.patch
|
||||
|
||||
BuildRequires: libmnl-devel
|
||||
BuildRequires: gcc
|
||||
BuildRequires: make
|
||||
#BuildRequires: autoconf
|
||||
#BuildRequires: automake
|
||||
|
||||
%description
|
||||
A library for low-level interaction with nftables Netlink's API over libmnl.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
The %{name}-devel package contains libraries and header files for
|
||||
developing applications that use %{name}.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
# This is what autogen.sh (only in git repo) does - without it, patches changing
|
||||
# Makefile.am cause the build system to regenerate Makefile.in and trying to use
|
||||
# automake-1.14 for that which is not available in RHEL.
|
||||
#autoreconf -fi
|
||||
#rm -rf autom4te*.cache
|
||||
|
||||
%configure --disable-static --disable-silent-rules
|
||||
%make_build
|
||||
|
||||
%check
|
||||
%make_build check
|
||||
|
||||
%install
|
||||
%make_install
|
||||
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
||||
|
||||
%files
|
||||
%doc COPYING
|
||||
%{_libdir}/*.so.*
|
||||
|
||||
%files devel
|
||||
%{_libdir}/libnft*.so
|
||||
%{_libdir}/pkgconfig/libnftnl.pc
|
||||
%{_includedir}/libnftnl
|
||||
|
||||
%changelog
|
||||
* Wed Sep 10 2025 Phil Sutter <psutter@redhat.com> [1.2.8-4.el10]
|
||||
- udata: Introduce NFTNL_UDATA_TABLE_NFT{VER,BLD} (Phil Sutter) [RHEL-113823]
|
||||
|
||||
* Tue Jul 15 2025 Phil Sutter <psutter@redhat.com> [1.2.8-3.el10]
|
||||
- trace: add support for TRACE_CT information (Phil Sutter) [RHEL-103864]
|
||||
|
||||
* Wed Dec 04 2024 Phil Sutter <psutter@redhat.com> [1.2.8-2.el10]
|
||||
- set: Fix for array overrun when setting NFTNL_SET_DESC_CONCAT (Phil Sutter) [RHEL-34697]
|
||||
|
||||
* Thu Nov 07 2024 Phil Sutter <psutter@redhat.com> [1.2.8-1.el10]
|
||||
- Rebase onto version 1.2.8 (Phil Sutter) [RHEL-66276]
|
||||
|
||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.2.7-4.1
|
||||
- Bump release for October 2024 mass rebuild:
|
||||
Resolves: RHEL-64018
|
||||
|
||||
* Tue Sep 10 2024 Phil Sutter <psutter@redhat.com> [1.2.7-4.el10]
|
||||
- Bump release to trigger CI (Phil Sutter)
|
||||
|
||||
* Tue Sep 03 2024 Phil Sutter <psutter@redhat.com> [1.2.7-3.el10]
|
||||
- Bump release to trigger CI (Phil Sutter)
|
||||
|
||||
* Fri Aug 02 2024 Phil Sutter <psutter@redhat.com> [1.2.7-2.el10]
|
||||
- Bump release to trigger CI (Phil Sutter)
|
||||
|
||||
* Wed Jul 17 2024 Phil Sutter <psutter@redhat.com> [1.2.7-1.el10]
|
||||
- Rebase onto version 1.2.7 (Phil Sutter)
|
||||
|
||||
* Tue Jul 02 2024 Phil Sutter <psutter@redhat.com> [1.2.6-8.el10]
|
||||
- Sync with RHEL9 package (Phil Sutter)
|
||||
|
||||
* Tue Jun 25 2024 Phil Sutter <psutter@redhat.com> - 1.2.6-7
|
||||
- Bump release to trigger CI
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.2.6-6
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.6-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.6-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Aug 11 2023 Phil Sutter <psutter@redhat.com> - 1.2.6-3
|
||||
- Convert license to SPDX format
|
||||
|
||||
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Fri Jul 14 2023 Phil Sutter <psutter@redhat.com> - 1.2.6-1
|
||||
- Drop outdated libnftables provides, it might clash with the new
|
||||
nftables-provided libnftables at some point in future
|
||||
- Backport one late fix from upstream
|
||||
- new version 1.2.6
|
||||
|
||||
* Fri Mar 10 2023 Phil Sutter <psutter@redhat.com> - 1.2.5-1
|
||||
- new version 1.2.5
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Wed Nov 16 2022 Phil Sutter <psutter@redhat.com> - 1.2.4-1
|
||||
- new version 1.2.4
|
||||
|
||||
* Wed Aug 10 2022 Phil Sutter <psutter@redhat.com> - 1.2.3-1
|
||||
- New version 1.2.3
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Tue Jun 07 2022 Phil Sutter <psutter@redhat.com> - 1.2.2-1
|
||||
- Update to 1.2.2. Fixes rhbz#2094429
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Sat Nov 27 2021 Kevin Fenzi <kevin@scrye.com> - 1.2.1-1
|
||||
- Update to 1.2.1. Fixes rhbz#2024580
|
||||
|
||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Tue Jun 01 2021 Phil Sutter <psutter@redhat.com> - 1.2.0-1
|
||||
- Update to 1.2.0. Fixes rhbz#1964391
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.9-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Sat Jan 16 2021 Kevin Fenzi <kevin@scrye.com> - 1.1.9-1
|
||||
- Update to 1.1.9. Fixes rhbz#1916855
|
||||
|
||||
* Sat Oct 31 2020 Kevin Fenzi <kevin@scrye.com> - 1.1.8-1
|
||||
- Update to 1.1.8. Fixes bug #1891597
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Jul 13 2020 Tom Stellard <tstellar@redhat.com> - 1.1.7-2
|
||||
- Use make macros
|
||||
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
|
||||
|
||||
* Fri Jun 05 2020 Phil Sutter <psutter@redhat.com> - 1.1.7-1
|
||||
- Rebase onto upstream version 1.1.7
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Dec 04 2019 Phil Sutter <psutter@redhat.com> - 1.1.5-1
|
||||
- Update to 1.1.5. Fixes bug #1778850
|
||||
|
||||
* Fri Aug 23 2019 Kevin Fenzi <kevin@scrye.com> - 1.1.4-1
|
||||
- Update to 1.1.4. Fixes bug #1743175
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Jun 16 2019 Kevin Fenzi <kevin@scrye.com> - 1.1.3-1
|
||||
- Update to 1.1.3. Fixes bug #1714231
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Jul 20 2018 Kevin Fenzi <kevin@scrye.com> - 1.1.1-5
|
||||
- Fix FTBFS bug #1604620
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Mon Jun 25 2018 Phil Sutter <psutter@redhat.com> - 1.1.1-3
|
||||
- Disable running tests/test-script.sh again, it breaks builds on big endian.
|
||||
|
||||
* Thu Jun 14 2018 Phil Sutter <psutter@redhat.com> - 1.1.1-2
|
||||
- Drop leftover mxml dependency. Fixes bug #1594107
|
||||
- Enable running tests/test-scrip.sh again when checking.
|
||||
|
||||
* Sat Jun 09 2018 Kevin Fenzi <kevin@scrye.com> - 1.1.1-1
|
||||
- Update to 1.1.1. Fixes bug #1589403
|
||||
|
||||
* Fri May 04 2018 Kevin Fenzi <kevin@scrye.com> - 1.1.0-1
|
||||
- Update to 1.1.0. Fixes bug #1574094
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.9-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Mon Jan 08 2018 Kevin Fenzi <kevin@scrye.com> - 1.0.9-1
|
||||
- Update to 1.0.9. Fixes bug #1531004
|
||||
|
||||
* Sat Oct 21 2017 Kevin Fenzi <kevin@scrye.com> - 1.0.8-4
|
||||
- Update to 1.0.8. Fixes bug #1504350
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.7-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.7-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Dec 22 2016 Kevin Fenzi <kevin@scrye.com> - 1.0.7-1
|
||||
- Update to 1.0.7. Fixes bug #1406201
|
||||
|
||||
* Wed Jun 01 2016 Kevin Fenzi <kevin@scrye.com> - 1.0.6-1
|
||||
- Update to 1.0.6. Fixes bug #1341384
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Sep 17 2015 Kevin Fenzi <kevin@scrye.com> 1.0.5-1
|
||||
- Update to 1.0.5. Fixes bug #1263684
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Fri Dec 26 2014 Kevin Fenzi <kevin@scrye.com> 1.0.3-1
|
||||
- Update to final 1.0.3
|
||||
|
||||
* Wed Sep 03 2014 Kevin Fenzi <kevin@scrye.com> 1.0.3-0.1.20140903git
|
||||
- Update to 20140903 git snapshot
|
||||
|
||||
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Wed Jun 25 2014 Kevin Fenzi <kevin@scrye.com> 1.0.2-1
|
||||
- Update to 1.0.2
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Thu Apr 24 2014 Kevin Fenzi <kevin@scrye.com> 1.0.1-1.
|
||||
- Update to 1.0.1
|
||||
|
||||
* Sun Mar 30 2014 Kevin Fenzi <kevin@scrye.com> 1.0.0-1.20140330git
|
||||
- Update to 20140330 snapshot
|
||||
- Sync version to be a post 1.0.0 snapshot
|
||||
|
||||
* Wed Mar 26 2014 Kevin Fenzi <kevin@scrye.com> 0-0.10.20140326git
|
||||
- Update to 20140326 snapshot
|
||||
|
||||
* Fri Mar 07 2014 Kevin Fenzi <kevin@scrye.com> 0-0.9.20140307git
|
||||
- Update to 20140307 snapshot
|
||||
|
||||
* Sat Jan 25 2014 Kevin Fenzi <kevin@scrye.com> 0-0.8.20140125git
|
||||
- Update to 20140125
|
||||
|
||||
* Thu Jan 23 2014 Kevin Fenzi <kevin@scrye.com> 0-0.7.20140122git
|
||||
- Add obsoletes/provides to devel subpackage as well.
|
||||
|
||||
* Wed Jan 22 2014 Kevin Fenzi <kevin@scrye.com> 0-0.6.20140122git
|
||||
- Renamed libnftnl
|
||||
- Update to 20140122 snapshot.
|
||||
|
||||
* Sat Jan 18 2014 Kevin Fenzi <kevin@scrye.com> 0-0.5.20140118git
|
||||
- Update to 20140118 snapshot.
|
||||
|
||||
* Sat Jan 11 2014 Kevin Fenzi <kevin@scrye.com> 0-0.4.20140111git
|
||||
- Update to 20140111 snapshot.
|
||||
- Enable xml (some tests stll fail, but it otherwise builds ok)
|
||||
|
||||
* Mon Dec 02 2013 Kevin Fenzi <kevin@scrye.com> 0-0.3.20131202git
|
||||
- Update to 20131202 snapshot, switch to upstream snapshot repo instead of git checkouts.
|
||||
|
||||
* Mon Dec 02 2013 Kevin Fenzi <kevin@scrye.com> 0-0.2
|
||||
- Fixes from review.
|
||||
|
||||
* Sat Nov 30 2013 Kevin Fenzi <kevin@scrye.com> 0-0.1
|
||||
- initial version for Fedora review
|
||||
Loading…
Reference in New Issue
Block a user