Skip to content
Snippets Groups Projects
Commit 444f580f authored by Adam Wujek's avatar Adam Wujek :speech_balloon:
Browse files

userspace/snmpd: add wrsVersionLastUpdateDate to wrsVersionGroup


Add reporting of when last update of switch firmware took place via SNMP.
If update date is not known return "0000.00.00-00:00:00"

Signed-off-by: default avatarAdam Wujek <adam.wujek@cern.ch>
parent b4d0a39b
Branches
Tags
No related merge requests found
......@@ -336,6 +336,15 @@ wrsVersionWrCoresCommitId OBJECT-TYPE
"The gateware version: commit of wr-cores"
::= { wrsVersionGroup 13 }
wrsVersionLastUpdateDate OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Date and time of last firmware update, this information may not be
ccurate, due to hard restarts or lack of proper time."
::= { wrsVersionGroup 14 }
wrsOperationStatus OBJECT IDENTIFIER ::= { wrsExpertStatus 1 }
-- wrsCurrentTimeGroup (.7.1.1)
......
......@@ -8,7 +8,13 @@
#include "wrsSnmp.h"
#include "wrsVersionGroup.h"
/* Macros for fscanf function to read line with maximum of "x" characters
* without new line. Macro expands to something like: "%10[^\n]" */
#define LINE_READ_LEN_HELPER(x) "%"#x"[^\n]"
#define LINE_READ_LEN(x) LINE_READ_LEN_HELPER(x)
#define VERSION_COMMAND "/wr/bin/wrs_version -t"
#define LAST_UPDATE_DATE_FILE "/update/last_update"
struct wrs_v_item {
char *key;
......@@ -28,6 +34,7 @@ static struct pickinfo wrsVersion_pickinfo[] = {
FIELD(wrsVersion_s, ASN_OCTET_STR, wrsVersions[10]),
FIELD(wrsVersion_s, ASN_OCTET_STR, wrsVersions[11]),
FIELD(wrsVersion_s, ASN_OCTET_STR, wrsVersions[12]),
FIELD(wrsVersion_s, ASN_OCTET_STR, wrsVersionLastUpdateDate),
};
struct wrsVersion_s wrsVersion_s;
......@@ -50,6 +57,22 @@ static struct wrs_v_item wrs_version[] = {
[12] = {"wr-cores-commit:"},
};
static void get_last_update_date(void)
{
FILE *f;
f = fopen(LAST_UPDATE_DATE_FILE, "r");
if (f) {
/* readline without newline */
fscanf(f, LINE_READ_LEN(32),
wrsVersion_s.wrsVersionLastUpdateDate);
fclose(f);
} else {
snprintf(wrsVersion_s.wrsVersionLastUpdateDate, 32,
"0000.00.00-00:00:00");
}
}
time_t wrsVersion_data_fill(void)
{
char s[80], key[40], value[40];
......@@ -98,6 +121,8 @@ time_t wrsVersion_data_fill(void)
guess_index++;
}
pclose(f);
get_last_update_date();
return time_cur;
}
......
......@@ -5,6 +5,7 @@
struct wrsVersion_s {
char wrsVersions[13][32]; /* array of version strings */
char wrsVersionLastUpdateDate[32];
};
extern struct wrsVersion_s wrsVersion_s;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment