/* ISC license. */ #include #include #include #include #include #include #include #include #include #include static size_t bssid_scan (char const *s, char *bssid) { unsigned int i = 0 ; char sep[6] = ":::::\t" ; for (; i < 6 ; i++) { if (!ucharn_scan(s, bssid + i, 1)) goto eproto ; if (s[2] != sep[i]) goto eproto ; s += 3 ; } return 18 ; eproto: return (errno = EPROTO, 0) ; } static int flags_scan (char const *s, size_t len, stralloc *sa) { while (len) { size_t pos ; if (*s++ != '[') goto eproto ; len-- ; pos = byte_chr(s, len, ']') ; if (pos >= len || !pos) goto eproto ; if (!stralloc_catb(sa, s, pos) || !stralloc_0(sa)) return 0 ; s += pos + 1 ; len -= pos + 1 ; } return 1 ; eproto: return (errno = EPROTO, 0) ; } static int wpactrl_scan_parse_one (char const *s, size_t len, wpactrl_scanres_t *thing, stralloc *sa) { wpactrl_scanres_t sr ; size_t pos = byte_chr(s, len, '\t') ; if (pos >= len) goto eproto ; if (pos != 18) goto eproto ; if (bssid_scan(s, sr.bssid) != pos) goto eproto ; s += pos + 1 ; len -= pos + 1 ; pos = byte_chr(s, len, '\t') ; if (pos >= len) goto eproto ; if (uint16_scan(s, &sr.frequency) != pos) goto eproto ; s += pos + 1 ; len -= pos + 1 ; pos = byte_chr(s, len, '\t') ; if (pos >= len) goto eproto ; sr.flags_start = sa->len ; if (!flags_scan(s, pos, sa)) goto eproto ; s += pos + 1 ; len -= pos + 1 ; sr.flags_len = sa->len - sr.flags_start ; sr.ssid_start = sa->len ; sr.ssid_len = len - 1 ; if (!stralloc_catb(sa, s, len - 1) || !stralloc_0(sa)) return 0 ; *thing = sr ; return 1 ; eproto: return (errno = EPROTO, 0) ; } int wpactrl_scan_parse (char const *s, size_t len, genalloc *ga, stralloc *sa) { int sawasnull = !sa->s ; int gawasnull = !genalloc_s(wpactrl_scanres_t, ga) ; size_t sabase = sa->len ; size_t gabase = genalloc_len(wpactrl_scanres_t, ga) ; size_t start = byte_chr(s, len, '\n') ; if (start++ >= len) return (errno = EPROTO, 0) ; while (start < len) { size_t pos = byte_chr(s + start, len - start, '\n') ; wpactrl_scanres_t thing ; if (!wpactrl_scan_parse_one(s + start, pos, &thing, sa)) goto err ; if (!genalloc_append(wpactrl_scanres_t, ga, &thing)) goto err ; start += pos + 1 ; } return 1 ; err: { int e = errno ; if (gawasnull) genalloc_free(wpactrl_scanres_t, ga) ; else genalloc_setlen(wpactrl_scanres_t, ga, gabase) ; if (sawasnull) stralloc_free(sa) ; else sa->len = sabase ; errno = e ; } return 0 ; }