lasdns.cpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  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. int ipcnt = 0;
  130. char **p;
  131. pool_handle_t *pool;
  132. PRStatus error=PR_SUCCESS;
  133. char buffer[PR_NETDB_BUF_SIZE];
  134. #ifdef UTEST
  135. struct hostent *he, host;
  136. #else
  137. PRHostEnt *he, host;
  138. #endif
  139. char *end_attr_pattern;
  140. if (attr_pattern == NULL) {
  141. nserrGenerate(errp, ACLERRINVAL, ACLERR4770, ACL_Program, 1,
  142. XP_GetAdminStr(DBT_lasdnsbuildInvalidAttributePattern_));
  143. return LAS_EVAL_INVALID;
  144. }
  145. context->Table = PR_NewHashTable(0,
  146. PR_HashCaseString,
  147. PR_CompareCaseStrings,
  148. PR_CompareValues,
  149. &ACLPermAllocOps,
  150. NULL);
  151. pool = pool_create();
  152. context->pool = pool;
  153. if ((!context->Table) || (!context->pool)) {
  154. nserrGenerate(errp, ACLERRNOMEM, ACLERR4700, ACL_Program, 1,
  155. XP_GetAdminStr(DBT_lasdnsbuildUnableToAllocateHashT_));
  156. return LAS_EVAL_INVALID;
  157. }
  158. end_attr_pattern = attr_pattern + strlen(attr_pattern);
  159. do {
  160. size_t maxsize = sizeof(token);
  161. /* Get a single hostname from the pattern string */
  162. delimiter = strcspn(attr_pattern, ", \t");
  163. if (delimiter >= maxsize) {
  164. delimiter = maxsize-1;
  165. }
  166. PL_strncpyz(token, attr_pattern, delimiter + 1);
  167. token[delimiter] = '\0';
  168. /* Skip any white space after the token */
  169. attr_pattern += delimiter;
  170. if (attr_pattern < end_attr_pattern) {
  171. attr_pattern += strspn(attr_pattern, ", \t");
  172. }
  173. /* If there's a wildcard, strip it off but leave the "."
  174. * Can't have aliases for a wildcard pattern.
  175. * Treat "*" as a special case. If so, go ahead and hash it.
  176. */
  177. if (token[0] == '*') {
  178. if (token[1] != '\0') {
  179. if (!PR_HashTableAdd(context->Table, pool_strdup(pool, &token[1]), (void *)-1)) {
  180. nserrGenerate(errp, ACLERRFAIL, ACLERR4710, ACL_Program, 2,
  181. XP_GetAdminStr(DBT_lasdnsbuildUnableToAddKeySN_), token);
  182. return LAS_EVAL_INVALID;
  183. }
  184. } else {
  185. if (!PR_HashTableAdd(context->Table, pool_strdup(pool, token), (void *)-1)) {
  186. nserrGenerate(errp, ACLERRFAIL, ACLERR4720, ACL_Program, 2, XP_GetAdminStr(DBT_lasdnsbuildUnableToAddKeySN_), token);
  187. return LAS_EVAL_INVALID;
  188. }
  189. }
  190. } else {
  191. /* This is a single hostname add it to the hash table */
  192. if (!PR_HashTableAdd(context->Table, pool_strdup(pool, &token[0]), (void *)-1)) {
  193. nserrGenerate(errp, ACLERRFAIL, ACLERR4730, ACL_Program, 2, XP_GetAdminStr(DBT_lasdnsbuildUnableToAddKeySN_), token);
  194. return LAS_EVAL_INVALID;
  195. }
  196. if (aliasflg) {
  197. void *iter = NULL;
  198. int addrcnt = 0;
  199. PRNetAddr *netaddr = (PRNetAddr *)PERM_CALLOC(sizeof(PRNetAddr));
  200. PRAddrInfo *infop = PR_GetAddrInfoByName(token,
  201. PR_AF_UNSPEC, (PR_AI_ADDRCONFIG|PR_AI_NOCANONNAME));
  202. if (!netaddr) {
  203. if (infop) {
  204. PR_FreeAddrInfo(infop);
  205. }
  206. return LAS_EVAL_NEED_MORE_INFO; /* hostname not known to dns? */
  207. }
  208. if (!infop) {
  209. if (netaddr) {
  210. PERM_FREE(netaddr);
  211. }
  212. return LAS_EVAL_NEED_MORE_INFO; /* hostname not known to dns? */
  213. }
  214. /* need to count the address, first */
  215. while ((iter = PR_EnumerateAddrInfo(iter, infop, 0, netaddr))) {
  216. addrcnt++;
  217. }
  218. if (0 == addrcnt) {
  219. PERM_FREE(netaddr);
  220. PR_FreeAddrInfo(infop);
  221. return LAS_EVAL_NEED_MORE_INFO; /* hostname not known to dns? */
  222. }
  223. iter = NULL; /* from the beginning */
  224. memset(netaddr, 0, sizeof(PRNetAddr));
  225. for (i = 0; i < addrcnt; i++) {
  226. iter = PR_EnumerateAddrInfo( iter, infop, 0, netaddr );
  227. if (NULL == iter) {
  228. break;
  229. }
  230. error = PR_GetHostByAddr(netaddr, buffer,
  231. PR_NETDB_BUF_SIZE, &host);
  232. if (error == PR_SUCCESS) {
  233. he = &host;
  234. } else {
  235. continue;
  236. }
  237. if (he->h_name) {
  238. /* Add it to the hash table */
  239. if (!PR_HashTableAdd(context->Table,
  240. pool_strdup(pool, he->h_name),
  241. (void *)-1)) {
  242. nserrGenerate(errp, ACLERRFAIL, ACLERR4750,
  243. ACL_Program, 2,
  244. XP_GetAdminStr(DBT_lasdnsbuildUnableToAddKeySN_),
  245. he->h_name);
  246. PERM_FREE(netaddr);
  247. PR_FreeAddrInfo(infop);
  248. return LAS_EVAL_INVALID;
  249. }
  250. }
  251. if (he->h_aliases && he->h_aliases[0]) {
  252. for (p = he->h_aliases; *p; ++p) {
  253. /* Add it to the hash table */
  254. if (!PR_HashTableAdd(context->Table,
  255. pool_strdup(pool, *p),
  256. (void *)-1)) {
  257. nserrGenerate(errp, ACLERRFAIL, ACLERR4760,
  258. ACL_Program, 2,
  259. XP_GetAdminStr(DBT_lasdnsbuildUnableToAddKeySN_),
  260. *p);
  261. PERM_FREE(netaddr);
  262. PR_FreeAddrInfo(infop);
  263. return LAS_EVAL_INVALID;
  264. }
  265. }
  266. }
  267. } /* for (i = 0; i < addrcnt; i++) */
  268. PERM_FREE(netaddr);
  269. PR_FreeAddrInfo(infop);
  270. } /* if aliasflg */
  271. } /* else - single hostname */
  272. } while ((attr_pattern != NULL) &&
  273. (attr_pattern[0] != '\0') &&
  274. (delimiter != 0));
  275. return 0;
  276. }
  277. /* LASDnsFlush
  278. * Given the address of a las_cookie for a DNS expression entry, frees up
  279. * all allocated memory for it. This includes the hash table, plus the
  280. * context structure.
  281. */
  282. void
  283. LASDnsFlush(void **las_cookie)
  284. {
  285. if (*las_cookie == NULL)
  286. return;
  287. pool_destroy(((LASDnsContext_t *)*las_cookie)->pool);
  288. PR_HashTableDestroy(((LASDnsContext_t *)*las_cookie)->Table);
  289. PERM_FREE(*las_cookie);
  290. *las_cookie = NULL;
  291. return;
  292. }
  293. /*
  294. * LASDnsEval
  295. * INPUT
  296. * attr_name The string "dns" - in lower case.
  297. * comparator CMP_OP_EQ or CMP_OP_NE only
  298. * attr_pattern A comma-separated list of DNS names
  299. * Any segment(s) in a DNS name can be wildcarded using
  300. * "*". Note that this is not a true Regular Expression
  301. * form.
  302. * *cachable Always set to ACL_INDEF_CACHE
  303. * subject Subject property list
  304. * resource Resource property list
  305. * auth_info Authentication info, if any
  306. * RETURNS
  307. * ret code The usual LAS return codes.
  308. */
  309. int LASDnsEval(NSErr_t *errp, char *attr_name, CmpOp_t comparator,
  310. char *attr_pattern, ACLCachable_t *cachable, void **LAS_cookie,
  311. PList_t subject, PList_t resource,
  312. PList_t auth_info, PList_t global_auth)
  313. {
  314. int result;
  315. int aliasflg;
  316. char *my_dns;
  317. LASDnsContext_t *context = NULL;
  318. int rv;
  319. *cachable = ACL_INDEF_CACHABLE;
  320. if (strcmp(attr_name, "dns") == 0) {
  321. /* Enable aliasflg for "dns", which allows "dns" hostname to look up
  322. * DSN hash table using the primary hostname. */
  323. aliasflg = 1;
  324. } else if (strcmp(attr_name, "dnsalias") == 0) {
  325. aliasflg = 1;
  326. } else {
  327. nserrGenerate(errp, ACLERRINVAL, ACLERR4800, ACL_Program, 2, XP_GetAdminStr(DBT_lasDnsBuildReceivedRequestForAtt_), attr_name);
  328. return LAS_EVAL_INVALID;
  329. }
  330. if ((comparator != CMP_OP_EQ) && (comparator != CMP_OP_NE)) {
  331. nserrGenerate(errp, ACLERRINVAL, ACLERR4810, ACL_Program, 2, XP_GetAdminStr(DBT_lasdnsevalIllegalComparatorDN_), comparator_string(comparator));
  332. return LAS_EVAL_INVALID;
  333. }
  334. /* If this is the first time through, build the pattern tree first. */
  335. if (*LAS_cookie == NULL) {
  336. ACL_CritEnter();
  337. if (*LAS_cookie == NULL) { /* Must check again */
  338. *LAS_cookie = context =
  339. (LASDnsContext_t *)PERM_MALLOC(sizeof(LASDnsContext_t));
  340. if (context == NULL) {
  341. nserrGenerate(errp, ACLERRNOMEM, ACLERR4820, ACL_Program, 1, XP_GetAdminStr(DBT_lasdnsevalUnableToAllocateContex_));
  342. ACL_CritExit();
  343. return LAS_EVAL_FAIL;
  344. }
  345. context->Table = NULL;
  346. if (LASDnsBuild(errp, attr_pattern, context, aliasflg) ==
  347. LAS_EVAL_INVALID) {
  348. /* Error is already printed in LASDnsBuild */
  349. ACL_CritExit();
  350. return LAS_EVAL_FAIL;
  351. }
  352. /* After this line, it is assured context->Table is not NULL. */
  353. } else {
  354. context = (LASDnsContext *) *LAS_cookie;
  355. }
  356. ACL_CritExit();
  357. } else {
  358. ACL_CritEnter();
  359. context = (LASDnsContext *) *LAS_cookie;
  360. ACL_CritExit();
  361. }
  362. /* Call the DNS attribute getter */
  363. #ifdef UTEST
  364. LASDnsGetDns(&my_dns); /* gets stuffed on return */
  365. #else
  366. rv = ACL_GetAttribute(errp, ACL_ATTR_DNS, (void **)&my_dns,
  367. subject, resource, auth_info, global_auth);
  368. if (rv != LAS_EVAL_TRUE) {
  369. if (subject || resource) {
  370. char rv_str[16];
  371. /* Don't ereport if called from ACL_CachableAclList */
  372. sprintf(rv_str, "%d", rv);
  373. nserrGenerate(errp, ACLERRINVAL, ACLERR4830, ACL_Program, 2, XP_GetAdminStr(DBT_lasdnsevalUnableToGetDnsErrorDN_), rv_str);
  374. }
  375. return LAS_EVAL_FAIL;
  376. }
  377. #endif
  378. result = LASDnsMatch(my_dns, context);
  379. if (comparator == CMP_OP_NE) {
  380. if (result == LAS_EVAL_FALSE)
  381. return LAS_EVAL_TRUE;
  382. else if (result == LAS_EVAL_TRUE)
  383. return LAS_EVAL_FALSE;
  384. }
  385. return (result);
  386. }