Mac OS X Kernel basic user credentials

Source: Internet
Author: User
User credentials

In order to understand security in OS X, it is important to understand that there are two security models at work. one of these is the kernel security model, which is based on users, groups, and very basic per-user and per-group rights, which are, in turn, coupled with access control lists for increased flexibility. the other is a user-level security model, which is based on keys, Keychains, groups, users, password-based authentication, and a host of other details that are beyond the scope of this document.

The user-level security model (including the keychain manager and the security server) is beyond the scope of this document. the kernel security model, however, is of greater interest to kernel developers, and is much more straightforward than the user-level model. the kernel security model is based on two mechanisms: basic user credentials and ACL permissions. the first, basic user credentials, are passed around in the kernel to identify the current user and group of the calling process. the second authentication mechanism, access control lists (ACLs), provides access control at a finer level of granularity. one of the most important things to remember when working with credentials is that they are per process, not per context. this is important because a process may not be running as the console user. two examples of this are processes started from an ssh session (since SSH runs in the startup context) and setuid programs (which run as a different user in the same login context ).

It is crucial to be aware of these issues. if you are communicating with a setuid root GUI application in a user's login context, and if you are executing another application or are reading sensitive data, you probably want to treat it as if it had the same authority as the console user, not the authority of the valid user ID caused by running setuid. this is particle ly problematic when dealing with programs that run as setuid root if the console user is not in the admin group. failure to perform reasonable checks can lead to major security holes down the road.

However, this is not a hard and fast rule. sometimes it is not obvious whether to use the credentials of the running process or those of the console user. in such cases, it is often reasonable to have a helper application show a dialog box on the console to require interaction from the console user. if this is not possible, a good rule of thumb is to assume the lesser of the privileges of the current and console users, as it is almost always better to have kernel code occasionally fail to provide a needed service than to provide that service unintentionally to an unauthorized user or process.

It is generally easier to determine the console user from a user space application than from kernel space code. thus, you shoshould generally do such checks from user space. if that is not possible, however, the variable console_user (maintained by the VFS subsystem) will give you the UID of the last owner of/dev/console (maintained by a bit of code in the chown System Call ). this is certainly not an ideal solution, but it does provide the most likely identity of the console user. since this is only a "best guess," however, you shoshould use this only if you cannot do appropriate checking in user space.

Basic user credentials

Basic user credentials used in the kernel are stored in a variable of Type struct ucred. these are mostly used in specialized parts of the kernel-generally in places where the determining factor in permissions is whether or not the caller is running as the root user.

This structure has four fields:

  • Cr_ref-reference count (used internally)
  • Cr_uid-user ID
  • Cr_ngroups-number of groups in cr_groups
  • Cr_groups [ngroups]-list of groups to which the user belongs

This structure has an internal reference counter to prevent unintentionally freeing the memory associated with it while it is still in use. for this reason, you shocould not indiscriminately copy this object but shocould instead either use crdup to duplicate it or use crcopy to duplicate it and (potentially) Free the original. you shoshould be sure to crfree any copies you might make. you can also create a new, empty ucred structure with crget.

The prototypes for these functions follow:

  • Struct ucred * crdup (struct ucred * Cr)
  • Struct ucred * crcopy (struct ucred * Cr)
  • Struct ucred * crget (void)
  • Void crfree (struct ucred * Cr)

Note: Functions for working with basic user credential are not exported outside of the kernel, and thus are not generally available to kernel extensions.

Access Control Lists

Access control lists are a new feature in OS x v10.4. access control lists are primarily used in the file system portion of the OS X Kernel, and are supported through the use of the Kauth API.

The Kauth API is described in the header file/system/library/frameworks/kernel. framework/headers/sys/Kauth. h. because this API is still evolving, detailed documentation is not yet available.

Src = https://developer.apple.com/library/prerelease/mac/documentation/Darwin/Conceptual/KernelProgramming/KernelProgramming.pdf

Mac OS X Kernel basic user credentials

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.