Subversion Repositories vnag

Rev

Rev 78 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 daniel-mar 1
<?php /* <ViaThinkSoftSignature>
78 daniel-mar 2
H8RS2FtzJ6oXxHoX7qyolomkUVb5hPPq71/+xoZIME1BY1QcCif7imp/jeGKoOezw
3
YhYVmKrS0zYZG04mhfGnrMez9NcvMrtqSbBBNXZ3dsGcjkYMYq8VVbvOW9A9MOoaw
4
vVSZydPls7FxszGfPmL1M9ebZmj03TUeGbBfE+kIiw+dAMsO+rjYZmi5khwZPb6nn
5
bP+6DVMqg1blhaESl2k0Eqhe7kX9NWhZ3y0QuxGj7nVm3gFojo02TQubgRr9l2f7z
6
6QqS7jt7YSwQg2nP+3KVNBJZoXU/hTx3Bo/PaJG/9Dotp0/wmFHb6YqTkUHdP5DEu
7
M9LxOFEKNjrmPbVHPDxNPyTaoF06fI8rXI46XyUULkw1LXOUv8nzaoK3WXJzfO/74
8
o/GOMEV01Aeq0ooTdyi/ktpS43T4sYA5qod66dKTUKwUTU8IgEp/GcZnugpvlXi0b
9
U1hfF5W32Rp3vbeh37edXCMRkOw+7svvFQle5JzC+xHloW3jbzRJvfDULAd6bUrbl
10
QAy6pOEA26Sjpi5pmo5qRu3LHHXiu9V3eYpPzl2orADnyOyKiqyj8Yvw3U/cvqxwq
11
YSSxXEPYxOQN+Cl/ncUOJeNv8C+AYBU9S5aSXwQWnIl3baVbS9NL4CW9Fy2AM1/Vf
12
uMBVz3NWclUFO6qPMoaCEdVsuUSbpo6/HDXGm5kr4Yzc/lv1Q3lUKQ+a5B3ZMAfhY
13
yMKdSPnUZwQhuCxaAjpMdkVf5s2qECgT/e1psSKCOqLd9fhWQuV1eHa9gxqBL7ClS
14
m1jy8TRbSSZ6v7yQ397GDU8iyKvXCpeBs+g6VXkFd5ZM2Ajgb+uIfzPD3qPfPC+nK
15
bhsMzDwBmu444dvGC9OCNLb3efZXLSxZ6wMG2MoA7c814qrEYFokTKeMiYKCGQkx5
16
kgamyPtizgOpiis6XSKFs9GXSY0vT+q3rSCo+23xjNHPhaCjLmywDoeoeOX1tmf30
17
Blh0RrNEXgmlMuVkXaHrKAepU0K2oXhw63bRQUzcZMY1rORoML6Rro6u0PI3mT7VQ
18
6ZnnyxZgUljxpo6ZdP8XqE8oyR9P6dhmdN6xI3rYyrIDrPWsoRGCMQk/ej8eS8Ve7
19
Y1Z3hC9njExmmrZrVoymMcJNDK99jBQCs49qXA+OuCRbfgU0B12FwEUy8xDnUlzY9
20
t6b1fwHL2G25m3wMXzk0CHnQWOoAS+3zG+nlfF1RRbx0U3TC4O3Epy30zC/v/TvV7
21
73uEr/LLezls3KBddOI1FRkWC5CoERg9Bi4XoLFiZqpF/eOWsRaYzrwqv0d9sCgnU
22
RFzD9MdFjT3EiQDnlvbf9nTtN3Dpw1IaYFb/u/4AhjugS2p1XFIZpYP4U1J6wL5Vl
23
Q==
4 daniel-mar 24
</ViaThinkSoftSignature> */ ?>
2 daniel-mar 25
<?php
26
 
27
/*
28
 
67 daniel-mar 29
      VNag - Nagios Framework for PHP                  (C) 2014-2023
2 daniel-mar 30
      __     ___      _____ _     _       _     ____         __ _
31
      \ \   / (_) __ |_   _| |__ (_)_ __ | | __/ ___|  ___  / _| |_
32
       \ \ / /| |/ _` || | | '_ \| | '_ \| |/ /\___ \ / _ \| |_| __|
33
        \ V / | | (_| || | | | | | | | | |   <  ___) | (_) |  _| |_
34
         \_/  |_|\__,_||_| |_| |_|_|_| |_|_|\_\|____/ \___/|_|  \__|
35
 
36
      Developed by Daniel Marschall             www.viathinksoft.com
37
      Licensed under the terms of the Apache 2.0 license
76 daniel-mar 38
      Revision 2023-10-13
2 daniel-mar 39
 
40
*/
41
 
42
/****************************************************************************************************
43
 
44
Introduction:
45
 
46
        VNag is a small framework for Nagios Plugin Developers who use PHP CLI scripts.
47
        The main purpose of VNag is to make the development of plugins as easy as possible, so that
48
        the developer can concentrate on the actual work. VNag will try to automate as much
49
        as possible.
50
 
51
        Please note that your script should include the +x chmod flag:
52
                chmod +x myscript.php
53
 
54
        Please see the the demo/ folder for a few examples how to use this framework.
55
 
56
Arguments:
57
 
58
        Example:
59
                $this->addExpectedArgument($argSilent = new VNagArgument('s', 'silent', VNagArgument::VALUE_FORBIDDEN, null,       'Description for the --silent output', $defaultValue));
60
                $this->addExpectedArgument($argHost   = new VNagArgument('H', 'host',   VNagArgument::VALUE_REQUIRED,  'hostname', 'Description for the --host output',   $defaultValue));
61
 
62
        In the example above, the two argument objects $argSilent and $argHost were created.
63
        With these objects of the type VNagArgument, you can query the argument's value,
64
        how often the argument was passed and if it is set:
65
 
66
                $argSilent->count();      // 1 if "-s" is passed, 2 if "-s -s" is passed etc.
67
                $argSilent->available();  // true if "-s" is passed, false otherwise
68
                $argHost->getValue();     // "example.com" if "-h example.com" is passed
69
 
70
        It is recommended that you pass every argument to $this->addExpectedArgument() .
71
        Using this way, VNag can generate a --help page for you, which lists all your arguments.
72
        Future version of VNag may also require to have a complete list of all valid arguments,
73
        since the Nagios Development Guidelines recommend to output the usage information if an illegal
74
        argument is passed. Due to PHP's horrible bad implementation of GNU's getopt(), this check for
75
        unknown arguments is currently not possible, and the developer of VNag does not want to use
76
        dirty hacks/workarounds, which would not match to all argument notation variations/styles.
77
        See: https://bugs.php.net/bug.php?id=68806
78
             https://bugs.php.net/bug.php?id=65673
79
             https://bugs.php.net/bug.php?id=26818
80
 
81
Setting the status:
82
 
83
        You can set the status with:
84
                $this->setStatus(VNag::STATUS_OK);
85
        If you don't set a status, the script will return Unknown instead.
86
        setStatus($status) will keep the most severe status, e.g.
87
                $this->setStatus(VNag::STATUS_CRITICAL);
88
                $this->setStatus(VNag::STATUS_OK);
89
        will result in a status "Critical".
90
        If you want to completely overwrite the status, use $force=true:
91
                $this->setStatus(VNag::STATUS_CRITICAL);
92
                $this->setStatus(VNag::STATUS_OK, true);
93
        The status will now be "OK".
94
 
95
        Possible status codes are:
96
                (For service plugins:)
97
                VNag::STATUS_OK       = 0;
98
                VNag::STATUS_WARNING  = 1;
99
                VNag::STATUS_CRITICAL = 2;
100
                VNag::STATUS_UNKNOWN  = 3;
101
 
102
                (For host plugins:)
103
                VNag::STATUS_UP       = 0;
104
                VNag::STATUS_DOWN     = 1;
105
 
106
Output:
107
 
108
        After the callback function cbRun() of your job has finished,
109
        the framework will automatically output the results in the Nagios console output format,
110
        the visual HTML output and/or the invisible HTML output.
111
 
112
        In case of CLI invokation, the Shell exit code will be remembered and
113
        automatically returned by the shutdown handler once the script normally
114
        terminates. (In case you run different jobs, which is not recommended, the
115
        shutdown handler will output the baddest exit code).
116
 
117
        The Shell output format will be:
118
                <Service status text>: <Comma separates messages> | <whitespace separated primary performance data>
119
                "Verbose information:"
120
                <Multiline verbose output> | <Multiline secondary performance data>
121
 
122
        <Service status text> will be automatically created by VNag.
123
 
124
        Verbose information are printed below the first line. Most Nagios clients will only print the first line.
125
        If you have important output, use $this->setHeadline() instead.
126
        You can add verbose information with following method:
127
                $this->addVerboseMessage('foobar', $verbosity);
128
 
129
        Following verbosity levels are defined:
130
                VNag::VERBOSITY_SUMMARY                = 0; // always printed
131
                VNag::VERBOSITY_ADDITIONAL_INFORMATION = 1; // requires at least -v
132
                VNag::VERBOSITY_CONFIGURATION_DEBUG    = 2; // requiers at least -vv
133
                VNag::VERBOSITY_PLUGIN_DEBUG           = 3; // requiers at least -vvv
134
 
135
        All STDOUT outputs of your script (e.g. by echo) will be interpreted as "verbose" output
136
        and is automatically collected, so
137
                echo "foobar";
138
        has the same functionality as
139
                $this->addVerboseMessage('foobar', VNag::VERBOSITY_SUMMARY);
140
 
141
        You can set messages (which will be added into the first line, which is preferred for plugin outputs)
142
        using
143
                $this->setHeadline($msg, $append, $verbosity);
144
        Using the flag $append, you can choose if you want to append or replace the message.
145
 
146
        VNag will catch Exceptions of your script and will automatically end the plugin,
147
        returning a valid Nagios output.
148
 
149
Automatic handling of basic arguments:
150
 
151
        VNag will automatic handle of following CLI arguments:
152
                -?
153
                -V --version
154
                -h --help
155
                -v --verbose
156
                -t --timeout   (only works if you set declare(ticks=1) at the beginning of each of your scripts)
157
                -w --warning
158
                -c --critical
159
 
160
        You can performe range checking by using:
161
                $example_value = '10MB';
162
                $this->checkAgainstWarningRange($example_value);
163
        this is more or less the same as:
164
                $example_value = '10MB';
165
                $wr = $this->getWarningRange();
166
                if (isset($wr) && $wr->checkAlert($example_value)) {
167
                        $this->setStatus(VNag::STATUS_WARNING);
168
                }
169
 
170
        In case that your script allows ranges which can be relative and absolute, you can provide multiple arguments;
171
        $wr->checkAlert() will be true, as soon as one of the arguments is in the warning range.
172
        The check will be done in this way:
173
                $example_values = array('10MB', '5%');
174
                $this->checkAgainstWarningRange($example_values);
175
        this is more or less the same as:
176
                $example_values = array('10MB', '5%');
177
                $wr = $this->getWarningRange();
178
                if (isset($wr) && $wr->checkAlert($example_values)) {
179
                        $this->setStatus(VNag::STATUS_WARNING);
180
                }
181
 
182
        Note that VNag will automatically detect the UOM (Unit of Measurement) and is also able to convert them,
183
        e.g. if you use the range "-w 20MB:40MB", your script will be able to use $wr->checkAlert('3000KB')
184
 
185
        Please note that only following UOMs are accepted (as defined in the Plugin Development Guidelines):
186
        - no unit specified: assume a number (int or float) of things (eg, users, processes, load averages)
187
        - s, ms, us: seconds
188
        - %: percentage
189
        - B, KB, MB, TB: bytes  // NOTE: GB is not in the official development guidelines,probably due to an error, so I've added them anyway
190
        - c: a continous counter (such as bytes transmitted on an interface)
191
 
192
Multiple warning/critical ranges:
193
 
194
        The arguments -w and -c can have many different values, separated by comma.
195
        We can see this feature e.g. with the official plugin /usr/lib/nagios/plugins/check_ping:
196
        It has following syntax for the arguments -w and -c: <latency>,<packetloss>%
197
 
198
        When you are using checkAgainstWarningRange, you can set the fourth argument to the range number
199
        you would like to check (beginning with 0).
200
 
201
        Example:
202
                // -w 1MB:5MB,5%:10%
203
                $this->checkAgainstWarningRange('4MB', true, true, 0); // check value 4MB against range "1MB:5MB" (no warning)
204
                $this->checkAgainstWarningRange('15%', true, true, 1); // check value 15% gainst range "5%:10%" (gives warning)
205
 
206
Visual HTTP output:
207
 
208
        Can be enabled/disabled with $this->http_visual_output
209
 
210
        Valid values:
211
 
212
        VNag::OUTPUT_SPECIAL   = 1; // illegal usage / help page, version page
213
        VNag::OUTPUT_NORMAL    = 2;
214
        VNag::OUTPUT_EXCEPTION = 4;
215
        VNag::OUTPUT_ALWAYS    = 7;
216
        VNag::OUTPUT_NEVER     = 0;
217
 
218
Encryption and Decryption:
219
 
21 daniel-mar 220
        In case you are emitting machine-readable code in your HTTP output
2 daniel-mar 221
        (can be enabled/disabled by $this->http_invisible_output),
21 daniel-mar 222
        you can encrypt the machine-readable part of your HTTP output by
2 daniel-mar 223
        setting $this->password_out . If you want to read the information,
224
        you need to set $this->password_in at the web-reader plugin.
24 daniel-mar 225
        The visual output is not encrypted. So, if you want to hide the information,
226
        then you must not enable visual HTML output.
25 daniel-mar 227
        If you don't want to encrypt the machine-readable output,
228
        please set $this->password_out to null or empty string.
2 daniel-mar 229
 
24 daniel-mar 230
        Attention!
231
        - Encryption and decryption require the OpenSSL extension in PHP.
232
 
233
Digital signature:
234
 
2 daniel-mar 235
        You can sign the output by setting $this->privkey with a filename containing
236
        a private key created by OpenSSL. If it is encrypted, please also set
237
        $this->privkey_password .
238
        To check the signature, set $this->pubkey at your web-reader plugin with
239
        the filename of the public key file.
240
 
241
        Attention!
24 daniel-mar 242
        - Signatures require the OpenSSL extension in PHP.
2 daniel-mar 243
 
244
Performance data:
245
 
246
        You can add performance data using
247
                $this->addPerformanceData(new VNagPerformanceData($label, $value, $warn, $crit, $min, $max));
248
        or by the alternative constructor
249
                $this->addPerformanceData(VNagPerformanceData::createByString("'XYZ'=100;120;130;0;500"));
250
        $value may contain an UOM, e.g. "10MB". All other parameters may not contain an UOM.
251
 
252
Guidelines:
253
 
254
        This framework currently supports meets following guidelines:
255
        - https://nagios-plugins.org/doc/guidelines.html#PLUGOUTPUT (Plugin Output for Nagios)
256
        - https://nagios-plugins.org/doc/guidelines.html#AEN33 (Print only one line of text)
257
        - https://nagios-plugins.org/doc/guidelines.html#AEN41 (Verbose output)
258
        - https://nagios-plugins.org/doc/guidelines.html#AEN78 (Plugin Return Codes)
259
        - https://nagios-plugins.org/doc/guidelines.html#THRESHOLDFORMAT (Threshold and ranges)
260
        - https://nagios-plugins.org/doc/guidelines.html#AEN200 (Performance data)
261
        - https://nagios-plugins.org/doc/guidelines.html#PLUGOPTIONS (Plugin Options)
262
        - https://nagios-plugins.org/doc/guidelines.html#AEN302 (Option Processing)
263
          Note: The screen output of the help page will (mostly) be limited to 80 characters width; but the max recommended length of 23 lines cannot be guaranteed.
264
 
265
        This framework does currently NOT support following guidelines:
266
        - https://nagios-plugins.org/doc/guidelines.html#AEN74 (Screen Output)
267
        - https://nagios-plugins.org/doc/guidelines.html#AEN239 (Translations)
268
        - https://nagios-plugins.org/doc/guidelines.html#AEN293 (Use DEFAULT_SOCKET_TIMEOUT)
269
        - https://nagios-plugins.org/doc/guidelines.html#AEN296 (Add alarms to network plugins)
270
        - https://nagios-plugins.org/doc/guidelines.html#AEN245 (Don't execute system commands without specifying their full path)
271
        - https://nagios-plugins.org/doc/guidelines.html#AEN249 (Use spopen() if external commands must be executed)
272
        - https://nagios-plugins.org/doc/guidelines.html#AEN253 (Don't make temp files unless absolutely required)
273
        - https://nagios-plugins.org/doc/guidelines.html#AEN259 (Validate all input)
274
        - https://nagios-plugins.org/doc/guidelines.html#AEN317 (Plugins with more than one type of threshold, or with threshold ranges)
275
 
276
        We will intentionally NOT follow the following guidelines:
277
        - https://nagios-plugins.org/doc/guidelines.html#AEN256 (Don't be tricked into following symlinks)
278
          Reason: We believe that this guideline is contraproductive.
279
                  Nagios plugins usually run as user 'nagios'. It is the task of the system administrator
280
                  to ensure that the user 'nagios' must not read/write to files which are not intended
75 daniel-mar 281
                  for access by the Nagios service. Symlinks, on the other hand, are useful for several tasks.
282
                  See also https://stackoverflow.com/questions/27112949/nagios-plugins-why-not-following-symlinks
2 daniel-mar 283
 
284
VNag over HTTP:
285
 
286
        A script that uses the VNag framework can run as CLI script (normal Nagios plugin) or as web site (or both).
287
        Having the script run as website, you can include a Nagios information combined with a human friendly HTML output which can
288
        include colors, graphics (like charts) etc.
289
 
290
        For example:
291
        A script that measures traffic can have a website which shows graphs,
292
        and has a hidden Nagios output included, which can be read by a Nagios plugin that
293
        converts the hidden information on that website into an output that Nagios can evaluate.
294
 
295
        Here is a comparison of the usage and behavior of VNag in regards to CLI and HTTP calls:
296
 
297
        ------------------------------------------------------------------------------------------
298
          CLI script                                 HTTP script
299
        ------------------------------------------------------------------------------------------
300
        * "echo" will be discarded.                  * "echo" output will be discarded.
301
 
302
        * Exceptions will be handled.                * Exceptions will be handled.
303
 
304
        * outputHTML() will be ignored.              * outputHTML() will be handled.
305
          (This allows you to have the same script
306
          running as CLI and HTML)
307
 
308
        * Arguments are passed via CLI.              * Arguments are passed via $_REQUEST
309
                                                       (i.e. GET or POST)
310
 
311
        * Arguments: "-vvv"                          * Arguments: GET ?v[]=&v[]=&v[]= or POST
312
 
313
        * When run() has finished, the program       * When run() has finished, the program
314
          flow continues, although it is not           flow continues.
315
          recommended that you do anything after it.
316
          (The exit code is remembered for the
317
           shutdown handler)
318
 
319
        * Exactly 1 job must be called, resulting     * You can call as many jobs as you want.
320
          in a single output of that job.               A website can include more than one
321
                                                        Nagios output which are enumerated with
322
                                                        a serial number (0,1,2,3,...) or manual ID.
323
        ------------------------------------------------------------------------------------------
324
 
325
****************************************************************************************************/
326
 
