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
|
/*
* Copyright 2013 Red Hat Inc., Durham, North Carolina.
* All Rights Reserved.
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*
* Authors:
* Martin Preisler <mpreisle@redhat.com>
*/
#ifndef SCAP_WORKBENCH_MAIN_WINDOW_H_
#define SCAP_WORKBENCH_MAIN_WINDOW_H_
#include "ForwardDecls.h"
#include "Scanner.h"
#include <QMainWindow>
#include <QThread>
#include <QMenu>
#include <QMessageBox>
#include <QFileSystemWatcher>
extern "C"
{
#include <xccdf_benchmark.h>
}
#include "ui_MainWindow.h"
/**
* The central "singleton without global access" class representing
* aplication's main window.
*/
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget* parent = 0);
virtual ~MainWindow();
inline QSettings* getQSettings()
{
return mQSettings;
}
void setSkipValid(bool skipValid);
public slots:
/**
* @brief Clears everything produced during the scan
*/
void clearResults();
/**
* @brief Opens a specific file
*/
void openFile(const QString& path, bool reload = false);
void openSSGDialog(const QString& customDismissLabel = "");
void openTailoringFile(const QString& path);
/**
* @brief Opens a file dialog and makes user select a file or exit the app
*
* The file dialog keeps opening until a file is chosen or user
* pressed Cancel.
*/
void openFileDialog();
/**
* @brief Queues a file dialog to be opened later when in the event loop
*
* This avoids having a modal dialog block event queues.
* @see MainWindow::openFileDialog
*/
void openFileDialogAsync();
/**
* @brief Queues the MainWindow to be closed later when in the event loop
*
* This avoids the window closing before the event loop is entered.
* @see MainWindow::closeMainWindow
*/
void closeMainWindowAsync();
/**
* @bried Reloads the opened content
*
*
* If a content file is opened, it might have changed on disk. This
* allows the user to update reload it in case it has changed.
*/
void reloadContent();
/**
* @brief Checks whether a file is currently opened
*/
bool fileOpened() const;
/**
* @brief Retrieves full (absolute) path of opened file
*
* @note Returns empty string if no file is opened
*/
QString getOpenedFilePath() const;
/**
* @brief Automatically determines scanner mode based on checkbox state
*/
void scanAsyncAutoMode();
/**
* @brief Starts scanning in a separate thread and returns
*
* @see MainWindow::cancelScanAsync()
*
* This method asserts that session has already been loaded
* and that scanning is not running currently (in other words:
* scanning has to end or be canceled before scanAsync can be
* called again).
*/
void scanAsync(ScannerMode scannerMode = SM_SCAN);
/**
* @note This will only work if scan results are still in ResultViewer.
*
* @see MainWindow::scanAndRemediateAsync
*/
void offlineRemediateAsync();
/**
* @brief Cancels scanning in separate thread
*
* This method asserts that session has already been loaded.
* It is not recommended but you can call this method even if scan
* is not running at the time. The reason why this is handled is to
* deal with scan finished/canceled race that could happen (at least in theory).
*/
void cancelScanAsync();
/**
* @brief calls setEnable(true)
*
* @internal Required because of signal slot mechanism binding in TailoringWindow
*/
void enable();
protected:
/// reimplemented to make sure we cancel any scanning before closing the window
virtual void closeEvent(QCloseEvent* event);
private:
/**
* @brief Closes currently opened file (if any) and resets the interface
*
* If you want to make the editor close current file and make the
* user open a new one, use MainWindow::openFileDialog, this method is
* intended to be used internally.
*
* @see MainWindow::openFileDialog
*/
void closeFile();
/**
* @brief Reloads the session, datastream split is potentially done again
*
* The main purpose of this method is to allow to reload the session when
* parameters that affect "loading" of the session change. These parameters
* are mainly datastream ID and component ID.
*/
void reloadSession();
public: // TailoringWindow calls this
void notifyTailoringFinished(bool newProfile, bool changesConfirmed);
private:
/**
* @brief Refreshes items of the profile combobox with data from the session
*
* @note This method does attempt to "keep" the previous selection if possible.
*/
void refreshProfiles();
/**
* @brief Refreshes the checklists combobox from scratch
*
* @note Does not keep the previous selection!
* @note Throws exceptions!
*/
void refreshChecklists();
/**
* @brief Destroys the scanning thread and associated data
*
* Also resets UI to a state where scanning is not running.
*/
void cleanupScanThread();
/// UI designed in Qt Designer
Ui_MainWindow mUI;
/// QSettings for scap-workbench
QSettings* mQSettings;
/// Qt Dialog that displays messages (errors, warnings, info)
/// Gets shown whenever a warning or error is emitted
DiagnosticsDialog* mDiagnosticsDialog;
/// Qt Dialog that shows command line arguments used for evaluation
/// This is shown when user checks the "dry run" checkbox
CommandLineArgsDialog* mCommandLineArgsDialog;
/// Needed for SCAP RPM opening functionality
RPMOpenHelper* mRPMOpenHelper;
/// If true, openscap validation is skipped
bool mSkipValid;
/// This is our central point of interaction with openscap
ScanningSession* mScanningSession;
/// Thread that handles scanning and/or remediating, NULL if none is underway
QThread* mScanThread;
/**
* This is a scanner suitable for scanning target as specified by user
* @see Scanner
*/
Scanner* mScanner;
/// Remembers old tailoring combobox ID in case we want to revert to it when user cancels
int mOldTailoringComboBoxIdx;
QVariant mLoadedTailoringFileUserData;
/// If true, the profile combobox change signal is ignored, this avoids unnecessary profile refreshes
bool mIgnoreProfileComboBox;
/// Implement watching of original XCCDF/DS
QFileSystemWatcher* mFSWatch;
QString mFSLastSeen;
signals:
/**
* @brief We signal this to show the dialog
*
* This is to make sure we open the dialog in the event loop, not
* before it even starts.
*/
void showOpenFileDialog();
/**
* @brief We signal this to close the MainWindow
*
* This is to make sure we close the MainWindow during the event loop, not
* before it even starts.
*/
void closeMainWindow();
/**
* @brief This is signaled when scanning is canceled
*
* Qt handles thread messaging for us via the slot & signal mechanism.
* The event loop of MainWindow runs in one thread, the event loop of
* the scanner runs in another thread. Both are basically synchronization
* queues. This is why we emit this signal instead of calling scanner's
* methods directly.
*
* Instead of emitting this signal directly, please use
* MainWindow::cancelScanAsync()
*/
void cancelScan();
private slots:
/// Checklist changed, we might have to reload session
void checklistComboboxChanged(int index);
/// Tailoring file changed, we might have to reload session
void tailoringFileComboboxChanged(int index);
/// Profile change, we simply change the profile id in the session
void profileComboboxChanged(int index);
private:
/**
* @brief Refreshes the list of tailoring profiles and loads the first tailored one
*/
void refreshTailoringProfiles();
/**
* @brief Retrieves number of currently selected rules
*
* Do not rely on this number, it is a fairly reliable estimate
* but it is still an estimate!
*
* @see refreshSelectedRulesTree
*/
unsigned int getSelectedRulesCount();
/**
* @brief Ask user to proceed with closing old file due to openning of new one
*
* @return user answer
*/
QMessageBox::StandardButton openNewFileQuestionDialog(const QString& oldFilepath);
private slots:
/**
* @brief This slot gets triggered by the scanner to notify of a new result
*
* Used for progress estimation.
*/
void scanProgressReport(const QString& rule_id, const QString& result);
/**
* @brief Scanner triggers this to show a message about progress
*
* Example: Connecting to remote target..., Copying input file..., etc.
* No action is required by the user upon receiving this message.
*/
void scanInfoMessage(const QString& message);
/**
* @brief Scanner triggers this to show a warning message
*
* Scanner must continue to scan after triggering this, the dialog
* will be modal but scanning will continue in the background and
* results will be visible. User can resume normal operation after
* dismissing the warning dialog.
*/
void scanWarningMessage(const QString& message);
/**
* @brief Scanner triggers this to show an error message
*
* Scanner might continue to scan after triggering this, the dialog
* will be modal but scanning may continue in the background and
* results will be visible.
*
* However scanner is expected to trigger scanCanceled after triggering
* the error report.
*/
void scanErrorMessage(const QString& message);
/**
* @brief Scanner triggers this after cancelation is complete
*
* @note It is most likely that user pressed the "Cancel" button to
* trigger this but sometimes scanner will trigger cancelation when
* unrecoverable errors are encountered.
*/
void scanCanceled();
/**
* @brief Scanner triggers this after scan successfuly finishes
*/
void scanFinished();
/**
* @brief Triggered when scanning ends
*
* @param canceled if true the scanning was canceled, otherwise it finished
*/
void scanEnded(bool canceled);
void openCustomizationFile();
void inheritAndEditProfile(bool shadowed);
TailoringWindow* editProfile(bool newProfile);
/**
* @brief If current profile has been tailored, it gets edited, else it gets tailored with new ID
*
* The goal of this negotiation function is to make it easier to use
* scap-workbench. It is one less thing to worry about and should be
* what users need in 99% of cases.
*/
void customizeProfile();
void saveTailoring();
void saveIntoDirectory();
void saveAsRPM();
void markUnsavedTailoringChanges();
void markNoUnsavedTailoringChanges();
void markRemoveLoadedTailoringFile();
void markLoadedTailoringFile(const QString& filePath);
bool unsavedTailoringChanges() const;
/**
* @brief Slot handler for notifying user that opened files changed
*/
void fileChanged(const QString& path);
public:
QString getDefaultSaveDirectory();
void notifySaveActionConfirmed(const QString& path, bool isDir);
private slots:
void showGuide();
/**
* @brief Users QDesktopServices to start browser and show user manual in it
*
* This may not do anything in case user has invalid desktop environment
* configuration.
*/
void showUserManual();
/**
* @brief Displays a dialog with information about SCAP Workbench
*
* This is the customary Help->About dialog. Shows version info,
* short description of the application, etc...
*/
void about();
/**
* @brief Displays a dialog with information about Qt version used
*
* Just a delegate that calls QMessageBox::aboutQt(..)
*/
void aboutQt();
/**
* @brief Toggles all rule results description state
*
* Toogles exhibition of description of all rules between collapsed/expanded
*/
void toggleRuleResultsExpanded();
void toggleRuleResultsExpanded(bool checked);
/// Pops up a save dialog for a bash remediation (based just on the currently selected profile)
void generateBashRemediationRole();
/// Pops up a save dialog for an ansible remediation (based just on the currently selected profile)
void generateAnsibleRemediationRole();
/// Pops up a save dialog for an puppet remediation (based just on the currently selected profile)
void generatePuppetRemediationRole();
public slots:
/**
* @brief Changes state of Expand all/Collapse all button according to boolean received
*
* @param checked If true, sets actionToggleRuleResults push button to "Collapse all",
* if false, sets actionToggleRuleResults to "Expand all"
*
* @note This function does not toggles the RuleResults, just updates state of MainWindow
* according to current RuleResults state
*/
void allRuleResultsExpanded(bool checked);
private:
void setRuleResultsExpanded(bool checked);
void setActionToggleRuleResultsText(bool checked);
bool mRuleResultsExpanded;
};
#endif
|