aboutsummaryrefslogtreecommitdiff
path: root/ostp.d/net/otd_auth.c
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-09-26 14:57:08 -0400
committerIan Moffett <ian@osmora.org>2024-09-26 14:57:08 -0400
commitd382f150dcd1a4317a62c5af2412bd304b3bfee7 (patch)
tree9d2e2391d655fd559b92381c507f1581685a45d3 /ostp.d/net/otd_auth.c
parent7e6fb4b9f82dc4c6f7815a3fc4c60f6084928722 (diff)
project: Introduce actual connections
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'ostp.d/net/otd_auth.c')
-rw-r--r--ostp.d/net/otd_auth.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/ostp.d/net/otd_auth.c b/ostp.d/net/otd_auth.c
index 3511e0c..6e757ae 100644
--- a/ostp.d/net/otd_auth.c
+++ b/ostp.d/net/otd_auth.c
@@ -27,9 +27,12 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
+#include <arpa/inet.h>
#include <net/auth.h>
+#include <net/param.h>
#include <net/stpsession.h>
#include <crypto/ecdh.h>
+#include <otconfig.h>
#include <stdio.h>
#define KEY_BYTE_WIDTH 32
@@ -47,6 +50,17 @@ log_pubkey(uint8_t pubkey[KEY_BYTE_WIDTH])
printf("\n");
}
+static void
+send_motd(int client_fd, const unsigned char *session_key)
+{
+ char motd[] = MOTD;
+
+ printf("Sending MOTD...\n");
+ if (send_frame(client_fd, motd, sizeof(motd), session_key) < 0) {
+ printf("Failed to session MOTD\n");
+ }
+}
+
/*
* Verify the session request packet and handle
* the rest.
@@ -58,6 +72,8 @@ int
handle_srq(int client_fd, struct session_request *srq)
{
struct x25519_keypair keypair;
+ unsigned char *session_key;
+ int error;
printf("Got public key from peer: \n");
log_pubkey(srq->pubkey);
@@ -68,5 +84,26 @@ handle_srq(int client_fd, struct session_request *srq)
return -1;
}
+ /* Send back our our public key */
+ error = send(client_fd, keypair.pubkey, keypair.pubkey_len, 0);
+ if (error < 0) {
+ perror("Failed to send public key");
+ return error;
+ }
+
+ printf("Deriving session key...\n");
+ error = gen_session_key(keypair.privkey, srq->pubkey, &session_key);
+ if (error < 0) {
+ return error;
+ }
+
+ /* Handle any requested session parameters */
+ if ((error = negotiate_spw(client_fd, session_key)) < 0) {
+ free_session_key(session_key);
+ return error;
+ }
+
+ send_motd(client_fd, session_key);
+ free_session_key(session_key);
return 0;
}