123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575 |
- /*
- * RADIUS message processing
- * Copyright (c) 2002-2009, 2011-2012, Jouni Malinen <j@w1.fi>
- *
- * This software may be distributed under the terms of the BSD license.
- * See README for more details.
- */
- #include "utils/includes.h"
- #include "utils/common.h"
- #include "utils/wpabuf.h"
- #include "crypto/md5.h"
- #include "crypto/crypto.h"
- #include "radius.h"
- /**
- * struct radius_msg - RADIUS message structure for new and parsed messages
- */
- struct radius_msg {
- /**
- * buf - Allocated buffer for RADIUS message
- */
- struct wpabuf *buf;
- /**
- * hdr - Pointer to the RADIUS header in buf
- */
- struct radius_hdr *hdr;
- /**
- * attr_pos - Array of indexes to attributes
- *
- * The values are number of bytes from buf to the beginning of
- * struct radius_attr_hdr.
- */
- size_t *attr_pos;
- /**
- * attr_size - Total size of the attribute pointer array
- */
- size_t attr_size;
- /**
- * attr_used - Total number of attributes in the array
- */
- size_t attr_used;
- };
- struct radius_hdr * radius_msg_get_hdr(struct radius_msg *msg)
- {
- return msg->hdr;
- }
- struct wpabuf * radius_msg_get_buf(struct radius_msg *msg)
- {
- return msg->buf;
- }
- static struct radius_attr_hdr *
- radius_get_attr_hdr(struct radius_msg *msg, int idx)
- {
- return (struct radius_attr_hdr *)
- (wpabuf_mhead_u8(msg->buf) + msg->attr_pos[idx]);
- }
- static void radius_msg_set_hdr(struct radius_msg *msg, u8 code, u8 identifier)
- {
- msg->hdr->code = code;
- msg->hdr->identifier = identifier;
- }
- static int radius_msg_initialize(struct radius_msg *msg)
- {
- msg->attr_pos = os_calloc(RADIUS_DEFAULT_ATTR_COUNT,
- sizeof(*msg->attr_pos));
- if (msg->attr_pos == NULL)
- return -1;
- msg->attr_size = RADIUS_DEFAULT_ATTR_COUNT;
- msg->attr_used = 0;
- return 0;
- }
- /**
- * radius_msg_new - Create a new RADIUS message
- * @code: Code for RADIUS header
- * @identifier: Identifier for RADIUS header
- * Returns: Context for RADIUS message or %NULL on failure
- *
- * The caller is responsible for freeing the returned data with
- * radius_msg_free().
- */
- struct radius_msg * radius_msg_new(u8 code, u8 identifier)
- {
- struct radius_msg *msg;
- msg = os_zalloc(sizeof(*msg));
- if (msg == NULL)
- return NULL;
- msg->buf = wpabuf_alloc(RADIUS_DEFAULT_MSG_SIZE);
- if (msg->buf == NULL || radius_msg_initialize(msg)) {
- radius_msg_free(msg);
- return NULL;
- }
- msg->hdr = wpabuf_put(msg->buf, sizeof(struct radius_hdr));
- radius_msg_set_hdr(msg, code, identifier);
- return msg;
- }
- /**
- * radius_msg_free - Free a RADIUS message
- * @msg: RADIUS message from radius_msg_new() or radius_msg_parse()
- */
- void radius_msg_free(struct radius_msg *msg)
- {
- if (msg == NULL)
- return;
- wpabuf_free(msg->buf);
- os_free(msg->attr_pos);
- os_free(msg);
- }
- static const char *radius_code_string(u8 code)
- {
- switch (code) {
- case RADIUS_CODE_ACCESS_REQUEST: return "Access-Request";
- case RADIUS_CODE_ACCESS_ACCEPT: return "Access-Accept";
- case RADIUS_CODE_ACCESS_REJECT: return "Access-Reject";
- case RADIUS_CODE_ACCOUNTING_REQUEST: return "Accounting-Request";
- case RADIUS_CODE_ACCOUNTING_RESPONSE: return "Accounting-Response";
- case RADIUS_CODE_ACCESS_CHALLENGE: return "Access-Challenge";
- case RADIUS_CODE_STATUS_SERVER: return "Status-Server";
- case RADIUS_CODE_STATUS_CLIENT: return "Status-Client";
- case RADIUS_CODE_RESERVED: return "Reserved";
- case RADIUS_CODE_DISCONNECT_REQUEST: return "Disconnect-Request";
- case RADIUS_CODE_DISCONNECT_ACK: return "Disconnect-ACK";
- case RADIUS_CODE_DISCONNECT_NAK: return "Disconnect-NAK";
- case RADIUS_CODE_COA_REQUEST: return "CoA-Request";
- case RADIUS_CODE_COA_ACK: return "CoA-ACK";
- case RADIUS_CODE_COA_NAK: return "CoA-NAK";
- default: return "?Unknown?";
- }
- }
- struct radius_attr_type {
- u8 type;
- char *name;
- enum {
- RADIUS_ATTR_UNDIST, RADIUS_ATTR_TEXT, RADIUS_ATTR_IP,
- RADIUS_ATTR_HEXDUMP, RADIUS_ATTR_INT32, RADIUS_ATTR_IPV6
- } data_type;
- };
- static struct radius_attr_type radius_attrs[] =
- {
- { RADIUS_ATTR_USER_NAME, "User-Name", RADIUS_ATTR_TEXT },
- { RADIUS_ATTR_USER_PASSWORD, "User-Password", RADIUS_ATTR_UNDIST },
- { RADIUS_ATTR_NAS_IP_ADDRESS, "NAS-IP-Address", RADIUS_ATTR_IP },
- { RADIUS_ATTR_NAS_PORT, "NAS-Port", RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_FRAMED_MTU, "Framed-MTU", RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_REPLY_MESSAGE, "Reply-Message", RADIUS_ATTR_TEXT },
- { RADIUS_ATTR_STATE, "State", RADIUS_ATTR_UNDIST },
- { RADIUS_ATTR_CLASS, "Class", RADIUS_ATTR_UNDIST },
- { RADIUS_ATTR_VENDOR_SPECIFIC, "Vendor-Specific", RADIUS_ATTR_UNDIST },
- { RADIUS_ATTR_SESSION_TIMEOUT, "Session-Timeout", RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_IDLE_TIMEOUT, "Idle-Timeout", RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_TERMINATION_ACTION, "Termination-Action",
- RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_CALLED_STATION_ID, "Called-Station-Id",
- RADIUS_ATTR_TEXT },
- { RADIUS_ATTR_CALLING_STATION_ID, "Calling-Station-Id",
- RADIUS_ATTR_TEXT },
- { RADIUS_ATTR_NAS_IDENTIFIER, "NAS-Identifier", RADIUS_ATTR_TEXT },
- { RADIUS_ATTR_PROXY_STATE, "Proxy-State", RADIUS_ATTR_UNDIST },
- { RADIUS_ATTR_ACCT_STATUS_TYPE, "Acct-Status-Type",
- RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_ACCT_DELAY_TIME, "Acct-Delay-Time", RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_ACCT_INPUT_OCTETS, "Acct-Input-Octets",
- RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_ACCT_OUTPUT_OCTETS, "Acct-Output-Octets",
- RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_ACCT_SESSION_ID, "Acct-Session-Id", RADIUS_ATTR_TEXT },
- { RADIUS_ATTR_ACCT_AUTHENTIC, "Acct-Authentic", RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_ACCT_SESSION_TIME, "Acct-Session-Time",
- RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_ACCT_INPUT_PACKETS, "Acct-Input-Packets",
- RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_ACCT_OUTPUT_PACKETS, "Acct-Output-Packets",
- RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_ACCT_TERMINATE_CAUSE, "Acct-Terminate-Cause",
- RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_ACCT_MULTI_SESSION_ID, "Acct-Multi-Session-Id",
- RADIUS_ATTR_TEXT },
- { RADIUS_ATTR_ACCT_LINK_COUNT, "Acct-Link-Count", RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_ACCT_INPUT_GIGAWORDS, "Acct-Input-Gigawords",
- RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_ACCT_OUTPUT_GIGAWORDS, "Acct-Output-Gigawords",
- RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_EVENT_TIMESTAMP, "Event-Timestamp",
- RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_NAS_PORT_TYPE, "NAS-Port-Type", RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_TUNNEL_TYPE, "Tunnel-Type", RADIUS_ATTR_HEXDUMP },
- { RADIUS_ATTR_TUNNEL_MEDIUM_TYPE, "Tunnel-Medium-Type",
- RADIUS_ATTR_HEXDUMP },
- { RADIUS_ATTR_TUNNEL_PASSWORD, "Tunnel-Password",
- RADIUS_ATTR_UNDIST },
- { RADIUS_ATTR_CONNECT_INFO, "Connect-Info", RADIUS_ATTR_TEXT },
- { RADIUS_ATTR_EAP_MESSAGE, "EAP-Message", RADIUS_ATTR_UNDIST },
- { RADIUS_ATTR_MESSAGE_AUTHENTICATOR, "Message-Authenticator",
- RADIUS_ATTR_UNDIST },
- { RADIUS_ATTR_TUNNEL_PRIVATE_GROUP_ID, "Tunnel-Private-Group-Id",
- RADIUS_ATTR_HEXDUMP },
- { RADIUS_ATTR_ACCT_INTERIM_INTERVAL, "Acct-Interim-Interval",
- RADIUS_ATTR_INT32 },
- { RADIUS_ATTR_CHARGEABLE_USER_IDENTITY, "Chargeable-User-Identity",
- RADIUS_ATTR_TEXT },
- { RADIUS_ATTR_NAS_IPV6_ADDRESS, "NAS-IPv6-Address", RADIUS_ATTR_IPV6 },
- { RADIUS_ATTR_ERROR_CAUSE, "Error-Cause", RADIUS_ATTR_INT32 }
- };
- #define RADIUS_ATTRS (sizeof(radius_attrs) / sizeof(radius_attrs[0]))
- static struct radius_attr_type *radius_get_attr_type(u8 type)
- {
- size_t i;
- for (i = 0; i < RADIUS_ATTRS; i++) {
- if (type == radius_attrs[i].type)
- return &radius_attrs[i];
- }
- return NULL;
- }
- static void print_char(char c)
- {
- if (c >= 32 && c < 127)
- printf("%c", c);
- else
- printf("<%02x>", c);
- }
- static void radius_msg_dump_attr(struct radius_attr_hdr *hdr)
- {
- struct radius_attr_type *attr;
- int i, len;
- unsigned char *pos;
- attr = radius_get_attr_type(hdr->type);
- printf(" Attribute %d (%s) length=%d\n",
- hdr->type, attr ? attr->name : "?Unknown?", hdr->length);
- if (attr == NULL || hdr->length < sizeof(struct radius_attr_hdr))
- return;
- len = hdr->length - sizeof(struct radius_attr_hdr);
- pos = (unsigned char *) (hdr + 1);
- switch (attr->data_type) {
- case RADIUS_ATTR_TEXT:
- printf(" Value: '");
- for (i = 0; i < len; i++)
- print_char(pos[i]);
- printf("'\n");
- break;
- case RADIUS_ATTR_IP:
- if (len == 4) {
- struct in_addr addr;
- os_memcpy(&addr, pos, 4);
- printf(" Value: %s\n", inet_ntoa(addr));
- } else
- printf(" Invalid IP address length %d\n", len);
- break;
- #ifdef CONFIG_IPV6
- case RADIUS_ATTR_IPV6:
- if (len == 16) {
- char buf[128];
- const char *atxt;
- struct in6_addr *addr = (struct in6_addr *) pos;
- atxt = inet_ntop(AF_INET6, addr, buf, sizeof(buf));
- printf(" Value: %s\n", atxt ? atxt : "?");
- } else
- printf(" Invalid IPv6 address length %d\n", len);
- break;
- #endif /* CONFIG_IPV6 */
- case RADIUS_ATTR_HEXDUMP:
- case RADIUS_ATTR_UNDIST:
- printf(" Value:");
- for (i = 0; i < len; i++)
- printf(" %02x", pos[i]);
- printf("\n");
- break;
- case RADIUS_ATTR_INT32:
- if (len == 4)
- printf(" Value: %u\n", WPA_GET_BE32(pos));
- else
- printf(" Invalid INT32 length %d\n", len);
- break;
- default:
- break;
- }
- }
- void radius_msg_dump(struct radius_msg *msg)
- {
- size_t i;
- printf("RADIUS message: code=%d (%s) identifier=%d length=%d\n",
- msg->hdr->code, radius_code_string(msg->hdr->code),
- msg->hdr->identifier, be_to_host16(msg->hdr->length));
- for (i = 0; i < msg->attr_used; i++) {
- struct radius_attr_hdr *attr = radius_get_attr_hdr(msg, i);
- radius_msg_dump_attr(attr);
- }
- }
- int radius_msg_finish(struct radius_msg *msg, const u8 *secret,
- size_t secret_len)
- {
- if (secret) {
- u8 auth[MD5_MAC_LEN];
- struct radius_attr_hdr *attr;
- os_memset(auth, 0, MD5_MAC_LEN);
- attr = radius_msg_add_attr(msg,
- RADIUS_ATTR_MESSAGE_AUTHENTICATOR,
- auth, MD5_MAC_LEN);
- if (attr == NULL) {
- wpa_printf(MSG_WARNING, "RADIUS: Could not add "
- "Message-Authenticator");
- return -1;
- }
- msg->hdr->length = host_to_be16(wpabuf_len(msg->buf));
- hmac_md5(secret, secret_len, wpabuf_head(msg->buf),
- wpabuf_len(msg->buf), (u8 *) (attr + 1));
- } else
- msg->hdr->length = host_to_be16(wpabuf_len(msg->buf));
- if (wpabuf_len(msg->buf) > 0xffff) {
- wpa_printf(MSG_WARNING, "RADIUS: Too long message (%lu)",
- (unsigned long) wpabuf_len(msg->buf));
- return -1;
- }
- return 0;
- }
- int radius_msg_finish_srv(struct radius_msg *msg, const u8 *secret,
- size_t secret_len, const u8 *req_authenticator)
- {
- u8 auth[MD5_MAC_LEN];
- struct radius_attr_hdr *attr;
- const u8 *addr[4];
- size_t len[4];
- os_memset(auth, 0, MD5_MAC_LEN);
- attr = radius_msg_add_attr(msg, RADIUS_ATTR_MESSAGE_AUTHENTICATOR,
- auth, MD5_MAC_LEN);
- if (attr == NULL) {
- printf("WARNING: Could not add Message-Authenticator\n");
- return -1;
- }
- msg->hdr->length = host_to_be16(wpabuf_len(msg->buf));
- os_memcpy(msg->hdr->authenticator, req_authenticator,
- sizeof(msg->hdr->authenticator));
- hmac_md5(secret, secret_len, wpabuf_head(msg->buf),
- wpabuf_len(msg->buf), (u8 *) (attr + 1));
- /* ResponseAuth = MD5(Code+ID+Length+RequestAuth+Attributes+Secret) */
- addr[0] = (u8 *) msg->hdr;
- len[0] = 1 + 1 + 2;
- addr[1] = req_authenticator;
- len[1] = MD5_MAC_LEN;
- addr[2] = wpabuf_head_u8(msg->buf) + sizeof(struct radius_hdr);
- len[2] = wpabuf_len(msg->buf) - sizeof(struct radius_hdr);
- addr[3] = secret;
- len[3] = secret_len;
- md5_vector(4, addr, len, msg->hdr->authenticator);
- if (wpabuf_len(msg->buf) > 0xffff) {
- wpa_printf(MSG_WARNING, "RADIUS: Too long message (%lu)",
- (unsigned long) wpabuf_len(msg->buf));
- return -1;
- }
- return 0;
- }
- int radius_msg_finish_das_resp(struct radius_msg *msg, const u8 *secret,
- size_t secret_len,
- const struct radius_hdr *req_hdr)
- {
- const u8 *addr[2];
- size_t len[2];
- u8 auth[MD5_MAC_LEN];
- struct radius_attr_hdr *attr;
- os_memset(auth, 0, MD5_MAC_LEN);
- attr = radius_msg_add_attr(msg, RADIUS_ATTR_MESSAGE_AUTHENTICATOR,
- auth, MD5_MAC_LEN);
- if (attr == NULL) {
- wpa_printf(MSG_WARNING, "Could not add Message-Authenticator");
- return -1;
- }
- msg->hdr->length = host_to_be16(wpabuf_len(msg->buf));
- os_memcpy(msg->hdr->authenticator, req_hdr->authenticator, 16);
- hmac_md5(secret, secret_len, wpabuf_head(msg->buf),
- wpabuf_len(msg->buf), (u8 *) (attr + 1));
- /* ResponseAuth = MD5(Code+ID+Length+RequestAuth+Attributes+Secret) */
- addr[0] = wpabuf_head_u8(msg->buf);
- len[0] = wpabuf_len(msg->buf);
- addr[1] = secret;
- len[1] = secret_len;
- if (md5_vector(2, addr, len, msg->hdr->authenticator) < 0)
- return -1;
- if (wpabuf_len(msg->buf) > 0xffff) {
- wpa_printf(MSG_WARNING, "RADIUS: Too long message (%lu)",
- (unsigned long) wpabuf_len(msg->buf));
- return -1;
- }
- return 0;
- }
- void radius_msg_finish_acct(struct radius_msg *msg, const u8 *secret,
- size_t secret_len)
- {
- const u8 *addr[2];
- size_t len[2];
- msg->hdr->length = host_to_be16(wpabuf_len(msg->buf));
- os_memset(msg->hdr->authenticator, 0, MD5_MAC_LEN);
- addr[0] = wpabuf_head(msg->buf);
- len[0] = wpabuf_len(msg->buf);
- addr[1] = secret;
- len[1] = secret_len;
- md5_vector(2, addr, len, msg->hdr->authenticator);
- if (wpabuf_len(msg->buf) > 0xffff) {
- wpa_printf(MSG_WARNING, "RADIUS: Too long messages (%lu)",
- (unsigned long) wpabuf_len(msg->buf));
- }
- }
- int radius_msg_verify_acct_req(struct radius_msg *msg, const u8 *secret,
- size_t secret_len)
- {
- const u8 *addr[4];
- size_t len[4];
- u8 zero[MD5_MAC_LEN];
- u8 hash[MD5_MAC_LEN];
- os_memset(zero, 0, sizeof(zero));
- addr[0] = (u8 *) msg->hdr;
- len[0] = sizeof(struct radius_hdr) - MD5_MAC_LEN;
- addr[1] = zero;
- len[1] = MD5_MAC_LEN;
- addr[2] = (u8 *) (msg->hdr + 1);
- len[2] = wpabuf_len(msg->buf) - sizeof(struct radius_hdr);
- addr[3] = secret;
- len[3] = secret_len;
- md5_vector(4, addr, len, hash);
- return os_memcmp(msg->hdr->authenticator, hash, MD5_MAC_LEN) != 0;
- }
- int radius_msg_verify_das_req(struct radius_msg *msg, const u8 *secret,
- size_t secret_len)
- {
- const u8 *addr[4];
- size_t len[4];
- u8 zero[MD5_MAC_LEN];
- u8 hash[MD5_MAC_LEN];
- u8 auth[MD5_MAC_LEN], orig[MD5_MAC_LEN];
- u8 orig_authenticator[16];
- struct radius_attr_hdr *attr = NULL, *tmp;
- size_t i;
- os_memset(zero, 0, sizeof(zero));
- addr[0] = (u8 *) msg->hdr;
- len[0] = sizeof(struct radius_hdr) - MD5_MAC_LEN;
- addr[1] = zero;
- len[1] = MD5_MAC_LEN;
- addr[2] = (u8 *) (msg->hdr + 1);
- len[2] = wpabuf_len(msg->buf) - sizeof(struct radius_hdr);
- addr[3] = secret;
- len[3] = secret_len;
- md5_vector(4, addr, len, hash);
- if (os_memcmp(msg->hdr->authenticator, hash, MD5_MAC_LEN) != 0)
- return 1;
- for (i = 0; i < msg->attr_used; i++) {
- tmp = radius_get_attr_hdr(msg, i);
- if (tmp->type == RADIUS_ATTR_MESSAGE_AUTHENTICATOR) {
- if (attr != NULL) {
- wpa_printf(MSG_WARNING, "Multiple "
- "Message-Authenticator attributes "
- "in RADIUS message");
- return 1;
- }
- attr = tmp;
- }
- }
- if (attr == NULL) {
- /* Message-Authenticator is MAY; not required */
- return 0;
- }
- os_memcpy(orig, attr + 1, MD5_MAC_LEN);
- os_memset(attr + 1, 0, MD5_MAC_LEN);
- os_memcpy(orig_authenticator, msg->hdr->authenticator,
- sizeof(orig_authenticator));
- os_memset(msg->hdr->authenticator, 0,
- sizeof(msg->hdr->authenticator));
- hmac_md5(secret, secret_len, wpabuf_head(msg->buf),
- wpabuf_len(msg->buf), auth);
- os_memcpy(attr + 1, orig, MD5_MAC_LEN);
- os_memcpy(msg->hdr->authenticator, orig_authenticator,
- sizeof(orig_authenticator));
- return os_memcmp(orig, auth, MD5_MAC_LEN) != 0;
- }
- static int radius_msg_add_attr_to_array(struct radius_msg *msg,
- struct radius_attr_hdr *attr)
- {
- if (msg->attr_used >= msg->attr_size) {
- size_t *nattr_pos;
- int nlen = msg->attr_size * 2;
- nattr_pos = os_realloc_array(msg->attr_pos, nlen,
- sizeof(*msg->attr_pos));
- if (nattr_pos == NULL)
- return -1;
- msg->attr_pos = nattr_pos;
- msg->attr_size = nlen;
- }
- msg->attr_pos[msg->attr_used++] =
- (unsigned char *) attr - wpabuf_head_u8(msg->buf);
- return 0;
- }
- struct radius_attr_hdr *radius_msg_add_attr(struct radius_msg *msg, u8 type,
- const u8 *data, size_t data_len)
- {
- size_t buf_needed;
- struct radius_attr_hdr *attr;
- if (data_len > RADIUS_MAX_ATTR_LEN) {
- printf("radius_msg_add_attr: too long attribute (%lu bytes)\n",
- (unsigned long) data_len);
- return NULL;
- }
- buf_needed = sizeof(*attr) + data_len;
- if (wpabuf_tailroom(msg->buf) < buf_needed) {
- /* allocate more space for message buffer */
- if (wpabuf_resize(&msg->buf, buf_needed) < 0)
- return NULL;
- msg->hdr = wpabuf_mhead(msg->buf);
- }
- attr = wpabuf_put(msg->buf, sizeof(struct radius_attr_hdr));
- attr->type = type;
- attr->length = sizeof(*attr) + data_len;
- wpabuf_put_data(msg->buf, data, data_len);
- if (radius_msg_add_attr_to_array(msg, attr))
- return NULL;
- return attr;
- }
- /**
- * radius_msg_parse - Parse a RADIUS message
- * @data: RADIUS message to be parsed
- * @len: Length of data buffer in octets
- * Returns: Parsed RADIUS message or %NULL on failure
- *
- * This parses a RADIUS message and makes a copy of its data. The caller is
- * responsible for freeing the returned data with radius_msg_free().
- */
- struct radius_msg * radius_msg_parse(const u8 *data, size_t len)
- {
- struct radius_msg *msg;
- struct radius_hdr *hdr;
- struct radius_attr_hdr *attr;
- size_t msg_len;
- unsigned char *pos, *end;
- if (data == NULL || len < sizeof(*hdr))
- return NULL;
- hdr = (struct radius_hdr *) data;
- msg_len = be_to_host16(hdr->length);
- if (msg_len < sizeof(*hdr) || msg_len > len) {
- wpa_printf(MSG_INFO, "RADIUS: Invalid message length");
- return NULL;
- }
- if (msg_len < len) {
- wpa_printf(MSG_DEBUG, "RADIUS: Ignored %lu extra bytes after "
- "RADIUS message", (unsigned long) len - msg_len);
- }
- msg = os_zalloc(sizeof(*msg));
- if (msg == NULL)
- return NULL;
- msg->buf = wpabuf_alloc_copy(data, msg_len);
- if (msg->buf == NULL || radius_msg_initialize(msg)) {
- radius_msg_free(msg);
- return NULL;
- }
- msg->hdr = wpabuf_mhead(msg->buf);
- /* parse attributes */
- pos = wpabuf_mhead_u8(msg->buf) + sizeof(struct radius_hdr);
- end = wpabuf_mhead_u8(msg->buf) + wpabuf_len(msg->buf);
- while (pos < end) {
- if ((size_t) (end - pos) < sizeof(*attr))
- goto fail;
- attr = (struct radius_attr_hdr *) pos;
- if (pos + attr->length > end || attr->length < sizeof(*attr))
- goto fail;
- /* TODO: check that attr->length is suitable for attr->type */
- if (radius_msg_add_attr_to_array(msg, attr))
- goto fail;
- pos += attr->length;
- }
- return msg;
- fail:
- radius_msg_free(msg);
- return NULL;
- }
- int radius_msg_add_eap(struct radius_msg *msg, const u8 *data, size_t data_len)
- {
- const u8 *pos = data;
- size_t left = data_len;
- while (left > 0) {
- int len;
- if (left > RADIUS_MAX_ATTR_LEN)
- len = RADIUS_MAX_ATTR_LEN;
- else
- len = left;
- if (!radius_msg_add_attr(msg, RADIUS_ATTR_EAP_MESSAGE,
- pos, len))
- return 0;
- pos += len;
- left -= len;
- }
- return 1;
- }
- struct wpabuf * radius_msg_get_eap(struct radius_msg *msg)
- {
- struct wpabuf *eap;
- size_t len, i;
- struct radius_attr_hdr *attr;
- if (msg == NULL)
- return NULL;
- len = 0;
- for (i = 0; i < msg->attr_used; i++) {
- attr = radius_get_attr_hdr(msg, i);
- if (attr->type == RADIUS_ATTR_EAP_MESSAGE &&
- attr->length > sizeof(struct radius_attr_hdr))
- len += attr->length - sizeof(struct radius_attr_hdr);
- }
- if (len == 0)
- return NULL;
- eap = wpabuf_alloc(len);
- if (eap == NULL)
- return NULL;
- for (i = 0; i < msg->attr_used; i++) {
- attr = radius_get_attr_hdr(msg, i);
- if (attr->type == RADIUS_ATTR_EAP_MESSAGE &&
- attr->length > sizeof(struct radius_attr_hdr)) {
- int flen = attr->length - sizeof(*attr);
- wpabuf_put_data(eap, attr + 1, flen);
- }
- }
- return eap;
- }
- int radius_msg_verify_msg_auth(struct radius_msg *msg, const u8 *secret,
- size_t secret_len, const u8 *req_auth)
- {
- u8 auth[MD5_MAC_LEN], orig[MD5_MAC_LEN];
- u8 orig_authenticator[16];
- struct radius_attr_hdr *attr = NULL, *tmp;
- size_t i;
- for (i = 0; i < msg->attr_used; i++) {
- tmp = radius_get_attr_hdr(msg, i);
- if (tmp->type == RADIUS_ATTR_MESSAGE_AUTHENTICATOR) {
- if (attr != NULL) {
- printf("Multiple Message-Authenticator "
- "attributes in RADIUS message\n");
- return 1;
- }
- attr = tmp;
- }
- }
- if (attr == NULL) {
- printf("No Message-Authenticator attribute found\n");
- return 1;
- }
- os_memcpy(orig, attr + 1, MD5_MAC_LEN);
- os_memset(attr + 1, 0, MD5_MAC_LEN);
- if (req_auth) {
- os_memcpy(orig_authenticator, msg->hdr->authenticator,
- sizeof(orig_authenticator));
- os_memcpy(msg->hdr->authenticator, req_auth,
- sizeof(msg->hdr->authenticator));
- }
- hmac_md5(secret, secret_len, wpabuf_head(msg->buf),
- wpabuf_len(msg->buf), auth);
- os_memcpy(attr + 1, orig, MD5_MAC_LEN);
- if (req_auth) {
- os_memcpy(msg->hdr->authenticator, orig_authenticator,
- sizeof(orig_authenticator));
- }
- if (os_memcmp(orig, auth, MD5_MAC_LEN) != 0) {
- printf("Invalid Message-Authenticator!\n");
- return 1;
- }
- return 0;
- }
- int radius_msg_verify(struct radius_msg *msg, const u8 *secret,
- size_t secret_len, struct radius_msg *sent_msg, int auth)
- {
- const u8 *addr[4];
- size_t len[4];
- u8 hash[MD5_MAC_LEN];
- if (sent_msg == NULL) {
- printf("No matching Access-Request message found\n");
- return 1;
- }
- if (auth &&
- radius_msg_verify_msg_auth(msg, secret, secret_len,
- sent_msg->hdr->authenticator)) {
- return 1;
- }
- /* ResponseAuth = MD5(Code+ID+Length+RequestAuth+Attributes+Secret) */
- addr[0] = (u8 *) msg->hdr;
- len[0] = 1 + 1 + 2;
- addr[1] = sent_msg->hdr->authenticator;
- len[1] = MD5_MAC_LEN;
- addr[2] = wpabuf_head_u8(msg->buf) + sizeof(struct radius_hdr);
- len[2] = wpabuf_len(msg->buf) - sizeof(struct radius_hdr);
- addr[3] = secret;
- len[3] = secret_len;
- md5_vector(4, addr, len, hash);
- if (os_memcmp(hash, msg->hdr->authenticator, MD5_MAC_LEN) != 0) {
- printf("Response Authenticator invalid!\n");
- return 1;
- }
- return 0;
- }
- int radius_msg_copy_attr(struct radius_msg *dst, struct radius_msg *src,
- u8 type)
- {
- struct radius_attr_hdr *attr;
- size_t i;
- int count = 0;
- for (i = 0; i < src->attr_used; i++) {
- attr = radius_get_attr_hdr(src, i);
- if (attr->type == type && attr->length >= sizeof(*attr)) {
- if (!radius_msg_add_attr(dst, type, (u8 *) (attr + 1),
- attr->length - sizeof(*attr)))
- return -1;
- count++;
- }
- }
- return count;
- }
- /* Create Request Authenticator. The value should be unique over the lifetime
- * of the shared secret between authenticator and authentication server.
- * Use one-way MD5 hash calculated from current timestamp and some data given
- * by the caller. */
- void radius_msg_make_authenticator(struct radius_msg *msg,
- const u8 *data, size_t len)
- {
- struct os_time tv;
- long int l;
- const u8 *addr[3];
- size_t elen[3];
- os_get_time(&tv);
- l = os_random();
- addr[0] = (u8 *) &tv;
- elen[0] = sizeof(tv);
- addr[1] = data;
- elen[1] = len;
- addr[2] = (u8 *) &l;
- elen[2] = sizeof(l);
- md5_vector(3, addr, elen, msg->hdr->authenticator);
- }
- /* Get Vendor-specific RADIUS Attribute from a parsed RADIUS message.
- * Returns the Attribute payload and sets alen to indicate the length of the
- * payload if a vendor attribute with subtype is found, otherwise returns NULL.
- * The returned payload is allocated with os_malloc() and caller must free it
- * by calling os_free().
- */
- static u8 *radius_msg_get_vendor_attr(struct radius_msg *msg, u32 vendor,
- u8 subtype, size_t *alen)
- {
- u8 *data, *pos;
- size_t i, len;
- if (msg == NULL)
- return NULL;
- for (i = 0; i < msg->attr_used; i++) {
- struct radius_attr_hdr *attr = radius_get_attr_hdr(msg, i);
- size_t left;
- u32 vendor_id;
- struct radius_attr_vendor *vhdr;
- if (attr->type != RADIUS_ATTR_VENDOR_SPECIFIC ||
- attr->length < sizeof(*attr))
- continue;
- left = attr->length - sizeof(*attr);
- if (left < 4)
- continue;
- pos = (u8 *) (attr + 1);
- os_memcpy(&vendor_id, pos, 4);
- pos += 4;
- left -= 4;
- if (ntohl(vendor_id) != vendor)
- continue;
- while (left >= sizeof(*vhdr)) {
- vhdr = (struct radius_attr_vendor *) pos;
- if (vhdr->vendor_length > left ||
- vhdr->vendor_length < sizeof(*vhdr)) {
- left = 0;
- break;
- }
- if (vhdr->vendor_type != subtype) {
- pos += vhdr->vendor_length;
- left -= vhdr->vendor_length;
- continue;
- }
- len = vhdr->vendor_length - sizeof(*vhdr);
- data = os_malloc(len);
- if (data == NULL)
- return NULL;
- os_memcpy(data, pos + sizeof(*vhdr), len);
- if (alen)
- *alen = len;
- return data;
- }
- }
- return NULL;
- }
- static u8 * decrypt_ms_key(const u8 *key, size_t len,
- const u8 *req_authenticator,
- const u8 *secret, size_t secret_len, size_t *reslen)
- {
- u8 *plain, *ppos, *res;
- const u8 *pos;
- size_t left, plen;
- u8 hash[MD5_MAC_LEN];
- int i, first = 1;
- const u8 *addr[3];
- size_t elen[3];
- /* key: 16-bit salt followed by encrypted key info */
- if (len < 2 + 16)
- return NULL;
- pos = key + 2;
- left = len - 2;
- if (left % 16) {
- printf("Invalid ms key len %lu\n", (unsigned long) left);
- return NULL;
- }
- plen = left;
- ppos = plain = os_malloc(plen);
- if (plain == NULL)
- return NULL;
- plain[0] = 0;
- while (left > 0) {
- /* b(1) = MD5(Secret + Request-Authenticator + Salt)
- * b(i) = MD5(Secret + c(i - 1)) for i > 1 */
- addr[0] = secret;
- elen[0] = secret_len;
- if (first) {
- addr[1] = req_authenticator;
- elen[1] = MD5_MAC_LEN;
- addr[2] = key;
- elen[2] = 2; /* Salt */
- } else {
- addr[1] = pos - MD5_MAC_LEN;
- elen[1] = MD5_MAC_LEN;
- }
- md5_vector(first ? 3 : 2, addr, elen, hash);
- first = 0;
- for (i = 0; i < MD5_MAC_LEN; i++)
- *ppos++ = *pos++ ^ hash[i];
- left -= MD5_MAC_LEN;
- }
- if (plain[0] == 0 || plain[0] > plen - 1) {
- printf("Failed to decrypt MPPE key\n");
- os_free(plain);
- return NULL;
- }
- res = os_malloc(plain[0]);
- if (res == NULL) {
- os_free(plain);
- return NULL;
- }
- os_memcpy(res, plain + 1, plain[0]);
- if (reslen)
- *reslen = plain[0];
- os_free(plain);
- return res;
- }
- static void encrypt_ms_key(const u8 *key, size_t key_len, u16 salt,
- const u8 *req_authenticator,
- const u8 *secret, size_t secret_len,
- u8 *ebuf, size_t *elen)
- {
- int i, len, first = 1;
- u8 hash[MD5_MAC_LEN], saltbuf[2], *pos;
- const u8 *addr[3];
- size_t _len[3];
- WPA_PUT_BE16(saltbuf, salt);
- len = 1 + key_len;
- if (len & 0x0f) {
- len = (len & 0xf0) + 16;
- }
- os_memset(ebuf, 0, len);
- ebuf[0] = key_len;
- os_memcpy(ebuf + 1, key, key_len);
- *elen = len;
- pos = ebuf;
- while (len > 0) {
- /* b(1) = MD5(Secret + Request-Authenticator + Salt)
- * b(i) = MD5(Secret + c(i - 1)) for i > 1 */
- addr[0] = secret;
- _len[0] = secret_len;
- if (first) {
- addr[1] = req_authenticator;
- _len[1] = MD5_MAC_LEN;
- addr[2] = saltbuf;
- _len[2] = sizeof(saltbuf);
- } else {
- addr[1] = pos - MD5_MAC_LEN;
- _len[1] = MD5_MAC_LEN;
- }
- md5_vector(first ? 3 : 2, addr, _len, hash);
- first = 0;
- for (i = 0; i < MD5_MAC_LEN; i++)
- *pos++ ^= hash[i];
- len -= MD5_MAC_LEN;
- }
- }
- struct radius_ms_mppe_keys *
- radius_msg_get_ms_keys(struct radius_msg *msg, struct radius_msg *sent_msg,
- const u8 *secret, size_t secret_len)
- {
- u8 *key;
- size_t keylen;
- struct radius_ms_mppe_keys *keys;
- if (msg == NULL || sent_msg == NULL)
- return NULL;
- keys = os_zalloc(sizeof(*keys));
- if (keys == NULL)
- return NULL;
- key = radius_msg_get_vendor_attr(msg, RADIUS_VENDOR_ID_MICROSOFT,
- RADIUS_VENDOR_ATTR_MS_MPPE_SEND_KEY,
- &keylen);
- if (key) {
- keys->send = decrypt_ms_key(key, keylen,
- sent_msg->hdr->authenticator,
- secret, secret_len,
- &keys->send_len);
- os_free(key);
- }
- key = radius_msg_get_vendor_attr(msg, RADIUS_VENDOR_ID_MICROSOFT,
- RADIUS_VENDOR_ATTR_MS_MPPE_RECV_KEY,
- &keylen);
- if (key) {
- keys->recv = decrypt_ms_key(key, keylen,
- sent_msg->hdr->authenticator,
- secret, secret_len,
- &keys->recv_len);
- os_free(key);
- }
- return keys;
- }
- struct radius_ms_mppe_keys *
- radius_msg_get_cisco_keys(struct radius_msg *msg, struct radius_msg *sent_msg,
- const u8 *secret, size_t secret_len)
- {
- u8 *key;
- size_t keylen;
- struct radius_ms_mppe_keys *keys;
- if (msg == NULL || sent_msg == NULL)
- return NULL;
- keys = os_zalloc(sizeof(*keys));
- if (keys == NULL)
- return NULL;
- key = radius_msg_get_vendor_attr(msg, RADIUS_VENDOR_ID_CISCO,
- RADIUS_CISCO_AV_PAIR, &keylen);
- if (key && keylen == 51 &&
- os_memcmp(key, "leap:session-key=", 17) == 0) {
- keys->recv = decrypt_ms_key(key + 17, keylen - 17,
- sent_msg->hdr->authenticator,
- secret, secret_len,
- &keys->recv_len);
- }
- os_free(key);
- return keys;
- }
- int radius_msg_add_mppe_keys(struct radius_msg *msg,
- const u8 *req_authenticator,
- const u8 *secret, size_t secret_len,
- const u8 *send_key, size_t send_key_len,
- const u8 *recv_key, size_t recv_key_len)
- {
- struct radius_attr_hdr *attr;
- u32 vendor_id = htonl(RADIUS_VENDOR_ID_MICROSOFT);
- u8 *buf;
- struct radius_attr_vendor *vhdr;
- u8 *pos;
- size_t elen;
- int hlen;
- u16 salt;
- hlen = sizeof(vendor_id) + sizeof(*vhdr) + 2;
- /* MS-MPPE-Send-Key */
- buf = os_malloc(hlen + send_key_len + 16);
- if (buf == NULL) {
- return 0;
- }
- pos = buf;
- os_memcpy(pos, &vendor_id, sizeof(vendor_id));
- pos += sizeof(vendor_id);
- vhdr = (struct radius_attr_vendor *) pos;
- vhdr->vendor_type = RADIUS_VENDOR_ATTR_MS_MPPE_SEND_KEY;
- pos = (u8 *) (vhdr + 1);
- salt = os_random() | 0x8000;
- WPA_PUT_BE16(pos, salt);
- pos += 2;
- encrypt_ms_key(send_key, send_key_len, salt, req_authenticator, secret,
- secret_len, pos, &elen);
- vhdr->vendor_length = hlen + elen - sizeof(vendor_id);
- attr = radius_msg_add_attr(msg, RADIUS_ATTR_VENDOR_SPECIFIC,
- buf, hlen + elen);
- os_free(buf);
- if (attr == NULL) {
- return 0;
- }
- /* MS-MPPE-Recv-Key */
- buf = os_malloc(hlen + send_key_len + 16);
- if (buf == NULL) {
- return 0;
- }
- pos = buf;
- os_memcpy(pos, &vendor_id, sizeof(vendor_id));
- pos += sizeof(vendor_id);
- vhdr = (struct radius_attr_vendor *) pos;
- vhdr->vendor_type = RADIUS_VENDOR_ATTR_MS_MPPE_RECV_KEY;
- pos = (u8 *) (vhdr + 1);
- salt ^= 1;
- WPA_PUT_BE16(pos, salt);
- pos += 2;
- encrypt_ms_key(recv_key, recv_key_len, salt, req_authenticator, secret,
- secret_len, pos, &elen);
- vhdr->vendor_length = hlen + elen - sizeof(vendor_id);
- attr = radius_msg_add_attr(msg, RADIUS_ATTR_VENDOR_SPECIFIC,
- buf, hlen + elen);
- os_free(buf);
- if (attr == NULL) {
- return 0;
- }
- return 1;
- }
- /* Add User-Password attribute to a RADIUS message and encrypt it as specified
- * in RFC 2865, Chap. 5.2 */
- struct radius_attr_hdr *
- radius_msg_add_attr_user_password(struct radius_msg *msg,
- const u8 *data, size_t data_len,
- const u8 *secret, size_t secret_len)
- {
- u8 buf[128];
- size_t padlen, i, buf_len, pos;
- const u8 *addr[2];
- size_t len[2];
- u8 hash[16];
- if (data_len > 128)
- return NULL;
- os_memcpy(buf, data, data_len);
- buf_len = data_len;
- padlen = data_len % 16;
- if (padlen && data_len < sizeof(buf)) {
- padlen = 16 - padlen;
- os_memset(buf + data_len, 0, padlen);
- buf_len += padlen;
- }
- addr[0] = secret;
- len[0] = secret_len;
- addr[1] = msg->hdr->authenticator;
- len[1] = 16;
- md5_vector(2, addr, len, hash);
- for (i = 0; i < 16; i++)
- buf[i] ^= hash[i];
- pos = 16;
- while (pos < buf_len) {
- addr[0] = secret;
- len[0] = secret_len;
- addr[1] = &buf[pos - 16];
- len[1] = 16;
- md5_vector(2, addr, len, hash);
- for (i = 0; i < 16; i++)
- buf[pos + i] ^= hash[i];
- pos += 16;
- }
- return radius_msg_add_attr(msg, RADIUS_ATTR_USER_PASSWORD,
- buf, buf_len);
- }
- int radius_msg_get_attr(struct radius_msg *msg, u8 type, u8 *buf, size_t len)
- {
- struct radius_attr_hdr *attr = NULL, *tmp;
- size_t i, dlen;
- for (i = 0; i < msg->attr_used; i++) {
- tmp = radius_get_attr_hdr(msg, i);
- if (tmp->type == type) {
- attr = tmp;
- break;
- }
- }
- if (!attr || attr->length < sizeof(*attr))
- return -1;
- dlen = attr->length - sizeof(*attr);
- if (buf)
- os_memcpy(buf, (attr + 1), dlen > len ? len : dlen);
- return dlen;
- }
- int radius_msg_get_attr_ptr(struct radius_msg *msg, u8 type, u8 **buf,
- size_t *len, const u8 *start)
- {
- size_t i;
- struct radius_attr_hdr *attr = NULL, *tmp;
- for (i = 0; i < msg->attr_used; i++) {
- tmp = radius_get_attr_hdr(msg, i);
- if (tmp->type == type &&
- (start == NULL || (u8 *) tmp > start)) {
- attr = tmp;
- break;
- }
- }
- if (!attr || attr->length < sizeof(*attr))
- return -1;
- *buf = (u8 *) (attr + 1);
- *len = attr->length - sizeof(*attr);
- return 0;
- }
- int radius_msg_count_attr(struct radius_msg *msg, u8 type, int min_len)
- {
- size_t i;
- int count;
- for (count = 0, i = 0; i < msg->attr_used; i++) {
- struct radius_attr_hdr *attr = radius_get_attr_hdr(msg, i);
- if (attr->type == type &&
- attr->length >= sizeof(struct radius_attr_hdr) + min_len)
- count++;
- }
- return count;
- }
- struct radius_tunnel_attrs {
- int tag_used;
- int type; /* Tunnel-Type */
- int medium_type; /* Tunnel-Medium-Type */
- int vlanid;
- };
- /**
- * radius_msg_get_vlanid - Parse RADIUS attributes for VLAN tunnel information
- * @msg: RADIUS message
- * Returns: VLAN ID for the first tunnel configuration of -1 if none is found
- */
- int radius_msg_get_vlanid(struct radius_msg *msg)
- {
- struct radius_tunnel_attrs tunnel[RADIUS_TUNNEL_TAGS], *tun;
- size_t i;
- struct radius_attr_hdr *attr = NULL;
- const u8 *data;
- char buf[10];
- size_t dlen;
- os_memset(&tunnel, 0, sizeof(tunnel));
- for (i = 0; i < msg->attr_used; i++) {
- attr = radius_get_attr_hdr(msg, i);
- if (attr->length < sizeof(*attr))
- return -1;
- data = (const u8 *) (attr + 1);
- dlen = attr->length - sizeof(*attr);
- if (attr->length < 3)
- continue;
- if (data[0] >= RADIUS_TUNNEL_TAGS)
- tun = &tunnel[0];
- else
- tun = &tunnel[data[0]];
- switch (attr->type) {
- case RADIUS_ATTR_TUNNEL_TYPE:
- if (attr->length != 6)
- break;
- tun->tag_used++;
- tun->type = WPA_GET_BE24(data + 1);
- break;
- case RADIUS_ATTR_TUNNEL_MEDIUM_TYPE:
- if (attr->length != 6)
- break;
- tun->tag_used++;
- tun->medium_type = WPA_GET_BE24(data + 1);
- break;
- case RADIUS_ATTR_TUNNEL_PRIVATE_GROUP_ID:
- if (data[0] < RADIUS_TUNNEL_TAGS) {
- data++;
- dlen--;
- }
- if (dlen >= sizeof(buf))
- break;
- os_memcpy(buf, data, dlen);
- buf[dlen] = '\0';
- tun->tag_used++;
- tun->vlanid = atoi(buf);
- break;
- }
- }
- for (i = 0; i < RADIUS_TUNNEL_TAGS; i++) {
- tun = &tunnel[i];
- if (tun->tag_used &&
- tun->type == RADIUS_TUNNEL_TYPE_VLAN &&
- tun->medium_type == RADIUS_TUNNEL_MEDIUM_TYPE_802 &&
- tun->vlanid > 0)
- return tun->vlanid;
- }
- return -1;
- }
- /**
- * radius_msg_get_tunnel_password - Parse RADIUS attribute Tunnel-Password
- * @msg: Received RADIUS message
- * @keylen: Length of returned password
- * @secret: RADIUS shared secret
- * @secret_len: Length of secret
- * @sent_msg: Sent RADIUS message
- * Returns: pointer to password (free with os_free) or %NULL
- */
- char * radius_msg_get_tunnel_password(struct radius_msg *msg, int *keylen,
- const u8 *secret, size_t secret_len,
- struct radius_msg *sent_msg)
- {
- u8 *buf = NULL;
- size_t buflen;
- const u8 *salt;
- u8 *str;
- const u8 *addr[3];
- size_t len[3];
- u8 hash[16];
- u8 *pos;
- size_t i;
- struct radius_attr_hdr *attr;
- const u8 *data;
- size_t dlen;
- const u8 *fdata = NULL; /* points to found item */
- size_t fdlen = -1;
- char *ret = NULL;
- /* find attribute with lowest tag and check it */
- for (i = 0; i < msg->attr_used; i++) {
- attr = radius_get_attr_hdr(msg, i);
- if (attr == NULL ||
- attr->type != RADIUS_ATTR_TUNNEL_PASSWORD) {
- continue;
- }
- if (attr->length <= 5)
- continue;
- data = (const u8 *) (attr + 1);
- dlen = attr->length - sizeof(*attr);
- if (dlen <= 3 || dlen % 16 != 3)
- continue;
- if (fdata != NULL && fdata[0] <= data[0])
- continue;
- fdata = data;
- fdlen = dlen;
- }
- if (fdata == NULL)
- goto out;
- /* alloc writable memory for decryption */
- buf = os_malloc(fdlen);
- if (buf == NULL)
- goto out;
- os_memcpy(buf, fdata, fdlen);
- buflen = fdlen;
- /* init pointers */
- salt = buf + 1;
- str = buf + 3;
- /* decrypt blocks */
- pos = buf + buflen - 16; /* last block */
- while (pos >= str + 16) { /* all but the first block */
- addr[0] = secret;
- len[0] = secret_len;
- addr[1] = pos - 16;
- len[1] = 16;
- md5_vector(2, addr, len, hash);
- for (i = 0; i < 16; i++)
- pos[i] ^= hash[i];
- pos -= 16;
- }
- /* decrypt first block */
- if (str != pos)
- goto out;
- addr[0] = secret;
- len[0] = secret_len;
- addr[1] = sent_msg->hdr->authenticator;
- len[1] = 16;
- addr[2] = salt;
- len[2] = 2;
- md5_vector(3, addr, len, hash);
- for (i = 0; i < 16; i++)
- pos[i] ^= hash[i];
- /* derive plaintext length from first subfield */
- *keylen = (unsigned char) str[0];
- if ((u8 *) (str + *keylen) >= (u8 *) (buf + buflen)) {
- /* decryption error - invalid key length */
- goto out;
- }
- if (*keylen == 0) {
- /* empty password */
- goto out;
- }
- /* copy passphrase into new buffer */
- ret = os_malloc(*keylen);
- if (ret)
- os_memcpy(ret, str + 1, *keylen);
- out:
- /* return new buffer */
- os_free(buf);
- return ret;
- }
- void radius_free_class(struct radius_class_data *c)
- {
- size_t i;
- if (c == NULL)
- return;
- for (i = 0; i < c->count; i++)
- os_free(c->attr[i].data);
- os_free(c->attr);
- c->attr = NULL;
- c->count = 0;
- }
- int radius_copy_class(struct radius_class_data *dst,
- const struct radius_class_data *src)
- {
- size_t i;
- if (src->attr == NULL)
- return 0;
- dst->attr = os_calloc(src->count, sizeof(struct radius_attr_data));
- if (dst->attr == NULL)
- return -1;
- dst->count = 0;
- for (i = 0; i < src->count; i++) {
- dst->attr[i].data = os_malloc(src->attr[i].len);
- if (dst->attr[i].data == NULL)
- break;
- dst->count++;
- os_memcpy(dst->attr[i].data, src->attr[i].data,
- src->attr[i].len);
- dst->attr[i].len = src->attr[i].len;
- }
- return 0;
- }
- u8 radius_msg_find_unlisted_attr(struct radius_msg *msg, u8 *attrs)
- {
- size_t i, j;
- struct radius_attr_hdr *attr;
- for (i = 0; i < msg->attr_used; i++) {
- attr = radius_get_attr_hdr(msg, i);
- for (j = 0; attrs[j]; j++) {
- if (attr->type == attrs[j])
- break;
- }
- if (attrs[j] == 0)
- return attr->type; /* unlisted attr */
- }
- return 0;
- }
|