⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 auth.c

📁 oscar message protocol stack
💻 C
📖 第 1 页 / 共 2 页
字号:
	int ret = 0;	info = (struct aim_authresp_info *)malloc(sizeof(struct aim_authresp_info));	memset(info, 0, sizeof(struct aim_authresp_info));	/*	 * Read block of TLVs.  All further data is derived	 * from what is parsed here.	 */	tlvlist = aim_tlvlist_read(bs);	/*	 * No matter what, we should have a screen name.	 */	memset(sess->sn, 0, sizeof(sess->sn));	if (aim_tlv_gettlv(tlvlist, 0x0001, 1)) {		info->sn = aim_tlv_getstr(tlvlist, 0x0001, 1);		strncpy(sess->sn, info->sn, sizeof(sess->sn));	}	/*	 * Check for an error code.  If so, we should also	 * have an error url.	 */	if (aim_tlv_gettlv(tlvlist, 0x0008, 1)) 		info->errorcode = aim_tlv_get16(tlvlist, 0x0008, 1);	if (aim_tlv_gettlv(tlvlist, 0x0004, 1))		info->errorurl = aim_tlv_getstr(tlvlist, 0x0004, 1);	/*	 * BOS server address.	 */	if (aim_tlv_gettlv(tlvlist, 0x0005, 1))		info->bosip = aim_tlv_getstr(tlvlist, 0x0005, 1);	/*	 * Authorization cookie.	 */	if (aim_tlv_gettlv(tlvlist, 0x0006, 1)) {		aim_tlv_t *tmptlv;		tmptlv = aim_tlv_gettlv(tlvlist, 0x0006, 1);		info->cookielen = tmptlv->length;		info->cookie = tmptlv->value;	}	/*	 * The email address attached to this account	 *   Not available for ICQ or @mac.com logins.	 *   If you receive this TLV, then you are allowed to use 	 *   family 0x0018 to check the status of your email.	 * XXX - Not really true!	 */	if (aim_tlv_gettlv(tlvlist, 0x0011, 1))		info->email = aim_tlv_getstr(tlvlist, 0x0011, 1);	/*	 * The registration status.  (Not real sure what it means.)	 *   Not available for ICQ or @mac.com logins.	 *	 *   1 = No disclosure	 *   2 = Limited disclosure	 *   3 = Full disclosure	 *	 * This has to do with whether your email address is available	 * to other users or not.  AFAIK, this feature is no longer used.	 *	 * Means you can use the admin family? (0x0007)	 *	 */	if (aim_tlv_gettlv(tlvlist, 0x0013, 1))		info->regstatus = aim_tlv_get16(tlvlist, 0x0013, 1);	if (aim_tlv_gettlv(tlvlist, 0x0040, 1))		info->latestbeta.build = aim_tlv_get32(tlvlist, 0x0040, 1);	if (aim_tlv_gettlv(tlvlist, 0x0041, 1))		info->latestbeta.url = aim_tlv_getstr(tlvlist, 0x0041, 1);	if (aim_tlv_gettlv(tlvlist, 0x0042, 1))		info->latestbeta.info = aim_tlv_getstr(tlvlist, 0x0042, 1);	if (aim_tlv_gettlv(tlvlist, 0x0043, 1))		info->latestbeta.name = aim_tlv_getstr(tlvlist, 0x0043, 1);	if (aim_tlv_gettlv(tlvlist, 0x0048, 1))		; /* beta serial */	if (aim_tlv_gettlv(tlvlist, 0x0044, 1))		info->latestrelease.build = aim_tlv_get32(tlvlist, 0x0044, 1);	if (aim_tlv_gettlv(tlvlist, 0x0045, 1))		info->latestrelease.url = aim_tlv_getstr(tlvlist, 0x0045, 1);	if (aim_tlv_gettlv(tlvlist, 0x0046, 1))		info->latestrelease.info = aim_tlv_getstr(tlvlist, 0x0046, 1);	if (aim_tlv_gettlv(tlvlist, 0x0047, 1))		info->latestrelease.name = aim_tlv_getstr(tlvlist, 0x0047, 1);	if (aim_tlv_gettlv(tlvlist, 0x0049, 1))		; /* lastest release serial */	/*	 * URL to change password.	 */	if (aim_tlv_gettlv(tlvlist, 0x0054, 1))		info->chpassurl = aim_tlv_getstr(tlvlist, 0x0054, 1);	/*	 * Unknown.  Seen on an @mac.com screen name with value of 0x003f	 */	if (aim_tlv_gettlv(tlvlist, 0x0055, 1))		;	sess->authinfo = info;	if ((userfunc = aim_callhandler(sess, rx->conn, snac ? snac->family : 0x0017, snac ? snac->subtype : 0x0003)))		ret = userfunc(sess, rx, info);	aim_tlvlist_free(&tlvlist);	return ret;}/* * Subtype 0x0007 (kind of) - Send a fake type 0x0007 SNAC to the client * * This is a bit confusing. * * Normal SNAC login goes like this: *   - connect *   - server sends flap version *   - client sends flap version *   - client sends screen name (17/6) *   - server sends hash key (17/7) *   - client sends auth request (17/2 -- aim_send_login) *   - server yells * * XOR login (for ICQ) goes like this: *   - connect *   - server sends flap version *   - client sends auth request which contains flap version (aim_send_login) *   - server yells * * For the client API, we make them implement the most complicated version, * and for the simpler version, we fake it and make it look like the more * complicated process. * * This is done by giving the client a faked key, just so we can convince * them to call aim_send_login right away, which will detect the session * flag that says this is XOR login and ignore the key, sending an ICQ * login request instead of the normal SNAC one. * * As soon as AOL makes ICQ log in the same way as AIM, this is /gone/. * * XXX This may cause problems if the client relies on callbacks only * being called from the context of aim_rxdispatch()... * */static int goddamnicq(aim_session_t *sess, aim_conn_t *conn, const char *sn){	aim_frame_t fr;	aim_rxcallback_t userfunc;		fr.conn = conn;		if ((userfunc = aim_callhandler(sess, conn, 0x0017, 0x0007)))		userfunc(sess, &fr, "");	return 0;}/* * Subtype 0x0006 * * In AIM 3.5 protocol, the first stage of login is to request login from the  * Authorizer, passing it the screen name for verification.  If the name is  * invalid, a 0017/0003 is spit back, with the standard error contents.  If  * valid, a 0017/0007 comes back, which is the signal to send it the main  * login command (0017/0002).  * */faim_export int aim_request_login(aim_session_t *sess, aim_conn_t *conn, const char *sn){	aim_frame_t *fr;	aim_snacid_t snacid;	aim_tlvlist_t *tl = NULL;		if (!sess || !conn || !sn)		return -EINVAL;	if (isdigit(sn[0]))		return goddamnicq(sess, conn, sn);	aim_sendflapver(sess, conn);	if (!(fr = aim_tx_new(sess, conn, AIM_FRAMETYPE_FLAP, 0x02, 10+2+2+strlen(sn) /*+8*/ )))		return -ENOMEM;	snacid = aim_cachesnac(sess, 0x0017, 0x0006, 0x0000, NULL, 0);	aim_putsnac(&fr->data, 0x0017, 0x0006, 0x0000, snacid);	aim_tlvlist_add_raw(&tl, 0x0001, strlen(sn), sn);/*	aim_tlvlist_add_noval(&tl, 0x004b);	aim_tlvlist_add_noval(&tl, 0x005a); */	aim_tlvlist_write(&fr->data, &tl);	aim_tlvlist_free(&tl);	aim_tx_enqueue(sess, fr);	return 0;}/* * Subtype 0x0007 * * Middle handler for 0017/0007 SNACs.  Contains the auth key prefixed * by only its length in a two byte word. * * Calls the client, which should then use the value to call aim_send_login. * */static int keyparse(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs){	int keylen, ret = 1;	aim_rxcallback_t userfunc;	char *keystr;	keylen = aimbs_get16(bs);	keystr = aimbs_getstr(bs, keylen);	/* XXX - When GiantGrayPanda signed on AIM I got a thing asking me to register 	 * for the netscape network.  This SNAC had a type 0x0058 TLV with length 10.  	 * Data is 0x0007 0004 3e19 ae1e 0006 0004 0000 0005 */	if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))		ret = userfunc(sess, rx, keystr);	free(keystr); 	return ret;}static void auth_shutdown(aim_session_t *sess, aim_module_t *mod){	if (sess->authinfo) {		free(sess->authinfo->sn);		free(sess->authinfo->bosip);		free(sess->authinfo->errorurl);		free(sess->authinfo->email);		free(sess->authinfo->chpassurl);		free(sess->authinfo->latestrelease.name);		free(sess->authinfo->latestrelease.url);		free(sess->authinfo->latestrelease.info);		free(sess->authinfo->latestbeta.name);		free(sess->authinfo->latestbeta.url);		free(sess->authinfo->latestbeta.info);		free(sess->authinfo);	}}static int snachandler(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs){	if (snac->subtype == 0x0003)		return parse(sess, mod, rx, snac, bs);	else if (snac->subtype == 0x0007)		return keyparse(sess, mod, rx, snac, bs);	return 0;}faim_internal int auth_modfirst(aim_session_t *sess, aim_module_t *mod){	mod->family = 0x0017;	mod->version = 0x0000;	mod->flags = 0;	strncpy(mod->name, "auth", sizeof(mod->name));	mod->snachandler = snachandler;	mod->shutdown = auth_shutdown;	return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -