import samba-4.12.3-14.el8_3
This commit is contained in:
parent
65ca219ab2
commit
ccb8f09c93
385
SOURCES/samba-4.12-fix-dfs-links.patch
Normal file
385
SOURCES/samba-4.12-fix-dfs-links.patch
Normal file
@ -0,0 +1,385 @@
|
||||
From 1fdca16074247707e80295bba65cbb5fbff9e959 Mon Sep 17 00:00:00 2001
|
||||
From: Jeremy Allison <jra@samba.org>
|
||||
Date: Mon, 1 Jun 2020 13:55:10 -0700
|
||||
Subject: [PATCH 1/7] s3: libsmb: Info level SMB2_FIND_ID_BOTH_DIRECTORY_INFO
|
||||
encodes attibutes as a uint32, not a uint8.
|
||||
|
||||
Fix the SMB2 parsing code.
|
||||
|
||||
Cast to a uint16_t for now after pulling the information
|
||||
as finfo->mode is currently only 16 bits.
|
||||
|
||||
We will need this to detect FILE_ATTRIBUTE_REPARSE_POINT in a later commit.
|
||||
|
||||
Signed-off-by: Jeremy Allison <jra@samba.org>
|
||||
Reviewed-by: Ralph Boehme <slow@samba.org>
|
||||
(cherry picked from commit 3063e1601ad9e2536651a75a47ebf4921ffddbdc)
|
||||
---
|
||||
source3/libsmb/cli_smb2_fnum.c | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/source3/libsmb/cli_smb2_fnum.c b/source3/libsmb/cli_smb2_fnum.c
|
||||
index 8c8b33f49ed..4edeefc117d 100644
|
||||
--- a/source3/libsmb/cli_smb2_fnum.c
|
||||
+++ b/source3/libsmb/cli_smb2_fnum.c
|
||||
@@ -1236,7 +1236,8 @@ static NTSTATUS parse_finfo_id_both_directory_info(uint8_t *dir_data,
|
||||
finfo->ctime_ts = interpret_long_date((const char *)dir_data + 32);
|
||||
finfo->size = IVAL2_TO_SMB_BIG_UINT(dir_data + 40, 0);
|
||||
finfo->allocated_size = IVAL2_TO_SMB_BIG_UINT(dir_data + 48, 0);
|
||||
- finfo->mode = CVAL(dir_data + 56, 0);
|
||||
+ /* NB. We need to enlarge finfo->mode to be 32-bits. */
|
||||
+ finfo->mode = (uint16_t)IVAL(dir_data + 56, 0);
|
||||
finfo->ino = IVAL2_TO_SMB_BIG_UINT(dir_data + 96, 0);
|
||||
namelen = IVAL(dir_data + 60,0);
|
||||
if (namelen > (dir_data_length - 104)) {
|
||||
--
|
||||
2.20.1
|
||||
|
||||
|
||||
From 8d57c6e81986655ccb59189843e0ffa6830eb182 Mon Sep 17 00:00:00 2001
|
||||
From: Jeremy Allison <jra@samba.org>
|
||||
Date: Mon, 1 Jun 2020 11:36:03 -0700
|
||||
Subject: [PATCH 2/7] s3: libsmb: Info level SMB_FIND_FILE_BOTH_DIRECTORY_INFO
|
||||
encodes attibutes as a uint32, not a uint8.
|
||||
|
||||
Cast to a uint16_t for now after pulling the information
|
||||
as finfo->mode is currently only 16 bits.
|
||||
|
||||
We will need this to detect FILE_ATTRIBUTE_REPARSE_POINT in a later commit.
|
||||
|
||||
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14391
|
||||
|
||||
Signed-off-by: Jeremy Allison <jra@samba.org>
|
||||
Reviewed-by: Ralph Boehme <slow@samba.org>
|
||||
(cherry picked from commit 5e3e6c4c0c70e171607f4b5351bd8ec146730f08)
|
||||
---
|
||||
source3/libsmb/clilist.c | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/source3/libsmb/clilist.c b/source3/libsmb/clilist.c
|
||||
index f9444bc401c..a78678f4532 100644
|
||||
--- a/source3/libsmb/clilist.c
|
||||
+++ b/source3/libsmb/clilist.c
|
||||
@@ -257,7 +257,8 @@ static size_t interpret_long_filename(TALLOC_CTX *ctx,
|
||||
finfo->size = IVAL2_TO_SMB_BIG_UINT(p,0);
|
||||
p += 8;
|
||||
p += 8; /* alloc size */
|
||||
- finfo->mode = CVAL(p,0);
|
||||
+ /* NB. We need to enlarge finfo->mode to be 32-bits. */
|
||||
+ finfo->mode = (uint16_t)IVAL(p,0);
|
||||
p += 4;
|
||||
namelen = IVAL(p,0);
|
||||
p += 4;
|
||||
--
|
||||
2.20.1
|
||||
|
||||
|
||||
From 1afa493387e1f8a5f80b9504cf92655d067c9dbc Mon Sep 17 00:00:00 2001
|
||||
From: Jeremy Allison <jra@samba.org>
|
||||
Date: Mon, 1 Jun 2020 12:01:13 -0700
|
||||
Subject: [PATCH 3/7] s3: libsmb: Info level SMB_FIND_INFO_STANDARD encodes
|
||||
attibutes as a uint16, not a uint8.
|
||||
|
||||
We will need this to detect FILE_ATTRIBUTE_REPARSE_POINT in a later commit.
|
||||
|
||||
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14391
|
||||
|
||||
Signed-off-by: Jeremy Allison <jra@samba.org>
|
||||
Reviewed-by: Ralph Boehme <slow@samba.org>
|
||||
(cherry picked from commit be52f87c376a8f71b2de4aa52f25818cad2b160e)
|
||||
---
|
||||
source3/libsmb/clilist.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/source3/libsmb/clilist.c b/source3/libsmb/clilist.c
|
||||
index a78678f4532..deeb794ffe5 100644
|
||||
--- a/source3/libsmb/clilist.c
|
||||
+++ b/source3/libsmb/clilist.c
|
||||
@@ -152,7 +152,7 @@ static size_t interpret_long_filename(TALLOC_CTX *ctx,
|
||||
finfo->mtime_ts = convert_time_t_to_timespec(
|
||||
make_unix_date2(p+12, smb1cli_conn_server_time_zone(cli->conn)));
|
||||
finfo->size = IVAL(p,16);
|
||||
- finfo->mode = CVAL(p,24);
|
||||
+ finfo->mode = SVAL(p,24);
|
||||
len = CVAL(p, 26);
|
||||
p += 27;
|
||||
if (recv_flags2 & FLAGS2_UNICODE_STRINGS) {
|
||||
--
|
||||
2.20.1
|
||||
|
||||
|
||||
From 0ebb13959479949bc31c3badade02900973f80d5 Mon Sep 17 00:00:00 2001
|
||||
From: Jeremy Allison <jra@samba.org>
|
||||
Date: Mon, 1 Jun 2020 11:33:13 -0700
|
||||
Subject: [PATCH 4/7] s3: libsmb: Info level SMB_FIND_EA_SIZE encodes attibutes
|
||||
as a uint16, not a uint8.
|
||||
|
||||
We will need this to detect FILE_ATTRIBUTE_REPARSE_POINT in a later commit.
|
||||
|
||||
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14391
|
||||
|
||||
Signed-off-by: Jeremy Allison <jra@samba.org>
|
||||
Reviewed-by: Ralph Boehme <slow@samba.org>
|
||||
(cherry picked from commit 6463f2612a662f217af18455206afde122323375)
|
||||
---
|
||||
source3/libsmb/clilist.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/source3/libsmb/clilist.c b/source3/libsmb/clilist.c
|
||||
index deeb794ffe5..4a32fc45fa6 100644
|
||||
--- a/source3/libsmb/clilist.c
|
||||
+++ b/source3/libsmb/clilist.c
|
||||
@@ -211,7 +211,7 @@ static size_t interpret_long_filename(TALLOC_CTX *ctx,
|
||||
finfo->mtime_ts = convert_time_t_to_timespec(
|
||||
make_unix_date2(p+12, smb1cli_conn_server_time_zone(cli->conn)));
|
||||
finfo->size = IVAL(p,16);
|
||||
- finfo->mode = CVAL(p,24);
|
||||
+ finfo->mode = SVAL(p,24);
|
||||
len = CVAL(p, 30);
|
||||
p += 31;
|
||||
/* check for unisys! */
|
||||
--
|
||||
2.20.1
|
||||
|
||||
|
||||
From 83d0c3f3d8d838be8e40e7f102aa872302442df4 Mon Sep 17 00:00:00 2001
|
||||
From: Jeremy Allison <jra@samba.org>
|
||||
Date: Mon, 1 Jun 2020 12:08:17 -0700
|
||||
Subject: [PATCH 5/7] s3: torture: Add a MSDFS-ATTRIBUTE test.
|
||||
|
||||
Framework to drive comes next.
|
||||
|
||||
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14391
|
||||
|
||||
Signed-off-by: Jeremy Allison <jra@samba.org>
|
||||
Reviewed-by: Ralph Boehme <slow@samba.org>
|
||||
(cherry picked from commit 84134812e3447317125ae08b2a98848a2e4bbd65)
|
||||
---
|
||||
source3/torture/torture.c | 79 +++++++++++++++++++++++++++++++++++++++
|
||||
1 file changed, 79 insertions(+)
|
||||
|
||||
diff --git a/source3/torture/torture.c b/source3/torture/torture.c
|
||||
index f07a0adf115..56258d3d2ad 100644
|
||||
--- a/source3/torture/torture.c
|
||||
+++ b/source3/torture/torture.c
|
||||
@@ -11405,6 +11405,81 @@ static bool run_large_readx(int dummy)
|
||||
return correct;
|
||||
}
|
||||
|
||||
+static NTSTATUS msdfs_attribute_list_fn(const char *mnt,
|
||||
+ struct file_info *finfo,
|
||||
+ const char *mask,
|
||||
+ void *private_data)
|
||||
+{
|
||||
+ uint16_t *p_mode = (uint16_t *)private_data;
|
||||
+
|
||||
+ if (strequal(finfo->name, test_filename)) {
|
||||
+ *p_mode = finfo->mode;
|
||||
+ }
|
||||
+
|
||||
+ return NT_STATUS_OK;
|
||||
+}
|
||||
+
|
||||
+static bool run_msdfs_attribute(int dummy)
|
||||
+{
|
||||
+ static struct cli_state *cli;
|
||||
+ bool correct = false;
|
||||
+ uint16_t mode = 0;
|
||||
+ NTSTATUS status;
|
||||
+
|
||||
+ printf("Starting MSDFS-ATTRIBUTE test\n");
|
||||
+
|
||||
+ if (test_filename == NULL || test_filename[0] == '\0') {
|
||||
+ printf("MSDFS-ATTRIBUTE test "
|
||||
+ "needs -f filename-of-msdfs-link\n");
|
||||
+ return false;
|
||||
+ }
|
||||
+
|
||||
+ /*
|
||||
+ * NB. We use torture_open_connection_flags() not
|
||||
+ * torture_open_connection() as the latter forces
|
||||
+ * SMB1.
|
||||
+ */
|
||||
+ if (!torture_open_connection_flags(&cli, 0, 0)) {
|
||||
+ return false;
|
||||
+ }
|
||||
+
|
||||
+ smbXcli_conn_set_sockopt(cli->conn, sockops);
|
||||
+
|
||||
+ status = cli_list(cli,
|
||||
+ "*",
|
||||
+ FILE_ATTRIBUTE_DIRECTORY,
|
||||
+ msdfs_attribute_list_fn,
|
||||
+ &mode);
|
||||
+
|
||||
+ if (!NT_STATUS_IS_OK(status)) {
|
||||
+ printf("cli_list failed with %s\n",
|
||||
+ nt_errstr(status));
|
||||
+ goto out;
|
||||
+ }
|
||||
+ if ((mode & FILE_ATTRIBUTE_REPARSE_POINT) == 0) {
|
||||
+ printf("file %s should have "
|
||||
+ "FILE_ATTRIBUTE_REPARSE_POINT set. attr = 0x%x\n",
|
||||
+ test_filename,
|
||||
+ (unsigned int)mode);
|
||||
+ goto out;
|
||||
+ }
|
||||
+
|
||||
+ if ((mode & FILE_ATTRIBUTE_DIRECTORY) == 0) {
|
||||
+ printf("file %s should have "
|
||||
+ "FILE_ATTRIBUTE_DIRECTORY set. attr = 0x%x\n",
|
||||
+ test_filename,
|
||||
+ (unsigned int)mode);
|
||||
+ goto out;
|
||||
+ }
|
||||
+
|
||||
+ correct = true;
|
||||
+
|
||||
+ out:
|
||||
+
|
||||
+ torture_close_connection(cli);
|
||||
+ return correct;
|
||||
+}
|
||||
+
|
||||
static bool run_cli_echo(int dummy)
|
||||
{
|
||||
struct cli_state *cli;
|
||||
@@ -14539,6 +14614,10 @@ static struct {
|
||||
.name = "LARGE_READX",
|
||||
.fn = run_large_readx,
|
||||
},
|
||||
+ {
|
||||
+ .name = "MSDFS-ATTRIBUTE",
|
||||
+ .fn = run_msdfs_attribute,
|
||||
+ },
|
||||
{
|
||||
.name = "NTTRANS-CREATE",
|
||||
.fn = run_nttrans_create,
|
||||
--
|
||||
2.20.1
|
||||
|
||||
|
||||
From 33fcc76091307005a1ff81b32108dbeefa1a4d28 Mon Sep 17 00:00:00 2001
|
||||
From: Jeremy Allison <jra@samba.org>
|
||||
Date: Mon, 1 Jun 2020 13:45:28 -0700
|
||||
Subject: [PATCH 6/7] s3: torture: Add test for getting attibutes on an MSDFS
|
||||
link.
|
||||
|
||||
Mark as knownfail for now.
|
||||
|
||||
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14391
|
||||
|
||||
Signed-off-by: Jeremy Allison <jra@samba.org>
|
||||
Reviewed-by: Ralph Boehme <slow@samba.org>
|
||||
(back ported from commit 2a4705129d06b91023bc3fc435fccf91d3939553)
|
||||
---
|
||||
selftest/knownfail.d/msdfs-attr | 3 +++
|
||||
source3/selftest/tests.py | 27 +++++++++++++++++++++++++++
|
||||
2 files changed, 30 insertions(+)
|
||||
create mode 100644 selftest/knownfail.d/msdfs-attr
|
||||
|
||||
diff --git a/selftest/knownfail.d/msdfs-attr b/selftest/knownfail.d/msdfs-attr
|
||||
new file mode 100644
|
||||
index 00000000000..a8a77ec2719
|
||||
--- /dev/null
|
||||
+++ b/selftest/knownfail.d/msdfs-attr
|
||||
@@ -0,0 +1,3 @@
|
||||
+samba3.smbtorture_s3.smb2.MSDFS-ATTRIBUTE
|
||||
+samba3.smbtorture_s3.smb1.MSDFS-ATTRIBUTE
|
||||
+
|
||||
diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py
|
||||
index 72bca263c0b..005d6f453b1 100755
|
||||
--- a/source3/selftest/tests.py
|
||||
+++ b/source3/selftest/tests.py
|
||||
@@ -162,6 +162,33 @@ plantestsuite("samba3.smbtorture_s3.hidenewfiles(simpleserver)",
|
||||
"",
|
||||
"-l $LOCAL_PATH"])
|
||||
|
||||
+#
|
||||
+# MSDFS attribute tests.
|
||||
+#
|
||||
+plantestsuite("samba3.smbtorture_s3.smb2.MSDFS-ATTRIBUTE",
|
||||
+ "fileserver",
|
||||
+ [os.path.join(samba3srcdir,
|
||||
+ "script/tests/test_smbtorture_s3.sh"),
|
||||
+ 'MSDFS-ATTRIBUTE',
|
||||
+ '//$SERVER_IP/msdfs-share',
|
||||
+ '$USERNAME',
|
||||
+ '$PASSWORD',
|
||||
+ smbtorture3,
|
||||
+ "-mSMB2",
|
||||
+ "-f msdfs-src1"])
|
||||
+
|
||||
+plantestsuite("samba3.smbtorture_s3.smb1.MSDFS-ATTRIBUTE",
|
||||
+ "fileserver",
|
||||
+ [os.path.join(samba3srcdir,
|
||||
+ "script/tests/test_smbtorture_s3.sh"),
|
||||
+ 'MSDFS-ATTRIBUTE',
|
||||
+ '//$SERVER_IP/msdfs-share',
|
||||
+ '$USERNAME',
|
||||
+ '$PASSWORD',
|
||||
+ smbtorture3,
|
||||
+ "-mNT1",
|
||||
+ "-f msdfs-src1"])
|
||||
+
|
||||
shares = [
|
||||
"vfs_aio_pthread_async_dosmode_default1",
|
||||
"vfs_aio_pthread_async_dosmode_default2",
|
||||
--
|
||||
2.20.1
|
||||
|
||||
|
||||
From adecbf7277e580d9a047f588a301733abd7bae68 Mon Sep 17 00:00:00 2001
|
||||
From: Jeremy Allison <jra@samba.org>
|
||||
Date: Mon, 1 Jun 2020 14:09:54 -0700
|
||||
Subject: [PATCH 7/7] s3: msdfs: Fix missing struct stat return on msdfs links
|
||||
by doing an LSTAT call.
|
||||
|
||||
This (unfortunately) re-exposes the fact the msdfs links are symlinks,
|
||||
bit fixing this correctly requires a VFS ABI change which we can't
|
||||
do for a released stream.
|
||||
|
||||
Remove the knownfail.d/msdfs-attr file.
|
||||
|
||||
Everything now passes.
|
||||
|
||||
BUG: https://bugzilla.samba.org/show_bug.cgi?id=14391
|
||||
|
||||
Signed-off-by: Jeremy Allison <jra@samba.org>
|
||||
Reviewed-by: Ralph Boehme <slow@samba.org>
|
||||
---
|
||||
selftest/knownfail.d/msdfs-attr | 3 ---
|
||||
source3/smbd/msdfs.c | 7 +++++++
|
||||
2 files changed, 7 insertions(+), 3 deletions(-)
|
||||
delete mode 100644 selftest/knownfail.d/msdfs-attr
|
||||
|
||||
diff --git a/selftest/knownfail.d/msdfs-attr b/selftest/knownfail.d/msdfs-attr
|
||||
deleted file mode 100644
|
||||
index a8a77ec2719..00000000000
|
||||
--- a/selftest/knownfail.d/msdfs-attr
|
||||
+++ /dev/null
|
||||
@@ -1,3 +0,0 @@
|
||||
-samba3.smbtorture_s3.smb2.MSDFS-ATTRIBUTE
|
||||
-samba3.smbtorture_s3.smb1.MSDFS-ATTRIBUTE
|
||||
-
|
||||
diff --git a/source3/smbd/msdfs.c b/source3/smbd/msdfs.c
|
||||
index cc32ebc9d29..c57866f7939 100644
|
||||
--- a/source3/smbd/msdfs.c
|
||||
+++ b/source3/smbd/msdfs.c
|
||||
@@ -633,6 +633,13 @@ bool is_msdfs_link(connection_struct *conn,
|
||||
smb_fname,
|
||||
NULL,
|
||||
NULL);
|
||||
+ if (NT_STATUS_IS_OK(status)) {
|
||||
+ int ret;
|
||||
+ ret = SMB_VFS_LSTAT(conn, smb_fname);
|
||||
+ if (ret < 0) {
|
||||
+ status = map_nt_error_from_unix(errno);
|
||||
+ }
|
||||
+ }
|
||||
return (NT_STATUS_IS_OK(status));
|
||||
}
|
||||
|
||||
--
|
||||
2.20.1
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
%define samba_requires_eq() %(LC_ALL="C" echo '%*' | xargs -r rpm -q --qf 'Requires: %%{name} = %%{epoch}:%%{version}\\n' | sed -e 's/ (none):/ /' -e 's/ 0:/ /' | grep -v "is not")
|
||||
|
||||
%define main_release 12
|
||||
%define main_release 14
|
||||
|
||||
%define samba_version 4.12.3
|
||||
%define talloc_version 2.3.1
|
||||
@ -101,7 +101,7 @@
|
||||
|
||||
Name: samba
|
||||
Version: %{samba_version}
|
||||
Release: %{samba_release}.3
|
||||
Release: %{samba_release}
|
||||
|
||||
%if 0%{?rhel}
|
||||
Epoch: 0
|
||||
@ -136,10 +136,11 @@ Source201: README.downgrade
|
||||
Patch0: samba-4.12-gnutls-priority-list.patch
|
||||
Patch1: dnshostname_all.patch
|
||||
Patch2: samba-4.12-fix_pam_winbind_manpage.patch
|
||||
Patch3: ldapsslads-v4-12.patch
|
||||
Patch3: ldapsslads-v4-12.patch
|
||||
Patch4: samba-4.12-fix_winbind_lookuprids.patch
|
||||
Patch5: samba-4.12-user-gencache.patch
|
||||
Patch6: samba-4.12-vfs_ChDir.patch
|
||||
Patch7: samba-4.12-fix-dfs-links.patch
|
||||
|
||||
Requires(pre): /usr/sbin/groupadd
|
||||
Requires(post): systemd
|
||||
@ -3582,6 +3583,9 @@ fi
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Fri Dec 04 2020 Andreas Schneider <asn@redhat.com> - 4.12.3-13
|
||||
- resolves: #1903555 - Fix dfs link in smbd
|
||||
|
||||
* Wed Aug 12 2020 Alexander Bokovoy <abokovoy@redhat.com> - 4.12.3-12
|
||||
- resolves: #1868558 - cannot create a directory in home over SMB2, mkdirat returns EBADF
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user