1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
|
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Language" content="en" />
<title>s6: the accessrules library interface</title>
<meta name="Description" content="s6: the accessrules library interface" />
<meta name="Keywords" content="s6 net accessrules library libs6net unix tcp access control dns ipv4 ipv6" />
<!-- <link rel="stylesheet" type="text/css" href="//skarnet.org/default.css" /> -->
</head>
<body>
<p>
<a href="index.html">libs6</a><br />
<a href="../">s6</a><br />
<a href="//skarnet.org/software/">Software</a><br />
<a href="//skarnet.org/">skarnet.org</a>
</p>
<h1> The <tt>accessrules</tt> library interface </h1>
<p>
The following functions and structures are declared in the <tt>s6/accessrules.h</tt> header,
and implemented in the <tt>libs6.a</tt> or <tt>libs6.so</tt> library.
</p>
<h2> General information </h2>
<p>
<tt>accessrules</tt> is an access control library. It looks up
a key in a user-specified database, then returns a code depending on
whether the database allows access (in which case additional information
can also be returned), denies access, or does not contain the key.
</p>
<p>
<tt>accessrules</tt> has been designed to be easily extensible to any
database format and any key format.
</p>
<p>
Check the <tt>s6/accessrules.h</tt> header for the exact definitions.
</p>
<h2> Data structures </h2>
<ul>
<li> A <tt>s6_accessrules_result_t</tt> is a scalar that
can have the following values: S6_ACCESSRULES_ERROR,
S6_ACCESSRULES_DENY, S6_ACCESSRULES_ALLOW or S6_ACCESSRULES_NOTFOUND. </li>
<li> A <tt>s6_accessrules_params_t</tt> is a structure containing two
<a href="//skarnet.org/software/skalibs/libstddjb/stralloc.html">strallocs</a>,
<em>.env</em> and <em>.exec</em>, used to return data contained in the
database when a key has been allowed. The interpretation of this data is
application-defined. </li>
</ul>
<h2> Function types </h2>
<h3> Backend lookups </h3>
<p>
A <tt>s6_accessrules_backend_func_t</tt> is the type of a function
that takes a single key, looks it up in a database, and returns the result.
Namely:
</p>
<p>
<code>s6_accessrules_result_t f (char const *key, size_t keylen, void *handle, s6_accessrules_params_t *params) </code>
</p>
<p>
<em>f</em> looks up key <em>key</em> of length <em>keylen</em> in the database
represented by <em>handle</em> in an implementation-defined way. It returns a
number that says the key has been allowed, denied or not found, or an error
occurred. If the key has been allowed, <em>f</em> stores additional information
from the database into *<em>params</em>.
</p>
<p>
Two s6_accessrules_backend_func_t functions are natively implemented:
</p>
<ul>
<li> <tt>s6_accessrules_backend_fs</tt> takes a <tt>char const *</tt>
<em>handle</em> and interprets it as a base directory to look up <em>key</em>
under, in the format understood by
<a href="../s6-accessrules-cdb-from-fs.html">s6-accessrules-cdb-from-fs</a>. </li>
<li> <tt>s6_accessrules_backend_cdb</tt> takes a <tt>struct cdb *</tt>
<em>handle</em> and looks up <em>key</em> in the
<a href="https://cr.yp.to/cdb.html">CDB</a> it points to. <em>handle</em> must
already be mapped to a CDB file. Such a file can be built with the
<a href="../s6-accessrules-cdb-from-fs.html">s6-accessrules-cdb-from-fs</a>
utility. </li>
</ul>
<h3> Frontend key checking </h3>
<p>
A <tt>s6_accessrules_keycheck_func_t</tt> is the type of a function that
takes a user-level key, makes a list of corresponding backend-level keys and
calls a <tt>s6_accessrules_backend_func_t</tt> function until it finds
a match. Namely:
</p>
<p>
<code>s6_accessrules_result_t f (void const *key, void *handle, s6_accessrules_params_t *params, s6_accessrules_backend_func_t *backend) </code>
</p>
<p>
<em>f</em> derives a list of low-level keys to check from <em>key</em>.
Then, for each key <em>k</em> of length <em>klen</em> in this list, it calls
<tt>(*backend)(k, klen, handle, params)</tt>, returning *<em>backend</em>'s result if it
is not S6_ACCESSRULES_NOTFOUND. If no match can be found in the whole list,
<em>f</em> finally returns S6_ACCESSRULES_NOTFOUND.
</p>
<p>
Five s6_accessrules_keycheck_func_t functions are natively implemented:
</p>
<ul>
<li>
<a name="uidgid" />
<tt>s6_accessrules_keycheck_uidgid</tt> interprets <em>key</em> as a
pointer to a structure containing an uid <em>u</em> and a gid <em>g</em>.
The following checks are performed, in this order (i.e. subsequent
checks are not performed if a match is found):
<ul>
<li> If <em>u</em> is equal to the effective uid of the process, look
for a <tt>uid/self</tt> match. </li>
<li> Look for a <tt>uid/<em>u</em></tt> match. </li>
<li> If <em>g</em> is equal to the effective gid of the process, look
for a <tt>gid/self</tt> match. </li>
<li> Look for a <tt>gid/<em>g</em></tt> match. </li>
<li> Look for a <tt>uid/default</tt> match. </li>
</ul> </li>
<li>
<a name="reversedns" />
<tt>s6_accessrules_keycheck_reversedns</tt> interprets <em>key</em>
as a string containing a FQDN. Then for each suffix <em>k</em> of <em>key</em>,
starting with <em>key</em> itself and ending with <em>key</em>'s TLD,
it looks up <tt>reversedns/<em>k</em></tt>. The final dot is excluded from
<em>k</em>. If no match can be found, the function checks <tt>reversedns/@</tt>
and returns the result. For instance, if <em>key</em> is "foo.bar.com",
the following strings are looked up, in this order:
<ul>
<li> reversedns/foo.bar.com </li>
<li> reversedns/bar.com </li>
<li> reversedns/com </li>
<li> reversedns/@ </li>
</ul> </li>
<li>
<a name="ip4" />
<tt>s6_accessrules_keycheck_ip4</tt> interprets <em>key</em> as
4 network-byte-order characters containing an IPv4 address. Then for each
netmask <em>mask</em> from 32 to 0, it constructs the IPv4 network
prefix <em>addr</em> corresponding to that address, and looks up
<tt>ip4/<em>addr</em>_<em>mask</em></tt>. For instance, if <em>key</em>
is "\300\250\001\007", representing the 192.168.1.7 address, the following
strings are looked up, in this order:
<ul>
<li> ip4/192.168.1.7_32 </li>
<li> ip4/192.168.1.6_31 </li>
<li> ip4/192.168.1.4_30 </li>
<li> ip4/192.168.1.0_29 </li>
<li> ip4/192.168.0.0_28 </li>
<li> ip4/192.168.0.0_27 </li>
</ul>
and so on, down to:
<ul>
<li> ip4/192.0.0.0_3 </li>
<li> ip4/192.0.0.0_2 </li>
<li> ip4/128.0.0.0_1 </li>
<li> ip4/0.0.0.0_0 </li>
</ul>
Note that the <tt>ip4/0.0.0.0_0</tt> string is a catch-all key that
matches everything. </li>
<li>
<a name="ip6" />
<tt>s6_accessrules_keycheck_ip6</tt> interprets <em>key</em> as
16 network-byte-order characters containing an IPv6 address. Then for each
netmask <em>mask</em> from 128 to 0, it constructs the IPv6 network
prefix <em>addr</em> corresponding to that address,
<strong>in canonical form</strong>,
and looks up
<tt>ip6/<em>addr</em>_<em>mask</em></tt>. For instance, if <em>key</em>
is "*\0\024P@\002\b\003\0\0\0\0\0\0\020\006", representing the
2a00:1450:4002:803::1006 address, the following
strings are looked up, in this order:
<ul>
<li> ip6/2a00:1450:4002:803::1006_128 </li>
<li> ip6/2a00:1450:4002:803::1006_127 </li>
<li> ip6/2a00:1450:4002:803::1004_126 </li>
<li> ip6/2a00:1450:4002:803::1000_125 </li>
<li> ip6/2a00:1450:4002:803::1000_124 </li>
<li> ip6/2a00:1450:4002:803::1000_123 </li>
<li> ip6/2a00:1450:4002:803::1000_122 </li>
<li> ip6/2a00:1450:4002:803::1000_121 </li>
<li> ip6/2a00:1450:4002:803::1000_120 </li>
<li> ip6/2a00:1450:4002:803::1000_119 </li>
<li> ip6/2a00:1450:4002:803::1000_118 </li>
<li> ip6/2a00:1450:4002:803::1000_117 </li>
<li> ip6/2a00:1450:4002:803::1000_116 </li>
<li> ip6/2a00:1450:4002:803::1000_115 </li>
<li> ip6/2a00:1450:4002:803::1000_114 </li>
<li> ip6/2a00:1450:4002:803::1000_113 </li>
<li> ip6/2a00:1450:4002:803::_112 </li>
<li> ip6/2a00:1450:4002:803::_111 </li>
</ul>
and so on, down to:
<ul>
<li> ip6/2a00::_11 </li>
<li> ip6/2800::_10 </li>
<li> ip6/2800::_9 </li>
<li> ip6/2000::_8 </li>
<li> ip6/2000::_7 </li>
<li> ip6/2000::_6 </li>
<li> ip6/2000::_5 </li>
<li> ip6/2000::_4 </li>
<li> ip6/2000::_3 </li>
<li> ip6/::_2 </li>
<li> ip6/::_1 </li>
<li> ip6/::_0 </li>
</ul>
Note that the <tt>ip6/::_0</tt> string is a catch-all key that
matches everything. </li>
<li>
<a name="ip46" />
<tt>s6_accessrules_keycheck_ip46</tt> interprets <em>key</em> as a pointer to an
<a href="//skarnet.org/software/skalibs/libstddjb/ip46.html">ip46_t</a>, and
behaves either as s6_accessrules_keycheck_ip6 or s6_accessrules_keycheck_ip4,
depending on the type of address *<em>key</em> contains. </li>
</ul>
<h2> Ready-to-use functions </h2>
Those functions are mostly macros; they're built by associating a frontend
function with a backend function.
<p>
<code> s6_accessrules_result_t s6_accessrules_uidgid_cdb
(uid_t u, gid_t g, struct cdb *c,
s6_accessrules_params_t *params) </code> <br />
Checks the *<em>c</em> CDB database for an authorization for uid <em>u</em>
and gid <em>g</em>. If the result is S6_ACCESSRULES_ALLOW, additional
information may be stored into <em>params</em>.
</p>
<p>
<code> s6_accessrules_result_t s6_accessrules_uidgid_fs
(uid_t u, gid_t g, char const *dir,
s6_accessrules_params_t *params) </code> <br />
Checks the <em>dir</em> base directory for an authorization for uid <em>u</em>
and gid <em>g</em>. If the result is S6_ACCESSRULES_ALLOW, additional
information may be stored into <em>params</em>.
</p>
<p>
<code> s6_accessrules_result_t s6_accessrules_reversedns_cdb
(char const *name, struct cdb *c,
s6_accessrules_params_t *params) </code> <br />
Checks the *<em>c</em> CDB database for an authorization for the
<em>name</em> FQDN. If the result is S6_ACCESSRULES_ALLOW, additional
information may be stored into <em>params</em>.
</p>
<p>
<code> s6_accessrules_result_t s6_accessrules_reversedns_fs
(char const *name, char const *dir,
s6_accessrules_params_t *params) </code> <br />
Checks the <em>dir</em> base directory for an authorization for the
<em>name</em> FQDN. If the result is S6_ACCESSRULES_ALLOW, additional
information may be stored into <em>params</em>.
</p>
<p>
<code> s6_accessrules_result_t s6_accessrules_ip4_cdb
(char const *ip4, struct cdb *c,
s6_accessrules_params_t *params) </code> <br />
Checks the *<em>c</em> CDB database for an authorization for the
<em>ip4</em> IPv4 address (4 network byte order characters).
If the result is S6_ACCESSRULES_ALLOW, additional
information may be stored into <em>params</em>.
</p>
<p>
<code> s6_accessrules_result_t s6_accessrules_ip4_fs
(char const *ip4, char const *dir,
s6_accessrules_params_t *params) </code> <br />
Checks the <em>dir</em> base directory for an authorization for the
<em>ip4</em> IPv4 address (4 network byte order characters).
If the result is S6_ACCESSRULES_ALLOW, additional
information may be stored into <em>params</em>.
</p>
<p>
<code> s6_accessrules_result_t s6_accessrules_ip6_cdb
(char const *ip6, struct cdb *c,
s6_accessrules_params_t *params) </code> <br />
Checks the *<em>c</em> CDB database for an authorization for the
<em>ip6</em> IPv6 address (16 network byte order characters).
If the result is S6_ACCESSRULES_ALLOW, additional
information may be stored into <em>params</em>.
</p>
<p>
<code> s6_accessrules_result_t s6_accessrules_ip6_fs
(char const *ip6, char const *dir,
s6_accessrules_params_t *params) </code> <br />
Checks the <em>dir</em> base directory for an authorization for the
<em>ip6</em> IPv6 address (16 network byte order characters).
If the result is S6_ACCESSRULES_ALLOW, additional
information may be stored into <em>params</em>.
</p>
<p>
<code> s6_accessrules_result_t s6_accessrules_ip46_cdb
(ip46_t *ip, struct cdb *c,
s6_accessrules_params_t *params) </code> <br />
Checks the *<em>c</em> CDB database for an authorization for the
<em>ip</em> IP address.
If the result is S6_ACCESSRULES_ALLOW, additional
information may be stored into <em>params</em>.
</p>
<p>
<code> s6_accessrules_result_t s6_accessrules_ip46_fs
(ip46_t const *ip, char const *dir,
s6_accessrules_params_t *params) </code> <br />
Checks the <em>dir</em> base directory for an authorization for the
<em>ip</em> IP address.
If the result is S6_ACCESSRULES_ALLOW, additional
information may be stored into <em>params</em>.
</p>
</body>
</html>
|