aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/suricata/src/util-host-info.c
blob: c7ea8adf6cf787c7a94f38c13ef77e814debcc96 (plain)
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
/* Copyright (C) 2014 Open Information Security Foundation
 *
 * You can copy, redistribute or modify this Program under the terms of
 * the GNU General Public License version 2 as published by the Free
 * Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * version 2 along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA.
 */

/**
 * \file
 *
 * \author Eric Leblond <eric@regit.org>
 *
 * Get information on running host
 *
 */

#include "suricata-common.h"
#include "config.h"

#ifndef OS_WIN32
#include <sys/utsname.h>

#define VERSION_REGEX "^([0-9]+)\\.([0-9]+)"

int SCKernelVersionIsAtLeast(int major, int minor)
{
    struct utsname kuname;
    pcre *version_regex;
    pcre_extra *version_regex_study;
    const char *eb;
    int opts = 0;
    int eo;
#define MAX_SUBSTRINGS 3 * 6
    int ov[MAX_SUBSTRINGS];
    int ret;
    int kmajor, kminor;
    const char **list;

    /* get local version */
    if (uname(&kuname) != 0) {
        SCLogError(SC_ERR_INVALID_VALUE, "Invalid uname return: %s",
                   strerror(errno));
        return 0;
    }

    SCLogDebug("Kernel release is '%s'", kuname.release);

    version_regex = pcre_compile(VERSION_REGEX, opts, &eb, &eo, NULL);
    if (version_regex == NULL) {
        SCLogError(SC_ERR_PCRE_COMPILE, "pcre compile of \"%s\" failed at offset %" PRId32 ": %s", VERSION_REGEX, eo, eb);
        goto error;
    }

    version_regex_study = pcre_study(version_regex, 0, &eb);
    if (eb != NULL) {
        SCLogError(SC_ERR_PCRE_STUDY, "pcre study failed: %s", eb);
        goto error;
    }

    ret = pcre_exec(version_regex, version_regex_study, kuname.release,
                    strlen(kuname.release), 0, 0, ov, MAX_SUBSTRINGS);

    if (ret < 0) {
        SCLogError(SC_ERR_PCRE_MATCH, "Version did not cut");
        goto error;
    }

    if (ret < 3) {
        SCLogError(SC_ERR_PCRE_MATCH, "Version major and minor not found (ret %d)", ret);
        goto error;
    }

    pcre_get_substring_list(kuname.release, ov, ret, &list);

    kmajor = atoi(list[1]);
    kminor = atoi(list[2]);

    pcre_free_substring_list(list);

    if (kmajor > major)
        return 1;
    if (kmajor == major && kminor >= minor)
        return 1;
error:
    return 0;
}

#else /* OS_WIN32 */

int SCKernelVersionIsAtLeast(int major, int minor)
{
    SCLogError(SC_ERR_NOT_SUPPORTED, "OS compare is not supported on Windows");
    return 0;
}

#endif /* OS_WIN32 */