]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Update comments about ExitPolicy parsing
authorteor (Tim Wilson-Brown) <teor2345@gmail.com>
Wed, 9 Sep 2015 13:48:33 +0000 (23:48 +1000)
committerteor (Tim Wilson-Brown) <teor2345@gmail.com>
Mon, 14 Sep 2015 01:12:28 +0000 (11:12 +1000)
Fix incomplete and incorrect comments.

Comment changes only.

src/common/address.h
src/or/policies.c
src/or/routerparse.c

index cd80615f935f6436394a89ce8178b1664c8dd96d..48a34cee31f4b20862a498f4bf0a13bd9286652e 100644 (file)
@@ -227,6 +227,9 @@ int tor_addr_parse_PTR_name(tor_addr_t *result, const char *address,
 
 int tor_addr_port_lookup(const char *s, tor_addr_t *addr_out,
                         uint16_t *port_out);
+/* Does the address * yield an AF_UNSPEC wildcard address (1) and do we
+ * allow *4 and *6 for IPv4 and IPv6 wildcards, respectively;
+ * or does the address * yield IPv4 wildcard address (0).  */
 #define TAPMP_EXTENDED_STAR 1
 int tor_addr_parse_mask_ports(const char *s, unsigned flags,
                               tor_addr_t *addr_out, maskbits_t *mask_out,
index 560b8cb4c304ab97e69893ff7c311bddf2774ad1..07a3e18597fdf50d8a0e6ab3000eefd03096c964 100644 (file)
@@ -152,7 +152,7 @@ policy_expand_unspec(smartlist_t **policy)
 }
 
 /**
- * Given a linked list of config lines containing "allow" and "deny"
+ * Given a linked list of config lines containing "accept[6]" and "reject[6]"
  * tokens, parse them and append the result to <b>dest</b>. Return -1
  * if any tokens are malformed (and don't append any), else return 0.
  *
index c2206f10753388e498a05e41f2b50716e7818474..d0b2cba19f0581e78d453a42ba08102e5ab0cf62 100644 (file)
@@ -3676,10 +3676,14 @@ router_parse_addr_policy_item_from_string,(const char *s, int assume_action))
   directory_token_t *tok = NULL;
   const char *cp, *eos;
   /* Longest possible policy is
-   * "accept6 ffff:ffff:..255/ffff:...255:10000-65535",
-   * which contains 2 max-length IPv6 addresses, plus 21 characters.
+   * "accept6 ffff:ffff:..255/128:10000-65535",
+   * which contains a max-length IPv6 address, plus 24 characters.
    * But note that there can be an arbitrary amount of space between the
-   * accept and the address:mask/port element. */
+   * accept and the address:mask/port element.
+   * We don't need to multiply TOR_ADDR_BUF_LEN by 2, as there is only one
+   * IPv6 address. But making the buffer shorter might cause valid long lines,
+   * which parsed in previous versions, to fail to parse in new versions.
+   * (These lines would have to have excessive amounts of whitespace.) */
   char line[TOR_ADDR_BUF_LEN*2 + 32];
   addr_policy_t *r;
   memarea_t *area = NULL;