22 daniel-mar 327
if (!VNag::is_http_mode()) error_reporting(E_ALL);
2 daniel-mar 328
 
329
# If you want to use -t/--timeout with your module, you must add following line in your module code:
330
// WONTFIX: declare(ticks=1) is deprecated? http://www.hackingwithphp.com/4/21/0/the-declare-function-and-ticks
331
// WONTFIX: check is the main script used declare(ticks=1). (Not possible in PHP)
332
declare(ticks=1);
333
 
334
# Attention: The -t/--timeout parameter does not respect the built-in set_time_limit() of PHP.
335
# PHP should set this time limit to infinite.
336
set_time_limit(0);
337
 
13 daniel-mar 338
define('VNAG_JSONDATA_V1', 'oid:1.3.6.1.4.1.37476.2.3.1.1'); // {iso(1) identified-organization(3) dod(6) internet(1) private(4) enterprise(1) 37476 products(2) vnag(3) jsondata(1) v1(1)}
2 daniel-mar 339
 
340
// Set this to an array to overwrite getopt() and $_REQUEST[], respectively.
341
// Useful for mock tests.
342
$OVERWRITE_ARGUMENTS = null;
343
 
344
function _empty($x) {
345
        // Returns true for '' or null. Does not return true for value 0 or '0' (like empty() does)
67 daniel-mar 346
        return is_null($x) || (trim($x) == '');
2 daniel-mar 347
}
348
 
