Implement mac_get_peer(3) using getsockopt() with SOL_SOCKET and

SO_PEERLABEL.  This provides an interface to query the label of a
socket peer without embedding implementation details of mac_t in
the application.  Previously, sizeof(*mac_t) had to be specified
by an application when performing getsockopt().

Document mac_get_peer(3), and expand documentation of the other
mac_get(3) functions.  Note that it's possible to get EINVAL back
from mac_get_fd(3) when pointing it at an inappropriate object.

NOTE: mac_get_fd() and mac_set_fd() support for sockets will
follow shortly, so the documentation is slightly ahead of the
code.

Obtained from:	TrustedBSD Project
Sponsored by:	DARPA, Network Associates Laboratories
This commit is contained in:
Robert Watson 2003-11-16 20:18:24 +00:00
parent c9ea2dcf62
commit 920325ee1d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=122810
4 changed files with 46 additions and 27 deletions

View file

@ -47,39 +47,46 @@
.Ft int
.Fn mac_get_fd "int fd" "mac_t label"
.Ft int
.Fn mac_get_peer "int fd" "mac_t label"
.Ft int
.Fn mac_get_pid "pid_t pid" "mac_t label"
.Ft int
.Fn mac_get_proc "mac_t label"
.Sh DESCRIPTION
The
.Fn mac_get_file
and
.Fn mac_get_fd
functions fill in
.Fa label
(which must first be allocated by
.Xr mac_prepare 3 )
with the MAC label associated with the file referenced by
.Fa path
or the file descriptor specified by
.Fa fd ,
respectively.
Note that this function will fail on socket descriptors.
For information on
getting MAC labels on socket descriptors see
.Xr getsockopt 2 .
system call returns the label associated with a file specified by
pathname.
.Pp
The
.Fn mac_get_fd
system call returns the label associated with an object referenced by
the specified file descriptor.
Note that in the case of a file system socket, the label returned will
be the socket label, which may be different from the label of the
on-disk node acting as a rendezvous for the socket.
The
.Fn mac_get_peer
system call returns the label associated with the remote endpoint of
a socket; the exact semantics of this call will depend on the protocol
domain, communications type, and endpoint; typically this label will
be cached when a connection-oriented protocol instance is first set up,
and is undefined for datagram protocols.
.Pp
The
.Fn mac_get_proc
and
.Fn mac_get_pid
functions fill in
.Fa label
(which must first be allocated by
.Xr mac_prepare 3 )
with the MAC label associated
with the requesting process
or the specified process, respectively.
and
.Fn mac_get_proc
system calls return the process label associated with an arbitrary
process id, or the current process.
.Pp
Label storage for use with these calls must first be allocated and
prepared using the
.Xr mac_prepare 3
functions.
When an application is done using a label, the memory may be returned
using
.Xr mac_free 3 .
.Sh ERRORS
.Bl -tag -width Er
.It Bq Er EACCES
@ -88,6 +95,9 @@ A component of
is not searchable,
or MAC read access to the file
is denied.
.It Bq Er EINVAL
The requested label operation is not valid for the object referenced by
.Fa fd .
.It Bq Er ENAMETOOLONG
The pathname pointed to by
.Fa path

View file

@ -33,9 +33,7 @@
#include <sys/types.h>
#include <sys/mac.h>
#include <errno.h>
#include <stdlib.h>
#include <sys/socket.h>
extern int __mac_get_fd(int fd, struct mac *mac_p);
extern int __mac_get_file(const char *path_p, struct mac *mac_p);
@ -64,6 +62,15 @@ mac_get_link(const char *path, struct mac *label)
return (__mac_get_link(path, label));
}
int
mac_get_peer(int fd, struct mac *label)
{
socklen_t len;
len = sizeof(*label);
return (getsockopt(fd, SOL_SOCKET, SO_PEERLABEL, label, &len));
}
int
mac_get_pid(pid_t pid, struct mac *label)
{

View file

@ -83,6 +83,7 @@ int mac_from_text(mac_t *_label, const char *_text);
int mac_get_fd(int _fd, mac_t _label);
int mac_get_file(const char *_path, mac_t _label);
int mac_get_link(const char *_path, mac_t _label);
int mac_get_peer(int _fd, mac_t _label);
int mac_get_pid(pid_t _pid, mac_t _label);
int mac_get_proc(mac_t _label);
int mac_is_present(const char *_policyname);

View file

@ -83,6 +83,7 @@ int mac_from_text(mac_t *_label, const char *_text);
int mac_get_fd(int _fd, mac_t _label);
int mac_get_file(const char *_path, mac_t _label);
int mac_get_link(const char *_path, mac_t _label);
int mac_get_peer(int _fd, mac_t _label);
int mac_get_pid(pid_t _pid, mac_t _label);
int mac_get_proc(mac_t _label);
int mac_is_present(const char *_policyname);