xref: /illumos-gate/usr/src/man/man3c/door_cred.3c (revision 1edba515a3484e0f74b638b203d462b3112ac84d)
te
Copyright (c) 2005, Sun Microsystems, Inc. All Rights Reserved.
The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
DOOR_CRED 3C "Mar 22, 2005"
NAME
door_cred - return credential information associated with the client
SYNOPSIS

cc -mt [ flag... ] file... [ library... ]
#include <door.h>

int door_cred(door_cred_t *info);
DESCRIPTION

The door_cred() function returns credential information associated with the client (if any) of the current door invocation.

The contents of the info argument include the following fields:

uid_t dc_euid; /* Effective uid of client */
gid_t dc_egid; /* Effective gid of client */
uid_t dc_ruid; /* Real uid of client */
gid_t dc_rgid; /* Real gid of client */
pid_t dc_pid; /* pid of client */

The credential information associated with the client refers to the information from the immediate caller; not necessarily from the first thread in a chain of door calls.

RETURN VALUES

Upon successful completion, door_cred() returns 0. Otherwise, door_cred() returns -1 and sets errno to indicate the error.

ERRORS

The door_cred() function will fail if: EFAULT

The address of the info argument is invalid.

EINVAL

There is no associated door client.

USAGE

The door_cred() function is obsolete. Applications should use the door_ucred(3C) function in place of door_cred().

ATTRIBUTES

See attributes(7) for descriptions of the following attributes:

ATTRIBUTE TYPE ATTRIBUTE VALUE
Architecture all
Interface Stability Obsolete
MT-Level Safe
SEE ALSO

door_call (3C), door_create (3C), door_ucred (3C), attributes (7)