85 lines
2.6 KiB
C#
85 lines
2.6 KiB
C#
|
/*
|
|||
|
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
|
|||
|
*
|
|||
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|||
|
*/
|
|||
|
|
|||
|
using System.Security.AccessControl;
|
|||
|
using System.Security.Principal;
|
|||
|
using System.Threading;
|
|||
|
using SafeExamBrowser.Contracts.Communication.Hosts;
|
|||
|
using SafeExamBrowser.Contracts.Core.OperationModel;
|
|||
|
using SafeExamBrowser.Contracts.Logging;
|
|||
|
|
|||
|
namespace SafeExamBrowser.Service.Operations
|
|||
|
{
|
|||
|
internal class SessionInitializationOperation : SessionOperation
|
|||
|
{
|
|||
|
private ILogger logger;
|
|||
|
private IServiceHost serviceHost;
|
|||
|
|
|||
|
public SessionInitializationOperation(ILogger logger, IServiceHost serviceHost, SessionContext sessionContext) : base(sessionContext)
|
|||
|
{
|
|||
|
this.logger = logger;
|
|||
|
this.serviceHost = serviceHost;
|
|||
|
}
|
|||
|
|
|||
|
public override OperationResult Perform()
|
|||
|
{
|
|||
|
logger.Info("Initializing new session...");
|
|||
|
|
|||
|
serviceHost.AllowConnection = false;
|
|||
|
logger.Info($" -> Client-ID: {Context.Configuration.AppConfig.ClientId}");
|
|||
|
logger.Info($" -> Runtime-ID: {Context.Configuration.AppConfig.RuntimeId}");
|
|||
|
logger.Info($" -> Session-ID: {Context.Configuration.SessionId}");
|
|||
|
|
|||
|
InitializeEventWaitHandle();
|
|||
|
|
|||
|
return OperationResult.Success;
|
|||
|
}
|
|||
|
|
|||
|
public override OperationResult Revert()
|
|||
|
{
|
|||
|
logger.Info("Finalizing current session...");
|
|||
|
|
|||
|
var success = Context.EventWaitHandle?.Set() == true;
|
|||
|
|
|||
|
if (success)
|
|||
|
{
|
|||
|
logger.Info("Successfully informed runtime about session termination.");
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
logger.Error("Failed to inform runtime about session termination!");
|
|||
|
}
|
|||
|
|
|||
|
Context.Configuration = null;
|
|||
|
serviceHost.AllowConnection = true;
|
|||
|
|
|||
|
return success ? OperationResult.Success : OperationResult.Failed;
|
|||
|
}
|
|||
|
|
|||
|
private void InitializeEventWaitHandle()
|
|||
|
{
|
|||
|
var securityIdentifier = new SecurityIdentifier(WellKnownSidType.BuiltinUsersSid, null);
|
|||
|
var accessRule = new EventWaitHandleAccessRule(securityIdentifier, EventWaitHandleRights.Synchronize, AccessControlType.Allow);
|
|||
|
var security = new EventWaitHandleSecurity();
|
|||
|
|
|||
|
security.AddAccessRule(accessRule);
|
|||
|
|
|||
|
if (Context.EventWaitHandle != null)
|
|||
|
{
|
|||
|
logger.Info("Closing service event from previous session...");
|
|||
|
Context.EventWaitHandle.Close();
|
|||
|
logger.Info("Service event successfully closed.");
|
|||
|
}
|
|||
|
|
|||
|
logger.Info("Attempting to create new service event...");
|
|||
|
Context.EventWaitHandle = new EventWaitHandle(false, EventResetMode.AutoReset, Context.Configuration.AppConfig.ServiceEventName, out _, security);
|
|||
|
logger.Info("Service event successfully created.");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|