📄 sim.c
字号:
/** * A client-side 802.1x implementation supporting EAP/SIM * * This code is released under both the GPL version 2 and BSD licenses. * Either license may be used. The respective licenses are found below. * * Copyright (C) 2003, 2004 Chris Hessing * All Rights Reserved * * --- GPL Version 2 License --- * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * --- BSD License --- * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * - All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * Maryland at College Park and its contributors. * - Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. *//******************************************************************* * EAPOL Function implementations for supplicant * * File: sim.c * * Authors: Chris.Hessing@utah.edu * * $Id: sim.c,v 1.3 2004/08/20 04:42:28 chessing Exp $ * $Date: 2004/08/20 04:42:28 $ * $Log: sim.c,v $ * Revision 1.3 2004/08/20 04:42:28 chessing * Set all of the new scanning and WPA code to be disabled by default, so that a 1.0.1 release can be made. Added additional error message output to AKA code. Fixed a few memory leaks in the AKA code. * * Revision 1.2 2004/07/19 02:43:17 chessing * * Changed things to get rid of Linux specific pieces in the interface_data struct. Fixed up EAP-SIM and EAP-AKA to skip AVPs that we don't support. (We print a mesage, and move on.) Added the --enable-radiator-test option to configure EAP-AKA to use the test vectors included with Radiator's AKA module. (To use this mode, no SIM card is required, but the PCSC library is still needed to build. Also, some errors will be displayed.) * * Revision 1.1 2004/06/15 03:35:20 chessing * * New updates including fixes to LEAP (keying now works with wireless) and adding EAP-AKA. * * ********************************************************************//******************************************************************* * * The development of the EAP/SIM support was funded by Internet * Foundation Austria (http://www.nic.at/ipa) * *******************************************************************/#ifdef EAP_SIM_ENABLE#include <strings.h>#include <string.h>#include <inttypes.h>#include <openssl/rand.h>#include <openssl/sha.h>#include <openssl/hmac.h>#include "winscard.h"#include "profile.h"#include "config.h"#include "eap.h"#include "sim.h"#include "eapsim.h"#include "simd5.h"#include "simd11.h"#include "sm_handler.h"#include "xsup_debug.h"#include "xsup_err.h"#include "fips.h"int sim_build_start(struct eaptypedata *mydata, u_char *out, int *outptr){ struct typelength *typelen; struct typelengthres *typelenres; debug_printf(DEBUG_AUTHTYPES, "Got SIM_START!\n"); bzero(out, 100); typelen = (struct typelength *)&out[0]; typelen->type = SIM_START; typelen->length = 0; typelenres = (struct typelengthres *)&out[3]; typelenres->type = AT_NONCE_MT; typelenres->length = 5; typelenres->reserved = 0; // Generate a few random bytes for our NONCE MT. mydata->nonce_mt = (char *)malloc(16); if (mydata->nonce_mt == NULL) { debug_printf(DEBUG_NORMAL, "Couldn't allocate memory for NONCE MT! (%s:%d)\n", __FUNCTION__, __LINE__); return XEMALLOC; } RAND_bytes(mydata->nonce_mt,16); debug_printf(DEBUG_AUTHTYPES, "NONCE MT = "); debug_hex_printf(DEBUG_AUTHTYPES, mydata->nonce_mt, 16); *outptr = 7; memcpy(&out[*outptr], mydata->nonce_mt, 16); *outptr += 16; return XENONE;}int sim_build_fullauth(char *username, u_char *dataoffs, int *packet_offset, u_char *out, int *outptr){ struct typelengthres *typelenres; debug_printf(DEBUG_AUTHTYPES, "Got AT_FULLAUTH_ID_REQ or AT_PERMANENT_ID_REQ!\n"); typelenres = (struct typelengthres *)&dataoffs[*packet_offset]; if ((typelenres->length != 5) && (typelenres->length != 1)) { debug_printf(DEBUG_NORMAL, "Invalid AT_FULLAUTH_ID_REQ length!\n"); return XESIMBADLEN; } *packet_offset+=4; // Skip the reserved and length bytes. // Build an AT_IDENTITY response. typelenres = (struct typelengthres *)&out[*outptr]; typelenres->type = AT_IDENTITY; typelenres->length = (strlen(username)/4)+1; typelenres->reserved = htons(strlen(username)); *outptr+=sizeof(struct typelengthres); memcpy(&out[*outptr], username, strlen(username)); *outptr += strlen(username); return XENONE;}int sim_at_version_list(char *username, struct eaptypedata *mydata, u_char *dataoffs, int *packet_offset, u_char *out, int *outptr){ int numVers, maxver, i, value16; struct typelengthres *typelenres; debug_printf(DEBUG_AUTHTYPES, "Got an AT_VERSION_LIST request!\n"); typelenres = (struct typelengthres *)&dataoffs[*packet_offset]; debug_printf(DEBUG_AUTHTYPES, "Version List Length (# versions) : %d\n", typelenres->length); numVers = typelenres->length; mydata->verlistlen = ntohs(typelenres->reserved); debug_printf(DEBUG_AUTHTYPES, "Version List Length (bytes) : %d\n", mydata->verlistlen); *packet_offset+=sizeof(struct typelengthres); maxver = 0; // Set the starting value to be 0. mydata->verlist = (char *)malloc(mydata->verlistlen); if (mydata->verlist == NULL) { debug_printf(DEBUG_NORMAL, "Couldn't allocate memory for version list! (%s:%d)\n", __FUNCTION__, __LINE__); return XEMALLOC; } memcpy(mydata->verlist, &dataoffs[*packet_offset], mydata->verlistlen); for (i=0;i<numVers;i++) { memcpy(&value16, &dataoffs[*packet_offset], 2); value16 = ntohs(value16); debug_printf(DEBUG_AUTHTYPES, "AT_VERSION_LIST Value : %d\n", value16); if (value16 > maxver) maxver = value16; *packet_offset += 2; } if (maxver > EAPSIM_MAX_SUPPORTED_VER) maxver = EAPSIM_MAX_SUPPORTED_VER; debug_printf(DEBUG_AUTHTYPES, "Setting version to %d\n",maxver); typelenres = (struct typelengthres *)&out[*outptr]; typelenres->type = AT_SELECTED_VERSION; typelenres->length = 1; typelenres->reserved = htons(maxver); *outptr += sizeof(struct typelengthres); mydata->workingversion = maxver; return XENONE;}int sim_skip_not_implemented(u_char *dataoffs, int *packet_offset){ struct typelengthres *typelenres; typelenres = (struct typelengthres *)&dataoffs[*packet_offset]; debug_printf(DEBUG_NORMAL, "Skipping unknown type! (%02X)\n", dataoffs[*packet_offset]); *packet_offset+= (typelenres->length * 4); return XENONE;}int sim_do_at_mac(struct generic_eap_data *thisint, struct eaptypedata *mydata, u_char *dataoffs, int insize, int *packet_offset, u_char *out, int *outptr, char *K_int){ int saved_offset; char mac_val[16], mac_calc[16]; debug_printf(DEBUG_AUTHTYPES, "Got an AT_MAC\n"); bzero(&mac_calc[0], 16); bzero(&mac_val[0], 16); saved_offset = (*packet_offset); memcpy(&mac_val[0], &dataoffs[*packet_offset+4], 16); *packet_offset+=20; if (mydata->workingversion == 0) { if (do_v0_at_mac(thisint, K_int, dataoffs, insize, saved_offset, &mac_calc[0]) == -1) { debug_printf(DEBUG_NORMAL, "Error calculating AT_MAC for Version 0!\n"); return XESIMBADMAC; }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -