ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ilVirusScannerSophos Class Reference

Interface to the sophos virus protector. More...

+ Inheritance diagram for ilVirusScannerSophos:
+ Collaboration diagram for ilVirusScannerSophos:

Public Member Functions

 __construct ($a_scancommand, $a_cleancommand)
 Constructor public. More...
 
 scanFile ($a_filepath, $a_origname="")
 scan a file for viruses More...
 
 cleanFile ($a_filepath, $a_origname="")
 clean an infected file More...
 
- Public Member Functions inherited from ilVirusScanner
 __construct ($a_scancommand, $a_cleancommand)
 Constructor public. More...
 
 scanBuffer ($buffer)
 
 scanFile ($a_filepath, $a_origname="")
 scan a file for viruses needs to be redefined in child classes here it simulates a scan "infected.txt" or "cleanable.txt" are expected to be infected More...
 
 cleanFile ($a_filepath, $a_origname="")
 clean an infected file needs to be redefined in child classes here it simulates a clean "cleanable.txt" is expected to be cleanable More...
 
 fileCleaned ()
 returns wether file has been cleaned successfully or not More...
 
 logScanResult ()
 write the result of the last scan to the log public More...
 
 logCleanResult ()
 write the result of the last clean to the log public More...
 
 getScanResult ()
 get the pure output of the external scan More...
 
 getCleanResult ()
 get the pure output of the external scan More...
 
 getScanMessage ()
 get a located message with the result from the last scan More...
 
 getCleanMessage ()
 get a located message with the result from the last clean More...
 
 getScanZipFiles ()
 get info if class can scan ZIP files More...
 

Additional Inherited Members

- Data Fields inherited from ilVirusScanner
 $type
 
 $scanZipFiles
 
 $scanCommand
 
 $cleanCommand
 
 $scanFilePath
 
 $scanFileOrigName
 
 $cleanFilePath
 
 $cleanFileOrigName
 
 $scanFileIsInfected
 
 $cleanFileIsCleaned
 
 $scanResult
 
 $cleanResult
 
 $ilias
 
 $lng
 
 $log
 
- Protected Member Functions inherited from ilVirusScanner
 scanFileFromBuffer ($buffer)
 
 createBufferFile ($buffer)
 
 removeBufferFile ($bufferFile)
 

Detailed Description

Interface to the sophos virus protector.

Author
Fred Neumann fred..nosp@m.neum.nosp@m.ann@f.nosp@m.im.u.nosp@m.ni-er.nosp@m.lang.nosp@m.en.de
Version
$Id$

Definition at line 13 of file class.ilVirusScannerSophos.php.

Constructor & Destructor Documentation

◆ __construct()

ilVirusScannerSophos::__construct (   $a_scancommand,
  $a_cleancommand 
)

Constructor public.

Parameters
stringvirus scanner command

Definition at line 20 of file class.ilVirusScannerSophos.php.

21  {
22  parent::__construct($a_scancommand, $a_cleancommand);
23  $this->type = "sophos";
24  $this->scanZipFiles = true;
25  }

Member Function Documentation

◆ cleanFile()

ilVirusScannerSophos::cleanFile (   $a_filepath,
  $a_origname = "" 
)

clean an infected file

Parameters
stringpath of file to check
stringoriginal name of the file to check
Returns
string clean message (empty if not cleaned) public

Definition at line 109 of file class.ilVirusScannerSophos.php.

References ilVirusScanner\$cleanResult, $out, $ret, and ilVirusScanner\logCleanResult().

