1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Copyright (c) 2014 Viktar Dubiniuk <[email protected]> |
4
|
|
|
* This file is licensed under the Affero General Public License version 3 or |
5
|
|
|
* later. |
6
|
|
|
* See the COPYING-README file. |
7
|
|
|
*/ |
8
|
|
|
|
9
|
|
|
|
10
|
|
|
namespace OCA\Files_Antivirus\Scanner; |
11
|
|
|
|
12
|
|
|
use OCA\Files_Antivirus\AppConfig; |
13
|
|
|
use OCP\ILogger; |
14
|
|
|
|
15
|
|
|
class Daemon extends AbstractScanner { |
16
|
|
|
|
17
|
|
|
public function __construct(AppConfig $config, ILogger $logger) { |
18
|
|
|
parent::__construct($config, $logger); |
19
|
|
|
|
20
|
|
|
$avHost = $this->appConfig->getAvHost(); |
21
|
|
|
$avPort = $this->appConfig->getAvPort(); |
22
|
|
|
$checks = [ |
23
|
|
|
'hostname' => $avHost, |
24
|
|
|
'port' => $avPort |
25
|
|
|
]; |
26
|
|
|
$errors = []; |
27
|
|
|
foreach ($checks as $key => $check) { |
28
|
|
|
if ($check === '') { |
29
|
|
|
$errors[] = sprintf( |
30
|
|
|
'Daemon mode requires a %s but it is empty.', |
31
|
|
|
$key |
32
|
|
|
); |
33
|
|
|
} |
34
|
|
|
} |
35
|
|
|
|
36
|
|
|
if (count($errors) > 0) { |
37
|
|
|
throw new InitException( |
38
|
|
|
'The app is not configured properly. ' . implode(' ', $errors) |
39
|
|
|
); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
$this->writeHandle = @fsockopen($avHost, $avPort); |
43
|
|
|
if (!$this->getWriteHandle()) { |
44
|
|
|
throw new InitException( |
45
|
|
|
sprintf( |
46
|
|
|
'Could not connect to host "%s" on port %d', $avHost, $avPort |
47
|
|
|
) |
48
|
|
|
); |
49
|
|
|
} |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
public function initScanner(){ |
53
|
|
|
parent::initScanner(); |
54
|
|
|
|
55
|
|
|
// request scan from the daemon |
56
|
|
|
@fwrite($this->getWriteHandle(), "nINSTREAM\n"); |
|
|
|
|
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
protected function shutdownScanner(){ |
60
|
|
|
@fwrite($this->getWriteHandle(), pack('N', 0)); |
|
|
|
|
61
|
|
|
$response = fgets($this->getWriteHandle()); |
62
|
|
|
$this->logger->debug( |
63
|
|
|
'Response :: ' . $response, |
64
|
|
|
['app' => 'files_antivirus'] |
65
|
|
|
); |
66
|
|
|
@fclose($this->getWriteHandle()); |
|
|
|
|
67
|
|
|
|
68
|
|
|
$this->status->parseResponse($response); |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
protected function prepareChunk($data){ |
72
|
|
|
$chunkLength = pack('N', strlen($data)); |
73
|
|
|
return $chunkLength . $data; |
74
|
|
|
} |
75
|
|
|
} |
76
|
|
|
|
If you suppress an error, we recommend checking for the error condition explicitly: