2015-09-23 19:18:18 -04:00
|
|
|
/*
|
|
|
|
* tlscerts.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity 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 Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link the code of portions of this program with the OpenSSL library under
|
|
|
|
* certain conditions as described in each individual source file, and
|
|
|
|
* distribute linked combinations including the two.
|
|
|
|
*
|
|
|
|
* You must obey the GNU General Public License in all respects for all of the
|
|
|
|
* code used other than OpenSSL. If you modify file(s) with this exception, you
|
|
|
|
* may extend this exception to your version of the file(s), but you are not
|
|
|
|
* obligated to do so. If you do not wish to do so, delete this exception
|
|
|
|
* statement from your version. If you delete this exception statement from all
|
|
|
|
* source files in the program, then also delete it here.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <glib/gstdio.h>
|
|
|
|
|
|
|
|
#include "config/tlscerts.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "common.h"
|
2015-09-23 20:06:53 -04:00
|
|
|
#include "tools/autocomplete.h"
|
2015-09-23 19:18:18 -04:00
|
|
|
|
|
|
|
static gchar *tlscerts_loc;
|
|
|
|
static GKeyFile *tlscerts;
|
|
|
|
|
|
|
|
static gchar* _get_tlscerts_file(void);
|
|
|
|
static void _save_tlscerts(void);
|
|
|
|
|
2015-09-23 20:06:53 -04:00
|
|
|
static Autocomplete certs_ac;
|
|
|
|
|
2015-11-09 15:57:26 -05:00
|
|
|
static char *current_fp;
|
|
|
|
|
2015-09-23 19:18:18 -04:00
|
|
|
void
|
|
|
|
tlscerts_init(void)
|
|
|
|
{
|
|
|
|
log_info("Loading TLS certificates");
|
|
|
|
tlscerts_loc = _get_tlscerts_file();
|
|
|
|
|
|
|
|
if (g_file_test(tlscerts_loc, G_FILE_TEST_EXISTS)) {
|
|
|
|
g_chmod(tlscerts_loc, S_IRUSR | S_IWUSR);
|
|
|
|
}
|
|
|
|
|
|
|
|
tlscerts = g_key_file_new();
|
|
|
|
g_key_file_load_from_file(tlscerts, tlscerts_loc, G_KEY_FILE_KEEP_COMMENTS, NULL);
|
2015-09-23 20:06:53 -04:00
|
|
|
|
|
|
|
certs_ac = autocomplete_new();
|
|
|
|
gsize len = 0;
|
|
|
|
gchar **groups = g_key_file_get_groups(tlscerts, &len);
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
for (i = 0; i < g_strv_length(groups); i++) {
|
|
|
|
autocomplete_add(certs_ac, groups[i]);
|
|
|
|
}
|
|
|
|
g_strfreev(groups);
|
2015-11-09 15:57:26 -05:00
|
|
|
|
|
|
|
current_fp = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tlscerts_set_current(const char *const fp)
|
|
|
|
{
|
|
|
|
if (current_fp) {
|
|
|
|
free(current_fp);
|
|
|
|
}
|
|
|
|
current_fp = strdup(fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
char*
|
|
|
|
tlscerts_get_current(void)
|
|
|
|
{
|
|
|
|
return current_fp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tlscerts_clear_current(void)
|
|
|
|
{
|
|
|
|
if (current_fp) {
|
|
|
|
free(current_fp);
|
|
|
|
current_fp = NULL;
|
|
|
|
}
|
2015-09-23 19:18:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2015-10-25 18:23:38 -04:00
|
|
|
tlscerts_exists(const char *const fingerprint)
|
2015-09-23 19:18:18 -04:00
|
|
|
{
|
|
|
|
return g_key_file_has_group(tlscerts, fingerprint);
|
|
|
|
}
|
|
|
|
|
2015-09-23 19:43:41 -04:00
|
|
|
GList*
|
|
|
|
tlscerts_list(void)
|
|
|
|
{
|
|
|
|
GList *res = NULL;
|
|
|
|
gsize len = 0;
|
|
|
|
gchar **groups = g_key_file_get_groups(tlscerts, &len);
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
for (i = 0; i < g_strv_length(groups); i++) {
|
|
|
|
char *fingerprint = strdup(groups[i]);
|
2015-11-09 20:20:40 -05:00
|
|
|
char *subjectname = g_key_file_get_string(tlscerts, fingerprint, "subjectname", NULL);
|
2015-09-23 19:43:41 -04:00
|
|
|
char *notbefore = g_key_file_get_string(tlscerts, fingerprint, "start", NULL);
|
|
|
|
char *notafter = g_key_file_get_string(tlscerts, fingerprint, "end", NULL);
|
|
|
|
|
2015-11-09 20:20:40 -05:00
|
|
|
TLSCertificate *cert = tlscerts_new(fingerprint, subjectname, notbefore, notafter);
|
2015-09-23 19:43:41 -04:00
|
|
|
|
|
|
|
res = g_list_append(res, cert);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (groups) {
|
|
|
|
g_strfreev(groups);
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2015-09-23 19:18:18 -04:00
|
|
|
TLSCertificate*
|
2015-11-09 20:20:40 -05:00
|
|
|
tlscerts_new(const char *const fingerprint, const char *const subjectname, const char *const notbefore,
|
|
|
|
const char *const notafter)
|
2015-09-23 19:18:18 -04:00
|
|
|
{
|
|
|
|
TLSCertificate *cert = malloc(sizeof(TLSCertificate));
|
2015-11-09 20:20:40 -05:00
|
|
|
|
|
|
|
if (subjectname) {
|
|
|
|
cert->subjectname = strdup(subjectname);
|
|
|
|
} else {
|
|
|
|
cert->subjectname = NULL;
|
|
|
|
}
|
2015-09-23 19:18:18 -04:00
|
|
|
if (fingerprint) {
|
|
|
|
cert->fingerprint = strdup(fingerprint);
|
|
|
|
} else {
|
|
|
|
cert->fingerprint = NULL;
|
|
|
|
}
|
|
|
|
if (notbefore) {
|
|
|
|
cert->notbefore = strdup(notbefore);
|
|
|
|
} else {
|
|
|
|
cert->notbefore = NULL;
|
|
|
|
}
|
|
|
|
if (notafter) {
|
|
|
|
cert->notafter = strdup(notafter);
|
|
|
|
} else {
|
|
|
|
cert->notafter = NULL;
|
|
|
|
}
|
|
|
|
|
2015-11-09 20:20:40 -05:00
|
|
|
cert->domain = NULL;
|
|
|
|
cert->email = NULL;
|
|
|
|
cert->organisation = NULL;
|
|
|
|
gchar** fields = g_strsplit(subjectname, "/", 0);
|
|
|
|
int i = 0;
|
|
|
|
for (i = 0; i < g_strv_length(fields); i++) {
|
|
|
|
gchar** keyval = g_strsplit(fields[i], "=", 2);
|
|
|
|
if (g_strv_length(keyval) == 2) {
|
|
|
|
if (g_strcmp0(keyval[0], "CN") == 0) {
|
|
|
|
cert->domain = strdup(keyval[1]);
|
|
|
|
}
|
|
|
|
if (g_strcmp0(keyval[0], "O") == 0) {
|
|
|
|
cert->organisation = strdup(keyval[1]);
|
|
|
|
}
|
|
|
|
if (g_strcmp0(keyval[0], "emailAddress") == 0) {
|
|
|
|
cert->email = strdup(keyval[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_strfreev(keyval);
|
|
|
|
}
|
|
|
|
g_strfreev(fields);
|
|
|
|
|
2015-09-23 19:18:18 -04:00
|
|
|
return cert;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tlscerts_add(TLSCertificate *cert)
|
|
|
|
{
|
|
|
|
if (!cert) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!cert->fingerprint) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-23 20:06:53 -04:00
|
|
|
autocomplete_add(certs_ac, cert->fingerprint);
|
|
|
|
|
2015-11-09 20:20:40 -05:00
|
|
|
if (cert->subjectname) {
|
|
|
|
g_key_file_set_string(tlscerts, cert->fingerprint, "subjectname", cert->subjectname);
|
2015-09-23 19:18:18 -04:00
|
|
|
}
|
|
|
|
if (cert->notbefore) {
|
|
|
|
g_key_file_set_string(tlscerts, cert->fingerprint, "start", cert->notbefore);
|
|
|
|
}
|
|
|
|
if (cert->notafter) {
|
|
|
|
g_key_file_set_string(tlscerts, cert->fingerprint, "end", cert->notafter);
|
|
|
|
}
|
|
|
|
|
|
|
|
_save_tlscerts();
|
|
|
|
}
|
|
|
|
|
2015-09-23 20:06:53 -04:00
|
|
|
gboolean
|
2015-10-25 18:23:38 -04:00
|
|
|
tlscerts_revoke(const char *const fingerprint)
|
2015-09-23 20:06:53 -04:00
|
|
|
{
|
|
|
|
gboolean result = g_key_file_remove_group(tlscerts, fingerprint, NULL);
|
|
|
|
if (result) {
|
|
|
|
autocomplete_remove(certs_ac, fingerprint);
|
|
|
|
}
|
|
|
|
|
|
|
|
_save_tlscerts();
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-10-25 18:23:38 -04:00
|
|
|
char*
|
|
|
|
tlscerts_complete(const char *const prefix)
|
2015-09-23 20:06:53 -04:00
|
|
|
{
|
|
|
|
return autocomplete_complete(certs_ac, prefix, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tlscerts_reset_ac(void)
|
|
|
|
{
|
|
|
|
autocomplete_reset(certs_ac);
|
|
|
|
}
|
|
|
|
|
2015-09-23 19:18:18 -04:00
|
|
|
void
|
|
|
|
tlscerts_free(TLSCertificate *cert)
|
|
|
|
{
|
|
|
|
if (cert) {
|
2015-11-09 20:20:40 -05:00
|
|
|
free(cert->subjectname);
|
2015-09-23 19:18:18 -04:00
|
|
|
free(cert->fingerprint);
|
|
|
|
free(cert->domain);
|
|
|
|
free(cert->organisation);
|
|
|
|
free(cert->email);
|
|
|
|
free(cert->notbefore);
|
|
|
|
free(cert->notafter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tlscerts_close(void)
|
|
|
|
{
|
|
|
|
g_key_file_free(tlscerts);
|
|
|
|
tlscerts = NULL;
|
2015-11-09 15:57:26 -05:00
|
|
|
|
|
|
|
free(current_fp);
|
|
|
|
current_fp = NULL;
|
|
|
|
|
2015-09-23 20:06:53 -04:00
|
|
|
autocomplete_free(certs_ac);
|
2015-09-23 19:18:18 -04:00
|
|
|
}
|
|
|
|
|
2015-10-25 18:23:38 -04:00
|
|
|
static gchar*
|
2015-09-23 19:18:18 -04:00
|
|
|
_get_tlscerts_file(void)
|
|
|
|
{
|
|
|
|
gchar *xdg_data = xdg_get_data_home();
|
|
|
|
GString *tlscerts_file = g_string_new(xdg_data);
|
|
|
|
g_string_append(tlscerts_file, "/profanity/tlscerts");
|
|
|
|
gchar *result = strdup(tlscerts_file->str);
|
|
|
|
g_free(xdg_data);
|
|
|
|
g_string_free(tlscerts_file, TRUE);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_save_tlscerts(void)
|
|
|
|
{
|
|
|
|
gsize g_data_size;
|
|
|
|
gchar *g_tlscerts_data = g_key_file_to_data(tlscerts, &g_data_size, NULL);
|
|
|
|
g_file_set_contents(tlscerts_loc, g_tlscerts_data, g_data_size, NULL);
|
|
|
|
g_chmod(tlscerts_loc, S_IRUSR | S_IWUSR);
|
|
|
|
g_free(g_tlscerts_data);
|
|
|
|
}
|