mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
3633027e49
Otherwise the posix_pending_close_db is NULL and we crash when trying to close a file descriptor: #4 /usr/lib64/samba/libdbwrap-samba4.so(dbwrap_parse_record+0xe) [0x7fbc5d05c8ae] #5 /usr/lib64/samba/libdbwrap-samba4.so(dbwrap_fetch_int32+0x38) [0x7fbc5d05d438] #6 /usr/lib64/samba/libsmbd-base-samba4.so(fd_close_posix+0x7b) [0x7fbc5e276f8b] #7 /usr/lib64/samba/libsmbd-base-samba4.so(+0x57900) [0x7fbc5e28a900] #8 /usr/lib64/samba/libsmbd-base-samba4.so(fd_close+0x68) [0x7fbc5e2b7ea8] #9 /usr/lib64/samba/libsmbd-base-samba4.so(+0x62608) [0x7fbc5e295608] #10 /usr/lib64/samba/libtalloc-samba4.so(_talloc_free+0x51b) [0x7fbc5d9f439b] #11 /usr/lib64/samba/vfs/fruit.so(+0xcac2) [0x7fbc45fcdac2] #12 /usr/lib64/samba/vfs/fruit.so(+0xcbdd) [0x7fbc45fcdbdd] #13 /usr/lib64/samba/vfs/fruit.so(+0xf603) [0x7fbc45fd0603] #14 /usr/lib64/samba/libsmbd-base-samba4.so(+0x56375) [0x7fbc5e289375] #15 /usr/lib64/samba/vfs/nothingtoseeherereally.so(+0x196c) [0x7fbc467f996c] #16 /usr/lib64/samba/vfs/streams_xattr.so(+0x51fc) [0x7fbc461e71fc] #17 /usr/lib64/samba/libsmbd-base-samba4.so(+0xade3a) [0x7fbc5e2e0e3a] #18 /usr/lib64/samba/libsmbd-base-samba4.so(create_conn_struct_cwd+0x44) [0x7fbc5e2e1cf4] #19 /usr/libexec/samba/rpcd_mdssvc(mds_init_ctx+0x2c3) [0x563fdac08f03] #20 /usr/libexec/samba/rpcd_mdssvc(_mdssvc_open+0x141) [0x563fdac0b4d1] The corresponding open is done as part of initializing a connection_struct object, where we chdir() and stat() the root path of the share. The stat() in vfs_fruit causes an expensive metadata request on the path which triggers an internal open of a pathref handle. Note that this only affects servers that have fruit:metadata = netatalk set, which is the default unfortunately. BUG: https://bugzilla.samba.org/show_bug.cgi?id=15354 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Fri Apr 7 21:12:21 UTC 2023 on atb-devel-224
70 lines
1.7 KiB
C
70 lines
1.7 KiB
C
/*
|
|
* Unix SMB/CIFS implementation.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "includes.h"
|
|
#include "source3/locking/proto.h"
|
|
#include "rpc_worker.h"
|
|
#include "librpc/gen_ndr/ndr_mdssvc.h"
|
|
#include "librpc/gen_ndr/ndr_mdssvc_scompat.h"
|
|
|
|
static size_t mdssvc_interfaces(
|
|
const struct ndr_interface_table ***pifaces,
|
|
void *private_data)
|
|
{
|
|
static const struct ndr_interface_table *ifaces[] = {
|
|
&ndr_table_mdssvc,
|
|
};
|
|
|
|
*pifaces = ifaces;
|
|
return ARRAY_SIZE(ifaces);
|
|
}
|
|
|
|
static size_t mdssvc_servers(
|
|
struct dcesrv_context *dce_ctx,
|
|
const struct dcesrv_endpoint_server ***_ep_servers,
|
|
void *private_data)
|
|
{
|
|
static const struct dcesrv_endpoint_server *ep_servers[1] = { NULL };
|
|
bool ok;
|
|
|
|
lp_load_with_shares(get_dyn_CONFIGFILE());
|
|
|
|
ok = posix_locking_init(false);
|
|
if (!ok) {
|
|
DBG_ERR("posix_locking_init() failed\n");
|
|
exit(1);
|
|
}
|
|
|
|
ep_servers[0] = mdssvc_get_ep_server();
|
|
|
|
*_ep_servers = ep_servers;
|
|
return ARRAY_SIZE(ep_servers);
|
|
}
|
|
|
|
int main(int argc, const char *argv[])
|
|
{
|
|
return rpc_worker_main(
|
|
argc,
|
|
argv,
|
|
"rpcd_mdssvc",
|
|
5,
|
|
60,
|
|
mdssvc_interfaces,
|
|
mdssvc_servers,
|
|
NULL);
|
|
}
|