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

📄 util.c

📁 Linux下的多协议即时通讯程序源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/*  silcpurple_util.c  Author: Pekka Riikonen <priikone@silcnet.org>  Copyright (C) 2004 - 2005 Pekka Riikonen  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; version 2 of the License.  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.*/#include "silcincludes.h"#include "silcclient.h"#include "silcpurple.h"#include "imgstore.h"/**************************** Utility Routines *******************************/static char str[256], str2[256];const char *silcpurple_silcdir(void){	const char *hd = purple_home_dir();	memset(str, 0, sizeof(str));	g_snprintf(str, sizeof(str) - 1, "%s" G_DIR_SEPARATOR_S ".silc", hd ? hd : "/tmp");	return (const char *)str;}const char *silcpurple_session_file(const char *account){	memset(str2, 0, sizeof(str2));	g_snprintf(str2, sizeof(str2) - 1, "%s" G_DIR_SEPARATOR_S "%s_session",		   silcpurple_silcdir(), account);	return (const char *)str2;}gboolean silcpurple_ip_is_private(const char *ip){	if (silc_net_is_ip4(ip)) {		if (!strncmp(ip, "10.", 3)) {			return TRUE;		} else if (!strncmp(ip, "172.", 4) && strlen(ip) > 6) {			char tmp[3];			int s;			memset(tmp, 0, sizeof(tmp));			strncpy(tmp, ip + 4, 2);			s = atoi(tmp);			if (s >= 16 && s <= 31)				return TRUE;		} else if (!strncmp(ip, "192.168.", 8)) {			return TRUE;		}	}	return FALSE;}/* This checks stats for various SILC files and directories. First it   checks if ~/.silc directory exist and is owned by the correct user. If   it doesn't exist, it will create the directory. After that it checks if   user's Public and Private key files exists and creates them if needed. */gboolean silcpurple_check_silc_dir(PurpleConnection *gc){	char filename[256], file_public_key[256], file_private_key[256];	char servfilename[256], clientfilename[256], friendsfilename[256];	char pkd[256], prd[256];	struct stat st;	struct passwd *pw;	int fd;	pw = getpwuid(getuid());	if (!pw) {		purple_debug_error("silc", "silc: %s\n", strerror(errno));		return FALSE;	}	g_snprintf(filename, sizeof(filename) - 1, "%s", silcpurple_silcdir());	g_snprintf(servfilename, sizeof(servfilename) - 1, "%s" G_DIR_SEPARATOR_S "serverkeys",		   silcpurple_silcdir());	g_snprintf(clientfilename, sizeof(clientfilename) - 1, "%s" G_DIR_SEPARATOR_S "clientkeys",		   silcpurple_silcdir());	g_snprintf(friendsfilename, sizeof(friendsfilename) - 1, "%s" G_DIR_SEPARATOR_S "friends",		   silcpurple_silcdir());	/*	 * Check ~/.silc directory	 */	if ((g_stat(filename, &st)) == -1) {		/* If dir doesn't exist */		if (errno == ENOENT) {			if (pw->pw_uid == geteuid()) {				if ((g_mkdir(filename, 0755)) == -1) {					purple_debug_error("silc", "Couldn't create '%s' directory\n", filename);					return FALSE;				}			} else {				purple_debug_error("silc", "Couldn't create '%s' directory due to a wrong uid!\n",					filename);				return FALSE;			}		} else {			purple_debug_error("silc", "Couldn't stat '%s' directory, error: %s\n", filename, strerror(errno));			return FALSE;		}	} else {#ifndef _WIN32		/* Check the owner of the dir */		if (st.st_uid != 0 && st.st_uid != pw->pw_uid) {			purple_debug_error("silc", "You don't seem to own '%s' directory\n",				filename);			return FALSE;		}#endif	}	/*	 * Check ~./silc/serverkeys directory	 */	if ((g_stat(servfilename, &st)) == -1) {		/* If dir doesn't exist */		if (errno == ENOENT) {			if (pw->pw_uid == geteuid()) {				if ((g_mkdir(servfilename, 0755)) == -1) {					purple_debug_error("silc", "Couldn't create '%s' directory\n", servfilename);					return FALSE;				}			} else {				purple_debug_error("silc", "Couldn't create '%s' directory due to a wrong uid!\n",					servfilename);				return FALSE;			}		} else {			purple_debug_error("silc", "Couldn't stat '%s' directory, error: %s\n",							 servfilename, strerror(errno));			return FALSE;		}	}	/*	 * Check ~./silc/clientkeys directory	 */	if ((g_stat(clientfilename, &st)) == -1) {		/* If dir doesn't exist */		if (errno == ENOENT) {			if (pw->pw_uid == geteuid()) {				if ((g_mkdir(clientfilename, 0755)) == -1) {					purple_debug_error("silc", "Couldn't create '%s' directory\n", clientfilename);					return FALSE;				}			} else {				purple_debug_error("silc", "Couldn't create '%s' directory due to a wrong uid!\n",					clientfilename);				return FALSE;			}		} else {			purple_debug_error("silc", "Couldn't stat '%s' directory, error: %s\n",							 clientfilename, strerror(errno));			return FALSE;		}	}	/*	 * Check ~./silc/friends directory	 */	if ((g_stat(friendsfilename, &st)) == -1) {		/* If dir doesn't exist */		if (errno == ENOENT) {			if (pw->pw_uid == geteuid()) {				if ((g_mkdir(friendsfilename, 0755)) == -1) {					purple_debug_error("silc", "Couldn't create '%s' directory\n", friendsfilename);					return FALSE;				}			} else {				purple_debug_error("silc", "Couldn't create '%s' directory due to a wrong uid!\n",					friendsfilename);				return FALSE;			}		} else {			purple_debug_error("silc", "Couldn't stat '%s' directory, error: %s\n",							 friendsfilename, strerror(errno));			return FALSE;		}	}	/*	 * Check Public and Private keys	 */	g_snprintf(pkd, sizeof(pkd), "%s" G_DIR_SEPARATOR_S "public_key.pub", silcpurple_silcdir());	g_snprintf(prd, sizeof(prd), "%s" G_DIR_SEPARATOR_S "private_key.prv", silcpurple_silcdir());	g_snprintf(file_public_key, sizeof(file_public_key) - 1, "%s",		   purple_account_get_string(gc->account, "public-key", pkd));	g_snprintf(file_private_key, sizeof(file_public_key) - 1, "%s",		   purple_account_get_string(gc->account, "private-key", prd));	if ((g_stat(file_public_key, &st)) == -1) {		/* If file doesn't exist */		if (errno == ENOENT) {			purple_connection_update_progress(gc, _("Creating SILC key pair..."), 1, 5);			if (!silc_create_key_pair(SILCPURPLE_DEF_PKCS,					     SILCPURPLE_DEF_PKCS_LEN,					     file_public_key, file_private_key, NULL,					     (gc->password == NULL) ? "" : gc->password,						 NULL, NULL, NULL, FALSE)) {				purple_debug_error("silc", "Couldn't create key pair\n");				return FALSE;			}			if ((g_stat(file_public_key, &st)) == -1) {				purple_debug_error("silc", "Couldn't stat '%s' public key, error: %s\n",					file_public_key, strerror(errno));				return FALSE;			}		} else {			purple_debug_error("silc", "Couldn't stat '%s' public key, error: %s\n",							 file_public_key, strerror(errno));			return FALSE;		}	}#ifndef _WIN32	/* Check the owner of the public key */	if (st.st_uid != 0 && st.st_uid != pw->pw_uid) {		purple_debug_error("silc", "You don't seem to own your public key!?\n");		return FALSE;	}#endif	if ((fd = g_open(file_private_key, O_RDONLY, 0)) != -1) {		if ((fstat(fd, &st)) == -1) {			purple_debug_error("silc", "Couldn't stat '%s' private key, error: %s\n",							 file_private_key, strerror(errno));			close(fd);			return FALSE;		}	} else if ((g_stat(file_private_key, &st)) == -1) {		/* If file doesn't exist */		if (errno == ENOENT) {			purple_connection_update_progress(gc, _("Creating SILC key pair..."), 1, 5);			if (!silc_create_key_pair(SILCPURPLE_DEF_PKCS,					     SILCPURPLE_DEF_PKCS_LEN,					     file_public_key, file_private_key, NULL,					     (gc->password == NULL) ? "" : gc->password,						 NULL, NULL, NULL, FALSE)) {				purple_debug_error("silc", "Couldn't create key pair\n");				return FALSE;			}			if ((fd = g_open(file_private_key, O_RDONLY, 0)) != -1) {				if ((fstat(fd, &st)) == -1) {					purple_debug_error("silc", "Couldn't stat '%s' private key, error: %s\n",							 file_private_key, strerror(errno));					close(fd);					return FALSE;				}			}			/* This shouldn't really happen because silc_create_key_pair()			 * will set the permissions */			else if ((g_stat(file_private_key, &st)) == -1) {				purple_debug_error("silc", "Couldn't stat '%s' private key, error: %s\n",					file_private_key, strerror(errno));				return FALSE;			}		} else {			purple_debug_error("silc", "Couldn't stat '%s' private key, error: %s\n",							 file_private_key, strerror(errno));			return FALSE;		}	}#ifndef _WIN32	/* Check the owner of the private key */	if (st.st_uid != 0 && st.st_uid != pw->pw_uid) {		purple_debug_error("silc", "You don't seem to own your private key!?\n");		if (fd != -1)			close(fd);		return FALSE;	}	/* Check the permissions for the private key */	if ((st.st_mode & 0777) != 0600) {		purple_debug_warning("silc", "Wrong permissions in your private key file `%s'!\n"			"Trying to change them ...\n", file_private_key);		if ((fd == -1) || (fchmod(fd, S_IRUSR | S_IWUSR)) == -1) {			purple_debug_error("silc",				"Failed to change permissions for private key file!\n"				"Permissions for your private key file must be 0600.\n");			if (fd != -1)				close(fd);			return FALSE;		}		purple_debug_warning("silc", "Done.\n\n");	}#endif	if (fd != -1)		close(fd);	return TRUE;}#ifdef _WIN32struct passwd *getpwuid(uid_t uid) {	struct passwd *pwd = calloc(1, sizeof(struct passwd));	return pwd;}uid_t getuid() {	return 0;}uid_t geteuid() {	return 0;}#endifvoid silcpurple_show_public_key(SilcPurple sg,			      const char *name, SilcPublicKey public_key,			      GCallback callback, void *context){	SilcPublicKeyIdentifier ident;	SilcPKCS pkcs;	char *fingerprint, *babbleprint;	unsigned char *pk;	SilcUInt32 pk_len, key_len = 0;	GString *s;	char *buf;	ident = silc_pkcs_decode_identifier(public_key->identifier);	if (!ident)		return;	pk = silc_pkcs_public_key_encode(public_key, &pk_len);	fingerprint = silc_hash_fingerprint(NULL, pk, pk_len);	babbleprint = silc_hash_babbleprint(NULL, pk, pk_len);	if (silc_pkcs_alloc((unsigned char *)public_key->name, &pkcs)) {		key_len = silc_pkcs_public_key_set(pkcs, public_key);		silc_pkcs_free(pkcs);	}	s = g_string_new("");	if (ident->realname)		/* Hint for translators: Please check the tabulator width here and in		   the next strings (short strings: 2 tabs, longer strings 1 tab,		   sum: 3 tabs or 24 characters) */		g_string_append_printf(s, _("Real Name: \t%s\n"), ident->realname);	if (ident->username)		g_string_append_printf(s, _("User Name: \t%s\n"), ident->username);	if (ident->email)		g_string_append_printf(s, _("E-Mail: \t\t%s\n"), ident->email);	if (ident->host)		g_string_append_printf(s, _("Host Name: \t%s\n"), ident->host);	if (ident->org)		g_string_append_printf(s, _("Organization: \t%s\n"), ident->org);	if (ident->country)		g_string_append_printf(s, _("Country: \t%s\n"), ident->country);	g_string_append_printf(s, _("Algorithm: \t%s\n"), public_key->name);	g_string_append_printf(s, _("Key Length: \t%d bits\n"), (int)key_len);	g_string_append_printf(s, "\n");	g_string_append_printf(s, _("Public Key Fingerprint:\n%s\n\n"), fingerprint);	g_string_append_printf(s, _("Public Key Babbleprint:\n%s"), babbleprint);	buf = g_string_free(s, FALSE);	purple_request_action(sg->gc, _("Public Key Information"),			    _("Public Key Information"),			    buf, 0, purple_connection_get_account(sg->gc),				NULL, NULL, context, 1, _("Close"), callback);	g_free(buf);	silc_free(fingerprint);	silc_free(babbleprint);	silc_free(pk);	silc_pkcs_free_identifier(ident);}SilcAttributePayload

⌨️ 快捷键说明

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