aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2002-08-24 08:24:30 +0000
committerRoger Dingledine <arma@torproject.org>2002-08-24 08:24:30 +0000
commit26587827b2f321e56c349f5b5c86813947b5a984 (patch)
treee1ec8cda5cf0f6640354101ba869827fe1812c64 /src
parent39423023af7a13eff3263c59c7856c5cefbf2484 (diff)
downloadtor-26587827b2f321e56c349f5b5c86813947b5a984.tar
tor-26587827b2f321e56c349f5b5c86813947b5a984.tar.gz
we now encrypt the entire cell on the link, not just the header
previously padding cells, etc were distinguishable because their body was all zero's svn:r84
Diffstat (limited to 'src')
-rw-r--r--src/or/connection.c16
-rw-r--r--src/or/or.h2
2 files changed, 9 insertions, 9 deletions
diff --git a/src/or/connection.c b/src/or/connection.c
index 6b5ccc4d1..6b9c67c26 100644
--- a/src/or/connection.c
+++ b/src/or/connection.c
@@ -495,15 +495,15 @@ int connection_send_destroy(aci_t aci, connection_t *conn) {
int connection_write_cell_to_buf(cell_t *cellp, connection_t *conn) {
- if(connection_encrypt_cell_header(cellp,conn)<0) {
+ if(connection_encrypt_cell(cellp,conn)<0) {
return -1;
}
return connection_write_to_buf((char *)cellp, sizeof(cell_t), conn);
}
-int connection_encrypt_cell_header(cell_t *cellp, connection_t *conn) {
- char newheader[8];
+int connection_encrypt_cell(cell_t *cellp, connection_t *conn) {
+ cell_t newcell;
#if 0
int x;
char *px;
@@ -516,8 +516,8 @@ int connection_encrypt_cell_header(cell_t *cellp, connection_t *conn) {
printf("\n");
#endif
- if(crypto_cipher_encrypt(conn->f_crypto, (char *)cellp, 8, newheader)) {
- log(LOG_ERR,"Could not encrypt data for connection %s:%u.",conn->address,conn->port);
+ if(crypto_cipher_encrypt(conn->f_crypto, (char *)cellp, sizeof(cell_t), &newcell)) {
+ log(LOG_ERR,"Could not encrypt cell for connection %s:%u.",conn->address,conn->port);
return -1;
}
#if 0
@@ -528,7 +528,7 @@ int connection_encrypt_cell_header(cell_t *cellp, connection_t *conn) {
printf("\n");
#endif
- memcpy(cellp,newheader,8);
+ memcpy(cellp,&newcell,sizeof(cell_t));
return 0;
}
@@ -697,7 +697,7 @@ int connection_process_cell_from_inbuf(connection_t *conn) {
printf("\n");
#endif
/* decrypt */
- if(crypto_cipher_decrypt(conn->b_crypto,crypted,8,(unsigned char *)outbuf)) {
+ if(crypto_cipher_decrypt(conn->b_crypto,crypted,sizeof(cell_t),(unsigned char *)outbuf)) {
log(LOG_ERR,"connection_process_cell_from_inbuf(): Decryption failed, dropping.");
return connection_process_inbuf(conn); /* process the remainder of the buffer */
}
@@ -711,7 +711,7 @@ int connection_process_cell_from_inbuf(connection_t *conn) {
#endif
/* copy the rest of the cell */
- memcpy((char *)outbuf+8, (char *)crypted+8, sizeof(cell_t)-8);
+// memcpy((char *)outbuf+8, (char *)crypted+8, sizeof(cell_t)-8);
cellp = (cell_t *)outbuf;
// log(LOG_DEBUG,"connection_process_cell_from_inbuf(): Decrypted cell is of type %u (ACI %u).",cellp->command,cellp->aci);
command_process_cell(cellp, conn);
diff --git a/src/or/or.h b/src/or/or.h
index 1b39d57ed..42fd51098 100644
--- a/src/or/or.h
+++ b/src/or/or.h
@@ -426,7 +426,7 @@ int connection_speaks_cells(connection_t *conn);
int connection_state_is_open(connection_t *conn);
int connection_send_destroy(aci_t aci, connection_t *conn);
-int connection_encrypt_cell_header(cell_t *cellp, connection_t *conn);
+int connection_encrypt_cell(cell_t *cellp, connection_t *conn);
int connection_write_cell_to_buf(cell_t *cellp, connection_t *conn);
int connection_process_inbuf(connection_t *conn);