Bug 8070 - Upgrade to v. 3.5.8 breaks Cougar Mtn. accounting package
Summary: Upgrade to v. 3.5.8 breaks Cougar Mtn. accounting package
Status: RESOLVED WORKSFORME
Alias: None
Product: Samba 3.5
Classification: Unclassified
Component: File services (show other bugs)
Version: 3.5.8
Hardware: x86 Windows XP
: P5 normal
Target Milestone: ---
Assignee: Volker Lendecke
QA Contact: Samba QA Contact
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-04-07 20:43 UTC by cooper.list
Modified: 2011-04-13 13:48 UTC (History)
0 users

See Also:


Attachments
log files, wireshark caputre, smb.conf from working config (3.43 MB, application/octet-stream)
2011-04-07 20:47 UTC, cooper.list
no flags Details
log files, wireshark caputre, smb.conf from failed version (3.50 MB, application/x-bzip)
2011-04-07 20:49 UTC, cooper.list
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description cooper.list 2011-04-07 20:43:55 UTC
I have a customer that runs cougar mtn accounting (http://www.cougarmtn.com/).  Its just a bunch of dbf files stored on a share.

Server: SLES10 x86
kernel: 2.6.16-21.0.8-smp (SLES)
passdb: ldap
pre-upgrade Samba: 3.0.22 (distributed w/ SLES)
upgraded-samba: 3.5.8 (enterprisesamba.org)

Everything works fine with version 3.0.22.  I upgraded samba to v. 3.5.8 for win7 support using the enterprisesamba.org packages for SLES10.  After upgrading attempting to login to the acct. application fails with 'wrong password.'  Everything else still works perfectly.

Reproducible?  Yes, every time.

I have attached a tarball with:

smb.conf (from testparm -s and -sv)
Level 10 log.smbd
Level 10 log.reception-test (the client pc)
smb#.cap (wireshark capture)

for both the working 3.0.22 and failing 3.5.8

Please let me know if I can be of any further assistance.

Thank you
Comment 1 cooper.list 2011-04-07 20:47:42 UTC
Created attachment 6389 [details]
log files, wireshark caputre, smb.conf from working config
Comment 2 cooper.list 2011-04-07 20:49:20 UTC
Created attachment 6390 [details]
log files, wireshark caputre, smb.conf  from failed version
Comment 3 Volker Lendecke 2011-04-07 21:53:46 UTC
Wild guess: Can you try to set "delete readonly = yes"?

Volker
Comment 4 cooper.list 2011-04-08 12:57:42 UTC
Volker,

Thanks for the quick response.  That seems to have done it.  My test environment allows me to login.  I'll have to test it at the client in production to verify everything else works, but i am hopeful.

I didnt pick up on that because both versions had it set to the default of NO.

If you dont mind, could you explain this a little.  It seems that samba changed the way that it handles the operation, even though the config directive is the same.

Thanks again,

cooper
Comment 5 Volker Lendecke 2011-04-09 09:28:02 UTC
On Fri, Apr 08, 2011 at 02:57:42PM +0200, samba-bugs@samba.org wrote:
> If you dont mind, could you explain this a little.  It
> seems that samba changed the way that it handles the
> operation, even though the config directive is the
> same.

For some reason the files on your disk are read only. This
might have to do with your create mask and other settings.
This leads to unlink attempts to return with
NT_STATUS_CANNOT_DELETE, which is the correct thing to do
for readonly files (see for example frame 10006). Samba
3.5.8 just got more correct in this aspect by default. The
alternative (and probably more correct) solution would be to
make the files not read only.

Volker
Comment 6 cooper.list 2011-04-13 13:43:07 UTC
Volker,

Ok, I have implemented this at the client site, and everything is working well.  Thank you

(In reply to comment #5)
> 
> For some reason the files on your disk are read only. This
> might have to do with your create mask and other settings.

create mask/mode sets everything 666.

> This leads to unlink attempts to return with
> NT_STATUS_CANNOT_DELETE, which is the correct thing to do
> for readonly files (see for example frame 10006). Samba
> 3.5.8 just got more correct in this aspect by default. The
> alternative (and probably more correct) solution would be to
> make the files not read only.

I think this is more 'awkward' software, or software that is looking for some windows semantics (i should have mentioned that it works fine when shared from a windows XP or 7 machine) than anything.  Looking at some of the other frames from around that one, I see that the file is created with 'delete on close.'  Its almost like its a test to check access to the share, and then the file is supposed to get removed.

You can go ahead and close this, unless you want to look at it further.  I appreciate your help.

regards,

cooper.
Comment 7 Volker Lendecke 2011-04-13 13:48:02 UTC
Works as designed