This file is indexed.

/usr/share/check_mk/checks/fileinfo is in check-mk-server 1.2.8p16-1ubuntu0.1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
#!/usr/bin/python
# -*- encoding: utf-8; py-indent-offset: 4 -*-
# +------------------------------------------------------------------+
# |             ____ _               _        __  __ _  __           |
# |            / ___| |__   ___  ___| | __   |  \/  | |/ /           |
# |           | |   | '_ \ / _ \/ __| |/ /   | |\/| | ' /            |
# |           | |___| | | |  __/ (__|   <    | |  | | . \            |
# |            \____|_| |_|\___|\___|_|\_\___|_|  |_|_|\_\           |
# |                                                                  |
# | Copyright Mathias Kettner 2014             mk@mathias-kettner.de |
# +------------------------------------------------------------------+
#
# This file is part of Check_MK.
# The official homepage is at http://mathias-kettner.de/check_mk.
#
# check_mk is free software;  you can redistribute it and/or modify it
# under the  terms of the  GNU General Public License  as published by
# the Free Software Foundation in version 2.  check_mk is  distributed
# in the hope that it will be useful, but WITHOUT ANY WARRANTY;  with-
# out even the implied warranty of  MERCHANTABILITY  or  FITNESS FOR A
# PARTICULAR PURPOSE. See the  GNU General Public License for more de-
# tails. You should have  received  a copy of the  GNU  General Public
# License along with GNU Make; see the file  COPYING.  If  not,  write
# to the Free Software Foundation, Inc., 51 Franklin St,  Fifth Floor,
# Boston, MA 02110-1301 USA.

# Example output:
# <<<fileinfo:sep(124)>>>
# 12968175080
# M:\check_mk.ini|missing
# M:\check_mk.ini|1390|12968174867
# M:\check_mk_agent.cc|86277|12968174554
# M:\Makefile|1820|12964010975
# M:\check_mk_agent.exe|102912|12968174364
# M:\crash.cc|1672|12964010975
# M:\crash.exe|20024|12968154426

# Parameters
# "minsize" : ( 5000,  4000 ),  in bytes
# "maxsize" : ( 8000,  9000 ),  in bytes
# "minage"  : ( 600,  1200 ),  in seconds
# "maxage"  : ( 6000, 12000 ), in seconds
fileinfo_groups = []

def inventory_fileinfo(info, case):
    inventory = []
    added_groups = []
    if info:
        reftime = int(info[0][0])
    for line in info:
        if len(line) >= 3:
            groups = fileinfo_groups_of_file(line[0], reftime)
            if case == 'single' and not groups and line[1] != 'missing':
                inventory.append((line[0], {}));

            if case == 'group' and groups:
                for group in groups:
                    if group not in added_groups:
                        added_groups.append(group)
                        inventory.append((group, {}))
    return inventory

def fileinfo_process_date(pattern,reftime):
    disect = re.match('(/.*)\$DATE:((?:%\w.?){1,})\$(.*)',pattern)
    if disect:
        prefix = disect.group(1)
        datepattern =  time.strftime(disect.group(2),time.localtime(reftime))
        postfix = disect.group(3)
        pattern = prefix+datepattern+postfix
    return pattern

def fileinfo_groups_of_file(check_filename,reftime):
    groups = []
    for line in host_extra_conf(g_hostname, fileinfo_groups):
        for group_name, pattern in line:
            if type(pattern) == str: # support old format
                pattern = ( pattern, '' )
            inclusion, exclusion = pattern
            inclusion = fileinfo_process_date(inclusion,reftime)
            if fnmatch.fnmatch(check_filename, inclusion) \
                    and not fnmatch.fnmatch(check_filename, exclusion):
                groups.append(group_name)
    return groups

def fileinfo_check_timeranges(params):
    ranges = params.get("timeofday")
    if ranges == None:
        return None # no ranges defined

    now = time.localtime()
    for range_spec in ranges:
        if fileinfo_in_timerange(now, *range_spec):
            return None
    return " (out of relevant time of day)"

def fileinfo_in_timerange(now, range_from, range_to):
    minutes_from = range_from[0] * 60 + range_from[1]
    minutes_to = range_to[0] * 60 + range_to[1]
    minutes_now = now.tm_hour * 60 + now.tm_min
    return minutes_now >= minutes_from and minutes_now < minutes_to


def check_fileinfo(item, params, info):
    if len(info) == 0:
        return (3, "no information sent by agent")

    outof_range_txt = fileinfo_check_timeranges(params)
    in_timerange = outof_range_txt == None
    reftime = int(info[0][0])
    check_definition = False
    state_missing = params.get("state_missing", 3)
    for line in info[1:]:
        if item == line[0]:
            if line[1] == "missing":
                return in_timerange and state_missing or 0, "File not found" + (outof_range_txt or "")
            state = 0
            size = int(line[1])
            age = reftime - int(line[2])

            check_definition = [
                ("size", size, get_filesize_human_readable),
                ("age",  age,  get_age_human_readable) ]

    if check_definition == False:
        return in_timerange and state_missing or 0, "File not found" + (outof_range_txt or "")
    return fileinfo_check_function(check_definition, params, outof_range_txt)

