-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
CustomActions.cs
631 lines (524 loc) · 20.3 KB
/
CustomActions.cs
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Threading;
using CliWrap;
using CliWrap.Buffered;
using Nefarius.BthPS3.Shared;
using Nefarius.Utilities.Bluetooth;
using Nefarius.Utilities.DeviceManagement.Drivers;
using Nefarius.Utilities.DeviceManagement.Exceptions;
using Nefarius.Utilities.DeviceManagement.PnP;
using Nefarius.Utilities.WixSharp.Util;
using WixSharp;
using WixToolset.Dtf.WindowsInstaller;
namespace Nefarius.BthPS3.Setup;
public static class CustomActions
{
#region Web
[CustomAction]
public static ActionResult OpenArticle(Session session)
{
if (!session.IsFeatureEnabled("PostInstArticle"))
{
return ActionResult.Success;
}
try
{
Process.Start("https://docs.nefarius.at/projects/BthPS3/Welcome/Installation-Successful/");
}
catch (Exception ex)
{
session.Log($"Spawning article process failed with {ex}");
}
return ActionResult.Success;
}
#endregion
#region Driver management
/// <summary>
/// Put install logic here.
/// </summary>
/// <remarks>Requires elevated permissions.</remarks>
[CustomAction]
public static ActionResult InstallDrivers(Session session)
{
// clean out whatever has been on the machine before
UninstallDrivers(session);
session.Log($"--- BEGIN {nameof(InstallDrivers)} ---");
try
{
DirectoryInfo installDir = new(session.Property("INSTALLDIR"));
session.Log($"installDir = {installDir}");
string driversDir = Path.Combine(installDir.FullName, "drivers");
session.Log($"driversDir = {driversDir}");
string nefconDir = Path.Combine(installDir.FullName, "nefcon");
session.Log($"nefconDir = {nefconDir}");
string archShortName = ArchitectureInfo.PlatformShortName;
session.Log($"archShortName = {archShortName}");
string nefconcPath = Path.Combine(nefconDir, archShortName, "nefconc.exe");
session.Log($"nefconcPath = {nefconcPath}");
string bthPs3DriverDir = Path.Combine(driversDir, $"BthPS3_{archShortName}");
session.Log($"bthPs3DriverDir = {bthPs3DriverDir}");
string bthPs3PsmDriverDir = Path.Combine(driversDir, $"BthPS3PSM_{archShortName}");
session.Log($"bthPs3PsmDriverDir = {bthPs3PsmDriverDir}");
string bthPs3InfPath = Path.Combine(bthPs3DriverDir, "BthPS3.inf");
session.Log($"bthPs3InfPath = {bthPs3InfPath}");
string bthPs3PsmInfPath = Path.Combine(bthPs3PsmDriverDir, "BthPS3PSM.inf");
session.Log($"bthPs3PsmInfPath = {bthPs3PsmInfPath}");
string bthPs3NullInfPath = Path.Combine(bthPs3DriverDir, "BthPS3_PDO_NULL_Device.inf");
session.Log($"bthPs3NullInfPath = {bthPs3NullInfPath}");
#region Filter install
// BthPS3PSM filter install
BufferedCommandResult? result = Cli.Wrap(nefconcPath)
.WithArguments(builder => builder
.Add("--inf-default-install")
.Add("--inf-path")
.Add(bthPs3PsmInfPath)
)
.WithValidation(CommandResultValidation.None)
.ExecuteBufferedAsync()
.GetAwaiter()
.GetResult();
session.Log($"BthPS3PSM command stdout: {result.StandardOutput}");
session.Log($"BthPS3PSM command stderr: {result.StandardError}");
bool rebootRequired = result?.ExitCode == 3010;
if (result?.ExitCode != 0 && result?.ExitCode != 3010)
{
session.Log(
$"Filter installer failed with exit code: {result?.ExitCode}, message: {Win32Exception.GetMessageFor(result?.ExitCode)}");
goto exitFailure;
}
#endregion
#region Register filter
try
{
// register filter
session.Log("Adding lower filter entry");
DeviceClassFilters.AddLower(DeviceClassIds.Bluetooth, FilterDriver.FilterServiceName);
session.Log("Added lower filter entry");
}
catch (Exception ex)
{
session.Log($"Adding lower filter failed with error {ex}");
goto exitFailure;
}
#endregion
#region Restart radio
try
{
Record restartTimeoutRecord = new(1);
restartTimeoutRecord[1] = "9002";
MessageResult dialogResult = MessageResult.Abort;
bool restartSuccess = false;
do
{
restartSuccess = RestartRadioAndAwait(session);
dialogResult =
restartSuccess
? MessageResult.OK
: session.Message(
InstallMessage.User | (InstallMessage)MessageButtons.AbortRetryIgnore |
(InstallMessage)MessageIcon.Warning,
restartTimeoutRecord);
} while (!restartSuccess && dialogResult == MessageResult.Retry);
if (dialogResult == MessageResult.Abort)
{
session.Log("User aborted operation");
return ActionResult.Failure;
}
}
catch (Exception ex)
{
session.Log($"Radio restart failed with error {ex}");
goto exitFailure;
}
#endregion
#region Profile driver
session.Log("Installing profile driver");
if (!Devcon.Install(bthPs3InfPath, out bool profileRebootRequired))
{
int error = Marshal.GetLastWin32Error();
session.Log(
$"Profile driver installation failed with win32 error: {error}, message: {Win32Exception.GetMessageFor(error)}");
goto exitFailure;
}
session.Log("Installed profile driver");
if (profileRebootRequired)
{
rebootRequired = true;
}
#endregion
#region NULL driver
session.Log("Installing NULL driver");
if (!Devcon.Install(bthPs3NullInfPath, out bool nullRebootRequired))
{
int error = Marshal.GetLastWin32Error();
session.Log(
$"NULL driver installation failed with win32 error: {error}, message: {Win32Exception.GetMessageFor(error)}");
goto exitFailure;
}
session.Log("Installed NULL driver");
if (nullRebootRequired)
{
rebootRequired = true;
}
#endregion
#region Profile driver service
try
{
HostRadio radio = new();
try
{
session.Log("Enabling BthPS3 service");
// enable service, spawns profile driver PDO
radio.EnableService(InstallScript.BthPs3ServiceGuid, InstallScript.BthPs3ServiceName);
session.Log("Enabled BthPS3 service");
}
catch (Exception ex)
{
session.Log($"Enabling service failed with error {ex}");
goto exitFailure;
}
finally
{
radio.Dispose();
}
}
catch (Exception ex)
{
session.Log($"Enabling radio failed with error {ex}");
goto exitFailure;
}
#endregion
#region Filter settings
try
{
session.Log("Enabling PSM filter");
// make sure patching is enabled, might not be in the registry
FilterDriver.IsFilterEnabled = true;
session.Log("Enabled PSM filter");
}
catch (Exception ex)
{
session.Log($"Enabling filter failed with {ex}");
goto exitFailure;
}
#endregion
if (rebootRequired)
{
Record record = new(1);
record[1] = "9000";
session.Message(
InstallMessage.User | (InstallMessage)MessageButtons.OK | (InstallMessage)MessageIcon.Information,
record);
}
session.Log($"--- END {nameof(InstallDrivers)} SUCCESS ---");
return ActionResult.Success;
}
catch (Exception ex)
{
session.Log($"FTL: {ex}");
}
exitFailure:
session.Log($"--- END {nameof(InstallDrivers)} FAILURE ---");
return ActionResult.Failure;
}
/// <summary>
/// Attempts to restart the radio and waits until the Bluetooth interface comes back online.
/// </summary>
/// <param name="session">The <see cref="Session"/>.</param>
/// <returns>True on success, false on timeout.</returns>
private static bool RestartRadioAndAwait(Session session)
{
AutoResetEvent waitEvent = new(false);
DeviceNotificationListener listener = new();
try
{
listener.RegisterDeviceArrived(RadioDeviceArrived, HostRadio.DeviceInterface);
listener.StartListen(HostRadio.DeviceInterface);
void RadioDeviceArrived(DeviceEventArgs obj)
{
session.Log("Radio arrival event, path: {0}", obj.SymLink);
// ReSharper disable once AccessToDisposedClosure
listener.StopListen(HostRadio.DeviceInterface);
// ReSharper disable once AccessToDisposedClosure
waitEvent.Set();
}
session.Log("Restarting radio device");
// restart device, filter is loaded afterward
HostRadio.RestartRadioDevice();
session.Log("Restarted radio device");
session.Log("Waiting for radio device to come online...");
// wait until either event fired OR the timeout has been reached
if (!waitEvent.WaitOne(TimeSpan.FromSeconds(30)))
{
return false;
}
session.Log(!HostRadio.IsAvailable
? "WARN: Radio not available after wait period"
: "Radio available after restart");
return true;
}
catch (Exception ex)
{
session.Log($"Restarting radio device failed with error {ex}");
}
finally
{
listener.Dispose();
waitEvent.Dispose();
}
return false;
}
/// <summary>
/// Uninstalls and cleans all driver residue.
/// </summary>
/// <remarks>Requires elevated permissions.</remarks>
public static void UninstallDrivers(Session session)
{
session.Log($"--- BEGIN {nameof(UninstallDrivers)} ---");
try
{
// de-register filter
session.Log("Removing lower filter entry");
DeviceClassFilters.RemoveLower(DeviceClassIds.Bluetooth, FilterDriver.FilterServiceName);
session.Log("Removed lower filter entry");
}
catch (Exception ex)
{
session.Log($"Removing lower filter failed with error {ex}");
}
try
{
HostRadio radio = new();
try
{
session.Log("Disabling BthPS3 service");
// disabling service unloads PDO
radio.DisableService(InstallScript.BthPs3ServiceGuid, InstallScript.BthPs3ServiceName);
session.Log("Disabled BthPS3 service");
session.Log("Disabling radio");
// unloads complete stack
radio.DisableRadio();
session.Log("Disabled radio");
}
catch (Exception ex)
{
session.Log($"Disabling service or radio failed with error {ex}");
}
finally
{
radio.Dispose();
}
}
catch (Exception ex)
{
session.Log($"FTL: radio access for disabling service failed with {ex}, ignoring");
}
// ignore errors
RestartRadioAndAwait(session);
#region Driver store clean-up
List<string> allDriverPackages = DriverStore.ExistingDrivers.ToList();
// remove all old copies of BthPS3
foreach (string driverPackage in allDriverPackages.Where(p =>
p.Contains("bthps3.inf", StringComparison.OrdinalIgnoreCase)))
{
try
{
session.Log($"Removing driver package {driverPackage}");
DriverStore.RemoveDriver(driverPackage);
}
catch (Exception ex)
{
session.Log($"Removal of BthPS3 package {driverPackage} failed with error {ex}");
}
}
// remove all old copies of BthPS3 NULL driver
foreach (string driverPackage in allDriverPackages.Where(p =>
p.Contains("bthps3_pdo_null_device.inf", StringComparison.OrdinalIgnoreCase)))
{
try
{
session.Log($"Removing driver package {driverPackage}");
DriverStore.RemoveDriver(driverPackage);
}
catch (Exception ex)
{
session.Log($"Removal of BthPS3 NULL driver package {driverPackage} failed with error {ex}");
}
}
// remove all old copies of BthPS3PSM
foreach (string driverPackage in allDriverPackages.Where(p =>
p.Contains("bthps3psm.inf", StringComparison.OrdinalIgnoreCase)))
{
try
{
session.Log($"Removing driver package {driverPackage}");
DriverStore.RemoveDriver(driverPackage);
}
catch (Exception ex)
{
session.Log($"Removal of BthPS3PSM package {driverPackage} failed with error {ex}");
}
}
#endregion
try
{
HostRadio radio = new();
try
{
session.Log("Enabling radio");
// starts vanilla radio operation
radio.EnableRadio();
session.Log("Enabled radio");
}
catch (Exception ex)
{
session.Log($"Enabling radio failed with error {ex}");
}
finally
{
radio.Dispose();
}
}
catch (Exception ex)
{
session.Log("FTL: Radio access for enabling failed, ignoring", ex);
}
session.Log($"--- END {nameof(UninstallDrivers)} ---");
}
#endregion
#region Updater
/// <summary>
/// Register the auto-updater.
/// </summary>
[CustomAction]
public static ActionResult RegisterUpdater(Session session)
{
DirectoryInfo installDir = new(session.Property("INSTALLDIR"));
string updaterPath = Path.Combine(installDir.FullName, "nefarius_BthPS3_Updater.exe");
CommandResult? result = Cli.Wrap(updaterPath)
.WithArguments(builder => builder
.Add("--install")
.Add("--silent")
.Add("--override-success-code 0")
)
.WithValidation(CommandResultValidation.None)
.ExecuteAsync()
.GetAwaiter()
.GetResult();
session.Log(
$"Updater registration {(result.IsSuccess ? "succeeded" : "failed")}, exit code: {result.ExitCode}");
return ActionResult.Success;
}
/// <summary>
/// De-register the auto-updater.
/// </summary>
[CustomAction]
public static ActionResult DeregisterUpdater(Session session)
{
try
{
DirectoryInfo installDir = new(session.Property("INSTALLDIR"));
string updaterPath = Path.Combine(installDir.FullName, "nefarius_BthPS3_Updater.exe");
CommandResult? result = Cli.Wrap(updaterPath)
.WithArguments(builder => builder
.Add("--uninstall")
.Add("--silent")
.Add("--override-success-code 0")
)
.WithValidation(CommandResultValidation.None)
.ExecuteAsync()
.GetAwaiter()
.GetResult();
session.Log(
$"Updater de-registration {(result.IsSuccess ? "succeeded" : "failed")}, exit code: {result.ExitCode}");
return ActionResult.Success;
}
catch
{
//
// Not failing a removal here
//
return ActionResult.Success;
}
}
#endregion
#region ETW Manifests
/// <summary>
/// Installs the ETW manifests
/// </summary>
/// <remarks>Requires elevated permissions.</remarks>
[CustomAction]
public static ActionResult InstallManifest(Session session)
{
DirectoryInfo installDir = new(session.Property("INSTALLDIR"));
string bthPs3Manifest = Path.Combine(installDir.FullName, InstallScript.ManifestsDir, "BthPS3.man");
string bthPs3PsmManifest = Path.Combine(installDir.FullName, InstallScript.ManifestsDir, "BthPS3PSM.man");
CommandResult? bthPs3ManifestResult = Cli.Wrap("wevtutil")
.WithArguments(builder => builder
.Add("im")
.Add(bthPs3Manifest)
)
.WithValidation(CommandResultValidation.None)
.ExecuteAsync()
.GetAwaiter()
.GetResult();
session.Log(
$"BthPS3 manifest import {(bthPs3ManifestResult.IsSuccess ? "succeeded" : "failed")}, " +
$"exit code: {bthPs3ManifestResult.ExitCode}");
CommandResult? bthPs3PsmManifestResult = Cli.Wrap("wevtutil")
.WithArguments(builder => builder
.Add("im")
.Add(bthPs3PsmManifest)
)
.WithValidation(CommandResultValidation.None)
.ExecuteAsync()
.GetAwaiter()
.GetResult();
session.Log(
$"BthPS3PSM manifest import {(bthPs3PsmManifestResult.IsSuccess ? "succeeded" : "failed")}, " +
$"exit code: {bthPs3PsmManifestResult.ExitCode}");
return ActionResult.Success;
}
/// <summary>
/// Uninstalls the ETW manifests.
/// </summary>
/// <remarks>Requires elevated permissions.</remarks>
[CustomAction]
public static ActionResult UninstallManifest(Session session)
{
DirectoryInfo installDir = new(session.Property("INSTALLDIR"));
string bthPs3Manifest = Path.Combine(installDir.FullName, InstallScript.ManifestsDir, "BthPS3.man");
string bthPs3PsmManifest = Path.Combine(installDir.FullName, InstallScript.ManifestsDir, "BthPS3PSM.man");
CommandResult? bthPs3ManifestResult = Cli.Wrap("wevtutil")
.WithArguments(builder => builder
.Add("um")
.Add(bthPs3Manifest)
)
.WithValidation(CommandResultValidation.None)
.ExecuteAsync()
.GetAwaiter()
.GetResult();
session.Log(
$"BthPS3 manifest removal {(bthPs3ManifestResult.IsSuccess ? "succeeded" : "failed")}, " +
$"exit code: {bthPs3ManifestResult.ExitCode}");
CommandResult? bthPs3PsmManifestResult = Cli.Wrap("wevtutil")
.WithArguments(builder => builder
.Add("um")
.Add(bthPs3PsmManifest)
)
.WithValidation(CommandResultValidation.None)
.ExecuteAsync()
.GetAwaiter()
.GetResult();
session.Log(
$"BthPS3PSM manifest removal {(bthPs3PsmManifestResult.IsSuccess ? "succeeded" : "failed")}, " +
$"exit code: {bthPs3PsmManifestResult.ExitCode}");
return ActionResult.Success;
}
#endregion
}