Main index | Section 3 | Options |
#include <sys/nv.h>
#include <libcasper.h>
#include <casper/cap_dns.h>
The functions cap_gethostbyname(), cap_gethostbyname2(), cep_gethostbyaddr() and cap_getnameinfo() are respectively equivalent to gethostbyname(3), gethostbyname2(3), gethostbyaddr(3) and getnameinfo(3) except that the connection to the system.dns service needs to be provided.
The cap_dns_type_limit() function limits the functions allowed in the service. The types variable can be set to ADDR2NAME or NAME2ADDR. See the LIMITS section for more details. The ntpyes variable contains the number of types provided.
The cap_dns_family_limit() functions allows to limit address families. For details see LIMITS. The nfamilies variable contains the number of families provided.
type( NV_TYPE_STRING) | The type can have two values: ADDR2NAME or NAME2ADDR. The ADDR2NAME means that reverse DNS lookups are allowed with cap_getnameinfo() and cap_gethostbyaddr() functions. In case when type is set to NAME2ADDR the name resolution is allowed with cap_getaddrinfo(), cap_gethostbyname(), and cap_gethostbyname2() functions. |
family( NV_TYPE_NUMBER) | The family limits service to one of the address families (e.g. AF_INET, AF_INET6, etc.). |
cap_channel_t *capcas, *capdns; int familylimit, error; const char *ipstr = "127.0.0.1"; const char *typelimit = "ADDR2NAME"; char hname[NI_MAXHOST]; struct addrinfo hints, *res;/* Open capability to Casper. */ capcas = cap_init(); if (capcas == NULL) err(1, "Unable to contact Casper");
/* Cache NLA for gai_strerror. */ caph_cache_catpages();
/* Enter capability mode sandbox. */ if (caph_enter() < 0) err(1, "Unable to enter capability mode");
/* Use Casper capability to create capability to the system.dns service. */ capdns = cap_service_open(capcas, "system.dns"); if (capdns == NULL) err(1, "Unable to open system.dns service");
/* Close Casper capability, we don't need it anymore. */ cap_close(capcas);
/* Limit system.dns to reserve IPv4 addresses */ familylimit = AF_INET; if (cap_dns_family_limit(capdns, &familylimit, 1) < 0) err(1, "Unable to limit access to the system.dns service");
/* Convert IP address in C-string to struct sockaddr. */ memset(&hints, 0, sizeof(hints)); hints.ai_family = familylimit; hints.ai_flags = AI_NUMERICHOST; error = cap_getaddrinfo(capdns, ipstr, NULL, &hints, &res); if (error != 0) errx(1, "cap_getaddrinfo(): %s: %s", ipstr, gai_strerror(error));
/* Limit system.dns to reverse DNS lookups. */ if (cap_dns_type_limit(capdns, &typelimit, 1) < 0) err(1, "Unable to limit access to the system.dns service");
/* Find hostname for the given IP address. */ error = cap_getnameinfo(capdns, res->ai_addr, res->ai_addrlen, hname, sizeof(hname), NULL, 0, 0); if (error != 0) errx(1, "cap_getnameinfo(): %s: %s", ipstr, gai_strerror(error));
printf("Name associated with %s is %s. , ipstr, hname);
This manual page was written by Mariusz Zaborski <Mt oshogbo@FreeBSD.org>.
CAP_DNS (3) | August 15, 2020 |
Main index | Section 3 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
“ | With features like these, who needs bugs? | ” |
— Henry Spencer |