2001-08-31 02:07:48 +00:00
|
|
|
.\"-
|
|
|
|
.\" Copyright (c) 2000 Robert N. M. Watson
|
|
|
|
.\" Copyright (c) 2001 Thomas Moestl
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
2001-09-05 14:09:08 +00:00
|
|
|
.\" SUCH DAMAGE.
|
2001-08-31 02:07:48 +00:00
|
|
|
.\"
|
|
|
|
.\" $FreeBSD$
|
|
|
|
.\"
|
|
|
|
.Dd March 21, 2001
|
|
|
|
.Dt CAP_COPY_EXT 3
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
2001-09-05 14:09:08 +00:00
|
|
|
.Nm cap_copy_ext , cap_size
|
|
|
|
.Nd convert a capability state in working storage to an external representation
|
2001-08-31 02:07:48 +00:00
|
|
|
.Sh LIBRARY
|
|
|
|
.Lb libc
|
|
|
|
.Sh SYNOPSIS
|
2001-09-05 14:09:08 +00:00
|
|
|
.In sys/types.h
|
|
|
|
.In sys/capability.h
|
2001-08-31 02:07:48 +00:00
|
|
|
.Ft ssize_t
|
|
|
|
.Fn cap_copy_ext "void *ext_p" "cap_t cap" "ssize_t len"
|
|
|
|
.Ft ssize_t
|
|
|
|
.Fn cap_size "cap_t cap"
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
2001-09-05 14:09:08 +00:00
|
|
|
.Fn cap_copy_ext
|
2001-08-31 02:07:48 +00:00
|
|
|
function converts the capability state in working storage identified by
|
2001-09-05 14:09:08 +00:00
|
|
|
.Fa cap
|
2001-08-31 02:07:48 +00:00
|
|
|
to an opaque contiguous external representation in the buffer
|
2001-09-05 14:09:08 +00:00
|
|
|
pointed to by
|
|
|
|
.Fa ext_p .
|
|
|
|
.Fa len
|
2001-08-31 02:07:48 +00:00
|
|
|
specifies the maximum number of bytes that may be written into the buffer.
|
|
|
|
.Pp
|
|
|
|
An application can use the
|
2001-09-05 14:09:08 +00:00
|
|
|
.Fn cap_size
|
2001-08-31 02:07:48 +00:00
|
|
|
function to determine the amount of storage in bytes that are needed for
|
|
|
|
the external representation of
|
2001-09-05 14:09:08 +00:00
|
|
|
.Fa cap .
|
2001-08-31 02:07:48 +00:00
|
|
|
.Sh IMPLEMENTATION NOTES
|
|
|
|
The format of the external representation is not specified in the POSIX.1e
|
2001-09-05 14:09:08 +00:00
|
|
|
draft.
|
|
|
|
Applications that need a portable representation should use
|
2001-08-31 02:07:48 +00:00
|
|
|
.Xr cap_to_text 3 .
|
|
|
|
.Pp
|
|
|
|
This function is appropriate in cases where a persistent representation is
|
2001-09-05 14:09:08 +00:00
|
|
|
needed that needs not to be portable.
|
|
|
|
Due to endianess issues, this format might
|
2001-08-31 02:07:48 +00:00
|
|
|
not even be portable between machines of different architectures running this
|
|
|
|
implementation.
|
|
|
|
.Pp
|
|
|
|
.Xr cap_copy_int 3
|
|
|
|
can be used to convert the external representation back to a
|
2001-09-05 14:09:08 +00:00
|
|
|
.Vt cap_t .
|
2001-08-31 02:07:48 +00:00
|
|
|
.Sh RETURN VALUES
|
|
|
|
Upon successful completion, the
|
2001-09-05 14:09:08 +00:00
|
|
|
.Fn cap_copy_ext
|
2001-08-31 02:07:48 +00:00
|
|
|
function returns the number of bytes written to
|
2001-09-05 14:09:08 +00:00
|
|
|
.Fa ext_p ,
|
|
|
|
and
|
|
|
|
.Fn cap_size
|
2001-08-31 02:07:48 +00:00
|
|
|
returns the number of bytes needed for the external representation of
|
2001-09-05 14:09:08 +00:00
|
|
|
.Fa cap .
|
|
|
|
Otherwise, the value \-1 is returned and the global variable
|
2001-08-31 02:07:48 +00:00
|
|
|
.Va errno
|
2001-09-05 14:09:08 +00:00
|
|
|
is set to indicate the error.
|
2001-08-31 02:07:48 +00:00
|
|
|
.Sh ERRORS
|
2001-09-05 14:09:08 +00:00
|
|
|
.Fn cap_copy_ext
|
|
|
|
fails if:
|
2001-08-31 02:07:48 +00:00
|
|
|
.Bl -tag -width Er
|
|
|
|
.It Bq Er EINVAL
|
2001-09-05 14:09:08 +00:00
|
|
|
The
|
|
|
|
.Fa cap
|
|
|
|
argument does not refer to a capability state in working storage,
|
2001-08-31 02:07:48 +00:00
|
|
|
or the
|
2001-09-05 14:09:08 +00:00
|
|
|
.Fa len
|
|
|
|
argument is negative.
|
2001-08-31 02:07:48 +00:00
|
|
|
.It Bq Er ERANGE
|
|
|
|
The buffer size specified by
|
2001-09-05 14:09:08 +00:00
|
|
|
.Fa len
|
2001-08-31 02:07:48 +00:00
|
|
|
argument is too small to hold the external representation.
|
|
|
|
.El
|
|
|
|
.Pp
|
2001-09-05 14:09:08 +00:00
|
|
|
.Fn cap_size
|
|
|
|
fails if:
|
2001-08-31 02:07:48 +00:00
|
|
|
.Bl -tag -width Er
|
|
|
|
.It Bq Er EINVAL
|
|
|
|
The
|
2001-09-05 14:09:08 +00:00
|
|
|
.Fa cap
|
2001-08-31 02:07:48 +00:00
|
|
|
argument does not refer to a capability state in working storage.
|
|
|
|
.El
|
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr cap_copy_int 3 ,
|
|
|
|
.Xr cap_free 3 ,
|
|
|
|
.Xr cap_from_text 3 ,
|
|
|
|
.Xr cap_get_flag 3 ,
|
|
|
|
.Xr cap_to_text 3 ,
|
|
|
|
.Xr posix1e 3
|
|
|
|
.Sh STANDARDS
|
|
|
|
This function is expected to conform to the withdrawn
|
|
|
|
IEEE draft 1003.1e
|
2001-09-05 14:09:08 +00:00
|
|
|
.Pq Dq POSIX.1e .
|
2001-08-31 02:07:48 +00:00
|
|
|
.Sh HISTORY
|
2001-09-05 14:09:08 +00:00
|
|
|
These functions first appeared in
|
2001-08-31 02:07:48 +00:00
|
|
|
.Fx 5.0 .
|
|
|
|
.Sh AUTHORS
|
|
|
|
.An Thomas Moestl Aq tmm@FreeBSD.org
|