349
abstract class VNag {
76 daniel-mar 350
        /*public*/ const VNAG_VERSION = '2023-10-13';
2 daniel-mar 351
 
352
        // Status 0..3 for STATUSMODEL_SERVICE (the default status model):
353
        # The guideline states: "Higher-level errors (such as name resolution errors, socket timeouts, etc) are outside of the control of plugins and should generally NOT be reported as UNKNOWN states."
354
        # We choose 4 as exitcode. The plugin developer is free to return any other status.
20 daniel-mar 355
        /*public*/ const STATUS_OK       = 0;
356
        /*public*/ const STATUS_WARNING  = 1;
357
        /*public*/ const STATUS_CRITICAL = 2;
358
        /*public*/ const STATUS_UNKNOWN  = 3;
359
        /*public*/ const STATUS_ERROR    = 4; // and upwards
2 daniel-mar 360
 
361
        // Status 0..1 for STATUSMODEL_HOST:
362
        // The page https://blog.centreon.com/good-practices-how-to-develop-monitoring-plugin-nagios/
363
        // states that host plugins may return following status codes:
364
        // 0=UP, 1=DOWN, Other=Maintains last known state
20 daniel-mar 365
        /*public*/ const STATUS_UP       = 0;
366
        /*public*/ const STATUS_DOWN     = 1;
367
        /*public*/ const STATUS_MAINTAIN = 2; // and upwards
2 daniel-mar 368
 
20 daniel-mar 369
        /*public*/ const VERBOSITY_SUMMARY                = 0;
370
        /*public*/ const VERBOSITY_ADDITIONAL_INFORMATION = 1;
371
        /*public*/ const VERBOSITY_CONFIGURATION_DEBUG    = 2;
372
        /*public*/ const VERBOSITY_PLUGIN_DEBUG           = 3;
373
        /*public*/ const MAX_VERBOSITY = self::VERBOSITY_PLUGIN_DEBUG;
2 daniel-mar 374
 
20 daniel-mar 375
        /*public*/ const STATUSMODEL_SERVICE = 0;
376
        /*public*/ const STATUSMODEL_HOST    = 1;
2 daniel-mar 377
 
378
        private $initialized = false;
379
 
380
        private $status = null;
381
        private $messages = array(); // array of messages which are all put together into the headline, comma separated
382
        private $verbose_info = ''; // all other lines
383
        private $warningRanges = array();
384
        private $criticalRanges = array();
385
        private $performanceDataObjects = array();
386
        private static $exitcode = 0;
387
 
388
        private $helpObj = null;
389
        private $argHandler = null;
390
 
20 daniel-mar 391
        /*public*/ const OUTPUT_NEVER     = 0;
392
        /*public*/ const OUTPUT_SPECIAL   = 1; // illegal usage / help page, version page
393
        /*public*/ const OUTPUT_NORMAL    = 2;
394
        /*public*/ const OUTPUT_EXCEPTION = 4;
395
        /*public*/ const OUTPUT_ALWAYS    = 7; // = OUTPUT_SPECIAL+OUTPUT_NORMAL+OUTPUT_EXCEPTION
2 daniel-mar 396
 
19 daniel-mar 397
        public $http_visual_output    = self::OUTPUT_ALWAYS; // show a human-readable panel? ...
55 daniel-mar 398
        public $http_invisible_output = self::OUTPUT_ALWAYS; // ... and/or output an invisible machine-readable tag?
2 daniel-mar 399
 
400
        // $html_before and $html_after contain the output HTML which were sent by the user
401
 
402
        // before and after the visual output
403
        protected $html_before = '';
404
        protected $html_after = '';
405
 
406
        protected $statusmodel = self::STATUSMODEL_SERVICE;
407
 
408
        protected $show_status_in_headline = true;
409
 
410
        protected $default_status = self::STATUS_UNKNOWN;
411
        protected $default_warning_range = null;
412
        protected $default_critical_range = null;
413
 
414
        protected $argWarning;
415
        protected $argCritical;
416
        protected $argVersion;
417
        protected $argVerbosity;
418
        protected $argTimeout;
419
        protected $argHelp;
420
        protected $argUsage;
421
 
422
        // -----------------------------------------------------------
423
 
21 daniel-mar 424
        // The ID will be used for writing AND reading of the machine-readable
2 daniel-mar 425
        // Nagios output embedded in a website. (A web-reader acts as proxy, so the
426
        // input and output ID will be equal)
427
        // Attention: Once you run run(), $id will be "used" and resetted to null.
428
        // The ID can be any string, e.g. a GUID, an OID, a package name or something else.
429
        // It should be unique. If you don't set an ID, a serial number (0, 1, 2, 3, ...) will be
430
        // used for your outputs.
431
        public $id = null;
432
        protected static $http_serial_number = 0;
433
 
434
        // -----------------------------------------------------------
435
 
21 daniel-mar 436
        // Private key: Optional feature used in writeInvisibleHTML (called by run in HTTP mode) in order to sign/encrypt the output
2 daniel-mar 437
        public $privkey = null;
438
        public $privkey_password = null;
21 daniel-mar 439
        public $sign_algo = null; // default: OPENSSL_ALGO_SHA256
2 daniel-mar 440
 
21 daniel-mar 441
        // Public key: Optional feature used in a web-reader [readInvisibleHTML) to check the integrity of a message
2 daniel-mar 442
        public $pubkey = null;
443
 
444
        // -----------------------------------------------------------
445
 
446
        // These settings should be set by derivated classes where the user intuitively expects the
447
        // warning (w) or critical (c) parameter to mean something else than defined in the development guidelines.
448
        // Usually, the single value "-w X" means the same like "-w X:X", which means everything except X is bad.
449
        // This behavior is VNag::SINGLEVALUE_RANGE_DEFAULT.
450
        // But for plugins e.g. for checking disk space, the user expects the argument "-w X" to mean
451
        // "everything below X is bad" (if X is defined as free disk space).
452
        // So we would choose the setting VNag::SINGLEVALUE_RANGE_VAL_LT_X_BAD.
453
        // Note: This setting is implemented as array, so that each range number (in case you want to have more
454
        //       than one range, like in the PING plugin that checks latency and package loss)
455
        //       can have its individual behavior for single values.
456
        protected $warningSingleValueRangeBehaviors  = array(self::SINGLEVALUE_RANGE_DEFAULT);
457
        protected $criticalSingleValueRangeBehaviors = array(self::SINGLEVALUE_RANGE_DEFAULT);
458
 
459
        // Default behavior according to the development guidelines:
460
        //  x means  x:x, which means, everything except x% is bad.
461
        // @x means @x:x, which means, x is bad and everything else is good.
462
        const SINGLEVALUE_RANGE_DEFAULT = 0;
463
 
464
        // The single value x means, everything > x is bad. @x is not defined.
465
        const SINGLEVALUE_RANGE_VAL_GT_X_BAD = 1;
466
 
467
        // The single value x means, everything >= x is bad. @x is not defined.
468
        const SINGLEVALUE_RANGE_VAL_GE_X_BAD = 2;
469
 
470
        // The single value x means, everything < x is bad. @x is not defined.
471
        const SINGLEVALUE_RANGE_VAL_LT_X_BAD = 3;
472
 
473
        // The single value x means, everything <= x is bad. @x is not defined.
474
        const SINGLEVALUE_RANGE_VAL_LE_X_BAD = 4;
475
 
476
        // -----------------------------------------------------------
477
 
478
        // Encryption password: Optional feature used in writeInvisibleHTML (called by run in HTTP mode)
479
        public $password_out = null;
480
 
21 daniel-mar 481
        // Decryption password: Used in readInvisibleHTML to decrypt an encrypted machine-readable info
2 daniel-mar 482
        public $password_in = null;
483
 
484
        // -----------------------------------------------------------
485
 
486
        public static function is_http_mode() {
487
                return php_sapi_name() !== 'cli';
488
        }
489
 
490
        public function getHelpManager() {
491
                return $this->helpObj;
492
        }
493
 
494
        public function getArgumentHandler() {
495
                return $this->argHandler;
496
        }
497
 
498
        public function outputHTML($text, $after_visual_output=true) {
499
                if ($this->is_http_mode()) {
500
                        if ($this->initialized) {
501
                                if ($after_visual_output) {
502
                                        $this->html_after .= $text;
503
                                } else {
504
                                        $this->html_before .= $text;
505
                                }
506
                        } else {
507
                                echo $text;
508
                        }
509
                }
510
        }
511
 
512
        protected function resetArguments() {
513
                $this->argWarning   = null;
514
                $this->argCritical  = null;
515
                $this->argVersion   = null;
516
                $this->argVerbosity = null;
517
                $this->argTimeout   = null;
518
                $this->argHelp      = null;
519
                // $this->argUsage  = null;
520
 
521
                // Also remove cache
23 daniel-mar 522
                $this->argWarning   = null;
523
                $this->argCritical  = null;
2 daniel-mar 524
        }
525
 
526
        // e.g. $args = "wcVvht"
527
        public function registerExpectedStandardArguments($args) {
528
                $this->resetArguments();
529
 
530
                for ($i=0; $i<strlen($args); $i++) {
531
                        switch ($args[$i]) {
532
                                case 'w':
533
                                        $this->addExpectedArgument($this->argWarning   = new VNagArgument('w', 'warning',  VNagArgument::VALUE_REQUIRED,  VNagLang::$argname_value, VNagLang::$warning_range));
534
                                        break;
535
                                case 'c':
536
                                        $this->addExpectedArgument($this->argCritical  = new VNagArgument('c', 'critical', VNagArgument::VALUE_REQUIRED,  VNagLang::$argname_value, VNagLang::$critical_range));
537
                                        break;
538
                                case 'V':
539
                                        $this->addExpectedArgument($this->argVersion   = new VNagArgument('V', 'version',  VNagArgument::VALUE_FORBIDDEN, null, VNagLang::$prints_version));
540
                                        break;
541
                                case 'v':
542
                                        // In HTTP: -vvv is &v[]=&v[]=&v[]=
543
                                        $this->addExpectedArgument($this->argVerbosity = new VNagArgument('v', 'verbose',  VNagArgument::VALUE_FORBIDDEN, null, VNagLang::$verbosity_helptext));
544
                                        break;
545
                                case 't':
546
                                        // Attention: not every plugin supports it because of declare(ticks=1) needs to be written in the main script
547
                                        $this->addExpectedArgument($this->argTimeout   = new VNagArgument('t', 'timeout',  VNagArgument::VALUE_REQUIRED,  VNagLang::$argname_seconds, VNagLang::$timeout_helptext));
548
                                        break;
549
                                // case '?':
550
                                case 'h':
551
                                        $this->addExpectedArgument($this->argHelp      = new VNagArgument('h', 'help',     VNagArgument::VALUE_FORBIDDEN, null, VNagLang::$help_helptext));
552
                                        break;
553
                                default:
554
                                        $letter = $args[$i];
555
                                        throw new VNagInvalidStandardArgument(sprintf(VNagLang::$no_standard_arguments_with_letter, $letter));
29 daniel-mar 556
                                        #break;
2 daniel-mar 557
                        }
558
                }
559
        }
560
 
561
        public function addExpectedArgument($argObj) {
562
                // Emulate C++ "friend" access to hidden functions
563
 
564
                // $this->helpObj->_addOption($argObj);
565
                $helpObjAddEntryMethod = new ReflectionMethod($this->helpObj, '_addOption');
566
                $helpObjAddEntryMethod->setAccessible(true);
567
                $helpObjAddEntryMethod->invoke($this->helpObj, $argObj);
568
 
569
                // $this->argHandler->_addExpectedArgument($argObj);
570
                $argHandlerAddEntryMethod = new ReflectionMethod($this->argHandler, '_addExpectedArgument');
571
                $argHandlerAddEntryMethod->setAccessible(true);
572
                $argHandlerAddEntryMethod->invoke($this->argHandler, $argObj);
573
        }
574
 
575
        protected function createArgumentHandler() {
576
                $this->argHandler = new VNagArgumentHandler();
577
        }
578
 
579
        protected function createHelpObject() {
580
                $this->helpObj = new VNagHelp();
581
        }
582
 
583
        protected function checkInitialized() {
584
                if (!$this->initialized) throw new VNagFunctionCallOutsideSession();
585
        }
586
 
587
        protected function getVerbosityLevel() {
588
                $this->checkInitialized(); // if (!$this->initialized) return false;
589
 
590
                if (!isset($this->argVerbosity)) {
591
                        //The verbose argument is always optional
592
                        //throw new VNagRequiredArgumentNotRegistered('-v');
593
                        return self::VERBOSITY_SUMMARY;
594
                } else {
595
                        $level = $this->argVerbosity->count();
596
                        if ($level > self::MAX_VERBOSITY) $level = self::MAX_VERBOSITY;
597
                        return $level;
598
                }
599
        }
600
 
601
        public function getWarningRange($argumentNumber=0) {
602
                $this->checkInitialized(); // if (!$this->initialized) return false;
603
 
604
                if (!isset($this->warningRanges[$argumentNumber])) {
605
                        if (!is_null($this->argWarning)) {
606
                                $warning = $this->argWarning->getValue();
607
                                if (!is_null($warning)) {
608
                                        $vals = explode(',',$warning);
609
                                        foreach ($vals as $number => $val) {
610
                                                if (_empty($val)) {
611
                                                        $this->warningRanges[$number] = null;
612
                                                } else {
613
                                                        $singleValueBehavior = isset($this->warningSingleValueRangeBehaviors[$number]) ? $this->warningSingleValueRangeBehaviors[$number] : VNag::SINGLEVALUE_RANGE_DEFAULT;
614
                                                        $this->warningRanges[$number] = new VNagRange($val, $singleValueBehavior);
615
                                                }
616
                                        }
617
                                } else {
618
                                        $this->warningRanges[0] = $this->default_warning_range;
619
                                }
620
                        } else {
621
                                return null;
622
                        }
623
                }
624
 
625
                if (isset($this->warningRanges[$argumentNumber])) {
626
                        return $this->warningRanges[$argumentNumber];
627
                } else {
628
                        return null;
629
                }
630
        }
631
 
632
        public function getCriticalRange($argumentNumber=0) {
633
                $this->checkInitialized(); // if (!$this->initialized) return false;
634
 
635
                if (!isset($this->criticalRanges[$argumentNumber])) {
636
                        if (!is_null($this->argCritical)) {
637
                                $critical = $this->argCritical->getValue();
638
                                if (!is_null($critical)) {
639
                                        $vals = explode(',',$critical);
640
                                        foreach ($vals as $number => $val) {
641
                                                $singleValueBehavior = isset($this->criticalSingleValueRangeBehaviors[$number]) ? $this->criticalSingleValueRangeBehaviors[$number] : VNag::SINGLEVALUE_RANGE_DEFAULT;
642
                                                $this->criticalRanges[$number] = new VNagRange($val, $singleValueBehavior);
643
                                        }
644
                                } else {
645
                                        $this->criticalRanges[0] = $this->default_critical_range;
646
                                }
647
                        } else {
648
                                return null;
649
                        }
650
                }
651
 
652
                if (isset($this->criticalRanges[$argumentNumber])) {
653
                        return $this->criticalRanges[$argumentNumber];
654
                } else {
655
                        return null;
656
                }
657
        }
658
 
659
        public function checkAgainstWarningRange($values, $force=true, $autostatus=true, $argumentNumber=0) {
660
                $this->checkInitialized(); // if (!$this->initialized) return;
661
 
662
                if (!$this->getArgumentHandler()->isArgRegistered('w')) {
663
                        // Developer's mistake: The argument is not in the list of expected arguments
664
                        throw new VNagRequiredArgumentNotRegistered('-w');
665
                }
666
 
667
                $wr = $this->getWarningRange($argumentNumber);
668
                if (isset($wr)) {
669
                        if ($wr->checkAlert($values)) {
670
                                if ($autostatus) $this->setStatus(VNag::STATUS_WARNING);
671
                                return true;
672
                        } else {
673
                                if ($autostatus) $this->setStatus(VNag::STATUS_OK);
674
                                return false;
675
                        }
676
                } else {
677
                        if ($force) {
678
                                // User's mistake: They did not pass the argument to the plugin
679
                                if (($argumentNumber > 0) && (count($this->warningRanges) > 0)) {
680
                                        throw new VNagInvalidArgumentException(sprintf(VNagLang::$too_few_warning_ranges, $argumentNumber+1));
681
                                } else {
682
                                        throw new VNagRequiredArgumentMissing('-w');
683
                                }
684
                        }
685
                }
686
        }
687
 
688
        public function checkAgainstCriticalRange($values, $force=true, $autostatus=true, $argumentNumber=0) {
689
                $this->checkInitialized(); // if (!$this->initialized) return;
690
 
691
                if (!$this->getArgumentHandler()->isArgRegistered('c')) {
692
                        // Developer's mistake: The argument is not in the list of expected arguments
693
                        throw new VNagRequiredArgumentNotRegistered('-c');
694
                }
695
 
696
                $cr = $this->getCriticalRange($argumentNumber);
697
                if (isset($cr)) {
698
                        if ($cr->checkAlert($values)) {
699
                                if ($autostatus) $this->setStatus(VNag::STATUS_CRITICAL);
700
                                return true;
701
                        } else {
702
                                if ($autostatus) $this->setStatus(VNag::STATUS_OK);
703
                                return false;
704
                        }
705
                } else {
706
                        if ($force) {
707
                                // User's mistake: They did not pass the argument to the plugin
708
                                if (($argumentNumber > 0) && (count($this->warningRanges) > 0)) {
709
                                        throw new VNagInvalidArgumentException(sprintf(VNagLang::$too_few_critical_ranges, $argumentNumber+1));
710
                                } else {
711
                                        throw new VNagRequiredArgumentMissing('-c');
712
                                }
713
                        }
714
                }
715
        }
716
 
717
        protected static function getBaddestExitcode($code1, $code2) {
718
                return max($code1, $code2);
719
        }
720
 
721
        # DO NOT CALL MANUALLY
722
        # Unfortunately, this function has to be public, otherwise register_shutdown_function() wouldn't work
723
        public static function _shutdownHandler() {
724
                if (!self::is_http_mode()) {
725
                        exit((int)self::$exitcode);
726
                }
727
        }
728
 
729
        protected function _exit($code) {
730
                self::$exitcode = $this->getBaddestExitcode($code, self::$exitcode);
731
        }
732
 
733
        private $constructed = false;
734
        function __construct() {
735
                $this->createHelpObject();
736
                $this->createArgumentHandler();
737
 
738
                $this->addExpectedArgument($this->argUsage = new VNagArgument('?', '', VNagArgument::VALUE_FORBIDDEN, null, VNagLang::$prints_usage));
739
 
740
                $this->constructed = true;
741
        }
742
 
743
        function __destruct() {
744
                if (Timeouter::started()) {
745
                        Timeouter::end();
746
                }
747
        }
748
 
29 daniel-mar 749
        public function run() {
19 daniel-mar 750
                global $inside_vnag_run;
20 daniel-mar 751
 
19 daniel-mar 752
                $inside_vnag_run = true;
2 daniel-mar 753
                try {
19 daniel-mar 754
                        if (!$this->constructed) {
755
                                throw new VNagNotConstructed(VNagLang::$notConstructed);
756
                        }
2 daniel-mar 757
 
19 daniel-mar 758
                        try {
759
                                $this->initialized = true;
760
                                $this->html_before = '';
761
                                $this->html_after = '';
762
                                $this->setStatus(null, true);
763
                                $this->messages = array();
2 daniel-mar 764
 
19 daniel-mar 765
                                register_shutdown_function(array($this, '_shutdownHandler'));
2 daniel-mar 766
 
19 daniel-mar 767
                                if ($this->argHandler->illegalUsage()) {
768
                                        $content = $this->helpObj->printUsagePage();
769
                                        $this->setStatus(VNag::STATUS_UNKNOWN);
770
 
771
                                        if ($this->is_http_mode()) {
772
                                                echo $this->html_before;
773
                                                if ($this->http_visual_output    & VNag::OUTPUT_SPECIAL) echo $this->writeVisualHTML($content);
774
                                                if ($this->http_invisible_output & VNag::OUTPUT_SPECIAL) echo $this->writeInvisibleHTML($content);
775
                                                echo $this->html_after;
776
                                                return; // cancel
777
                                        } else {
778
                                                echo $content;
779
                                                return $this->_exit($this->status);
780
                                        }
2 daniel-mar 781
                                }
782
 
19 daniel-mar 783
                                if (!is_null($this->argVersion) && ($this->argVersion->available())) {
784
                                        $content = $this->helpObj->printVersionPage();
785
                                        $this->setStatus(VNag::STATUS_UNKNOWN);
2 daniel-mar 786
 
19 daniel-mar 787
                                        if ($this->is_http_mode()) {
788
                                                echo $this->html_before;
789
                                                if ($this->http_visual_output    & VNag::OUTPUT_SPECIAL) echo $this->writeVisualHTML($content);
790
                                                if ($this->http_invisible_output & VNag::OUTPUT_SPECIAL) echo $this->writeInvisibleHTML($content);
791
                                                echo $this->html_after;
792
                                                return; // cancel
793
                                        } else {
794
                                                echo $content;
795
                                                return $this->_exit($this->status);
796
                                        }
2 daniel-mar 797
                                }
798
 
19 daniel-mar 799
                                if (!is_null($this->argHelp) && ($this->argHelp->available())) {
800
                                        $content = $this->helpObj->printHelpPage();
801
                                        $this->setStatus(VNag::STATUS_UNKNOWN);
2 daniel-mar 802
 
19 daniel-mar 803
                                        if ($this->is_http_mode()) {
804
                                                echo $this->html_before;
805
                                                if ($this->http_visual_output    & VNag::OUTPUT_SPECIAL) echo $this->writeVisualHTML($content);
806
                                                if ($this->http_invisible_output & VNag::OUTPUT_SPECIAL) echo $this->writeInvisibleHTML($content);
807
                                                echo $this->html_after;
808
                                                return; // cancel
809
                                        } else {
810
                                                echo $content;
811
                                                return $this->_exit($this->status);
812
                                        }
2 daniel-mar 813
                                }
814
 
19 daniel-mar 815
                                // Initialize ranges (and check their validity)
816
                                $this->getWarningRange();
817
                                $this->getCriticalRange();
2 daniel-mar 818
 
19 daniel-mar 819
                                if (!is_null($this->argTimeout)) {
820
                                        $timeout = $this->argTimeout->getValue();
821
                                        if (!is_null($timeout)) {
822
                                                Timeouter::start($timeout);
823
                                        }
2 daniel-mar 824
                                }
825
 
19 daniel-mar 826
                                ob_start();
827
                                $init_ob_level = ob_get_level();
828
                                try {
29 daniel-mar 829
                                        $this->cbRun();
2 daniel-mar 830
 
19 daniel-mar 831
                                        // This will NOT be put in the 'finally' block, because otherwise it would trigger if an Exception happened (Which clears the OB)
832
                                        if (ob_get_level() < $init_ob_level) throw new VNagImplementationErrorException(VNagLang::$output_level_lowered);
833
                                } finally {
834
                                        while (ob_get_level() > $init_ob_level) @ob_end_clean();
835
                                }
2 daniel-mar 836
 
19 daniel-mar 837
                                if (is_null($this->status)) $this->setStatus($this->default_status,true);
2 daniel-mar 838
 
19 daniel-mar 839
                                $outputType = VNag::OUTPUT_NORMAL;
840
                        } catch (Exception $e) {
841
                                $this->handleException($e);
842
                                $outputType = VNag::OUTPUT_EXCEPTION;
843
                        }
2 daniel-mar 844
 
19 daniel-mar 845
                        if ($this->is_http_mode()) {
846
                                echo $this->html_before;
847
                                if ($this->http_invisible_output & $outputType) {
848
                                        echo $this->writeInvisibleHTML();
849
                                }
850
                                if ($this->http_visual_output & $outputType) {
851
                                        echo $this->writeVisualHTML();
852
                                }
853
                                echo $this->html_after;
854
                        } else {
855
                                echo $this->getNagiosConsoleText();
856
                                return $this->_exit($this->status);
2 daniel-mar 857
                        }
19 daniel-mar 858
 
859
                        Timeouter::end();
860
                } finally {
861
                        $inside_vnag_run = false;
2 daniel-mar 862
                }
863
        }
864
 
865
        private function getNagiosConsoleText() {
866
                // see https://nagios-plugins.org/doc/guidelines.html#AEN200
867
                // 1. space separated list of label/value pairs
868
                $ary_perfdata = $this->getPerformanceData();
869
                $performancedata_first = array_shift($ary_perfdata);
870
                $performancedata_rest  = implode(' ', $ary_perfdata);
871
 
872
                $status_text = VNagLang::status($this->status, $this->statusmodel);
873
                if (_empty($this->getHeadline())) {
874
                        $content = $status_text;
875
                } else {
876
                        if ($this->show_status_in_headline) {
877
                                $content = $status_text.': '.$this->getHeadline();
878
                        } else {
879
                                $content = $this->getHeadline();
880
                        }
881
                }
882
 
883
                if (!_empty($performancedata_first)) $content .= '|'.trim($performancedata_first);
884
                $content .= "\n";
885
                if (!_empty($this->verbose_info)) {
886
                        //$content .= "\n".VNagLang::$verbose_info.":\n\n";
887
                        $content .= trim($this->verbose_info);
888
                }
889
                if (!_empty($performancedata_rest)) $content .= '|'.trim($performancedata_rest);
890
                $content .= "\n";
891
 
892
                return trim($content)."\n";
893
        }
894
 
895
        abstract protected function cbRun();
896
 
897
        public function addPerformanceData($prefDataObj, $move_to_font=false, $verbosityLevel=VNag::VERBOSITY_SUMMARY) {
898
                $this->checkInitialized(); // if (!$this->initialized) return;
899
 
900
                if ((!isset($this->argVerbosity)) && ($verbosityLevel > VNag::VERBOSITY_SUMMARY)) throw new VNagRequiredArgumentNotRegistered('-v');
901
                if (self::getVerbosityLevel() < $verbosityLevel) return false;
902
 
903
                if ($move_to_font) {
904
                        array_unshift($this->performanceDataObjects, $prefDataObj);
905
                } else {
906
                        $this->performanceDataObjects[] = $prefDataObj;
907
                }
908
 
909
                return true;
910
        }
911
 
912
        public function getPerformanceData() {
913
                $this->checkInitialized(); // if (!$this->initialized) return null;
914
 
915
                // see https://nagios-plugins.org/doc/guidelines.html#AEN200
916
                // 1. space separated list of label/value pairs
917
                return $this->performanceDataObjects;
918
        }
919
 
920
        public function removePerformanceData($prefDataObj) {
921
                if (($key = array_search($prefDataObj, $this->performanceDataObjects, true)) !== false) {
922
                        unset($this->performanceDataObjects[$key]);
923
                        return true;
924
                } else {
925
                        return false;
926
                }
927
        }
928
 
929
        public function clearPerformanceData() {
930
                $this->performanceDataObjects = array();
931
        }
932
 
933
        public function getVerboseInfo() {
934
                return $this->verbose_info;
935
        }
936
 
937
        public function clearVerboseInfo() {
938
                $this->verbose_info = '';
939
        }
940
 
941
        private function writeVisualHTML($special_content=null) {
942
                if (!_empty($special_content)) {
943
                        $content = $special_content;
944
                } else {
945
                        $content = strtoupper(VNagLang::$status.': '.VNagLang::status($this->status, $this->statusmodel))."\n\n";
946
 
947
                        $content .= strtoupper(VNagLang::$message).":\n";
948
                        $status_text = VNagLang::status($this->status, $this->statusmodel);
949
                        if (_empty($this->getHeadline())) {
950
                                $content .= $status_text;
951
                        } else {
952
                                if ($this->show_status_in_headline) {
953
                                        $content .= $status_text.': '.trim($this->getHeadline());
954
                                } else {
955
                                        $content .= trim($this->getHeadline());
956
                                }
957
                        }
958
                        $content .= "\n\n";
959
 
960
                        if (!_empty($this->verbose_info)) {
961
                                $content .= strtoupper(VNagLang::$verbose_info).":\n".trim($this->verbose_info)."\n\n";
962
                        }
963
 
964
                        $perfdata = $this->getPerformanceData();
965
                        if (count($perfdata) > 0) {
966
                                $content .= strtoupper(VNagLang::$performance_data).":\n";
967
                                foreach ($perfdata as $pd) {
968
                                        $content .= trim($pd)."\n";
969
                                }
970
                                $content .= "\n";
971
                        }
972
                }
973
 
974
                $colorinfo = '';
975
                $status = $this->getStatus();
976
 
977
                if ($status == VNag::STATUS_OK)                 $colorinfo = ' style="background-color:green;color:white;font-weight:bold"';
978
                else if ($status == VNag::STATUS_WARNING)       $colorinfo = ' style="background-color:yellow;color:black;font-weight:bold"';
979
                else if ($status == VNag::STATUS_CRITICAL)      $colorinfo = ' style="background-color:red;color:white;font-weight:bold"';
980
                else if ($status == VNag::STATUS_ERROR)         $colorinfo = ' style="background-color:purple;color:white;font-weight:bold"';
981
                else /* if ($status == VNag::STATUS_UNKNOWN) */ $colorinfo = ' style="background-color:lightgray;color:black;font-weight:bold"';
982
 
983
                $html_content = trim($content);
984
                $html_content = htmlentities($html_content);
985
                $html_content = str_replace(' ', '&nbsp;', $html_content);
986
                $html_content = nl2br($html_content);
987
 
988
                // FUT: Allow individual design via CSS
989
                return '<table border="1" cellspacing="2" cellpadding="2" style="width:100%" class="vnag_table">'.
990
                        '<tr'.$colorinfo.' class="vnag_title_row">'.
991
                        '<td>'.VNagLang::$nagios_output.'</td>'.
992
                        '</tr>'.
993
                        '<tr class="vnag_message_row">'.
994
                        '<td><code>'.
995
                        $html_content.
996
                        '</code></td>'.
997
                        '</tr>'.
998
                        '</table>';
999
        }
1000
 
1001
        protected function readInvisibleHTML($html) {
1002
                $this->checkInitialized(); // if (!$this->initialized) return;
1003
 
1004
                $doc = new DOMDocument(); // Requires: aptitude install php-dom
1005
                @$doc->loadHTML($html);   // added '@' because we don't want a warning for the non-standard <vnag> tag
1006
 
1007
                $tags = $doc->getElementsByTagName('script');
1008
                foreach ($tags as $tag) {
1009
                        $type = $tag->getAttribute('type');
1010
                        if ($type !== 'application/json') continue;
1011
 
1012
                        $json = $tag->nodeValue;
1013
                        if (!$json) continue;
1014
 
1015
                        $data = @json_decode($json,true);
1016
                        if (!is_array($data)) continue;
1017
 
1018
                        if (!isset($data['type'])) continue;
1019
                        if ($data['type'] === VNAG_JSONDATA_V1) {
1020
                                if (!isset($data['datasets'])) throw new VNagWebInfoException(VNagLang::$dataset_missing);
1021
                                foreach ($data['datasets'] as $dataset) {
1022
                                        $payload = base64_decode($dataset['payload']);
1023
                                        if (!$payload) {
1024
                                                throw new VNagWebInfoException(VNagLang::$payload_not_base64);
1025
                                        }
1026
 
1027
                                        if (isset($dataset['encryption'])) {
1028
                                                // The dataset is encrypted. We need to decrypt it first.
1029
 
1030
                                                $cryptInfo = $dataset['encryption'];
1031
                                                if (!is_array($cryptInfo)) {
1032
                                                        throw new VNagWebInfoException(VNagLang::$dataset_encryption_no_array);
1033
                                                }
1034
 
1035
                                                $password = is_null($this->password_in) ? '' : $this->password_in;
1036
 
1037
                                                $salt = base64_decode($cryptInfo['salt']);
1038
 
1039
                                                if ($cryptInfo['hash'] != hash('sha256',$salt.$password)) {
1040
                                                        if ($password == '') {
1041
                                                                throw new VNagWebInfoException(VNagLang::$require_password);
1042
                                                        } else {
1043
                                                                throw new VNagWebInfoException(VNagLang::$wrong_password);
1044
                                                        }
1045
                                                }
1046
 
21 daniel-mar 1047
                                                if (!function_exists('openssl_decrypt')) {
1048
                                                        throw new VNagException(VNagLang::$openssl_missing);
1049
                                                }
1050
 
2 daniel-mar 1051
                                                $payload = openssl_decrypt($payload, $cryptInfo['method'], $password, 0, $cryptInfo['iv']);
1052
                                        }
1053
 
27 daniel-mar 1054
                                        if (!is_null($this->pubkey) && ($this->pubkey !== '')) {
24 daniel-mar 1055
                                                if (substr($this->pubkey,0,3) === '---') {
1056
                                                        $public_key = $this->pubkey;
1057
                                                } else {
1058
                                                        if (!file_exists($this->pubkey)) {
1059
                                                                throw new VNagInvalidArgumentException(sprintf(VNagLang::$pubkey_file_not_found, $this->pubkey));
1060
                                                        }
2 daniel-mar 1061
 
24 daniel-mar 1062
                                                        $public_key = @file_get_contents($this->pubkey);
1063
                                                        if (!$public_key) {
1064
                                                                throw new VNagPublicKeyException(sprintf(VNagLang::$pubkey_file_not_readable, $this->pubkey));
1065
                                                        }
2 daniel-mar 1066
                                                }
1067
 
1068
                                                if (!isset($dataset['signature'])) {
1069
                                                        throw new VNagSignatureException(VNagLang::$signature_missing);
1070
                                                }
1071
 
1072
                                                $signature = base64_decode($dataset['signature']);
1073
                                                if (!$signature) {
1074
                                                        throw new VNagSignatureException(VNagLang::$signature_not_bas64);
1075
                                                }
1076
 
21 daniel-mar 1077
                                                if (!function_exists('openssl_verify')) {
1078
                                                        throw new VNagException(VNagLang::$openssl_missing);
1079
                                                }
1080
 
1081
                                                $sign_algo = is_null($this->sign_algo) ? OPENSSL_ALGO_SHA256 : $this->sign_algo;
1082
                                                if (!openssl_verify($payload, $signature, $public_key, $sign_algo)) {
2 daniel-mar 1083
                                                        throw new VNagSignatureException(VNagLang::$signature_invalid);
1084
                                                }
1085
                                        }
1086
 
1087
                                        $payload = @json_decode($payload,true);
1088
                                        if (!$payload) {
1089
                                                throw new VNagWebInfoException(VNagLang::$payload_not_json);
1090
                                        }
1091
 
1092
                                        if ($payload['id'] == $this->id) {
1093
                                                return $payload;
1094
                                        }
1095
                                }
1096
                        }
1097
                }
1098
 
1099
                return null;
1100
        }
1101
 
1102
        private function getNextMonitorID($peek=false) {
1103
                $result = is_null($this->id) ? self::$http_serial_number : $this->id;
1104
 
1105
                if (!$peek) {
1106
                        $this->id = null; // use manual ID only once
1107
                        self::$http_serial_number++;
1108
                }
1109
 
1110
                return $result;
1111
        }
1112
 
1113
        private function writeInvisibleHTML($special_content=null) {
1114
                // 1. Create the payload
1115
 
1116
                $payload['id'] = $this->getNextMonitorID();
1117
 
1118
                $payload['status'] = $this->getStatus();
1119
 
1120
                if (!_empty($special_content)) {
1121
                        $payload['text'] = $special_content;
1122
                } else {
1123
                        $payload['headline'] = $this->getHeadline();
1124
                        $payload['verbose_info'] = $this->verbose_info;
1125
 
1126
                        $payload['performance_data'] = array();
1127
                        foreach ($this->performanceDataObjects as $perfdata) {
1128
                                $payload['performance_data'][] = (string)$perfdata;
1129
                        }
1130
                }
1131
 
1132
                $payload = json_encode($payload);
1133
 
1134
                // 2. Encode the payload as JSON and optionally sign and/or encrypt it
1135
 
1136
                $dataset = array();
1137
 
27 daniel-mar 1138
                if (!is_null($this->privkey) && ($this->privkey !== '')) {
21 daniel-mar 1139
                        if (!function_exists('openssl_pkey_get_private') || !function_exists('openssl_sign')) {
1140
                                throw new VNagException(VNagLang::$openssl_missing);
1141
                        }
1142
 
24 daniel-mar 1143
                        if (substr($this->privkey,0,3) === '---') {
1144
                                $pkeyid = @openssl_pkey_get_private($this->privkey, $this->privkey_password);
1145
                                if (!$pkeyid) {
1146
                                        throw new VNagPrivateKeyException(sprintf(VNagLang::$privkey_not_readable));
1147
                                }
1148
                        } else {
1149
                                if (!file_exists($this->privkey)) {
1150
                                        throw new VNagInvalidArgumentException(sprintf(VNagLang::$privkey_file_not_found, $this->privkey));
1151
                                }
1152
                                $pkeyid = @openssl_pkey_get_private('file://'.$this->privkey, $this->privkey_password);
1153
                                if (!$pkeyid) {
1154
                                        throw new VNagPrivateKeyException(sprintf(VNagLang::$privkey_file_not_readable, $this->privkey));
1155
                                }
2 daniel-mar 1156
                        }
1157
 
22 daniel-mar 1158
                        $signature = '';
24 daniel-mar 1159
                        $sign_algo = is_null($this->sign_algo) ? OPENSSL_ALGO_SHA256 : $this->sign_algo;
1160
                        if (@openssl_sign($payload, $signature, $pkeyid, $sign_algo)) {
48 daniel-mar 1161
                                if (version_compare(PHP_VERSION, '8.0.0') < 0) {
1162
                                        openssl_free_key($pkeyid);
1163
                                }
2 daniel-mar 1164
 
19 daniel-mar 1165
                                $dataset['signature'] = base64_encode($signature);
24 daniel-mar 1166
                        } else {
1167
                                throw new VNagPrivateKeyException(sprintf(VNagLang::$signature_failed));
19 daniel-mar 1168
                        }
2 daniel-mar 1169
                }
1170
 
25 daniel-mar 1171
                if (!is_null($this->password_out) && ($this->password_out !== '')) {
21 daniel-mar 1172
                        if (!function_exists('openssl_encrypt')) {
1173
                                throw new VNagException(VNagLang::$openssl_missing);
1174
                        }
1175
 
2 daniel-mar 1176
                        $password = $this->password_out;
1177
 
1178
                        $method = 'aes-256-ofb';
1179
                        $iv = substr(hash('sha256', openssl_random_pseudo_bytes(32)), 0, 16);
1180
                        $salt = openssl_random_pseudo_bytes(32);
1181
 
1182
                        $cryptInfo = array();
1183
                        $cryptInfo['method'] = $method;
1184
                        $cryptInfo['iv'] = $iv;
1185
                        $cryptInfo['salt'] = base64_encode($salt);
1186
                        $cryptInfo['hash'] = hash('sha256', $salt.$password);
1187
 
1188
                        $payload = openssl_encrypt($payload, $method, $password, 0, $iv);
1189
                        $dataset['encryption'] = $cryptInfo;
1190
                }
1191
 
1192
                $dataset['payload'] = base64_encode($payload);
1193
 
1194
                // 3. Encode everything as JSON+Base64 (again) and put it into the data block
1195
 
1196
                $json = array();
1197
                $json['type'] = VNAG_JSONDATA_V1;
1198
                $json['datasets'] = array($dataset); // we only output 1 dataset. We could technically output more than one into this data block.
1199
 
21 daniel-mar 1200
                // Include the machine-readable information as data block
2 daniel-mar 1201
                // This method was chosen to support HTML 4.01, XHTML and HTML5 as well without breaking the standards
1202
                // see https://stackoverflow.com/questions/51222713/using-an-individual-tag-without-breaking-the-standards/51223609#51223609
1203
                return '<script type="application/json">'.
1204
                       json_encode($json).
1205
                       '</script>';
1206
        }
1207
 
1208
        protected function appendHeadline($msg) {
1209
                $this->checkInitialized(); // if (!$this->initialized) return;
1210
 
1211
                if (_empty($msg)) return false;
1212
                $this->messages[] = $msg;
1213
 
1214
                return true;
1215
        }
1216
 
1217
        protected function changeHeadline($msg) {
1218
                $this->checkInitialized(); // if (!$this->initialized) return;
1219
 
1220
                if (_empty($msg)) {
1221
                        $this->messages = array();
1222
                } else {
1223
                        $this->messages = array($msg);
1224
                }
1225
 
1226
                return true;
1227
        }
1228
 
1229
        public function setHeadline($msg, $append=false, $verbosityLevel=VNag::VERBOSITY_SUMMARY) {
1230
                $this->checkInitialized(); // if (!$this->initialized) return;
1231
 
1232
                if ((!isset($this->argVerbosity)) && ($verbosityLevel > VNag::VERBOSITY_SUMMARY)) throw new VNagRequiredArgumentNotRegistered('-v');
1233
                if (self::getVerbosityLevel() < $verbosityLevel) $msg = '';
1234
 
1235
                if ($append) {
1236
                        return $this->appendHeadline($msg);
1237
                } else {
1238
                        return $this->changeHeadline($msg);
1239
                }
1240
        }
1241
 
1242
        public function getHeadline() {
1243
                $this->checkInitialized(); // if (!$this->initialized) return '';
1244
 
1245
                return implode(', ', $this->messages);
1246
        }
1247
 
1248
        public function addVerboseMessage($msg, $verbosityLevel=VNag::VERBOSITY_SUMMARY) {
1249
                $this->checkInitialized(); // if (!$this->initialized) return;
1250
 
1251
                if (self::getVerbosityLevel() >= $verbosityLevel) {
1252
                        $this->verbose_info .= $msg."\n";
1253
                }
1254
        }
1255
 
1256
        public function setStatus($status, $force=false) {
1257
                $this->checkInitialized(); // if (!$this->initialized) return;
1258
 
1259
                if (($force) || is_null($this->status) || ($status > $this->status)) {
1260
                        $this->status = $status;
1261
                }
1262
        }
1263
 
1264
        public function getStatus() {
1265
                $this->checkInitialized(); // if (!$this->initialized) return;
1266
 
1267
                return $this->status;
1268
        }
1269
 
1270
        protected static function exceptionText($exception) {
1271
                // $this->checkInitialized(); // if (!$this->initialized) return false;
1272
 
1273
                $class = get_class($exception);
1274
                $msg = $exception->getMessage();
1275
 
1276
                if (!_empty($msg)) {
1277
                        return sprintf(VNagLang::$exception_x, $msg, $class);
1278
                } else {
1279
                        return sprintf(VNagLang::$unhandled_exception_without_msg, $class);
1280
                }
1281
        }
1282
 
1283
        protected function handleException($exception) {
1284
                $this->checkInitialized(); // if (!$this->initialized) return;
1285
 
19 daniel-mar 1286
                if (!VNag::is_http_mode()) {
1287
                        // On console output, remove anything we have written so far!
1288
                        while (ob_get_level() > 0) @ob_end_clean();
1289
                }
2 daniel-mar 1290
                $this->clearVerboseInfo();
1291
                $this->clearPerformanceData();
1292
 
1293
                if ($exception instanceof VNagException) {
1294
                        $this->setStatus($exception->getStatus());
1295
                } else {
1296
                        $this->setStatus(self::STATUS_ERROR);
1297
                }
1298
 
1299
                $this->setHeadline($this->exceptionText($exception), false);
1300
 
22 daniel-mar 1301
                if ($exception instanceof VNagImplementationErrorException) {
2 daniel-mar 1302
                        $this->addVerboseMessage($exception->getTraceAsString(), VNag::VERBOSITY_SUMMARY);
1303
                } else {
1304
                        if (isset($this->argVerbosity)) {
1305
                                $this->addVerboseMessage($exception->getTraceAsString(), VNag::VERBOSITY_ADDITIONAL_INFORMATION);
1306
                        } else {
1307
                                // $this->addVerboseMessage($exception->getTraceAsString(), VNag::VERBOSITY_SUMMARY);
1308
                        }
1309
                }
1310
        }
59 daniel-mar 1311
 
76 daniel-mar 1312
        // This is not used by the framework itself, but can be useful for a lot of plugins
59 daniel-mar 1313
        // Note: For icinga2, the path is /var/lib/nagios/.vnag/cache/
1314
        protected function get_cache_dir() {
1315
                $homedir = @getenv('HOME');
1316
                if ($homedir && is_dir($homedir)) {
73 daniel-mar 1317
                        $try = "$homedir/.vnag/cache";
59 daniel-mar 1318
                        if (is_dir($try)) return $try;
1319
                        if (@mkdir($try,0777,true)) return $try;
1320
                }
1321
 
1322
                $user = posix_getpwuid(posix_geteuid());
1323
                if (isset($user['dir']) && is_dir($user['dir'])) {
1324
                        $homedir = $user['dir'];
73 daniel-mar 1325
                        $try = "$homedir/.vnag/cache";
59 daniel-mar 1326
                        if (is_dir($try)) return $try;
1327
                        if (@mkdir($try,0777,true)) return $try;
1328
                }
1329
 
1330
                if (isset($user['name']) && is_dir($user['name'])) {
1331
                        $username = $user['name'];
1332
                        $try = "/tmp/vnag/cache";
1333
                        if (is_dir($try)) return $try;
1334
                        if (@mkdir($try,0777,true)) return $try;
1335
                }
1336
 
1337
                throw new VNagException("Cannot get cache dir"); // TODO: translate and own exception type
1338
        }
76 daniel-mar 1339
 
1340
        // This is not used by the framework itself, but can be useful for a lot of plugins
1341
        protected function url_get_contents($url, $max_cache_time=1*60*60, $context=null) {
78 daniel-mar 1342
                $cache_file = $this->get_cache_dir().'/'.hash('sha256',$url);
76 daniel-mar 1343
                if (file_exists($cache_file) && (time()-filemtime($cache_file) < $max_cache_time)) {
1344
                        $cont = @file_get_contents($cache_file);
1345
                        if ($cont === false) throw new Exception("Failed to get contents from $cache_file");
1346
                } else {
1347
                        $options = array(
1348
                          'http'=>array(
1349
                            'method'=>"GET",
1350
                            'header'=>"Accept-language: en\r\n" .
1351
                                      "User-Agent: Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.102011-10-16 20:23:10\r\n"
1352
                          )
1353
                        );
1354
                        if (is_null($context)) $context = stream_context_create($options);
1355
                        $cont = @file_get_contents($url, false, $context);
1356
                        if ($cont === false) throw new Exception("Failed to get contents from $url");
1357
                        file_put_contents($cache_file, $cont);
1358
                }
1359
                return $cont;
1360
        }
2 daniel-mar 1361
}
1362
 
