Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/openzfs/lib/libspl/cred.c
96339 views
1
// SPDX-License-Identifier: CDDL-1.0
2
/*
3
* CDDL HEADER START
4
*
5
* The contents of this file are subject to the terms of the
6
* Common Development and Distribution License (the "License").
7
* You may not use this file except in compliance with the License.
8
*
9
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10
* or https://opensource.org/licenses/CDDL-1.0.
11
* See the License for the specific language governing permissions
12
* and limitations under the License.
13
*
14
* When distributing Covered Code, include this CDDL HEADER in each
15
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16
* If applicable, add the following below this CDDL HEADER, with the
17
* fields enclosed by brackets "[]" replaced with your own identifying
18
* information: Portions Copyright [yyyy] [name of copyright owner]
19
*
20
* CDDL HEADER END
21
*/
22
/*
23
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24
* Copyright (c) 2012, 2018 by Delphix. All rights reserved.
25
* Copyright (c) 2016 Actifio, Inc. All rights reserved.
26
* Copyright (c) 2025, Klara, Inc.
27
*/
28
29
#include <sys/cred.h>
30
31
uid_t
32
crgetuid(cred_t *cr)
33
{
34
(void) cr;
35
return (0);
36
}
37
38
uid_t
39
crgetruid(cred_t *cr)
40
{
41
(void) cr;
42
return (0);
43
}
44
45
gid_t
46
crgetgid(cred_t *cr)
47
{
48
(void) cr;
49
return (0);
50
}
51
52
int
53
crgetngroups(cred_t *cr)
54
{
55
(void) cr;
56
return (0);
57
}
58
59
gid_t *
60
crgetgroups(cred_t *cr)
61
{
62
(void) cr;
63
return (NULL);
64
}
65
66