]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man9/cr_cansee.9
Remove $FreeBSD$: two-line nroff pattern
[FreeBSD/FreeBSD.git] / share / man / man9 / cr_cansee.9
1 .\"
2 .\" Copyright (c) 2006 Ceri Davies <ceri@FreeBSD.org>
3 .\"
4 .\" All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\"
15 .\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
16 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 .\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
19 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 .\"
26 .Dd November 19, 2006
27 .Dt CR_CANSEE 9
28 .Os
29 .Sh NAME
30 .Nm cr_cansee
31 .Nd "determine visibility of objects given their user credentials"
32 .Sh SYNOPSIS
33 .In sys/param.h
34 .In sys/systm.h
35 .In sys/ucred.h
36 .Ft int
37 .Fn cr_cansee "struct ucred *u1" "struct ucred *u2"
38 .Sh DESCRIPTION
39 This function determines the visibility of objects in the
40 kernel based on the real user IDs and group IDs in the credentials
41 .Fa u1
42 and
43 .Fa u2
44 associated with them.
45 .Pp
46 The visibility of objects is influenced by the
47 .Xr sysctl 8
48 variables
49 .Va security.bsd.see_other_gids
50 and
51 .Va security.bsd.see_other_uids ,
52 as per the description in
53 .Xr cr_seeothergids 9
54 and
55 .Xr cr_seeotheruids 9
56 respectively.
57 .Sh RETURN VALUES
58 This function returns zero if the object with credential
59 .Fa u1
60 can
61 .Dq see
62 the object with credential
63 .Fa u2 ,
64 or
65 .Er ESRCH
66 otherwise.
67 .Sh ERRORS
68 .Bl -tag -width Er
69 .It Bq Er ESRCH
70 The object with credential
71 .Fa u1
72 cannot
73 .Dq see
74 the object with credential
75 .Fa u2 .
76 .It Bq Er ESRCH
77 The object with credential
78 .Fa u1
79 has been jailed and the object with credential
80 .Fa u2
81 does not belong to the same jail as
82 .Fa u1 .
83 .It Bq Er ESRCH
84 The MAC subsystem denied visibility.
85 .El
86 .Sh SEE ALSO
87 .Xr cr_seeothergids 9 ,
88 .Xr cr_seeotheruids 9 ,
89 .Xr mac 9 ,
90 .Xr p_cansee 9