1.\" Copyright (c) 2020 Ryan Moeller <freqlabs@FreeBSD.org> 2.\" 3.\" Redistribution and use in source and binary forms, with or without 4.\" modification, are permitted provided that the following conditions 5.\" are met: 6.\" 1. Redistributions of source code must retain the above copyright 7.\" notice, this list of conditions and the following disclaimer. 8.\" 2. Redistributions in binary form must reproduce the above copyright 9.\" notice, this list of conditions and the following disclaimer in the 10.\" documentation and/or other materials provided with the distribution. 11.\" 12.\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 13.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 14.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 15.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 16.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 17.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 18.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 19.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 20.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 21.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 22.\" SUCH DAMAGE. 23.\" 24.Dd September 29, 2022 25.Dt CAP_NETDB 3 26.Os 27.Sh NAME 28.Nm cap_getprotobyname , 29.Nd "library for getting network proto entry in capability mode" 30.Sh LIBRARY 31.Lb libcap_netdb 32.Sh SYNOPSIS 33.In sys/nv.h 34.In libcasper.h 35.In casper/cap_netdb.h 36.Ft "struct protoent *" 37.Fn cap_getprotobyname "const cap_channel_t *chan" "const char *name" 38.Sh DESCRIPTION 39The function 40.Fn cap_getprotobyname 41is equivalent to 42.Xr getprotobyname 3 43except that the connection to the 44.Nm system.netdb 45service needs to be provided. 46.Sh EXAMPLES 47The following example first opens a capability to casper and then uses this 48capability to create the 49.Nm system.netdb 50casper service and uses it to look up a protocol by name. 51.Bd -literal 52cap_channel_t *capcas, *capnetdb; 53struct protoent *ent; 54 55/* Open capability to Casper. */ 56capcas = cap_init(); 57if (capcas == NULL) 58 err(1, "Unable to contact Casper"); 59 60/* Enter capability mode sandbox. */ 61if (caph_enter() < 0) 62 err(1, "Unable to enter capability mode"); 63 64/* Use Casper capability to create capability to the system.netdb service. */ 65capnetdb = cap_service_open(capcas, "system.netdb"); 66if (capnetdb == NULL) 67 err(1, "Unable to open system.netdb service"); 68 69/* Close Casper capability, we don't need it anymore. */ 70cap_close(capcas); 71 72ent = cap_getprotobyname(capnetdb, "http"); 73if (ent == NULL) 74 errx(1, "cap_getprotobyname failed to find http proto"); 75.Ed 76.Sh SEE ALSO 77.Xr cap_enter 2 , 78.Xr caph_enter 3 , 79.Xr err 3 , 80.Xr getprotobyname 3 , 81.Xr capsicum 4 , 82.Xr nv 9 83.Sh AUTHORS 84The 85.Nm cap_netdb 86service was implemented by 87.An Ryan Moeller Aq Mt freqlabs@FreeBSD.org . 88