1363
 
1364
class VNagException extends Exception {
1365
        public function getStatus() {
1366
                return VNag::STATUS_ERROR;
1367
        }
1368
}
1369
 
1370
class VNagTimeoutException extends VNagException {}
1371
 
1372
class VNagWebInfoException extends VNagException {}
1373
class VNagSignatureException extends VNagException {}
1374
class VNagPublicKeyException extends VNagException {}
1375
class VNagPrivateKeyException extends VNagException {}
1376
 
1377
// VNagInvalidArgumentException are exceptions which result from a wrong use
1378
// of arguments by the USER (CLI arguments or HTTP parameters)
1379
class VNagInvalidArgumentException extends VNagException {
1380
        public function getStatus() {
1381
                return VNag::STATUS_UNKNOWN;
1382
        }
1383
}
1384
 
1385
class VNagValueUomPairSyntaxException extends VNagInvalidArgumentException {
1386
        public function __construct($str) {
1387
                $e_msg = sprintf(VNagLang::$valueUomPairSyntaxError, $str);
1388
                parent::__construct($e_msg);
1389
        }
1390
}
1391
 
1392
class VNagInvalidTimeoutException extends VNagInvalidArgumentException {}
1393
 
1394
class VNagInvalidRangeException extends VNagInvalidArgumentException {
1395
        public function __construct($msg) {
1396
                $e_msg = VNagLang::$range_is_invalid;
1397
                if (!_empty($msg)) $e_msg .= ': '.trim($msg);
1398
                parent::__construct($e_msg);
1399
        }
1400
}
1401
 
