samba.git
12 months agofix nfs related service names
Rafael David Tinoco [Thu, 28 Nov 2024 19:28:27 +0000 (22:28 +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: 2024-07-30

Gbp-Pq: Name fix-nfs-service-name-to-nfs-kernel-server.patch

12 months agodrop "replace" dependency from libldb
Michael Tokarev [Wed, 27 Nov 2024 18:51:50 +0000 (21:51 +0300)]
drop "replace" dependency from libldb

Forwarded: not-needed

When building as a sub-library within samba, where
libreplace is a private library, libldb.so will
have rpath pointing to the private samba dir.  Since
ldb actually does not use anything from libreplace,
just remove the dependency.

Gbp-Pq: Name ldb-no-replace.diff

12 months agoAdd so version number to private libraries for dpkg-shlibdeps
Jeroen Dekkers [Thu, 28 Nov 2024 19:28:27 +0000 (22:28 +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

12 months agoPatch in symbol table from rfc3454, for Heimdal scripts
Brian May [Thu, 28 Nov 2024 19:28:27 +0000 (22:28 +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

12 months agoEnable net usershares by default at build time
mathiaz@ubuntu.com [Thu, 28 Nov 2024 19:28:27 +0000 (22:28 +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

12 months agoUse the pager alternative as pager is PAGER is undefined
Steve Langasek [Thu, 28 Nov 2024 19:28:27 +0000 (22:28 +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

12 months agoMention smbldap-tools package in examples/LDAP/README
Christian Perrier [Thu, 28 Nov 2024 19:28:27 +0000 (22:28 +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

12 months agohurd compatibility changes
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

12 months agoensure libsmbclient.h is being used with LFS enabled
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
Forwarded: not-needed

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

12 months agosamba (2:4.21.2+dfsg-3) unstable; urgency=medium
Michael Tokarev [Thu, 28 Nov 2024 19:28:27 +0000 (22:28 +0300)]
samba (2:4.21.2+dfsg-3) unstable; urgency=medium

  * Revert "d/rules: as of 4.17, no need to explicitly build intermediate
    targets anymore".  It is still a problem with samba 4.21, it just were
    hidden.
  * ldb-no-replace.diff: avoid embedding rpath to private samba libs
    for libldb.so
  * heimdal-spelling.patch: remove (forgotten, applied upstream)
  * d/patches/* update dep3 metadata
  * add-missing-libs-deps.diff: update to include more missing deps
    (as submitted upstream)

[dgit import unpatched samba 2:4.21.2+dfsg-3]

12 months agoImport samba_4.21.2+dfsg-3.debian.tar.xz
Michael Tokarev [Thu, 28 Nov 2024 19:28:27 +0000 (22:28 +0300)]
Import samba_4.21.2+dfsg-3.debian.tar.xz

[dgit import tarball samba 2:4.21.2+dfsg-3 samba_4.21.2+dfsg-3.debian.tar.xz]

12 months agoImport samba_4.21.2+dfsg.orig.tar.xz
Michael Tokarev [Mon, 25 Nov 2024 18:38:17 +0000 (21:38 +0300)]
Import samba_4.21.2+dfsg.orig.tar.xz

[dgit import orig samba_4.21.2+dfsg.orig.tar.xz]