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

📄 monitor_wrap.c

📁 C++编写
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * Copyright 2002 Niels Provos <provos@citi.umich.edu> * Copyright 2002 Markus Friedl <markus@openbsd.org> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. 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. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. */#include "includes.h"RCSID("$OpenBSD: monitor_wrap.c,v 1.24 2003/04/01 10:22:21 markus Exp $");#include <openssl/bn.h>#include <openssl/dh.h>#include "ssh.h"#include "dh.h"#include "kex.h"#include "auth.h"#include "auth-options.h"#include "buffer.h"#include "bufaux.h"#include "packet.h"#include "mac.h"#include "log.h"#include "zlib.h"#include "monitor.h"#include "monitor_wrap.h"#include "xmalloc.h"#include "atomicio.h"#include "monitor_fdpass.h"#include "getput.h"#include "auth.h"#include "channels.h"#include "session.h"/* Imports */extern int compat20;extern Newkeys *newkeys[];extern z_stream incoming_stream;extern z_stream outgoing_stream;extern struct monitor *pmonitor;extern Buffer input, output;voidmm_request_send(int socket, enum monitor_reqtype type, Buffer *m){	u_int mlen = buffer_len(m);	u_char buf[5];	debug3("%s entering: type %d", __func__, type);	PUT_32BIT(buf, mlen + 1);	buf[4] = (u_char) type;		/* 1st byte of payload is mesg-type */	if (atomicio(write, socket, buf, sizeof(buf)) != sizeof(buf))		fatal("%s: write", __func__);	if (atomicio(write, socket, buffer_ptr(m), mlen) != mlen)		fatal("%s: write", __func__);}voidmm_request_receive(int socket, Buffer *m){	u_char buf[4];	u_int msg_len;	ssize_t res;	debug3("%s entering", __func__);	res = atomicio(read, socket, buf, sizeof(buf));	if (res != sizeof(buf)) {		if (res == 0)			fatal_cleanup();		fatal("%s: read: %ld", __func__, (long)res);	}	msg_len = GET_32BIT(buf);	if (msg_len > 256 * 1024)		fatal("%s: read: bad msg_len %d", __func__, msg_len);	buffer_clear(m);	buffer_append_space(m, msg_len);	res = atomicio(read, socket, buffer_ptr(m), msg_len);	if (res != msg_len)		fatal("%s: read: %ld != msg_len", __func__, (long)res);}voidmm_request_receive_expect(int socket, enum monitor_reqtype type, Buffer *m){	u_char rtype;	debug3("%s entering: type %d", __func__, type);	mm_request_receive(socket, m);	rtype = buffer_get_char(m);	if (rtype != type)		fatal("%s: read: rtype %d != type %d", __func__,		    rtype, type);}DH *mm_choose_dh(int min, int nbits, int max){	BIGNUM *p, *g;	int success = 0;	Buffer m;	buffer_init(&m);	buffer_put_int(&m, min);	buffer_put_int(&m, nbits);	buffer_put_int(&m, max);	mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_MODULI, &m);	debug3("%s: waiting for MONITOR_ANS_MODULI", __func__);	mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_MODULI, &m);	success = buffer_get_char(&m);	if (success == 0)		fatal("%s: MONITOR_ANS_MODULI failed", __func__);	if ((p = BN_new()) == NULL)		fatal("%s: BN_new failed", __func__);	if ((g = BN_new()) == NULL)		fatal("%s: BN_new failed", __func__);	buffer_get_bignum2(&m, p);	buffer_get_bignum2(&m, g);	debug3("%s: remaining %d", __func__, buffer_len(&m));	buffer_free(&m);	return (dh_new_group(g, p));}intmm_key_sign(Key *key, u_char **sigp, u_int *lenp, u_char *data, u_int datalen){	Kex *kex = *pmonitor->m_pkex;	Buffer m;	debug3("%s entering", __func__);	buffer_init(&m);	buffer_put_int(&m, kex->host_key_index(key));	buffer_put_string(&m, data, datalen);	mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_SIGN, &m);	debug3("%s: waiting for MONITOR_ANS_SIGN", __func__);	mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_SIGN, &m);	*sigp  = buffer_get_string(&m, lenp);	buffer_free(&m);	return (0);}struct passwd *mm_getpwnamallow(const char *login){	Buffer m;	struct passwd *pw;	u_int pwlen;	debug3("%s entering", __func__);	buffer_init(&m);	buffer_put_cstring(&m, login);	mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_PWNAM, &m);	debug3("%s: waiting for MONITOR_ANS_PWNAM", __func__);	mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_PWNAM, &m);	if (buffer_get_char(&m) == 0) {		buffer_free(&m);		return (NULL);	}	pw = buffer_get_string(&m, &pwlen);	if (pwlen != sizeof(struct passwd))		fatal("%s: struct passwd size mismatch", __func__);	pw->pw_name = buffer_get_string(&m, NULL);	pw->pw_passwd = buffer_get_string(&m, NULL);	pw->pw_gecos = buffer_get_string(&m, NULL);	pw->pw_class = buffer_get_string(&m, NULL);	pw->pw_dir = buffer_get_string(&m, NULL);	pw->pw_shell = buffer_get_string(&m, NULL);	buffer_free(&m);	return (pw);}char *mm_auth2_read_banner(void){	Buffer m;	char *banner;	debug3("%s entering", __func__);	buffer_init(&m);	mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTH2_READ_BANNER, &m);	buffer_clear(&m);	mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_AUTH2_READ_BANNER, &m);	banner = buffer_get_string(&m, NULL);	buffer_free(&m);	return (banner);}/* Inform the privileged process about service and style */voidmm_inform_authserv(char *service, char *style){	Buffer m;	debug3("%s entering", __func__);	buffer_init(&m);	buffer_put_cstring(&m, service);	buffer_put_cstring(&m, style ? style : "");	mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHSERV, &m);	buffer_free(&m);}/* Do the password authentication */intmm_auth_password(Authctxt *authctxt, char *password){	Buffer m;	int authenticated = 0;	debug3("%s entering", __func__);	buffer_init(&m);	buffer_put_cstring(&m, password);	mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHPASSWORD, &m);	debug3("%s: waiting for MONITOR_ANS_AUTHPASSWORD", __func__);	mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_AUTHPASSWORD, &m);	authenticated = buffer_get_int(&m);	buffer_free(&m);	debug3("%s: user %sauthenticated",	    __func__, authenticated ? "" : "not ");	return (authenticated);}intmm_user_key_allowed(struct passwd *pw, Key *key){	return (mm_key_allowed(MM_USERKEY, NULL, NULL, key));}intmm_hostbased_key_allowed(struct passwd *pw, char *user, char *host,    Key *key){	return (mm_key_allowed(MM_HOSTKEY, user, host, key));}intmm_auth_rhosts_rsa_key_allowed(struct passwd *pw, char *user,    char *host, Key *key){	int ret;	key->type = KEY_RSA; /* XXX hack for key_to_blob */	ret = mm_key_allowed(MM_RSAHOSTKEY, user, host, key);	key->type = KEY_RSA1;	return (ret);}static voidmm_send_debug(Buffer *m){	char *msg;	while (buffer_len(m)) {		msg = buffer_get_string(m, NULL);		debug3("%s: Sending debug: %s", __func__, msg);		packet_send_debug("%s", msg);		xfree(msg);	}}intmm_key_allowed(enum mm_keytype type, char *user, char *host, Key *key){	Buffer m;	u_char *blob;	u_int len;	int allowed = 0, have_forced = 0;	debug3("%s entering", __func__);	/* Convert the key to a blob and the pass it over */	if (!key_to_blob(key, &blob, &len))		return (0);	buffer_init(&m);	buffer_put_int(&m, type);	buffer_put_cstring(&m, user ? user : "");	buffer_put_cstring(&m, host ? host : "");	buffer_put_string(&m, blob, len);	xfree(blob);	mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYALLOWED, &m);	debug3("%s: waiting for MONITOR_ANS_KEYALLOWED", __func__);	mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KEYALLOWED, &m);	allowed = buffer_get_int(&m);	/* fake forced command */	auth_clear_options();	have_forced = buffer_get_int(&m);	forced_command = have_forced ? xstrdup("true") : NULL;	/* Send potential debug messages */	mm_send_debug(&m);	buffer_free(&m);	return (allowed);}/* * This key verify needs to send the key type along, because the * privileged parent makes the decision if the key is allowed * for authentication. */intmm_key_verify(Key *key, u_char *sig, u_int siglen, u_char *data, u_int datalen){	Buffer m;	u_char *blob;	u_int len;	int verified = 0;	debug3("%s entering", __func__);	/* Convert the key to a blob and the pass it over */	if (!key_to_blob(key, &blob, &len))		return (0);	buffer_init(&m);	buffer_put_string(&m, blob, len);	buffer_put_string(&m, sig, siglen);	buffer_put_string(&m, data, datalen);	xfree(blob);	mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_KEYVERIFY, &m);	debug3("%s: waiting for MONITOR_ANS_KEYVERIFY", __func__);	mm_request_receive_expect(pmonitor->m_recvfd, MONITOR_ANS_KEYVERIFY, &m);	verified = buffer_get_int(&m);	buffer_free(&m);	return (verified);}/* Export key state after authentication */Newkeys *mm_newkeys_from_blob(u_char *blob, int blen){	Buffer b;	u_int len;	Newkeys *newkey = NULL;	Enc *enc;	Mac *mac;	Comp *comp;	debug3("%s: %p(%d)", __func__, blob, blen);#ifdef DEBUG_PK	dump_base64(stderr, blob, blen);#endif	buffer_init(&b);	buffer_append(&b, blob, blen);	newkey = xmalloc(sizeof(*newkey));	enc = &newkey->enc;	mac = &newkey->mac;	comp = &newkey->comp;	/* Enc structure */	enc->name = buffer_get_string(&b, NULL);	buffer_get(&b, &enc->cipher, sizeof(enc->cipher));	enc->enabled = buffer_get_int(&b);	enc->block_size = buffer_get_int(&b);	enc->key = buffer_get_string(&b, &enc->key_len);	enc->iv = buffer_get_string(&b, &len);	if (len != enc->block_size)		fatal("%s: bad ivlen: expected %u != %u", __func__,		    enc->block_size, len);	if (enc->name == NULL || cipher_by_name(enc->name) != enc->cipher)		fatal("%s: bad cipher name %s or pointer %p", __func__,		    enc->name, enc->cipher);	/* Mac structure */	mac->name = buffer_get_string(&b, NULL);	if (mac->name == NULL || mac_init(mac, mac->name) == -1)		fatal("%s: can not init mac %s", __func__, mac->name);	mac->enabled = buffer_get_int(&b);	mac->key = buffer_get_string(&b, &len);	if (len > mac->key_len)		fatal("%s: bad mac key length: %u > %d", __func__, len,		    mac->key_len);	mac->key_len = len;	/* Comp structure */	comp->type = buffer_get_int(&b);	comp->enabled = buffer_get_int(&b);	comp->name = buffer_get_string(&b, NULL);	len = buffer_len(&b);	if (len != 0)		error("newkeys_from_blob: remaining bytes in blob %u", len);	buffer_free(&b);	return (newkey);}intmm_newkeys_to_blob(int mode, u_char **blobp, u_int *lenp){	Buffer b;	int len;	Enc *enc;	Mac *mac;	Comp *comp;	Newkeys *newkey = newkeys[mode];	debug3("%s: converting %p", __func__, newkey);	if (newkey == NULL) {		error("%s: newkey == NULL", __func__);		return 0;	}	enc = &newkey->enc;	mac = &newkey->mac;	comp = &newkey->comp;	buffer_init(&b);	/* Enc structure */	buffer_put_cstring(&b, enc->name);	/* The cipher struct is constant and shared, you export pointer */	buffer_append(&b, &enc->cipher, sizeof(enc->cipher));	buffer_put_int(&b, enc->enabled);	buffer_put_int(&b, enc->block_size);	buffer_put_string(&b, enc->key, enc->key_len);	packet_get_keyiv(mode, enc->iv, enc->block_size);	buffer_put_string(&b, enc->iv, enc->block_size);	/* Mac structure */	buffer_put_cstring(&b, mac->name);	buffer_put_int(&b, mac->enabled);	buffer_put_string(&b, mac->key, mac->key_len);	/* Comp structure */	buffer_put_int(&b, comp->type);	buffer_put_int(&b, comp->enabled);	buffer_put_cstring(&b, comp->name);	len = buffer_len(&b);	if (lenp != NULL)		*lenp = len;	if (blobp != NULL) {		*blobp = xmalloc(len);		memcpy(*blobp, buffer_ptr(&b), len);	}	memset(buffer_ptr(&b), 0, len);	buffer_free(&b);	return len;}static voidmm_send_kex(Buffer *m, Kex *kex)

⌨️ 快捷键说明

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