aboutsummaryrefslogtreecommitdiffstats
path: root/src/r-gpgme.c
blob: 4641e6010b3b3e0a66a25835d47bb6a53bf1675e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/***
	This file is part of LockPassword
	Copyright (C) 2020-2021 Aleksandr D. Goncharov (Joursoir) <chat@joursoir.net>

	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 3 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, see <https://www.gnu.org/licenses/>.
***/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <locale.h>
#include <errno.h>
#include <gpgme.h>

#include "constants.h"
#include "r-gpgme.h"
#include "output.h"

#define print_gpgme_error(err)	print_error("%s: %s\n", gpgme_strsource(err), gpgme_strerror(err))

static void init_gpgme()
{
	/* The GPGME library communicates with child processes (the 
	crypto engines). If a child process dies unexpectedly, for
	example due to a bug, or system problem, a SIGPIPE signal
	will be delivered to the application. The default action is
	to abort the program. To protect against this,
	gpgme_check_version sets the SIGPIPE signal action to SIG_IGN
	which means that the signal will be ignored. */
	setlocale(LC_ALL, "");
	gpgme_check_version(NULL);
	gpgme_set_locale(NULL, LC_CTYPE, setlocale(LC_CTYPE, NULL));
#ifdef LC_MESSAGES
	gpgme_set_locale(NULL, LC_MESSAGES, setlocale(LC_MESSAGES, NULL));
#endif
}

static int init_ctx(gpgme_ctx_t ctx, gpgme_protocol_t protocol)
{
	gpgme_error_t err;
	err = gpgme_engine_check_version(protocol);
	if(err != GPG_ERR_NO_ERROR)
		goto error;

	err = gpgme_set_protocol(ctx, protocol);
	if(err != GPG_ERR_NO_ERROR)
		goto error;

	/* output be ASCII armored */
	gpgme_set_armor(ctx, 1);

	return 0;
error:
	print_gpgme_error(err);
	return 1; 
}

static int loop_read(const char *path, gpgme_data_t dh)
{
	char buf[maxlen_pass];
	int ret;

	FILE *f = fopen(path, "w");	
	if(f == NULL)
		return 1;

	ret = gpgme_data_seek(dh, 0, SEEK_SET);
	if (ret)
		goto out;

	while((ret = gpgme_data_read(dh, buf, maxlen_pass)) > 0) {
		fwrite(buf, ret, 1, f);
	}

out:
	if (ret != 0) {
		gpgme_error_t err = gpgme_err_code_from_errno(errno);
		print_gpgme_error(err);
	}
	fclose(f);
	return ret;
}

int ecnrypt_data(const char *path, const char *data, const char *pubkey)
{
	gpgme_error_t err;	
	gpgme_ctx_t ctx;
	gpgme_data_t plain, cipher;
	gpgme_key_t key[] = { NULL, NULL };
	int ret = 1;

	init_gpgme();
	err = gpgme_new(&ctx);
	if (err != GPG_ERR_NO_ERROR)
		goto out;
	err = init_ctx(ctx, GPGME_PROTOCOL_OPENPGP);
	if (err != GPG_ERR_NO_ERROR)
		goto out_release_context;

	/* start encrypt */
	err = gpgme_data_new_from_mem(&plain, data,
		sizeof(char) * (strlen(data) + 1), 0);
	if (err != GPG_ERR_NO_ERROR)
		goto out_release_context;
	err = gpgme_data_new(&cipher);
	if (err != GPG_ERR_NO_ERROR)
		goto out_release_plain;

	err = gpgme_get_key(ctx, pubkey, &key[0], 0);
	if (err != GPG_ERR_NO_ERROR)
		goto out_release_cipher;

	err = gpgme_op_encrypt(ctx, key, GPGME_ENCRYPT_ALWAYS_TRUST,
		plain, cipher);
	if (err != GPG_ERR_NO_ERROR)
		goto out_release_cipher;

	ret = loop_read(path, cipher);

out_release_cipher:
	gpgme_data_release(cipher);
out_release_plain:
	gpgme_data_release(plain);
out_release_context:
	gpgme_release(ctx);
out:
	if (err != GPG_ERR_NO_ERROR) {
		print_gpgme_error(err);
	}
	return ret;
}

char *decrypt_data(const char *path)
{
	gpgme_error_t err;	
	gpgme_ctx_t ctx;
	gpgme_data_t cipher, plain;
	char *data = NULL;

	init_gpgme();
	err = gpgme_new(&ctx);
	if (err != GPG_ERR_NO_ERROR)
		goto out;
	err = init_ctx(ctx, GPGME_PROTOCOL_OPENPGP);
	if (err != GPG_ERR_NO_ERROR)
		goto out_release_context;

	/* start decrypt */
	err = gpgme_data_new_from_file(&cipher, path, 1);
	if (err != GPG_ERR_NO_ERROR)
		goto out_release_context;
	err = gpgme_data_new(&plain);
	if (err != GPG_ERR_NO_ERROR)
		goto out_release_cipher;

	err = gpgme_op_decrypt(ctx, cipher, plain);
	if (err != GPG_ERR_NO_ERROR)
		goto out_release_plain;

	int ret = gpgme_data_seek(plain, 0, SEEK_SET);
	if (ret) {
		err = gpgme_err_code_from_errno(errno);
		goto out_release_plain;
	}

	data = malloc(sizeof(char) * (maxlen_pass + 1));
	if (!data) {
		print_error("Unable to allocate space for the decrypted data.\n");
		goto out_release_plain;
	}
	gpgme_data_read(plain, data, maxlen_pass);
	
out_release_plain:
	gpgme_data_release(plain);
out_release_cipher:
	gpgme_data_release(cipher);
out_release_context:
	gpgme_release(ctx);
out:
	if (err != GPG_ERR_NO_ERROR) {
		print_gpgme_error(err);
	}
	return data;
}