Search for cert and priv in config dirs
parent
5e98d83f83
commit
8b3bf897c2
14
chat.c
14
chat.c
|
@ -111,7 +111,19 @@ int main(int argc, char *argv[]) {
|
||||||
set(&self.chanTypes, "#&");
|
set(&self.chanTypes, "#&");
|
||||||
set(&self.prefixes, "@+");
|
set(&self.prefixes, "@+");
|
||||||
|
|
||||||
ircConfig(insecure, cert, priv);
|
FILE *certFile = NULL;
|
||||||
|
FILE *privFile = NULL;
|
||||||
|
if (cert) {
|
||||||
|
certFile = configOpen(cert, "r");
|
||||||
|
if (!certFile) err(EX_NOINPUT, "%s", cert);
|
||||||
|
}
|
||||||
|
if (priv) {
|
||||||
|
privFile = configOpen(priv, "r");
|
||||||
|
if (!privFile) err(EX_NOINPUT, "%s", priv);
|
||||||
|
}
|
||||||
|
ircConfig(insecure, certFile, privFile);
|
||||||
|
if (certFile) fclose(certFile);
|
||||||
|
if (privFile) fclose(privFile);
|
||||||
|
|
||||||
uiInit();
|
uiInit();
|
||||||
uiShowID(Network);
|
uiShowID(Network);
|
||||||
|
|
2
chat.h
2
chat.h
|
@ -105,7 +105,7 @@ struct Message {
|
||||||
char *params[ParamCap];
|
char *params[ParamCap];
|
||||||
};
|
};
|
||||||
|
|
||||||
void ircConfig(bool insecure, const char *cert, const char *priv);
|
void ircConfig(bool insecure, FILE *cert, FILE *priv);
|
||||||
int ircConnect(const char *host, const char *port);
|
int ircConnect(const char *host, const char *port);
|
||||||
void ircRecv(void);
|
void ircRecv(void);
|
||||||
void ircSend(const char *ptr, size_t len);
|
void ircSend(const char *ptr, size_t len);
|
||||||
|
|
37
irc.c
37
irc.c
|
@ -23,6 +23,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
#include <sysexits.h>
|
#include <sysexits.h>
|
||||||
#include <tls.h>
|
#include <tls.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
@ -31,7 +32,22 @@
|
||||||
|
|
||||||
struct tls *client;
|
struct tls *client;
|
||||||
|
|
||||||
void ircConfig(bool insecure, const char *cert, const char *priv) {
|
static byte *readFile(size_t *len, FILE *file) {
|
||||||
|
struct stat stat;
|
||||||
|
int error = fstat(fileno(file), &stat);
|
||||||
|
if (error) err(EX_IOERR, "fstat");
|
||||||
|
|
||||||
|
byte *buf = malloc(stat.st_size);
|
||||||
|
if (!buf) err(EX_OSERR, "malloc");
|
||||||
|
|
||||||
|
rewind(file);
|
||||||
|
*len = fread(buf, 1, stat.st_size, file);
|
||||||
|
if (ferror(file)) err(EX_IOERR, "fread");
|
||||||
|
|
||||||
|
return buf;
|
||||||
|
}
|
||||||
|
|
||||||
|
void ircConfig(bool insecure, FILE *cert, FILE *priv) {
|
||||||
struct tls_config *config = tls_config_new();
|
struct tls_config *config = tls_config_new();
|
||||||
if (!config) errx(EX_SOFTWARE, "tls_config_new");
|
if (!config) errx(EX_SOFTWARE, "tls_config_new");
|
||||||
|
|
||||||
|
@ -49,13 +65,28 @@ void ircConfig(bool insecure, const char *cert, const char *priv) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cert) {
|
if (cert) {
|
||||||
error = tls_config_set_keypair_file(config, cert, (priv ? priv : cert));
|
size_t len;
|
||||||
|
byte *buf = readFile(&len, cert);
|
||||||
|
error = tls_config_set_cert_mem(config, buf, len);
|
||||||
if (error) {
|
if (error) {
|
||||||
errx(
|
errx(
|
||||||
EX_SOFTWARE, "tls_config_set_keypair_file: %s",
|
EX_CONFIG, "tls_config_set_cert_mem: %s",
|
||||||
tls_config_error(config)
|
tls_config_error(config)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
if (priv) {
|
||||||
|
free(buf);
|
||||||
|
buf = readFile(&len, priv);
|
||||||
|
}
|
||||||
|
error = tls_config_set_key_mem(config, buf, len);
|
||||||
|
if (error) {
|
||||||
|
errx(
|
||||||
|
EX_CONFIG, "tls_config_set_key_mem: %s",
|
||||||
|
tls_config_error(config)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
explicit_bzero(buf, len);
|
||||||
|
free(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
client = tls_client();
|
client = tls_client();
|
||||||
|
|
Loading…
Reference in New Issue