lasdns.cpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. /** BEGIN COPYRIGHT BLOCK
  2. * This Program is free software; you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation; version 2 of the License.
  5. *
  6. * This Program is distributed in the hope that it will be useful, but WITHOUT
  7. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  8. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  9. *
  10. * You should have received a copy of the GNU General Public License along with
  11. * this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
  12. * Place, Suite 330, Boston, MA 02111-1307 USA.
  13. *
  14. * In addition, as a special exception, Red Hat, Inc. gives You the additional
  15. * right to link the code of this Program with code not covered under the GNU
  16. * General Public License ("Non-GPL Code") and to distribute linked combinations
  17. * including the two, subject to the limitations in this paragraph. Non-GPL Code
  18. * permitted under this exception must only link to the code of this Program
  19. * through those well defined interfaces identified in the file named EXCEPTION
  20. * found in the source code files (the "Approved Interfaces"). The files of
  21. * Non-GPL Code may instantiate templates or use macros or inline functions from
  22. * the Approved Interfaces without causing the resulting work to be covered by
  23. * the GNU General Public License. Only Red Hat, Inc. may make changes or
  24. * additions to the list of Approved Interfaces. You must obey the GNU General
  25. * Public License in all respects for all of the Program code and other code used
  26. * in conjunction with the Program except the Non-GPL Code covered by this
  27. * exception. If you modify this file, you may extend this exception to your
  28. * version of the file, but you are not obligated to do so. If you do not wish to
  29. * provide this exception without modification, you must delete this exception
  30. * statement from your version and license this file solely under the GPL without
  31. * exception.
  32. *
  33. *
  34. * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
  35. * Copyright (C) 2005 Red Hat, Inc.
  36. * All rights reserved.
  37. * END COPYRIGHT BLOCK **/
  38. #ifdef HAVE_CONFIG_H
  39. # include <config.h>
  40. #endif
  41. /* lasdns.c
  42. * This file contains the DNS LAS code.
  43. */
  44. #include <stdio.h>
  45. #include <string.h>
  46. #ifdef XP_WIN32
  47. /* #include <winsock2.h> */
  48. #include <winsock.h>
  49. #else
  50. #include <sys/types.h>
  51. #include <sys/socket.h>
  52. #include <netinet/in.h>
  53. #include <arpa/inet.h>
  54. #include <netdb.h>
  55. #endif
  56. #include <netsite.h>
  57. extern "C" {
  58. #include <prnetdb.h>
  59. }
  60. #include <base/plist.h>
  61. #include <base/pool.h>
  62. #include <libaccess/nserror.h>
  63. #include <libaccess/nsauth.h>
  64. #include <libaccess/acl.h>
  65. #include "aclpriv.h"
  66. #include <libaccess/aclproto.h>
  67. #include <libaccess/las.h>
  68. #include "lasdns.h"
  69. #include "aclutil.h"
  70. #include "aclcache.h"
  71. #include "permhash.h"
  72. #include <libaccess/dbtlibaccess.h>
  73. #include <libaccess/aclerror.h>
  74. #include "access_plhash.h"
  75. extern "C" {
  76. #include <nspr.h>
  77. }
  78. #ifdef UTEST
  79. extern int LASDnsGetDns(char **dnsv);
  80. #endif
  81. /* LASDnsMatch
  82. * Given an array of fully-qualified dns names, tries to match them
  83. * against a given hash table.
  84. * INPUT
  85. * dns DNS string
  86. * context pointer to an LAS DNS context structure
  87. *
  88. * In our usage, this context is derived from
  89. * an acllist cache, which is a representation of
  90. * of some global acis--in other words it's a global thing
  91. * shared between threads--hence the use
  92. * of the "read-only" hash lookup routines here.
  93. */
  94. int
  95. LASDnsMatch(char *token, LASDnsContext_t *context)
  96. {
  97. /* Test for the unusual case where "*" is allowed */
  98. if (ACL_HashTableLookup_const(context->Table, "*"))
  99. return LAS_EVAL_TRUE;
  100. /* Start with the full name. Then strip off each component
  101. * leaving the remainder starting with a period. E.g.
  102. * splash.mcom.com
  103. * .mcom.com
  104. * .com
  105. * Search the hash table for each remaining portion. Remember that
  106. * wildcards were put in with the leading period intact.
  107. */
  108. do {
  109. if (ACL_HashTableLookup_const(context->Table, token))
  110. return LAS_EVAL_TRUE;
  111. token = strchr(&token[1], '.');
  112. } while (token != NULL);
  113. return LAS_EVAL_FALSE;
  114. }
  115. /* LASDNSBuild
  116. * Builds a hash table of all the hostnames provided (plus their aliases
  117. * if aliasflg is true). Wildcards are only permitted in the leftmost
  118. * field. They're represented in the hash table by a leading period.
  119. * E.g. ".mcom.com".
  120. *
  121. * RETURNS Zero on success, else LAS_EVAL_INVALID
  122. */
  123. int
  124. LASDnsBuild(NSErr_t *errp, char *attr_pattern, LASDnsContext_t *context, int aliasflg)
  125. {
  126. size_t delimiter; /* length of valid tokeni */
  127. char token[256]; /* max length dns name */
  128. int i;
  129. char **p;
  130. pool_handle_t *pool;
  131. PRStatus error=PR_SUCCESS;
  132. char buffer[PR_NETDB_BUF_SIZE];
  133. #ifdef UTEST
  134. struct hostent *he, host;
  135. #else
  136. PRHostEnt *he, host;
  137. #endif
  138. char *end_attr_pattern;
  139. if (attr_pattern == NULL) {
  140. nserrGenerate(errp, ACLERRINVAL, ACLERR4770, ACL_Program, 1,
  141. XP_GetAdminStr(DBT_lasdnsbuildInvalidAttributePattern_));
  142. return LAS_EVAL_INVALID;
  143. }
  144. context->Table = PR_NewHashTable(0,
  145. PR_HashCaseString,
  146. PR_CompareCaseStrings,
  147. PR_CompareValues,
  148. &ACLPermAllocOps,
  149. NULL);
  150. pool = pool_create();
  151. context->pool = pool;
  152. if ((!context->Table) || (!context->pool)) {
  153. nserrGenerate(errp, ACLERRNOMEM, ACLERR4700, ACL_Program, 1,
  154. XP_GetAdminStr(DBT_lasdnsbuildUnableToAllocateHashT_));
  155. return LAS_EVAL_INVALID;
  156. }
  157. end_attr_pattern = attr_pattern + strlen(attr_pattern);
  158. do {
  159. size_t maxsize = sizeof(token);
  160. /* Get a single hostname from the pattern string */
  161. delimiter = strcspn(attr_pattern, ", \t");
  162. if (delimiter >= maxsize) {
  163. delimiter = maxsize-1;
  164. }
  165. PL_strncpyz(token, attr_pattern, delimiter + 1);
  166. token[delimiter] = '\0';
  167. /* Skip any white space after the token */
  168. attr_pattern += delimiter;
  169. if (attr_pattern < end_attr_pattern) {
  170. attr_pattern += strspn(attr_pattern, ", \t");
  171. }
  172. /* If there's a wildcard, strip it off but leave the "."
  173. * Can't have aliases for a wildcard pattern.
  174. * Treat "*" as a special case. If so, go ahead and hash it.
  175. */
  176. if (token[0] == '*') {
  177. if (token[1] != '\0') {
  178. if (!PR_HashTableAdd(context->Table, pool_strdup(pool, &token[1]), (void *)-1)) {
  179. nserrGenerate(errp, ACLERRFAIL, ACLERR4710, ACL_Program, 2,
  180. XP_GetAdminStr(DBT_lasdnsbuildUnableToAddKeySN_), token);
  181. return LAS_EVAL_INVALID;
  182. }
  183. } else {
  184. if (!PR_HashTableAdd(context->Table, pool_strdup(pool, token), (void *)-1)) {
  185. nserrGenerate(errp, ACLERRFAIL, ACLERR4720, ACL_Program, 2, XP_GetAdminStr(DBT_lasdnsbuildUnableToAddKeySN_), token);
  186. return LAS_EVAL_INVALID;
  187. }
  188. }
  189. } else {
  190. /* This is a single hostname add it to the hash table */
  191. if (!PR_HashTableAdd(context->Table, pool_strdup(pool, &token[0]), (void *)-1)) {
  192. nserrGenerate(errp, ACLERRFAIL, ACLERR4730, ACL_Program, 2, XP_GetAdminStr(DBT_lasdnsbuildUnableToAddKeySN_), token);
  193. return LAS_EVAL_INVALID;
  194. }
  195. if (aliasflg) {
  196. void *iter = NULL;
  197. int addrcnt = 0;
  198. PRNetAddr *netaddr = (PRNetAddr *)PERM_CALLOC(sizeof(PRNetAddr));
  199. PRAddrInfo *infop = PR_GetAddrInfoByName(token,
  200. PR_AF_UNSPEC, (PR_AI_ADDRCONFIG|PR_AI_NOCANONNAME));
  201. if (!netaddr) {
  202. if (infop) {
  203. PR_FreeAddrInfo(infop);
  204. }
  205. return LAS_EVAL_NEED_MORE_INFO; /* hostname not known to dns? */
  206. }
  207. if (!infop) {
  208. if (netaddr) {
  209. PERM_FREE(netaddr);
  210. }
  211. return LAS_EVAL_NEED_MORE_INFO; /* hostname not known to dns? */
  212. }
  213. /* need to count the address, first */
  214. while ((iter = PR_EnumerateAddrInfo(iter, infop, 0, netaddr))) {
  215. addrcnt++;
  216. }
  217. if (0 == addrcnt) {
  218. PERM_FREE(netaddr);
  219. PR_FreeAddrInfo(infop);
  220. return LAS_EVAL_NEED_MORE_INFO; /* hostname not known to dns? */
  221. }
  222. iter = NULL; /* from the beginning */
  223. memset(netaddr, 0, sizeof(PRNetAddr));
  224. for (i = 0; i < addrcnt; i++) {
  225. iter = PR_EnumerateAddrInfo( iter, infop, 0, netaddr );
  226. if (NULL == iter) {
  227. break;
  228. }
  229. error = PR_GetHostByAddr(netaddr, buffer,
  230. PR_NETDB_BUF_SIZE, &host);
  231. if (error == PR_SUCCESS) {
  232. he = &host;
  233. } else {
  234. continue;
  235. }
  236. if (he->h_name) {
  237. /* Add it to the hash table */
  238. if (!PR_HashTableAdd(context->Table,
  239. pool_strdup(pool, he->h_name),
  240. (void *)-1)) {
  241. nserrGenerate(errp, ACLERRFAIL, ACLERR4750,
  242. ACL_Program, 2,
  243. XP_GetAdminStr(DBT_lasdnsbuildUnableToAddKeySN_),
  244. he->h_name);
  245. PERM_FREE(netaddr);
  246. PR_FreeAddrInfo(infop);
  247. return LAS_EVAL_INVALID;
  248. }
  249. }
  250. if (he->h_aliases && he->h_aliases[0]) {
  251. for (p = he->h_aliases; *p; ++p) {
  252. /* Add it to the hash table */
  253. if (!PR_HashTableAdd(context->Table,
  254. pool_strdup(pool, *p),
  255. (void *)-1)) {
  256. nserrGenerate(errp, ACLERRFAIL, ACLERR4760,
  257. ACL_Program, 2,
  258. XP_GetAdminStr(DBT_lasdnsbuildUnableToAddKeySN_),
  259. *p);
  260. PERM_FREE(netaddr);
  261. PR_FreeAddrInfo(infop);
  262. return LAS_EVAL_INVALID;
  263. }
  264. }
  265. }
  266. } /* for (i = 0; i < addrcnt; i++) */
  267. PERM_FREE(netaddr);
  268. PR_FreeAddrInfo(infop);
  269. } /* if aliasflg */
  270. } /* else - single hostname */
  271. } while ((attr_pattern != NULL) &&
  272. (attr_pattern[0] != '\0') &&
  273. (delimiter != 0));
  274. return 0;
  275. }
  276. /* LASDnsFlush
  277. * Given the address of a las_cookie for a DNS expression entry, frees up
  278. * all allocated memory for it. This includes the hash table, plus the
  279. * context structure.
  280. */
  281. void
  282. LASDnsFlush(void **las_cookie)
  283. {
  284. if (*las_cookie == NULL)
  285. return;
  286. pool_destroy(((LASDnsContext_t *)*las_cookie)->pool);
  287. PR_HashTableDestroy(((LASDnsContext_t *)*las_cookie)->Table);
  288. PERM_FREE(*las_cookie);
  289. *las_cookie = NULL;
  290. return;
  291. }
  292. /*
  293. * LASDnsEval
  294. * INPUT
  295. * attr_name The string "dns" - in lower case.
  296. * comparator CMP_OP_EQ or CMP_OP_NE only
  297. * attr_pattern A comma-separated list of DNS names
  298. * Any segment(s) in a DNS name can be wildcarded using
  299. * "*". Note that this is not a true Regular Expression
  300. * form.
  301. * *cachable Always set to ACL_INDEF_CACHE
  302. * subject Subject property list
  303. * resource Resource property list
  304. * auth_info Authentication info, if any
  305. * RETURNS
  306. * ret code The usual LAS return codes.
  307. */
  308. int LASDnsEval(NSErr_t *errp, char *attr_name, CmpOp_t comparator,
  309. char *attr_pattern, ACLCachable_t *cachable, void **LAS_cookie,
  310. PList_t subject, PList_t resource,
  311. PList_t auth_info, PList_t global_auth)
  312. {
  313. int result;
  314. int aliasflg;
  315. char *my_dns;
  316. LASDnsContext_t *context = NULL;
  317. int rv;
  318. *cachable = ACL_INDEF_CACHABLE;
  319. if (strcmp(attr_name, "dns") == 0) {
  320. /* Enable aliasflg for "dns", which allows "dns" hostname to look up
  321. * DSN hash table using the primary hostname. */
  322. aliasflg = 1;
  323. } else if (strcmp(attr_name, "dnsalias") == 0) {
  324. aliasflg = 1;
  325. } else {
  326. nserrGenerate(errp, ACLERRINVAL, ACLERR4800, ACL_Program, 2, XP_GetAdminStr(DBT_lasDnsBuildReceivedRequestForAtt_), attr_name);
  327. return LAS_EVAL_INVALID;
  328. }
  329. if ((comparator != CMP_OP_EQ) && (comparator != CMP_OP_NE)) {
  330. nserrGenerate(errp, ACLERRINVAL, ACLERR4810, ACL_Program, 2, XP_GetAdminStr(DBT_lasdnsevalIllegalComparatorDN_), comparator_string(comparator));
  331. return LAS_EVAL_INVALID;
  332. }
  333. /* If this is the first time through, build the pattern tree first. */
  334. if (*LAS_cookie == NULL) {
  335. ACL_CritEnter();
  336. if (*LAS_cookie == NULL) { /* Must check again */
  337. *LAS_cookie = context =
  338. (LASDnsContext_t *)PERM_MALLOC(sizeof(LASDnsContext_t));
  339. if (context == NULL) {
  340. nserrGenerate(errp, ACLERRNOMEM, ACLERR4820, ACL_Program, 1, XP_GetAdminStr(DBT_lasdnsevalUnableToAllocateContex_));
  341. ACL_CritExit();
  342. return LAS_EVAL_FAIL;
  343. }
  344. context->Table = NULL;
  345. if (LASDnsBuild(errp, attr_pattern, context, aliasflg) ==
  346. LAS_EVAL_INVALID) {
  347. /* Error is already printed in LASDnsBuild */
  348. ACL_CritExit();
  349. return LAS_EVAL_FAIL;
  350. }
  351. /* After this line, it is assured context->Table is not NULL. */
  352. } else {
  353. context = (LASDnsContext *) *LAS_cookie;
  354. }
  355. ACL_CritExit();
  356. } else {
  357. ACL_CritEnter();
  358. context = (LASDnsContext *) *LAS_cookie;
  359. ACL_CritExit();
  360. }
  361. /* Call the DNS attribute getter */
  362. #ifdef UTEST
  363. LASDnsGetDns(&my_dns); /* gets stuffed on return */
  364. #else
  365. rv = ACL_GetAttribute(errp, ACL_ATTR_DNS, (void **)&my_dns,
  366. subject, resource, auth_info, global_auth);
  367. if (rv != LAS_EVAL_TRUE) {
  368. if (subject || resource) {
  369. char rv_str[16];
  370. /* Don't ereport if called from ACL_CachableAclList */
  371. sprintf(rv_str, "%d", rv);
  372. nserrGenerate(errp, ACLERRINVAL, ACLERR4830, ACL_Program, 2, XP_GetAdminStr(DBT_lasdnsevalUnableToGetDnsErrorDN_), rv_str);
  373. }
  374. return LAS_EVAL_FAIL;
  375. }
  376. #endif
  377. result = LASDnsMatch(my_dns, context);
  378. if (comparator == CMP_OP_NE) {
  379. if (result == LAS_EVAL_FALSE)
  380. return LAS_EVAL_TRUE;
  381. else if (result == LAS_EVAL_TRUE)
  382. return LAS_EVAL_FALSE;
  383. }
  384. return (result);
  385. }