2007-08-31 01:57:58 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* smtp.c
|
2007-08-27 01:12:17 +02:00
|
|
|
* smtp SMTP E-mail sender
|
2007-08-31 01:57:58 +02:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
|
|
|
*
|
|
|
|
* Heavily leveraged from uIP 1.0 which also has a BSD-like license:
|
2007-08-27 01:12:17 +02:00
|
|
|
*
|
|
|
|
* The Simple Mail Transfer Protocol (SMTP) as defined by RFC821 is
|
|
|
|
* the standard way of sending and transfering e-mail on the
|
|
|
|
* Internet. This simple example implementation is intended as an
|
|
|
|
* example of how to implement protocols in uIP, and is able to send
|
|
|
|
* out e-mail but has not been extensively tested.
|
|
|
|
*
|
2007-08-31 01:57:58 +02:00
|
|
|
* Author: Adam Dunkels <adam@dunkels.com>
|
|
|
|
* Copyright (c) 2004, Adam Dunkels.
|
|
|
|
* All rights reserved.
|
2007-08-27 01:12:17 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
2007-08-31 01:57:58 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <string.h>
|
2007-08-31 01:57:58 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <semaphore.h>
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
#include <net/uip/uip.h>
|
|
|
|
#include <net/uip/psock.h>
|
|
|
|
#include <net/uip/smtp.h>
|
|
|
|
|
|
|
|
#include "smtp-strings.h"
|
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
#define SMTP_INPUT_BUFFER_SIZE 512
|
2007-08-27 01:12:17 +02:00
|
|
|
|
|
|
|
#define ISO_nl 0x0a
|
|
|
|
#define ISO_cr 0x0d
|
|
|
|
|
|
|
|
#define ISO_period 0x2e
|
|
|
|
|
|
|
|
#define ISO_2 0x32
|
|
|
|
#define ISO_3 0x33
|
|
|
|
#define ISO_4 0x34
|
|
|
|
#define ISO_5 0x35
|
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
/* This structure represents the state of a single SMTP transaction */
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
struct smtp_state
|
2007-08-27 01:12:17 +02:00
|
|
|
{
|
2007-08-31 01:57:58 +02:00
|
|
|
uint8 state;
|
|
|
|
boolean connected;
|
|
|
|
sem_t sem;
|
|
|
|
struct psock psock;
|
|
|
|
uip_ipaddr_t smtpserver;
|
|
|
|
char *localhostname;
|
|
|
|
char *to;
|
|
|
|
char *cc;
|
|
|
|
char *from;
|
|
|
|
char *subject;
|
|
|
|
char *msg;
|
|
|
|
int msglen;
|
|
|
|
int sentlen;
|
|
|
|
int textlen;
|
|
|
|
int sendptr;
|
|
|
|
int result;
|
|
|
|
char buffer[SMTP_INPUT_BUFFER_SIZE];
|
|
|
|
};
|
|
|
|
|
|
|
|
static volatile struct smtp_state *gpsmtp = 0;
|
|
|
|
|
|
|
|
static void smtp_send_message(struct smtp_state *psmtp)
|
|
|
|
{
|
|
|
|
psock_readto(&psmtp->psock, ISO_nl);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
if (strncmp(psmtp->buffer, smtp_220, 3) != 0)
|
|
|
|
{
|
|
|
|
PSOCK_CLOSE(&psmtp->psock);
|
|
|
|
psmtp->result = 2;
|
|
|
|
return;
|
|
|
|
}
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_helo);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, psmtp->localhostname);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_crnl);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
psock_readto(&psmtp->psock, ISO_nl);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
if (psmtp->buffer[0] != ISO_2)
|
|
|
|
{
|
|
|
|
PSOCK_CLOSE(&psmtp->psock);
|
|
|
|
psmtp->result = 3;
|
|
|
|
return;
|
|
|
|
}
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_mail_from);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, psmtp->from);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_crnl);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
psock_readto(&psmtp->psock, ISO_nl);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
if (psmtp->buffer[0] != ISO_2)
|
|
|
|
{
|
|
|
|
PSOCK_CLOSE(&psmtp->psock);
|
|
|
|
psmtp->result = 3;
|
|
|
|
return;
|
|
|
|
}
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_rcpt_to);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, psmtp->to);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_crnl);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
psock_readto(&psmtp->psock, ISO_nl);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
if (psmtp->buffer[0] != ISO_2)
|
|
|
|
{
|
|
|
|
PSOCK_CLOSE(&psmtp->psock);
|
|
|
|
psmtp->result = 5;
|
|
|
|
return;
|
|
|
|
}
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
if (psmtp->cc != 0)
|
|
|
|
{
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_rcpt_to);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, psmtp->cc);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_crnl);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
psock_readto(&psmtp->psock, ISO_nl);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
if (psmtp->buffer[0] != ISO_2)
|
|
|
|
{
|
|
|
|
PSOCK_CLOSE(&psmtp->psock);
|
|
|
|
psmtp->result = 6;
|
|
|
|
return;
|
|
|
|
}
|
2007-08-27 01:12:17 +02:00
|
|
|
}
|
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_data);
|
|
|
|
|
|
|
|
psock_readto(&psmtp->psock, ISO_nl);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
if (psmtp->buffer[0] != ISO_3)
|
|
|
|
{
|
|
|
|
PSOCK_CLOSE(&psmtp->psock);
|
|
|
|
psmtp->result = 7;
|
|
|
|
return;
|
|
|
|
}
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_to);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, psmtp->to);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_crnl);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
if (psmtp->cc != 0)
|
|
|
|
{
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)psmtp->cc);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, psmtp->cc);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_crnl);
|
|
|
|
}
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_from);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, psmtp->from);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_crnl);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_subject);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, psmtp->subject);
|
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_crnl);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
psock_send(&psmtp->psock, psmtp->msg, psmtp->msglen);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_crnlperiodcrnl);
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
psock_readto(&psmtp->psock, ISO_nl);
|
|
|
|
if (psmtp->buffer[0] != ISO_2)
|
|
|
|
{
|
|
|
|
PSOCK_CLOSE(&psmtp->psock);
|
|
|
|
psmtp->result = 8;
|
|
|
|
return;
|
|
|
|
}
|
2007-08-27 01:12:17 +02:00
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
PSOCK_SEND_STR(&psmtp->psock, (char *)smtp_quit);
|
|
|
|
psmtp->result = 0;
|
2007-08-27 01:12:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* This function is called by the UIP interrupt handling logic whenevent an
|
|
|
|
* event of interest occurs.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void uip_interrupt_event(void)
|
|
|
|
{
|
2007-08-31 01:57:58 +02:00
|
|
|
if (gpsmtp)
|
|
|
|
{
|
|
|
|
if (uip_closed())
|
|
|
|
{
|
|
|
|
gpsmtp->connected = FALSE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uip_aborted() || uip_timedout())
|
|
|
|
{
|
|
|
|
gpsmtp->connected = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
sem_post((sem_t*)&gpsmtp->sem);
|
|
|
|
}
|
2007-08-27 01:12:17 +02:00
|
|
|
}
|
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
/* Specificy an SMTP server and hostname.
|
2007-08-27 01:12:17 +02:00
|
|
|
*
|
|
|
|
* This function is used to configure the SMTP module with an SMTP
|
|
|
|
* server and the hostname of the host.
|
|
|
|
*
|
2007-08-31 01:57:58 +02:00
|
|
|
* lhostname The hostname of the uIP host.
|
2007-08-27 01:12:17 +02:00
|
|
|
*
|
2007-08-31 01:57:58 +02:00
|
|
|
* server A pointer to a 4-byte array representing the IP
|
2007-08-27 01:12:17 +02:00
|
|
|
* address of the SMTP server to be configured.
|
|
|
|
*/
|
2007-08-31 01:57:58 +02:00
|
|
|
|
|
|
|
void smtp_configure(void *handle, char *lhostname, void *server)
|
2007-08-27 01:12:17 +02:00
|
|
|
{
|
2007-08-31 01:57:58 +02:00
|
|
|
struct smtp_state *psmtp = (struct smtp_state *)handle;
|
|
|
|
psmtp->localhostname = lhostname;
|
|
|
|
uip_ipaddr_copy(psmtp->smtpserver, server);
|
2007-08-27 01:12:17 +02:00
|
|
|
}
|
2007-08-31 01:57:58 +02:00
|
|
|
|
|
|
|
/* Send an e-mail.
|
2007-08-27 01:12:17 +02:00
|
|
|
*
|
2007-08-31 01:57:58 +02:00
|
|
|
* to The e-mail address of the receiver of the e-mail.
|
|
|
|
* cc The e-mail address of the CC: receivers of the e-mail.
|
|
|
|
* from The e-mail address of the sender of the e-mail.
|
|
|
|
* subject The subject of the e-mail.
|
|
|
|
* msg The actual e-mail message.
|
|
|
|
* msglen The length of the e-mail message.
|
2007-08-27 01:12:17 +02:00
|
|
|
*/
|
2007-08-31 01:57:58 +02:00
|
|
|
|
|
|
|
int smtp_send(void *handle, char *to, char *cc, char *from, char *subject, char *msg, int msglen)
|
2007-08-27 01:12:17 +02:00
|
|
|
{
|
2007-08-31 01:57:58 +02:00
|
|
|
struct smtp_state *psmtp = (struct smtp_state *)handle;
|
2007-08-27 01:12:17 +02:00
|
|
|
struct uip_conn *conn;
|
|
|
|
|
2007-08-31 01:57:58 +02:00
|
|
|
conn = uip_connect(&psmtp->smtpserver, HTONS(25));
|
|
|
|
if (conn == NULL)
|
|
|
|
{
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
psmtp->connected = TRUE;
|
|
|
|
psmtp->to = to;
|
|
|
|
psmtp->cc = cc;
|
|
|
|
psmtp->from = from;
|
|
|
|
psmtp->subject = subject;
|
|
|
|
psmtp->msg = msg;
|
|
|
|
psmtp->msglen = msglen;
|
|
|
|
psmtp->result = OK;
|
|
|
|
|
|
|
|
gpsmtp = psmtp;
|
|
|
|
psock_init(&psmtp->psock, psmtp->buffer, SMTP_INPUT_BUFFER_SIZE);
|
|
|
|
|
|
|
|
/* And wait for the the socket to be connected */
|
|
|
|
sem_wait(&psmtp->sem);
|
|
|
|
gpsmtp = 0;
|
|
|
|
|
|
|
|
/* Was an error reported by interrupt handler? */
|
|
|
|
if (psmtp->result == OK )
|
|
|
|
{
|
|
|
|
/* No... Send the message */
|
|
|
|
smtp_send_message(psmtp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return psmtp->result;
|
2007-08-27 01:12:17 +02:00
|
|
|
}
|
2007-08-31 01:57:58 +02:00
|
|
|
|
|
|
|
void *smtp_open(void)
|
2007-08-27 01:12:17 +02:00
|
|
|
{
|
2007-08-31 01:57:58 +02:00
|
|
|
/* Allocate the handle */
|
|
|
|
|
|
|
|
struct smtp_state *psmtp = (struct smtp_state *)malloc(sizeof(struct smtp_state));
|
|
|
|
if (psmtp)
|
|
|
|
{
|
|
|
|
/* Initialize the handle */
|
|
|
|
|
|
|
|
memset(psmtp, 0, sizeof(struct smtp_state));
|
|
|
|
(void)sem_init(&psmtp->sem, 0, 0);
|
|
|
|
}
|
|
|
|
return (void*)psmtp;
|
2007-08-27 01:12:17 +02:00
|
|
|
}
|
2007-08-31 01:57:58 +02:00
|
|
|
|
|
|
|
void smtp_close(void *handle)
|
|
|
|
{
|
|
|
|
struct smtp_state *psmtp = (struct smtp_state *)handle;
|
|
|
|
if (psmtp)
|
|
|
|
{
|
|
|
|
sem_destroy(&psmtp->sem);
|
|
|
|
free(psmtp);
|
|
|
|
}
|
|
|
|
}
|