2 * Copyright (c) 1999-2004, 2006-2008 Sendmail, Inc. and its suppliers.
5 * By using this file, you agree to the terms and conditions set
6 * forth in the LICENSE file which can be found at the top level of
7 * the sendmail distribution.
12 SM_RCSID("@(#)$Id: engine.c,v 8.162 2008/02/27 01:34:14 ca Exp $")
14 #include "libmilter.h"
16 #if NETINET || NETINET6
17 # include <arpa/inet.h>
18 #endif /* NETINET || NETINET6 */
20 /* generic argument for functions in the command table */
23 size_t a_len
; /* length of buffer */
24 char *a_buf
; /* argument string */
25 int a_idx
; /* index for macro array */
26 SMFICTX_PTR a_ctx
; /* context */
29 typedef struct arg_struct genarg
;
31 /* structure for commands received from MTA */
34 char cm_cmd
; /* command */
35 int cm_argt
; /* type of arguments expected */
36 int cm_next
; /* next state */
37 int cm_todo
; /* what to do next */
38 int cm_macros
; /* index for macros */
39 int (*cm_fct
) __P((genarg
*)); /* function to execute */
42 typedef struct cmdfct_t cmdfct
;
44 /* possible values for cm_argt */
45 #define CM_ARG0 0 /* no args */
46 #define CM_ARG1 1 /* one arg (string) */
47 #define CM_ARG2 2 /* two args (strings) */
48 #define CM_ARGA 4 /* one string and _SOCK_ADDR */
49 #define CM_ARGO 5 /* two integers */
50 #define CM_ARGV 8 /* \0 separated list of args, NULL-terminated */
51 #define CM_ARGN 9 /* \0 separated list of args (strings) */
53 /* possible values for cm_todo */
54 #define CT_CONT 0x0000 /* continue reading commands */
55 #define CT_IGNO 0x0001 /* continue even when error */
57 /* not needed right now, done via return code instead */
58 #define CT_KEEP 0x0004 /* keep buffer (contains symbols) */
59 #define CT_END 0x0008 /* last command of session, stop replying */
61 /* index in macro array: macros only for these commands */
70 #define CI_LAST CI_EOH
72 ERROR
: do not compile with CI_LAST
< CI_DATA
75 ERROR
: do not compile with CI_LAST
< CI_EOM
78 ERROR
: do not compile with CI_LAST
< CI_EOH
80 #if CI_LAST < CI_ENVRCPT
81 ERROR
: do not compile with CI_LAST
< CI_ENVRCPT
83 #if CI_LAST < CI_ENVFROM
84 ERROR
: do not compile with CI_LAST
< CI_ENVFROM
87 ERROR
: do not compile with CI_LAST
< CI_HELO
89 #if CI_LAST < CI_CONNECT
90 ERROR
: do not compile with CI_LAST
< CI_CONNECT
92 #if CI_LAST >= MAX_MACROS_ENTRIES
93 ERROR
: do not compile with CI_LAST
>= MAX_MACROS_ENTRIES
96 /* function prototypes */
97 static int st_abortfct
__P((genarg
*));
98 static int st_macros
__P((genarg
*));
99 static int st_optionneg
__P((genarg
*));
100 static int st_bodychunk
__P((genarg
*));
101 static int st_connectinfo
__P((genarg
*));
102 static int st_bodyend
__P((genarg
*));
103 static int st_helo
__P((genarg
*));
104 static int st_header
__P((genarg
*));
105 static int st_sender
__P((genarg
*));
106 static int st_rcpt
__P((genarg
*));
107 static int st_unknown
__P((genarg
*));
108 static int st_data
__P((genarg
*));
109 static int st_eoh
__P((genarg
*));
110 static int st_quit
__P((genarg
*));
111 static int sendreply
__P((sfsistat
, socket_t
, struct timeval
*, SMFICTX_PTR
));
112 static void fix_stm
__P((SMFICTX_PTR
));
113 static bool trans_ok
__P((int, int));
114 static char **dec_argv
__P((char *, size_t));
115 static int dec_arg2
__P((char *, size_t, char **, char **));
117 #if _FFR_WORKERS_POOL
118 static bool mi_rd_socket_ready
__P((int));
119 #endif /* _FFR_WORKERS_POOL */
123 #define ST_INIT 0 /* initial state */
124 #define ST_OPTS 1 /* option negotiation */
125 #define ST_CONN 2 /* connection info */
126 #define ST_HELO 3 /* helo */
127 #define ST_MAIL 4 /* mail from */
128 #define ST_RCPT 5 /* rcpt to */
129 #define ST_DATA 6 /* data */
130 #define ST_HDRS 7 /* headers */
131 #define ST_EOHS 8 /* end of headers */
132 #define ST_BODY 9 /* body */
133 #define ST_ENDM 10 /* end of message */
134 #define ST_QUIT 11 /* quit */
135 #define ST_ABRT 12 /* abort */
136 #define ST_UNKN 13 /* unknown SMTP command */
137 #define ST_Q_NC 14 /* quit, new connection follows */
138 #define ST_LAST ST_Q_NC /* last valid state */
139 #define ST_SKIP 16 /* not a state but required for the state table */
141 /* in a mail transaction? must be before eom according to spec. */
142 #define ST_IN_MAIL(st) ((st) >= ST_MAIL && (st) < ST_ENDM)
145 ** set of next states
146 ** each state (ST_*) corresponds to bit in an int value (1 << state)
147 ** each state has a set of allowed transitions ('or' of bits of states)
148 ** so a state transition is valid if the mask of the next state
149 ** is set in the NX_* value
150 ** this function is coded in trans_ok(), see below.
153 #define MI_MASK(x) (0x0001 << (x)) /* generate a bit "mask" for a state */
154 #define NX_INIT (MI_MASK(ST_OPTS))
155 #define NX_OPTS (MI_MASK(ST_CONN) | MI_MASK(ST_UNKN))
156 #define NX_CONN (MI_MASK(ST_HELO) | MI_MASK(ST_MAIL) | MI_MASK(ST_UNKN))
157 #define NX_HELO (MI_MASK(ST_HELO) | MI_MASK(ST_MAIL) | MI_MASK(ST_UNKN))
158 #define NX_MAIL (MI_MASK(ST_RCPT) | MI_MASK(ST_ABRT) | MI_MASK(ST_UNKN))
159 #define NX_RCPT (MI_MASK(ST_HDRS) | MI_MASK(ST_EOHS) | MI_MASK(ST_DATA) | \
160 MI_MASK(ST_BODY) | MI_MASK(ST_ENDM) | \
161 MI_MASK(ST_RCPT) | MI_MASK(ST_ABRT) | MI_MASK(ST_UNKN))
162 #define NX_DATA (MI_MASK(ST_EOHS) | MI_MASK(ST_HDRS) | MI_MASK(ST_ABRT))
163 #define NX_HDRS (MI_MASK(ST_EOHS) | MI_MASK(ST_HDRS) | MI_MASK(ST_ABRT))
164 #define NX_EOHS (MI_MASK(ST_BODY) | MI_MASK(ST_ENDM) | MI_MASK(ST_ABRT))
165 #define NX_BODY (MI_MASK(ST_ENDM) | MI_MASK(ST_BODY) | MI_MASK(ST_ABRT))
166 #define NX_ENDM (MI_MASK(ST_QUIT) | MI_MASK(ST_MAIL) | MI_MASK(ST_UNKN) | \
170 #define NX_UNKN (MI_MASK(ST_HELO) | MI_MASK(ST_MAIL) | \
171 MI_MASK(ST_RCPT) | MI_MASK(ST_ABRT) | \
173 MI_MASK(ST_BODY) | MI_MASK(ST_UNKN) | \
174 MI_MASK(ST_ABRT) | MI_MASK(ST_QUIT) | MI_MASK(ST_Q_NC))
175 #define NX_Q_NC (MI_MASK(ST_CONN) | MI_MASK(ST_UNKN))
176 #define NX_SKIP MI_MASK(ST_SKIP)
178 static int next_states
[] =
197 #define SIZE_NEXT_STATES (sizeof(next_states) / sizeof(next_states[0]))
199 /* commands received by milter */
200 static cmdfct cmds
[] =
202 {SMFIC_ABORT
, CM_ARG0
, ST_ABRT
, CT_CONT
, CI_NONE
, st_abortfct
}
203 , {SMFIC_MACRO
, CM_ARGV
, ST_NONE
, CT_KEEP
, CI_NONE
, st_macros
}
204 , {SMFIC_BODY
, CM_ARG1
, ST_BODY
, CT_CONT
, CI_NONE
, st_bodychunk
}
205 , {SMFIC_CONNECT
, CM_ARG2
, ST_CONN
, CT_CONT
, CI_CONN
, st_connectinfo
}
206 , {SMFIC_BODYEOB
, CM_ARG1
, ST_ENDM
, CT_CONT
, CI_EOM
, st_bodyend
}
207 , {SMFIC_HELO
, CM_ARG1
, ST_HELO
, CT_CONT
, CI_HELO
, st_helo
}
208 , {SMFIC_HEADER
, CM_ARG2
, ST_HDRS
, CT_CONT
, CI_NONE
, st_header
}
209 , {SMFIC_MAIL
, CM_ARGV
, ST_MAIL
, CT_CONT
, CI_MAIL
, st_sender
}
210 , {SMFIC_OPTNEG
, CM_ARGO
, ST_OPTS
, CT_CONT
, CI_NONE
, st_optionneg
}
211 , {SMFIC_EOH
, CM_ARG0
, ST_EOHS
, CT_CONT
, CI_EOH
, st_eoh
}
212 , {SMFIC_QUIT
, CM_ARG0
, ST_QUIT
, CT_END
, CI_NONE
, st_quit
}
213 , {SMFIC_DATA
, CM_ARG0
, ST_DATA
, CT_CONT
, CI_DATA
, st_data
}
214 , {SMFIC_RCPT
, CM_ARGV
, ST_RCPT
, CT_IGNO
, CI_RCPT
, st_rcpt
}
215 , {SMFIC_UNKNOWN
, CM_ARG1
, ST_UNKN
, CT_IGNO
, CI_NONE
, st_unknown
}
216 , {SMFIC_QUIT_NC
, CM_ARG0
, ST_Q_NC
, CT_CONT
, CI_NONE
, st_quit
}
220 ** Additional (internal) reply codes;
221 ** must be coordinated wit libmilter/mfapi.h
224 #define _SMFIS_KEEP 20
225 #define _SMFIS_ABORT 21
226 #define _SMFIS_OPTIONS 22
227 #define _SMFIS_NOREPLY SMFIS_NOREPLY
228 #define _SMFIS_FAIL (-1)
229 #define _SMFIS_NONE (-2)
232 ** MI_ENGINE -- receive commands and process them
235 ** ctx -- context structure
238 ** MI_FAILURE/MI_SUCCESS
248 int ret
= MI_SUCCESS
;
249 int ncmds
= sizeof(cmds
) / sizeof(cmdfct
);
250 int curstate
= ST_INIT
;
257 struct timeval timeout
;
258 int (*f
) __P((genarg
*));
259 sfsistat (*fi_abort
) __P((SMFICTX
*));
260 sfsistat (*fi_close
) __P((SMFICTX
*));
264 fi_abort
= ctx
->ctx_smfi
->xxfi_abort
;
265 #if _FFR_WORKERS_POOL
266 curstate
= ctx
->ctx_state
;
267 if (curstate
== ST_INIT
)
269 mi_clr_macros(ctx
, 0);
272 #else /* _FFR_WORKERS_POOL */
273 mi_clr_macros(ctx
, 0);
275 #endif /* _FFR_WORKERS_POOL */
279 /* call abort only if in a mail transaction */
280 call_abort
= ST_IN_MAIL(curstate
);
281 timeout
.tv_sec
= ctx
->ctx_timeout
;
283 if (mi_stop() == MILTER_ABRT
)
285 if (ctx
->ctx_dbg
> 3)
286 sm_dprintf("[%ld] milter_abort\n",
293 ** Notice: buf is allocated by mi_rd_cmd() and it will
294 ** usually be free()d after it has been used in f().
295 ** However, if the function returns _SMFIS_KEEP then buf
296 ** contains macros and will not be free()d.
297 ** Hence r must be set to _SMFIS_NONE if a new buf is
298 ** allocated to avoid problem with housekeeping, esp.
299 ** if the code "break"s out of the loop.
302 #if _FFR_WORKERS_POOL
303 /* Is the socket ready to be read ??? */
304 if (!mi_rd_socket_ready(sd
))
309 #endif /* _FFR_WORKERS_POOL */
312 if ((buf
= mi_rd_cmd(sd
, &timeout
, &cmd
, &len
,
313 ctx
->ctx_smfi
->xxfi_name
)) == NULL
&&
314 cmd
< SMFIC_VALIDCMD
)
316 if (ctx
->ctx_dbg
> 5)
317 sm_dprintf("[%ld] mi_engine: mi_rd_cmd error (%x)\n",
318 (long) ctx
->ctx_id
, (int) cmd
);
321 ** eof is currently treated as failure ->
322 ** abort() instead of close(), otherwise use:
323 ** if (cmd != SMFIC_EOF)
329 if (ctx
->ctx_dbg
> 4)
330 sm_dprintf("[%ld] got cmd '%c' len %d\n",
331 (long) ctx
->ctx_id
, cmd
, (int) len
);
332 for (i
= 0; i
< ncmds
; i
++)
334 if (cmd
== cmds
[i
].cm_cmd
)
339 /* unknown command */
340 if (ctx
->ctx_dbg
> 1)
341 sm_dprintf("[%ld] cmd '%c' unknown\n",
342 (long) ctx
->ctx_id
, cmd
);
346 if ((f
= cmds
[i
].cm_fct
) == NULL
)
349 if (ctx
->ctx_dbg
> 1)
350 sm_dprintf("[%ld] cmd '%c' not impl\n",
351 (long) ctx
->ctx_id
, cmd
);
356 /* is new state ok? */
357 newstate
= cmds
[i
].cm_next
;
358 if (ctx
->ctx_dbg
> 5)
359 sm_dprintf("[%ld] cur %x new %x nextmask %x\n",
361 curstate
, newstate
, next_states
[curstate
]);
363 if (newstate
!= ST_NONE
&& !trans_ok(curstate
, newstate
))
365 if (ctx
->ctx_dbg
> 1)
366 sm_dprintf("[%ld] abort: cur %d (%x) new %d (%x) next %x\n",
368 curstate
, MI_MASK(curstate
),
369 newstate
, MI_MASK(newstate
),
370 next_states
[curstate
]);
372 /* call abort only if in a mail transaction */
373 if (fi_abort
!= NULL
&& call_abort
)
374 (void) (*fi_abort
)(ctx
);
377 ** try to reach the new state from HELO
378 ** if it can't be reached, ignore the command.
382 if (!trans_ok(curstate
, newstate
))
394 if (newstate
!= ST_NONE
)
397 ctx
->ctx_state
= curstate
;
399 arg
.a_idx
= cmds
[i
].cm_macros
;
400 call_abort
= ST_IN_MAIL(curstate
);
402 /* call function to deal with command */
403 MI_MONITOR_BEGIN(ctx
, cmd
);
405 MI_MONITOR_END(ctx
, cmd
);
406 if (r
!= _SMFIS_KEEP
&& buf
!= NULL
)
411 if (sendreply(r
, sd
, &timeout
, ctx
) != MI_SUCCESS
)
417 if (r
== SMFIS_ACCEPT
)
419 /* accept mail, no further actions taken */
422 else if (r
== SMFIS_REJECT
|| r
== SMFIS_DISCARD
||
426 ** further actions depend on current state
427 ** if the IGNO bit is set: "ignore" the error,
428 ** i.e., stay in the current state
430 if (!bitset(CT_IGNO
, cmds
[i
].cm_todo
))
433 else if (r
== _SMFIS_ABORT
)
435 if (ctx
->ctx_dbg
> 5)
436 sm_dprintf("[%ld] function returned abort\n",
441 } while (!bitset(CT_END
, cmds
[i
].cm_todo
));
443 ctx
->ctx_state
= curstate
;
445 if (ret
== MI_FAILURE
)
447 /* call abort only if in a mail transaction */
448 if (fi_abort
!= NULL
&& call_abort
)
449 (void) (*fi_abort
)(ctx
);
452 /* has close been called? */
453 if (ctx
->ctx_state
!= ST_QUIT
454 #if _FFR_WORKERS_POOL
455 && ret
!= MI_CONTINUE
456 #endif /* _FFR_WORKERS_POOL */
459 if ((fi_close
= ctx
->ctx_smfi
->xxfi_close
) != NULL
)
460 (void) (*fi_close
)(ctx
);
462 if (r
!= _SMFIS_KEEP
&& buf
!= NULL
)
464 #if !_FFR_WORKERS_POOL
465 mi_clr_macros(ctx
, 0);
466 #endif /* _FFR_WORKERS_POOL */
470 static size_t milter_addsymlist
__P((SMFICTX_PTR
, char *, char **));
473 milter_addsymlist(ctx
, buf
, newbuf
)
483 SM_ASSERT(ctx
!= NULL
);
484 SM_ASSERT(buf
!= NULL
);
485 SM_ASSERT(newbuf
!= NULL
);
487 for (i
= 0; i
< MAX_MACROS_ENTRIES
; i
++)
489 if (ctx
->ctx_mac_list
[i
] != NULL
)
491 len
+= strlen(ctx
->ctx_mac_list
[i
]) + 1 +
499 SM_ASSERT(len
+ MILTER_OPTLEN
> len
);
500 len
+= MILTER_OPTLEN
;
501 buffer
= malloc(len
);
504 (void) memcpy(buffer
, buf
, MILTER_OPTLEN
);
505 offset
= MILTER_OPTLEN
;
506 for (i
= 0; i
< MAX_MACROS_ENTRIES
; i
++)
510 if (ctx
->ctx_mac_list
[i
] == NULL
)
513 SM_ASSERT(offset
+ MILTER_LEN_BYTES
< len
);
515 (void) memcpy(buffer
+ offset
, (void *) &v
,
517 offset
+= MILTER_LEN_BYTES
;
518 l
= strlen(ctx
->ctx_mac_list
[i
]) + 1;
519 SM_ASSERT(offset
+ l
<= len
);
520 (void) memcpy(buffer
+ offset
,
521 ctx
->ctx_mac_list
[i
], l
);
540 ** GET_NR_BIT -- get "no reply" bit matching state
543 ** state -- current protocol stage
546 ** 0: no matching bit
547 ** >0: the matching "no reply" bit
550 static unsigned long get_nr_bit
__P((int));
595 ** SENDREPLY -- send a reply to the MTA
599 ** sd -- socket descriptor
600 ** timeout_ptr -- (ptr to) timeout to use for sending
601 ** ctx -- context structure
604 ** MI_SUCCESS/MI_FAILURE
608 sendreply(r
, sd
, timeout_ptr
, ctx
)
611 struct timeval
*timeout_ptr
;
619 bit
= get_nr_bit(ctx
->ctx_state
);
620 if (bit
!= 0 && (ctx
->ctx_pflags
& bit
) != 0 && r
!= SMFIS_NOREPLY
)
622 if (r
>= SMFIS_CONTINUE
&& r
< _SMFIS_KEEP
)
624 /* milter said it wouldn't reply, but it lied... */
626 "%s: milter claimed not to reply in state %d but did anyway %d\n",
627 ctx
->ctx_smfi
->xxfi_name
,
633 ** Force specified behavior, otherwise libmilter
634 ** and MTA will fail to communicate properly.
654 ret
= mi_wr_cmd(sd
, timeout_ptr
, SMFIR_CONTINUE
, NULL
, 0);
658 if (ctx
->ctx_reply
!= NULL
&&
659 ((r
== SMFIS_TEMPFAIL
&& *ctx
->ctx_reply
== '4') ||
660 (r
== SMFIS_REJECT
&& *ctx
->ctx_reply
== '5')))
662 ret
= mi_wr_cmd(sd
, timeout_ptr
, SMFIR_REPLYCODE
,
664 strlen(ctx
->ctx_reply
) + 1);
665 free(ctx
->ctx_reply
);
666 ctx
->ctx_reply
= NULL
;
670 ret
= mi_wr_cmd(sd
, timeout_ptr
, r
== SMFIS_REJECT
?
671 SMFIR_REJECT
: SMFIR_TEMPFAIL
, NULL
, 0);
675 ret
= mi_wr_cmd(sd
, timeout_ptr
, SMFIR_DISCARD
, NULL
, 0);
678 ret
= mi_wr_cmd(sd
, timeout_ptr
, SMFIR_ACCEPT
, NULL
, 0);
681 ret
= mi_wr_cmd(sd
, timeout_ptr
, SMFIR_SKIP
, NULL
, 0);
688 char buf
[MILTER_OPTLEN
];
690 v
= htonl(ctx
->ctx_prot_vers2mta
);
691 (void) memcpy(&(buf
[0]), (void *) &v
,
693 v
= htonl(ctx
->ctx_aflags
);
694 (void) memcpy(&(buf
[MILTER_LEN_BYTES
]), (void *) &v
,
696 v
= htonl(ctx
->ctx_pflags2mta
);
697 (void) memcpy(&(buf
[MILTER_LEN_BYTES
* 2]),
698 (void *) &v
, MILTER_LEN_BYTES
);
699 len
= milter_addsymlist(ctx
, buf
, &buffer
);
701 ret
= mi_wr_cmd(sd
, timeout_ptr
, SMFIC_OPTNEG
,
709 (ctx
->ctx_pflags
& bit
) != 0 &&
710 (ctx
->ctx_mta_pflags
& bit
) == 0)
713 ** milter doesn't want to send a reply,
714 ** but the MTA doesn't have that feature: fake it.
717 ret
= mi_wr_cmd(sd
, timeout_ptr
, SMFIR_CONTINUE
, NULL
,
721 default: /* don't send a reply */
728 ** CLR_MACROS -- clear set of macros starting from a given index
731 ** ctx -- context structure
732 ** m -- index from which to clear all macros
739 mi_clr_macros(ctx
, m
)
745 for (i
= m
; i
< MAX_MACROS_ENTRIES
; i
++)
747 if (ctx
->ctx_mac_ptr
[i
] != NULL
)
749 free(ctx
->ctx_mac_ptr
[i
]);
750 ctx
->ctx_mac_ptr
[i
] = NULL
;
752 if (ctx
->ctx_mac_buf
[i
] != NULL
)
754 free(ctx
->ctx_mac_buf
[i
]);
755 ctx
->ctx_mac_buf
[i
] = NULL
;
761 ** ST_OPTIONNEG -- negotiate options
764 ** g -- generic argument structure
767 ** abort/send options/continue
774 mi_int32 i
, v
, fake_pflags
;
776 int (*fi_negotiate
) __P((SMFICTX
*,
777 unsigned long, unsigned long,
778 unsigned long, unsigned long,
779 unsigned long *, unsigned long *,
780 unsigned long *, unsigned long *));
782 if (g
== NULL
|| g
->a_ctx
->ctx_smfi
== NULL
)
783 return SMFIS_CONTINUE
;
785 mi_clr_macros(ctx
, g
->a_idx
+ 1);
786 ctx
->ctx_prot_vers
= SMFI_PROT_VERSION
;
788 /* check for minimum length */
789 if (g
->a_len
< MILTER_OPTLEN
)
792 "%s: st_optionneg[%ld]: len too short %d < %d",
793 ctx
->ctx_smfi
->xxfi_name
,
794 (long) ctx
->ctx_id
, (int) g
->a_len
,
799 /* protocol version */
800 (void) memcpy((void *) &i
, (void *) &(g
->a_buf
[0]), MILTER_LEN_BYTES
);
803 #define SMFI_PROT_VERSION_MIN 2
805 /* check for minimum version */
806 if (v
< SMFI_PROT_VERSION_MIN
)
809 "%s: st_optionneg[%ld]: protocol version too old %d < %d",
810 ctx
->ctx_smfi
->xxfi_name
,
811 (long) ctx
->ctx_id
, v
, SMFI_PROT_VERSION_MIN
);
814 ctx
->ctx_mta_prot_vers
= v
;
815 if (ctx
->ctx_prot_vers
< ctx
->ctx_mta_prot_vers
)
816 ctx
->ctx_prot_vers2mta
= ctx
->ctx_prot_vers
;
818 ctx
->ctx_prot_vers2mta
= ctx
->ctx_mta_prot_vers
;
820 (void) memcpy((void *) &i
, (void *) &(g
->a_buf
[MILTER_LEN_BYTES
]),
824 /* no flags? set to default value for V1 actions */
827 ctx
->ctx_mta_aflags
= v
; /* MTA action flags */
829 (void) memcpy((void *) &i
, (void *) &(g
->a_buf
[MILTER_LEN_BYTES
* 2]),
833 /* no flags? set to default value for V1 protocol */
836 ctx
->ctx_mta_pflags
= v
; /* MTA protocol flags */
839 ** Copy flags from milter struct into libmilter context;
840 ** this variable will be used later on to check whether
841 ** the MTA "actions" can fulfill the milter requirements,
842 ** but it may be overwritten by the negotiate callback.
845 ctx
->ctx_aflags
= ctx
->ctx_smfi
->xxfi_flags
;
846 fake_pflags
= SMFIP_NR_CONN
857 if (g
->a_ctx
->ctx_smfi
!= NULL
&&
858 g
->a_ctx
->ctx_smfi
->xxfi_version
> 4 &&
859 (fi_negotiate
= g
->a_ctx
->ctx_smfi
->xxfi_negotiate
) != NULL
)
862 unsigned long m_aflags
, m_pflags
, m_f2
, m_f3
;
865 ** let milter decide whether the features offered by the
866 ** MTA are "good enough".
868 ** - libmilter can "fake" some features (e.g., SMFIP_NR_HDR)
869 ** - m_f2, m_f3 are for future extensions
873 m_aflags
= ctx
->ctx_mta_aflags
;
874 m_pflags
= ctx
->ctx_pflags
;
875 if ((SMFIP_SKIP
& ctx
->ctx_mta_pflags
) != 0)
876 m_pflags
|= SMFIP_SKIP
;
877 r
= fi_negotiate(g
->a_ctx
,
879 ctx
->ctx_mta_pflags
|fake_pflags
,
881 &m_aflags
, &m_pflags
, &m_f2
, &m_f3
);
884 ** Types of protocol flags (pflags):
885 ** 1. do NOT send protocol step X
886 ** 2. MTA can do/understand something extra (SKIP,
887 ** send unknown RCPTs)
888 ** 3. MTA can deal with "no reply" for various protocol steps
889 ** Note: this mean that it isn't possible to simply set all
890 ** flags to get "everything":
891 ** setting a flag of type 1 turns off a step
892 ** (it should be the other way around:
893 ** a flag means a protocol step can be sent)
894 ** setting a flag of type 3 requires that milter
895 ** never sends a reply for the corresponding step.
896 ** Summary: the "negation" of protocol flags is causing
897 ** problems, but at least for type 3 there is no simple
900 ** What should "all options" mean?
901 ** send all protocol steps _except_ those for which there is
902 ** no callback (currently registered in ctx_pflags)
903 ** expect SKIP as return code? Yes
904 ** send unknown RCPTs? No,
905 ** must be explicitly requested?
906 ** "no reply" for some protocol steps? No,
907 ** must be explicitly requested.
910 if (SMFIS_ALL_OPTS
== r
)
912 ctx
->ctx_aflags
= ctx
->ctx_mta_aflags
;
913 ctx
->ctx_pflags2mta
= ctx
->ctx_pflags
;
914 if ((SMFIP_SKIP
& ctx
->ctx_mta_pflags
) != 0)
915 ctx
->ctx_pflags2mta
|= SMFIP_SKIP
;
917 else if (r
!= SMFIS_CONTINUE
)
920 "%s: st_optionneg[%ld]: xxfi_negotiate returned %d (protocol options=0x%lx, actions=0x%lx)",
921 ctx
->ctx_smfi
->xxfi_name
,
922 (long) ctx
->ctx_id
, r
, ctx
->ctx_mta_pflags
,
923 ctx
->ctx_mta_aflags
);
928 ctx
->ctx_aflags
= m_aflags
;
929 ctx
->ctx_pflags
= m_pflags
;
930 ctx
->ctx_pflags2mta
= m_pflags
;
933 /* check whether some flags need to be "faked" */
934 i
= ctx
->ctx_pflags2mta
;
935 if ((ctx
->ctx_mta_pflags
& i
) != i
)
941 ** If some behavior can be faked (set in fake_pflags),
942 ** but the MTA doesn't support it, then unset
943 ** that flag in the value that is sent to the MTA.
946 for (idx
= 0; idx
< 32; idx
++)
949 if ((ctx
->ctx_mta_pflags
& b
) != b
&&
950 (fake_pflags
& b
) == b
)
951 ctx
->ctx_pflags2mta
&= ~b
;
958 ** Set the protocol flags based on the values determined
959 ** in mi_listener() which checked the defined callbacks.
962 ctx
->ctx_pflags2mta
= ctx
->ctx_pflags
;
965 /* check whether actions and protocol requirements can be satisfied */
967 if ((i
& ctx
->ctx_mta_aflags
) != i
)
970 "%s: st_optionneg[%ld]: 0x%lx does not fulfill action requirements 0x%x",
971 ctx
->ctx_smfi
->xxfi_name
,
972 (long) ctx
->ctx_id
, ctx
->ctx_mta_aflags
, i
);
976 i
= ctx
->ctx_pflags2mta
;
977 if ((ctx
->ctx_mta_pflags
& i
) != i
)
980 ** Older MTAs do not support some protocol steps.
981 ** As this protocol is a bit "wierd" (it asks for steps
982 ** NOT to be taken/sent) we have to check whether we
983 ** should turn off those "negative" requests.
984 ** Currently these are only SMFIP_NODATA and SMFIP_NOUNKNOWN.
987 if (bitset(SMFIP_NODATA
, ctx
->ctx_pflags2mta
) &&
988 !bitset(SMFIP_NODATA
, ctx
->ctx_mta_pflags
))
989 ctx
->ctx_pflags2mta
&= ~SMFIP_NODATA
;
990 if (bitset(SMFIP_NOUNKNOWN
, ctx
->ctx_pflags2mta
) &&
991 !bitset(SMFIP_NOUNKNOWN
, ctx
->ctx_mta_pflags
))
992 ctx
->ctx_pflags2mta
&= ~SMFIP_NOUNKNOWN
;
993 i
= ctx
->ctx_pflags2mta
;
996 if ((ctx
->ctx_mta_pflags
& i
) != i
)
999 "%s: st_optionneg[%ld]: 0x%lx does not fulfill protocol requirements 0x%x",
1000 ctx
->ctx_smfi
->xxfi_name
,
1001 (long) ctx
->ctx_id
, ctx
->ctx_mta_pflags
, i
);
1002 return _SMFIS_ABORT
;
1006 if (ctx
->ctx_dbg
> 3)
1007 sm_dprintf("[%ld] milter_negotiate:"
1008 " mta_actions=0x%lx, mta_flags=0x%lx"
1009 " actions=0x%lx, flags=0x%lx\n"
1010 , (long) ctx
->ctx_id
1011 , ctx
->ctx_mta_aflags
, ctx
->ctx_mta_pflags
1012 , ctx
->ctx_aflags
, ctx
->ctx_pflags
);
1014 return _SMFIS_OPTIONS
;
1018 ** ST_CONNECTINFO -- receive connection information
1021 ** g -- generic argument structure
1024 ** continue or filter-specified value
1034 unsigned short port
= 0;
1035 _SOCK_ADDR sockaddr
;
1036 sfsistat (*fi_connect
) __P((SMFICTX
*, char *, _SOCK_ADDR
*));
1039 return _SMFIS_ABORT
;
1040 mi_clr_macros(g
->a_ctx
, g
->a_idx
+ 1);
1041 if (g
->a_ctx
->ctx_smfi
== NULL
||
1042 (fi_connect
= g
->a_ctx
->ctx_smfi
->xxfi_connect
) == NULL
)
1043 return SMFIS_CONTINUE
;
1048 while (s
[i
] != '\0' && i
<= l
)
1051 return _SMFIS_ABORT
;
1053 /* Move past trailing \0 in host string */
1056 (void) memset(&sockaddr
, '\0', sizeof sockaddr
);
1057 if (family
!= SMFIA_UNKNOWN
)
1059 if (i
+ sizeof port
>= l
)
1061 smi_log(SMI_LOG_ERR
,
1062 "%s: connect[%ld]: wrong len %d >= %d",
1063 g
->a_ctx
->ctx_smfi
->xxfi_name
,
1064 (long) g
->a_ctx
->ctx_id
, (int) i
, (int) l
);
1065 return _SMFIS_ABORT
;
1067 (void) memcpy((void *) &port
, (void *) (s
+ i
),
1071 /* make sure string is terminated */
1072 if (s
[l
- 1] != '\0')
1073 return _SMFIS_ABORT
;
1075 if (family
== SMFIA_INET
)
1077 if (inet_aton(s
+ i
, (struct in_addr
*) &sockaddr
.sin
.sin_addr
)
1080 smi_log(SMI_LOG_ERR
,
1081 "%s: connect[%ld]: inet_aton failed",
1082 g
->a_ctx
->ctx_smfi
->xxfi_name
,
1083 (long) g
->a_ctx
->ctx_id
);
1084 return _SMFIS_ABORT
;
1086 sockaddr
.sa
.sa_family
= AF_INET
;
1088 sockaddr
.sin
.sin_port
= port
;
1091 # endif /* NETINET */
1093 if (family
== SMFIA_INET6
)
1095 if (mi_inet_pton(AF_INET6
, s
+ i
,
1096 &sockaddr
.sin6
.sin6_addr
) != 1)
1098 smi_log(SMI_LOG_ERR
,
1099 "%s: connect[%ld]: mi_inet_pton failed",
1100 g
->a_ctx
->ctx_smfi
->xxfi_name
,
1101 (long) g
->a_ctx
->ctx_id
);
1102 return _SMFIS_ABORT
;
1104 sockaddr
.sa
.sa_family
= AF_INET6
;
1106 sockaddr
.sin6
.sin6_port
= port
;
1109 # endif /* NETINET6 */
1111 if (family
== SMFIA_UNIX
)
1113 if (sm_strlcpy(sockaddr
.sunix
.sun_path
, s
+ i
,
1114 sizeof sockaddr
.sunix
.sun_path
) >=
1115 sizeof sockaddr
.sunix
.sun_path
)
1117 smi_log(SMI_LOG_ERR
,
1118 "%s: connect[%ld]: path too long",
1119 g
->a_ctx
->ctx_smfi
->xxfi_name
,
1120 (long) g
->a_ctx
->ctx_id
);
1121 return _SMFIS_ABORT
;
1123 sockaddr
.sunix
.sun_family
= AF_UNIX
;
1126 # endif /* NETUNIX */
1128 smi_log(SMI_LOG_ERR
,
1129 "%s: connect[%ld]: unknown family %d",
1130 g
->a_ctx
->ctx_smfi
->xxfi_name
,
1131 (long) g
->a_ctx
->ctx_id
, family
);
1132 return _SMFIS_ABORT
;
1135 return (*fi_connect
)(g
->a_ctx
, g
->a_buf
,
1136 family
!= SMFIA_UNKNOWN
? &sockaddr
: NULL
);
1140 ** ST_EOH -- end of headers
1143 ** g -- generic argument structure
1146 ** continue or filter-specified value
1153 sfsistat (*fi_eoh
) __P((SMFICTX
*));
1156 return _SMFIS_ABORT
;
1157 if (g
->a_ctx
->ctx_smfi
!= NULL
&&
1158 (fi_eoh
= g
->a_ctx
->ctx_smfi
->xxfi_eoh
) != NULL
)
1159 return (*fi_eoh
)(g
->a_ctx
);
1160 return SMFIS_CONTINUE
;
1164 ** ST_DATA -- DATA command
1167 ** g -- generic argument structure
1170 ** continue or filter-specified value
1177 sfsistat (*fi_data
) __P((SMFICTX
*));
1180 return _SMFIS_ABORT
;
1181 if (g
->a_ctx
->ctx_smfi
!= NULL
&&
1182 g
->a_ctx
->ctx_smfi
->xxfi_version
> 3 &&
1183 (fi_data
= g
->a_ctx
->ctx_smfi
->xxfi_data
) != NULL
)
1184 return (*fi_data
)(g
->a_ctx
);
1185 return SMFIS_CONTINUE
;
1189 ** ST_HELO -- helo/ehlo command
1192 ** g -- generic argument structure
1195 ** continue or filter-specified value
1202 sfsistat (*fi_helo
) __P((SMFICTX
*, char *));
1205 return _SMFIS_ABORT
;
1206 mi_clr_macros(g
->a_ctx
, g
->a_idx
+ 1);
1207 if (g
->a_ctx
->ctx_smfi
!= NULL
&&
1208 (fi_helo
= g
->a_ctx
->ctx_smfi
->xxfi_helo
) != NULL
)
1210 /* paranoia: check for terminating '\0' */
1211 if (g
->a_len
== 0 || g
->a_buf
[g
->a_len
- 1] != '\0')
1213 return (*fi_helo
)(g
->a_ctx
, g
->a_buf
);
1215 return SMFIS_CONTINUE
;
1219 ** ST_HEADER -- header line
1222 ** g -- generic argument structure
1225 ** continue or filter-specified value
1233 sfsistat (*fi_header
) __P((SMFICTX
*, char *, char *));
1236 return _SMFIS_ABORT
;
1237 if (g
->a_ctx
->ctx_smfi
== NULL
||
1238 (fi_header
= g
->a_ctx
->ctx_smfi
->xxfi_header
) == NULL
)
1239 return SMFIS_CONTINUE
;
1240 if (dec_arg2(g
->a_buf
, g
->a_len
, &hf
, &hv
) == MI_SUCCESS
)
1241 return (*fi_header
)(g
->a_ctx
, hf
, hv
);
1243 return _SMFIS_ABORT
;
1246 #define ARGV_FCT(lf, rf, idx) \
1248 sfsistat (*lf) __P((SMFICTX *, char **)); \
1252 return _SMFIS_ABORT; \
1253 mi_clr_macros(g->a_ctx, g->a_idx + 1); \
1254 if (g->a_ctx->ctx_smfi == NULL || \
1255 (lf = g->a_ctx->ctx_smfi->rf) == NULL) \
1256 return SMFIS_CONTINUE; \
1257 if ((argv = dec_argv(g->a_buf, g->a_len)) == NULL) \
1258 return _SMFIS_ABORT; \
1259 r = (*lf)(g->a_ctx, argv); \
1264 ** ST_SENDER -- MAIL FROM command
1267 ** g -- generic argument structure
1270 ** continue or filter-specified value
1277 ARGV_FCT(fi_envfrom
, xxfi_envfrom
, CI_MAIL
)
1281 ** ST_RCPT -- RCPT TO command
1284 ** g -- generic argument structure
1287 ** continue or filter-specified value
1294 ARGV_FCT(fi_envrcpt
, xxfi_envrcpt
, CI_RCPT
)
1298 ** ST_UNKNOWN -- unrecognized or unimplemented command
1301 ** g -- generic argument structure
1304 ** continue or filter-specified value
1311 sfsistat (*fi_unknown
) __P((SMFICTX
*, const char *));
1314 return _SMFIS_ABORT
;
1315 if (g
->a_ctx
->ctx_smfi
!= NULL
&&
1316 g
->a_ctx
->ctx_smfi
->xxfi_version
> 2 &&
1317 (fi_unknown
= g
->a_ctx
->ctx_smfi
->xxfi_unknown
) != NULL
)
1318 return (*fi_unknown
)(g
->a_ctx
, (const char *) g
->a_buf
);
1319 return SMFIS_CONTINUE
;
1323 ** ST_MACROS -- deal with macros received from the MTA
1326 ** g -- generic argument structure
1332 ** set pointer in macro array to current values.
1342 if (g
== NULL
|| g
->a_len
< 1)
1344 if ((argv
= dec_argv(g
->a_buf
+ 1, g
->a_len
- 1)) == NULL
)
1346 switch (g
->a_buf
[0])
1373 if (g
->a_ctx
->ctx_mac_ptr
[i
] != NULL
)
1374 free(g
->a_ctx
->ctx_mac_ptr
[i
]);
1375 if (g
->a_ctx
->ctx_mac_buf
[i
] != NULL
)
1376 free(g
->a_ctx
->ctx_mac_buf
[i
]);
1377 g
->a_ctx
->ctx_mac_ptr
[i
] = argv
;
1378 g
->a_ctx
->ctx_mac_buf
[i
] = g
->a_buf
;
1383 ** ST_QUIT -- quit command
1386 ** g -- generic argument structure
1397 sfsistat (*fi_close
) __P((SMFICTX
*));
1400 return _SMFIS_ABORT
;
1401 if (g
->a_ctx
->ctx_smfi
!= NULL
&&
1402 (fi_close
= g
->a_ctx
->ctx_smfi
->xxfi_close
) != NULL
)
1403 (void) (*fi_close
)(g
->a_ctx
);
1404 mi_clr_macros(g
->a_ctx
, 0);
1405 return _SMFIS_NOREPLY
;
1409 ** ST_BODYCHUNK -- deal with a piece of the mail body
1412 ** g -- generic argument structure
1415 ** continue or filter-specified value
1422 sfsistat (*fi_body
) __P((SMFICTX
*, unsigned char *, size_t));
1425 return _SMFIS_ABORT
;
1426 if (g
->a_ctx
->ctx_smfi
!= NULL
&&
1427 (fi_body
= g
->a_ctx
->ctx_smfi
->xxfi_body
) != NULL
)
1428 return (*fi_body
)(g
->a_ctx
, (unsigned char *)g
->a_buf
,
1430 return SMFIS_CONTINUE
;
1434 ** ST_BODYEND -- deal with the last piece of the mail body
1437 ** g -- generic argument structure
1440 ** continue or filter-specified value
1443 ** sends a reply for the body part (if non-empty).
1451 sfsistat (*fi_body
) __P((SMFICTX
*, unsigned char *, size_t));
1452 sfsistat (*fi_eom
) __P((SMFICTX
*));
1455 return _SMFIS_ABORT
;
1457 if (g
->a_ctx
->ctx_smfi
!= NULL
)
1459 if ((fi_body
= g
->a_ctx
->ctx_smfi
->xxfi_body
) != NULL
&&
1463 struct timeval timeout
;
1465 timeout
.tv_sec
= g
->a_ctx
->ctx_timeout
;
1466 timeout
.tv_usec
= 0;
1467 sd
= g
->a_ctx
->ctx_sd
;
1468 r
= (*fi_body
)(g
->a_ctx
, (unsigned char *)g
->a_buf
,
1470 if (r
!= SMFIS_CONTINUE
&&
1471 sendreply(r
, sd
, &timeout
, g
->a_ctx
) != MI_SUCCESS
)
1472 return _SMFIS_ABORT
;
1475 if (r
== SMFIS_CONTINUE
&&
1476 (fi_eom
= g
->a_ctx
->ctx_smfi
->xxfi_eom
) != NULL
)
1477 return (*fi_eom
)(g
->a_ctx
);
1482 ** ST_ABORTFCT -- deal with aborts
1485 ** g -- generic argument structure
1488 ** abort or filter-specified value
1495 sfsistat (*fi_abort
) __P((SMFICTX
*));
1498 return _SMFIS_ABORT
;
1499 if (g
!= NULL
&& g
->a_ctx
->ctx_smfi
!= NULL
&&
1500 (fi_abort
= g
->a_ctx
->ctx_smfi
->xxfi_abort
) != NULL
)
1501 (void) (*fi_abort
)(g
->a_ctx
);
1502 return _SMFIS_NOREPLY
;
1506 ** TRANS_OK -- is the state transition ok?
1513 ** state transition ok
1523 if (s
>= SIZE_NEXT_STATES
)
1527 /* is this state transition allowed? */
1528 if ((MI_MASK(new) & next_states
[s
]) != 0)
1532 ** no: try next state;
1533 ** this works since the relevant states are ordered
1534 ** strict sequentially
1538 if (n
>= SIZE_NEXT_STATES
)
1542 ** can we actually "skip" this state?
1543 ** see fix_stm() which sets this bit for those
1544 ** states which the filter program is not interested in
1547 if (bitset(NX_SKIP
, next_states
[n
]))
1551 } while (s
< SIZE_NEXT_STATES
);
1556 ** FIX_STM -- add "skip" bits to the state transition table
1559 ** ctx -- context structure
1565 ** may change state transition table.
1574 if (ctx
== NULL
|| ctx
->ctx_smfi
== NULL
)
1576 fl
= ctx
->ctx_pflags
;
1577 if (bitset(SMFIP_NOCONNECT
, fl
))
1578 next_states
[ST_CONN
] |= NX_SKIP
;
1579 if (bitset(SMFIP_NOHELO
, fl
))
1580 next_states
[ST_HELO
] |= NX_SKIP
;
1581 if (bitset(SMFIP_NOMAIL
, fl
))
1582 next_states
[ST_MAIL
] |= NX_SKIP
;
1583 if (bitset(SMFIP_NORCPT
, fl
))
1584 next_states
[ST_RCPT
] |= NX_SKIP
;
1585 if (bitset(SMFIP_NOHDRS
, fl
))
1586 next_states
[ST_HDRS
] |= NX_SKIP
;
1587 if (bitset(SMFIP_NOEOH
, fl
))
1588 next_states
[ST_EOHS
] |= NX_SKIP
;
1589 if (bitset(SMFIP_NOBODY
, fl
))
1590 next_states
[ST_BODY
] |= NX_SKIP
;
1591 if (bitset(SMFIP_NODATA
, fl
))
1592 next_states
[ST_DATA
] |= NX_SKIP
;
1593 if (bitset(SMFIP_NOUNKNOWN
, fl
))
1594 next_states
[ST_UNKN
] |= NX_SKIP
;
1598 ** DEC_ARGV -- split a buffer into a list of strings, NULL terminated
1601 ** buf -- buffer with several strings
1602 ** len -- length of buffer
1605 ** array of pointers to the individual strings
1618 for (i
= 0; i
< len
; i
++)
1626 /* last entry is only for the name */
1627 s
= (char **)malloc((nelem
+ 1) * (sizeof *s
));
1631 for (i
= 0, elem
= 0; i
< len
&& elem
< nelem
; i
++)
1639 s
[elem
] = &(buf
[i
+ 1]);
1643 /* overwrite last entry (already done above, just paranoia) */
1649 ** DEC_ARG2 -- split a buffer into two strings
1652 ** buf -- buffer with two strings
1653 ** len -- length of buffer
1654 ** s1,s2 -- pointer to result strings
1657 ** MI_FAILURE/MI_SUCCESS
1661 dec_arg2(buf
, len
, s1
, s2
)
1669 /* paranoia: check for terminating '\0' */
1670 if (len
== 0 || buf
[len
- 1] != '\0')
1673 for (i
= 1; i
< len
&& buf
[i
] != '\0'; i
++)
1682 ** SENDOK -- is it ok for the filter to send stuff to the MTA?
1685 ** ctx -- context structure
1686 ** flag -- flag to check
1689 ** sending allowed (in current state)
1693 mi_sendok(ctx
, flag
)
1697 if (ctx
== NULL
|| ctx
->ctx_smfi
== NULL
)
1700 /* did the milter request this operation? */
1701 if (flag
!= 0 && !bitset(flag
, ctx
->ctx_aflags
))
1704 /* are we in the correct state? It must be "End of Message". */
1705 return ctx
->ctx_state
== ST_ENDM
;
1708 #if _FFR_WORKERS_POOL
1710 ** MI_RD_SOCKET_READY - checks if the socket is ready for read(2)
1716 ** true iff socket is ready for read(2)
1719 #define MI_RD_CMD_TO 1
1720 #define MI_RD_MAX_ERR 16
1723 mi_rd_socket_ready (sd
)
1730 #else /* SM_CONF_POLL */
1731 fd_set rd_set
, exc_set
;
1732 #endif /* SM_CONF_POLL */
1738 pfd
.events
= POLLIN
;
1741 n
= poll(&pfd
, 1, MI_RD_CMD_TO
);
1742 #else /* SM_CONF_POLL */
1743 struct timeval timeout
;
1747 FD_SET(sd
, &rd_set
);
1748 FD_SET(sd
, &exc_set
);
1750 timeout
.tv_sec
= MI_RD_CMD_TO
/ 1000;
1751 timeout
.tv_usec
= 0;
1752 n
= select(sd
+ 1, &rd_set
, NULL
, &exc_set
, &timeout
);
1753 #endif /* SM_CONF_POLL */
1768 } while (nerr
< MI_RD_MAX_ERR
);
1769 if (nerr
>= MI_RD_MAX_ERR
)
1773 return (pfd
.revents
!= 0);
1774 #else /* SM_CONF_POLL */
1775 return FD_ISSET(sd
, &rd_set
) || FD_ISSET(sd
, &exc_set
);
1776 #endif /* SM_CONF_POLL */
1778 #endif /* _FFR_WORKERS_POOL */