-
Notifications
You must be signed in to change notification settings - Fork 91
/
xow.cpp
112 lines (88 loc) · 2.92 KB
/
xow.cpp
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
/*
* Copyright (C) 2019 Medusalix
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "utils/log.h"
#include "utils/reader.h"
#include "dongle/usb.h"
#include "dongle/dongle.h"
#include <cstring>
#include <csignal>
#include <sys/signalfd.h>
int main()
{
Log::init();
Log::info("xow %s ©Severin v. W.", VERSION);
sigset_t signalMask;
sigemptyset(&signalMask);
sigaddset(&signalMask, SIGINT);
sigaddset(&signalMask, SIGTERM);
sigaddset(&signalMask, SIGUSR1);
// Block signals for all USB threads
if (pthread_sigmask(SIG_BLOCK, &signalMask, nullptr) < 0)
{
Log::error("Error blocking signals: %s", strerror(errno));
return EXIT_FAILURE;
}
UsbDeviceManager manager;
// Unblock signals for current thread to allow interruption
if (pthread_sigmask(SIG_UNBLOCK, &signalMask, nullptr) < 0)
{
Log::error("Error unblocking signals: %s", strerror(errno));
return EXIT_FAILURE;
}
// Bind USB device termination to signal reader interruption
InterruptibleReader signalReader;
UsbDevice::Terminate terminate = std::bind(
&InterruptibleReader::interrupt,
&signalReader
);
std::unique_ptr<UsbDevice> device = manager.getDevice({
{ DONGLE_VID, DONGLE_PID_OLD },
{ DONGLE_VID, DONGLE_PID_NEW },
{ DONGLE_VID, DONGLE_PID_SURFACE }
}, terminate);
// Block signals and pass them to the signalfd
if (pthread_sigmask(SIG_BLOCK, &signalMask, nullptr) < 0)
{
Log::error("Error blocking signals: %s", strerror(errno));
return EXIT_FAILURE;
}
int file = signalfd(-1, &signalMask, 0);
if (file < 0)
{
Log::error("Error creating signal file: %s", strerror(errno));
return EXIT_FAILURE;
}
signalReader.prepare(file);
Dongle dongle(std::move(device));
signalfd_siginfo info = {};
while (signalReader.read(&info, sizeof(info)))
{
uint32_t type = info.ssi_signo;
if (type == SIGINT || type == SIGTERM)
{
break;
}
if (type == SIGUSR1)
{
Log::debug("User signal received");
dongle.setPairingStatus(true);
}
}
Log::info("Shutting down...");
return EXIT_SUCCESS;
}