librmnetctl: Add dedicated RTA helpers for common types
Adds helpers to add u16, u32, strings, and handling nested RTAs. This
helps cut down on the amount of extra variables and parameters needed to
add common RTAs.
Change-Id: Iddd7b1283d1e866026ed1c535a39867f0c8abf63
Signed-off-by: Sean Tranchetti <stranche@codeaurora.org>
diff --git a/rmnetctl/src/librmnetctl.c b/rmnetctl/src/librmnetctl.c
index a4912d5..6b8304a 100644
--- a/rmnetctl/src/librmnetctl.c
+++ b/rmnetctl/src/librmnetctl.c
@@ -1029,6 +1029,73 @@
return RMNETCTL_SUCCESS;
}
+
+/* @brief Add an RTA to the Netlink message with a u16 data
+ * @param *req The Netlink message
+ * @param *reqsize The remainins space within the Netlink message
+ * @param type The type of the RTA to add
+ * @param data The data of the RTA
+ * @rteturn RMNETCTL_LIB_ERR if there is not enough space to add the RTA
+ * @return RMNETCTL_SUCCESS if we added the RTA successfully
+ */
+static int rta_put_u16(struct nlmsg *req, size_t *reqsize, int type,
+ uint16_t data)
+{
+ return rta_put(req, reqsize, type, sizeof(data), &data);
+}
+
+/* @brief Add an RTA to the Netlink message with a u32 data
+ * @param *req The Netlink message
+ * @param *reqsize The remainins space within the Netlink message
+ * @param type The type of the RTA to add
+ * @param data The data of the RTA
+ * @rteturn RMNETCTL_LIB_ERR if there is not enough space to add the RTA
+ * @return RMNETCTL_SUCCESS if we added the RTA successfully
+ */
+static int rta_put_u32(struct nlmsg *req, size_t *reqsize, int type,
+ uint32_t data)
+{
+ return rta_put(req, reqsize, type, sizeof(data), &data);
+}
+
+/* @brief Add an RTA to the Netlink message with string data
+ * @param *req The Netlink message
+ * @param *reqsize The remainins space within the Netlink message
+ * @param type The type of the RTA to add
+ * @param *data The data of the RTA
+ * @rteturn RMNETCTL_LIB_ERR if there is not enough space to add the RTA
+ * @return RMNETCTL_SUCCESS if we added the RTA successfully
+ */
+static int rta_put_string(struct nlmsg *req, size_t *reqsize, int type,
+ char *data)
+{
+ return rta_put(req, reqsize, type, strlen(data) + 1, data);
+}
+
+/* @brief Start a nested RTA within the Netlink message
+ * @param *req The Netlink message
+ * @param *reqsize The remainins space within the Netlink message
+ * @param type The type of the RTA to add
+ * @param **start A pointer where we store the start of the ensted attribute
+ * @rteturn RMNETCTL_LIB_ERR if there is not enough space to add the RTA
+ * @return RMNETCTL_SUCCESS if we added the RTA successfully
+ */
+static int rta_nested_start(struct nlmsg *req, size_t *reqsize, int type,
+ struct rtattr **start)
+{
+ *start = NLMSG_TAIL(&req->nl_addr);
+ return rta_put(req, reqsize, type, 0, NULL);
+}
+
+/* @brief End a nested RTA previously started with rta_nested_start
+ * @param *req The Netlink message
+ * @param *start The start of the nested RTA, as provided by rta_nested_start
+ */
+static void rta_nested_end(struct nlmsg *req, struct rtattr *start)
+{
+ start->rta_len = (char *)NLMSG_TAIL(&req->nl_addr) - (char *)start;
+}
+
/* @brief Synchronous method to receive messages to and from the kernel
* using netlink sockets
* @details Receives the ack response from the kernel.
@@ -1153,10 +1220,9 @@
{
struct rtattr *datainfo, *linkinfo;
struct ifla_vlan_flags flags;
- unsigned int devindex = 0, val = 0;
+ unsigned int devindex = 0;
char *kind = "rmnet";
struct nlmsg req;
- short id;
size_t reqsize;
int rc;
@@ -1182,38 +1248,33 @@
/* Setup link attr with devindex as data */
*error_code = RMNETCTL_API_ERR_RTA_FAILURE;
- rc = rta_put(&req, &reqsize, IFLA_LINK, sizeof(devindex), &devindex);
+ rc = rta_put_u32(&req, &reqsize, IFLA_LINK, devindex);
if (rc != RMNETCTL_SUCCESS)
return rc;
- val = RMNETCTL_NUM_TX_QUEUES;
- rc = rta_put(&req, &reqsize, RMNET_IFLA_NUM_TX_QUEUES, sizeof(val),
- &val);
+ rc = rta_put_u32(&req, &reqsize, RMNET_IFLA_NUM_TX_QUEUES,
+ RMNETCTL_NUM_TX_QUEUES);
if (rc != RMNETCTL_SUCCESS)
return rc;
- rc = rta_put(&req, &reqsize, IFLA_IFNAME, strlen(vndname) + 1,
- vndname);
+ rc = rta_put_string(&req, &reqsize, IFLA_IFNAME, vndname);
if (rc != RMNETCTL_SUCCESS)
return rc;
/* Set up IFLA info kind RMNET that has linkinfo and type */
- linkinfo = NLMSG_TAIL(&req.nl_addr);
- rc = rta_put(&req, &reqsize, IFLA_LINKINFO, 0, NULL);
+ rc = rta_nested_start(&req, &reqsize, IFLA_LINKINFO, &linkinfo);
if (rc != RMNETCTL_SUCCESS)
return rc;
- rc = rta_put(&req, &reqsize, IFLA_INFO_KIND, strlen(kind) + 1, kind);
+ rc = rta_put_string(&req, &reqsize, IFLA_INFO_KIND, kind);
if (rc != RMNETCTL_SUCCESS)
return rc;
- datainfo = NLMSG_TAIL(&req.nl_addr);
- rc = rta_put(&req, &reqsize, IFLA_INFO_DATA, 0, NULL);
+ rc = rta_nested_start(&req, &reqsize, IFLA_INFO_DATA, &datainfo);
if (rc != RMNETCTL_SUCCESS)
return rc;
- id = index;
- rc = rta_put(&req, &reqsize, IFLA_VLAN_ID, sizeof(id), &id);
+ rc = rta_put_u16(&req, &reqsize, IFLA_VLAN_ID, index);
if (rc != RMNETCTL_SUCCESS)
return rc;
@@ -1227,9 +1288,8 @@
return rc;
}
- datainfo->rta_len = (char *)NLMSG_TAIL(&req.nl_addr) - (char *)datainfo;
-
- linkinfo->rta_len = (char *)NLMSG_TAIL(&req.nl_addr) - (char *)linkinfo;
+ rta_nested_end(&req, datainfo);
+ rta_nested_end(&req, linkinfo);
if (send(hndl->netlink_fd, &req, req.nl_addr.nlmsg_len, 0) < 0) {
*error_code = RMNETCTL_API_ERR_MESSAGE_SEND;
@@ -1283,7 +1343,6 @@
struct nlmsg req;
unsigned int devindex = 0;
size_t reqsize;
- short id;
int rc;
memset(&req, 0, sizeof(req));
@@ -1308,32 +1367,28 @@
/* Setup link attr with devindex as data */
*error_code = RMNETCTL_API_ERR_RTA_FAILURE;
- rc = rta_put(&req, &reqsize, IFLA_LINK, sizeof(devindex), &devindex);
+ rc = rta_put_u32(&req, &reqsize, IFLA_LINK, devindex);
if (rc != RMNETCTL_SUCCESS)
return rc;
- rc = rta_put(&req, &reqsize, IFLA_IFNAME, strlen(vndname) + 1,
- vndname);
+ rc = rta_put_string(&req, &reqsize, IFLA_IFNAME, vndname);
if (rc != RMNETCTL_SUCCESS)
return rc;
/* Set up IFLA info kind RMNET that has linkinfo and type */
- linkinfo = NLMSG_TAIL(&req.nl_addr);
- rc = rta_put(&req, &reqsize, IFLA_LINKINFO, 0, NULL);
+ rc = rta_nested_start(&req, &reqsize, IFLA_LINKINFO, &linkinfo);
if (rc != RMNETCTL_SUCCESS)
return rc;
- rc = rta_put(&req, &reqsize, IFLA_INFO_KIND, strlen(kind) + 1, kind);
+ rc = rta_put_string(&req, &reqsize, IFLA_INFO_KIND, kind);
if (rc != RMNETCTL_SUCCESS)
return rc;
- datainfo = NLMSG_TAIL(&req.nl_addr);
- rc = rta_put(&req, &reqsize, IFLA_INFO_DATA, 0, NULL);
+ rc = rta_nested_start(&req, &reqsize, IFLA_INFO_DATA, &datainfo);
if (rc != RMNETCTL_SUCCESS)
return rc;
- id = index;
- rc = rta_put(&req, &reqsize, IFLA_VLAN_ID, sizeof(id), &id);
+ rc = rta_put_u16(&req, &reqsize, IFLA_VLAN_ID, index);
if (rc != RMNETCTL_SUCCESS)
return rc;
@@ -1347,9 +1402,8 @@
return rc;
}
- datainfo->rta_len = (char *)NLMSG_TAIL(&req.nl_addr) - (char *)datainfo;
-
- linkinfo->rta_len = (char *)NLMSG_TAIL(&req.nl_addr) - (char *)linkinfo;
+ rta_nested_end(&req, datainfo);
+ rta_nested_end(&req, linkinfo);
if (send(hndl->netlink_fd, &req, req.nl_addr.nlmsg_len, 0) < 0) {
*error_code = RMNETCTL_API_ERR_MESSAGE_SEND;
@@ -1393,7 +1447,7 @@
/* Setup index attribute */
req.ifmsg.ifi_index = devindex;
- rc = rta_put(&req, &reqsize, IFLA_MASTER, sizeof(vndindex), &vndindex);
+ rc = rta_put_u32(&req, &reqsize, IFLA_MASTER, vndindex);
if (rc != RMNETCTL_SUCCESS) {
*error_code = RMNETCTL_API_ERR_RTA_FAILURE;
return rc;
@@ -1449,27 +1503,24 @@
/* Setup link attr with devindex as data */
*error_code = RMNETCTL_API_ERR_RTA_FAILURE;
- rc = rta_put(&req, &reqsize, IFLA_LINK, sizeof(devindex), &devindex);
+ rc = rta_put_u32(&req, &reqsize, IFLA_LINK, devindex);
if (rc != RMNETCTL_SUCCESS)
return rc;
- rc = rta_put(&req, &reqsize, IFLA_IFNAME, strlen(vndname) + 1,
- vndname);
+ rc = rta_put_string(&req, &reqsize, IFLA_IFNAME, vndname);
if (rc != RMNETCTL_SUCCESS)
return rc;
/* Set up IFLA info kind RMNET that has linkinfo and type */
- linkinfo = NLMSG_TAIL(&req.nl_addr);
- rc = rta_put(&req, &reqsize, IFLA_LINKINFO, 0, NULL);
+ rc = rta_nested_start(&req, &reqsize, IFLA_LINKINFO, &linkinfo);
if (rc != RMNETCTL_SUCCESS)
return rc;
- rc = rta_put(&req, &reqsize, IFLA_INFO_KIND, strlen(kind) + 1, kind);
+ rc = rta_put_string(&req, &reqsize, IFLA_INFO_KIND, kind);
if (rc != RMNETCTL_SUCCESS)
return rc;
- datainfo = NLMSG_TAIL(&req.nl_addr);
- rc = rta_put(&req, &reqsize, IFLA_INFO_DATA, 0, NULL);
+ rc = rta_nested_start(&req, &reqsize, IFLA_INFO_DATA, &datainfo);
if (rc != RMNETCTL_SUCCESS)
return rc;
@@ -1484,9 +1535,8 @@
if (rc != RMNETCTL_SUCCESS)
return rc;
- datainfo->rta_len = (char *)NLMSG_TAIL(&req.nl_addr) - (char *)datainfo;
-
- linkinfo->rta_len = (char *)NLMSG_TAIL(&req.nl_addr) - (char *)linkinfo;
+ rta_nested_end(&req, datainfo);
+ rta_nested_end(&req, linkinfo);
if (send(hndl->netlink_fd, &req, req.nl_addr.nlmsg_len, 0) < 0) {
*error_code = RMNETCTL_API_ERR_MESSAGE_SEND;
@@ -1536,27 +1586,24 @@
/* Setup link attr with devindex as data */
*error_code = RMNETCTL_API_ERR_RTA_FAILURE;
- rc = rta_put(&req, &reqsize, IFLA_LINK, sizeof(devindex), &devindex);
+ rc = rta_put_u32(&req, &reqsize, IFLA_LINK, devindex);
if (rc != RMNETCTL_SUCCESS)
return rc;
- rc = rta_put(&req, &reqsize, IFLA_IFNAME, strlen(vndname) + 1,
- vndname);
+ rc = rta_put_string(&req, &reqsize, IFLA_IFNAME, vndname);
if (rc != RMNETCTL_SUCCESS)
return rc;
/* Set up IFLA info kind RMNET that has linkinfo and type */
- linkinfo = NLMSG_TAIL(&req.nl_addr);
- rc = rta_put(&req, &reqsize, IFLA_LINKINFO, 0, NULL);
+ rc = rta_nested_start(&req, &reqsize, IFLA_LINKINFO, &linkinfo);
if (rc != RMNETCTL_SUCCESS)
return rc;
- rc = rta_put(&req, &reqsize, IFLA_INFO_KIND, strlen(kind) + 1, kind);
+ rc = rta_put_string(&req, &reqsize, IFLA_INFO_KIND, kind);
if (rc != RMNETCTL_SUCCESS)
return rc;
- datainfo = NLMSG_TAIL(&req.nl_addr);
- rc = rta_put(&req, &reqsize, IFLA_INFO_DATA, 0, NULL);
+ rc = rta_nested_start(&req, &reqsize, IFLA_INFO_DATA, &datainfo);
if (rc != RMNETCTL_SUCCESS)
return rc;
@@ -1570,9 +1617,8 @@
if (rc != RMNETCTL_SUCCESS)
return rc;
- datainfo->rta_len = (char *)NLMSG_TAIL(&req.nl_addr) - (char *)datainfo;
-
- linkinfo->rta_len = (char *)NLMSG_TAIL(&req.nl_addr) - (char *)linkinfo;
+ rta_nested_end(&req, datainfo);
+ rta_nested_end(&req, linkinfo);
if (send(hndl->netlink_fd, &req, req.nl_addr.nlmsg_len, 0) < 0) {
*error_code = RMNETCTL_API_ERR_MESSAGE_SEND;
@@ -1622,27 +1668,24 @@
/* Setup link attr with devindex as data */
*error_code = RMNETCTL_API_ERR_RTA_FAILURE;
- rc = rta_put(&req, &reqsize, IFLA_LINK, sizeof(devindex), &devindex);
+ rc = rta_put_u32(&req, &reqsize, IFLA_LINK, devindex);
if (rc != RMNETCTL_SUCCESS)
return rc;
- rc = rta_put(&req, &reqsize, IFLA_IFNAME, strlen(vndname) + 1,
- vndname);
+ rc = rta_put_string(&req, &reqsize, IFLA_IFNAME, vndname);
if (rc != RMNETCTL_SUCCESS)
return rc;
/* Set up IFLA info kind RMNET that has linkinfo and type */
- linkinfo = NLMSG_TAIL(&req.nl_addr);
- rc = rta_put(&req, &reqsize, IFLA_LINKINFO, 0, NULL);
+ rc = rta_nested_start(&req, &reqsize, IFLA_LINKINFO, &linkinfo);
if (rc != RMNETCTL_SUCCESS)
return rc;
- rc = rta_put(&req, &reqsize, IFLA_LINKINFO, strlen(kind) + 1, kind);
+ rc = rta_put_string(&req, &reqsize, IFLA_LINKINFO, kind);
if (rc != RMNETCTL_SUCCESS)
return rc;
- datainfo = NLMSG_TAIL(&req.nl_addr);
- rc = rta_put(&req, &reqsize, IFLA_INFO_DATA, 0, NULL);
+ rc = rta_nested_start(&req, &reqsize, IFLA_INFO_DATA, &datainfo);
if (rc != RMNETCTL_SUCCESS)
return rc;
@@ -1657,8 +1700,8 @@
if (rc != RMNETCTL_SUCCESS)
return rc;
- datainfo->rta_len = (char *)NLMSG_TAIL(&req.nl_addr) - (char *)datainfo;
- linkinfo->rta_len = (char *)NLMSG_TAIL(&req.nl_addr) - (char *)linkinfo;
+ rta_nested_end(&req, datainfo);
+ rta_nested_end(&req, linkinfo);
if (send(hndl->netlink_fd, &req, req.nl_addr.nlmsg_len, 0) < 0) {
*error_code = RMNETCTL_API_ERR_MESSAGE_SEND;
@@ -1709,27 +1752,24 @@
/* Setup link attr with devindex as data */
*error_code = RMNETCTL_API_ERR_RTA_FAILURE;
- rc = rta_put(&req, &reqsize, IFLA_LINK, sizeof(devindex), &devindex);
+ rc = rta_put_u32(&req, &reqsize, IFLA_LINK, devindex);
if (rc != RMNETCTL_SUCCESS)
return rc;
- rc = rta_put(&req, &reqsize, IFLA_IFNAME, strlen(vndname) + 1,
- vndname);
+ rc = rta_put_string(&req, &reqsize, IFLA_IFNAME, vndname);
if (rc != RMNETCTL_SUCCESS)
return rc;
/* Set up IFLA info kind RMNET that has linkinfo and type */
- linkinfo = NLMSG_TAIL(&req.nl_addr);
- rc = rta_put(&req, &reqsize, IFLA_LINKINFO, 0, NULL);
+ rc = rta_nested_start(&req, &reqsize, IFLA_LINKINFO, &linkinfo);
if (rc != RMNETCTL_SUCCESS)
return rc;
- rc = rta_put(&req, &reqsize, IFLA_INFO_KIND, strlen(kind) + 1, kind);
+ rc = rta_put_string(&req, &reqsize, IFLA_INFO_KIND, kind);
if (rc != RMNETCTL_SUCCESS)
return rc;
- datainfo = NLMSG_TAIL(&req.nl_addr);
- rc = rta_put(&req, &reqsize, IFLA_INFO_DATA, 0, NULL);
+ rc = rta_nested_start(&req, &reqsize, IFLA_INFO_DATA, &datainfo);
if (rc != RMNETCTL_SUCCESS)
return rc;
@@ -1744,8 +1784,8 @@
if (rc != RMNETCTL_SUCCESS)
return rc;
- datainfo->rta_len = (char *)NLMSG_TAIL(&req.nl_addr) - (char *)datainfo;
- linkinfo->rta_len = (char *)NLMSG_TAIL(&req.nl_addr) - (char *)linkinfo;
+ rta_nested_end(&req, datainfo);
+ rta_nested_end(&req, linkinfo);
if (send(hndl->netlink_fd, &req, req.nl_addr.nlmsg_len, 0) < 0) {
*error_code = RMNETCTL_API_ERR_MESSAGE_SEND;
@@ -1793,27 +1833,24 @@
/* Setup link attr with devindex as data */
*error_code = RMNETCTL_API_ERR_RTA_FAILURE;
- rc = rta_put(&req, &reqsize, IFLA_LINK, sizeof(devindex), &devindex);
+ rc = rta_put_u32(&req, &reqsize, IFLA_LINK, devindex);
if (rc != RMNETCTL_SUCCESS)
return rc;
- rc = rta_put(&req, &reqsize, IFLA_IFNAME, strlen(vndname) + 1,
- vndname);
+ rc = rta_put_string(&req, &reqsize, IFLA_IFNAME, vndname);
if (rc != RMNETCTL_SUCCESS)
return rc;
/* Set up IFLA info kind RMNET that has linkinfo and type */
- linkinfo = NLMSG_TAIL(&req.nl_addr);
- rc = rta_put(&req, &reqsize, IFLA_LINKINFO, 0, NULL);
+ rc = rta_nested_start(&req, &reqsize, IFLA_LINKINFO, &linkinfo);
if (rc != RMNETCTL_SUCCESS)
return rc;
- rc = rta_put(&req, &reqsize, IFLA_INFO_KIND, strlen(kind) + 1, kind);
+ rc = rta_put_string(&req, &reqsize, IFLA_INFO_KIND, kind);
if (rc != RMNETCTL_SUCCESS)
return rc;
- datainfo = NLMSG_TAIL(&req.nl_addr);
- rc = rta_put(&req, &reqsize, IFLA_INFO_DATA, 0, NULL);
+ rc = rta_nested_start(&req, &reqsize, IFLA_INFO_DATA, &datainfo);
if (rc != RMNETCTL_SUCCESS)
return rc;
@@ -1825,9 +1862,8 @@
if (rc != RMNETCTL_SUCCESS)
return rc;
-
- datainfo->rta_len = (char *)NLMSG_TAIL(&req.nl_addr) - (char *)datainfo;
- linkinfo->rta_len = (char *)NLMSG_TAIL(&req.nl_addr) - (char *)linkinfo;
+ rta_nested_end(&req, datainfo);
+ rta_nested_end(&req, linkinfo);
if (send(hndl->netlink_fd, &req, req.nl_addr.nlmsg_len, 0) < 0) {
*error_code = RMNETCTL_API_ERR_MESSAGE_SEND;