1 ;tor.nsi - A basic win32 installer for Tor
2 ; Originally written by J Doe.
3 ; Modified by Steve Topletz, Andrew Lewman
4 ; See the Tor LICENSE for licensing information
5 ;-----------------------------------------
8 !include "LogicLib.nsh"
9 !include "FileFunc.nsh"
10 !insertmacro GetParameters
12 !define VERSION
"0.2.1.25"
13 !define INSTALLER
"tor-${VERSION}-win32.exe"
14 !define WEBSITE
"https://www.torproject.org/"
15 !define LICENSE
"LICENSE"
16 !define BIN
"..\bin" ;BIN is where it expects to find tor.exe, tor-resolve.exe
19 SetCompressor
/SOLID LZMA
;Tighter compression
20 RequestExecutionLevel user
;Updated for Vista compatibility
22 InstallDir $PROGRAMFILES\Tor
25 Caption "Tor ${VERSION} Setup"
26 BrandingText "The Onion Router"
29 VIProductVersion
"${VERSION}"
30 VIAddVersionKey
"ProductName" "The Onion Router: Tor"
31 VIAddVersionKey
"Comments" "${WEBSITE}"
32 VIAddVersionKey
"LegalTrademarks" "Three line BSD"
33 VIAddVersionKey
"LegalCopyright" "©2004-2008, Roger Dingledine, Nick Mathewson. ©2009 The Tor Project, Inc. "
34 VIAddVersionKey
"FileDescription" "Tor is an implementation of Onion Routing. You can read more at ${WEBSITE}"
35 VIAddVersionKey
"FileVersion" "${VERSION}"
37 !define MUI_WELCOMEPAGE_TITLE
"Welcome to the Tor Setup Wizard"
38 !define MUI_WELCOMEPAGE_TEXT
"This wizard will guide you through the installation of Tor ${VERSION}.\r\n\r\nIf you have previously installed Tor and it is currently running, please exit Tor first before continuing this installation.\r\n\r\n$_CLICK"
39 !define MUI_ABORTWARNING
40 !define MUI_ICON
"${NSISDIR}\Contrib\Graphics\Icons\win-install.ico"
41 !define MUI_UNICON
"${NSISDIR}\Contrib\Graphics\Icons\win-uninstall.ico"
42 !define MUI_HEADERIMAGE_BITMAP
"${NSISDIR}\Contrib\Graphics\Header\win.bmp"
43 !define MUI_FINISHPAGE_RUN
"$INSTDIR\tor.exe"
44 !define MUI_FINISHPAGE_LINK
"Visit the Tor website for the latest updates."
45 !define MUI_FINISHPAGE_LINK_LOCATION
${WEBSITE}
47 !insertmacro MUI_PAGE_WELCOME
48 ; There's no point in having a clickthrough license: Our license adds
49 ; certain rights, but doesn't remove them.
50 ; !insertmacro MUI_PAGE_LICENSE "${LICENSE}"
51 !insertmacro MUI_PAGE_COMPONENTS
52 !insertmacro MUI_PAGE_DIRECTORY
53 !insertmacro MUI_PAGE_INSTFILES
54 !insertmacro MUI_PAGE_FINISH
55 !insertmacro MUI_UNPAGE_WELCOME
56 !insertmacro MUI_UNPAGE_CONFIRM
57 !insertmacro MUI_UNPAGE_INSTFILES
58 !insertmacro MUI_UNPAGE_FINISH
59 !insertmacro MUI_LANGUAGE
"English"
72 ;Files that have to be installed for tor to run and that the user
73 ;cannot choose not to install
78 WriteINIStr "$INSTDIR\Tor Website.url" "InternetShortcut" "URL" ${WEBSITE}
80 StrCpy $CONFIGFILE "torrc"
81 StrCpy $CONFIGDIR $APPDATA\Tor
82 ; ;If $APPDATA isn't valid here (Early win95 releases with no updated
83 ; ; shfolder.dll) then we put it in the program directory instead.
84 ; StrCmp $APPDATA "" "" +2
85 ; StrCpy $CONFIGDIR $INSTDIR
87 ;If there's already a torrc config file, ask if they want to
88 ;overwrite it with the new one.
89 ${If} ${FileExists} "$CONFIGDIR\torrc"
90 MessageBox MB_ICONQUESTION|
MB_YESNO "You already have a Tor config file.$\r$\nDo you want to overwrite it with the default sample config file?" IDYES Yes
IDNO No
92 Delete $CONFIGDIR\torrc
95 StrCpy $CONFIGFILE "torrc.sample"
98 File /oname=
$CONFIGFILE "..\src\config\torrc.sample"
100 ; the geoip file needs to be included and stuffed into the right directory
101 ; otherwise tor is unhappy
102 SetOutPath $APPDATA\Tor
106 Section "Documents" Docs
107 Call ExtractDocuments
110 SubSection
/e
"Shortcuts" Shortcuts
112 Section "Start Menu" StartMenu
114 ${If} ${FileExists} "$SMPROGRAMS\Tor\*.*"
115 RMDir /r
"$SMPROGRAMS\Tor"
118 ${If} ${FileExists} "$INSTDIR\Documents\*.*"
123 Section "Desktop" Desktop
125 CreateShortCut "$DESKTOP\Tor.lnk" "$INSTDIR\tor.exe" "" "$INSTDIR\tor.ico"
128 Section /o
"Run at startup" Startup
130 CreateShortCut "$SMSTARTUP\Tor.lnk" "$INSTDIR\tor.exe" "" "$INSTDIR\tor.ico" "" SW_SHOWMINIMIZED
136 Call un
.InstallPackage
140 WriteUninstaller "$INSTDIR\Uninstall.exe"
141 ;The registry entries simply add the Tor uninstaller to the Windows
143 WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tor" "DisplayName" "Tor (remove only)"
144 WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tor" "UninstallString" '"$INSTDIR\Uninstall.exe"'
147 !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
148 !insertmacro MUI_DESCRIPTION_TEXT
${Tor} "The core executable and config files needed for Tor to run."
149 !insertmacro MUI_DESCRIPTION_TEXT
${Docs} "Documentation about Tor."
150 !insertmacro MUI_DESCRIPTION_TEXT
${ShortCuts} "Shortcuts to easily start Tor"
151 !insertmacro MUI_DESCRIPTION_TEXT
${StartMenu} "Shortcuts to access Tor and it's documentation from the Start Menu"
152 !insertmacro MUI_DESCRIPTION_TEXT
${Desktop} "A shortcut to start Tor from the desktop"
153 !insertmacro MUI_DESCRIPTION_TEXT
${Startup} "Launches Tor automatically at startup in a minimized window"
154 !insertmacro MUI_FUNCTION_DESCRIPTION_END
156 ;####################Functions#########################
158 Function ExtractBinaries
159 File "${BIN}\tor.exe"
160 File "${BIN}\tor-resolve.exe"
163 Function ExtractGEOIP
168 File "${BIN}\tor.ico"
171 Function ExtractSpecs
172 File "..\doc\HACKING"
173 File "..\doc\spec\address-spec.txt"
174 File "..\doc\spec\bridges-spec.txt"
175 File "..\doc\spec\control-spec.txt"
176 File "..\doc\spec\dir-spec.txt"
177 File "..\doc\spec\path-spec.txt"
178 File "..\doc\spec\rend-spec.txt"
179 File "..\doc\spec\socks-extensions.txt"
180 File "..\doc\spec\tor-spec.txt"
181 File "..\doc\spec\version-spec.txt"
185 File "..\doc\tor.html"
186 File "..\doc\torify.html"
187 File "..\doc\tor-resolve.html"
188 File "..\doc\tor-gencert.html"
191 Function ExtractReleaseDocs
197 Function ExtractDocuments
198 SetOutPath "$INSTDIR\Documents"
201 Call ExtractReleaseDocs
204 Function un
.InstallFiles
205 Delete "$DESKTOP\Tor.lnk"
206 Delete "$INSTDIR\tor.exe"
207 Delete "$INSTDIR\tor-resolve.exe"
208 Delete "$INSTDIR\Tor Website.url"
209 Delete "$INSTDIR\torrc"
210 Delete "$INSTDIR\torrc.sample"
211 Delete "$INSTDIR\tor.ico"
212 Delete "$SMSTARTUP\Tor.lnk"
213 Delete "$INSTDIR\Uninstall.exe"
214 Delete "$INSTDIR\geoip"
217 Function un
.InstallDirectories
218 ${If} $CONFIGDIR ==
$INSTDIR
221 RMDir /r
"$INSTDIR\Documents"
223 RMDir /r
"$SMPROGRAMS\Tor"
224 RMDir /r
"$APPDATA\Tor"
227 Function un
.WriteRegistry
228 DeleteRegKey HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Tor"
231 Function un
.InstallPackage
233 Call un
.InstallDirectories
234 Call un
.WriteRegistry
237 Function CreateTorLinks
238 CreateDirectory "$SMPROGRAMS\Tor"
239 CreateShortCut "$SMPROGRAMS\Tor\Tor.lnk" "$INSTDIR\tor.exe" "" "$INSTDIR\tor.ico"
240 CreateShortCut "$SMPROGRAMS\Tor\Torrc.lnk" "Notepad.exe" "$CONFIGDIR\torrc"
241 CreateShortCut "$SMPROGRAMS\Tor\Tor Website.lnk" "$INSTDIR\Tor Website.url"
242 CreateShortCut "$SMPROGRAMS\Tor\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
245 Function CreateDocLinks
246 CreateDirectory "$SMPROGRAMS\Tor\Documents"
247 CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Documentation.lnk" "$INSTDIR\Documents"
248 CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Specification.lnk" "$INSTDIR\Documents\tor-spec.txt"
249 CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Address Specification.lnk" "$INSTDIR\Documents\address-spec.txt"
250 CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Bridges Specification.lnk" "$INSTDIR\Documents\bridges-spec.txt"
251 CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Control Specification.lnk" "$INSTDIR\Documents\control-spec.txt"
252 CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Directory Specification.lnk" "$INSTDIR\Documents\dir-spec.txt"
253 CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Path Specification.lnk" "$INSTDIR\Documents\path-spec.txt"
254 CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Rend Specification.lnk" "$INSTDIR\Documents\rend-spec.txt"
255 CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Version Specification.lnk" "$INSTDIR\Documents\version-spec.txt"
256 CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor SOCKS Extensions.lnk" "$INSTDIR\Documents\socks-extensions.txt"
259 Function ParseCmdLine
261 ${If} $1 ==
"-x" ;Extract All Files
262 StrCpy $INSTDIR $EXEDIR
264 Call ExtractDocuments
266 ${ElseIf} $1 ==
"-b" ;Extract Binaries Only
267 StrCpy $INSTDIR $EXEDIR
271 MessageBox MB_OK|
MB_TOPMOST `${Installer} [-x|-b]$\r$\n$\r$\n -x Extract all files$\r$\n -b Extract binary files only`