Mac OS X Server v10.5, 10.6: Setting a custom umask

 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X Support RSS Mac OS X Server v10.5, 10.6: Setting a custom umask
# 1  
Old 02-04-2010
Mac OS X Server v10.5, 10.6: Setting a custom umask

This article explains how to set a custom umask in Mac OS X v10.5.3 and later.Every file or folder has permissions associated with it. When you create a file or folder, the umask setting determines these permissions. The permissions on a file can be represented by a number with three digits of 0-7. When you create a file, the umask value is subtracted from a default value (usually 666 for files, 777 for folders) to determine the permissions on the new file or folder. For example, the default umask of 022 results in permissions of 644 on new files and 755 on new folders: groups and other users can read the files and traverse the folders, but only the owner can make changes. For more information on permissions and their numerical representation, see this article.When you create a file, the umask value is subtracted from this maximum permissions value to determine the permissions on the new file or folder. For example, the default umask of 022 results in permissions of 755 on new files or folders: the owner has full access, while the group and others can read and execute, but not write to the file.System administrators may wish to set more or less restrictive umasks for their users. There are several different places in which a umask can be set, each affecting different applications.

More from Apple OS X Support ...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
umask(2)							System Calls Manual							  umask(2)

NAME
umask - Sets and gets the value of the file creation mask SYNOPSIS
#include <sys/types.h> #include <sys/stat.h> mode_t umask ( mode_t cmask ); STANDARDS
Interfaces documented on this reference page conform to industry standards as follows: umask(): POSIX.1, XPG4, XPG4-UNIX Refer to the standards(5) reference page for more information about industry standards and associated tags. PARAMETERS
Specifies the value of the file mode creation mask. DESCRIPTION
The umask() function sets the file mode creation mask of the process to the value of the cmask parameter and returns the previous value of the mask. The cmask parameter is constructed by logically ORing file permission bits defined in the sys/mode.h header file. Whenever a file is created (by the open(), mkdir(), or mknod() function), all file permission bits set in the file mode creation mask are cleared in the mode of the created file. This clearing lets users restrict the default access to their files. The mask is inherited by child processes. RETURN VALUES
Upon successful completion, the previous value of the file mode creation mask is returned. RELATED INFORMATION
Commands: chmod(1), mkdir(1), Bourne shell sh(1b), POSIX shell sh(1p), umask(1) Functions: chmod(2), mkdir(2), mknod(2), open(2), stat(2) Standards: standards(5) delim off umask(2)