summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Michael Tokarev [Sat, 2 Apr 2022 14:49:38 +0000 (17:49 +0300)]
fix pathname for ctdb_etcd_lock
Specify the actual installation path for this helper script.
Gbp-Pq: Name ctdb_etcd_lock-path.patch
Debian Samba Maintainers [Mon, 27 Nov 2023 19:22:54 +0000 (22:22 +0300)]
use bzero() instead of memset_s()
lib/replace/replace.h header defines ZERO_STRUCT macro
which uses memset_s() function (which is similar to
memset() but can not be optimized out by the compiler).
Glibc has bzero() with similar property, while memset_s()
have is implemented in lib/replace/replace.c, - this way,
some binaries needlessly link with libreplace-samba4 just
to get rep_memset_s() symbol. By using bzero() instead,
this endless linkage is eliminated, so we can package,
for example, libldb (which uses ZERO_STRUCT) without it
linking to libreplace-samba4.
Note: actually using explicit_bzero() so it is not optimized
out by the compiler - this is the original goal of using
memset_s().
Gbp-Pq: Name use-bzero-instead-of-memset_s.diff
Mathieu Parent [Sun, 19 Dec 2021 21:29:13 +0000 (22:29 +0100)]
[PATCH] Force LDB as standalone
Gbp-Pq: Name Force-LDB-as-standalone.patch
Debian Samba Maintainers [Mon, 27 Nov 2023 19:22:54 +0000 (22:22 +0300)]
ctdb-config-enable-syslog-by-default
ctdb-config: enable syslog by default
CTDB uses /var/log/ctdb/ directory for the default log files. With
syslog disabled, systemd journal is not able to correctly inform
errors happening during service initialization.
Upstream community creates generic config files to be used by different
distributions, so this change makes no big difference to be accepted by
upstream.
With this patch the end user will be able to identify initialization
errors by executing:
systemctl status ctdb.service
or to follow ctdb logs by executing:
journalctl -f -u ctdb
Signed-off-by: Rafael David Tinoco <rafaeldtinoco@ubuntu.com>
-
Author: Rafael David Tinoco <rafaeldtinoco@ubuntu.com>
Bug-Debian: https://bugs.debian.org/929931
Bug-Ubuntu: https://bugs.launchpad.net/bugs/722201
Last-Update: 2022-03-24
Gbp-Pq: Name ctdb-config-enable-syslog-by-default.patch
Rafael David Tinoco [Mon, 27 Nov 2023 19:22:54 +0000 (22:22 +0300)]
fix nfs related service names
Upstream defines nfs related service names based on the Linux
distribution. This patch fixes the names for Debian and derivatives.
Update by Andreas Hasenack <andreas@canonical.com> (LP: #
1961840):
Use nfsconf(8) if it's available, instead of parsing the old config
files in /etc/default/nfs-*
Bug-Debian: https://bugs.debian.org/929931
Bug-Ubuntu: https://bugs.launchpad.net/bugs/722201
Last-Update: 2022-09-09
Gbp-Pq: Name fix-nfs-service-name-to-nfs-kernel-server.patch
Mathieu Parent [Thu, 21 Feb 2019 20:04:30 +0000 (21:04 +0100)]
[PATCH] smbd.service: Run update-apparmor-samba-profile before start
Bug-Debian: https://bugs.debian.org/896080
Gbp-Pq: Name smbd.service-Run-update-apparmor-samba-profile-befor.patch
Jeroen Dekkers [Mon, 27 Nov 2023 19:22:54 +0000 (22:22 +0300)]
Add so version number to private libraries for dpkg-shlibdeps
We also want dpkg-shlibdeps to generate correct dependency information
for the private libraries in our binary packages, but dpkg-shlibdeps
only works when the library has a version number.
Origin: vendor
Forwarded: not-needed
Gbp-Pq: Name add-so-version-to-private-libraries
Brian May [Mon, 27 Nov 2023 19:22:54 +0000 (22:22 +0300)]
Patch in symbol table from rfc3454, for Heimdal scripts
Forwarded: not-needed
Status: cherry-picked from heimdal package
Gbp-Pq: Name heimdal-rfc3454.txt
mathiaz@ubuntu.com [Mon, 27 Nov 2023 19:22:54 +0000 (22:22 +0300)]
Enable net usershares by default at build time
Enable net usershares by default at build time, with a limit of 100, and update
the corresponding documentation.
Bug-Debian: http://bugs.debian.org/443230
Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/samba/+bug/128548
Forwarded: not-needed
Gbp-Pq: Name usershare.patch
Steve Langasek [Mon, 27 Nov 2023 19:22:54 +0000 (22:22 +0300)]
Use the pager alternative as pager is PAGER is undefined
Bug-Debian: http://bugs.debian.org/135603
Forwarded: not-needed
Gbp-Pq: Name smbclient-pager.patch
Christian Perrier [Mon, 27 Nov 2023 19:22:54 +0000 (22:22 +0300)]
Mention smbldap-tools package in examples/LDAP/README
Bug-Debian: http://bugs.debian.org/341934
Forwarded: not-needed
Gbp-Pq: Name README_nosmbldap-tools.patch
Michael Tokarev [Thu, 3 Nov 2022 17:49:33 +0000 (20:49 +0300)]
hurd compatibility changes
Hurd does not define PIPE_BUF, so lib/tevent/testsuite.c fails to compile
(yes, this file is used as part of *samba* testsuite, not tevent testsuite).
Define it to a safe minimal value like 512 bytes.
Hurd does not provide SA_NOCLDWAIT define, so lib/util/tests/tfork.c does
not compile. This is only needed during testing to omit zombie process
generation, which has only cosmetic effect. Define it to be 0.
Based on prior work and ideas by Samuel Thibault.
Gbp-Pq: Name hurd-compat.patch
Michael Tokarev [Sat, 2 Apr 2022 16:01:55 +0000 (19:01 +0300)]
ensure libsmbclient.h is being used with LFS enabled
Bug-Debian: https://bugs.debian.org/221618
We build samba with LFS (Large File Support) even on 32bits.
This means some types like off_t are 64-bit wide, again,
even on a 32bit host. libsmbclient.h uses off_t in function
prototypes, and thes prototypes muct match those which were
used at samba compile time - if some other source includes
libsmbclient.h without LFS, it'll get wrong prototypes and
the resulting binary will most likely crash when using
libsmbclient functions.
Detect and error-out this at compile time.
We can not do anything with this in the public header since
it is alredy too late to redefine things, since we can't
guarantee we're the first header a program #includes, and
at the time this libsmbclient.h is included, off_t can
already be defined so our (re)define of _FILE_OFFSET_BITS
does nothing already.
Patching libsmbclient.h to use off64_t means client program
should change their off_t to off64_t too when storing
file offsets returning from libsmbclient, so this is not
an option too.
With this change, we will error out even if the user source
does not use any off_t-related functions. Namely, it was ok
to #include <libsmbclient.h> and use smbc_open/smbc_read/
smbc_write/smbc_close without _F_O_B=64, - neither of these
functions uses off_t. smbc_lseek and others doesn't work,
but if a program does not use them anyway, whole thing will
just work even without enabling LFS. Ideally we can probably
check each individual function which is being affected, by
replacing it with #error if sizeof(off_t) < 8. But this
requires quite some hackery...
Gbp-Pq: Name libsmbclient-ensure-lfs-221618.patch
Michael Tokarev [Mon, 27 Nov 2023 19:22:54 +0000 (22:22 +0300)]
samba (2:4.19.3+dfsg-1) unstable; urgency=medium
* new upstream stable/bugfix release:
- https://bugzilla.samba.org/show_bug.cgi?id=13595
CVE-2018-14628 [SECURITY] Deleted Object tombstones visible in AD LDAP
to normal users (Closes: #
1034803). Please see WHATSNEW.txt file for
more information about this issue: actual fix requires extra steps to
be performed against samba-based AD-DC
- https://bugzilla.samba.org/show_bug.cgi?id=15093
Files without "read attributes" NFS4 ACL permission are not listed
in directories
- https://bugzilla.samba.org/show_bug.cgi?id=15487
smbd crashes if asked to return full information on close of
a stream handle with delete on close disposition set
- https://bugzilla.samba.org/show_bug.cgi?id=15492
Kerberos TGS-REQ with User2User does not work for normal accounts
- https://bugzilla.samba.org/show_bug.cgi?id=15499
Improve logging for failover scenarios
- https://bugzilla.samba.org/show_bug.cgi?id=15507
vfs_gpfs stat calls fail due to file system permissions
- https://bugzilla.samba.org/show_bug.cgi?id=15513
Samba doesn't build with Python 3.12
- https://bugzilla.samba.org/show_bug.cgi?id=15520
sid_strings test broken by unix epoch >
1700000000
- https://bugzilla.samba.org/show_bug.cgi?id=15521
smbd: fix close order of base_fsp and stream_fsp
in smb_fname_fsp_destructor()
* d/samba-common.maintscript: fix version number for dhcp hook removal
(Closes: #
1053780)
[dgit import unpatched samba 2:4.19.3+dfsg-1]
Michael Tokarev [Mon, 27 Nov 2023 19:22:54 +0000 (22:22 +0300)]
Import samba_4.19.3+dfsg.orig.tar.xz
[dgit import orig samba_4.19.3+dfsg.orig.tar.xz]
Michael Tokarev [Mon, 27 Nov 2023 19:22:54 +0000 (22:22 +0300)]
Import samba_4.19.3+dfsg-1.debian.tar.xz
[dgit import tarball samba 2:4.19.3+dfsg-1 samba_4.19.3+dfsg-1.debian.tar.xz]