1402
class VNagInvalidShortOpt extends VNagImplementationErrorException {}
1403
class VNagInvalidLongOpt extends VNagImplementationErrorException {}
1404
class VNagInvalidValuePolicy extends VNagImplementationErrorException {}
1405
class VNagIllegalStatusModel extends VNagImplementationErrorException {}
1406
class VNagNotConstructed extends VNagImplementationErrorException {}
1407
 
1408
// To enforce that people use the API correctly, we report flaws in the implementation
1409
// as Exception.
1410
class VNagImplementationErrorException extends VNagException {}
1411
 
1412
class VNagInvalidStandardArgument extends VNagImplementationErrorException  {}
1413
class VNagFunctionCallOutsideSession extends VNagImplementationErrorException {}
1414
class VNagIllegalArgumentValuesException extends VNagImplementationErrorException {}
1415
 
1416
class VNagRequiredArgumentNotRegistered extends VNagImplementationErrorException {
1417
        // Developer's mistake: The argument is not in the list of expected arguments
1418
        public function __construct($required_argument) {
1419
                $e_msg = sprintf(VNagLang::$query_without_expected_argument, $required_argument);
1420
                parent::__construct($e_msg);
1421
        }
1422
}
1423
 
1424
class VNagRequiredArgumentMissing extends VNagInvalidArgumentException {
1425
        // User's mistake: They did not pass the argument to the plugin
1426
        public function __construct($required_argument) {
1427
                $e_msg = sprintf(VNagLang::$required_argument_missing, $required_argument);
1428
                parent::__construct($e_msg);
1429
        }
1430
}
1431
 
1432
class VNagUnknownUomException extends VNagInvalidArgumentException {
1433
        public function __construct($uom) {
1434
                $e_msg = sprintf(VNagLang::$perfdata_uom_not_recognized, $uom);
1435
                parent::__construct($e_msg);
1436
        }
1437
}
1438
 
1439
class VNagNoCompatibleRangeUomFoundException extends VNagException {}
1440
 
1441
class VNagMixedUomsNotImplemented extends VNagInvalidArgumentException {
1442
        public function __construct($uom1, $uom2) {
1443
                if (_empty($uom1)) $uom1 = VNagLang::$none;
1444
                if (_empty($uom2)) $uom2 = VNagLang::$none;
1445
                $e_msg = sprintf(VNagLang::$perfdata_mixed_uom_not_implemented, $uom1, $uom2);
1446
                parent::__construct($e_msg);
1447
        }
1448
}
1449
 
1450
class VNagUomConvertException extends VNagInvalidArgumentException {
1451
        // It is unknown where the invalid UOM that was passed to the normalize() function came from,
1452
        // so it is not clear what parent this Exception class should have...
1453
        // If the value comes from the developer: VNagImplementationErrorException
1454
        // If the value came from the user: VNagInvalidArgumentException
1455
 
1456
        public function __construct($uom1, $uom2) {
1457
                if (_empty($uom1)) $uom1 = VNagLang::$none;
1458
                if (_empty($uom2)) $uom2 = VNagLang::$none;
1459
                $e_msg = sprintf(VNagLang::$convert_x_y_error, $uom1, $uom2);
1460
                parent::__construct($e_msg);
1461
        }
1462
}
1463
 
1464
class VNagInvalidPerformanceDataException extends VNagInvalidArgumentException {
1465
        public function __construct($msg) {
1466
                $e_msg = VNagLang::$performance_data_invalid;
1467
                if (!_empty($msg)) $e_msg .= ': '.trim($msg);
1468
                parent::__construct($e_msg);
1469
        }
1470
}
1471
 
1472
class Timeouter {
1473
        // based on http://stackoverflow.com/questions/7493676/detecting-a-timeout-for-a-block-of-code-in-php
1474
 
1475
        private static $start_time = false;
1476
        private static $timeout;
1477
        private static $fired      = false;
1478
        private static $registered = false;
1479
 
1480
        private function __construct() {
1481
        }
1482
 
1483
        public static function start($timeout) {
1484
                if (!is_numeric($timeout) || ($timeout <= 0)) {
1485
                        throw new VNagInvalidTimeoutException(sprintf(VNagLang::$timeout_value_invalid, $timeout));
1486
                }
1487
 
1488
                self::$start_time = microtime(true);
1489
                self::$timeout    = (float) $timeout;
1490
                self::$fired      = false;
1491
                if (!self::$registered) {
1492
                        self::$registered = true;
1493
                        register_tick_function(array('Timeouter', 'tick'));
1494
                }
1495
        }
1496
 
1497
        public static function started() {
1498
                return self::$registered;
1499
        }
1500
 
1501
        public static function end() {
1502
                if (self::$registered) {
1503
                        unregister_tick_function(array('Timeouter', 'tick'));
1504
                        self::$registered = false;
1505
                }
1506
        }
1507
 
1508
        public static function tick() {
1509
                if ((!self::$fired) && ((microtime(true) - self::$start_time) > self::$timeout)) {
1510
                        self::$fired = true; // do not fire again
1511
                        throw new VNagTimeoutException(VNagLang::$timeout_exception);
1512
                }
1513
        }
1514
}
1515
 
