Skip to content
  1. Jul 21, 2016
  2. Jul 19, 2016
  3. Jul 18, 2016
  4. Jul 17, 2016
  5. Jul 13, 2016
  6. Jul 11, 2016
    • Peter Palfrader's avatar
      Add (SOCK_DGRAM, IPPROTO_UDP) sockets to the sandboxing whitelist · 36b06be7
      Peter Palfrader authored
      If we did not find a non-private IPaddress by iterating over interfaces,
      we would try to get one via
      get_interface_address6_via_udp_socket_hack().  This opens a datagram
      socket with IPPROTO_UDP.  Previously all our datagram sockets (via
      libevent) used IPPROTO_IP, so we did not have that in the sandboxing
      whitelist.  Add (SOCK_DGRAM, IPPROTO_UDP) sockets to the sandboxing
      whitelist.  Fixes bug 19660.
      36b06be7
  7. Jul 08, 2016
    • Jigsaw52's avatar
      Adds missing syscalls to seccomp filter. · 20e89453
      Jigsaw52 authored
      Fixes #18397 which prevented tor starting with Sandbox 1.
      20e89453
    • Nick Mathewson's avatar
      Move our "what time is it now" compat functions into a new module · aa971c59
      Nick Mathewson authored
      I'm not moving our "format and parse the time" functions, since
      those have been pretty volatile over the last couple of years.
      aa971c59
    • cypherpunks's avatar
      Fix test-network-all target in out-of-tree builds · 3ac43410
      cypherpunks authored and Nick Mathewson's avatar Nick Mathewson committed
      The test-network-all target assumes the test-driver script lives in the
      current working directory. This assumption breaks out-of-tree builds
      because it actually lives in the source directory.
      
      Automake 1.12 introduces `LOG_DRIVER` which defines the location of the
      test driver script. Because Tor still supports Automake 1.11 we use the
      default value of this variable directly. The default value uses the
      configured shell for calling the test driver script and explicitly
      prefixes the source directory.
      3ac43410