vfs_fruit: Add capability to advertise FULLSYNC#64
vfs_fruit: Add capability to advertise FULLSYNC#64kevinanderson1 wants to merge 3 commits intosamba-team:masterfrom
Conversation
|
Maybe you should mention the options needed to get time machine working:
Is that correct? |
|
Hi @cgrossde, those are the required options. I am not sure that level of documentation belongs in the module documentation but I can easily see both sides of the argument to be honest. If others think it is beneficial and should go in to the module documentation, I can gladly add it. |
|
My intention was to document it here on Github, once this makes it into Samba a lot of people will try it out and might run into problems if their configuration doesn't match the requirement. Maybe they find this issue or the bug. I also think that it would cloud the module documentation. Another thing to consider is to set these options automatically when |
|
Thanks for supporting this option in samba. Now, i compiled that branch and activated the options in the smb.conf. What else needs to be done ? samba works fine but time machine does not provide the option to store a backup on the share. Did i miss something else in the config / did i misunderstand something ? Thanks ! Apart from that, i reviewed the code +1 |
|
@derkostka You also need to configure an avahi service to advertise the share. I am unsure of what distribution you are using but dropping a service file in /etc/avahi/services/timemachine.service with the following contents should get it to show up. Replace the string "timemachine" in @cgrossde I will see if I can find a good spot for the configuration options in the documentation. I can see your point with regards to it not necessarily being straight forward for new users. Given the changes around locking, I'm not sure if setting the configuration options automatically would be best. I'll wait till the samba developers weigh in on the bug report to see what method they prefer. |
|
@kevinanderson1 works well, thanks ! I will report back in case of any issues. |
|
Sorry to ask again, is there any chance to debug this options (testparm or wireshark) ? Maybe there is smth that needs to be generally adjusted in the config: Testparm output of the related share is:
smb.conf
Thanks ! |
|
@derkostka so I am unsure of any potential interactions with the other options on your smb configuration but the following should be all that is needed. If you are comfortable with Wireshark, doing a capture with the following filter before starting the backup should show why it is being rejected: "smb2.aapl.volume_caps". In the response if you expand the SMB2 sections, one should show a volume capabilities like the screen shot below. I'll rebuild the docker container that I use for my home server later today to see if I can reproduce it as well. |
|
Perfect. Thank you very much for your support. It is doing the initial backup right now on my production environment.
|
|
Using @kevinanderson1's configuration suggestion (only changing the path for the TM share), I am still getting a "volume does not support necessary options" error. Client is macOS 10.12.1 and server is FreeBSD 10.1. EDIT: Also tested on a Ubuntu 16.04 server, same result. |
|
@elliot-wood can you provide your smb.conf file? I don't know of any reason it wouldn't work on FreeBSD myself but it should work on Ubuntu. I'll spin up a FreeBSD machine when I get a chance to test. |
|
@elliot-wood I was able to compile the branch on FreeBSD 10.1 and have it work successfully. It sounds like something on your smb.conf is not quite right. Please see the config file below for what I used and compare against yours. |
|
I can confirm that this patch and @kevinanderson1 's config above are working for timemachine backups on 10.12.1. I did run into several issues around users and file/dir permissions that resulted in error messages indicating "does not support required options". Once those were resolved things started working well. Thanks for this patch @kevinanderson1 |
|
@kevinanderson1 For my first attempt, I was taking the FreeBSD I'm trying to do build of the branch directly to avoid any issues that may have arisen from that, on a clean install of both FreeBSD 11.0 and 10.1. However, I'm running into an unrelated error at build time: If you are using a clean installation of FreeBSD, can you detail your steps to building Samba on FreeBSD? |
|
@elliot-wood can you try and build @kevinanderson1 ´s fork on bsd or are other things changed in the source code for bsd ? Overall Feedback after a week:
|
|
@derkostka That's currently what I am attempting to do. See the build error in my previous message. My installation process, if it matters, is:
I've tried this on FreeBSD 11.0 and 10.1, to see if that'd make any difference. |
|
@elliot-wood Try this: and then try building that branch again. I also had issues with the FreeBSD versions of TDB and talloc. Grab the latest from here and do the same as above. https://www.samba.org/ftp/tdb/ and https://www.samba.org/ftp/talloc/ Remember to I had issues with smbtorture compiling. It was complaining about |
|
@TheSkorm Couldn't get it to work. Samba also seems to be using a bundled tdb and talloc, and forcing it to use non-bundled libraries causes the configure script to fail: This occurs when tdb 1.3.11 has been manually installed into @kevinanderson1 Could you provide how you got the branch to successfully compile on FreeBSD, or provide a disk image of a FreeBSD system where successful compilation is possible? |
Hi there, can you please tell us about those issues? What are the permissions and ownership of your share? Have you created a distinct user for Time Machine? Would be great to hear. Thanks in advance, |
|
@enke5 My permissions were largely related to my use of docker as a deployment choice. Nothing specific to time machine. What I ended up with was a docker container that had a Initially I tried to My dockerfile is - https://github.com/joemiller/docker-htpc/blob/master/timecapsule/Dockerfile .. with some other notes about usage in the readme https://github.com/joemiller/docker-htpc#timecapsule-samba |
|
@elliot-wood So I started with a clean install of FreeBSD 10.1. My shell history is gone so I don't have the packages I installed but I know I did the following to workaround missing LDAP and GnuTLS libraries. On a Linux machine I could resolve them pretty easily but FreeBSD is a different story. Even with that, I only recall installing one or two packages based on the output of the configure script. |
|
OK. Thank you for your support. I was trying to add the patch to official ubuntu 16.04 sources (4.3) but that did not work, although the server query was answered correctly. |
|
@kevinanderson1 The difference might be in what packages you installed. I'm still getting the same issues I got from the start. If you could recreate your successful build and log what you did that would be greatly appreciated. |
|
@elliot-wood Here are the steps that I recreated to build it successfully. I completed this on a 10.1 FreeBSD install built from the FreeBSD 10.1 boot only ISO located here: http://ftp.freebsd.org/pub/FreeBSD/releases/ISO-IMAGES/10.1/FreeBSD-10.1-RELEASE-amd64-bootonly.iso
|
|
@elliot-wood I ran into the same issue and could solve it by executing Among others, this removed Now |
|
@kevinanderson1 I’ve followed your steps and was able to successfully compile and install Samba from your branch on my FreeBSD 11 system. Samba is now installed to I’ve then started nmbd and smbd: When I try connect from my Mac to The same config file was working with Samba 4.4 which I had installed via PKG. I’m not too familiar with Samba and I apologize if I’m making an obvious mistake here. It’s certainly not my intention to hijack this conversation for getting Samba support :-) |
|
@aaronk6 FreeBSD is certainly not my specialty but have you created users and set passwords? Since it is installed under /usr/local/samba, the users from the FreeBSD PKG version are different. In the time that I worked on this, the only time I saw similar errors where if I had not created any users or permissions on the underlying share were incorrect. |
|
@kevinanderson1 Forgot to mention that but yes, I’ve run |
|
Can I chip in into this? I'd like to see a small modifications This makes it unnecessary to use hacks like creating a loopback-mounted filesystem just to limit backup size (which can grown to fill the whole hdd if left to its own devices) |
|
@elfhack It would be great if we could set a limit like that for the time machine share. Maybe the global |
Adds support for automatically registering the required _adisk._tcp mDNS record based on the setting of "fruit:time machine". Signed-off-by: Omri Mor <omri50@gmail.com>
04f475d to
cdd5b22
Compare
|
Should this pull request be closed now the code is merged? |
|
Also, does this mean https://bugzilla.samba.org/show_bug.cgi?id=12380 has been fixed? |
|
Has it been shipped into any samba version yet? If so, is there a tutorial on how to get this version and set up for time machine? Thanks. |
|
@yangm97 This code is too new to be in any version of samba other than git I'm afraid. Others have suggested it will most likely be in Samba 4.8 when that eventually ships. |
|
@slowfranklin just quickly while you're here - should this PR be closed and is https://bugzilla.samba.org/show_bug.cgi?id=12380 essentially fixed now? |
|
On Thu, Oct 26, 2017 at 07:09:04PM +0000, Sitsofe Wheeler wrote:
@slowfranklin just quickly while you're here - should this PR be closed and is https://bugzilla.samba.org/show_bug.cgi?id=12380 essentially fixed now?
yup, thanks. Closed.
…-slow
|
|
Does this just fake full sync or does it actually perform it? |
|
@msklvsk it can do either based on user choice - check out the commit: 174e6cb . I'd imagine the risk of faking it are similar to the faking any fsync - data that you "said" was on stable storage in the face of abrupt power loss might not be and could be missing or corrupt after power is restored (especially when viewed relative to other data that was supposed to only be written afterwards). |
|
Works perfectly, i just compiled samba 4.8 pre, thanks a lot ! |
|
I am a bit disoriented and new at this. I have an Ubuntu 16.04 (LTE) with samba 4.3.11-Ubuntu |
|
@Henrik41 it's not a simple patch, you'll need to download the source and compile/install it yourself as the official release of 4.8 isn't available yet. you won't see it in a simple package form until then and even then, you may need to upgrade your version of Ubuntu if the samba 4.8 package isn't made available for that version of ubuntu. |
|
@Henrik41 somewhere in the middle of this discussion @enke5 mentioned that he was trying to include this patch in official Ubuntu samba package for version 4.3. I am wondering too if they succeeded, or not. @enke5 can you, please, tell us how things are looking for 4.3 on Ubuntu 16? I personally would love to see this patch in 4.3 and not having to wait for 4.8, which won't be shipped as part of LTS anyway I guess. |
|
It looks like Ubuntu 18.04 is using 4.7, from what I can tell they didn't backport this patch either. |
|
Samba 4.8 was released too recently for it to have already entered the Debian or Ubuntu repositories. I'd be surprised if Ubuntu 18.10 didn't have it though. For what it is worth there are Ubuntu PPAs which have Samba 4.8 for installation on top of Ubuntu 18.04. |
|
For Debian, 4.8.0 was added to the experimental repo's not long ago. |
|
Will Samba 4.8 run on Ubuntu 16.04 LTS? Or will an upgrade to Ubuntu 18.04 be required? Apologies if this is the wrong place to ask. |
|
Sean, it will run on 16.04 but you must build it from scratch: I've written instructions on doing this at http://wa.rwick.com/2018/04/08/minimal-ubuntu-time-machine-backup-service/ |
|
18.04 has 4.7.6… |
|
That's as expected. 18.04 was in pre-release lockdown by the time samba 4.8.0 was released. Use at your own risk, but for what it is worth, adding debian experimental as an apt source in 18.04 and installing samba using apt from debian experimental seems to work just fine. |
|
FYI you can't install (or upgrade) debian experimental's Samba 4.8.1 on ubuntu 18.04 without also installing libnurses6 & libtinfo6 from debian sid. |
…ba:debian/dvm6 to debian/dvm6 * commit '4295a875c410809bcb1f1cd64d7e7d992eeed227': Changelog for svt22 Patch for HYP-6143 Patches for HYP-6004
Cve 2018 08 stable
If the connection is closed by the client the ongoing tevent_req must be
cancelled, otherwise winbindd receives a SIGBUS when trying to write in
the closed stream.
[2023/02/08 12:56:41.308393, 0] ../../lib/util/fault.c:173(smb_panic_log)
===============================================================
[2023/02/08 12:56:41.308438, 0] ../../lib/util/fault.c:174(smb_panic_log)
INTERNAL ERROR: Signal 7: Bus error in pid 24407 (4.19.0pre1-DEVELOPERBUILD)
[2023/02/08 12:56:41.308451, 0] ../../lib/util/fault.c:178(smb_panic_log)
If you are running a recent Samba version, and if you think this problem is not yet fixed in the latest versions, please consider reporting this bug, see https://wiki.samba.org/index.php/Bug_Reporting
[2023/02/08 12:56:41.308463, 0] ../../lib/util/fault.c:183(smb_panic_log)
===============================================================
[2023/02/08 12:56:41.308473, 0] ../../lib/util/fault.c:184(smb_panic_log)
PANIC (pid 24407): Signal 7: Bus error in 4.19.0pre1-DEVELOPERBUILD
Backtrace:
#0 0x00007f0e76853997 in wait4 () from /lib64/libc.so.6
#1 0x00007f0e767c591b in do_system () from /lib64/libc.so.6
#2 0x00007f0e7785ce43 in smb_panic_s3 (why=0x7ffe41b4e110 "Signal 7: Bus error")
at ../../source3/lib/util.c:698
#3 0x00007f0e76ce59f1 in smb_panic (why=0x7ffe41b4e110 "Signal 7: Bus error")
at ../../lib/util/fault.c:198
#4 0x00007f0e76ce54d0 in fault_report (sig=7) at ../../lib/util/fault.c:82
#5 0x00007f0e76ce54e5 in sig_fault (sig=7) at ../../lib/util/fault.c:93
#6 <signal handler called>
#7 varlink_stream_write (stream=0x656d614e72657375, message=<optimized out>) at ../lib/stream.c:303
#8 0x00007f0e76c5aa35 in varlink_call_reply (call=0x561c51aafe60, parameters=<optimized out>, flags=1)
at ../lib/service.c:651
#9 0x0000561c506a7e5b in membership_reply (call=0x561c51aafe60,
username=0x561c51aaa860 "AFOREST+buser1", groupname=0x561c51acae58 "AFOREST+bgroup453",
continues=true) at ../../source3/winbindd/winbindd_varlink_getmemberships.c:36
#10 0x0000561c506a9793 in memberships_by_user_getgrgid_done (req=0x0)
at ../../source3/winbindd/winbindd_varlink_getmemberships.c:481
#11 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51ab2d30,
location=0x561c5075b870 "../../source3/winbindd/winbindd_getgrgid.c:110")
at ../../lib/tevent/tevent_req.c:151
#12 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51ab2d30, state=TEVENT_REQ_DONE,
location=0x561c5075b870 "../../source3/winbindd/winbindd_getgrgid.c:110")
at ../../lib/tevent/tevent_req.c:203
#13 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51ab2d30,
location=0x561c5075b870 "../../source3/winbindd/winbindd_getgrgid.c:110")
at ../../lib/tevent/tevent_req.c:209
#14 0x0000561c50713770 in winbindd_getgrgid_done (subreq=0x0)
at ../../source3/winbindd/winbindd_getgrgid.c:110
#15 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51a98c50,
location=0x561c507559b0 "../../source3/winbindd/wb_getgrsid.c:201")
at ../../lib/tevent/tevent_req.c:151
#16 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51a98c50, state=TEVENT_REQ_DONE,
location=0x561c507559b0 "../../source3/winbindd/wb_getgrsid.c:201")
at ../../lib/tevent/tevent_req.c:203
#17 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51a98c50,
location=0x561c507559b0 "../../source3/winbindd/wb_getgrsid.c:201")
at ../../lib/tevent/tevent_req.c:209
#18 0x0000561c50708d22 in wb_getgrsid_got_members (subreq=0x0)
at ../../source3/winbindd/wb_getgrsid.c:201
#19 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51aa9e80,
location=0x561c50755310 "../../source3/winbindd/wb_group_members.c:463")
at ../../lib/tevent/tevent_req.c:151
#20 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51aa9e80, state=TEVENT_REQ_DONE,
location=0x561c50755310 "../../source3/winbindd/wb_group_members.c:463")
at ../../lib/tevent/tevent_req.c:203
#21 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51aa9e80,
location=0x561c50755310 "../../source3/winbindd/wb_group_members.c:463")
at ../../lib/tevent/tevent_req.c:209
#22 0x0000561c507082a6 in wb_group_members_done (subreq=0x0)
at ../../source3/winbindd/wb_group_members.c:463
#23 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51ab1e00,
location=0x561c50754f18 "../../source3/winbindd/wb_group_members.c:252")
at ../../lib/tevent/tevent_req.c:151
#24 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51ab1e00, state=TEVENT_REQ_DONE,
location=0x561c50754f18 "../../source3/winbindd/wb_group_members.c:252")
at ../../lib/tevent/tevent_req.c:203
#25 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51ab1e00,
location=0x561c50754f18 "../../source3/winbindd/wb_group_members.c:252")
at ../../lib/tevent/tevent_req.c:209
#26 0x0000561c50707903 in wb_groups_members_done (subreq=0x0)
at ../../source3/winbindd/wb_group_members.c:252
#27 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51aafad0,
location=0x561c50754bf0 "../../source3/winbindd/wb_group_members.c:102")
at ../../lib/tevent/tevent_req.c:151
#28 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51aafad0, state=TEVENT_REQ_DONE,
location=0x561c50754bf0 "../../source3/winbindd/wb_group_members.c:102")
at ../../lib/tevent/tevent_req.c:203
#29 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51aafad0,
location=0x561c50754bf0 "../../source3/winbindd/wb_group_members.c:102")
at ../../lib/tevent/tevent_req.c:209
#30 0x0000561c5070732e in wb_lookupgroupmem_done (subreq=0x0)
at ../../source3/winbindd/wb_group_members.c:102
#31 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51ab66a0,
location=0x7f0e77bc5f18 "librpc/gen_ndr/ndr_winbind_c.c:2888") at ../../lib/tevent/tevent_req.c:151
#32 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51ab66a0, state=TEVENT_REQ_DONE,
location=0x7f0e77bc5f18 "librpc/gen_ndr/ndr_winbind_c.c:2888") at ../../lib/tevent/tevent_req.c:203
#33 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51ab66a0,
location=0x7f0e77bc5f18 "librpc/gen_ndr/ndr_winbind_c.c:2888") at ../../lib/tevent/tevent_req.c:209
#34 0x00007f0e77bba4a7 in dcerpc_wbint_LookupGroupMembers_done (subreq=0x0)
at librpc/gen_ndr/ndr_winbind_c.c:2888
#35 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51aa1dc0,
location=0x7f0e77bc5d28 "librpc/gen_ndr/ndr_winbind_c.c:2773") at ../../lib/tevent/tevent_req.c:151
#36 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51aa1dc0, state=TEVENT_REQ_DONE,
location=0x7f0e77bc5d28 "librpc/gen_ndr/ndr_winbind_c.c:2773") at ../../lib/tevent/tevent_req.c:203
#37 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51aa1dc0,
location=0x7f0e77bc5d28 "librpc/gen_ndr/ndr_winbind_c.c:2773") at ../../lib/tevent/tevent_req.c:209
#38 0x00007f0e77bba0ef in dcerpc_wbint_LookupGroupMembers_r_done (subreq=0x0)
at librpc/gen_ndr/ndr_winbind_c.c:2773
#39 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51ab51f0,
location=0x7f0e7810b4d0 "../../librpc/rpc/binding_handle.c:520") at ../../lib/tevent/tevent_req.c:151
#40 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51ab51f0, state=TEVENT_REQ_DONE,
location=0x7f0e7810b4d0 "../../librpc/rpc/binding_handle.c:520") at ../../lib/tevent/tevent_req.c:203
#41 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51ab51f0,
location=0x7f0e7810b4d0 "../../librpc/rpc/binding_handle.c:520") at ../../lib/tevent/tevent_req.c:209
#42 0x00007f0e780f6bec in dcerpc_binding_handle_call_done (subreq=0x0)
at ../../librpc/rpc/binding_handle.c:520
#43 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51aaacf0,
location=0x7f0e7810b090 "../../librpc/rpc/binding_handle.c:203") at ../../lib/tevent/tevent_req.c:151
#44 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51aaacf0, state=TEVENT_REQ_DONE,
location=0x7f0e7810b090 "../../librpc/rpc/binding_handle.c:203") at ../../lib/tevent/tevent_req.c:203
#45 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51aaacf0,
location=0x7f0e7810b090 "../../librpc/rpc/binding_handle.c:203") at ../../lib/tevent/tevent_req.c:209
#46 0x00007f0e780f60d2 in dcerpc_binding_handle_raw_call_done (subreq=0x0)
at ../../librpc/rpc/binding_handle.c:203
#47 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51ab78b0,
location=0x561c50745ef0 "../../source3/winbindd/winbindd_dual_ndr.c:209")
at ../../lib/tevent/tevent_req.c:151
#48 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51ab78b0, state=TEVENT_REQ_DONE,
location=0x561c50745ef0 "../../source3/winbindd/winbindd_dual_ndr.c:209")
at ../../lib/tevent/tevent_req.c:203
#49 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51ab78b0,
location=0x561c50745ef0 "../../source3/winbindd/winbindd_dual_ndr.c:209")
at ../../lib/tevent/tevent_req.c:209
#50 0x0000561c506e7782 in wbint_bh_raw_call_domain_done (subreq=0x0)
at ../../source3/winbindd/winbindd_dual_ndr.c:209
#51 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51a98750,
location=0x561c50743390 "../../source3/winbindd/winbindd_dual.c:745")
at ../../lib/tevent/tevent_req.c:151
#52 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51a98750, state=TEVENT_REQ_DONE,
location=0x561c50743390 "../../source3/winbindd/winbindd_dual.c:745")
at ../../lib/tevent/tevent_req.c:203
#53 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51a98750,
location=0x561c50743390 "../../source3/winbindd/winbindd_dual.c:745")
at ../../lib/tevent/tevent_req.c:209
#54 0x0000561c506e30d3 in wb_domain_request_done (subreq=0x0)
at ../../source3/winbindd/winbindd_dual.c:745
#55 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51ab1a90,
location=0x561c507429f8 "../../source3/winbindd/winbindd_dual.c:306")
at ../../lib/tevent/tevent_req.c:151
#56 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51ab1a90, state=TEVENT_REQ_DONE,
location=0x561c507429f8 "../../source3/winbindd/winbindd_dual.c:306")
at ../../lib/tevent/tevent_req.c:203
#57 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51ab1a90,
location=0x561c507429f8 "../../source3/winbindd/winbindd_dual.c:306")
at ../../lib/tevent/tevent_req.c:209
#58 0x0000561c506e1f8d in wb_child_request_done (subreq=0x561c51ab3ca0)
at ../../source3/winbindd/winbindd_dual.c:306
#59 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51ab3ca0,
location=0x561c50723d98 "../../nsswitch/wb_reqtrans.c:432") at ../../lib/tevent/tevent_req.c:151
#60 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51ab3ca0, state=TEVENT_REQ_DONE,
location=0x561c50723d98 "../../nsswitch/wb_reqtrans.c:432") at ../../lib/tevent/tevent_req.c:203
#61 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51ab3ca0,
location=0x561c50723d98 "../../nsswitch/wb_reqtrans.c:432") at ../../lib/tevent/tevent_req.c:209
#62 0x0000561c50696101 in wb_simple_trans_read_done (subreq=0x0) at ../../nsswitch/wb_reqtrans.c:432
#63 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51ab6a20,
location=0x561c50723a20 "../../nsswitch/wb_reqtrans.c:275") at ../../lib/tevent/tevent_req.c:151
#64 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51ab6a20, state=TEVENT_REQ_DONE,
location=0x561c50723a20 "../../nsswitch/wb_reqtrans.c:275") at ../../lib/tevent/tevent_req.c:203
#65 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51ab6a20,
location=0x561c50723a20 "../../nsswitch/wb_reqtrans.c:275") at ../../lib/tevent/tevent_req.c:209
#66 0x0000561c50695adf in wb_resp_read_done (subreq=0x0) at ../../nsswitch/wb_reqtrans.c:275
#67 0x00007f0e780cb413 in _tevent_req_notify_callback (req=0x561c51ab6d70,
location=0x7f0e7786fec8 "../../lib/async_req/async_sock.c:568") at ../../lib/tevent/tevent_req.c:151
#68 0x00007f0e780cb577 in tevent_req_finish (req=0x561c51ab6d70, state=TEVENT_REQ_DONE,
location=0x7f0e7786fec8 "../../lib/async_req/async_sock.c:568") at ../../lib/tevent/tevent_req.c:203
#69 0x00007f0e780cb5a3 in _tevent_req_done (req=0x561c51ab6d70,
location=0x7f0e7786fec8 "../../lib/async_req/async_sock.c:568") at ../../lib/tevent/tevent_req.c:209
#70 0x00007f0e778255eb in read_packet_handler (ev=0x561c51a86670, fde=0x561c51b982a0, flags=1,
private_data=0x561c51ab6d70) at ../../lib/async_req/async_sock.c:568
#71 0x00007f0e780c9651 in tevent_common_invoke_fd_handler (fde=0x561c51b982a0, flags=1, removed=0x0)
at ../../lib/tevent/tevent_fd.c:142
#72 0x00007f0e780d448c in epoll_event_loop (epoll_ev=0x561c51a96380, tvalp=0x7ffe41b4f6f0)
at ../../lib/tevent/tevent_epoll.c:737
#73 0x00007f0e780d4aec in epoll_event_loop_once (ev=0x561c51a86670,
location=0x561c50726a70 "../../source3/winbindd/winbindd.c:1734")
at ../../lib/tevent/tevent_epoll.c:938
#74 0x00007f0e780d1408 in std_event_loop_once (ev=0x561c51a86670,
location=0x561c50726a70 "../../source3/winbindd/winbindd.c:1734")
at ../../lib/tevent/tevent_standard.c:110
#75 0x00007f0e780c8239 in _tevent_loop_once (ev=0x561c51a86670,
location=0x561c50726a70 "../../source3/winbindd/winbindd.c:1734") at ../../lib/tevent/tevent.c:823
#76 0x0000561c5069c4a3 in main (argc=1, argv=0x7ffe41b4fb28) at ../../source3/winbindd/winbindd.c:1734
Signed-off-by: Samuel Cabrero <scabrero@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>

Add the capability to advertise FULLSYNC volume capabilities
to clients that request them. This is mainly used for supporting
Mac OS Time Machine backups from clients. The capability does
not perform any additional action.