Updated warhammer example, and fixed a bug on FreeBSD

This commit is contained in:
mpc
2004-07-31 23:31:02 +00:00
committed by zzz
parent bec685682b
commit e97e834a5b
5 changed files with 64 additions and 23 deletions

View File

@ -14,6 +14,7 @@ CC = C:\Dev-Cpp\bin\gcc
CFLAGS = -g -O2 -pipe -std=c99 -Wall CFLAGS = -g -O2 -pipe -std=c99 -Wall
CFLAGS += -I../inc -L../lib CFLAGS += -I../inc -L../lib
CFLAGS += -DWINSOCK
LIBS = -lsam -lwsock32 LIBS = -lsam -lwsock32
# #

View File

@ -34,15 +34,17 @@
* Use only with the utmost courtesy. * Use only with the utmost courtesy.
*/ */
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include "sam.h" #include "sam.h"
static void dgramback(sam_pubkey_t dest, void *data, size_t size); /*
static void diedback(void); * LibSAM callbacks
*/
static void dgramback(const sam_sess_t *session, sam_pubkey_t dest, void *data,
size_t size);
static void diedback(sam_sess_t *session);
static void logback(char *s); static void logback(char *s);
static void namingback(char *name, sam_pubkey_t pubkey, samerr_t result); static void namingback(char *name, sam_pubkey_t pubkey, samerr_t result);
@ -61,47 +63,65 @@ int main(int argc, char* argv[])
sam_logback = &logback; sam_logback = &logback;
sam_namingback = &namingback; sam_namingback = &namingback;
/* a tunnel length of 2 is the default - adjust to your preference vv */ /*
samerr_t rc = sam_connect("localhost", 7656, "TRANSIENT", SAM_DGRAM, 2); * This tool would be more destructive if multiple session were used, but
* they aren't - at least for now.
*/
sam_sess_t *session = NULL;
session = sam_session_init(session);
/* a tunnel length of 2 is the default - adjust to your preference */
samerr_t rc = sam_connect(session, "localhost", 7656, "TRANSIENT",
SAM_DGRAM, 2);
if (rc != SAM_OK) { if (rc != SAM_OK) {
fprintf(stderr, "SAM connection failed: %s\n", sam_strerror(rc)); fprintf(stderr, "SAM connection failed: %s\n", sam_strerror(rc));
exit(1); sam_session_free(&session);
return 1;
} }
/*
* Check whether they've supplied a name or a base 64 destination
*
* Note that this is a hack. Jrandom says that once certificates are added,
* the length could be different depending on the certificate.
*/
if (strlen(argv[1]) == 516) { if (strlen(argv[1]) == 516) {
memcpy(dest, argv[1], SAM_PUBKEY_LEN); memcpy(dest, argv[1], SAM_PUBKEY_LEN);
gotdest = true; gotdest = true;
} }
else else
sam_naming_lookup(argv[1]); sam_naming_lookup(session, argv[1]);
while (!gotdest) while (!gotdest)
sam_read_buffer(); sam_read_buffer(session);
char data[SAM_DGRAM_PAYLOAD_MAX]; char data[SAM_DGRAM_PAYLOAD_MAX];
memset(data, '#', SAM_DGRAM_PAYLOAD_MAX); memset(data, '#', SAM_DGRAM_PAYLOAD_MAX);
size_t sentbytes = 0; size_t sentbytes = 0;
while (true) { while (true) {
rc = sam_dgram_send(dest, data, SAM_DGRAM_PAYLOAD_MAX); rc = sam_dgram_send(session, dest, data, SAM_DGRAM_PAYLOAD_MAX);
if (rc != SAM_OK) { if (rc != SAM_OK) {
fprintf(stderr, "sam_dgram_send() failed: %s\n", sam_strerror(rc)); fprintf(stderr, "sam_dgram_send() failed: %s\n", sam_strerror(rc));
sam_session_free(&session);
return 1; return 1;
} }
sentbytes += SAM_DGRAM_PAYLOAD_MAX; sentbytes += SAM_DGRAM_PAYLOAD_MAX;
printf("Bombs away! (%u kbytes sent so far)\n", sentbytes / 1024); printf("Bombs away! (%u kbytes sent so far)\n", sentbytes / 1024);
sam_read_buffer(); sam_read_buffer(session);
} }
sam_session_free(&session);
return 0; return 0;
} }
static void dgramback(sam_pubkey_t dest, void *data, size_t size) static void dgramback(const sam_sess_t *session, sam_pubkey_t dest, void *data,
size_t size)
{ {
puts("Received a datagram (ignored)"); puts("Received a datagram (ignored)");
free(data); free(data);
} }
static void diedback(void) static void diedback(sam_sess_t *session)
{ {
fprintf(stderr, "Lost SAM connection!\n"); fprintf(stderr, "Lost SAM connection!\n");
exit(1); exit(1);

View File

@ -112,11 +112,6 @@
/* /*
* Platform-dependent variable types * Platform-dependent variable types
*/ */
#ifdef WINSOCK
typedef SOCKET socket_t;
#else
typedef int socket_t;
#endif
#ifdef NO_SSIZE_T #ifdef NO_SSIZE_T
typedef signed long ssize_t; typedef signed long ssize_t;
#endif #endif

View File

@ -66,6 +66,12 @@ typedef unsigned int uint_t;
typedef unsigned long ulong_t; typedef unsigned long ulong_t;
typedef unsigned short ushort_t; typedef unsigned short ushort_t;
#ifdef WINSOCK
typedef SOCKET socket_t;
#else
typedef int socket_t;
#endif
typedef enum {SAM_STREAM, SAM_DGRAM, SAM_RAW} sam_conn_t; /* SAM connection */ typedef enum {SAM_STREAM, SAM_DGRAM, SAM_RAW} sam_conn_t; /* SAM connection */
typedef char sam_pubkey_t[SAM_PUBKEY_LEN]; /* base 64 public key */ typedef char sam_pubkey_t[SAM_PUBKEY_LEN]; /* base 64 public key */

View File

@ -85,6 +85,7 @@ void (*sam_statusback)(const sam_sess_t *session, sam_sid_t stream_id,
*/ */
bool sam_close(sam_sess_t *session) bool sam_close(sam_sess_t *session)
{ {
assert(session != NULL);
if (!session->connected) if (!session->connected)
return true; return true;
@ -127,6 +128,7 @@ bool sam_close(sam_sess_t *session)
samerr_t sam_connect(sam_sess_t *session, const char *samhost, uint16_t samport, samerr_t sam_connect(sam_sess_t *session, const char *samhost, uint16_t samport,
const char *destname, sam_conn_t style, uint_t tunneldepth) const char *destname, sam_conn_t style, uint_t tunneldepth)
{ {
assert(session != NULL);
samerr_t rc; samerr_t rc;
if (style == SAM_STREAM) { if (style == SAM_STREAM) {
@ -190,13 +192,14 @@ samerr_t sam_connect(sam_sess_t *session, const char *samhost, uint16_t samport,
samerr_t sam_dgram_send(sam_sess_t *session, const sam_pubkey_t dest, samerr_t sam_dgram_send(sam_sess_t *session, const sam_pubkey_t dest,
const void *data, size_t size) const void *data, size_t size)
{ {
assert(session != NULL);
char cmd[SAM_PKCMD_LEN]; char cmd[SAM_PKCMD_LEN];
if (size < 1 || size > SAM_DGRAM_PAYLOAD_MAX) { if (size < 1 || size > SAM_DGRAM_PAYLOAD_MAX) {
#ifdef NO_Z_FORMAT #ifdef NO_Z_FORMAT
SAMLOG("Invalid data send size (%u bytes)", size); SAMLOG("Invalid data send size (%u bytes)", size);
#else #else
SAMLOG("Invalid data send size (%dz bytes)", size); SAMLOG("Invalid data send size (%zu bytes)", size);
#endif #endif
return SAM_TOO_BIG; return SAM_TOO_BIG;
} }
@ -204,7 +207,7 @@ samerr_t sam_dgram_send(sam_sess_t *session, const sam_pubkey_t dest,
snprintf(cmd, sizeof cmd, "DATAGRAM SEND DESTINATION=%s SIZE=%u\n", snprintf(cmd, sizeof cmd, "DATAGRAM SEND DESTINATION=%s SIZE=%u\n",
dest, size); dest, size);
#else #else
snprintf(cmd, sizeof cmd, "DATAGRAM SEND DESTINATION=%s SIZE=%dz\n", snprintf(cmd, sizeof cmd, "DATAGRAM SEND DESTINATION=%s SIZE=%zu\n",
dest, size); dest, size);
#endif #endif
sam_write(session, cmd, strlen(cmd)); sam_write(session, cmd, strlen(cmd));
@ -221,6 +224,7 @@ samerr_t sam_dgram_send(sam_sess_t *session, const sam_pubkey_t dest,
*/ */
static bool sam_hello(sam_sess_t *session) static bool sam_hello(sam_sess_t *session)
{ {
assert(session != NULL);
#define SAM_HELLO_CMD "HELLO VERSION MIN=1.0 MAX=1.0\n" #define SAM_HELLO_CMD "HELLO VERSION MIN=1.0 MAX=1.0\n"
#define SAM_HELLO_REPLY "HELLO REPLY RESULT=OK VERSION=1.0" #define SAM_HELLO_REPLY "HELLO REPLY RESULT=OK VERSION=1.0"
char reply[SAM_REPLY_LEN]; char reply[SAM_REPLY_LEN];
@ -259,6 +263,7 @@ static void sam_log(const char *format, ...)
*/ */
void sam_naming_lookup(sam_sess_t *session, const char *name) void sam_naming_lookup(sam_sess_t *session, const char *name)
{ {
assert(session != NULL);
char cmd[SAM_CMD_LEN]; char cmd[SAM_CMD_LEN];
snprintf(cmd, sizeof cmd, "NAMING LOOKUP NAME=%s\n", name); snprintf(cmd, sizeof cmd, "NAMING LOOKUP NAME=%s\n", name);
@ -274,6 +279,7 @@ void sam_naming_lookup(sam_sess_t *session, const char *name)
*/ */
static void sam_parse(sam_sess_t *session, char *s) static void sam_parse(sam_sess_t *session, char *s)
{ {
assert(session != NULL);
#define SAM_DGRAM_RECEIVED_REPLY "DATAGRAM RECEIVED" #define SAM_DGRAM_RECEIVED_REPLY "DATAGRAM RECEIVED"
#define SAM_NAMING_REPLY "NAMING REPLY" #define SAM_NAMING_REPLY "NAMING REPLY"
#define SAM_NAMING_REPLY_OK "NAMING REPLY RESULT=OK" #define SAM_NAMING_REPLY_OK "NAMING REPLY RESULT=OK"
@ -501,6 +507,7 @@ static void sam_parse(sam_sess_t *session, char *s)
*/ */
bool sam_read_buffer(sam_sess_t *session) bool sam_read_buffer(sam_sess_t *session)
{ {
assert(session != NULL);
bool read_something = false; bool read_something = false;
char reply[SAM_REPLY_LEN]; char reply[SAM_REPLY_LEN];
@ -531,6 +538,7 @@ bool sam_read_buffer(sam_sess_t *session)
*/ */
static ssize_t sam_read1(sam_sess_t *session, char *buf, size_t n) static ssize_t sam_read1(sam_sess_t *session, char *buf, size_t n)
{ {
assert(session != NULL);
size_t nleft; size_t nleft;
ssize_t nread; ssize_t nread;
char *p; char *p;
@ -598,6 +606,7 @@ static ssize_t sam_read1(sam_sess_t *session, char *buf, size_t n)
*/ */
static ssize_t sam_read2(sam_sess_t *session, void *buf, size_t n) static ssize_t sam_read2(sam_sess_t *session, void *buf, size_t n)
{ {
assert(session != NULL);
size_t nleft; size_t nleft;
ssize_t nread; ssize_t nread;
void *p; void *p;
@ -649,6 +658,7 @@ static ssize_t sam_read2(sam_sess_t *session, void *buf, size_t n)
*/ */
static bool sam_readable(sam_sess_t *session) static bool sam_readable(sam_sess_t *session)
{ {
assert(session != NULL);
fd_set rset; /* set of readable descriptors */ fd_set rset; /* set of readable descriptors */
struct timeval tv; struct timeval tv;
int rc; int rc;
@ -691,6 +701,7 @@ static bool sam_readable(sam_sess_t *session)
void sam_sendq_add(sam_sess_t *session, sam_sid_t stream_id, void sam_sendq_add(sam_sess_t *session, sam_sid_t stream_id,
sam_sendq_t **sendq, const void *data, size_t dsize) sam_sendq_t **sendq, const void *data, size_t dsize)
{ {
assert(session != NULL);
assert(dsize >= 0); assert(dsize >= 0);
if (dsize == 0) { if (dsize == 0) {
SAMLOGS("dsize is 0 - doing nothing"); SAMLOGS("dsize is 0 - doing nothing");
@ -754,6 +765,7 @@ static sam_sendq_t *sam_sendq_create()
void sam_sendq_flush(sam_sess_t *session, sam_sid_t stream_id, void sam_sendq_flush(sam_sess_t *session, sam_sid_t stream_id,
sam_sendq_t **sendq) sam_sendq_t **sendq)
{ {
assert(session != NULL);
sam_stream_send(session, stream_id, (*sendq)->data, (*sendq)->size); sam_stream_send(session, stream_id, (*sendq)->data, (*sendq)->size);
/* we now free it in case they aren't going to use it anymore */ /* we now free it in case they aren't going to use it anymore */
free((*sendq)->data); free((*sendq)->data);
@ -786,7 +798,8 @@ sam_sess_t *sam_session_init(sam_sess_t *session)
*/ */
void sam_session_free(sam_sess_t **session) void sam_session_free(sam_sess_t **session)
{ {
free(session); assert(*session != NULL);
free(*session);
*session = NULL; *session = NULL;
} }
@ -803,6 +816,7 @@ void sam_session_free(sam_sess_t **session)
static samerr_t sam_session_create(sam_sess_t *session, const char *destname, static samerr_t sam_session_create(sam_sess_t *session, const char *destname,
sam_conn_t style, uint_t tunneldepth) sam_conn_t style, uint_t tunneldepth)
{ {
assert(session != NULL);
#define SAM_SESSTATUS_REPLY_OK "SESSION STATUS RESULT=OK" #define SAM_SESSTATUS_REPLY_OK "SESSION STATUS RESULT=OK"
#define SAM_SESSTATUS_REPLY_DD "SESSION STATUS RESULT=DUPLICATED_DEST" #define SAM_SESSTATUS_REPLY_DD "SESSION STATUS RESULT=DUPLICATED_DEST"
#define SAM_SESSTATUS_REPLY_I2E "SESSION STATUS RESULT=I2P_ERROR" #define SAM_SESSTATUS_REPLY_I2E "SESSION STATUS RESULT=I2P_ERROR"
@ -855,6 +869,7 @@ static samerr_t sam_session_create(sam_sess_t *session, const char *destname,
*/ */
bool sam_socket_connect(sam_sess_t *session, const char *host, uint16_t port) bool sam_socket_connect(sam_sess_t *session, const char *host, uint16_t port)
{ {
assert(session != NULL);
struct sockaddr_in hostaddr; struct sockaddr_in hostaddr;
int rc; int rc;
char ipaddr[INET_ADDRSTRLEN]; char ipaddr[INET_ADDRSTRLEN];
@ -965,6 +980,7 @@ retry:
*/ */
void sam_stream_close(sam_sess_t *session, sam_sid_t stream_id) void sam_stream_close(sam_sess_t *session, sam_sid_t stream_id)
{ {
assert(session != NULL);
char cmd[SAM_CMD_LEN]; char cmd[SAM_CMD_LEN];
#ifdef FAST32_IS_LONG #ifdef FAST32_IS_LONG
@ -986,6 +1002,7 @@ void sam_stream_close(sam_sess_t *session, sam_sid_t stream_id)
*/ */
sam_sid_t sam_stream_connect(sam_sess_t *session, const sam_pubkey_t dest) sam_sid_t sam_stream_connect(sam_sess_t *session, const sam_pubkey_t dest)
{ {
assert(session != NULL);
char cmd[SAM_PKCMD_LEN]; char cmd[SAM_PKCMD_LEN];
session->prev_id++; /* increment the id for the connection */ session->prev_id++; /* increment the id for the connection */
@ -1013,6 +1030,7 @@ sam_sid_t sam_stream_connect(sam_sess_t *session, const sam_pubkey_t dest)
samerr_t sam_stream_send(sam_sess_t *session, sam_sid_t stream_id, samerr_t sam_stream_send(sam_sess_t *session, sam_sid_t stream_id,
const void *data, size_t size) const void *data, size_t size)
{ {
assert(session != NULL);
char cmd[SAM_CMD_LEN]; char cmd[SAM_CMD_LEN];
if (size < 1 || size > SAM_STREAM_PAYLOAD_MAX) { if (size < 1 || size > SAM_STREAM_PAYLOAD_MAX) {
@ -1020,7 +1038,7 @@ samerr_t sam_stream_send(sam_sess_t *session, sam_sid_t stream_id,
SAMLOG("Invalid data send size (%u bytes) for stream %d", SAMLOG("Invalid data send size (%u bytes) for stream %d",
size, stream_id); size, stream_id);
#else #else
SAMLOG("Invalid data send size (%dz bytes) for stream %d", SAMLOG("Invalid data send size (%zu bytes) for stream %d",
size, stream_id); size, stream_id);
#endif #endif
return SAM_TOO_BIG; return SAM_TOO_BIG;
@ -1034,7 +1052,7 @@ samerr_t sam_stream_send(sam_sess_t *session, sam_sid_t stream_id,
stream_id, size); stream_id, size);
#endif #endif
#else #else
snprintf(cmd, sizeof cmd, "STREAM SEND ID=%d SIZE=%dz\n", snprintf(cmd, sizeof cmd, "STREAM SEND ID=%d SIZE=%zu\n",
stream_id, size); stream_id, size);
#endif #endif
sam_write(session, cmd, strlen(cmd)); sam_write(session, cmd, strlen(cmd));
@ -1272,6 +1290,7 @@ const char *sam_winsock_strerror(int code)
*/ */
static ssize_t sam_write(sam_sess_t *session, const void *buf, size_t n) static ssize_t sam_write(sam_sess_t *session, const void *buf, size_t n)
{ {
assert(session != NULL);
size_t nleft; size_t nleft;
ssize_t nwritten; ssize_t nwritten;
const char *p; const char *p;