diff options
author | Christian Hesse <mail@eworm.de> | 2018-03-07 21:02:45 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2018-03-07 21:02:45 +0100 |
commit | da27651dbf911cda2be30bf817194ff8d7329094 (patch) | |
tree | bb9f6df4004c6e290930df9cf4b29d2d77700f96 /netlink-notify.c | |
parent | 527d6a42ef0bf532ef1be3173ddb51937c00e848 (diff) | |
download | netlink-notify-da27651dbf911cda2be30bf817194ff8d7329094.tar.gz netlink-notify-da27651dbf911cda2be30bf817194ff8d7329094.tar.zst |
properly escape strings
Diffstat (limited to 'netlink-notify.c')
-rw-r--r-- | netlink-notify.c | 38 |
1 files changed, 27 insertions, 11 deletions
diff --git a/netlink-notify.c b/netlink-notify.c index f1de621..3228364 100644 --- a/netlink-notify.c +++ b/netlink-notify.c @@ -131,39 +131,55 @@ void get_ssid(const char *interface, char *essid) { /*** newstr_link ***/ char * newstr_link(char *interface, unsigned int flags) { - char *notifystr; + char *notifystr, *e_interface = NULL, *e_essid = NULL; char essid[IW_ESSID_MAX_SIZE + 1]; memset(&essid, 0, IW_ESSID_MAX_SIZE + 1); get_ssid(interface, essid); + e_interface = g_markup_escape_text(interface, -1); + if (strlen(essid) == 0) { - notifystr = malloc(sizeof(TEXT_NEWLINK) + strlen(interface) + 4); - sprintf(notifystr, TEXT_NEWLINK, interface, (flags & CHECK_CONNECTED) ? "up" : "down"); + notifystr = malloc(sizeof(TEXT_NEWLINK) + strlen(e_interface) + 4); + sprintf(notifystr, TEXT_NEWLINK, e_interface, (flags & CHECK_CONNECTED) ? "up" : "down"); } else { - notifystr = malloc(sizeof(TEXT_WIRELESS) + strlen(interface) + 4 + strlen(essid)); - sprintf(notifystr, TEXT_WIRELESS, interface, (flags & CHECK_CONNECTED) ? "up" : "down", essid); + e_essid = g_markup_escape_text(essid, -1); + + notifystr = malloc(sizeof(TEXT_WIRELESS) + strlen(e_interface) + 4 + strlen(e_essid)); + sprintf(notifystr, TEXT_WIRELESS, e_interface, (flags & CHECK_CONNECTED) ? "up" : "down", e_essid); + + free(e_essid); } + free(e_interface); + return notifystr; } /*** newstr_addr ***/ char * newstr_addr(char *interface, unsigned char family, char *ipaddr, unsigned char prefix) { - char *notifystr; + char *notifystr, *e_interface = NULL; - notifystr = malloc(sizeof(TEXT_NEWADDR)+ strlen(interface) + strlen(ipaddr)); - sprintf(notifystr, TEXT_NEWADDR, interface, family == AF_INET6 ? "IPv6" : "IP", ipaddr, prefix); + e_interface = g_markup_escape_text(interface, -1); + + notifystr = malloc(sizeof(TEXT_NEWADDR)+ strlen(e_interface) + strlen(ipaddr)); + sprintf(notifystr, TEXT_NEWADDR, e_interface, family == AF_INET6 ? "IPv6" : "IP", ipaddr, prefix); + + free(e_interface); return notifystr; } /*** newstr_away ***/ char * newstr_away(char *interface) { - char *notifystr; + char *notifystr, *e_interface = NULL; + + e_interface = g_markup_escape_text(interface, -1); + + notifystr = malloc(sizeof(TEXT_DELLINK) + strlen(e_interface)); + sprintf(notifystr, TEXT_DELLINK, e_interface); - notifystr = malloc(sizeof(TEXT_DELLINK) + strlen(interface)); - sprintf(notifystr, TEXT_DELLINK, interface); + free(e_interface); return notifystr; } |