Main index | Section 3 | Options |
#include <sys/nv.h>
#include <libcasper.h>
#include <casper/cap_grp.h>
The cap_grp_limit_cmds() function limits the functions allowed in the service. The cmds variable can be set to getgrent, getgrnam, getgrgid, getgrent_r, getgrnam_r, getgrgid_r, setgroupent, setgrent, or endgrent which will allow to use the function associated with the name. The ncmds variable contains the number of cmds provided.
The cap_grp_limit_fields() function allows limit fields returned in the structure group. The fields variable can be set to gr_name gr_passwd gr_gid or gr_mem. The field which was set as the limit will be returned, while the rest of the values not set this way will have default values. The nfields variable contains the number of fields provided.
The cap_grp_limit_groups() function allows to limit access to groups. The names variable allows to limit groups by name and the gids variable by the group number. The nnames and ngids variables provide numbers of limited names and gids.
cap_channel_t *capcas, *capgrp; const char *cmds[] = { "getgrgid" }; const char *fields[] = { "gr_name" }; const gid_t gid[] = { 1 }; struct group *group;/* Open capability to Casper. */ capcas = cap_init(); if (capcas == NULL) err(1, "Unable to contact Casper");
/* Enter capability mode sandbox. */ if (cap_enter() < 0 && errno != ENOSYS) err(1, "Unable to enter capability mode");
/* Use Casper capability to create capability to the system.grp service. */ capgrp = cap_service_open(capcas, "system.grp"); if (capgrp == NULL) err(1, "Unable to open system.grp service");
/* Close Casper capability, we don't need it anymore. */ cap_close(capcas);
/* Limit service to one single function. */ if (cap_grp_limit_cmds(capgrp, cmds, nitems(cmds))) err(1, "Unable to limit access to system.grp service");
/* Limit service to one field as we only need name of the group. */ if (cap_grp_limit_fields(capgrp, fields, nitems(fields))) err(1, "Unable to limit access to system.grp service");
/* Limit service to one gid. */ if (cap_grp_limit_groups(capgrp, NULL, 0, gid, nitems(gid))) err(1, "Unable to limit access to system.grp service");
group = cap_getgrgid(capgrp, gid[0]); if (group == NULL) err(1, "Unable to get name of group");
printf("GID %d is associated with name %s. , gid[0], group->gr_name);
cap_close(capgrp);
This manual page was written by Mariusz Zaborski <Mt oshogbo@FreeBSD.org>.
CAP_GRP (3) | May 5, 2020 |
Main index | Section 3 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
“ | As soon as we started programming, we found to our surprise that it wasn't as easy to get programs right as we had thought. Debugging had to be discovered. I can remember the exact instant when I realized that a large part of my life from then on was going to be spent in finding mistakes in my own programs. | ” |
— Maurice Wilkes |