mirror of
https://git.freebsd.org/ports.git
synced 2025-05-18 01:53:13 -04:00
This is an initial attempt to add Samba to the FreeBSD after major rewrite of the VFS code in the upstream. Most of the port development is now carried in: https://gitlab.com/samba-freebsd Due to the way how new Samba VFS code is written there is a constrain that Samba 4.14+ can run only on FreeBSD 13.1+, as it requires support of the `nodup` option for the `fdesc` file system, as well as it's presence in the system in general. https://gitlab.com/samba-freebsd/-/wikis/The-New-VFS I'd like to thank CyberSecure Pty Ltd. company for their supoort of the port development and Andrew Walker from iXsystems Inc. for the patches he created and made available for the Samba4 on TrueNAS. PR: 263874
49 lines
1.3 KiB
Diff
49 lines
1.3 KiB
Diff
From 42c9490dd346ee2f4369cbed4c37cb43f06e5d19 Mon Sep 17 00:00:00 2001
|
|
From: "Timur I. Bakeyev" <timur@FreeBSD.org>
|
|
Date: Wed, 7 Sep 2022 23:52:43 +0200
|
|
Subject: [PATCH 17/28] Use arc4random() when available to generate random
|
|
talloc slab signature.
|
|
|
|
Signed-off-by: Timur I. Bakeyev <timur@FreeBSD.org>
|
|
---
|
|
lib/talloc/talloc.c | 4 ++++
|
|
lib/talloc/wscript | 1 +
|
|
2 files changed, 5 insertions(+)
|
|
|
|
diff --git a/lib/talloc/talloc.c b/lib/talloc/talloc.c
|
|
index 29da190880a..79c76fd9e35 100644
|
|
--- a/lib/talloc/talloc.c
|
|
+++ b/lib/talloc/talloc.c
|
|
@@ -397,6 +397,9 @@ void talloc_lib_init(void) CONSTRUCTOR;
|
|
void talloc_lib_init(void)
|
|
{
|
|
uint32_t random_value;
|
|
+#if defined(HAVE_ARC4RANDOM)
|
|
+ random_value = arc4random();
|
|
+#else
|
|
#if defined(HAVE_GETAUXVAL) && defined(AT_RANDOM)
|
|
uint8_t *p;
|
|
/*
|
|
@@ -430,6 +433,7 @@ void talloc_lib_init(void)
|
|
*/
|
|
random_value = ((uintptr_t)talloc_lib_init & 0xFFFFFFFF);
|
|
}
|
|
+#endif /* HAVE_ARC4RANDOM */
|
|
talloc_magic = random_value & ~TALLOC_FLAG_MASK;
|
|
}
|
|
#else
|
|
diff --git a/lib/talloc/wscript b/lib/talloc/wscript
|
|
index f0c266a7878..c75ec0505df 100644
|
|
--- a/lib/talloc/wscript
|
|
+++ b/lib/talloc/wscript
|
|
@@ -52,6 +52,7 @@ def configure(conf):
|
|
|
|
conf.CHECK_HEADERS('sys/auxv.h')
|
|
conf.CHECK_FUNCS('getauxval')
|
|
+ conf.CHECK_FUNCS('arc4random')
|
|
|
|
conf.SAMBA_CONFIG_H()
|
|
|
|
--
|
|
2.37.1
|
|
|