aboutsummaryrefslogtreecommitdiff
path: root/contrib/packages/alpine/gnunet/gnunet-gns-proxy.initd
blob: 3c5a22ee23850216b7189cfcf163616ab98da6a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/sbin/openrc-run
# Contributor: xrs <xrs@mail36.net>
# Maintainer: xrs <xrs@mail36.net>

name="gnunet-gns-proxy"
description="GNUnet GNS proxy for name resolution in Firefox/Chromium"
command_background="yes"
pidfile="/run/${SVCNAME}.pid"
users=`awk -F ':' '$3>=1000 && $3<2000 {print $1}' /etc/passwd`

depend() {
	need gnunet-user-services
}

start() {
        # Enable GNS proxy for existant users.
        for user in $users; do
		# Create/Renew GNS certificate authority (CA) per user.
		su $user -c "gnunet-gns-proxy-setup-ca"

		# Customize gnunet.conf
                port=$((8000+$(id -u $user)))
                gnunet-config -c /home/$user/.config/gnunet.conf \
                        --rewrite \
                        --section=gns-proxy \
                        --option=IMMEDIATE_START \
                        --value=YES
                gnunet-config -c /home/$user/.config/gnunet.conf \
                        --rewrite \
                        --section=gns-proxy \
                        --option=OPTIONS \
                        --value="-p $port"

		# Start gns-proxy
		if test -z "`ps|grep $user|grep gnunet-gns-proxy`" > /dev/null 2>&1
		then
			su $user -c "gnunet-arm \
				-c /home/$user/.config/gnunet.conf -i gns-proxy"
		fi

		# Firefox
		if [ ! -d  /home/$user/.mozilla/firefox/*.default ];then
			timeout 3s firefox --headless # dirty: create profile if not existent
		fi
		for ffprofile in /home/$user/.mozilla/firefox/*.*/; do
			js=$ffprofile/user.js
			if [ -f $js ]; then
				sed -i '/Preferences for using the GNU Name System/d' $js
				sed -i '/network.proxy.socks/d' $js
				sed -i '/network.proxy.socks_port/d' $js
				sed -i '/network.proxy.socks_remote_dns/d' $js
				sed -i '/network.proxy.type/d' $js
			fi
			echo "// Preferences for using the GNU Name System" >> $js
			echo "user_pref(\"network.proxy.socks\", \"localhost\");" >> $js
			echo "user_pref(\"network.proxy.socks_port\", $port);" >> $js
			echo "user_pref(\"network.proxy.socks_remote_dns\", true);" >> $js
			echo "user_pref(\"network.proxy.type\", 1);" >> $js
		done

		# Chromium
		profile=/home/$user/.profile
		if [ -f $profile ]; then
			sed -i '/CHROMIUM_USER_FLAGS/d' $profile
		fi
		echo "export CHROMIUM_USER_FLAGS=--proxy-server=socks5://localhost:$port" \
			>> $profile
	done
}

stop() {
	for user in $users; do
		# Stop gns-proxy
		if test "`ps|grep $user|grep gnunet-gns-proxy`" > /dev/null 2>&1
		then
			su $user -c "gnunet-arm \
				-c /home/$user/.config/gnunet.conf -k gns-proxy"
		fi

		# Disable gns-proxy in config
                gnunet-config -c /home/$user/.config/gnunet.conf \
                        --rewrite \
                        --section=gns-proxy \
                        --option=IMMEDIATE_START \
                        --value=NO

		# Reset proxy preferences
		for ffprofile in /home/$user/.mozilla/firefox/*.*/; do
			for file in user.js prefs.js; do
				js=$ffprofile/$file
				if [ -f $js ]; then
					sed -i '/Preferences for using the GNU Name System/d' $js
					sed -i '/network.proxy.socks/d' $js
					sed -i '/network.proxy.socks_port/d' $js
					sed -i '/network.proxy.socks_remote_dns/d' $js
					sed -i '/network.proxy.type/d' $js
				fi
			done
		done

		# Chromium
		profile=/home/$user/.profile
		if [ -f $profile ]; then
			sed -i '/CHROMIUM_USER_FLAGS/d' $profile
		fi
	done
}