Chromium extension for bypassing censorship in Russia
Go to file
2015-11-28 21:04:50 +05:00
benchmark2 rebane benchmark 2015-11-28 21:04:50 +05:00
chart larger fonts for chart 2015-11-28 18:04:33 +05:00
extensions/chromium refactored 2015-11-28 14:20:45 +05:00
pac-generator refactored 2015-11-28 14:20:45 +05:00
.gitignore did the survey, modified extension 2015-11-28 01:47:27 +05:00
package.json refactored 2015-11-28 14:20:45 +05:00
README.md lowercased the name 2015-11-28 21:03:14 +05:00

Anti-censorship Solution for Russia on PAC-Script

Censorship in Russia

Censorship in Russia plagues the Freedoms of Information and Speech, slowly building analogue of China Golden Shield.

For good or bad, it blocks Main Kampf, lolicon (rearly distinguishing from hentai) and critics of Putin.

Looking at how Russian government distorts TV and blocks Internet, I decided to write an Anti-Censorship extension for Chomium.

I believe the freedom of information is a virtue and important information mustn't be blocked based on political or other subjective views.

Technical Titbits

if (Is_subdomain_of( host, blocked_hosts ))
  return 'use proxy';

You have to make Is_subdomain_of very fast.
This check is executed on each request. You should watch memeory consumption too.

The naive solution is to keep array of blocked ips and check if the host resolves to one of the ips.
You may do it with indexOf, binary search, etc.
The shortcoming of every ip solution is that some providers resolve blocked hosts to wrong ips, so we eventually need list of hosts.

I have tested different solutions, and depicted results in the following chart:

Host Lookup Chart: Time-Memory, Hits-Misses

  • IPs indexOf Blocked IP is search by indexOf
  • IPs binary Blocked IP is search by binary search. For some reason miss time slightly increased.
  • IPs switch Simply switch(Blocked_IP) { case1: ... caseN: return true }. Works even better than binary search. Magic.
  • Hosts switch Radix trie built on switch. Comparable to IPs switch.