Displaying 20 results from an estimated 200 matches similar to: "Winbind timeouts/hangs(?)"
2019 Aug 22
0
Winbind timeouts/hangs(?)
On 22/08/2019 13:41, Heiko Wundram via samba wrote:
> Hello group,
>
> I'm hitting a problem where group resolution through winbind seems to
> time out sometimes, which in turn causes invalid group information to
> propagate to Cronjob users or similar. The profiling information that
> winbind spits out is the following:
>
> [2019/08/22 14:34:14.809540,? 0]
>
2010 Feb 16
1
Problem when I try to compil samba 3.4.5
Hi,
System description :
RedHat EL 5.3
Previous version of samba : 3.2.11.
The problem :
...
Linking bin/smbd
/usr/bin/ld: warning: libssl.so.6, needed by /usr/local/lib/libcups.so,
may conflict with libssl.so.0.9.8
/usr/bin/ld: warning: libcrypto.so.6, needed by /usr/local/lib/libcups.so,
may conflict with libcrypto.so.0.9.8
smbd/ipc.o: In function `api_dcerpc_cmd_write_done':
2015 Jun 16
2
winbind bug - possible overflow
On Tue, Jun 16, 2015 at 09:12:24AM -0700, Jeremy Allison wrote:
> Not that I know of. Can you run winbindd under valgrind ?
> Should help debug this.
this is the only waring regardless read/write that valgrind reports:
==16475== Syscall param writev(vector[...]) points to uninitialised byte(s)
==16475== at 0xBB32337: writev (in /usr/lib64/libc-2.17.so)
==16475== by 0xA4AC8E4:
2013 Apr 14
10
[samba4] crash of winbind after "ls -l /usr/local/samba/var/locks/sysvol"
Hi,
I used Samba 4.0.5 in Wheezy. Here is that I have done:
---------------------------------------------------------------
samba-tool domain provision --realm=CHEZMOI.PRIV --domain=CHEZMOI \
--server-role=dc --dns-backend=SAMBA_INTERNAL --adminpass='+toto123'
echo "nameserver 192.168.0.21" > /etc/resolv.conf
samba
ln -s /usr/local/samba/lib/libnss_winbind.so
2020 Apr 02
2
Prevent `wbinfo -u` from making Winbind unresponsive
On Wed, Apr 01, 2020 at 03:33:00PM -0700, Jeremy Allison via samba wrote:
> On Wed, Apr 01, 2020 at 02:09:57PM -0700, Alexey A Nikitin via samba wrote:
> > Hi,
> >
> > Recently I by mistake ran `wbinfo -u <username>` when I was actually intending to run `wbinfo -n <username>`. It ignored the <username> part and proceeded to fetch the usernames. On a small
2015 Jun 16
0
winbind bug - possible overflow
On Tue, Jun 16, 2015 at 07:37:39PM +0200, Lukas Hejtmanek wrote:
> On Tue, Jun 16, 2015 at 09:12:24AM -0700, Jeremy Allison wrote:
> > Not that I know of. Can you run winbindd under valgrind ?
> > Should help debug this.
>
> this is the only waring regardless read/write that valgrind reports:
>
> ==16475== Syscall param writev(vector[...]) points to uninitialised
2015 Jun 16
2
winbind bug - possible overflow
Hello,
I'm facing a bug with winbind. If I request groups for particular domain user,
winbind cache gets corrupted. My winbind version is 4.1.12-23.el7_1 (Centos
7.1, x86_64).
1) this is correct UID to SID mapping:
wbinfo -U 100152
S-1-5-21-3451901064-902568176-4053310204-180212
2) I request groups info for a user:
id -G -n 209459
[reply with 33 groups]
3) I request UID to SID mapping
2017 Dec 06
1
[PATCH RFC 1/4] crypto: engine - Permit to enqueue all async requests
On 29/11/17 09:41, Corentin Labbe wrote:
> The crypto engine could actually only enqueue hash and ablkcipher request.
> This patch permit it to enqueue any type of crypto_async_request.
>
> Signed-off-by: Corentin Labbe <clabbe.montjoie at gmail.com>
> ---
> crypto/crypto_engine.c | 188 +++++++++++-------------------------------------
> include/crypto/engine.h | 46
2017 Dec 06
1
[PATCH RFC 1/4] crypto: engine - Permit to enqueue all async requests
On 29/11/17 09:41, Corentin Labbe wrote:
> The crypto engine could actually only enqueue hash and ablkcipher request.
> This patch permit it to enqueue any type of crypto_async_request.
>
> Signed-off-by: Corentin Labbe <clabbe.montjoie at gmail.com>
> ---
> crypto/crypto_engine.c | 188 +++++++++++-------------------------------------
> include/crypto/engine.h | 46
2017 Nov 29
9
[PATCH RFC 0/4] crypto: engine - Permit to enqueue all async requests
Hello
The current crypto_engine support only ahash and ablkcipher.
My first patch which try to add skcipher was Nacked, it will add too many functions
and adding other algs(aead, asymetric_key) will make the situation worst.
This patchset remove all algs specific stuff and now only process generic crypto_async_request.
The requests handler function pointer are now moved out of struct engine and
2017 Nov 29
9
[PATCH RFC 0/4] crypto: engine - Permit to enqueue all async requests
Hello
The current crypto_engine support only ahash and ablkcipher.
My first patch which try to add skcipher was Nacked, it will add too many functions
and adding other algs(aead, asymetric_key) will make the situation worst.
This patchset remove all algs specific stuff and now only process generic crypto_async_request.
The requests handler function pointer are now moved out of struct engine and
2018 Jan 10
1
[PATCH 2/6] crypto: engine - Permit to enqueue all async requests
On 03/01/18 21:11, Corentin Labbe wrote:
> The crypto engine could actually only enqueue hash and ablkcipher request.
> This patch permit it to enqueue any type of crypto_async_request.
>
> Signed-off-by: Corentin Labbe <clabbe.montjoie at gmail.com>
> ---
> crypto/crypto_engine.c | 230 ++++++++++++++++++++++++------------------------
> include/crypto/engine.h | 59
2018 Jan 03
11
[PATCH 0/6] crypto: engine - Permit to enqueue all async requests
Hello
The current crypto_engine support only ahash and ablkcipher request.
My first patch which try to add skcipher was Nacked, it will add too many functions
and adding other algs(aead, asymetric_key) will make the situation worst.
This patchset remove all algs specific stuff and now only process generic crypto_async_request.
The requests handler function pointer are now moved out of struct
2018 Jan 26
10
[PATCH v2 0/6] crypto: engine - Permit to enqueue all async requests
Hello
The current crypto_engine support only ahash and ablkcipher request.
My first patch which try to add skcipher was Nacked, it will add too many functions
and adding other algs(aead, asymetric_key) will make the situation worst.
This patchset remove all algs specific stuff and now only process generic crypto_async_request.
The requests handler function pointer are now moved out of struct
2018 Jan 26
10
[PATCH v2 0/6] crypto: engine - Permit to enqueue all async requests
Hello
The current crypto_engine support only ahash and ablkcipher request.
My first patch which try to add skcipher was Nacked, it will add too many functions
and adding other algs(aead, asymetric_key) will make the situation worst.
This patchset remove all algs specific stuff and now only process generic crypto_async_request.
The requests handler function pointer are now moved out of struct
2020 Apr 01
5
Prevent `wbinfo -u` from making Winbind unresponsive
Hi,
Recently I by mistake ran `wbinfo -u <username>` when I was actually intending to run `wbinfo -n <username>`. It ignored the <username> part and proceeded to fetch the usernames. On a small domain this shouldn't be too much of an issue, but I did it on a domain with thousands upon thousands of users. The result was that Winbind became for all intents and purposes
2017 Jun 16
2
compil error samba 3.6.5
hello,
When I compil the samba new version samba 3.6.5, on Debian jessie 8.8,
most of the time I've got an error message.
I can compile without problems samba 3.6.4 on the running servers.
It doesn't happen on a fresh install
Thanks for your help,
- serge.
'configure' finished successfully (1m56.906s)
WAF_MAKE=1 python ./buildtools/bin/waf build
Waf: Entering directory
2020 Apr 01
0
Prevent `wbinfo -u` from making Winbind unresponsive
On Wed, Apr 01, 2020 at 02:09:57PM -0700, Alexey A Nikitin via samba wrote:
> Hi,
>
> Recently I by mistake ran `wbinfo -u <username>` when I was actually intending to run `wbinfo -n <username>`. It ignored the <username> part and proceeded to fetch the usernames. On a small domain this shouldn't be too much of an issue, but I did it on a domain with thousands upon
2013 May 17
2
Continued compilation errors with samba 3.6.15
?
Hello.
?I'm trying to compile samba on a?armnas.
?
First I execute:
autogen.sh
configure
make
?
And got the following error:
?
?
?
?
Compiling ../libcli/samsync/decrypt.c
Linking bin/net
utils/net_rpc.o: In function `net_rpc':
net_rpc.c:(.text+0x88): undefined reference to `libnetapi_net_init'
utils/net_rpc.o: In function `net_rpc_file':
net_rpc.c:(.text+0x2d74): undefined
2018 Dec 03
2
Samba 4.9.3 and the "10 hour problem"
Hmm…
I see that there is a patch in the bugzilla page for that bug. I guess I could try that one… :-)
I notice in the patch that there is a lot of talk about SMB2 - we use SMB3 mostly now. But perhaps there is some code sharing? Or perhaps SMB2 is used when talking to the AD servers? Or the few SMB2-talking clients causes the problem for all of the other users? When testing the “timeout” issue I