summaryrefslogtreecommitdiff
path: root/contrib/tor.wxs.in
blob: abcd973c695cf79b40d3d3d9052426c2b426af32 (plain)
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<?xml version="1.0" encoding="Windows-1252" ?>
<!-- 
  WiX is a Microsoft Installer tool that parses an installation
  specification XML document and produces an MSI package for use on
  updated Windows 2000 and newer systems.

  The MSI package format provides some advantages over the existing NSIS
  packages when used in an automated fashion.  A modified version of
  the Mondo UI installer is included without EULA and other unnecessary
  dialogs.  You must update the UIRef element below to change UI.

  Compile MSI installer via WiX: 
    candle.exe contrib/*.wxs
    light.exe *.wixobj -out tor.msi -ext C:\Path\to\Wix\bin\WixUIExtension.dll

  A silent installation can be performed with a /quiet option passed.
    msiexec /i tor.msi INSTALLDIR=C:\path\to\install\to /qn

  A repair operation can be performed with /f and remove via /x

  More msiexec command line details at:
  http://technet.microsoft.com/en-us/library/cc759262.aspx
 -->
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  <!-- Definitions for critical elements of this MSI package.
  Note that the product version is compressed into a X.X.X format.  If the four
  element version is used, the last octet is ignored when comparing versions
  for upgrade, thus forcing the use of the three element version format.
  UpgradeCode must remain the same for all packages of this type regardless of
  Product or Package ID's.  This is how existing versions are located.
    -->
  <?define ThisProductVersion="2.1.8" ?>
  <?define ThisProductVersionDisp="@VERSION@" ?>
  <?define UpgradeCode="64323a0c-9712-4a7a-8db8-d3c5c0b963df" ?>
  <?define TPI="The Tor Project, Inc." ?>

  <!-- The remaining GUIDs are assigned to components or other variable
  identifiers. Whenever a new package is built these values MUST be
  modified for upgrades to work correctly!  Note that future MSI packages should
  re-use components that haven't changed to speed installation.
    -->
  <?define CurrTorProductGUID="654cd293-e721-44eb-a31c-fc39a36a9975" ?>
  <?define CurrTorExecutableGUID="1f50bd0d-f731-49b6-b905-5682a419881a" ?>
  <?define CurrTorSvcLinksGUID="d4104c4a-f940-4f36-acc7-a5d1c8e72828" ?>
  <?define CurrOpenSSLLibraryGUID="126bd857-348e-48d2-8b79-cd4648e5f471" ?>
  <?define CurrTorDocumentsGUID="8b36bf4e-1f9d-4f9e-a91a-bab7da486c98" ?>
  <?define CurrTorConfigFileGUID="a380ee19-470d-4b35-a0fa-aa19f342c4c5" ?>
  <?define CurrTorGeoIPFileGUID="03afdbae-2e48-45c5-a059-3d3bac63d07f" ?>
  <?define CurrAddTorToStartMenuGUID="7f0cbd78-9608-4780-a848-771d724727b2" ?>
  <?define CurrAddTorToDesktopGUID="30b9f30f-b930-4751-856e-e1280f2227bf" ?>

  <Product
    Name="Tor"
    Id="$(var.CurrTorProductGUID)"
    UpgradeCode="$(var.UpgradeCode)"
    Version="$(var.ThisProductVersion)"
    Manufacturer="$(var.TPI)"
    Language="1033" Codepage="1252">

    <!-- Common package definitions.  Most of these elements are self
    explanatory or do not need modification.
    Note that there is no support for signature verification nor
    patched upgrades at this time.
      --> 
    <Package
      Id="*"
      Keywords="Tor,Installer"
      Description="Tor $(var.ThisProductVersionDisp) Installer"
      Manufacturer="$(var.TPI)"
      Compressed="yes"
      InstallerVersion="100"
      Languages="1033"
      SummaryCodepage="1252"
    />
    <Media Id="1"
      Cabinet="Tor.cab"
      CompressionLevel="high"
      EmbedCab="yes"
      DiskPrompt="na"
    />

    <!-- Associate this package with the upgrade code for this series
    to ensure that upgrade installations by Thandy or other means work
    as expected.
    The OnlyDetect option must be false to ensure that existing files
    from an older version are removed and replaced with current files.
      -->
    <Upgrade Id="$(var.UpgradeCode)">
      <UpgradeVersion
        Property="UPGRADEFOUND"
        OnlyDetect="no"
        Minimum="0.0.1"
        IncludeMinimum="yes"
        Maximum="$(var.ThisProductVersion)"
        IncludeMaximum="no"
      />
    </Upgrade>

    <!-- Properties used to control installation or repair features
    and other invocation options.
      -->
    <Property Id="ReinstallModeText">omus</Property>
    <Property Id="DiskPrompt">Tor Installation</Property>

    <!-- Support for service type Tor installations (soon). -->
    <Property Id="SVCINSTALL">0</Property>
    <Property Id="SERVICENAME">Tor</Property>
    <Property Id="SERVICEINTERNALNAME">Tor</Property>
    <Property Id="EXISTING_TOR_SERVICE_PATH">
      <RegistrySearch 
        Id="ExistingTorService"
        Root="HKLM"
        Key="System\CurrentControlSet\Services\[SERVICEINTERNALNAME]"
        Name="TorSvcPath"
        Type="raw"
      />
    </Property>

    <!-- Most of the installation directives are for populating the
    "Program Files" directory with the Tor binaries, dynamic link
    libraries, configuration files, and other documents.
      -->
    <Directory Id="TARGETDIR" Name="SourceDir">
      <Directory Id="LocalAppDataFolder" Name="AppData">
        <Directory Id="INSTALLDIR" Name="Tor">

          <!-- Tor application file -->
          <Component Id="TorExecutable" Guid="$(var.CurrTorExecutableGUID)">
            <CreateFolder/>
            <RemoveFolder Id="RemoveINSTALLDIR" On="uninstall" />
            <RegistryKey Root="HKCU" Key="Software\Tor" Action="createAndRemoveOnUninstall">
              <RegistryValue Name="Version" Value="$(var.ThisProductVersionDisp)" Type="string" KeyPath="yes" />
            </RegistryKey>
            <File
              Id="TorExe"
              Name="Tor.exe"
              Source="bin\tor.exe"
              Vital="yes"
              DiskId="1"
            />
          </Component>

          <!-- Tor OpenSSL shared libraries
          This optional component is required for shared builds
          of Tor.  For static builds it is ignored.
            -->
          <Component Id="OpenSSLLibrary" Guid="$(var.CurrOpenSSLLibraryGUID)">
            <RegistryKey Root="HKCU" Key="Software\Tor" Action="createAndRemoveOnUninstall">
              <RegistryValue Name="UserSSLLibrary" Value="1" Type="integer" KeyPath="yes" />
            </RegistryKey>
            <File
              Id="cryptoeay32dll"
              Name="cryptoeay32-0.9.8.dll"
              Source="bin/cryptoeay32-0.9.8.dll"
              DiskId="1"
            />
            <File
              Id="ssleay32dll"
              Name="ssleay32-0.9.8.dll"
              Source="bin/ssleay32-0.9.8.dll"
              DiskId="1"
            />
          </Component>

          <!-- Tor configuration files
          The sample config is always kept up to date and the torrc
          is left as is if it exists and copied from the sample
          config otherwise.
            -->
          <Component Id="TorConfigFile" Guid="$(var.CurrTorConfigFileGUID)">
            <RegistryKey Root="HKCU" Key="Software\Tor" Action="createAndRemoveOnUninstall">
              <RegistryValue Name="UserConfigFile" Value="1" Type="integer" KeyPath="yes" />
            </RegistryKey>
            <File
              Id="TorSampleConfig"
              Name="torrc.sample"
              Source="src\config\torrc.sample"
              Vital="yes"
              ReadOnly="yes"
              DiskId="1"
            > 
              <CopyFile
                Id="TorConfig"
                DestinationName="torrc"
              />
            </File>
          </Component>
  
          <!-- GeoIP data file.  This is an optional component.  -->
          <Component Id="TorGeoIPFile" Guid="$(var.CurrTorGeoIPFileGUID)">
            <RegistryKey Root="HKCU" Key="Software\Tor" Action="createAndRemoveOnUninstall">
              <RegistryValue Name="UserGeoIPFile" Value="1" Type="integer" KeyPath="yes" />
            </RegistryKey>
            <File
              Id="GeoIPFile"
              Name="geoip"
              Source="share/tor/geoip"
              Vital="no"
              ReadOnly="yes"
              DiskId="1"
            /> 
          </Component>

          <!-- Tor docs -->
          <Directory Id="TorDocsDirectory" Name="docs">
            <Component Id="TorDocuments" Guid="$(var.CurrTorDocumentsGUID)">
              <CreateFolder/>
              <RemoveFolder Id="RemoveTorDocsDirectory" On="uninstall" />
              <RegistryKey Root="HKCU" Key="Software\Tor" Action="createAndRemoveOnUninstall">
                <RegistryValue Name="UserDocs" Value="1" Type="integer" KeyPath="yes" />
              </RegistryKey>
              <File
                Id="TorReadme"
                Name="README"
                Source="README"
                DiskId="1"
              />
              <File
                Id="TorAuthors"
                Name="Authors"
                Source="Authors"
                DiskId="1"
              />
              <File
                Id="TorChangelog"
                Name="ChangeLog"
                Source="ChangeLog"
                DiskId="1"
              />
              <File
                Id="TorLicense"
                Name="LICENSE"
                Source="LICENSE"
                DiskId="1"
              />
            </Component>
          </Directory>
        </Directory>
      </Directory>

      <!-- Create shortcuts if requested
      Remember that shortcuts must always be tied to a "key"
      registry value for proper repair and removal.
        -->
      <Directory Id="ProgramMenuFolder" Name="Programs">
        <Directory Id="ShortcutFolder" Name="Tor">
          <Component Id="AddTorToStartMenu" Guid="$(var.CurrAddTorToStartMenuGUID)">
            <RegistryKey Root="HKCU" Key="Software\Tor" Action="createAndRemoveOnUninstall">
              <RegistryValue Name="StartMenuShortcut" Value="1" Type="integer" KeyPath="yes" />
            </RegistryKey>
            <Shortcut Id="TorStartMenuShortcut"
                      Name="Tor" Target="[INSTALLDIR]tor.exe"
                      Directory="ShortcutFolder" WorkingDirectory="INSTALLDIR"
                      Icon="tor.ico" IconIndex="0" />
            <RemoveFolder Id="RemoveShortcutFolder" On="uninstall" />
          </Component>
        </Directory>
      </Directory>

      <Directory Id="DesktopFolder" Name="Desktop">
        <Component Id="AddTorToDesktop" Guid="$(var.CurrAddTorToDesktopGUID)">
          <RegistryKey Root="HKCU" Key="Software\Tor" Action="createAndRemoveOnUninstall">
            <RegistryValue Name="DesktopShortcut" Value="1" Type="integer" KeyPath="yes" />
          </RegistryKey>
          <Shortcut Id="TorDesktopShortcut"
                    Name="Tor" Target="[INSTALLDIR]tor.exe"
                    Directory="DesktopFolder" WorkingDirectory="INSTALLDIR"
                    Icon="tor.ico" IconIndex="0" />
        </Component>
      </Directory>
    </Directory>

    <!-- Define list of application features available for install
    There are two main sections to this list.  The "MainApplication"
    section which defines a core set of mandatory files and setup
    and the other optional components like shortcuts which are not
    required for functional installation.
      -->
    <Feature Id="Complete" Title="Tor"
             Level="1" Display="expand" ConfigurableDirectory="INSTALLDIR"
             Description="Tor is an implementation of Onion Routing. You can read more at https://www.torproject.org/">

      <!-- Core files and setup tasks that must always be included in installation -->
      <Feature Id="MainApplication" Title="Tor Application"
               AllowAdvertise="no" Absent="disallow" Level="1"
               Description="Main Tor application">
        <ComponentRef Id="TorExecutable" />
        <ComponentRef Id="TorConfigFile" />
        <ComponentRef Id="TorGeoIPFile" />
        <ComponentRef Id="OpenSSLLibrary" />
        <ComponentRef Id="TorDocuments" />
      </Feature>

      <!-- Shortcuts on the Start Menu and Desktop are optional but
      provided by default. -->
      <Feature Id="Shortcuts" Title="Shortcuts"
               AllowAdvertise="no" Absent="allow" Level="1"
               Description="Add shortcuts to Tor.">
        <Feature Id="StartMenuShortcuts" Title="Add to Start menu"
                 AllowAdvertise="no" Absent="allow" Level="1"
                 Description="Add Tor to your Start menu">
          <ComponentRef Id="AddTorToStartMenu" />
        </Feature>
        <Feature Id="DesktopShortcuts" Title="Add to Desktop"
                 AllowAdvertise="no" Absent="allow" Level="1"
                 Description="Add Tor to your Desktop">
          <ComponentRef Id="AddTorToDesktop" />
        </Feature>
      </Feature>
    </Feature>

    <!-- Upgrade installation sequence. -->
    <InstallExecuteSequence>
      <RemoveExistingProducts After="InstallValidate" />
    </InstallExecuteSequence>

    <!-- Set the UI options
    Use a custom UI sequence to avoid EULA and other extraneous
    parts of Mondo and other GUIs
      -->
    <UIRef Id="WixUI_Tor" />
    <Icon Id="tor.ico" SourceFile="contrib/tor.ico" />
  </Product>
</Wix>