mirror of
https://git.freebsd.org/ports.git
synced 2025-07-01 01:20:31 -04:00
Major features included in the 3.0.25 code base are: o Significant improvements in the winbind off-line logon support. o Support for secure DDNS updates as part of the 'net ads join' process. o Rewritten IdMap interface which allows for TTL based caching and per domain backends. o New plug-in interface for the "winbind nss info" parameter. o New file change notify subsystem which is able to make use of inotify on Linux. o Support for passing Windows security descriptors to a VFS plug-in allowing for multiple Unix ACL implements to running side by side on the Same server. o Improved compatibility with Windows Vista clients including improved read performance with Linux servers. o Man pages for IdMap and VFS plug-ins. Security Fixes included in the Samba 3.0.25 release are: o CVE-2007-2444 Versions: Samba 3.0.23d - 3.0.25pre2 Local SID/Name translation bug can result in user privilege elevation o CVE-2007-2446 Versions: Samba 3.0.0 - 3.0.24 Multiple heap overflows allow remote code execution o CVE-2007-2447 Versions: Samba 3.0.0 - 3.0.24 Unescaped user input parameters are passed as arguments to /bin/sh allowing for remote command execution PR: ports/112836 Submitted by: maintainer Approved by: portmgr (self)
33 lines
918 B
C
33 lines
918 B
C
--- ./smbd/aio.c.orig Thu Mar 1 05:54:07 2007
|
|
+++ ./smbd/aio.c Tue Apr 17 02:06:59 2007
|
|
@@ -25,7 +25,17 @@
|
|
|
|
/* The signal we'll use to signify aio done. */
|
|
#ifndef RT_SIGNAL_AIO
|
|
-#define RT_SIGNAL_AIO (SIGRTMIN+3)
|
|
+#ifndef SIGRTMIN
|
|
+#define SIGRTMIN NSIG
|
|
+#endif
|
|
+#define RT_SIGNAL_AIO (SIGRTMIN+3)
|
|
+#endif
|
|
+
|
|
+#ifndef HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR
|
|
+#ifdef HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIGVAL_PTR
|
|
+#define sival_int sigval_int
|
|
+#define sival_ptr sigval_ptr
|
|
+#endif
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
@@ -531,6 +541,11 @@
|
|
static BOOL handle_aio_completed(struct aio_extra *aio_ex, int *perr)
|
|
{
|
|
int err;
|
|
+
|
|
+ if(!aio_ex) {
|
|
+ DEBUG(3, ("handle_aio_completed: Non-existing aio_ex passed\n"));
|
|
+ return False;
|
|
+ }
|
|
|
|
/* Ensure the operation has really completed. */
|
|
if (SMB_VFS_AIO_ERROR(aio_ex->fsp, &aio_ex->acb) == EINPROGRESS) {
|