1516
class VNagArgument {
1517
        const VALUE_FORBIDDEN = 0;
1518
        const VALUE_REQUIRED  = 1;
1519
        const VALUE_OPTIONAL  = 2;
1520
 
1521
        protected $shortopt;
1522
        protected $longopts;
1523
        protected $valuePolicy;
1524
        protected $valueName;
1525
        protected $helpText;
1526
        protected $defaultValue = null;
1527
 
1528
        protected static $all_short = '';
1529
        protected static $all_long = array();
1530
 
1531
        public function getShortOpt() {
1532
                return $this->shortopt;
1533
        }
1534
 
1535
        public function getLongOpts() {
1536
                return $this->longopts;
1537
        }
1538
 
1539
        public function getValuePolicy() {
1540
                return $this->valuePolicy;
1541
        }
1542
 
1543
        public function getValueName() {
1544
                return $this->valueName;
1545
        }
1546
 
1547
        public function getHelpText() {
1548
                return $this->helpText;
1549
        }
1550
 
1551
        static private function validateShortOpt($shortopt) {
22 daniel-mar 1552
                $m = array();
2 daniel-mar 1553
                return preg_match('@^[a-zA-Z0-9\\+\\-\\?]$@', $shortopt, $m);
1554
        }
1555
 
1556
        static private function validateLongOpt($longopt) {
1557
                // FUT: Check if this is accurate
22 daniel-mar 1558
                $m = array();
2 daniel-mar 1559
                return preg_match('@^[a-zA-Z0-9\\+\\-\\?]+$@', $longopt, $m);
1560
        }
1561
 
1562
        // Note: Currently, we do not support following:
1563
        // 1. How many times may a value be defined (it needs to be manually described in $helpText)
1564
        // 2. Is this argument mandatory? (No exception will be thrown if the plugin will be started without this argument)
1565
        public function __construct($shortopt, $longopts, $valuePolicy, $valueName, $helpText, $defaultValue=null) {
1566
                // Check if $valueName is defined correctly in regards to the policy $valuePolicy
1567
                switch ($valuePolicy) {
1568
                        case VNagArgument::VALUE_FORBIDDEN:
1569
                                if (!_empty($valueName)) {
1570
                                        throw new VNagImplementationErrorException(sprintf(VNagLang::$value_name_forbidden));
1571
                                }
1572
                                break;
1573
                        case VNagArgument::VALUE_REQUIRED:
1574
                                if (_empty($valueName)) {
1575
                                        throw new VNagImplementationErrorException(sprintf(VNagLang::$value_name_required));
1576
                                }
1577
                                break;
1578
                        case VNagArgument::VALUE_OPTIONAL:
1579
                                if (_empty($valueName)) {
1580
                                        throw new VNagImplementationErrorException(sprintf(VNagLang::$value_name_required));
1581
                                }
1582
                                break;
1583
                        default:
1584
                                throw new VNagInvalidValuePolicy(sprintf(VNagLang::$illegal_valuepolicy, $valuePolicy));
1585
                }
1586
 
1587
                // We'll check: Does the shortopt contain illegal characters?
1588
                // http://stackoverflow.com/questions/28522387/which-chars-are-valid-shortopts-for-gnu-getopt
1589
                // We do not filter +, - and ?, since we might need it for other methods, e.g. VNagArgumentHandler::_addExpectedArgument
1590
                if (!_empty($shortopt)) {
1591
                        if (!self::validateShortOpt($shortopt)) {
1592
                                throw new VNagInvalidShortOpt(sprintf(VNagLang::$illegal_shortopt, $shortopt));
1593
                        }
1594
                }
1595
 
1596
                if (is_array($longopts)) { // $longopts is an array
29 daniel-mar 1597
                        foreach ($longopts as $longopt) {
1598
                                if (!self::validateLongOpt($longopt)) {
1599
                                        throw new VNagInvalidLongOpt(sprintf(VNagLang::$illegal_longopt, $longopt));
2 daniel-mar 1600
                                }
1601
                        }
1602
                } else if (!_empty($longopts)) { // $longopts is a string
1603
                        if (!self::validateLongOpt($longopts)) {
1604
                                throw new VNagInvalidLongOpt(sprintf(VNagLang::$illegal_longopt, $longopts));
1605
                        }
1606
                        $longopts = array($longopts);
1607
                } else {
1608
                        $longopts = array();
1609
                }
1610
 
1611
                # valuePolicy must be between 0..2 and being int
1612
                switch ($valuePolicy) {
1613
                        case VNagArgument::VALUE_FORBIDDEN:
1614
                                $policyApdx = '';
1615
                                break;
1616
                        case VNagArgument::VALUE_REQUIRED:
1617
                                $policyApdx = ':';
1618
                                break;
1619
                        case VNagArgument::VALUE_OPTIONAL:
1620
                                $policyApdx = '::';
1621
                                break;
1622
                        default:
1623
                                throw new VNagInvalidValuePolicy(sprintf(VNagLang::$illegal_valuepolicy, $valuePolicy));
1624
                }
1625
 
1626
                if ((!is_null($shortopt)) && ($shortopt != '?')) self::$all_short .= $shortopt.$policyApdx;
29 daniel-mar 1627
                if (is_array($longopts)) {
2 daniel-mar 1628
                        foreach ($longopts as $longopt) {
1629
                                self::$all_long[] = $longopt.$policyApdx;
1630
                        }
1631
                }
1632
 
1633
                $this->shortopt     = $shortopt;
1634
                $this->longopts     = $longopts;
1635
                $this->valuePolicy  = $valuePolicy;
1636
                $this->valueName    = $valueName;
1637
                $this->helpText     = $helpText;
1638
                $this->defaultValue = $defaultValue;
1639
        }
1640
 
1641
        protected static function getOptions() {
1642
                // Attention: In PHP 5.6.19-0+deb8u1 (cli), $_REQUEST is always set, so we need is_http_mode() instead of isset($_REQUEST)!
1643
                global $OVERWRITE_ARGUMENTS;
1644
 
1645
                if (!is_null($OVERWRITE_ARGUMENTS)) {
1646
                        return $OVERWRITE_ARGUMENTS;
1647
                } else if (VNag::is_http_mode()) {
1648
                        return $_REQUEST;
1649
                } else {
1650
                        return getopt(self::$all_short, self::$all_long);
1651
                }
1652
        }
1653
 
1654
        public function count() {
1655
                $options = self::getOptions();
1656
 
1657
                $count = 0;
1658
 
1659
                if (isset($options[$this->shortopt])) {
1660
                        if (is_array($options[$this->shortopt])) {
1661
                                // e.g. -vvv
1662
                                $count += count($options[$this->shortopt]);
1663
                        } else {
1664
                                // e.g. -v
1665
                                $count += 1;
1666
                        }
1667
                }
1668
 
1669
                if (!is_null($this->longopts)) {
1670
                        foreach ($this->longopts as $longopt) {
1671
                                if (isset($options[$longopt])) {
1672
                                        if (is_array($options[$longopt])) {
1673
                                                // e.g. --verbose --verbose --verbose
1674
                                                $count += count($options[$longopt]);
1675
                                        } else {
1676
                                                // e.g. --verbose
1677
                                                $count += 1;
1678
                                        }
1679
                                }
1680
                        }
1681
                }
1682
 
1683
                return $count;
1684
        }
1685
 
1686
        public function available() {
1687
                $options = self::getOptions();
1688
 
1689
                if (isset($options[$this->shortopt])) return true;
1690
                if (!is_null($this->longopts)) {
1691
                        foreach ($this->longopts as $longopt) {
1692
                                if (isset($options[$longopt])) return true;
1693
                        }
1694
                }
1695
                return false;
1696
        }
1697
 
1698
        public function require() {
1699
                if (!$this->available() && is_null($this->defaultValue)) {
1700
                        $opt = $this->shortopt;
1701
                        $opt = !_empty($opt) ? '-'.$opt : (isset($this->longopts[0]) ? '--'.$this->longopts[0] : '?');
1702
                        throw new VNagRequiredArgumentMissing($opt);
1703
                }
1704
        }
1705
 
1706
        public function getValue() {
1707
                $options = self::getOptions();
1708
 
1709
                if (isset($options[$this->shortopt])) {
1710
                        $x = $options[$this->shortopt];
1711
                        if (is_array($x) && (count($x) <= 1)) $options[$this->shortopt] = $options[$this->shortopt][0];
1712
                        return $options[$this->shortopt];
1713
                }
1714
 
1715
                if (!is_null($this->longopts)) {
1716
                        foreach ($this->longopts as $longopt) {
1717
                                if (isset($options[$longopt])) {
1718
                                        $x = $options[$longopt];
1719
                                        if (is_array($x) && (count($x) <= 1)) $options[$longopt] = $options[$longopt][0];
1720
                                        return $options[$longopt];
1721
                                }
1722
                        }
1723
                }
1724
 
1725
                return $this->defaultValue;
1726
        }
1727
}
1728
 
1729
class VNagArgumentHandler {
1730
        protected $expectedArgs = array();
1731
 
1732
        // Will be called by VNag via ReflectionMethod (like C++ style friends), because it should not be called manually.
1733
        // Use VNag's function instead (since it adds to the helpObj too)
1734
        protected function _addExpectedArgument($argObj) {
1735
                // -? is always illegal, so it will trigger illegalUsage(). So we don't add it to the list of
1736
                // expected arguments, otherwise illegalUsage() would be true.
1737
                if ($argObj->getShortOpt() == '?') return false;
1738
 
1739
                // GNU extensions with a special meaning
1740
                if ($argObj->getShortOpt() == '-') return false; // cancel parsing
1741
                if ($argObj->getShortOpt() == '+') return false; // enable POSIXLY_CORRECT
1742
 
1743
                $this->expectedArgs[] = $argObj;
1744
                return true;
1745
        }
1746
 
1747
        public function getArgumentObj($shortopt) {
1748
                foreach ($this->expectedArgs as $argObj) {
1749
                        if ($argObj->getShortOpt() == $shortopt) return $argObj;
1750
                }
1751
                return null;
1752
        }
1753
 
1754
        public function isArgRegistered($shortopt) {
1755
                return !is_null($this->getArgumentObj($shortopt));
1756
        }
1757
 
1758
        public function illegalUsage() {
1759
                // In this function, we should check if $argv (resp. getopts) contains stuff which is not expected or illegal,
55 daniel-mar 1760
                // so the script can show a usage information and quit the program.
2 daniel-mar 1761
 
1762
                // WONTFIX: PHP's horrible implementation of GNU's getopt does not allow following intended tasks:
1763
                // - check for illegal values/arguments (e.g. the argument -? which is always illegal)
1764
                // - check for missing values (e.g. -H instead of -H localhost )
1765
                // - check for unexpected arguments (e.g. -x if only -a -b -c are defined in $expectedArgs as expected arguments)
1766
                // - Of course, everything behind "--" may not be evaluated
1767
                // see also http://stackoverflow.com/questions/25388130/catch-unexpected-options-with-getopt
1768
 
1769
                // So the only way is to do this stupid hard coded check for '-?'
1770
                // PHP sucks...
1771
                global $argv;
1772
                return (isset($argv[1])) && (($argv[1] == '-?') || ($argv[1] == '/?'));
1773
        }
1774
}
1775
 
1776
class VNagRange {
1777
        // see https://nagios-plugins.org/doc/guidelines.html#THRESHOLDFORMAT
1778
        // We allow UOMs inside the range definition, e.g. "-w @10M:50M"
1779
 
52 daniel-mar 1780
        public /*VNagValueUomPair|'-inf'*/ $start;
2 daniel-mar 1781
        public /*VNagValueUomPair|'inf'*/ $end;
1782
        public /*boolean*/ $warnInsideRange;
1783
 
1784
        public function __construct($rangeDef, $singleValueBehavior=VNag::SINGLEVALUE_RANGE_DEFAULT) {
22 daniel-mar 1785
                $m = array();
2 daniel-mar 1786
                //if (!preg_match('|(@){0,1}(\d+)(:){0,1}(\d+){0,1}|', $rangeDef, $m)) {
1787
                if (!preg_match('|^(@){0,1}([^:]+)(:){0,1}(.*)$|', $rangeDef, $m)) {
1788
                        throw new VNagInvalidRangeException(sprintf(VNagLang::$range_invalid_syntax, $rangeDef));
1789
                }
1790
 
1791
                $this->warnInsideRange = $m[1] === '@';
1792
 
1793
                $this->start = null;
1794
                $this->end   = null;
1795
 
1796
                if ($m[3] === ':') {
1797
                        if ($m[2] === '~') {
52 daniel-mar 1798
                                $this->start = '-inf';
2 daniel-mar 1799
                        } else {
1800
                                $this->start = new VNagValueUomPair($m[2]);
1801
                        }
1802
 
1803
                        if (_empty($m[4])) {
1804
                                $this->end = 'inf';
1805
                        } else {
1806
                                $this->end = new VNagValueUomPair($m[4]);
1807
                        }
1808
                } else {
1809
                        assert(_empty($m[4]));
1810
                        assert(!_empty($m[2]));
1811
 
1812
                        $x = $m[2];
1813
 
1814
                        if ($singleValueBehavior == VNag::SINGLEVALUE_RANGE_DEFAULT) {
1815
                                // Default behavior according to the development guidelines:
52 daniel-mar 1816
                                //  x means  0:x, which means, x>10 is bad
1817
                                // @x means @0:x, which means, x<=10 is bad
1818
                                $this->start = new VNagValueUomPair('0'.((new VNagValueUomPair($x))->getUom()));
2 daniel-mar 1819
                                $this->end   = new VNagValueUomPair($x);
1820
                        } else if ($singleValueBehavior == VNag::SINGLEVALUE_RANGE_VAL_GT_X_BAD) {
1821
                                // The single value x means, everything > x is bad. @x is not defined.
1822
                                if ($this->warnInsideRange) throw new VNagInvalidRangeException(VNagLang::$singlevalue_unexpected_at_symbol);
1823
                                $this->warnInsideRange = 0;
52 daniel-mar 1824
                                $this->start = '-inf';
2 daniel-mar 1825
                                $this->end   = new VNagValueUomPair($x);
1826
                        } else if ($singleValueBehavior == VNag::SINGLEVALUE_RANGE_VAL_GE_X_BAD) {
1827
                                // The single value x means, everything >= x is bad. @x is not defined.
1828
                                if ($this->warnInsideRange) throw new VNagInvalidRangeException(VNagLang::$singlevalue_unexpected_at_symbol);
1829
                                $this->warnInsideRange = 1;
1830
                                $this->start = new VNagValueUomPair($x);
1831
                                $this->end   = 'inf';
1832
                        } else if ($singleValueBehavior == VNag::SINGLEVALUE_RANGE_VAL_LT_X_BAD) {
1833
                                // The single value x means, everything < x is bad. @x is not defined.
1834
                                if ($this->warnInsideRange) throw new VNagInvalidRangeException(VNagLang::$singlevalue_unexpected_at_symbol);
1835
                                $this->warnInsideRange = 0;
1836
                                $this->start = new VNagValueUomPair($x);
1837
                                $this->end   = 'inf';
1838
                        } else if ($singleValueBehavior == VNag::SINGLEVALUE_RANGE_VAL_LE_X_BAD) {
1839
                                // The single value x means, everything <= x is bad. @x is not defined.
1840
                                if ($this->warnInsideRange) throw new VNagInvalidRangeException(VNagLang::$singlevalue_unexpected_at_symbol);
1841
                                $this->warnInsideRange = 1;
52 daniel-mar 1842
                                $this->start = '-inf';
2 daniel-mar 1843
                                $this->end   = new VNagValueUomPair($x);
1844
                        } else {
1845
                                throw new VNagException(VNagLang::$illegalSingleValueBehavior);
1846
                        }
1847
                }
1848
 
1849
                // Check if range is valid
1850
                if (is_null($this->start)) {
1851
                        throw new VNagInvalidRangeException(VNagLang::$invalid_start_value);
1852
                }
1853
                if (is_null($this->end)) {
1854
                        throw new VNagInvalidRangeException(VNagLang::$invalid_end_value);
1855
                }
1856
                if (($this->start instanceof VNagValueUomPair) && ($this->end instanceof VNagValueUomPair) &&
1857
                    (VNagValueUomPair::compare($this->start,$this->end) > 0)) {
1858
                        throw new VNagInvalidRangeException(VNagLang::$start_is_greater_than_end);
1859
                }
1860
        }
1861
 
1862
        public function __toString() {
1863
                // Attention:
1864
                // - this function assumes that $start and $end are valid.
1865
                // - not the shortest result will be chosen
1866
 
1867
                $ret = '';
1868
                if ($this->warnInsideRange) {
1869
                        $ret = '@';
1870
                }
1871
 
52 daniel-mar 1872
                if ($this->start === '-inf') {
2 daniel-mar 1873
                        $ret .= '~';
1874
                } else {
1875
                        $ret .= $this->start;
1876
                }
1877
 
1878
                $ret .= ':';
1879
 
1880
                if ($this->end !== 'inf') {
1881
                        $ret .= $this->end;
1882
                }
1883
 
1884
                return $ret;
1885
        }
1886
 
1887
        public function checkAlert($values) {
1888
                $compatibleCount = 0;
1889
 
1890
                if (!is_array($values)) $values = array($values);
1891
                foreach ($values as $value) {
1892
                        if (!($value instanceof VNagValueUomPair)) $value = new VNagValueUomPair($value);
1893
 
52 daniel-mar 1894
                        assert(($this->start === '-inf') || ($this->start instanceof VNagValueUomPair));
1895
                        assert(($this->end   === 'inf' ) || ($this->end   instanceof VNagValueUomPair));
2 daniel-mar 1896
 
52 daniel-mar 1897
                        if (($this->start !== '-inf') && (!$this->start->compatibleWith($value))) continue;
1898
                        if (($this->end   !== 'inf')  && (!$this->end->compatibleWith($value)))   continue;
2 daniel-mar 1899
                        $compatibleCount++;
1900
 
1901
                        if ($this->warnInsideRange) {
52 daniel-mar 1902
                                return (($this->start === '-inf') || (VNagValueUomPair::compare($value,$this->start) >= 0)) &&
1903
                                       (($this->end   === 'inf')  || (VNagValueUomPair::compare($value,$this->end)   <= 0));
2 daniel-mar 1904
                        } else {
52 daniel-mar 1905
                                return (($this->start !== '-inf') && (VNagValueUomPair::compare($value,$this->start) <  0)) ||
1906
                                       (($this->end   !== 'inf')  && (VNagValueUomPair::compare($value,$this->end)   >  0));
2 daniel-mar 1907
                        }
1908
                }
1909
 
1910
                if ((count($values) > 0) and ($compatibleCount == 0)) {
1911
                        throw new VNagNoCompatibleRangeUomFoundException(VNagLang::$no_compatible_range_uom_found);
1912
                }
1913
 
1914
                return false;
1915
        }
1916
}
1917
 
