Fix some compiler warnings and make dma(8) compile clean on FreeBSD. Commit
[dragonfly.git] / libexec / dma / dma.h
1 /*
2  * Copyright (c) 2008 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Simon 'corecode' Schubert <corecode@fs.ei.tum.de> and
6  * Matthias Schmidt <matthias@dragonflybsd.org>.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  * 3. Neither the name of The DragonFly Project nor the names of its
19  *    contributors may be used to endorse or promote products derived
20  *    from this software without specific, prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
26  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
31  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  *
35  * $DragonFly: src/libexec/dma/dma.h,v 1.2 2008/02/03 11:06:17 matthias Exp $
36  */
37
38 #ifndef DMA_H
39 #define DMA_H
40
41 #ifdef HAVE_CRYPTO
42 #include <openssl/ssl.h>
43 #endif /* HAVE_CRYPTO */
44
45 #include <sys/queue.h>
46 #include <stdint.h>
47 #include <stdio.h>
48
49
50 #define VERSION "DragonFly Mail Agent 1.0"
51
52 #define BUF_SIZE        2048
53 #define MIN_RETRY       300             /* 5 minutes */
54 #define MAX_RETRY       (3*60*60)       /* retry at least every 3 hours */
55 #define MAX_TIMEOUT     (5*24*60*60)    /* give up after 5 days */
56 #define PATH_MAX        1024            /* Max path len */
57 #define CONF_PATH       "/etc/dma/dma.conf"     /* /etc/dma/dma.conf */
58 #define SMTP_PORT       25              /* default SMTP port */
59 #define CON_TIMEOUT     120             /* Connection timeout */
60
61 #define VIRTUAL         0x1             /* Support for address rewrites */
62 #define STARTTLS        0x2             /* StartTLS support */
63 #define SECURETRANS     0x4             /* SSL/TLS in general */
64 #define TLSINIT         0x8             /* Flag for TLS init phase */
65 #define DEFER           0x10            /* Defer mails */
66
67 struct stritem {
68         SLIST_ENTRY(stritem) next;
69         char *str;
70 };
71 SLIST_HEAD(strlist, stritem);
72
73 struct alias {
74         LIST_ENTRY(alias) next;
75         char *alias;
76         struct strlist dests;
77 };
78 LIST_HEAD(aliases, alias);
79
80 struct qitem {
81         LIST_ENTRY(qitem) next;
82         const char *sender;
83         char *addr;
84         char *queuefn;
85         char *queueid;
86         FILE *queuef;
87         off_t hdrlen;
88         int remote;
89 };
90 LIST_HEAD(queueh, qitem);
91
92 struct queue {
93         struct queueh queue;
94         uintmax_t id;
95         int mailfd;
96         char *tmpf;
97 };
98
99 struct config {
100         char *smarthost;
101         int port;
102         char *aliases;
103         char *spooldir;
104         char *virtualpath;
105         char *authpath;
106         char *certfile;
107         int features;
108 #ifdef HAVE_CRYPTO
109         SSL *ssl;
110 #endif /* HAVE_CRYPTO */
111 };
112
113
114 struct virtuser {
115         SLIST_ENTRY(virtuser) next;
116         char *login;
117         char *address;
118 };
119 SLIST_HEAD(virtusers, virtuser);
120
121 struct authuser {
122         SLIST_ENTRY(authuser) next;
123         char *login;
124         char *password;
125         char *host;
126 };
127 SLIST_HEAD(authusers, authuser);
128
129 extern struct aliases aliases;
130
131 /* aliases_parse.y */
132 extern int yyparse(void);
133 extern FILE *yyin;
134
135 /* conf.c */
136 extern void trim_line(char *);
137 extern int parse_conf(const char *, struct config *);
138 extern int parse_virtuser(const char *);
139 extern int parse_authfile(const char *);
140
141 /* crypto.c */
142 #ifdef HAVE_CRYPTO
143 extern int smtp_init_crypto(struct qitem *, int, int);
144 #endif /* HAVE_CRYPTO */
145
146 /* net.c */
147 extern int check_for_smtp_error(int, char *);
148 extern ssize_t send_remote_command(int, const char*, ...);
149 extern int deliver_remote(struct qitem *, const char **);
150
151 /* base64.c */
152 extern int base64_encode(const void *, int, char **);
153
154 /* dma.c */
155 extern char * hostname(void);
156 #endif