1.\" Copyright (c) 2016 Mariusz Zaborski <oshogbo@FreeBSD.org> 2.\" All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. 9.\" 2. Redistributions in binary form must reproduce the above copyright 10.\" notice, this list of conditions and the following disclaimer in the 11.\" documentation and/or other materials provided with the distribution. 12.\" 13.\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 14.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23.\" SUCH DAMAGE. 24.\" 25.\" $FreeBSD$ 26.\" 27.Dd October 5, 2016 28.Dt CAPSICUM_HELPERS 3 29.Os 30.Sh NAME 31.Nm caph_limit_stream , 32.Nm caph_limit_stdin , 33.Nm caph_limit_stderr , 34.Nm caph_limit_stdout , 35.Nm caph_limit_stdio , 36.Nm caph_cache_tzdata , 37.Nm caph_cache_catpages 38.Nd "set of the functions , part of the libcapsicum" 39.Sh LIBRARY 40.Lb libcapsicum 41.Sh SYNOPSIS 42.In capsicum_helpers.h 43.Ft int 44.Fn caph_limit_stream "int fd, int flags" 45.Ft int 46.Fn caph_limit_stdin "void" 47.Ft int 48.Fn caph_limit_stderr "void" 49.Ft int 50.Fn caph_limit_stdout "void" 51.Ft int 52.Fn caph_limit_stdio "void" 53.Ft void 54.Fn caph_cache_tzdata "void" 55.Ft void 56.Fn caph_cache_catpages "void" 57.Sh DESCRIPTION 58The 59.Nm capsicum helpers 60are a set of a inline functions which simplify Capsicumizing programs. 61The goal is to reduce duplicated code patterns. 62The 63.Nm capsicum helpers 64are part of 65.Nm libcapsicum 66but there is no need to link to the library. 67.Pp 68.Fn caph_limit_stream 69restricts capabilities on 70.Fa fd 71to only those needed by POSIX stream objects (that is, FILEs). 72.Pp 73The following flags can be provided: 74.Pp 75.Bl -tag -width "CAPH_IGNORE_EBADF" -compact -offset indent 76.It Dv CAPH_IGNORE_EBADF 77Do not return an error if file descriptor is invalid. 78.It Dv CAPH_READ 79Set CAP_READ on limited descriptor. 80.It Dv CAPH_WRITE 81Set CAP_WRITE on limited descriptor. 82.El 83.Pp 84.Fn caph_limit_stdin , 85.Fn caph_limit_stderr 86and 87.Fn caph_limit_stdout 88limit standard descriptors using the 89.Nm caph_limit_stream 90function. 91.Pp 92.Fn caph_limit_stdio 93limits stdin, stderr and stdout. 94.Pp 95.Fn caph_cache_tzdata 96precaches all timezone data needed to use 97.Li libc 98local time functions. 99.Pp 100.Fn caph_cache_catpages 101caches Native Language Support (NLS) data. 102NLS data is used for localized error printing by 103.Xr strerror 3 104and 105.Xr err 3 , 106among others. 107.Ed 108.Sh SEE ALSO 109.Xr cap_enter 2 , 110.Xr rights 4 111