qcdm: add DIAG_CMD_ESN
This commit is contained in:
@@ -23,6 +23,36 @@
|
||||
#include "result-private.h"
|
||||
#include "utils.h"
|
||||
|
||||
/*
|
||||
* utils_bin2hexstr
|
||||
*
|
||||
* Convert a byte-array into a hexadecimal string.
|
||||
*
|
||||
* Code originally by Alex Larsson <alexl@redhat.com> and
|
||||
* copyright Red Hat, Inc. under terms of the LGPL.
|
||||
*
|
||||
*/
|
||||
static char *
|
||||
bin2hexstr (const guint8 *bytes, int len)
|
||||
{
|
||||
static char hex_digits[] = "0123456789abcdef";
|
||||
char *result;
|
||||
int i;
|
||||
gsize buflen = (len * 2) + 1;
|
||||
|
||||
g_return_val_if_fail (bytes != NULL, NULL);
|
||||
g_return_val_if_fail (len > 0, NULL);
|
||||
g_return_val_if_fail (len < 4096, NULL); /* Arbitrary limit */
|
||||
|
||||
result = g_malloc0 (buflen);
|
||||
for (i = 0; i < len; i++) {
|
||||
result[2*i] = hex_digits[(bytes[i] >> 4) & 0xf];
|
||||
result[2*i+1] = hex_digits[bytes[i] & 0xf];
|
||||
}
|
||||
result[buflen - 1] = '\0';
|
||||
return result;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
check_command (const char *buf, gsize len, guint8 cmd, gsize min_len, GError **error)
|
||||
{
|
||||
@@ -79,6 +109,8 @@ check_command (const char *buf, gsize len, guint8 cmd, gsize min_len, GError **e
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**********************************************************************/
|
||||
|
||||
gsize
|
||||
qcdm_cmd_version_info_new (char *buf, gsize len, GError **error)
|
||||
{
|
||||
@@ -136,3 +168,50 @@ qcdm_cmd_version_info_result (const char *buf, gsize len, GError **error)
|
||||
return result;
|
||||
}
|
||||
|
||||
/**********************************************************************/
|
||||
|
||||
gsize
|
||||
qcdm_cmd_esn_new (char *buf, gsize len, GError **error)
|
||||
{
|
||||
char cmdbuf[3];
|
||||
DMCmdHeader *cmd = (DMCmdHeader *) &cmdbuf[0];
|
||||
|
||||
g_return_val_if_fail (buf != NULL, 0);
|
||||
g_return_val_if_fail (len >= sizeof (*cmd) + DIAG_TRAILER_LEN, 0);
|
||||
|
||||
memset (cmd, 0, sizeof (cmd));
|
||||
cmd->code = DIAG_CMD_ESN;
|
||||
|
||||
return dm_encapsulate_buffer (cmdbuf, sizeof (*cmd), sizeof (cmdbuf), buf, len);
|
||||
}
|
||||
|
||||
QCDMResult *
|
||||
qcdm_cmd_esn_result (const char *buf, gsize len, GError **error)
|
||||
{
|
||||
QCDMResult *result = NULL;
|
||||
DMCmdEsnRsp *rsp = (DMCmdEsnRsp *) buf;
|
||||
char *tmp;
|
||||
guint8 swapped[4];
|
||||
|
||||
g_return_val_if_fail (buf != NULL, NULL);
|
||||
|
||||
if (!check_command (buf, len, DIAG_CMD_ESN, sizeof (DMCmdEsnRsp), error))
|
||||
return NULL;
|
||||
|
||||
result = qcdm_result_new ();
|
||||
|
||||
/* Convert the ESN from binary to a hex string; it's LE so we have to
|
||||
* swap it to get the correct ordering.
|
||||
*/
|
||||
swapped[0] = rsp->esn[3];
|
||||
swapped[1] = rsp->esn[2];
|
||||
swapped[2] = rsp->esn[1];
|
||||
swapped[3] = rsp->esn[0];
|
||||
|
||||
tmp = bin2hexstr (&swapped[0], sizeof (swapped));
|
||||
qcdm_result_add_string (result, QCDM_CMD_ESN_ITEM_ESN, tmp);
|
||||
g_free (tmp);
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
@@ -22,9 +22,7 @@
|
||||
|
||||
#include "result.h"
|
||||
|
||||
gsize qcdm_cmd_version_info_new (char *buf,
|
||||
gsize len,
|
||||
GError **error);
|
||||
/**********************************************************************/
|
||||
|
||||
#define QCDM_CMD_VERSION_INFO_ITEM_COMP_DATE "comp-date"
|
||||
#define QCDM_CMD_VERSION_INFO_ITEM_COMP_TIME "comp-time"
|
||||
@@ -32,8 +30,26 @@ gsize qcdm_cmd_version_info_new (char *buf,
|
||||
#define QCDM_CMD_VERSION_INFO_ITEM_RELEASE_TIME "release-time"
|
||||
#define QCDM_CMD_VERSION_INFO_ITEM_MODEL "model"
|
||||
|
||||
gsize qcdm_cmd_version_info_new (char *buf,
|
||||
gsize len,
|
||||
GError **error);
|
||||
|
||||
QCDMResult *qcdm_cmd_version_info_result (const char *buf,
|
||||
gsize len,
|
||||
GError **error);
|
||||
|
||||
/**********************************************************************/
|
||||
|
||||
#define QCDM_CMD_ESN_ITEM_ESN "esn"
|
||||
|
||||
gsize qcdm_cmd_esn_new (char *buf,
|
||||
gsize len,
|
||||
GError **error);
|
||||
|
||||
QCDMResult *qcdm_cmd_esn_result (const char *buf,
|
||||
gsize len,
|
||||
GError **error);
|
||||
|
||||
/**********************************************************************/
|
||||
|
||||
#endif /* LIBQCDM_COMMANDS_H */
|
||||
|
@@ -183,5 +183,12 @@ struct DMCmdVersionInfoRsp {
|
||||
} __attribute__ ((packed));
|
||||
typedef struct DMCmdVersionInfoRsp DMCmdVersionInfoRsp;
|
||||
|
||||
/* DIAG_CMD_ESN */
|
||||
struct DMCmdEsnRsp {
|
||||
guint8 code;
|
||||
guint8 esn[4];
|
||||
} __attribute__ ((packed));
|
||||
typedef struct DMCmdEsnRsp DMCmdEsnRsp;
|
||||
|
||||
#endif /* LIBQCDM_DM_COMMANDS_H */
|
||||
|
||||
|
@@ -252,5 +252,29 @@ test_com (void *f, void *data)
|
||||
str = NULL;
|
||||
qcdm_result_get_string (result, QCDM_CMD_VERSION_INFO_ITEM_MODEL, &str);
|
||||
g_message ("%s: Model: %s", __func__, str);
|
||||
|
||||
qcdm_result_unref (result);
|
||||
|
||||
/* Get the device's ESN */
|
||||
|
||||
len = qcdm_cmd_esn_new (buf, sizeof (buf), NULL);
|
||||
g_assert (len == 4);
|
||||
|
||||
/* Send the command */
|
||||
success = send_command (d, buf, len);
|
||||
g_assert (success);
|
||||
|
||||
/* Get a response */
|
||||
reply_len = wait_reply (d, buf, sizeof (buf));
|
||||
|
||||
/* Parse the response into a result structure */
|
||||
result = qcdm_cmd_esn_result (buf, reply_len, &error);
|
||||
g_assert (result);
|
||||
|
||||
str = NULL;
|
||||
qcdm_result_get_string (result, QCDM_CMD_ESN_ITEM_ESN, &str);
|
||||
g_message ("%s: ESN: %s", __func__, str);
|
||||
|
||||
qcdm_result_unref (result);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user