1
1

pcap: Reformat ssh_pcap_context_write()

Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Daiki Ueno <dueno@redhat.com>
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Этот коммит содержится в:
Jakub Jelen 2018-11-27 12:55:49 +01:00 коммит произвёл Andreas Schneider
родитель 1be9618f4e
Коммит fff2e85ab2

Просмотреть файл

@ -353,20 +353,28 @@ static int ssh_pcap_context_connect(ssh_pcap_context ctx){
* @returns SSH_OK write is successful * @returns SSH_OK write is successful
* @returns SSH_ERROR an error happened. * @returns SSH_ERROR an error happened.
*/ */
int ssh_pcap_context_write(ssh_pcap_context ctx,enum ssh_pcap_direction direction int ssh_pcap_context_write(ssh_pcap_context ctx,
, void *data, uint32_t len, uint32_t origlen){ enum ssh_pcap_direction direction,
ssh_buffer ip; void *data,
int rc; uint32_t len,
if(ctx==NULL || ctx->file ==NULL) uint32_t origlen)
return SSH_ERROR; {
if(ctx->connected==0) ssh_buffer ip;
if(ssh_pcap_context_connect(ctx)==SSH_ERROR) int rc;
return SSH_ERROR;
ip=ssh_buffer_new(); if (ctx == NULL || ctx->file == NULL) {
if(ip==NULL){ return SSH_ERROR;
ssh_set_error_oom(ctx->session); }
return SSH_ERROR; if (ctx->connected == 0) {
} if (ssh_pcap_context_connect(ctx) == SSH_ERROR) {
return SSH_ERROR;
}
}
ip = ssh_buffer_new();
if (ip == NULL) {
ssh_set_error_oom(ctx->session);
return SSH_ERROR;
}
/* build an IP packet */ /* build an IP packet */
rc = ssh_buffer_pack(ip, rc = ssh_buffer_pack(ip,
@ -380,75 +388,75 @@ int ssh_pcap_context_write(ssh_pcap_context ctx,enum ssh_pcap_direction directio
6, /* protocol TCP=6 */ 6, /* protocol TCP=6 */
0); /* checksum */ 0); /* checksum */
ctx->file->ipsequence++; ctx->file->ipsequence++;
if (rc != SSH_OK){ if (rc != SSH_OK){
goto error; goto error;
} }
if(direction==SSH_PCAP_DIR_OUT){ if (direction == SSH_PCAP_DIR_OUT) {
rc = ssh_buffer_add_u32(ip,ctx->ipsource); rc = ssh_buffer_add_u32(ip, ctx->ipsource);
if (rc < 0) { if (rc < 0) {
goto error; goto error;
} }
rc = ssh_buffer_add_u32(ip,ctx->ipdest); rc = ssh_buffer_add_u32(ip, ctx->ipdest);
if (rc < 0) { if (rc < 0) {
goto error; goto error;
} }
} else { } else {
rc = ssh_buffer_add_u32(ip,ctx->ipdest); rc = ssh_buffer_add_u32(ip, ctx->ipdest);
if (rc < 0) { if (rc < 0) {
goto error; goto error;
} }
rc = ssh_buffer_add_u32(ip,ctx->ipsource); rc = ssh_buffer_add_u32(ip, ctx->ipsource);
if (rc < 0) { if (rc < 0) {
goto error; goto error;
} }
} }
/* TCP */ /* TCP */
if(direction==SSH_PCAP_DIR_OUT){ if (direction == SSH_PCAP_DIR_OUT) {
rc = ssh_buffer_add_u16(ip,ctx->portsource); rc = ssh_buffer_add_u16(ip, ctx->portsource);
if (rc < 0) { if (rc < 0) {
goto error; goto error;
} }
rc = ssh_buffer_add_u16(ip,ctx->portdest); rc = ssh_buffer_add_u16(ip, ctx->portdest);
if (rc < 0) { if (rc < 0) {
goto error; goto error;
} }
} else { } else {
rc = ssh_buffer_add_u16(ip,ctx->portdest); rc = ssh_buffer_add_u16(ip, ctx->portdest);
if (rc < 0) { if (rc < 0) {
goto error; goto error;
} }
rc = ssh_buffer_add_u16(ip,ctx->portsource); rc = ssh_buffer_add_u16(ip, ctx->portsource);
if (rc < 0) { if (rc < 0) {
goto error; goto error;
} }
} }
/* sequence number */ /* sequence number */
if(direction==SSH_PCAP_DIR_OUT){ if (direction == SSH_PCAP_DIR_OUT) {
rc = ssh_buffer_pack(ip, "d", ctx->outsequence); rc = ssh_buffer_pack(ip, "d", ctx->outsequence);
if (rc != SSH_OK) { if (rc != SSH_OK) {
goto error; goto error;
} }
ctx->outsequence+=origlen; ctx->outsequence += origlen;
} else { } else {
rc = ssh_buffer_pack(ip, "d", ctx->insequence); rc = ssh_buffer_pack(ip, "d", ctx->insequence);
if (rc != SSH_OK) { if (rc != SSH_OK) {
goto error; goto error;
} }
ctx->insequence+=origlen; ctx->insequence += origlen;
} }
/* ack number */ /* ack number */
if(direction==SSH_PCAP_DIR_OUT){ if (direction == SSH_PCAP_DIR_OUT) {
rc = ssh_buffer_pack(ip, "d", ctx->insequence); rc = ssh_buffer_pack(ip, "d", ctx->insequence);
if (rc != SSH_OK) { if (rc != SSH_OK) {
goto error; goto error;
} }
} else { } else {
rc = ssh_buffer_pack(ip, "d", ctx->outsequence); rc = ssh_buffer_pack(ip, "d", ctx->outsequence);
if (rc != SSH_OK) { if (rc != SSH_OK) {
goto error; goto error;
} }
} }
rc = ssh_buffer_pack(ip, rc = ssh_buffer_pack(ip,
"bbwwwP", "bbwwwP",
@ -461,10 +469,11 @@ int ssh_pcap_context_write(ssh_pcap_context ctx,enum ssh_pcap_direction directio
if (rc != SSH_OK) { if (rc != SSH_OK) {
goto error; goto error;
} }
rc=ssh_pcap_file_write_packet(ctx->file,ip,origlen + TCPIPHDR_LEN); rc = ssh_pcap_file_write_packet(ctx->file, ip, origlen + TCPIPHDR_LEN);
error: error:
ssh_buffer_free(ip); ssh_buffer_free(ip);
return rc; return rc;
} }
/** @brief sets the pcap file used to trace the session /** @brief sets the pcap file used to trace the session