110  {
111  // This function should:
112  // - call the external cleaner
113  // - set cleanFilePath to a_filepath
114  // - set cleanFileOrigName to a_origname
115  // - set cleanFileIsCleaned according the clean result
116  // - set cleanResult to the cleaner output message
117  // - call logCleanResult in any case
118  // - return the cleanResult, if file is cleaned
119  // - return an empty string, if file is not cleaned
120 
121  $this->cleanFilePath = $a_filepath;
122  $this->cleanFileOrigName = $a_origname;
123 
124  // Call of sweep from Sophos (www.sophos.com)
125  // -di: Disinfect infected items
126  // -nc: Don't ask for confirmation before disinfection/deletion
127  // -ss: Don't display anything except on error or virus
128  // -eec: Use extended error codes
129  // -archive: sweep inside archives
130 
131  $cmd = $this->cleanCommand . " -di -nc -ss -eec -archive " . $a_filepath . " 2>&1";
132  exec($cmd, $out, $ret);
133  $this->cleanResult = implode("\n", $out) . " [" . $ret . "]";
134 
135  // always log the result from a clean attempt
136  $this->logCleanResult();
137 
138  // Extended error codes from sweep:
139  // 0 If no errors are encountered and no viruses are found.
140  // 8 If survivable errors have occurred.
141  // 12 If compressed files have been found and decompressed.
142  // 16 If compressed files have been found and not decompressed.
143  // 20 If viruses have been found and disinfected.
144  // 24 If viruses have been found and not disinfected.
145  // 28 If viruses have been found in memory.
146  // 32 If there has been an integrity check failure.
147  // 36 If unsurvivable errors have occurred.
148  // 40 If execution has been interrupted.
149  if ($ret == 20) {
150  $this->cleanFileIsCleaned = true;
151  return $this->cleanResult;
152  } else {
153  $this->cleanFileIsCleaned = false;
154  return "";
155  }
156  }
logCleanResult()
write the result of the last clean to the log public
$ret
Definition: parser.php:6
+ Here is the call graph for this function:

◆ scanFile()

ilVirusScannerSophos::scanFile (   $a_filepath,
  $a_origname = "" 
)

scan a file for viruses

Parameters
stringpath of file to check
stringoriginal name of the file to ckeck
Returns
string virus message (empty if not infected) public

Definition at line 34 of file class.ilVirusScannerSophos.php.

References $out, $ret, ilVirusScanner\$scanResult, and ilVirusScanner\logScanResult().

35  {
36  // This function should:
37  // - call the external scanner for a_filepath
38  // - set scanFilePath to a_filepath
39  // - set scanFileOrigName to a_origname
40  // - set scanFileIsInfected according the scan result
41  // - set scanResult to the scanner output message
42  // - call logScanResult() if file is infected
43  // - return the scanResult, if file is infected
44  // - return an empty string, if file is not infected
45 
46  $this->scanFilePath = $a_filepath;
47  $this->scanFileOrigName = $a_origname;
48 
49  // Call of scan_file from Sophie (www.vanja.com/tools/sophie)
50  // sophie must run as a process
51  $cmd = $this->scanCommand . " " . $a_filepath . " 2>&1";
52  exec($cmd, $out, $ret);
53  $this->scanResult = implode("\n", $out);
54 
55  // sophie could be called
56  if ($ret == 0) {
57  if (preg_match("/FILE INFECTED/", $this->scanResult)) {
58  $this->scanFileIsInfected = true;
59  $this->logScanResult();
60  return $this->scanResult;
61  } else {
62  $this->scanFileIsInfected = false;
63  return "";
64  }
65  }
66 
67  // sophie has failed (probably the daemon doesn't run)
68  $this->log->write("ERROR (Virus Scanner failed): "
69  . $this->scanResult
70  . "; COMMAMD=" . $cmd);
71 
72  // try fallback: scan by cleaner command (sweep)
73  // -ss: Don't display anything except on error or virus
74  // -archive: sweep inside archives
75  unset($out, $ret);
76  $cmd = $this->cleanCommand . " -ss -archive " . $a_filepath . " 2>&1";
77  exec($cmd, $out, $ret);
78  $this->scanResult = implode("\n", $out) . " [" . $ret . "]";
79 
80  // error codes from sweep:
81  // 0 If no errors are encountered and no viruses are found.
82  // 1 If the user interrupts SWEEP (usually by pressing control-C) or kills the process.
83  // 2 If some error preventing further execution is discovered.
84  // 3 If viruses or virus fragments are discovered.
85  if ($ret == 0) {
86  $this->scanFileIsCleaned = false;
87  return "";
88  } elseif ($ret == 3) {
89  $this->scanFileIsInfected = true;
90  $this->logScanResult();
91  return $this->scanResult;
92  } else {
93  $this->ilias->raiseError(
94  $this->lng->txt("virus_scan_error") . " "
95  . $this->lng->txt("virus_scan_message") . " "
97  $this->ilias->error_obj->WARNING
98  );
99  }
100  }
logScanResult()
write the result of the last scan to the log public
redirection script todo: (a better solution should control the processing via a xml file) ...
$ret
Definition: parser.php:6
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: