Strange permission changes when saving file on a Samba partition from a Windows editor

5,656

I found this question while trying to resolve a very similar problem. The solution in my case was to add map archive = no to smb.conf's global section.


The underlying problem is the way that Samba maps permissions across from Dos to Linux.

It seems that when notepad++ saves a file it is setting/resetting the dos file "archive" attribute. By default Samba uses this to manage the execute attribute for user permissions on a file.

So, if you set the Samba parameter:

map archive = no

The attribute is not mapped and user execute permissions are retained as per what they were set to previously.

Share:
5,656

Related videos on Youtube

DVK
Author by

DVK

Areas of expertise: Perl expert (specifically enterprise software development Sybase (table design, query optimization and stored proc development) Java (including Reflection and Javascript embedding) Areas of familiarity: Web programming (EmbPerl, JSP, CSS, HTML, JavaScript) C++ Shell scripting, *nix system administration

Updated on September 18, 2022

Comments

  • DVK
    DVK over 1 year

    I'm trying to figure out why a specific behavior is exibited when perms change on a file being saved from a Windows editor on a SAMBA-mounted Unix partition.

    Situation:

    • We have a file on Unix, with 777 permissions:

      -rwxrwxrwx 1 testuser users 4859 Jan 23 15:09 fbparser.pl*

    • The directory where the file is located is mounted from a Windows 7 PC, via Samba.

    • We open the file for editing in either "Notepad++" or "Sublime" editors.

    • When the file is changed and saved, on the unix side the permissions change to:

      -rw-rwxrwx 1 testuser users 4859 Jan 23 15:09 fbparser.pl*

    Now, I suspected that it may NOT be due to Samba mount, because the same problem DOES NOT occur when opening and saving the file in regular Windows Notepad!

    Therefore, my initial thinking was that this was because the programming editors mentioned above may be set up to - instead of simply saving the file - to rename the original file to $orig_filename.bak and then save the new content as NEW file with the original filename. This is based with my own prior experience of the same problem using UltraEdit editor.

    However, if that is the reason for perms changes, I am at a loss to explain two OTHER symptoms I observed:

    • First off, there is no backup file being created in the first place.

    • Second, when creating NEW files (using touch) in the same directory in Unix Shell, the perms for the new file are NOT -rw-rwxrwx at all.

    • Third, if it matters, the inode # for the file remains the same after the edit.

    What else could be the problem and what steps can I take to investigate it?

    My own UltraEdit problem went away when I told UE to NOT back up the file by renaming; however Notepad++ doesn't have such an option.

  • Krista K
    Krista K over 9 years
    thank you so much. This saved me from being crushed via infuriation.