LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 01-09-2009, 05:23 PM   #1
transmogrifox
LQ Newbie
 
Registered: Jan 2009
Posts: 12

Rep: Reputation: 1
Samba permissions problems


For years my company has been struggling with permissions in our samba share Projects folder. Some of us use Linux, others WinXP. Whenever one user saves a file from Firefox or Konqueror on his SuSe 10 machine, it defaults 722 octal permissions in the Samba share (we want rw for owner and group on all files in the share).

My analysis of the situation is there are multiple levels of permissions & masks that can occur before it settles in a directory in the share:
1) A program will save with default permissions (example: Firefox)
2) The Linux machine has a umask.
3) fstab on the user's machine can be mounted with switches for default behavior with permissions.
4) Samba applies permissions.

I believe the most efficient way to ensure a certain rule about permissions in the share directory is to configure Samba override all permissions and force creation of file permissions in this share regardless of the samba user's default.

Useful information:
Server: CentOS 5
Samba version 3.0.25b-1.el5_1.4
User computers: SuSe 10 and Debian Lenny
Problem Programs: Firefox, Konqueror
Problem: SuSe or Lenny default permissions are applied when creating a new file even though smb.conf uses force create mode.

Here is the relevant section of smb.conf
#SHARES
[data]
comment = Bulk Data Store
path = /storage/shares/data
read only = No
create mask = 0660
directory mask = 2770
hide unreadable = Yes
browseable = yes
guest ok = no
printable = no
force create mode = 0660
force directory mode = 2770
valid users = @valid-group

Here is a typical fstab entry on the user's computer:
//server/data /data cifs auto,user,file_mode=0775,dir_mode=0775,noacl,noperm,nocase,credentials=/root/mycreds 0 0

From my understanding of smb.conf man entry, that "force create mode" switch should force all files to rw-rw---- permissions regardless of SuSe's umask, Firefox's default permissions, etc.

We are using CentOS 5 on the server. I have noticed that my Debian Lenny machine also saves Firefox downloads with tight permissions.

Does anybody have the golden ticket? I have been searching and have not yet found a clear-cut answer on this. Our networking consultants have not managed to resolve this issue, either.

I am wondering if the create mask and directory mask switches over-ride the force create and force directory switches. It seems as though those directives should not even be present in our smb.conf. We want all permissions to be as if I had written a cron job to chmod 660 -R /storage/shares/data (which seems a bludgeon of a way to do this).

I would greatly appreciate it if somebody explains what's going on, but I would be equally appreciative if somebody could point out some other threads or man pages worth reviewing.

Thanks
 
Old 01-09-2009, 07:23 PM   #2
transmogrifox
LQ Newbie
 
Registered: Jan 2009
Posts: 12

Original Poster
Rep: Reputation: 1
Updated tidbit:
I just now noticed that the two Linux computers were using a different workgroup name than the server, and the rest of the Windows machines. Would this have been the source of all my troubles?
 
Old 01-13-2009, 01:44 PM   #3
transmogrifox
LQ Newbie
 
Registered: Jan 2009
Posts: 12

Original Poster
Rep: Reputation: 1
Update: Changing all users to the same workgroup did not help.
 
Old 01-13-2009, 02:33 PM   #4
rtspitz
Member
 
Registered: Jan 2005
Location: germany
Distribution: suse, opensuse, debian, others for testing
Posts: 307

Rep: Reputation: 33
I had that kind of problem a few years ago. It was solved by using ACLs and default ACLs for the shares/directories. Samba was configured to honour/inherit ACLs. A share for a certain group of people was used with 'chmod g+s' to force all created files into that group. Shares writable for more than one group of people was used with 'chmod g+s' and people had to be a member of a new group for that share/directory. This can be used to circumvent the lack of support for 'group of groups' in samba. At least that was so a few years back.
 
Old 01-15-2009, 08:12 PM   #5
ihavealinuxquestion
LQ Newbie
 
Registered: Jan 2009
Posts: 1

Rep: Reputation: 0
I have the exact same issue. When I save the file directly from firefox to the samba mount, it makes the permissions -rwx-wx-wx

For some reason removing read access. If I save from firefox to the desktop, then drag and drop to the samba mount (with gnome) everything works fine.

Also if I save directly to the samba mount with Opera, it works properly.

For this reason, it appears to be a firefox issue. But I dont see why samba permissions settings (using create mask or force create mode) would not be able to override this.

Also I tried running chmod g+s on the samba server on the samba share directory. All the files inside disappeared. Bizarre

I just wanted to add that both client and server are running linux.

Last edited by ihavealinuxquestion; 01-15-2009 at 08:38 PM.
 
Old 01-17-2009, 05:57 PM   #6
transmogrifox
LQ Newbie
 
Registered: Jan 2009
Posts: 12

Original Poster
Rep: Reputation: 1
Thumbs up

Quote:
Originally Posted by rtspitz View Post
I had that kind of problem a few years ago. It was solved by using ACLs and default ACLs for the shares/directories. Samba was configured to honour/inherit ACLs. A share for a certain group of people was used with 'chmod g+s' to force all created files into that group. Shares writable for more than one group of people was used with 'chmod g+s' and people had to be a member of a new group for that share/directory. This can be used to circumvent the lack of support for 'group of groups' in samba. At least that was so a few years back.
How did you configure that? I'm not sure exactly what configuration file or program you're referring to that applies 'chmod g+s' to the files.

I can log into the server and do a 'chmod 760 -R /share/directory ' and get results but it's a bit cumbersome to do this every time I start hearing gripes from people in the office about not being able to find files saved by my boss or myself.

I don't want Samba to inherit or honor any ACL's from the user. Every file that is created on the share should be forced to rwxrwx--- so any member of the group has full permissions (or at least rw permissions). Either way, I want this share to define permissions, not the user.

Thanks all for your input so far. Hopefully somebody out there has some insight. It must be something simple, but I have so far come upon a good number of threads in various forums where this question is asked, but no answers are found.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Samba Permissions problems johno12345 Linux - Server 0 06-28-2007 11:01 AM
Samba domain member server (DMS) group permissions in network with a Samba PDC srosa Linux - Networking 0 05-01-2006 05:55 PM
SAMBA says 'Samba Server is not accebile, you might have no permissions' Ahmad Gurchani Linux - General 1 01-01-2005 10:34 AM
samba and permissions Problems cvc505 Linux - Networking 3 08-06-2004 05:15 PM
still problems with write permissions samba share pepijn Linux - Software 1 10-14-2003 04:38 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 12:06 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration