~ubuntu-dev/ubuntu/lucid/zabbix/lucid-201002110857

« back to all changes in this revision

Viewing changes to src/libs/zbxsysinfo/linux/boottime.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Ablassmeier
  • Date: 2007-07-02 09:06:51 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070702090651-8l6fl3fjw9rh6l2u
Tags: 1:1.4.1-2
Add patch from SVN in order to fix Incorrect processing of character '%'
in user parameters and remote commands.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
** ZABBIX
 
3
** Copyright (C) 2000-2005 SIA Zabbix
 
4
**
 
5
** This program is free software; you can redistribute it and/or modify
 
6
** it under the terms of the GNU General Public License as published by
 
7
** the Free Software Foundation; either version 2 of the License, or
 
8
** (at your option) any later version.
 
9
**
 
10
** This program is distributed in the hope that it will be useful,
 
11
** but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
** GNU General Public License for more details.
 
14
**
 
15
** You should have received a copy of the GNU General Public License
 
16
** along with this program; if not, write to the Free Software
 
17
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
**/
 
19
 
 
20
#include "common.h"
 
21
 
 
22
#include "sysinfo.h"
 
23
 
 
24
static int getPROC2(char *file, char *param, int fieldno, unsigned flags, int type, AGENT_RESULT *result)
 
25
{
 
26
 
 
27
        FILE    *f;
 
28
        char    *res;
 
29
        char    buf[MAX_STRING_LEN];
 
30
        int     i;
 
31
        int     found;
 
32
        unsigned long uValue;
 
33
        double fValue;
 
34
        
 
35
        if (NULL == (f = fopen(file,"r")))
 
36
        {
 
37
                return SYSINFO_RET_FAIL;
 
38
        }
 
39
 
 
40
        /* find line */
 
41
        found = 0;
 
42
        while ( fgets(buf, MAX_STRING_LEN, f) != NULL ) 
 
43
        {
 
44
                if (strncmp(buf, "btime", 5) == 0)
 
45
                {
 
46
                        found = 1;
 
47
                        break;
 
48
                }
 
49
        }
 
50
 
 
51
        if (!found) return SYSINFO_RET_FAIL;
 
52
 
 
53
        /* find field */
 
54
        res = (char *)strtok(buf, " "); /* btime field1 field2 */
 
55
        for(i=1; i<=fieldno; i++)
 
56
        {
 
57
                res = (char *)strtok(NULL," ");
 
58
        }
 
59
 
 
60
        zbx_fclose(f);
 
61
 
 
62
        if ( res == NULL )
 
63
        {
 
64
                return SYSINFO_RET_FAIL;
 
65
        }
 
66
 
 
67
        /* convert field to right type */
 
68
        switch (type)
 
69
        {
 
70
        case AR_UINT64:
 
71
                sscanf(res, "%lu", &uValue);
 
72
                SET_UI64_RESULT(result, uValue);
 
73
                break;
 
74
        case AR_DOUBLE:
 
75
                sscanf(res, "%lf", &fValue);
 
76
                SET_DBL_RESULT(result, fValue);
 
77
                break;
 
78
        case AR_STRING: default:
 
79
                SET_STR_RESULT(result, buf);
 
80
                break;
 
81
        }
 
82
 
 
83
        return SYSINFO_RET_OK;
 
84
}
 
85
 
 
86
int     SYSTEM_BOOTTIME(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result)
 
87
{
 
88
        assert(result);
 
89
 
 
90
        init_result(result);
 
91
 
 
92
        return  getPROC2("/proc/stat", "btime", 1, flags, AR_UINT64, result);
 
93
}