Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Jun 2017 17:38:26 +0000 (UTC)
From:      Matthew Seaman <matthew@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r443594 - in head/sysutils/rsyslog8: . files
Message-ID:  <201706141738.v5EHcQvP096601@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: matthew
Date: Wed Jun 14 17:38:26 2017
New Revision: 443594
URL: https://svnweb.freebsd.org/changeset/ports/443594

Log:
  Fix for the omprog module -- calling execve() with a NULL second
  argument doesn't work.  Instead supply an argv list with just a
  terminating NULL entry.
  
  Submitted upstream as https://github.com/rsyslog/rsyslog/pull/1618
  
  Patch files regenerated by 'make makepatch'
  
  Reported by:	(Chun-Tien Chang) <tcs@kitty.2y.idv.tw>

Added:
  head/sysutils/rsyslog8/files/patch-plugins_omprog_omprog.c   (contents, props changed)
Modified:
  head/sysutils/rsyslog8/Makefile
  head/sysutils/rsyslog8/files/patch-grammar_rainerscript.c
  head/sysutils/rsyslog8/files/patch-plugins_impstats_impstats.c
  head/sysutils/rsyslog8/files/patch-runtime_nsd__ptcp.c

Modified: head/sysutils/rsyslog8/Makefile
==============================================================================
--- head/sysutils/rsyslog8/Makefile	Wed Jun 14 17:19:32 2017	(r443593)
+++ head/sysutils/rsyslog8/Makefile	Wed Jun 14 17:38:26 2017	(r443594)
@@ -2,6 +2,7 @@
 
 PORTNAME=	rsyslog
 PORTVERSION=	8.27.0
+PORTREVISION=	1
 CATEGORIES=	sysutils
 MASTER_SITES=	http://www.rsyslog.com/files/download/rsyslog/
 

Modified: head/sysutils/rsyslog8/files/patch-grammar_rainerscript.c
==============================================================================
--- head/sysutils/rsyslog8/files/patch-grammar_rainerscript.c	Wed Jun 14 17:19:32 2017	(r443593)
+++ head/sysutils/rsyslog8/files/patch-grammar_rainerscript.c	Wed Jun 14 17:38:26 2017	(r443594)
@@ -1,4 +1,4 @@
---- grammar/rainerscript.c.orig	2016-11-13 15:46:26 UTC
+--- grammar/rainerscript.c.orig	2017-04-28 07:04:53 UTC
 +++ grammar/rainerscript.c
 @@ -35,6 +35,7 @@
  #include <sys/stat.h>

Modified: head/sysutils/rsyslog8/files/patch-plugins_impstats_impstats.c
==============================================================================
--- head/sysutils/rsyslog8/files/patch-plugins_impstats_impstats.c	Wed Jun 14 17:19:32 2017	(r443593)
+++ head/sysutils/rsyslog8/files/patch-plugins_impstats_impstats.c	Wed Jun 14 17:38:26 2017	(r443594)
@@ -1,4 +1,4 @@
---- plugins/impstats/impstats.c.orig	2016-11-13 15:46:26 UTC
+--- plugins/impstats/impstats.c.orig	2017-04-28 07:04:53 UTC
 +++ plugins/impstats/impstats.c
 @@ -36,6 +36,7 @@
  #include <errno.h>

Added: head/sysutils/rsyslog8/files/patch-plugins_omprog_omprog.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/rsyslog8/files/patch-plugins_omprog_omprog.c	Wed Jun 14 17:38:26 2017	(r443594)
@@ -0,0 +1,20 @@
+--- plugins/omprog/omprog.c.orig	2017-05-15 09:41:19 UTC
++++ plugins/omprog/omprog.c
+@@ -231,6 +231,7 @@ execBinary(wrkrInstanceData_t *pWrkrData
+ 	sigset_t set;
+ 	char errStr[1024];
+ 	char *newenviron[] = { NULL };
++	char *emptyArgv[] = { NULL };
+ 
+ 	fclose(stdin);
+ 	if(dup(fdStdin) == -1) {
+@@ -277,6 +278,9 @@ execBinary(wrkrInstanceData_t *pWrkrData
+ 	alarm(0);
+ 
+ 	/* finally exec child */
++	if(pWrkrData->pData->aParams==NULL){
++		pWrkrData->pData->aParams=emptyArgv;
++	}
+ 	iRet = execve((char*)pWrkrData->pData->szBinary, pWrkrData->pData->aParams, newenviron);
+ 	if(iRet == -1) {
+ 		/* Note: this will go to stdout of the **child**, so rsyslog will never

Modified: head/sysutils/rsyslog8/files/patch-runtime_nsd__ptcp.c
==============================================================================
--- head/sysutils/rsyslog8/files/patch-runtime_nsd__ptcp.c	Wed Jun 14 17:19:32 2017	(r443593)
+++ head/sysutils/rsyslog8/files/patch-runtime_nsd__ptcp.c	Wed Jun 14 17:38:26 2017	(r443594)
@@ -1,6 +1,6 @@
---- runtime/nsd_ptcp.c.orig	2016-11-06 16:32:01 UTC
+--- runtime/nsd_ptcp.c.orig	2017-04-28 07:04:53 UTC
 +++ runtime/nsd_ptcp.c
-@@ -656,7 +656,11 @@ EnableKeepAlive(nsd_t *pNsd)
+@@ -665,7 +665,11 @@ EnableKeepAlive(nsd_t *pNsd)
  	if(pThis->iKeepAliveProbes > 0) {
  		optval = pThis->iKeepAliveProbes;
  		optlen = sizeof(optval);
@@ -12,7 +12,7 @@
  	} else {
  		ret = 0;
  	}
-@@ -671,7 +675,11 @@ EnableKeepAlive(nsd_t *pNsd)
+@@ -680,7 +684,11 @@ EnableKeepAlive(nsd_t *pNsd)
  	if(pThis->iKeepAliveTime > 0) {
  		optval = pThis->iKeepAliveTime;
  		optlen = sizeof(optval);
@@ -24,7 +24,7 @@
  	} else {
  		ret = 0;
  	}
-@@ -686,7 +694,11 @@ EnableKeepAlive(nsd_t *pNsd)
+@@ -695,7 +703,11 @@ EnableKeepAlive(nsd_t *pNsd)
  	if(pThis->iKeepAliveIntvl > 0) {
  		optval = pThis->iKeepAliveIntvl;
  		optlen = sizeof(optval);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706141738.v5EHcQvP096601>