1918
class VNagValueUomPair {
1919
        protected $value;
1920
        protected $uom;
1921
        public $roundTo = -1;
1922
 
1923
        public function isRelative() {
1924
                return $this->uom === '%';
1925
        }
1926
 
1927
        public function getValue() {
1928
                return $this->value;
1929
        }
1930
 
1931
        public function getUom() {
1932
                return $this->uom;
1933
        }
1934
 
1935
        public function __toString() {
1936
                if ($this->roundTo == -1) {
1937
                        return $this->value.$this->uom;
1938
                } else {
1939
                        return round($this->value,$this->roundTo).$this->uom;
1940
                }
1941
        }
1942
 
1943
        public function __construct($str) {
22 daniel-mar 1944
                $m = array();
2 daniel-mar 1945
                if (!preg_match('/^([\d\.]+)(.*)$/ism', $str, $m)) {
1946
                        throw new VNagValueUomPairSyntaxException($str);
1947
                }
1948
                $this->value = $m[1];
1949
                $this->uom = isset($m[2]) ? $m[2] : '';
1950
 
1951
                if (!self::isKnownUOM($this->uom)) {
1952
                        throw new VNagUnknownUomException($this->uom);
1953
                }
1954
        }
1955
 
29 daniel-mar 1956
        public static function isKnownUOM(string $uom) {
2 daniel-mar 1957
                // see https://nagios-plugins.org/doc/guidelines.html#AEN200
1958
                // 10. UOM (unit of measurement) is one of:
31 daniel-mar 1959
 
1960
                // no unit specified - assume a number (int or float) of things (eg, users, processes, load averages)
1961
                $no_unit = ($uom === '');
1962
                // s - seconds (also us, ms)
1963
                $seconds = ($uom === 's') || ($uom === 'ms') || ($uom === 'us');
1964
                // % - percentage
1965
                $percentage = ($uom === '%');
1966
                // B - bytes (also KB, MB, TB)
1967
                // NOTE: GB is not in the official development guidelines,probably due to an error, so I've added them anyway
1968
                $bytes = ($uom === 'B') || ($uom === 'KB') || ($uom === 'MB') || ($uom === 'GB') || ($uom === 'TB');
1969
                // c - a continous counter (such as bytes transmitted on an interface)
1970
                $counter = ($uom === 'c');
1971
 
1972
                return ($no_unit || $seconds || $percentage || $bytes || $counter);
2 daniel-mar 1973
        }
1974
 
1975
        public function normalize($target=null) {
1976
                $res = clone $this;
1977
 
1978
                // The value is normalized to seconds or megabytes
1979
                if ($res->uom === 'ms') {
1980
                        $res->uom = 's';
1981
                        $res->value /= 1000;
1982
                }
1983
                if ($res->uom === 'us') {
1984
                        $res->uom = 's';
1985
                        $res->value /= 1000 * 1000;
1986
                }
1987
                if ($res->uom === 'B') {
1988
                        $res->uom = 'MB';
1989
                        $res->value /= 1024 * 1024;
1990
                }
1991
                if ($res->uom === 'KB') {
1992
                        $res->uom = 'MB';
1993
                        $res->value /= 1024;
1994
                }
1995
                if ($res->uom === 'GB') {
1996
                        $res->uom = 'MB';
1997
                        $res->value *= 1024;
1998
                }
1999
                if ($res->uom === 'TB') {
2000
                        $res->uom = 'MB';
2001
                        $res->value *= 1024 * 1024;
2002
                }
2003
                if ($res->uom === 'c') {
2004
                        $res->uom = '';
2005
                }
2006
 
2007
                // Now, if the user wishes, convert to another unit
2008
                if (!is_null($target)) {
2009
                        if ($res->uom == 'MB') {
2010
                                if ($target == 'B') {
2011
                                        $res->uom = 'B';
2012
                                        $res->value *= 1024 * 1024;
2013
                                } else if ($target == 'KB') {
2014
                                        $res->uom = 'KB';
2015
                                        $res->value *= 1024;
52 daniel-mar 2016
                                } else if ($target == 'MB') {
2017
                                        $res->uom = 'MB';
2018
                                        $res->value *= 1;
2 daniel-mar 2019
                                } else if ($target == 'GB') {
2020
                                        $res->uom = 'GB';
2021
                                        $res->value /= 1024;
2022
                                } else if ($target == 'TB') {
2023
                                        $res->uom = 'TB';
2024
                                        $res->value /= 1024 * 1024;
2025
                                } else {
2026
                                        throw new VNagUomConvertException($res->uom, $target);
2027
                                }
2028
                        } else if ($res->uom == 's') {
52 daniel-mar 2029
                                if ($target == 's') {
2030
                                        $res->uom = 's';
2031
                                        $res->value /= 1;
2032
                                } else if ($target == 'ms') {
2 daniel-mar 2033
                                        $res->uom = 'ms';
2034
                                        $res->value /= 1000;
2035
                                } else if ($target == 'us') {
2036
                                        $res->uom = 'us';
2037
                                        $res->value /= 1000 * 1000;
2038
                                } else {
2039
                                        throw new VNagUomConvertException($res->uom, $target);
2040
                                }
2041
                        } else {
2042
                                throw new VNagUomConvertException($res->uom, $target);
2043
                        }
2044
                }
2045
 
2046
                return $res;
2047
        }
2048
 
2049
        public function compatibleWith(VNagValueUomPair $other) {
2050
                $a = $this->normalize();
2051
                $b = $other->normalize();
2052
 
2053
                return ($a->uom == $b->uom);
2054
        }
2055
 
2056
        public static function compare(VNagValueUomPair $left, VNagValueUomPair $right) {
2057
                $a = $left->normalize();
2058
                $b = $right->normalize();
2059
 
2060
                // FUT: Also accept mixed UOMs, e.g. MB and %
2061
                //      To translate between an absolute and a relative value, the
2062
                //      reference value (100%=?) needs to be passed through this comparison
2063
                //      function somehow.
2064
                if ($a->uom != $b->uom) throw new VNagMixedUomsNotImplemented($a->uom, $b->uom);
2065
 
2066
                if ($a->value  > $b->value) return  1;
2067
                if ($a->value == $b->value) return  0;
2068
                if ($a->value  < $b->value) return -1;
2069
        }
2070
}
2071
 
2072
class VNagPerformanceData {
2073
        // see https://nagios-plugins.org/doc/guidelines.html#AEN200
2074
        //     https://www.icinga.com/docs/icinga1/latest/en/perfdata.html#formatperfdata
2075
 
2076
        protected $label;
2077
        protected /*VNagValueUomPair*/ $value;
2078
        protected $warn = null;
2079
        protected $crit = null;
2080
        protected $min = null;
2081
        protected $max = null;
2082
 
2083
        public static function createByString($perfdata) {
2084
                $perfdata = trim($perfdata);
2085
 
2086
                $ary = explode('=',$perfdata);
2087
                if (count($ary) != 2) {
2088
                        throw new VNagInvalidPerformanceDataException(sprintf(VNagLang::$perfdata_line_invalid, $perfdata));
2089
                }
2090
                $label = $ary[0];
2091
                $bry = explode(';',$ary[1]);
2092
                if (substr($label,0,1) === "'") $label = substr($label, 1, strlen($label)-2);
2093
                $value = $bry[0];
2094
                $warn  = isset($bry[1]) ? $bry[1] : null;
2095
                $crit  = isset($bry[2]) ? $bry[2] : null;
2096
                $min   = isset($bry[3]) ? $bry[3] : null;
2097
                $max   = isset($bry[4]) ? $bry[4] : null;
2098
 
2099
                // Guideline "7. min and max are not required if UOM=%" makes no sense, because
2100
                // actually, all fields (except label and value) are optional.
2101
 
2102
                return new self($label, $value, $warn, $crit, $min, $max);
2103
        }
2104
 
2105
        public function __construct($label, $value/*may include UOM*/, $warn=null, $crit=null, $min=null, $max=null) {
2106
                // Not checked / Nothing to check:
2107
                // - 4. label length is arbitrary, but ideally the first 19 characters are unique (due to a limitation in RRD). Be aware of a limitation in the amount of data that NRPE returns to Nagios
2108
                // - 6. warn, crit, min or max may be null (for example, if the threshold is not defined or min and max do not apply). Trailing unfilled semicolons can be dropped
2109
                // - 9. warn and crit are in the range format (see the Section called Threshold and ranges). Must be the same UOM
2110
                // - 7. min and max are not required if UOM=%
2111
 
2112
                // 2. label can contain any characters except the equals sign or single quote (')
2113
                if (strpos($label, '=') !== false) throw new VNagInvalidPerformanceDataException(VNagLang::$perfdata_label_equal_sign_forbidden);
2114
 
2115
                // 5. to specify a quote character, use two single quotes
2116
                $label = str_replace("'", "''", $label);
2117
 
2118
                // 8. value, min and max in class [-0-9.]. Must all be the same UOM.
2119
                //    value may be a literal "U" instead, this would indicate that the actual value couldn't be determined
2120
                /*
2121
                if (($value != 'U') && (!preg_match('|^[-0-9\\.]+$|', $value, $m))) {
2122
                        throw new VNagInvalidPerformanceDataException(VNagLang::$perfdata_value_must_be_in_class);
2123
                }
2124
                */
22 daniel-mar 2125
                $m = array();
2 daniel-mar 2126
                if ((!_empty($min)) && (!preg_match('|^[-0-9\\.]+$|', $min, $m))) {
2127
                        throw new VNagInvalidPerformanceDataException(VNagLang::$perfdata_min_must_be_in_class);
2128
                }
2129
                if ((!_empty($max)) && (!preg_match('|^[-0-9\\.]+$|', $max, $m))) {
2130
                        throw new VNagInvalidPerformanceDataException(VNagLang::$perfdata_max_must_be_in_class);
2131
                }
2132
 
2133
                // 10. UOM (unit of measurement) is one of ....
2134
                //     => This rule is checked in the VNagValueUomPair constructor.
2135
 
2136
                $this->label = $label;
2137
                $this->value = ($value == 'U') ? 'U' : new VNagValueUomPair($value);
2138
                $this->warn  = $warn;
2139
                $this->crit  = $crit;
2140
                $this->min   = $min;
2141
                $this->max   = $max;
2142
        }
2143
 
2144
        public function __toString() {
2145
                $label = $this->label;
2146
                $value = $this->value;
2147
                $warn  = $this->warn;
2148
                $crit  = $this->crit;
2149
                $min   = $this->min;
2150
                $max   = $this->max;
2151
 
2152
                // 5. to specify a quote character, use two single quotes
2153
                $label = str_replace("''", "'", $label);
2154
 
2155
                // 'label'=value[UOM];[warn];[crit];[min];[max]
2156
                // 3. the single quotes for the label are optional. Required if spaces are in the label
2157
                return "'$label'=$value".
2158
                       ';'.(is_null($warn) ? '' : $warn).
2159
                       ';'.(is_null($crit) ? '' : $crit).
2160
                       ';'.(is_null($min)  ? '' : $min).
2161
                       ';'.(is_null($max)  ? '' : $max);
2162
        }
2163
}
2164
 
2165
class VNagHelp {
2166
        public $word_wrap_width = 80; // -1 = disable
2167
        public $argument_indent = 7;
2168
 
2169
        public function printUsagePage() {
2170
                $usage = $this->getUsage();
2171
 
2172
                if (_empty($usage)) {
2173
                        $usage = VNagLang::$no_syntax_defined;
2174
                }
2175
 
2176
                return trim($usage)."\n";
2177
        }
2178
 
2179
        public function printVersionPage() {
2180
                $out = trim($this->getNameAndVersion())."\n";
2181
 
2182
                if ($this->word_wrap_width > 0) $out = wordwrap($out, $this->word_wrap_width, "\n", false);
2183
 
2184
                return $out;
2185
        }
2186
 
2187
        static private function _conditionalLine($line, $terminator='', $prefix='') {
2188
                if (!_empty($line)) {
2189
                        return trim($line).$terminator;
2190
                }
2191
                return '';
2192
        }
2193
 
2194
        public function printHelpPage() {
2195
                $out  = '';
2196
                $out .= self::_conditionalLine($this->getNameAndVersion(), "\n");
2197
                $out .= self::_conditionalLine($this->getCopyright(), "\n");
2198
                $out .= ($out != '') ? "\n" : '';
2199
                $out .= self::_conditionalLine($this->getShortDescription(), "\n\n\n");
2200
                $out .= self::_conditionalLine($this->getUsage(), "\n\n");
2201
 
2202
                $out .= VNagLang::$options."\n";
2203
                foreach ($this->options as $argObj) {
2204
                        $out .= $this->printArgumentHelp($argObj);
2205
                }
2206
 
2207
                $out .= self::_conditionalLine($this->getFootNotes(), "\n\n", "\n");
2208
 
2209
                if ($this->word_wrap_width > 0) $out = wordwrap($out, $this->word_wrap_width, "\n", false);
2210
 
2211
                return $out;
2212
        }
2213
 
2214
        protected /* VNagArgument[] */ $options = array();
2215
 
2216
        // Will be called by VNag via ReflectionMethod (like C++ style friends), because it should not be called manually.
2217
        // Use VNag's function instead (since it adds to the argHandler too)
2218
        protected function _addOption($argObj) {
2219
                $this->options[] = $argObj;
2220
        }
2221
 
2222
        # FUT: Automatic creation of usage page. Which arguments are necessary?
2223
        protected function printArgumentHelp($argObj) {
2224
                $identifiers = array();
2225
 
2226
                $shortopt = $argObj->getShortopt();
2227
                if (!_empty($shortopt)) $identifiers[] = '-'.$shortopt;
2228
 
2229
                $longopts = $argObj->getLongopts();
2230
                if (!is_null($longopts)) {
2231
                        foreach ($longopts as $longopt) {
2232
                                if (!_empty($longopt)) $identifiers[] = '--'.$longopt;
2233
                        }
2234
                }
2235
 
2236
                if (count($identifiers) == 0) return;
2237
 
2238
                $valueName = $argObj->getValueName();
2239
 
2240
                $arginfo = '';
2241
                switch ($argObj->getValuePolicy()) {
2242
                        case VNagArgument::VALUE_FORBIDDEN:
2243
                                $arginfo = '';
2244
                                break;
2245
                        case VNagArgument::VALUE_REQUIRED:
2246
                                $arginfo = '='.$valueName;
2247
                                break;
2248
                        case VNagArgument::VALUE_OPTIONAL:
2249
                                $arginfo = '[='.$valueName.']';
2250
                                break;
2251
                }
2252
 
2253
                $out = '';
2254
                $out .= implode(', ', $identifiers).$arginfo."\n";
2255
 
2256
                // https://nagios-plugins.org/doc/guidelines.html#AEN302 recommends supporting a 80x23 screen resolution.
2257
                // While we cannot guarantee the vertical height, we can limit the width at least...
2258
 
2259
                $content = trim($argObj->getHelpText());
2260
                if ($this->word_wrap_width > 0) $content = wordwrap($content, $this->word_wrap_width-$this->argument_indent, "\n", false);
2261
                $lines = explode("\n", $content);
2262
 
2263
                foreach ($lines as $line) {
2264
                        $out .= str_repeat(' ', $this->argument_indent).$line."\n";
2265
                }
2266
                $out .= "\n";
2267
 
2268
                return $out;
2269
        }
2270
 
2271
        // $pluginName should contain the name of the plugin, without version.
2272
        protected $pluginName;
2273
        public function setPluginName($pluginName) {
2274
                $this->pluginName = $this->replaceStuff($pluginName);
2275
        }
2276
        public function getPluginName() {
2277
                if (_empty($this->pluginName)) {
2278
                        global $argv;
2279
                        return basename($argv[0]);
2280
                } else {
2281
                        return $this->pluginName;
2282
                }
2283
        }
2284
 
2285
        // $version should contain the version, not the program name or copyright.
2286
        protected $version;
2287
        public function setVersion($version) {
2288
                $this->version = $this->replaceStuff($version);
2289
        }
2290
        public function getVersion() {
2291
                return $this->version;
2292
        }
2293
        public function getNameAndVersion() {
2294
                $ret = $this->getPluginName();
2295
                if (_empty($ret)) return null;
2296
 
2297
                $ver = $this->getVersion();
2298
                if (!_empty($ver)) {
2299
                        $ret = sprintf(VNagLang::$x_version_x, $ret, $ver);
2300
                }
2301
                $ret = trim($ret);
2302
 
2303
                return $ret;
2304
        }
2305
 
2306
        // $copyright should contain the copyright only, no program name or version.
2307
        // $CURYEAR$ will be replaced by the current year
2308
        protected $copyright;
2309
        public function setCopyright($copyright) {
2310
                $this->copyright = $this->replaceStuff($copyright);
2311
        }
2312
 
2313
        private function getVNagCopyright() {
2314
                if (VNag::is_http_mode()) {
2315
                        $vts_email = 'www.viathinksoft.com'; // don't publish email address at web services because of spam bots
2316
                } else {
2317
                        $vts_email = base64_decode('aW5mb0B2aWF0aGlua3NvZnQuZGU='); // protect email address from spambots which might parse this code
2318
                }
2319
                return "VNag Framework ".VNag::VNAG_VERSION." (C) 2014-".date('Y')." ViaThinkSoft <$vts_email>";
2320
        }
2321
 
2322
        public function getCopyright() {
2323
                if (_empty($this->copyright)) {
2324
                        return sprintf(VNagLang::$plugin_uses, $this->getVNagCopyright());
2325
                } else {
2326
                        return trim($this->copyright)."\n".sprintf(VNagLang::$uses, $this->getVNagCopyright());
2327
                }
2328
        }
2329
 
2330
        // $shortDescription should describe what this plugin does.
2331
        protected $shortDescription;
2332
        public function setShortDescription($shortDescription) {
2333
                $this->shortDescription = $this->replaceStuff($shortDescription);
2334
        }
2335
        public function getShortDescription() {
2336
                if (_empty($this->shortDescription)) {
2337
                        return null;
2338
                } else {
2339
                        $content = $this->shortDescription;
2340
                        if ($this->word_wrap_width > 0) $content = wordwrap($content, $this->word_wrap_width, "\n", false);
2341
                        return $content;
2342
                }
2343
        }
2344
 
2345
        protected function replaceStuff($text) {
2346
                global $argv;
73 daniel-mar 2347
                if (php_sapi_name() == 'cli') {
2348
                        $text = str_replace('$SCRIPTNAME$', $argv[0], $text);
2349
                } else {
2350
                        $text = str_replace('$SCRIPTNAME$', basename($_SERVER['SCRIPT_NAME']), $text);
2351
                }
2 daniel-mar 2352
                $text = str_replace('$CURYEAR$', date('Y'), $text);
2353
                return $text;
2354
        }
2355
 
2356
        // $syntax should contain the option syntax only, no explanations.
2357
        // $SCRIPTNAME$ will be replaced by the actual script name
2358
        // $CURYEAR$ will be replaced by the current year
2359
        # FUT: Automatically generate syntax?
2360
        protected $syntax;
2361
        public function setSyntax($syntax) {
2362
                $syntax = $this->replaceStuff($syntax);
2363
                $this->syntax = $syntax;
2364
        }
2365
        public function getUsage() {
2366
                if (_empty($this->syntax)) {
2367
                        return null;
2368
                } else {
2369
                        return sprintf(VNagLang::$usage_x, $this->syntax);
2370
                }
2371
        }
2372
 
2373
        // $footNotes can be contact information or other notes which should appear in --help
2374
        protected $footNotes;
2375
        public function setFootNotes($footNotes) {
2376
                $this->footNotes = $this->replaceStuff($footNotes);
2377
        }
2378
        public function getFootNotes() {
2379
                return $this->footNotes;
2380
        }
2381
}
2382
 
