]> www.infradead.org Git - users/mchehab/rasdaemon.git/commitdiff
rasdaemon: Add support for the CXL AER correctable errors
authorShiju Jose <shiju.jose@huawei.com>
Fri, 17 Mar 2023 13:07:01 +0000 (13:07 +0000)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Sun, 30 Apr 2023 08:43:32 +0000 (09:43 +0100)
Add support to log and record the CXL AER correctable errors.

The corresponding Kernel patches are here:
https://lore.kernel.org/linux-cxl/166974401763.1608150.5424589924034481387.stgit@djiang5-desk3.ch.intel.com/T/#t
https://lore.kernel.org/linux-cxl/63e5ed38d77d9_138fbc2947a@iweiny-mobl.notmuch/T/#t

Signed-off-by: Shiju Jose <shiju.jose@huawei.com>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
ras-cxl-handler.c
ras-cxl-handler.h
ras-events.c
ras-events.h
ras-record.c
ras-record.h
ras-report.c
ras-report.h

index 0f2c9e45460db97a514d55151bbd77deb45fe6e4..8f6342de4eb15a2d0d34d24387687968414aca42 100644 (file)
@@ -220,6 +220,14 @@ int ras_cxl_poison_event_handler(struct trace_seq *s,
 #define CXL_AER_UE_IDE_TX_ERR          BIT(15)
 #define CXL_AER_UE_IDE_RX_ERR          BIT(16)
 
+#define CXL_AER_CE_CACHE_DATA_ECC      BIT(0)
+#define CXL_AER_CE_MEM_DATA_ECC                BIT(1)
+#define CXL_AER_CE_CRC_THRESH          BIT(2)
+#define CXL_AER_CE_RETRY_THRESH                BIT(3)
+#define CXL_AER_CE_CACHE_POISON                BIT(4)
+#define CXL_AER_CE_MEM_POISON          BIT(5)
+#define CXL_AER_CE_PHYS_LAYER_ERR      BIT(6)
+
 struct cxl_error_list {
        uint32_t bit;
        const char *error;
@@ -243,6 +251,16 @@ static const struct cxl_error_list cxl_aer_ue[] = {
        { .bit = CXL_AER_UE_IDE_RX_ERR, .error = "IDE Rx Error" },
 };
 
+static const struct cxl_error_list cxl_aer_ce[] = {
+       { .bit = CXL_AER_CE_CACHE_DATA_ECC, .error = "Cache Data ECC Error" },
+       { .bit = CXL_AER_CE_MEM_DATA_ECC, .error = "Memory Data ECC Error" },
+       { .bit = CXL_AER_CE_CRC_THRESH, .error = "CRC Threshold Hit" },
+       { .bit = CXL_AER_CE_RETRY_THRESH, .error = "Retry Threshold" },
+       { .bit = CXL_AER_CE_CACHE_POISON, .error = "Received Cache Poison From Peer" },
+       { .bit = CXL_AER_CE_MEM_POISON, .error = "Received Memory Poison From Peer" },
+       { .bit = CXL_AER_CE_PHYS_LAYER_ERR, .error = "Received Error From Physical Layer" },
+};
+
 static int decode_cxl_error_status(struct trace_seq *s, uint32_t status,
                                   const struct cxl_error_list *cxl_error_list,
                                   uint8_t num_elems)
@@ -351,3 +369,66 @@ int ras_cxl_aer_ue_event_handler(struct trace_seq *s,
 
        return 0;
 }
+
+int ras_cxl_aer_ce_event_handler(struct trace_seq *s,
+                                struct tep_record *record,
+                                struct tep_event *event, void *context)
+{
+       int len;
+       unsigned long long val;
+       time_t now;
+       struct tm *tm;
+       struct ras_events *ras = context;
+       struct ras_cxl_aer_ce_event ev;
+
+       now = record->ts / user_hz + ras->uptime_diff;
+       tm = localtime(&now);
+       if (tm)
+               strftime(ev.timestamp, sizeof(ev.timestamp),
+                        "%Y-%m-%d %H:%M:%S %z", tm);
+       else
+               strncpy(ev.timestamp, "1970-01-01 00:00:00 +0000", sizeof(ev.timestamp));
+       if (trace_seq_printf(s, "%s ", ev.timestamp) <= 0)
+               return -1;
+
+       ev.memdev = tep_get_field_raw(s, event, "memdev",
+                                     record, &len, 1);
+       if (!ev.memdev)
+               return -1;
+       if (trace_seq_printf(s, "memdev:%s ", ev.memdev) <= 0)
+               return -1;
+
+       ev.host = tep_get_field_raw(s, event, "host",
+                                   record, &len, 1);
+       if (!ev.host)
+               return -1;
+       if (trace_seq_printf(s, "host:%s ", ev.host) <= 0)
+               return -1;
+
+       if (tep_get_field_val(s, event, "serial", record, &val, 1) < 0)
+               return -1;
+       ev.serial = val;
+       if (trace_seq_printf(s, "serial:0x%llx ", (unsigned long long)ev.serial) <= 0)
+               return -1;
+
+       if (tep_get_field_val(s, event, "status", record, &val, 1) < 0)
+               return -1;
+       ev.error_status = val;
+       if (trace_seq_printf(s, "error status:") <= 0)
+               return -1;
+       if (decode_cxl_error_status(s, ev.error_status,
+                                   cxl_aer_ce, ARRAY_SIZE(cxl_aer_ce)) < 0)
+               return -1;
+
+       /* Insert data into the SGBD */
+#ifdef HAVE_SQLITE3
+       ras_store_cxl_aer_ce_event(ras, &ev);
+#endif
+
+#ifdef HAVE_ABRT_REPORT
+       /* Report event to ABRT */
+       ras_report_cxl_aer_ce_event(ras, &ev);
+#endif
+
+       return 0;
+}
index 35efadd03e469140599de84453195c3c8dc7949d..711daf4fefcb39f04b3b7cee6020334455ee3d81 100644 (file)
@@ -25,4 +25,8 @@ int ras_cxl_poison_event_handler(struct trace_seq *s,
 int ras_cxl_aer_ue_event_handler(struct trace_seq *s,
                                 struct tep_record *record,
                                 struct tep_event *event, void *context);
+
+int ras_cxl_aer_ce_event_handler(struct trace_seq *s,
+                                struct tep_record *record,
+                                struct tep_event *event, void *context);
 #endif
index 5d73df1f9c122281d1722212e44cab315b563ff6..2662467d76ba108f73c1014487df993427202ea8 100644 (file)
@@ -247,6 +247,7 @@ int toggle_ras_mc_event(int enable)
 #ifdef HAVE_CXL
        rc |= __toggle_ras_mc_event(ras, "cxl", "cxl_poison", enable);
        rc |= __toggle_ras_mc_event(ras, "cxl", "cxl_aer_uncorrectable_error", enable);
+       rc |= __toggle_ras_mc_event(ras, "cxl", "cxl_aer_correctable_error", enable);
 #endif
 
 free_ras:
@@ -1001,6 +1002,14 @@ int handle_ras_events(int record_events)
        else
                log(ALL, LOG_ERR, "Can't get traces from %s:%s\n",
                    "cxl", "cxl_aer_uncorrectable_error");
+
+       rc = add_event_handler(ras, pevent, page_size, "cxl", "cxl_aer_correctable_error",
+                              ras_cxl_aer_ce_event_handler, NULL, CXL_AER_CE_EVENT);
+       if (!rc)
+               num_events++;
+       else
+               log(ALL, LOG_ERR, "Can't get traces from %s:%s\n",
+                   "cxl", "cxl_aer_correctable_error");
 #endif
 
        if (!num_events) {
index 4acbe57c9d5bc16010f10cdedacb37e7270bded1..a9d67c2b9e5477bf27c824938873f20e4089ed0c 100644 (file)
@@ -41,6 +41,7 @@ enum {
        MF_EVENT,
        CXL_POISON_EVENT,
        CXL_AER_UE_EVENT,
+       CXL_AER_CE_EVENT,
        NR_EVENTS
 };
 
index 97a2a3741e92362500c46f3b1ea605542630a01a..86133c4cb548fa3f2f8f4ed0d69617b287f731af 100644 (file)
@@ -673,6 +673,53 @@ int ras_store_cxl_aer_ue_event(struct ras_events *ras, struct ras_cxl_aer_ue_eve
 
        return rc;
 }
+
+/*
+ * Table and functions to handle cxl:cxl_aer_correctable_error
+ */
+static const struct db_fields cxl_aer_ce_event_fields[] = {
+       { .name = "id",                 .type = "INTEGER PRIMARY KEY" },
+       { .name = "timestamp",          .type = "TEXT" },
+       { .name = "memdev",             .type = "TEXT" },
+       { .name = "host",               .type = "TEXT" },
+       { .name = "serial",             .type = "INTEGER" },
+       { .name = "error_status",       .type = "INTEGER" },
+};
+
+static const struct db_table_descriptor cxl_aer_ce_event_tab = {
+       .name = "cxl_aer_ce_event",
+       .fields = cxl_aer_ce_event_fields,
+       .num_fields = ARRAY_SIZE(cxl_aer_ce_event_fields),
+};
+
+int ras_store_cxl_aer_ce_event(struct ras_events *ras, struct ras_cxl_aer_ce_event *ev)
+{
+       int rc;
+       struct sqlite3_priv *priv = ras->db_priv;
+
+       if (!priv || !priv->stmt_cxl_aer_ce_event)
+               return 0;
+       log(TERM, LOG_INFO, "cxl_aer_ce_event store: %p\n", priv->stmt_cxl_aer_ce_event);
+
+       sqlite3_bind_text(priv->stmt_cxl_aer_ce_event, 1, ev->timestamp, -1, NULL);
+       sqlite3_bind_text(priv->stmt_cxl_aer_ce_event, 2, ev->memdev, -1, NULL);
+       sqlite3_bind_text(priv->stmt_cxl_aer_ce_event, 3, ev->host, -1, NULL);
+       sqlite3_bind_int64(priv->stmt_cxl_aer_ce_event, 4, ev->serial);
+       sqlite3_bind_int(priv->stmt_cxl_aer_ce_event, 5, ev->error_status);
+
+       rc = sqlite3_step(priv->stmt_cxl_aer_ce_event);
+       if (rc != SQLITE_OK && rc != SQLITE_DONE)
+               log(TERM, LOG_ERR,
+                   "Failed to do cxl_aer_ce_event step on sqlite: error = %d\n", rc);
+       rc = sqlite3_reset(priv->stmt_cxl_aer_ce_event);
+       if (rc != SQLITE_OK && rc != SQLITE_DONE)
+               log(TERM, LOG_ERR,
+                   "Failed reset cxl_aer_ce_event on sqlite: error = %d\n",
+                   rc);
+       log(TERM, LOG_INFO, "register inserted at db\n");
+
+       return rc;
+}
 #endif
 
 /*
@@ -1032,6 +1079,14 @@ int ras_mc_event_opendb(unsigned cpu, struct ras_events *ras)
                if (rc != SQLITE_OK)
                        goto error;
        }
+
+       rc = ras_mc_create_table(priv, &cxl_aer_ce_event_tab);
+       if (rc == SQLITE_OK) {
+               rc = ras_mc_prepare_stmt(priv, &priv->stmt_cxl_aer_ce_event,
+                                        &cxl_aer_ce_event_tab);
+               if (rc != SQLITE_OK)
+                       goto error;
+       }
 #endif
 
        ras->db_priv = priv;
@@ -1169,6 +1224,14 @@ int ras_mc_event_closedb(unsigned int cpu, struct ras_events *ras)
                            "cpu %u: Failed to finalize cxl_aer_ue_event sqlite: error = %d\n",
                            cpu, rc);
        }
+
+       if (priv->stmt_cxl_aer_ce_event) {
+               rc = sqlite3_finalize(priv->stmt_cxl_aer_ce_event);
+               if (rc != SQLITE_OK)
+                       log(TERM, LOG_ERR,
+                           "cpu %u: Failed to finalize cxl_aer_ce_event sqlite: error = %d\n",
+                           cpu, rc);
+       }
 #endif
 
        rc = sqlite3_close_v2(db);
index f11985fe1a09d04bf3ff98b1aff87b1bfca7608a..ab7153d27ae8f631a919f5b468e8fcf9c80f28a7 100644 (file)
@@ -144,6 +144,14 @@ struct ras_cxl_aer_ue_event {
        uint32_t *header_log;
 };
 
+struct ras_cxl_aer_ce_event {
+       char timestamp[64];
+       const char *memdev;
+       const char *host;
+       uint64_t serial;
+       uint32_t error_status;
+};
+
 struct ras_mc_event;
 struct ras_aer_event;
 struct ras_extlog_event;
@@ -155,6 +163,7 @@ struct diskerror_event;
 struct ras_mf_event;
 struct ras_cxl_poison_event;
 struct ras_cxl_aer_ue_event;
+struct ras_cxl_aer_ce_event;
 
 #ifdef HAVE_SQLITE3
 
@@ -190,6 +199,7 @@ struct sqlite3_priv {
 #ifdef HAVE_CXL
        sqlite3_stmt    *stmt_cxl_poison_event;
        sqlite3_stmt    *stmt_cxl_aer_ue_event;
+       sqlite3_stmt    *stmt_cxl_aer_ce_event;
 #endif
 };
 
@@ -220,6 +230,7 @@ int ras_store_diskerror_event(struct ras_events *ras, struct diskerror_event *ev
 int ras_store_mf_event(struct ras_events *ras, struct ras_mf_event *ev);
 int ras_store_cxl_poison_event(struct ras_events *ras, struct ras_cxl_poison_event *ev);
 int ras_store_cxl_aer_ue_event(struct ras_events *ras, struct ras_cxl_aer_ue_event *ev);
+int ras_store_cxl_aer_ce_event(struct ras_events *ras, struct ras_cxl_aer_ce_event *ev);
 
 #else
 static inline int ras_mc_event_opendb(unsigned cpu, struct ras_events *ras) { return 0; };
@@ -235,6 +246,7 @@ static inline int ras_store_diskerror_event(struct ras_events *ras, struct diske
 static inline int ras_store_mf_event(struct ras_events *ras, struct ras_mf_event *ev) { return 0; };
 static inline int ras_store_cxl_poison_event(struct ras_events *ras, struct ras_cxl_poison_event *ev) { return 0; };
 static inline int ras_store_cxl_aer_ue_event(struct ras_events *ras, struct ras_cxl_aer_ue_event *ev) { return 0; };
+static inline int ras_store_cxl_aer_ce_event(struct ras_events *ras, struct ras_cxl_aer_ce_event *ev) { return 0; };
 
 #endif
 
index 2ebdc80d31a07523f2bb9d12c1eae74ff27fdd4d..63b47f5033027ea888e985fd9508c8cca9a17ede 100644 (file)
@@ -397,6 +397,30 @@ static int set_cxl_aer_ue_event_backtrace(char *buf, struct ras_cxl_aer_ue_event
        return 0;
 }
 
+static int set_cxl_aer_ce_event_backtrace(char *buf, struct ras_cxl_aer_ce_event *ev)
+{
+       char bt_buf[MAX_BACKTRACE_SIZE];
+
+       if (!buf || !ev)
+               return -1;
+
+       sprintf(bt_buf, "BACKTRACE="    \
+                                               "timestamp=%s\n"        \
+                                               "memdev=%s\n"           \
+                                               "host=%s\n"             \
+                                               "serial=0x%lx\n"        \
+                                               "error_status=%u\n",    \
+                                               ev->timestamp,          \
+                                               ev->memdev,             \
+                                               ev->host,               \
+                                               ev->serial,             \
+                                               ev->error_status);
+
+       strcat(buf, bt_buf);
+
+       return 0;
+}
+
 static int commit_report_backtrace(int sockfd, int type, void *ev){
        char buf[MAX_BACKTRACE_SIZE];
        char *pbuf = buf;
@@ -440,6 +464,9 @@ static int commit_report_backtrace(int sockfd, int type, void *ev){
        case CXL_AER_UE_EVENT:
                rc = set_cxl_aer_ue_event_backtrace(buf, (struct ras_cxl_aer_ue_event *)ev);
                break;
+       case CXL_AER_CE_EVENT:
+               rc = set_cxl_aer_ce_event_backtrace(buf, (struct ras_cxl_aer_ce_event *)ev);
+               break;
        default:
                return -1;
        }
@@ -936,3 +963,47 @@ cxl_aer_ue_fail:
        else
                return -1;
 }
+
+int ras_report_cxl_aer_ce_event(struct ras_events *ras, struct ras_cxl_aer_ce_event *ev)
+{
+       char buf[MAX_MESSAGE_SIZE];
+       int sockfd = 0;
+       int done = 0;
+       int rc = -1;
+
+       memset(buf, 0, sizeof(buf));
+
+       sockfd = setup_report_socket();
+       if (sockfd < 0)
+               return -1;
+
+       rc = commit_report_basic(sockfd);
+       if (rc < 0)
+               goto cxl_aer_ce_fail;
+
+       rc = commit_report_backtrace(sockfd, CXL_AER_CE_EVENT, ev);
+       if (rc < 0)
+               goto cxl_aer_ce_fail;
+
+       sprintf(buf, "ANALYZER=%s", "rasdaemon-cxl-aer-correctable-error");
+       rc = write(sockfd, buf, strlen(buf) + 1);
+       if (rc < strlen(buf) + 1)
+               goto cxl_aer_ce_fail;
+
+       sprintf(buf, "REASON=%s", "CXL AER correctable error");
+       rc = write(sockfd, buf, strlen(buf) + 1);
+       if (rc < strlen(buf) + 1)
+               goto cxl_aer_ce_fail;
+
+       done = 1;
+
+cxl_aer_ce_fail:
+
+       if (sockfd >= 0)
+               close(sockfd);
+
+       if (done)
+               return 0;
+       else
+               return -1;
+}
index dfe89d1901de283266cc4a6c6d6d803dee41c083..46155eea564f621d55690b3a813ec0d2abb6cfe8 100644 (file)
@@ -41,6 +41,7 @@ int ras_report_diskerror_event(struct ras_events *ras, struct diskerror_event *e
 int ras_report_mf_event(struct ras_events *ras, struct ras_mf_event *ev);
 int ras_report_cxl_poison_event(struct ras_events *ras, struct ras_cxl_poison_event *ev);
 int ras_report_cxl_aer_ue_event(struct ras_events *ras, struct ras_cxl_aer_ue_event *ev);
+int ras_report_cxl_aer_ce_event(struct ras_events *ras, struct ras_cxl_aer_ce_event *ev);
 
 #else
 
@@ -54,6 +55,7 @@ static inline int ras_report_diskerror_event(struct ras_events *ras, struct disk
 static inline int ras_report_mf_event(struct ras_events *ras, struct ras_mf_event *ev) { return 0; };
 static inline int ras_report_cxl_poison_event(struct ras_events *ras, struct ras_cxl_poison_event *ev) { return 0; };
 static inline int ras_report_cxl_aer_ue_event(struct ras_events *ras, struct ras_cxl_aer_ue_event *ev) { return 0; };
+static inline int ras_report_cxl_aer_ce_event(struct ras_events *ras, struct ras_cxl_aer_ce_event *ev) { return 0; };
 
 #endif