Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
michael@0 | 1 | #!/usr/bin/perl -w |
michael@0 | 2 | |
michael@0 | 3 | use Cwd; |
michael@0 | 4 | |
michael@0 | 5 | $curdir = cwd(); |
michael@0 | 6 | |
michael@0 | 7 | @path_fields = split(/\//,$curdir); |
michael@0 | 8 | |
michael@0 | 9 | $path = join ("/",@path_fields); |
michael@0 | 10 | |
michael@0 | 11 | print "Searching in " . $path . "\n"; |
michael@0 | 12 | |
michael@0 | 13 | open (REPORT, "find $path -name \"*.so\" -print | xargs nm -Bno | egrep NSGetModule 2>&1 |" ) || die "open: $! \n"; |
michael@0 | 14 | |
michael@0 | 15 | print "Modules:\n"; |
michael@0 | 16 | while (<REPORT>) { |
michael@0 | 17 | $module = $_; |
michael@0 | 18 | $module =~ s/:.*//; |
michael@0 | 19 | print $module; |
michael@0 | 20 | } |
michael@0 | 21 | close(REPORT); |
michael@0 | 22 | |
michael@0 | 23 | open (REPORT, "find $path -name \"*.so\" -print | xargs nm -Bno | egrep NSGetFactory 2>&1 |" ) || die "open: $! \n"; |
michael@0 | 24 | |
michael@0 | 25 | print "\nComponents:\n"; |
michael@0 | 26 | while (<REPORT>) { |
michael@0 | 27 | $module = $_; |
michael@0 | 28 | $module =~ s/:.*//; |
michael@0 | 29 | print $module; |
michael@0 | 30 | } |
michael@0 | 31 | close(REPORT); |