# Extracts patterns that are relevant for the current host and item.
# Constructs simple list of patterns and makes them available for the check
def fileinfo_groups_precompile(hostname, item, params):
    patterns = []
    for line in host_extra_conf(hostname, fileinfo_groups):
        for group_name, pattern in line:
            if group_name == item:
                if type(pattern) == str: # support old format
                    pattern = (pattern, '')
                patterns.append(pattern)

    precomped = params.copy()
    precomped['precompiled_patterns'] = patterns
    return precomped


def check_fileinfo_groups(item, params, info):
    if not info:
        return 3, "No information sent by agent"

    outof_range_txt = fileinfo_check_timeranges(params)

    reftime = int(info[0][0])

    count_all = 0
    age_oldest = None
    age_newest = 0
    size_all = 0
    size_smallest = None
    size_largest  = 0
    date_inclusion = ""
    # Start counting values on all files
    for line in info[1:]:
        for pattern in params['precompiled_patterns']:
            inclusion, exclusion = pattern
            inclusion_tmp = fileinfo_process_date(inclusion,reftime)
            if inclusion != inclusion_tmp:
                inclusion = inclusion_tmp
                date_inclusion = inclusion_tmp
            # endswith("No such file...") is needed to
            # support the solaris perl based version of fileinfo
            if not line[0].endswith("No such file or directory") \
                        and fnmatch.fnmatch(line[0], inclusion) and str(line[1]) not in ['missing',''] \
                        and not fnmatch.fnmatch(line[0], exclusion):
                size = int(line[1])
                size_all += size
                if size_smallest == None:
                    size_smallest = size
                else:
                    size_smallest = min(size_smallest, size)
                size_largest = max(size_largest, size)

                age = reftime - int(line[2])
                if age_oldest == None: # very first match
                    age_oldest = age
                    age_newest = age
                else:
                    age_oldest = max(age_oldest, age)
                    age_newest = min(age_newest, age)
                count_all += 1

    if age_oldest == None:
        age_oldest = 0

    # Start Checking
    check_definition = [
        ("age_oldest",    age_oldest,    get_age_human_readable),
        ("age_newest",    age_newest,    get_age_human_readable),
        ("count",         count_all,     saveint),
        ("size",          size_all,      get_filesize_human_readable),
    ]

    if size_smallest is not None:
        check_definition.append(("size_smallest", size_smallest, get_filesize_human_readable))
    if size_largest != 0:
        check_definition.append(("size_largest",  size_largest,  get_filesize_human_readable))
    if date_inclusion:
        check_definition.append(("date pattern",  date_inclusion, str ))

    return fileinfo_check_function(check_definition, params, outof_range_txt)

def fileinfo_check_function(check_definition, params, outof_range_txt):
    state = 0
    infos = []
    perfdata = []
    for what, val, verbfunc in check_definition:
        infos.append("%s is %s" % (what, verbfunc(val)))
        if type(val) in [long, int]: # because strings go into infos but not into perfdata
            warn, crit = "", ""
            for how, comp, cfunc in [
                ("min", "<", lambda a, b: a < b),
                ("max", ">", lambda a, b: a > b),
            ]:
                p = params.get(how + what)
                if p:
                    warn, crit = p
                    if cfunc(val, crit):
                        state = 2
                        infos[-1] += " (%s %s)(!!)" % (comp, verbfunc(crit))
                    elif cfunc(val, warn):
                        state = max(state, 1)
                        infos[-1] += " (%s %s)(!)" % (comp, verbfunc(warn))
            perfdata.append((what, val, warn, crit))
    infotext = ", ".join(infos)
    if outof_range_txt:
        state = 0
        infotext += outof_range_txt
    return (state, infotext, perfdata)


check_info["fileinfo"] = {
    "check_function"          : check_fileinfo,
    "inventory_function"      : lambda info: inventory_fileinfo(info, 'single'),
    "service_description"     : "File %s",
    "has_perfdata"            : True,
    "group"                   : "fileinfo",
}


check_info['fileinfo.groups'] = {
    "check_function"          : check_fileinfo_groups,
    "inventory_function"      : lambda info: inventory_fileinfo(info, 'group'),
    "service_description"     : "File group %s",
    "has_perfdata"            : True,
    "group"                   : "fileinfo-groups",
}

precompile_params['fileinfo.groups'] = fileinfo_groups_precompile