From e8c40514e3fed98f6c0dd496d66b1ab634b3d7a2 Mon Sep 17 00:00:00 2001 From: Peter Vrabec Date: Mon, 27 Oct 2008 15:37:04 +0000 Subject: [PATCH] upgrade (#439833) --- .cvsignore | 2 +- netlabel_tools-0.16-new-hdrs.patch | 65 --------- netlabel_tools-0.17-newlibnl.patch | 218 ----------------------------- netlabel_tools-27_28.patch | 29 ---- netlabel_tools.spec | 12 +- sources | 2 +- 6 files changed, 7 insertions(+), 321 deletions(-) delete mode 100644 netlabel_tools-0.16-new-hdrs.patch delete mode 100644 netlabel_tools-0.17-newlibnl.patch delete mode 100644 netlabel_tools-27_28.patch diff --git a/.cvsignore b/.cvsignore index 42f581c..b029b12 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -netlabel_tools-0.17.tar.gz +netlabel_tools-0.18.tar.gz diff --git a/netlabel_tools-0.16-new-hdrs.patch b/netlabel_tools-0.16-new-hdrs.patch deleted file mode 100644 index 06ce44f..0000000 --- a/netlabel_tools-0.16-new-hdrs.patch +++ /dev/null @@ -1,65 +0,0 @@ -diff -rup netlabel_tools-0.16-orig/include/linux/netlabel.h netlabel_tools-0.16/include/linux/netlabel.h ---- netlabel_tools-0.16-orig/include/linux/netlabel.h 2006-07-31 17:20:41.000000000 -0400 -+++ netlabel_tools-0.16/include/linux/netlabel.h 2006-08-29 14:07:44.000000000 -0400 -@@ -39,7 +39,9 @@ - - /* FIXME: perhaps some or all this lives in a system header file? */ - --#define NLMSG_HDRLEN NLMSG_ALIGN(sizeof(struct nlmsghdr)) -+#ifndef NLMSG_HDRLEN /* newer netlink.h has these... */ -+ -+# define NLMSG_HDRLEN NLMSG_ALIGN(sizeof(struct nlmsghdr)) - - struct nlattr - { -@@ -47,6 +49,13 @@ struct nlattr - unsigned short nla_type; - }; - -+# define NLA_HDRLEN NLMSG_ALIGN(sizeof(struct nlattr)) -+ -+# define NETLINK_GENERIC 16 -+ -+ -+#endif -+ - enum { - NLA_UNSPEC, - NLA_U8, -@@ -61,10 +70,6 @@ enum { - }; - #define NLA_TYPE_MAX (__NLA_TYPE_MAX - 1) - --#define NLA_HDRLEN NLMSG_ALIGN(sizeof(struct nlattr)) -- --#define NETLINK_GENERIC 16 -- - struct genlmsghdr { - unsigned char cmd; - unsigned char version; ---- netlabel_tools-0.16-orig/Makefile 2006-06-27 13:06:28.000000000 -0400 -+++ netlabel_tools-0.16/Makefile 2006-08-29 16:42:09.000000000 -0400 -@@ -43,8 +43,9 @@ INSTALL_SBIN_DIR = $(INSTALL_PREFIX)/sbi - INSTALL_BIN_DIR = $(INSTALL_PREFIX)/bin - INSTALL_MAN_DIR = $(INSTALL_PREFIX)/share/man - --OWNER = root --GROUP = root -+# Mock doesn't allow this. -+#OWNER = root -+#GROUP = root - - # - # targets -@@ -77,9 +78,9 @@ install: $(SUBDIRS) - @echo "INFO: installing files in $(INSTALL_PREFIX)" - @mkdir -p $(INSTALL_SBIN_DIR) - @mkdir -p $(INSTALL_MAN_DIR)/man8 -- @install -o $(OWNER) -g $(GROUP) -m 755 netlabelctl/netlabelctl \ -+ @install -m 755 netlabelctl/netlabelctl \ - $(INSTALL_SBIN_DIR)/netlabelctl -- @install -o $(OWNER) -g $(GROUP) -m 644 docs/man/netlabelctl.8 \ -+ @install -m 644 docs/man/netlabelctl.8 \ - $(INSTALL_MAN_DIR)/man8 - - clean: diff --git a/netlabel_tools-0.17-newlibnl.patch b/netlabel_tools-0.17-newlibnl.patch deleted file mode 100644 index 88eda66..0000000 --- a/netlabel_tools-0.17-newlibnl.patch +++ /dev/null @@ -1,218 +0,0 @@ -diff -up netlabel_tools-0.17/libnetlabel/netlabel_internal.h.libnl netlabel_tools-0.17/libnetlabel/netlabel_internal.h ---- netlabel_tools-0.17/libnetlabel/netlabel_internal.h.libnl 2006-09-28 17:18:05.000000000 -0500 -+++ netlabel_tools-0.17/libnetlabel/netlabel_internal.h 2008-02-11 09:24:06.000000000 -0600 -@@ -8,19 +8,17 @@ - /* - * (c) Copyright Hewlett-Packard Development Company, L.P., 2006 - * -- * This program is free software; you can redistribute it and/or modify -- * it under the terms of the GNU General Public License as published by -- * the Free Software Foundation; either version 2 of the License, or -- * (at your option) any later version. -+ * This program is free software: you can redistribute it and/or modify -+ * it under the terms of version 2 of the GNU General Public License as -+ * published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See -- * the GNU General Public License for more details. -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License -- * along with this program; if not, write to the Free Software -- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+ * along with this program. If not, see . - * - */ - -@@ -37,11 +35,13 @@ struct nlbl_handle_s { - /* Specify which version of libnl we are using */ - /* 1.0-pre5 => 1005 */ - /* 1.0-pre6 => 1006 */ --#define LIBNL_VERSION 1005 -+/* 1.0-pre8 => 1008 */ -+/* 1.1 => 1100 */ -+#define LIBNL_VERSION 1100 - - /* XXX - this whole block will most likely go away once libnl supports Generic - * Netlink */ --#if 1 /* Generic Netlink types */ -+#if LIBNL_VERSION <= 1006 /* Generic Netlink types */ - - /* Generic Netlink message header */ - struct genlmsghdr { -diff -up netlabel_tools-0.17/libnetlabel/netlabel_msg.c.libnl netlabel_tools-0.17/libnetlabel/netlabel_msg.c ---- netlabel_tools-0.17/libnetlabel/netlabel_msg.c.libnl 2006-09-28 17:18:05.000000000 -0500 -+++ netlabel_tools-0.17/libnetlabel/netlabel_msg.c 2008-02-11 09:22:13.000000000 -0600 -@@ -8,19 +8,17 @@ - /* - * (c) Copyright Hewlett-Packard Development Company, L.P., 2006 - * -- * This program is free software; you can redistribute it and/or modify -- * it under the terms of the GNU General Public License as published by -- * the Free Software Foundation; either version 2 of the License, or -- * (at your option) any later version. -+ * This program is free software: you can redistribute it and/or modify -+ * it under the terms of version 2 of the GNU General Public License as -+ * published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See -- * the GNU General Public License for more details. -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License -- * along with this program; if not, write to the Free Software -- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+ * along with this program. If not, see . - * - */ - -@@ -52,7 +50,11 @@ nlbl_msg *nlbl_msg_new(void) - struct genlmsghdr genl_hdr; - - /* create the message with a simple netlink header */ -+#if LIBNL_VERSION >= 1008 -+ msg = nlmsg_alloc(); -+#else - msg = nlmsg_build_no_hdr(); -+#endif - if (msg == NULL) - goto msg_new_failure; - -diff -up netlabel_tools-0.17/libnetlabel/netlabel_comm.c.libnl netlabel_tools-0.17/libnetlabel/netlabel_comm.c ---- netlabel_tools-0.17/libnetlabel/netlabel_comm.c.libnl 2006-09-28 17:18:05.000000000 -0500 -+++ netlabel_tools-0.17/libnetlabel/netlabel_comm.c 2008-02-11 09:24:06.000000000 -0600 -@@ -8,28 +8,33 @@ - /* - * (c) Copyright Hewlett-Packard Development Company, L.P., 2006 - * -- * This program is free software; you can redistribute it and/or modify -- * it under the terms of the GNU General Public License as published by -- * the Free Software Foundation; either version 2 of the License, or -- * (at your option) any later version. -+ * This program is free software: you can redistribute it and/or modify -+ * it under the terms of version 2 of the GNU General Public License as -+ * published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See -- * the GNU General Public License for more details. -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -+ * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License -- * along with this program; if not, write to the Free Software -- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+ * along with this program. If not, see . - * - */ - - #include - #include - #include -+#include - #include -+ -+#ifndef __USE_GNU -+#define __USE_GNU - #include --#include -+#undef __USE_GNU -+#else -+#include -+#endif - - #include - -@@ -100,7 +105,10 @@ nlbl_handle *nlbl_comm_open(void) - goto open_failure; - - /* set the netlink handle properties */ --#if LIBNL_VERSION >= 1006 -+#if LIBNL_VERSION >= 1008 -+ nl_socket_set_peer_port(hndl->nl_hndl, 0); -+ nl_set_passcred(hndl->nl_hndl, 1); -+#elif LIBNL_VERSION == 1006 - nl_handle_set_peer_pid(hndl->nl_hndl, 0); - nl_set_passcred(hndl->nl_hndl, 1); - #endif -@@ -177,7 +185,11 @@ int nlbl_comm_recv_raw(nlbl_handle *hndl - * is waiting to be read from the handle */ - timeout.tv_sec = nlcomm_read_timeout; - timeout.tv_usec = 0; -+#if LIBNL_VERSION >= 1008 -+ nl_fd = nl_socket_get_fd(hndl->nl_hndl); -+#else - nl_fd = nl_handle_get_fd(hndl->nl_hndl); -+#endif - FD_ZERO(&read_fds); - FD_SET(nl_fd, &read_fds); - ret_val = select(nl_fd + 1, &read_fds, NULL, NULL, &timeout); -@@ -188,14 +200,12 @@ int nlbl_comm_recv_raw(nlbl_handle *hndl - - /* perform the read operation */ - *data = NULL; --#if LIBNL_VERSION == 1005 -- ret_val = nl_recv(hndl->nl_hndl, &peer_nladdr, data); -+#if LIBNL_VERSION >= 1006 -+ ret_val = nl_recv(hndl->nl_hndl, &peer_nladdr, data, &creds); - if (ret_val < 0) - return ret_val; -- /* XXX - avoid a compiler warning about unused variables */ -- creds = NULL; --#elif LIBNL_VERSION >= 1006 -- ret_val = nl_recv(hndl->nl_hndl, &peer_nladdr, data, &creds); -+#else -+ ret_val = nl_recv(hndl->nl_hndl, &peer_nladdr, data); - if (ret_val < 0) - return ret_val; - #endif -@@ -250,7 +260,11 @@ int nlbl_comm_recv(nlbl_handle *hndl, nl - * is waiting to be read from the handle */ - timeout.tv_sec = nlcomm_read_timeout; - timeout.tv_usec = 0; -+#if LIBNL_VERSION >= 1008 -+ nl_fd = nl_socket_get_fd(hndl->nl_hndl); -+#else - nl_fd = nl_handle_get_fd(hndl->nl_hndl); -+#endif - FD_ZERO(&read_fds); - FD_SET(nl_fd, &read_fds); - ret_val = select(nl_fd + 1, &read_fds, NULL, NULL, &timeout); -@@ -260,12 +274,16 @@ int nlbl_comm_recv(nlbl_handle *hndl, nl - return -EAGAIN; - - /* perform the read operation */ --#if LIBNL_VERSION == 1005 -- ret_val = nl_recv(hndl->nl_hndl, &peer_nladdr, &data); -+#if LIBNL_VERSION >= 1100 -+ ret_val = nl_recv(hndl->nl_hndl, &peer_nladdr, &data, &creds); - if (ret_val < 0) - return ret_val; - #elif LIBNL_VERSION >= 1006 -- ret_val = nl_recv(hndl->nl_hndl, &peer_nladdr, &data, &creds); -+ ret_val = nl_recv(hndl->nl_hndl, &peer_nladdr, data, &creds); -+ if (ret_val < 0) -+ return ret_val; -+#else -+ ret_val = nl_recv(hndl->nl_hndl, &peer_nladdr, data); - if (ret_val < 0) - return ret_val; - #endif -@@ -349,6 +367,6 @@ int nlbl_comm_send(nlbl_handle *hndl, nl - #if LIBNL_VERSION == 1005 - return nl_send_auto_complete(hndl->nl_hndl, nlbl_msg_nlhdr(msg)); - #elif LIBNL_VERSION >= 1006 -- return = nl_send_auto_complete(hndl->nl_hndl, msg); -+ return nl_send_auto_complete(hndl->nl_hndl, msg); - #endif - } diff --git a/netlabel_tools-27_28.patch b/netlabel_tools-27_28.patch deleted file mode 100644 index 0a0ae80..0000000 --- a/netlabel_tools-27_28.patch +++ /dev/null @@ -1,29 +0,0 @@ -Index: netlabelctl/cipsov4.c -=================================================================== ---- netlabelctl/cipsov4.c (revision 27) -+++ netlabelctl/cipsov4.c (revision 28) -@@ -236,7 +236,7 @@ - printf("STANDARD"); - break; - case CIPSO_V4_MAP_PASS: -- printf("PASS_THROUGH\n"); -+ printf("PASS_THROUGH"); - break; - default: - printf("UNKNOWN(%u)", mtype_list[iter]); -Index: netlabelctl/map.c -=================================================================== ---- netlabelctl/map.c (revision 27) -+++ netlabelctl/map.c (revision 28) -@@ -224,8 +224,10 @@ - printf("UNKNOWN(%u)", domain_p[iter].proto_type); - break; - } -- printf(" "); -+ if (iter + 1 < count) -+ printf(" "); - } -+ printf("\n"); - } - - list_return: diff --git a/netlabel_tools.spec b/netlabel_tools.spec index 3a8a4bd..d9805eb 100644 --- a/netlabel_tools.spec +++ b/netlabel_tools.spec @@ -1,7 +1,7 @@ Summary: Tools to manage the Linux NetLabel subsystem Name: netlabel_tools -Version: 0.17 -Release: 8%{?dist} +Version: 0.18 +Release: 1%{?dist} License: GPLv2+ Group: System Environment/Daemons URL: http://netlabel.sf.net/ @@ -9,8 +9,6 @@ Source0: http://downloads.sourceforge.net/netlabel/%{name}-%{version}.tar.gz Source1: netlabel Source2: netlabel.rules Patch1: netlabel_tools-0.17-new-hdrs.patch -Patch2: netlabel_tools-27_28.patch -Patch3: netlabel_tools-0.17-newlibnl.patch BuildRoot: %{_tmppath}/%{name}-%{version} BuildRequires: kernel-headers >= 2.6.18 BuildRequires: libnl-devel @@ -27,9 +25,6 @@ configure the kernel subsystem. # Build fixes. %patch1 -p1 -# Upstream patch. -%patch2 -p0 -%patch3 -p1 -b .libnl %build # Don't use _smp_mflags, it's small and a hand crafted Makefile @@ -56,6 +51,9 @@ rm -rf $RPM_BUILD_ROOT %attr(0644,root,root) %{_mandir}/man8/* %changelog +* Mon Oct 27 2008 Peter Vrabec - 0.18-1 +- upgrade (#439833) + * Mon Aug 11 2008 Tom "spot" Callaway - 0.17-8 - fix license tag diff --git a/sources b/sources index 3175540..5b536b8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -905ffd48714f48aaa34ecdc3c51d3dcb netlabel_tools-0.17.tar.gz +963fad62ad186080bce32075f25e58d3 netlabel_tools-0.18.tar.gz