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 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699
|
/*
* This file is a part of QTerminal - http://gitorious.org/qterminal
*
* This file was un-linked from KDE and modified
* by Maxim Bourmistrov <maxim@unixconn.com>
*
*/
/*
This file is part of Konsole, an X terminal.
Copyright 1997,1998 by Lars Doelle <lars.doelle@on-line.de>
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.
*/
// Own
#include "Pty.h"
#include "SessionManager.h"
// System
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <cerrno>
#include <termios.h>
#include <csignal>
// Qt
#include <QStringList>
#include <QtDebug>
#include <QMessageBox>
#include <QDir>
#include <QRegExp>
#include <QRegExpValidator>
#include <QTextCodec>
#include "kpty.h"
#include "kptydevice.h"
#include "encodes/detectcode.h"
using namespace Konsole;
void Pty::setWindowSize(int lines, int cols)
{
_windowColumns = cols;
_windowLines = lines;
if (pty()->masterFd() >= 0)
pty()->setWinSize(lines, cols);
}
QSize Pty::windowSize() const
{
return {_windowColumns, _windowLines};
}
void Pty::setFlowControlEnabled(bool enable)
{
_xonXoff = enable;
if (pty()->masterFd() >= 0) {
struct ::termios ttmode;
pty()->tcGetAttr(&ttmode);
if (!enable)
ttmode.c_iflag &= ~(IXOFF | IXON);
else
ttmode.c_iflag |= (IXOFF | IXON);
if (!pty()->tcSetAttr(&ttmode))
qWarning() << "Unable to set terminal attributes.";
}
}
bool Pty::flowControlEnabled() const
{
if (pty()->masterFd() >= 0) {
struct ::termios ttmode;
pty()->tcGetAttr(&ttmode);
return ttmode.c_iflag & IXOFF &&
ttmode.c_iflag & IXON;
}
qWarning() << "Unable to get flow control status, terminal not connected.";
return false;
}
void Pty::setUtf8Mode(bool enable)
{
#ifdef IUTF8 // XXX not a reasonable place to check it.
_utf8 = enable;
if (pty()->masterFd() >= 0) {
struct ::termios ttmode;
pty()->tcGetAttr(&ttmode);
if (!enable)
ttmode.c_iflag &= ~IUTF8;
else
ttmode.c_iflag |= IUTF8;
if (!pty()->tcSetAttr(&ttmode))
qWarning() << "Unable to set terminal attributes.";
}
#endif
}
void Pty::setErase(char erase)
{
_eraseChar = erase;
if (pty()->masterFd() >= 0) {
struct ::termios ttmode;
pty()->tcGetAttr(&ttmode);
ttmode.c_cc[VERASE] = erase;
if (!pty()->tcSetAttr(&ttmode))
qWarning() << "Unable to set terminal attributes.";
}
}
char Pty::erase() const
{
if (pty()->masterFd() >= 0) {
struct ::termios ttyAttributes;
pty()->tcGetAttr(&ttyAttributes);
return ttyAttributes.c_cc[VERASE];
}
return _eraseChar;
}
void Pty::addEnvironmentVariables(const QStringList &environment)
{
QListIterator<QString> iter(environment);
while (iter.hasNext()) {
QString pair = iter.next();
// split on the first '=' character
int pos = pair.indexOf(QLatin1Char('='));
if (pos >= 0) {
QString variable = pair.left(pos);
QString value = pair.mid(pos + 1);
setEnv(variable, value);
}
}
}
int Pty::start(const QString &program,
const QStringList &programArguments,
const QStringList &environment,
ulong winid,
bool addToUtmp
//const QString& dbusService,
//const QString& dbusSession
)
{
clearProgram();
// For historical reasons, the first argument in programArguments is the
// name of the program to execute, so create a list consisting of all
// but the first argument to pass to setProgram()
Q_ASSERT(programArguments.count() >= 1);
setProgram(program, programArguments.mid(1));
_program = program;
addEnvironmentVariables(environment);
setEnv(QLatin1String("WINDOWID"), QString::number(winid));
setEnv(QLatin1String("COLORTERM"), QLatin1String("truecolor"));
// unless the LANGUAGE environment variable has been set explicitly
// set it to a null string
// this fixes the problem where KCatalog sets the LANGUAGE environment
// variable during the application's startup to something which
// differs from LANG,LC_* etc. and causes programs run from
// the terminal to display messages in the wrong language
//
// this can happen if LANG contains a language which KDE
// does not have a translation for
//
// BR:149300
setEnv(QLatin1String("LANGUAGE"), QString(), false /* do not overwrite existing value if any */);
setUseUtmp(addToUtmp);
struct ::termios ttmode;
pty()->tcGetAttr(&ttmode);
if (!_xonXoff)
ttmode.c_iflag &= ~(IXOFF | IXON);
else
ttmode.c_iflag |= (IXOFF | IXON);
#ifdef IUTF8 // XXX not a reasonable place to check it.
if (!_utf8)
ttmode.c_iflag &= ~IUTF8;
else
ttmode.c_iflag |= IUTF8;
#endif
if (_eraseChar != 0)
ttmode.c_cc[VERASE] = _eraseChar;
if (!pty()->tcSetAttr(&ttmode))
qWarning() << "Unable to set terminal attributes.";
pty()->setWinSize(_windowLines, _windowColumns);
KProcess::start();
if (!waitForStarted())
return -1;
return 0;
}
void Pty::setEmptyPTYProperties()
{
struct ::termios ttmode;
pty()->tcGetAttr(&ttmode);
if (!_xonXoff)
ttmode.c_iflag &= ~(IXOFF | IXON);
else
ttmode.c_iflag |= (IXOFF | IXON);
#ifdef IUTF8 // XXX not a reasonable place to check it.
if (!_utf8)
ttmode.c_iflag &= ~IUTF8;
else
ttmode.c_iflag |= IUTF8;
#endif
if (_eraseChar != 0)
ttmode.c_cc[VERASE] = _eraseChar;
if (!pty()->tcSetAttr(&ttmode))
qWarning() << "Unable to set terminal attributes.";
}
void Pty::setWriteable(bool writeable)
{
struct stat sbuf;
stat(pty()->ttyName(), &sbuf);
if (writeable)
chmod(pty()->ttyName(), sbuf.st_mode | S_IWGRP);
else
chmod(pty()->ttyName(), sbuf.st_mode & ~(S_IWGRP | S_IWOTH));
}
Pty::Pty(int masterFd, QObject *parent)
: KPtyProcess(masterFd, parent)
{
init();
}
Pty::Pty(QObject *parent)
: KPtyProcess(parent)
{
init();
}
void Pty::init()
{
_windowColumns = 0;
_windowLines = 0;
_eraseChar = 0;
_xonXoff = true;
_utf8 = true;
_bUninstall = false;
connect(pty(), SIGNAL(readyRead()), this, SLOT(dataReceived()));
setPtyChannels(KPtyProcess::AllChannels);
}
Pty::~Pty()
{
}
bool Pty::isTerminalRemoved()
{
QFile terminalExecFile("/usr/bin/deepin-terminal");
if (terminalExecFile.exists()) {
return false;
}
return true;
}
bool isPatternAcceptable(QString strCommand, QString strPattern)
{
QString strTrimmedCmd = strCommand.trimmed();
QRegExp cmdRegExp;
cmdRegExp.setPattern(strPattern);
QRegExpValidator cmdREValidator(cmdRegExp, nullptr);
int pos = 0;
QValidator::State validateState = cmdREValidator.validate(strTrimmedCmd, pos);
return (validateState == QValidator::Acceptable);
}
//判断当前命令是否是要删除终端
bool Pty::bWillRemoveTerminal(QString strCommand)
{
QString packageName = "deepin-terminal";
QStringList strCommandList;
strCommandList.append(strCommand);
if (strCommand.contains("&&")) {
QStringList cmdList = strCommand.split("&&");
for (int i = 0; i < cmdList.size(); i++) {
QString currCmd = cmdList.at(i).trimmed();
if (currCmd.length() > 0 && currCmd.contains(packageName)) {
strCommandList.append(currCmd);
}
}
}
if (strCommand.contains(";")) {
QStringList cmdList = strCommand.split(";");
for (int i = 0; i < cmdList.size(); i++) {
QString currCmd = cmdList.at(i).trimmed();
if (currCmd.length() > 0 && currCmd.contains(packageName)) {
strCommandList.append(currCmd);
}
}
}
QList<bool> acceptableList;
QStringList packageNameList;
packageNameList << packageName;
for (int i = 0; i < strCommandList.size(); i++) {
QString strCurrCommand = strCommandList.at(i);
for (int j = 0; j < packageNameList.size(); j++) {
QString packageName = packageNameList.at(j);
QString removePattern = QString("sudo\\s+apt-get\\s+remove\\s+%1").arg(packageName);
acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
removePattern = QString("sudo\\s+apt\\s+remove\\s+%1").arg(packageName);
acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
/******** Modify by nt001000 renfeixiang 2020-05-27:修改 放到bWillPurgeTerminal函数中 Begin***************/
// removePattern = QString("sudo\\s+dpkg\\s+-P\\s+%1").arg(packageName);
// acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
/******** Modify by nt001000 renfeixiang 2020-05-27:修改 放到bWillPurgeTerminal函数中 End***************/
removePattern = QString("sudo\\s+dpkg\\s+-r\\s+%1").arg(packageName);
acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
removePattern = QString("sudo\\s+rm\\s+.+\\s+/usr/bin/deepin-terminal");
acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
removePattern = QString("sudo\\s+rm\\s+/usr/bin/deepin-terminal");
acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
}
}
return acceptableList.contains(true);
}
/******** Add by nt001000 renfeixiang 2020-05-27:增加 Purge卸载命令的判断,显示不同的卸载提示框 Begin***************/
bool Pty::bWillPurgeTerminal(QString strCommand)
{
QString packageName = "deepin-terminal";
QStringList strCommandList;
strCommandList.append(strCommand);
if (strCommand.contains("&&")) {
QStringList cmdList = strCommand.split("&&");
for (int i = 0; i < cmdList.size(); i++) {
QString currCmd = cmdList.at(i).trimmed();
if (currCmd.length() > 0 && currCmd.contains(packageName)) {
strCommandList.append(currCmd);
}
}
}
if (strCommand.contains(";")) {
QStringList cmdList = strCommand.split(";");
for (int i = 0; i < cmdList.size(); i++) {
QString currCmd = cmdList.at(i).trimmed();
if (currCmd.length() > 0 && currCmd.contains(packageName)) {
strCommandList.append(currCmd);
}
}
}
QList<bool> acceptableList;
QStringList packageNameList;
packageNameList << packageName;
for (int i = 0; i < strCommandList.size(); i++) {
QString strCurrCommand = strCommandList.at(i);
for (int j = 0; j < packageNameList.size(); j++) {
QString packageName = packageNameList.at(j);
QString removePattern = QString("sudo\\s+apt-get\\s+purge\\s+%1").arg(packageName);
acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
removePattern = QString("sudo\\s+apt-get\\s+purge\\s+-y\\s+%1").arg(packageName);
acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
removePattern = QString("sudo\\s+apt-get\\s+remove\\s+--purge\\s+%1").arg(packageName);
acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
removePattern = QString("sudo\\s+apt-get\\s+--purge\\s+remove\\s+%1").arg(packageName);
acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
removePattern = QString("sudo\\s+apt\\s+purge\\s+%1").arg(packageName);
acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
removePattern = QString("sudo\\s+apt\\s+purge\\s+-y\\s+%1").arg(packageName);
acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
removePattern = QString("sudo\\s+apt\\s+remove\\s+--purge\\s+%1").arg(packageName);
acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
removePattern = QString("sudo\\s+apt\\s+--purge\\s+remove\\s+%1").arg(packageName);
acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
removePattern = QString("sudo\\s+dpkg\\s+-P\\s+%1").arg(packageName);
acceptableList << isPatternAcceptable(strCurrCommand, removePattern);
}
}
return acceptableList.contains(true);
}
/******** Add by nt001000 renfeixiang 2020-05-27:增加 Purge卸载命令的判断,显示不同的卸载提示框 End***************/
void Pty::sendData(const char *data, int length, const QTextCodec *codec)
{
_textCodec = codec;
if (!length) {
return;
}
//判断是否是点了自定义命令面板列表项触发的命令
bool isCustomCommand = false;
QString currCommand = QString::fromLatin1(data);
if (currCommand.length() > 0 && currCommand.endsWith('\n')) {
isCustomCommand = true;
}
_isCommandExec = false;
_bNeedBlockCommand = false;
//检测到按了回车键
if (((*data) == '\r' || isCustomCommand) && _bUninstall == false) {
_isCommandExec = true;
QString strCurrCommand = SessionManager::instance()->getCurrShellCommand(_sessionId);
if (isCustomCommand) {
strCurrCommand = currCommand;
}
//检测到当前命令是代码中通过sendText发给终端的(而不是用户手动输入的命令)
bool isSendByRemoteManage = this->property("isSendByRemoteManage").toBool();
if (isSendByRemoteManage && strCurrCommand.startsWith("expect -f")) {
_bNeedBlockCommand = true;
//立即修改回false,防止误认其他命令
this->setProperty("isSendByRemoteManage", QVariant(false));
}
/******** Modify by nt001000 renfeixiang 2020-05-27:修改 根据remove和purge卸载命令,发送信号不同参数值 Begin***************/
bool bPurgeTerminal = bWillPurgeTerminal(strCurrCommand);
bool bRemoveTerminal = bWillRemoveTerminal(strCurrCommand);
if (!isTerminalRemoved() && (bPurgeTerminal || bRemoveTerminal)) {
QString strname = "remove";
if (bPurgeTerminal) {
strname = "purge";
}
QMetaObject::invokeMethod(this, "ptyUninstallTerminal", Qt::AutoConnection, Q_RETURN_ARG(bool, _bUninstall), Q_ARG(QString, strname));
/******** Modify by nt001000 renfeixiang 2020-05-27:修改 根据remove和purge卸载命令,发送信号不同参数值 End***************/
if (_bUninstall) {
qDebug() << "确认卸载终端!" << _bUninstall << endl;
connect(SessionManager::instance(), &SessionManager::sessionIdle, this, [ = ](bool isIdle) {
//卸载完成,关闭所有终端窗口
if (isIdle) {
if (isTerminalRemoved()) {
pclose(popen("killall deepin-terminal", "r"));
}
}
if (!isTerminalRemoved()) {
_bUninstall = false;
}
});
} else {
qDebug() << "不卸载终端!" << _bUninstall << endl;
return;
}
}
}
//为GBK/GB2312/GB18030编码,且不是输入命令执行的情况(没有按回车)
if (QString(codec->name()).toUpper().startsWith("GB") && !_isCommandExec) {
QTextCodec *utf8Codec = QTextCodec::codecForName("UTF-8");
QString unicodeData = codec->toUnicode(data);
QByteArray unicode = utf8Codec->fromUnicode(unicodeData);
if (!pty()->write(unicode.constData(), unicode.length())) {
qWarning() << "Pty::doSendJobs - Could not send input data to terminal process.";
return;
}
}
else {
if (!pty()->write(data, length)) {
qWarning() << "Pty::doSendJobs - Could not send input data to terminal process.";
return;
}
}
}
void Pty::dataReceived()
{
QByteArray data = pty()->readAll();
QString recvData = QString(data);
if (_bNeedBlockCommand) {
QString judgeData = recvData;
if (recvData.length() > 1) {
judgeData = recvData.replace("\r", "");
judgeData = judgeData.replace("\n", "");
}
//使用zsh的时候,发送过来的字符会残留一个字母"e",需要特殊处理下
if (_program.endsWith("/zsh")
&& 1 == judgeData.length()
&& judgeData.startsWith("e")
&& -1 == _receiveDataIndex) {
_receiveDataIndex = 0;
return;
}
//不显示远程登录时候的敏感信息(主要是expect -f命令跟随的明文密码)
//同时考虑了zsh的情况
if (judgeData.startsWith("expect -f")
|| judgeData.startsWith("\bexpect")
|| judgeData.startsWith("\be")
|| judgeData.startsWith("e\bexpect")
|| judgeData.startsWith("e\be")) {
_receiveDataIndex = 1;
return;
}
if (_receiveDataIndex >= 1) {
if (judgeData.contains("Press")) {
//这里需要置回false,否则后面其他命令也会被拦截
_bNeedBlockCommand = false;
_receiveDataIndex = -1;
int pressStringIndex = recvData.indexOf("Press");
if (pressStringIndex > 0) {
recvData = recvData.mid(pressStringIndex);
}
QString helpData = recvData.replace("\n", "");
recvData = "\r\n" + helpData + "\r\n";
data = recvData.toUtf8();
emit receivedData(data.constData(), data.count(), _textCodec);
}
else {
++_receiveDataIndex;
}
return;
}
}
/******** Modify by m000714 daizhengwen 2020-04-30: 处理上传下载时乱码显示命令不执行****************/
// 乱码提示信息不显示
if (recvData.contains("bash: $'\\212")
|| recvData.contains("bash: **0800000000022d:")
|| recvData.contains("**^XB0800000000022d")
|| recvData.startsWith("**\u0018B0800000000022d\r\u008A")) {
return;
}
// "\u008A"这个乱码不替换调会导致显示时有\b的效果导致命令错乱bug#23741
if (_utf8 && recvData.contains("\u008A")) {
recvData.replace("\u008A", "\b \b #");
data = recvData.toUtf8();
}
if (recvData == "rz waiting to receive.") {
recvData += "\r\n";
data = recvData.toUtf8();
}
// NOTE: 为处理编码截断的情况,需要缓存数据等待换行符 '\n' 或终端结束符 "\x1B[00m"
// 此处理仅在非UTF8编码, 且命令输出时生效
if (!_utf8) {
if (_isCommandExec) {
// 命令输出数据
int index = data.lastIndexOf('\n');
if (-1 == index) {
_waitLFBuffer.append(data);
// 判断是否包含结束符
if (_waitLFBuffer.contains("\x1B[00m")) {
emit receivedData(_waitLFBuffer.constData(), _waitLFBuffer.size(), true);
_waitLFBuffer.clear();
}
}
else if (index != data.count() - 1) {
int remainingCount = data.size() - index - 1;
// 判断是否包含结束符
if (QByteArray::fromRawData(data.constData() + index + 1, remainingCount).contains("\x1B[00m")) {
_waitLFBuffer.append(data);
emit receivedData(_waitLFBuffer.constData(), _waitLFBuffer.count(), true);
_waitLFBuffer.clear();
} else {
data.prepend(_waitLFBuffer);
emit receivedData(data.constData(), _waitLFBuffer.count() + index + 1, true);
_waitLFBuffer = data.right(remainingCount);
}
} else {
data.prepend(_waitLFBuffer);
emit receivedData(data.constData(), data.count(), true);
_waitLFBuffer.clear();
}
// 缓存数据并跳出
return;
} else {
if (!_waitLFBuffer.isEmpty()) {
emit receivedData(_waitLFBuffer.constData(), _waitLFBuffer.count(), _isCommandExec);
_waitLFBuffer.clear();
}
}
}
/********************* Modify by m000714 daizhengwen End ************************/
emit receivedData(data.constData(), data.count(), _isCommandExec);
}
void Pty::lockPty(bool lock)
{
Q_UNUSED(lock);
// TODO: Support for locking the Pty
//if (lock)
//suspend();
//else
//resume();
}
int Pty::foregroundProcessGroup() const
{
int pid = tcgetpgrp(pty()->masterFd());
if (pid != -1) {
return pid;
}
return 0;
}
void Pty::setSessionId(int sessionId)
{
_sessionId = sessionId;
}
void Pty::setupChildProcess()
{
KPtyProcess::setupChildProcess();
// reset all signal handlers
// this ensures that terminal applications respond to
// signals generated via key sequences such as Ctrl+C
// (which sends SIGINT)
struct sigaction action;
sigset_t sigset;
sigemptyset(&action.sa_mask);
sigemptyset(&sigset);
action.sa_handler = SIG_DFL;
action.sa_flags = 0;
for (int signal = 1; signal < NSIG; signal++) {
sigaction(signal, &action, nullptr);
sigaddset(&sigset, signal);
}
sigprocmask(SIG_UNBLOCK, &sigset, nullptr);
}
|