2383
class VNagLang {
2384
        public static function status($code, $statusmodel) {
2385
                switch ($statusmodel) {
2386
                        case VNag::STATUSMODEL_SERVICE:
2387
                                switch ($code) {
2388
                                        case VNag::STATUS_OK:
2389
                                                return 'OK';
29 daniel-mar 2390
                                                #break;
2 daniel-mar 2391
                                        case VNag::STATUS_WARNING:
2392
                                                return 'Warning';
29 daniel-mar 2393
                                                #break;
2 daniel-mar 2394
                                        case VNag::STATUS_CRITICAL:
2395
                                                return 'Critical';
29 daniel-mar 2396
                                                #break;
2 daniel-mar 2397
                                        case VNag::STATUS_UNKNOWN:
2398
                                                return 'Unknown';
29 daniel-mar 2399
                                                #break;
2 daniel-mar 2400
                                        default:
2401
                                                return sprintf('Error (%d)', $code);
29 daniel-mar 2402
                                                #break;
2 daniel-mar 2403
                                }
29 daniel-mar 2404
                                #break;
2 daniel-mar 2405
                        case VNag::STATUSMODEL_HOST:
2406
                                switch ($code) {
2407
                                        case VNag::STATUS_UP:
2408
                                                return 'Up';
29 daniel-mar 2409
                                                #break;
2 daniel-mar 2410
                                        case VNag::STATUS_DOWN:
2411
                                                return 'Down';
29 daniel-mar 2412
                                                #break;
2 daniel-mar 2413
                                        default:
2414
                                                return sprintf('Maintain last state (%d)', $code);
29 daniel-mar 2415
                                                #break;
2 daniel-mar 2416
                                }
29 daniel-mar 2417
                                #break;
2 daniel-mar 2418
                        default:
2419
                                throw new VNagIllegalStatusModel(sprintf(self::$illegal_statusmodel, $statusmodel));
29 daniel-mar 2420
                                #break;
2 daniel-mar 2421
                }
2422
        }
2423
 
2424
        static $nagios_output = 'VNag-Output';
2425
        static $verbose_info = 'Verbose information';
2426
        static $status = 'Status';
2427
        static $message = 'Message';
2428
        static $performance_data = 'Performance data';
2429
        static $status_ok = 'OK';
2430
        static $status_warn = 'Warning';
2431
        static $status_critical = 'Critical';
2432
        static $status_unknown = 'Unknown';
2433
        static $status_error = 'Error';
2434
        static $unhandled_exception_without_msg = "Unhandled exception of type %s";
2435
        static $plugin_uses = 'This plugin uses %s';
2436
        static $uses = 'uses %s';
2437
        static $x_version_x = '%s, version %s';
2438
 
2439
        // Argument names (help page)
2440
        static $argname_value = 'value';
2441
        static $argname_seconds = 'seconds';
2442
 
2443
        // Exceptions
2444
        static $query_without_expected_argument = "The argument '%s' is queried, but was not added to the list of expected arguments. Please contact the plugin author.";
2445
        static $required_argument_missing = "The argument '%s' is required.";
2446
        static $performance_data_invalid = 'Performance data invalid.';
2447
        static $no_standard_arguments_with_letter = "No standard argument with letter '%s' exists.";
2448
        static $invalid_start_value = 'Invalid start value.';
2449
        static $invalid_end_value = 'Invalid end value.';
2450
        static $start_is_greater_than_end = 'Start is greater than end value.';
2451
        static $value_name_forbidden = "Implementation error: You may not define a value name for the argument, because the value policy is VALUE_FORBIDDEN.";
2452
        static $value_name_required = "Implementation error: Please define a name for the argument (so it can be shown in the help page).";
2453
        static $illegal_shortopt = "Illegal shortopt '-%s'.";
2454
        static $illegal_longopt = "Illegal longopt '--%s'.";
2455
        static $illegal_valuepolicy = "valuePolicy has illegal value '%s'.";
2456
        static $range_invalid_syntax = "Syntax error in range '%s'.";
2457
        static $timeout_value_invalid = "Timeout value '%s' is invalid.";
2458
        static $range_is_invalid = 'Range is invalid.';
2459
        static $timeout_exception = 'Timeout!';
2460
        static $perfdata_label_equal_sign_forbidden = 'Label may not contain an equal sign.';
2461
        static $perfdata_value_must_be_in_class = 'Value must be in class [-0-9.] or be \'U\' if the actual value can\'t be determined.';
2462
        static $perfdata_min_must_be_in_class = 'Min must be in class [-0-9.] or empty.';
2463
        static $perfdata_max_must_be_in_class = 'Max must be in class [-0-9.] or empty.';
2464
        static $perfdata_uom_not_recognized = 'UOM (unit of measurement) "%s" is not recognized.';
2465
        static $perfdata_mixed_uom_not_implemented = 'Mixed UOMs (%s and %s) are currently not supported.';
2466
        static $no_compatible_range_uom_found = 'Measured values are not compatible with the provided warning/critical parameter. Most likely, the UOM is incompatible.';
2467
        static $exception_x = '%s (%s)';
2468
        static $no_syntax_defined = 'The author of this plugin has not defined a syntax for this plugin.';
2469
        static $usage_x = "Usage:\n%s";
2470
        static $options = "Options:";
2471
        static $illegal_statusmodel = "Invalid statusmodel %d.";
2472
        static $none = '[none]';
2473
        static $valueUomPairSyntaxError = 'Syntax error at "%s". Syntax must be Value[UOM].';
2474
        static $too_few_warning_ranges = "You have too few warning ranges (currently trying to get element %d).";
2475
        static $too_few_critical_ranges = "You have too few critical ranges (currently trying to get element %d).";
2476
        static $dataset_missing = 'Dataset missing.';
2477
        static $payload_not_base64 = 'The payload is not valid Base64.';
2478
        static $payload_not_json = 'The payload is not valid JSON.';
2479
        static $signature_missing = 'The signature is missing.';
2480
        static $signature_not_bas64 = 'The signature is not valid Base64.';
2481
        static $signature_invalid = 'The signature is invalid. The connection might have been tampered, or a different key is used.';
2482
        static $pubkey_file_not_found = "Public key file %s was not found.";
2483
        static $pubkey_file_not_readable = "Public key file %s is not readable.";
2484
        static $privkey_file_not_found = "Private key file %s was not found.";
24 daniel-mar 2485
        static $privkey_not_readable = "Private key is not readable.";
2 daniel-mar 2486
        static $privkey_file_not_readable = "Private key file %s is not readable.";
24 daniel-mar 2487
        static $signature_failed = "Signature failed.";
2 daniel-mar 2488
        static $perfdata_line_invalid = "Performance data line %s is invalid.";
2489
        static $singlevalue_unexpected_at_symbol = 'This plugin does not allow the @-symbol at ranges for single values.';
2490
        static $illegalSingleValueBehavior = "Illegal value for 'singleValueBehavior'. Please contact the creator of the plugin.";
2491
        static $dataset_encryption_no_array = 'Dataset encryption information invalid.';
2492
        static $require_password = 'This resource is protected with a password. Please provide a password.';
2493
        static $wrong_password = 'This resource is protected with a password. You have provided the wrong password, or it was changed.';
2494
        static $convert_x_y_error = 'Cannot convert from UOM %s to UOM %s.';
2495
        static $php_error = 'PHP has detected an error in the plugin. Please contact the plugin author.';
2496
        static $output_level_lowered = "Output Buffer level lowered during cbRun(). Please contact the plugin author.";
21 daniel-mar 2497
        static $openssl_missing = "OpenSSL is missing. Therefore, encryption and signatures are not available.";
2 daniel-mar 2498
 
2499
        // Help texts
2500
        static $warning_range = 'Warning range';
2501
        static $critical_range = 'Critical range';
2502
        static $prints_version = 'Prints version';
2503
        static $verbosity_helptext = 'Verbosity -v, -vv or -vvv';
2504
        static $timeout_helptext = 'Sets timeout in seconds';
2505
        static $help_helptext = 'Prints help page';
2506
        static $prints_usage = 'Prints usage';
2507
 
2508
        static $notConstructed = 'Parent constructor not called with parent::__construct().';
2509
}
2510
 
2511
function vnagErrorHandler($errorkind, $errortext, $file, $line) {
20 daniel-mar 2512
        // This function "converts" PHP runtime errors into Exceptions, which can then be handled by VNag::handleException()
19 daniel-mar 2513
        global $inside_vnag_run;
20 daniel-mar 2514
 
19 daniel-mar 2515
        if (!$inside_vnag_run && VNag::is_http_mode()) {
2516
                // We want to avoid that the VNag-Exception will show up in a website that contains
2517
                // an embedded VNag monitor, so if we are not inside a running VNag code,
2518
                // we will call the normal PHP error handler.
2519
                return false;
2520
        }
20 daniel-mar 2521
 
2 daniel-mar 2522
        if (!(error_reporting() & $errorkind)) {
2523
                // Code is not included in error_reporting. Don't do anything.
19 daniel-mar 2524
                return true;
2 daniel-mar 2525
        }
2526
 
2527
        // We want 100% clean scripts, so any error, warning or notice will shutdown the script
2528
        // This also fixes the issue that PHP will end with result code 0, showing an error.
2529
 
2530
        // Error kinds see http://php.net/manual/en/errorfunc.constants.php
2531
        if (defined('E_ERROR') && ($errorkind == E_ERROR)) $errorkind = 'Error';
2532
        if (defined('E_WARNING') && ($errorkind == E_WARNING)) $errorkind = 'Warning';
2533
        if (defined('E_PARSE') && ($errorkind == E_PARSE)) $errorkind = 'Parse';
2534
        if (defined('E_NOTICE') && ($errorkind == E_NOTICE)) $errorkind = 'Notice';
2535
        if (defined('E_CORE_ERROR') && ($errorkind == E_CORE_ERROR)) $errorkind = 'Core Error';
2536
        if (defined('E_CORE_WARNING') && ($errorkind == E_CORE_WARNING)) $errorkind = 'Core Warning';
2537
        if (defined('E_COMPILE_ERROR') && ($errorkind == E_COMPILE_ERROR)) $errorkind = 'Compile Error';
2538
        if (defined('E_COMPILE_WARNING') && ($errorkind == E_COMPILE_WARNING)) $errorkind = 'Compile Warning';
2539
        if (defined('E_USER_ERROR') && ($errorkind == E_USER_ERROR)) $errorkind = 'User Error';
2540
        if (defined('E_USER_WARNING') && ($errorkind == E_USER_WARNING)) $errorkind = 'User Warning';
2541
        if (defined('E_USER_NOTICE') && ($errorkind == E_USER_NOTICE)) $errorkind = 'User Notice';
2542
        if (defined('E_STRICT') && ($errorkind == E_STRICT)) $errorkind = 'Strict';
2543
        if (defined('E_RECOVERABLE_ERROR') && ($errorkind == E_RECOVERABLE_ERROR)) $errorkind = 'Recoverable Error';
2544
        if (defined('E_DEPRECATED') && ($errorkind == E_DEPRECATED)) $errorkind = 'Deprecated';
2545
        if (defined('E_USER_DEPRECATED') && ($errorkind == E_USER_DEPRECATED)) $errorkind = 'User Deprecated';
2546
        throw new VNagException(VNagLang::$php_error . " $errortext at $file:$line (kind $errorkind)");
2547
 
19 daniel-mar 2548
        // true = the PHP internal error handling will NOT be called.
29 daniel-mar 2549
        #return true;
2 daniel-mar 2550
}
2551
 
19 daniel-mar 2552
$inside_vnag_run = false;
2 daniel-mar 2553
$old_error_handler = set_error_handler("vnagErrorHandler");
2554
 
2555
// === End of document ===