acl.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 1999 - 2012, Digium, Inc.
  5. *
  6. * Mark Spencer <markster@digium.com>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. */
  18. /*! \file
  19. *
  20. * \brief Various sorts of access control
  21. *
  22. * \author Mark Spencer <markster@digium.com>
  23. */
  24. /*** MODULEINFO
  25. <support_level>core</support_level>
  26. ***/
  27. #include "asterisk.h"
  28. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  29. #include "asterisk/network.h"
  30. #if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__Darwin__)
  31. #include <fcntl.h>
  32. #include <net/route.h>
  33. #endif
  34. #if defined(SOLARIS)
  35. #include <sys/sockio.h>
  36. #include <net/if.h>
  37. #elif defined(HAVE_GETIFADDRS)
  38. #include <ifaddrs.h>
  39. #endif
  40. #include "asterisk/acl.h"
  41. #include "asterisk/channel.h"
  42. #include "asterisk/utils.h"
  43. #include "asterisk/lock.h"
  44. #include "asterisk/srv.h"
  45. #if (!defined(SOLARIS) && !defined(HAVE_GETIFADDRS))
  46. static int get_local_address(struct ast_sockaddr *ourip)
  47. {
  48. return -1;
  49. }
  50. #else
  51. static void score_address(const struct sockaddr_in *sin, struct in_addr *best_addr, int *best_score)
  52. {
  53. const char *address;
  54. int score;
  55. address = ast_inet_ntoa(sin->sin_addr);
  56. /* RFC 1700 alias for the local network */
  57. if (address[0] == '0') {
  58. score = -25;
  59. /* RFC 1700 localnet */
  60. } else if (strncmp(address, "127", 3) == 0) {
  61. score = -20;
  62. /* RFC 1918 non-public address space */
  63. } else if (strncmp(address, "10.", 3) == 0) {
  64. score = -5;
  65. /* RFC 1918 non-public address space */
  66. } else if (strncmp(address, "172", 3) == 0) {
  67. /* 172.16.0.0 - 172.19.255.255, but not 172.160.0.0 - 172.169.255.255 */
  68. if (address[4] == '1' && address[5] >= '6' && address[6] == '.') {
  69. score = -5;
  70. /* 172.20.0.0 - 172.29.255.255, but not 172.200.0.0 - 172.255.255.255 nor 172.2.0.0 - 172.2.255.255 */
  71. } else if (address[4] == '2' && address[6] == '.') {
  72. score = -5;
  73. /* 172.30.0.0 - 172.31.255.255, but not 172.3.0.0 - 172.3.255.255 */
  74. } else if (address[4] == '3' && (address[5] == '0' || address[5] == '1')) {
  75. score = -5;
  76. /* All other 172 addresses are public */
  77. } else {
  78. score = 0;
  79. }
  80. /* RFC 2544 Benchmark test range (198.18.0.0 - 198.19.255.255, but not 198.180.0.0 - 198.199.255.255) */
  81. } else if (strncmp(address, "198.1", 5) == 0 && address[5] >= '8' && address[6] == '.') {
  82. score = -10;
  83. /* RFC 1918 non-public address space */
  84. } else if (strncmp(address, "192.168", 7) == 0) {
  85. score = -5;
  86. /* RFC 3330 Zeroconf network */
  87. } else if (strncmp(address, "169.254", 7) == 0) {
  88. /*!\note Better score than a test network, but not quite as good as RFC 1918
  89. * address space. The reason is that some Linux distributions automatically
  90. * configure a Zeroconf address before trying DHCP, so we want to prefer a
  91. * DHCP lease to a Zeroconf address.
  92. */
  93. score = -10;
  94. /* RFC 3330 Test network */
  95. } else if (strncmp(address, "192.0.2.", 8) == 0) {
  96. score = -15;
  97. /* Every other address should be publically routable */
  98. } else {
  99. score = 0;
  100. }
  101. if (score > *best_score) {
  102. *best_score = score;
  103. memcpy(best_addr, &sin->sin_addr, sizeof(*best_addr));
  104. }
  105. }
  106. static int get_local_address(struct ast_sockaddr *ourip)
  107. {
  108. int s, res = -1;
  109. #ifdef SOLARIS
  110. struct lifreq *ifr = NULL;
  111. struct lifnum ifn;
  112. struct lifconf ifc;
  113. struct sockaddr_in *sa;
  114. char *buf = NULL;
  115. int bufsz, x;
  116. #endif /* SOLARIS */
  117. #if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__linux__) || defined(__Darwin__) || defined(__GLIBC__)
  118. struct ifaddrs *ifap, *ifaphead;
  119. int rtnerr;
  120. const struct sockaddr_in *sin;
  121. #endif /* BSD_OR_LINUX */
  122. struct in_addr best_addr;
  123. int best_score = -100;
  124. memset(&best_addr, 0, sizeof(best_addr));
  125. #if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__linux__) || defined(__Darwin__) || defined(__GLIBC__)
  126. rtnerr = getifaddrs(&ifaphead);
  127. if (rtnerr) {
  128. perror(NULL);
  129. return -1;
  130. }
  131. #endif /* BSD_OR_LINUX */
  132. s = socket(AF_INET, SOCK_STREAM, 0);
  133. if (s > 0) {
  134. #if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__linux__) || defined(__Darwin__) || defined(__GLIBC__)
  135. for (ifap = ifaphead; ifap; ifap = ifap->ifa_next) {
  136. if (ifap->ifa_addr && ifap->ifa_addr->sa_family == AF_INET) {
  137. sin = (const struct sockaddr_in *) ifap->ifa_addr;
  138. score_address(sin, &best_addr, &best_score);
  139. res = 0;
  140. if (best_score == 0) {
  141. break;
  142. }
  143. }
  144. }
  145. #endif /* BSD_OR_LINUX */
  146. /* There is no reason whatsoever that this shouldn't work on Linux or BSD also. */
  147. #ifdef SOLARIS
  148. /* Get a count of interfaces on the machine */
  149. ifn.lifn_family = AF_INET;
  150. ifn.lifn_flags = 0;
  151. ifn.lifn_count = 0;
  152. if (ioctl(s, SIOCGLIFNUM, &ifn) < 0) {
  153. close(s);
  154. return -1;
  155. }
  156. bufsz = ifn.lifn_count * sizeof(struct lifreq);
  157. if (!(buf = malloc(bufsz))) {
  158. close(s);
  159. return -1;
  160. }
  161. memset(buf, 0, bufsz);
  162. /* Get a list of interfaces on the machine */
  163. ifc.lifc_len = bufsz;
  164. ifc.lifc_buf = buf;
  165. ifc.lifc_family = AF_INET;
  166. ifc.lifc_flags = 0;
  167. if (ioctl(s, SIOCGLIFCONF, &ifc) < 0) {
  168. close(s);
  169. free(buf);
  170. return -1;
  171. }
  172. for (ifr = ifc.lifc_req, x = 0; x < ifn.lifn_count; ifr++, x++) {
  173. sa = (struct sockaddr_in *)&(ifr->lifr_addr);
  174. score_address(sa, &best_addr, &best_score);
  175. res = 0;
  176. if (best_score == 0) {
  177. break;
  178. }
  179. }
  180. free(buf);
  181. #endif /* SOLARIS */
  182. close(s);
  183. }
  184. #if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__linux__) || defined(__Darwin__)
  185. freeifaddrs(ifaphead);
  186. #endif /* BSD_OR_LINUX */
  187. if (res == 0 && ourip) {
  188. ast_sockaddr_setnull(ourip);
  189. ourip->ss.ss_family = AF_INET;
  190. ((struct sockaddr_in *)&ourip->ss)->sin_addr = best_addr;
  191. }
  192. return res;
  193. }
  194. #endif /* HAVE_GETIFADDRS */
  195. /* Free HA structure */
  196. void ast_free_ha(struct ast_ha *ha)
  197. {
  198. struct ast_ha *hal;
  199. while (ha) {
  200. hal = ha;
  201. ha = ha->next;
  202. ast_free(hal);
  203. }
  204. }
  205. /* Free ACL list structure */
  206. struct ast_acl_list *ast_free_acl_list(struct ast_acl_list *acl_list)
  207. {
  208. struct ast_acl *current;
  209. if (!acl_list) {
  210. return NULL;
  211. }
  212. AST_LIST_LOCK(acl_list);
  213. while ((current = AST_LIST_REMOVE_HEAD(acl_list, list))) {
  214. ast_free_ha(current->acl);
  215. ast_free(current);
  216. }
  217. AST_LIST_UNLOCK(acl_list);
  218. AST_LIST_HEAD_DESTROY(acl_list);
  219. ast_free(acl_list);
  220. return NULL;
  221. }
  222. /* Copy HA structure */
  223. void ast_copy_ha(const struct ast_ha *from, struct ast_ha *to)
  224. {
  225. ast_sockaddr_copy(&to->addr, &from->addr);
  226. ast_sockaddr_copy(&to->netmask, &from->netmask);
  227. to->sense = from->sense;
  228. }
  229. /* Create duplicate of ha structure */
  230. static struct ast_ha *ast_duplicate_ha(struct ast_ha *original)
  231. {
  232. struct ast_ha *new_ha;
  233. if ((new_ha = ast_calloc(1, sizeof(*new_ha)))) {
  234. /* Copy from original to new object */
  235. ast_copy_ha(original, new_ha);
  236. }
  237. return new_ha;
  238. }
  239. /* Create duplicate HA link list */
  240. /* Used in chan_sip2 templates */
  241. struct ast_ha *ast_duplicate_ha_list(struct ast_ha *original)
  242. {
  243. struct ast_ha *start = original;
  244. struct ast_ha *ret = NULL;
  245. struct ast_ha *current, *prev = NULL;
  246. while (start) {
  247. current = ast_duplicate_ha(start); /* Create copy of this object */
  248. if (prev) {
  249. prev->next = current; /* Link previous to this object */
  250. }
  251. if (!ret) {
  252. ret = current; /* Save starting point */
  253. }
  254. start = start->next; /* Go to next object */
  255. prev = current; /* Save pointer to this object */
  256. }
  257. return ret; /* Return start of list */
  258. }
  259. static int acl_new(struct ast_acl **pointer, const char *name) {
  260. struct ast_acl *acl;
  261. if (!(acl = ast_calloc(1, sizeof(*acl)))) {
  262. return 1;
  263. }
  264. *pointer = acl;
  265. ast_copy_string(acl->name, name, ACL_NAME_LENGTH);
  266. return 0;
  267. }
  268. struct ast_acl_list *ast_duplicate_acl_list(struct ast_acl_list *original)
  269. {
  270. struct ast_acl_list *clone;
  271. struct ast_acl *current_cursor;
  272. struct ast_acl *current_clone;
  273. /* Early return if we receive a duplication request for a NULL original. */
  274. if (!original) {
  275. return NULL;
  276. }
  277. if (!(clone = ast_calloc(1, sizeof(*clone)))) {
  278. ast_log(LOG_WARNING, "Failed to allocate ast_acl_list struct while cloning an ACL\n");
  279. return NULL;
  280. }
  281. AST_LIST_HEAD_INIT(clone);
  282. AST_LIST_LOCK(original);
  283. AST_LIST_TRAVERSE(original, current_cursor, list) {
  284. if ((acl_new(&current_clone, current_cursor->name))) {
  285. ast_log(LOG_WARNING, "Failed to allocate ast_acl struct while cloning an ACL.");
  286. continue;
  287. }
  288. /* Copy data from original ACL to clone ACL */
  289. current_clone->acl = ast_duplicate_ha_list(current_cursor->acl);
  290. current_clone->is_invalid = current_cursor->is_invalid;
  291. current_clone->is_realtime = current_cursor->is_realtime;
  292. AST_LIST_INSERT_TAIL(clone, current_clone, list);
  293. }
  294. AST_LIST_UNLOCK(original);
  295. return clone;
  296. }
  297. /*!
  298. * \brief
  299. * Parse a netmask in CIDR notation
  300. *
  301. * \details
  302. * For a mask of an IPv4 address, this should be a number between 0 and 32. For
  303. * a mask of an IPv6 address, this should be a number between 0 and 128. This
  304. * function creates an IPv6 ast_sockaddr from the given netmask. For masks of
  305. * IPv4 addresses, this is accomplished by adding 96 to the original netmask.
  306. *
  307. * \param[out] addr The ast_sockaddr produced from the CIDR netmask
  308. * \param is_v4 Tells if the address we are masking is IPv4.
  309. * \param mask_str The CIDR mask to convert
  310. * \retval -1 Failure
  311. * \retval 0 Success
  312. */
  313. static int parse_cidr_mask(struct ast_sockaddr *addr, int is_v4, const char *mask_str)
  314. {
  315. int mask;
  316. if (sscanf(mask_str, "%30d", &mask) != 1) {
  317. return -1;
  318. }
  319. if (is_v4) {
  320. struct sockaddr_in sin;
  321. if (mask < 0 || mask > 32) {
  322. return -1;
  323. }
  324. memset(&sin, 0, sizeof(sin));
  325. sin.sin_family = AF_INET;
  326. /* If mask is 0, then we already have the
  327. * appropriate all 0s address in sin from
  328. * the above memset.
  329. */
  330. if (mask != 0) {
  331. sin.sin_addr.s_addr = htonl(0xFFFFFFFF << (32 - mask));
  332. }
  333. ast_sockaddr_from_sin(addr, &sin);
  334. } else {
  335. struct sockaddr_in6 sin6;
  336. int i;
  337. if (mask < 0 || mask > 128) {
  338. return -1;
  339. }
  340. memset(&sin6, 0, sizeof(sin6));
  341. sin6.sin6_family = AF_INET6;
  342. for (i = 0; i < 4; ++i) {
  343. /* Once mask reaches 0, we don't have
  344. * to explicitly set anything anymore
  345. * since sin6 was zeroed out already
  346. */
  347. if (mask > 0) {
  348. V6_WORD(&sin6, i) = htonl(0xFFFFFFFF << (mask < 32 ? (32 - mask) : 0));
  349. mask -= mask < 32 ? mask : 32;
  350. }
  351. }
  352. memcpy(&addr->ss, &sin6, sizeof(sin6));
  353. addr->len = sizeof(sin6);
  354. }
  355. return 0;
  356. }
  357. void ast_append_acl(const char *sense, const char *stuff, struct ast_acl_list **path, int *error, int *named_acl_flag)
  358. {
  359. struct ast_acl *acl = NULL;
  360. struct ast_acl *current;
  361. struct ast_acl_list *working_list;
  362. char *tmp, *list;
  363. /* If the ACL list is currently uninitialized, it must be initialized. */
  364. if (*path == NULL) {
  365. struct ast_acl_list *list;
  366. list = ast_calloc(1, sizeof(*list));
  367. if (!list) {
  368. /* Allocation Error */
  369. if (error) {
  370. *error = 1;
  371. }
  372. return;
  373. }
  374. AST_LIST_HEAD_INIT(list);
  375. *path = list;
  376. }
  377. working_list = *path;
  378. AST_LIST_LOCK(working_list);
  379. /* First we need to determine if we will need to add a new ACL node or if we can use an existing one. */
  380. if (strncasecmp(sense, "a", 1)) {
  381. /* The first element in the path should be the unnamed, base ACL. If that's the case, we use it. If not,
  382. * we have to make one and link it up appropriately. */
  383. current = AST_LIST_FIRST(working_list);
  384. if (!current || !ast_strlen_zero(current->name)) {
  385. if (acl_new(&acl, "")) {
  386. if (error) {
  387. *error = 1;
  388. }
  389. }
  390. // Need to INSERT the ACL at the head here.
  391. AST_LIST_INSERT_HEAD(working_list, acl, list);
  392. } else {
  393. /* If the first element was already the unnamed base ACL, we just use that one. */
  394. acl = current;
  395. }
  396. /* With the proper ACL set for modification, we can just pass this off to the ast_ha append function. */
  397. acl->acl = ast_append_ha(sense, stuff, acl->acl, error);
  398. AST_LIST_UNLOCK(working_list);
  399. return;
  400. }
  401. /* We are in ACL append mode, so we know we'll be adding one or more named ACLs. */
  402. list = ast_strdupa(stuff);
  403. while ((tmp = strsep(&list, ","))) {
  404. struct ast_ha *named_ha;
  405. int already_included = 0;
  406. /* Remove leading whitespace from the string in case the user put spaces between items */
  407. tmp = ast_skip_blanks(tmp);
  408. /* The first step is to check for a duplicate */
  409. AST_LIST_TRAVERSE(working_list, current, list) {
  410. if (!strcasecmp(current->name, tmp)) { /* ACL= */
  411. /* Inclusion of the same ACL multiple times isn't a catastrophic error, but it will raise the error flag and skip the entry. */
  412. ast_log(LOG_ERROR, "Named ACL '%s' is already included in the ast_acl container.", tmp);
  413. if (error) {
  414. *error = 1;
  415. }
  416. already_included = 1;
  417. break;
  418. }
  419. }
  420. if (already_included) {
  421. continue;
  422. }
  423. if (acl_new(&acl, tmp)) {
  424. /* This is a catastrophic allocation error and we'll return immediately if this happens. */
  425. if (error) {
  426. *error = 1;
  427. }
  428. AST_LIST_UNLOCK(working_list);
  429. return;
  430. }
  431. /* Attempt to grab the Named ACL we are looking for. */
  432. named_ha = ast_named_acl_find(tmp, &acl->is_realtime, &acl->is_invalid);
  433. /* Set the ACL's ast_ha to the duplicated named ACL retrieved above. */
  434. acl->acl = named_ha;
  435. /* Raise the named_acl_flag since we are adding a named ACL to the ACL container. */
  436. if (named_acl_flag) {
  437. *named_acl_flag = 1;
  438. }
  439. /* Now insert the new ACL at the end of the list. */
  440. AST_LIST_INSERT_TAIL(working_list, acl, list);
  441. }
  442. AST_LIST_UNLOCK(working_list);
  443. }
  444. int ast_acl_list_is_empty(struct ast_acl_list *acl_list)
  445. {
  446. struct ast_acl *head;
  447. if (!acl_list) {
  448. return 1;
  449. }
  450. AST_LIST_LOCK(acl_list);
  451. head = AST_LIST_FIRST(acl_list);
  452. AST_LIST_UNLOCK(acl_list);
  453. if (head) {
  454. return 0;
  455. }
  456. return 1;
  457. }
  458. struct ast_ha *ast_append_ha(const char *sense, const char *stuff, struct ast_ha *path, int *error)
  459. {
  460. struct ast_ha *ha;
  461. struct ast_ha *prev = NULL;
  462. struct ast_ha *ret;
  463. char *tmp, *list = ast_strdupa(stuff);
  464. char *address = NULL, *mask = NULL;
  465. int addr_is_v4;
  466. int allowing = strncasecmp(sense, "p", 1) ? AST_SENSE_DENY : AST_SENSE_ALLOW;
  467. const char *parsed_addr, *parsed_mask;
  468. ret = path;
  469. while (path) {
  470. prev = path;
  471. path = path->next;
  472. }
  473. while ((tmp = strsep(&list, ","))) {
  474. if (!(ha = ast_calloc(1, sizeof(*ha)))) {
  475. if (error) {
  476. *error = 1;
  477. }
  478. return ret;
  479. }
  480. address = strsep(&tmp, "/");
  481. if (!address) {
  482. address = tmp;
  483. } else {
  484. mask = tmp;
  485. }
  486. if (*address == '!') {
  487. ha->sense = (allowing == AST_SENSE_DENY) ? AST_SENSE_ALLOW : AST_SENSE_DENY;
  488. address++;
  489. } else {
  490. ha->sense = allowing;
  491. }
  492. if (!ast_sockaddr_parse(&ha->addr, address, PARSE_PORT_FORBID)) {
  493. ast_log(LOG_WARNING, "Invalid IP address: %s\n", address);
  494. ast_free_ha(ha);
  495. if (error) {
  496. *error = 1;
  497. }
  498. return ret;
  499. }
  500. /* If someone specifies an IPv4-mapped IPv6 address,
  501. * we just convert this to an IPv4 ACL
  502. */
  503. if (ast_sockaddr_ipv4_mapped(&ha->addr, &ha->addr)) {
  504. ast_log(LOG_NOTICE, "IPv4-mapped ACL network address specified. "
  505. "Converting to an IPv4 ACL network address.\n");
  506. }
  507. addr_is_v4 = ast_sockaddr_is_ipv4(&ha->addr);
  508. if (!mask) {
  509. parse_cidr_mask(&ha->netmask, addr_is_v4, addr_is_v4 ? "32" : "128");
  510. } else if (strchr(mask, ':') || strchr(mask, '.')) {
  511. int mask_is_v4;
  512. /* Mask is of x.x.x.x or x:x:x:x:x:x:x:x variety */
  513. if (!ast_sockaddr_parse(&ha->netmask, mask, PARSE_PORT_FORBID)) {
  514. ast_log(LOG_WARNING, "Invalid netmask: %s\n", mask);
  515. ast_free_ha(ha);
  516. if (error) {
  517. *error = 1;
  518. }
  519. return ret;
  520. }
  521. /* If someone specifies an IPv4-mapped IPv6 netmask,
  522. * we just convert this to an IPv4 ACL
  523. */
  524. if (ast_sockaddr_ipv4_mapped(&ha->netmask, &ha->netmask)) {
  525. ast_log(LOG_NOTICE, "IPv4-mapped ACL netmask specified. "
  526. "Converting to an IPv4 ACL netmask.\n");
  527. }
  528. mask_is_v4 = ast_sockaddr_is_ipv4(&ha->netmask);
  529. if (addr_is_v4 ^ mask_is_v4) {
  530. ast_log(LOG_WARNING, "Address and mask are not using same address scheme.\n");
  531. ast_free_ha(ha);
  532. if (error) {
  533. *error = 1;
  534. }
  535. return ret;
  536. }
  537. } else if (parse_cidr_mask(&ha->netmask, addr_is_v4, mask)) {
  538. ast_log(LOG_WARNING, "Invalid CIDR netmask: %s\n", mask);
  539. ast_free_ha(ha);
  540. if (error) {
  541. *error = 1;
  542. }
  543. return ret;
  544. }
  545. if (ast_sockaddr_apply_netmask(&ha->addr, &ha->netmask, &ha->addr)) {
  546. /* This shouldn't happen because ast_sockaddr_parse would
  547. * have failed much earlier on an unsupported address scheme
  548. */
  549. char *failmask = ast_strdupa(ast_sockaddr_stringify(&ha->netmask));
  550. char *failaddr = ast_strdupa(ast_sockaddr_stringify(&ha->addr));
  551. ast_log(LOG_WARNING, "Unable to apply netmask %s to address %s\n", failmask, failaddr);
  552. ast_free_ha(ha);
  553. if (error) {
  554. *error = 1;
  555. }
  556. return ret;
  557. }
  558. if (prev) {
  559. prev->next = ha;
  560. } else {
  561. ret = ha;
  562. }
  563. prev = ha;
  564. parsed_addr = ast_strdupa(ast_sockaddr_stringify(&ha->addr));
  565. parsed_mask = ast_strdupa(ast_sockaddr_stringify(&ha->netmask));
  566. ast_debug(3, "%s/%s sense %u appended to ACL\n", parsed_addr, parsed_mask, ha->sense);
  567. }
  568. return ret;
  569. }
  570. void ast_ha_join(const struct ast_ha *ha, struct ast_str **buf)
  571. {
  572. for (; ha; ha = ha->next) {
  573. const char *addr = ast_strdupa(ast_sockaddr_stringify_addr(&ha->addr));
  574. ast_str_append(buf, 0, "%s%s/%s",
  575. ha->sense == AST_SENSE_ALLOW ? "!" : "",
  576. addr, ast_sockaddr_stringify_addr(&ha->netmask));
  577. if (ha->next) {
  578. ast_str_append(buf, 0, ",");
  579. }
  580. }
  581. }
  582. void ast_ha_join_cidr(const struct ast_ha *ha, struct ast_str **buf)
  583. {
  584. for (; ha; ha = ha->next) {
  585. const char *addr = ast_sockaddr_stringify_addr(&ha->addr);
  586. ast_str_append(buf, 0, "%s%s/%d",
  587. ha->sense == AST_SENSE_ALLOW ? "!" : "",
  588. addr, ast_sockaddr_cidr_bits(&ha->netmask));
  589. if (ha->next) {
  590. ast_str_append(buf, 0, ",");
  591. }
  592. }
  593. }
  594. enum ast_acl_sense ast_apply_acl(struct ast_acl_list *acl_list, const struct ast_sockaddr *addr, const char *purpose)
  595. {
  596. struct ast_acl *acl;
  597. /* If the list is NULL, there are no rules, so we'll allow automatically. */
  598. if (!acl_list) {
  599. return AST_SENSE_ALLOW;
  600. }
  601. AST_LIST_LOCK(acl_list);
  602. AST_LIST_TRAVERSE(acl_list, acl, list) {
  603. if (acl->is_invalid) {
  604. /* In this case, the baseline ACL shouldn't ever trigger this, but if that somehow happens, it'll still be shown. */
  605. ast_log(LOG_WARNING, "%sRejecting '%s' due to use of an invalid ACL '%s'.\n", purpose ? purpose : "", ast_sockaddr_stringify_addr(addr),
  606. ast_strlen_zero(acl->name) ? "(BASELINE)" : acl->name);
  607. AST_LIST_UNLOCK(acl_list);
  608. return AST_SENSE_DENY;
  609. }
  610. if (acl->acl) {
  611. if (ast_apply_ha(acl->acl, addr) == AST_SENSE_DENY) {
  612. ast_log(LOG_NOTICE, "%sRejecting '%s' due to a failure to pass ACL '%s'\n", purpose ? purpose : "", ast_sockaddr_stringify_addr(addr),
  613. ast_strlen_zero(acl->name) ? "(BASELINE)" : acl->name);
  614. AST_LIST_UNLOCK(acl_list);
  615. return AST_SENSE_DENY;
  616. }
  617. }
  618. }
  619. AST_LIST_UNLOCK(acl_list);
  620. return AST_SENSE_ALLOW;
  621. }
  622. enum ast_acl_sense ast_apply_ha(const struct ast_ha *ha, const struct ast_sockaddr *addr)
  623. {
  624. /* Start optimistic */
  625. enum ast_acl_sense res = AST_SENSE_ALLOW;
  626. const struct ast_ha *current_ha;
  627. for (current_ha = ha; current_ha; current_ha = current_ha->next) {
  628. struct ast_sockaddr result;
  629. struct ast_sockaddr mapped_addr;
  630. const struct ast_sockaddr *addr_to_use;
  631. #if 0 /* debugging code */
  632. char iabuf[INET_ADDRSTRLEN];
  633. char iabuf2[INET_ADDRSTRLEN];
  634. /* DEBUG */
  635. ast_copy_string(iabuf, ast_inet_ntoa(sin->sin_addr), sizeof(iabuf));
  636. ast_copy_string(iabuf2, ast_inet_ntoa(ha->netaddr), sizeof(iabuf2));
  637. ast_debug(1, "##### Testing %s with %s\n", iabuf, iabuf2);
  638. #endif
  639. if (ast_sockaddr_is_ipv4(&current_ha->addr)) {
  640. if (ast_sockaddr_is_ipv6(addr)) {
  641. if (ast_sockaddr_is_ipv4_mapped(addr)) {
  642. /* IPv4 ACLs apply to IPv4-mapped addresses */
  643. if (!ast_sockaddr_ipv4_mapped(addr, &mapped_addr)) {
  644. ast_log(LOG_ERROR, "%s provided to ast_sockaddr_ipv4_mapped could not be converted. That shouldn't be possible.\n",
  645. ast_sockaddr_stringify(addr));
  646. continue;
  647. }
  648. addr_to_use = &mapped_addr;
  649. } else {
  650. /* An IPv4 ACL does not apply to an IPv6 address */
  651. continue;
  652. }
  653. } else {
  654. /* Address is IPv4 and ACL is IPv4. No biggie */
  655. addr_to_use = addr;
  656. }
  657. } else {
  658. if (ast_sockaddr_is_ipv6(addr) && !ast_sockaddr_is_ipv4_mapped(addr)) {
  659. addr_to_use = addr;
  660. } else {
  661. /* Address is IPv4 or IPv4 mapped but ACL is IPv6. Skip */
  662. continue;
  663. }
  664. }
  665. /* For each rule, if this address and the netmask = the net address
  666. apply the current rule */
  667. if (ast_sockaddr_apply_netmask(addr_to_use, &current_ha->netmask, &result)) {
  668. /* Unlikely to happen since we know the address to be IPv4 or IPv6 */
  669. continue;
  670. }
  671. if (!ast_sockaddr_cmp_addr(&result, &current_ha->addr)) {
  672. res = current_ha->sense;
  673. }
  674. }
  675. return res;
  676. }
  677. static int resolve_first(struct ast_sockaddr *addr, const char *name, int flag,
  678. int family)
  679. {
  680. struct ast_sockaddr *addrs;
  681. int addrs_cnt;
  682. addrs_cnt = ast_sockaddr_resolve(&addrs, name, flag, family);
  683. if (addrs_cnt > 0) {
  684. if (addrs_cnt > 1) {
  685. ast_debug(1, "Multiple addresses. Using the first only\n");
  686. }
  687. ast_sockaddr_copy(addr, &addrs[0]);
  688. ast_free(addrs);
  689. } else {
  690. ast_log(LOG_WARNING, "Unable to lookup '%s'\n", name);
  691. return -1;
  692. }
  693. return 0;
  694. }
  695. int ast_get_ip_or_srv(struct ast_sockaddr *addr, const char *hostname, const char *service)
  696. {
  697. char srv[256];
  698. char host[256];
  699. int srv_ret = 0;
  700. int tportno;
  701. if (service) {
  702. snprintf(srv, sizeof(srv), "%s.%s", service, hostname);
  703. if ((srv_ret = ast_get_srv(NULL, host, sizeof(host), &tportno, srv)) > 0) {
  704. hostname = host;
  705. }
  706. }
  707. if (resolve_first(addr, hostname, PARSE_PORT_FORBID, addr->ss.ss_family) != 0) {
  708. return -1;
  709. }
  710. if (srv_ret > 0) {
  711. ast_sockaddr_set_port(addr, tportno);
  712. }
  713. return 0;
  714. }
  715. struct dscp_codepoint {
  716. char *name;
  717. unsigned int space;
  718. };
  719. /* IANA registered DSCP codepoints */
  720. static const struct dscp_codepoint dscp_pool1[] = {
  721. { "CS0", 0x00 },
  722. { "CS1", 0x08 },
  723. { "CS2", 0x10 },
  724. { "CS3", 0x18 },
  725. { "CS4", 0x20 },
  726. { "CS5", 0x28 },
  727. { "CS6", 0x30 },
  728. { "CS7", 0x38 },
  729. { "AF11", 0x0A },
  730. { "AF12", 0x0C },
  731. { "AF13", 0x0E },
  732. { "AF21", 0x12 },
  733. { "AF22", 0x14 },
  734. { "AF23", 0x16 },
  735. { "AF31", 0x1A },
  736. { "AF32", 0x1C },
  737. { "AF33", 0x1E },
  738. { "AF41", 0x22 },
  739. { "AF42", 0x24 },
  740. { "AF43", 0x26 },
  741. { "EF", 0x2E },
  742. };
  743. int ast_str2cos(const char *value, unsigned int *cos)
  744. {
  745. int fval;
  746. if (sscanf(value, "%30d", &fval) == 1) {
  747. if (fval < 8) {
  748. *cos = fval;
  749. return 0;
  750. }
  751. }
  752. return -1;
  753. }
  754. int ast_str2tos(const char *value, unsigned int *tos)
  755. {
  756. int fval;
  757. unsigned int x;
  758. if (sscanf(value, "%30i", &fval) == 1) {
  759. *tos = fval & 0xFF;
  760. return 0;
  761. }
  762. for (x = 0; x < ARRAY_LEN(dscp_pool1); x++) {
  763. if (!strcasecmp(value, dscp_pool1[x].name)) {
  764. *tos = dscp_pool1[x].space << 2;
  765. return 0;
  766. }
  767. }
  768. return -1;
  769. }
  770. const char *ast_tos2str(unsigned int tos)
  771. {
  772. unsigned int x;
  773. for (x = 0; x < ARRAY_LEN(dscp_pool1); x++) {
  774. if (dscp_pool1[x].space == (tos >> 2)) {
  775. return dscp_pool1[x].name;
  776. }
  777. }
  778. return "unknown";
  779. }
  780. int ast_get_ip(struct ast_sockaddr *addr, const char *hostname)
  781. {
  782. return ast_get_ip_or_srv(addr, hostname, NULL);
  783. }
  784. int ast_ouraddrfor(const struct ast_sockaddr *them, struct ast_sockaddr *us)
  785. {
  786. int port;
  787. int s;
  788. port = ast_sockaddr_port(us);
  789. if ((s = socket(ast_sockaddr_is_ipv6(them) ? AF_INET6 : AF_INET,
  790. SOCK_DGRAM, 0)) < 0) {
  791. ast_log(LOG_ERROR, "Cannot create socket\n");
  792. return -1;
  793. }
  794. if (ast_connect(s, them)) {
  795. ast_log(LOG_WARNING, "Cannot connect\n");
  796. close(s);
  797. return -1;
  798. }
  799. if (ast_getsockname(s, us)) {
  800. ast_log(LOG_WARNING, "Cannot get socket name\n");
  801. close(s);
  802. return -1;
  803. }
  804. close(s);
  805. {
  806. const char *them_addr = ast_strdupa(ast_sockaddr_stringify_addr(them));
  807. const char *us_addr = ast_strdupa(ast_sockaddr_stringify_addr(us));
  808. ast_debug(3, "For destination '%s', our source address is '%s'.\n",
  809. them_addr, us_addr);
  810. }
  811. ast_sockaddr_set_port(us, port);
  812. return 0;
  813. }
  814. int ast_find_ourip(struct ast_sockaddr *ourip, const struct ast_sockaddr *bindaddr, int family)
  815. {
  816. char ourhost[MAXHOSTNAMELEN] = "";
  817. struct ast_sockaddr root;
  818. int res, port = ast_sockaddr_port(ourip);
  819. /* just use the bind address if it is nonzero */
  820. if (!ast_sockaddr_is_any(bindaddr)) {
  821. ast_sockaddr_copy(ourip, bindaddr);
  822. ast_debug(3, "Attached to given IP address\n");
  823. return 0;
  824. }
  825. /* try to use our hostname */
  826. if (gethostname(ourhost, sizeof(ourhost) - 1)) {
  827. ast_log(LOG_WARNING, "Unable to get hostname\n");
  828. } else {
  829. if (resolve_first(ourip, ourhost, PARSE_PORT_FORBID, family) == 0) {
  830. /* reset port since resolve_first wipes this out */
  831. ast_sockaddr_set_port(ourip, port);
  832. return 0;
  833. }
  834. }
  835. ast_debug(3, "Trying to check A.ROOT-SERVERS.NET and get our IP address for that connection\n");
  836. /* A.ROOT-SERVERS.NET. */
  837. if (!resolve_first(&root, "A.ROOT-SERVERS.NET", PARSE_PORT_FORBID, 0) &&
  838. !ast_ouraddrfor(&root, ourip)) {
  839. /* reset port since resolve_first wipes this out */
  840. ast_sockaddr_set_port(ourip, port);
  841. return 0;
  842. }
  843. res = get_local_address(ourip);
  844. ast_sockaddr_set_port(ourip, port);
  845. return res;
  846. }