2 * Copyright (c) 1998-2007 Sendmail, Inc. and its suppliers.
4 * Copyright (c) 1983, 1995-1997 Eric P. Allman. All rights reserved.
5 * Copyright (c) 1988, 1993
6 * The Regents of the University of California. All rights reserved.
8 * By using this file, you agree to the terms and conditions set
9 * forth in the LICENSE file which can be found at the top level of
10 * the sendmail distribution.
17 SM_RCSID("@(#)$Id: daemon.c,v 8.678 2007/03/08 00:33:40 ca Exp $")
19 #if defined(SOCK_STREAM) || defined(__GNU_LIBRARY__)
20 # define USE_SOCK_STREAM 1
21 #endif /* defined(SOCK_STREAM) || defined(__GNU_LIBRARY__) */
23 #if defined(USE_SOCK_STREAM)
24 # if NETINET || NETINET6
25 # include <arpa/inet.h>
26 # endif /* NETINET || NETINET6 */
29 # define NO_DATA NO_ADDRESS
30 # endif /* ! NO_DATA */
31 # endif /* NAMED_BIND */
32 #endif /* defined(USE_SOCK_STREAM) */
35 # include <openssl/rand.h>
40 #if IP_SRCROUTE && NETINET
41 # include <netinet/in_systm.h>
42 # include <netinet/ip.h>
44 # include <netinet/in.h>
46 # define IPOPTION ip_opts
47 # define IP_LIST ip_opts
48 # define IP_DST ip_dst
49 # endif /* ! IPOPTION */
51 # include <netinet/ip_var.h>
53 # define IPOPTION ipoption
54 # define IP_LIST ipopt_list
55 # define IP_DST ipopt_dst
56 # endif /* ! IPOPTION */
57 # endif /* HAS_IN_H */
58 #endif /* IP_SRCROUTE && NETINET */
65 static void connecttimeout
__P((int));
66 static int opendaemonsocket
__P((DAEMON_T
*, bool));
67 static unsigned short setupdaemon
__P((SOCKADDR
*));
68 static void getrequests_checkdiskspace
__P((ENVELOPE
*e
));
69 static void setsockaddroptions
__P((char *, DAEMON_T
*));
70 static void printdaemonflags
__P((DAEMON_T
*));
71 static int addr_family
__P((char *));
72 static int addrcmp
__P((struct hostent
*, char *, SOCKADDR
*));
73 static void authtimeout
__P((int));
76 ** DAEMON.C -- routines to use when running as a daemon.
78 ** This entire file is highly dependent on the 4.2 BSD
79 ** interprocess communication primitives. No attempt has
80 ** been made to make this file portable to Version 7,
81 ** Version 6, MPX files, etc. If you should try such a
82 ** thing yourself, I recommend chucking the entire file
83 ** and starting from scratch. Basic semantics are:
86 ** Opens a port and initiates a connection.
87 ** Returns in a child. Must set InChannel and
88 ** OutChannel appropriately.
90 ** Close any open files associated with getting
91 ** the connection; this is used when running the queue,
92 ** etc., to avoid having extra file descriptors during
93 ** the queue run and to avoid confusing the network
94 ** code (if it cares).
95 ** makeconnection(host, port, mci, e, enough)
96 ** Make a connection to the named host on the given
97 ** port. Returns zero on success, else an exit status
98 ** describing the error.
99 ** host_map_lookup(map, hbuf, avp, pstat)
100 ** Convert the entry in hbuf into a canonical form.
103 static int NDaemons
= 0; /* actual number of daemons */
105 static time_t NextDiskSpaceCheck
= 0;
108 ** GETREQUESTS -- open mail IPC port and get requests.
111 ** e -- the current envelope.
117 ** Waits until some interesting activity occurs. When
118 ** it does, a child is created to process it, and the
119 ** parent waits for completion. Return from this
120 ** routine is always in the child. The file pointers
121 ** "InChannel" and "OutChannel" should be set to point
122 ** to the communication channel.
123 ** May restart persistent queue runners if they have ended
132 int idx
, curdaemon
= -1;
133 int i
, olddaemon
= 0;
137 char status
[MAXLINE
];
139 SOCKADDR_LEN_T len
= sizeof(sa
);
140 #if _FFR_QUEUE_RUN_PARANOIA
142 #endif /* _FFR_QUEUE_RUN_PARANOIA */
144 extern int ControlSocket
;
145 # endif /* NETUNIX */
146 extern ENVELOPE BlankEnvelope
;
149 /* initialize data for function that generates queue ids */
151 for (idx
= 0; idx
< NDaemons
; idx
++)
153 Daemons
[idx
].d_port
= setupdaemon(&(Daemons
[idx
].d_addr
));
154 Daemons
[idx
].d_firsttime
= true;
155 Daemons
[idx
].d_refuse_connections_until
= (time_t) 0;
159 ** Try to actually open the connection.
164 for (idx
= 0; idx
< NDaemons
; idx
++)
166 sm_dprintf("getrequests: daemon %s: port %d\n",
168 ntohs(Daemons
[idx
].d_port
));
172 /* get a socket for the SMTP connection */
173 for (idx
= 0; idx
< NDaemons
; idx
++)
174 Daemons
[idx
].d_socksize
= opendaemonsocket(&Daemons
[idx
], true);
176 if (opencontrolsocket() < 0)
177 sm_syslog(LOG_WARNING
, NOQID
,
178 "daemon could not open control socket %s: %s",
179 ControlSocketName
, sm_errstring(errno
));
181 /* If there are any queue runners released reapchild() co-ord's */
182 (void) sm_signal(SIGCHLD
, reapchild
);
184 /* write the pid to file, command line args to syslog */
189 char jbuf
[MAXHOSTNAMELEN
];
191 expand("\201j", jbuf
, sizeof(jbuf
), e
);
192 j_has_dot
= strchr(jbuf
, '.') != NULL
;
196 /* Add parent process as first item */
197 proc_list_add(CurrentPid
, "Sendmail daemon", PROC_DAEMON
, 0, -1, NULL
);
201 for (idx
= 0; idx
< NDaemons
; idx
++)
202 sm_dprintf("getrequests: daemon %s: %d\n",
204 Daemons
[idx
].d_socket
);
210 auto SOCKADDR_LEN_T lotherend
;
211 bool timedout
= false;
212 bool control
= false;
218 #endif /* STARTTLS */
220 /* see if we are rejecting connections */
221 (void) sm_blocksignal(SIGALRM
);
224 for (idx
= 0; idx
< NDaemons
; idx
++)
227 ** XXX do this call outside the loop?
228 ** no: refuse_connections may sleep().
232 if (now
< Daemons
[idx
].d_refuse_connections_until
)
234 if (bitnset(D_DISABLE
, Daemons
[idx
].d_flags
))
236 if (refuseconnections(e
, idx
, curdaemon
== idx
))
238 if (Daemons
[idx
].d_socket
>= 0)
240 /* close socket so peer fails quickly */
241 (void) close(Daemons
[idx
].d_socket
);
242 Daemons
[idx
].d_socket
= -1;
245 /* refuse connections for next 15 seconds */
246 Daemons
[idx
].d_refuse_connections_until
= now
+ 15;
248 else if (Daemons
[idx
].d_socket
< 0 ||
249 Daemons
[idx
].d_firsttime
)
251 if (!Daemons
[idx
].d_firsttime
&& LogLevel
> 8)
252 sm_syslog(LOG_INFO
, NOQID
,
253 "accepting connections again for daemon %s",
254 Daemons
[idx
].d_name
);
256 /* arrange to (re)open the socket if needed */
257 (void) opendaemonsocket(&Daemons
[idx
], false);
258 Daemons
[idx
].d_firsttime
= false;
262 /* May have been sleeping above, check again */
265 getrequests_checkdiskspace(e
);
268 /* check for disaster */
270 char jbuf
[MAXHOSTNAMELEN
];
272 expand("\201j", jbuf
, sizeof(jbuf
), e
);
273 if (!wordinclass(jbuf
, 'w'))
275 dumpstate("daemon lost $j");
276 sm_syslog(LOG_ALERT
, NOQID
,
277 "daemon process doesn't have $j in $=w; see syslog");
280 else if (j_has_dot
&& strchr(jbuf
, '.') == NULL
)
282 dumpstate("daemon $j lost dot");
283 sm_syslog(LOG_ALERT
, NOQID
,
284 "daemon process $j lost dot; see syslog");
292 ** Andrew Sun <asun@ieps-sun.ml.com> claims that this will
293 ** fix the SVr4 problem. But it seems to have gone away,
294 ** so is it worth doing this?
297 if (DaemonSocket
>= 0 &&
298 SetNonBlocking(DaemonSocket
, false) < 0)
301 (void) sm_releasesignal(SIGALRM
);
305 bool setproc
= false;
308 struct timeval timeout
;
312 for (idx
= 0; idx
< NDaemons
; idx
++)
314 /* wait for a connection */
315 if (Daemons
[idx
].d_socket
>= 0)
319 Daemons
[idx
].d_flags
))
321 sm_setproctitle(true, e
,
322 "accepting connections");
325 if (Daemons
[idx
].d_socket
> highest
)
326 highest
= Daemons
[idx
].d_socket
;
327 SM_FD_SET(Daemons
[idx
].d_socket
,
333 if (ControlSocket
>= 0)
335 if (ControlSocket
> highest
)
336 highest
= ControlSocket
;
337 SM_FD_SET(ControlSocket
, &readfds
);
344 t
= select(highest
+ 1, FDSET_CAST
&readfds
,
345 NULL
, NULL
, &timeout
);
347 /* Did someone signal while waiting? */
353 (void) runqueue(true, false, false, false);
354 #if _FFR_QUEUE_RUN_PARANOIA
356 #endif /* _FFR_QUEUE_RUN_PARANOIA */
358 #if _FFR_QUEUE_RUN_PARANOIA
359 else if (CheckQueueRunners
> 0 && QueueIntvl
> 0 &&
360 lastrun
+ QueueIntvl
+ CheckQueueRunners
< now
)
364 ** set lastrun unconditionally to avoid
365 ** calling checkqueuerunner() all the time.
366 ** That's also why we currently ignore the
367 ** result of the function call.
370 (void) checkqueuerunner();
373 #endif /* _FFR_QUEUE_RUN_PARANOIA */
384 /* look "round-robin" for an active socket */
385 if ((idx
= olddaemon
+ 1) >= NDaemons
)
387 for (i
= 0; i
< NDaemons
; i
++)
389 if (Daemons
[idx
].d_socket
>= 0 &&
390 SM_FD_ISSET(Daemons
[idx
].d_socket
,
393 lotherend
= Daemons
[idx
].d_socksize
;
394 memset(&RealHostAddr
, '\0',
395 sizeof(RealHostAddr
));
396 t
= accept(Daemons
[idx
].d_socket
,
397 (struct sockaddr
*)&RealHostAddr
,
401 ** If remote side closes before
402 ** accept() finishes, sockaddr
403 ** might not be fully filled in.
408 # ifdef BSD4_4_SOCKADDR
409 RealHostAddr
.sa
.sa_len
== 0 ||
410 # endif /* BSD4_4_SOCKADDR */
411 RealHostAddr
.sa
.sa_family
!= Daemons
[idx
].d_addr
.sa
.sa_family
))
417 olddaemon
= curdaemon
= idx
;
420 if (++idx
>= NDaemons
)
424 if (curdaemon
== -1 && ControlSocket
>= 0 &&
425 SM_FD_ISSET(ControlSocket
, &readfds
))
427 struct sockaddr_un sa_un
;
429 lotherend
= sizeof(sa_un
);
430 memset(&sa_un
, '\0', sizeof(sa_un
));
431 t
= accept(ControlSocket
,
432 (struct sockaddr
*)&sa_un
,
436 ** If remote side closes before
437 ** accept() finishes, sockaddr
438 ** might not be fully filled in.
443 # ifdef BSD4_4_SOCKADDR
444 sa_un
.sun_len
== 0 ||
445 # endif /* BSD4_4_SOCKADDR */
446 sa_un
.sun_family
!= AF_UNIX
))
458 /* No daemon to service */
462 if (t
>= 0 || errno
!= EINTR
)
471 (void) sm_blocksignal(SIGALRM
);
476 /* let's ignore these temporary errors */
477 if (save_errno
== EINTR
479 || save_errno
== EAGAIN
482 || save_errno
== ECONNABORTED
483 #endif /* ECONNABORTED */
485 || save_errno
== EWOULDBLOCK
486 #endif /* EWOULDBLOCK */
490 syserr("getrequests: accept");
494 /* arrange to re-open socket next time around */
495 (void) close(Daemons
[curdaemon
].d_socket
);
496 Daemons
[curdaemon
].d_socket
= -1;
497 #if SO_REUSEADDR_IS_BROKEN
499 ** Give time for bound socket to be released.
500 ** This creates a denial-of-service if you can
501 ** force accept() to fail on affected systems.
504 Daemons
[curdaemon
].d_refuse_connections_until
=
506 #endif /* SO_REUSEADDR_IS_BROKEN */
513 /* set some daemon related macros */
514 switch (Daemons
[curdaemon
].d_addr
.sa
.sa_family
)
517 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
518 macid("{daemon_family}"), "unspec");
520 #if _FFR_DAEMON_NETUNIX
523 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
524 macid("{daemon_family}"), "local");
526 # endif /* NETUNIX */
527 #endif /* _FFR_DAEMON_NETUNIX */
530 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
531 macid("{daemon_family}"), "inet");
536 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
537 macid("{daemon_family}"), "inet6");
539 #endif /* NETINET6 */
542 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
543 macid("{daemon_family}"), "iso");
548 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
549 macid("{daemon_family}"), "ns");
554 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
555 macid("{daemon_family}"), "x.25");
559 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
560 macid("{daemon_name}"),
561 Daemons
[curdaemon
].d_name
);
562 if (Daemons
[curdaemon
].d_mflags
!= NULL
)
563 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
564 macid("{daemon_flags}"),
565 Daemons
[curdaemon
].d_mflags
);
567 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
568 macid("{daemon_flags}"), "");
572 ** If connection rate is exceeded here, connection shall be
573 ** refused later by a new call after fork() by the
574 ** validate_connection() function. Closing the connection
575 ** at this point violates RFC 2821.
576 ** Do NOT remove this call, its side effects are needed.
579 connection_rate_check(&RealHostAddr
, NULL
);
582 ** Create a subprocess to process the mail.
586 sm_dprintf("getrequests: forking (fd = %d)\n", t
);
589 ** Advance state of PRNG.
590 ** This is necessary because otherwise all child processes
591 ** will produce the same PRN sequence and hence the selection
592 ** of a queue directory (and other things, e.g., MX selection)
593 ** are not "really" random.
596 /* XXX get some better "random" data? */
598 RAND_seed((void *) &NextDiskSpaceCheck
,
599 sizeof(NextDiskSpaceCheck
));
600 RAND_seed((void *) &now
, sizeof(now
));
601 RAND_seed((void *) &seed
, sizeof(seed
));
604 #endif /* STARTTLS */
608 ** Update MX records for FallbackMX.
609 ** Let's hope this is fast otherwise we screw up the
613 if (FallbackMX
!= NULL
)
614 (void) getfallbackmxrr(FallbackMX
);
615 #endif /* NAMED_BIND */
619 /* don't fork, handle connection in this process */
621 pipefd
[0] = pipefd
[1] = -1;
626 ** Create a pipe to keep the child from writing to
627 ** the socket until after the parent has closed
628 ** it. Otherwise the parent may hang if the child
629 ** has closed it first.
632 if (pipe(pipefd
) < 0)
633 pipefd
[0] = pipefd
[1] = -1;
635 (void) sm_blocksignal(SIGCHLD
);
639 syserr("daemon: cannot fork");
642 (void) close(pipefd
[0]);
643 (void) close(pipefd
[1]);
645 (void) sm_releasesignal(SIGCHLD
);
655 SM_FILE_T
*inchannel
, *outchannel
= NULL
;
658 ** CHILD -- return to caller.
659 ** Collect verified idea of sending host.
660 ** Verify calling user id if possible here.
663 /* Reset global flags */
664 RestartRequest
= NULL
;
665 RestartWorkGroup
= false;
666 ShutdownRequest
= NULL
;
668 CurrentPid
= getpid();
669 close_sendmail_pid();
671 (void) sm_releasesignal(SIGALRM
);
672 (void) sm_releasesignal(SIGCHLD
);
673 (void) sm_signal(SIGCHLD
, SIG_DFL
);
674 (void) sm_signal(SIGHUP
, SIG_DFL
);
675 (void) sm_signal(SIGTERM
, intsig
);
677 /* turn on profiling */
681 ** Initialize exception stack and default exception
682 ** handler for child process.
685 sm_exc_newthread(fatal_error
);
689 macdefine(&BlankEnvelope
.e_macro
, A_TEMP
,
690 macid("{daemon_addr}"),
691 anynet_ntoa(&Daemons
[curdaemon
].d_addr
));
692 (void) sm_snprintf(status
, sizeof(status
), "%d",
693 ntohs(Daemons
[curdaemon
].d_port
));
694 macdefine(&BlankEnvelope
.e_macro
, A_TEMP
,
695 macid("{daemon_port}"), status
);
698 for (idx
= 0; idx
< NDaemons
; idx
++)
700 if (Daemons
[idx
].d_socket
>= 0)
701 (void) close(Daemons
[idx
].d_socket
);
702 Daemons
[idx
].d_socket
= -1;
706 /* Avoid SMTP daemon actions if control command */
709 /* Add control socket process */
710 proc_list_add(CurrentPid
,
711 "console socket child",
712 PROC_CONTROL_CHILD
, 0, -1, NULL
);
718 /* clean up background delivery children */
719 (void) sm_signal(SIGCHLD
, reapchild
);
721 /* Add parent process as first child item */
722 proc_list_add(CurrentPid
, "daemon child",
723 PROC_DAEMON_CHILD
, 0, -1, NULL
);
724 /* don't schedule queue runs if ETRN */
728 ** Hack: override global variables if
729 ** the corresponding DaemonPortOption
732 #if _FFR_SS_PER_DAEMON
733 if (Daemons
[curdaemon
].d_supersafe
!=
735 SuperSafe
= Daemons
[curdaemon
].
737 #endif /* _FFR_SS_PER_DAEMON */
738 if (Daemons
[curdaemon
].d_dm
!= DM_NOTSET
)
740 Daemons
[curdaemon
].d_dm
, e
);
742 if (Daemons
[curdaemon
].d_refuseLA
!=
744 RefuseLA
= Daemons
[curdaemon
].
746 if (Daemons
[curdaemon
].d_queueLA
!= DPO_NOTSET
)
747 QueueLA
= Daemons
[curdaemon
].d_queueLA
;
748 if (Daemons
[curdaemon
].d_delayLA
!= DPO_NOTSET
)
749 DelayLA
= Daemons
[curdaemon
].d_delayLA
;
750 if (Daemons
[curdaemon
].d_maxchildren
!=
752 MaxChildren
= Daemons
[curdaemon
].
755 sm_setproctitle(true, e
, "startup with %s",
756 anynet_ntoa(&RealHostAddr
));
764 ** Wait for the parent to close the write end
765 ** of the pipe, which we will see as an EOF.
766 ** This guarantees that we won't write to the
767 ** socket until after the parent has closed
771 /* close the write end of the pipe */
772 (void) close(pipefd
[1]);
774 /* we shouldn't be interrupted, but ... */
775 while (read(pipefd
[0], &c
, 1) < 0 &&
778 (void) close(pipefd
[0]);
781 /* control socket processing */
784 control_command(t
, e
);
789 /* determine host name */
790 p
= hostnamebyanyaddr(&RealHostAddr
);
791 if (strlen(p
) > MAXNAME
) /* XXX - 1 ? */
793 RealHostName
= newstr(p
);
794 if (RealHostName
[0] == '[')
796 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
797 macid("{client_resolve}"),
798 h_errno
== TRY_AGAIN
? "TEMP" : "FAIL");
802 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
803 macid("{client_resolve}"), "OK");
805 sm_setproctitle(true, e
, "startup with %s", p
);
806 markstats(e
, NULL
, STATS_CONNECT
);
808 if ((inchannel
= sm_io_open(SmFtStdiofd
,
814 (outchannel
= sm_io_open(SmFtStdiofd
,
820 syserr("cannot open SMTP server channel, fd=%d",
822 finis(false, true, EX_OK
);
824 sm_io_automode(inchannel
, outchannel
);
826 InChannel
= inchannel
;
827 OutChannel
= outchannel
;
828 DisConnected
= false;
831 if (!xla_host_ok(RealHostName
))
833 message("421 4.4.5 Too many SMTP sessions for this host");
834 finis(false, true, EX_OK
);
837 /* find out name for interface of connection */
838 if (getsockname(sm_io_getinfo(InChannel
, SM_IO_WHAT_FD
,
839 NULL
), &sa
.sa
, &len
) == 0)
841 p
= hostnamebyanyaddr(&sa
);
843 sm_dprintf("getreq: got name %s\n", p
);
844 macdefine(&BlankEnvelope
.e_macro
, A_TEMP
,
845 macid("{if_name}"), p
);
848 ** Do this only if it is not the loopback
857 addr
= anynet_ntoa(&sa
);
858 (void) sm_snprintf(family
,
860 "%d", sa
.sa
.sa_family
);
861 macdefine(&BlankEnvelope
.e_macro
,
863 macid("{if_addr}"), addr
);
864 macdefine(&BlankEnvelope
.e_macro
,
866 macid("{if_family}"), family
);
868 sm_dprintf("getreq: got addr %s and family %s\n",
873 macdefine(&BlankEnvelope
.e_macro
,
875 macid("{if_addr}"), NULL
);
876 macdefine(&BlankEnvelope
.e_macro
,
878 macid("{if_family}"), NULL
);
884 sm_dprintf("getreq: getsockname failed\n");
885 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
886 macid("{if_name}"), NULL
);
887 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
888 macid("{if_addr}"), NULL
);
889 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
890 macid("{if_family}"), NULL
);
895 /* parent -- keep track of children */
898 (void) sm_snprintf(status
, sizeof(status
),
899 "control socket server child");
900 proc_list_add(pid
, status
, PROC_CONTROL
, 0, -1, NULL
);
904 (void) sm_snprintf(status
, sizeof(status
),
905 "SMTP server child for %s",
906 anynet_ntoa(&RealHostAddr
));
907 proc_list_add(pid
, status
, PROC_DAEMON
, 0, -1,
910 (void) sm_releasesignal(SIGCHLD
);
912 /* close the read end of the synchronization pipe */
915 (void) close(pipefd
[0]);
919 /* close the port so that others will hang (for a while) */
922 /* release the child by closing the read end of the sync pipe */
925 (void) close(pipefd
[1]);
930 sm_dprintf("getreq: returning\n");
933 /* set the filters for this daemon */
934 if (Daemons
[curdaemon
].d_inputfilterlist
!= NULL
)
938 Daemons
[curdaemon
].d_inputfilters
[i
] != NULL
);
941 InputFilters
[i
] = Daemons
[curdaemon
].d_inputfilters
[i
];
944 InputFilters
[i
] = NULL
;
947 return &Daemons
[curdaemon
].d_flags
;
951 ** GETREQUESTS_CHECKDISKSPACE -- check available diskspace.
960 ** Modifies Daemon flags (D_ETRNONLY) if not enough disk space.
964 getrequests_checkdiskspace(e
)
972 if (now
< NextDiskSpaceCheck
)
975 /* Check if there is available disk space in all queue groups. */
976 if (!enoughdiskspace(0, NULL
))
978 for (idx
= 0; idx
< NDaemons
; ++idx
)
980 if (bitnset(D_ETRNONLY
, Daemons
[idx
].d_flags
))
983 /* log only if not logged before */
987 sm_syslog(LOG_INFO
, NOQID
,
988 "rejecting new messages: min free: %ld",
990 sm_setproctitle(true, e
,
991 "rejecting new messages: min free: %ld",
995 setbitn(D_ETRNONLY
, Daemons
[idx
].d_flags
);
1000 for (idx
= 0; idx
< NDaemons
; ++idx
)
1002 if (!bitnset(D_ETRNONLY
, Daemons
[idx
].d_flags
))
1005 /* log only if not logged before */
1009 sm_syslog(LOG_INFO
, NOQID
,
1010 "accepting new messages (again)");
1014 /* title will be set later */
1015 clrbitn(D_ETRNONLY
, Daemons
[idx
].d_flags
);
1019 /* only check disk space once a minute */
1020 NextDiskSpaceCheck
= now
+ 60;
1024 ** OPENDAEMONSOCKET -- open SMTP socket
1026 ** Deals with setting all appropriate options.
1029 ** d -- the structure for the daemon to open.
1030 ** firsttime -- set if this is the initial open.
1033 ** Size in bytes of the daemon socket addr.
1036 ** Leaves DaemonSocket set to the open socket.
1037 ** Exits if the socket cannot be created.
1040 #define MAXOPENTRIES 10 /* maximum number of tries to open connection */
1043 opendaemonsocket(d
, firsttime
)
1049 SOCKADDR_LEN_T socksize
= 0;
1054 sm_dprintf("opendaemonsocket(%s)\n", d
->d_name
);
1060 if (firsttime
|| d
->d_socket
< 0)
1062 #if _FFR_DAEMON_NETUNIX
1064 if (d
->d_addr
.sa
.sa_family
== AF_UNIX
)
1067 long sff
= SFF_SAFEDIRPATH
|SFF_OPENASROOT
|SFF_NOLINK
|SFF_ROOTOK
|SFF_EXECOK
|SFF_CREAT
;
1069 /* if not safe, don't use it */
1070 rval
= safefile(d
->d_addr
.sunix
.sun_path
,
1073 S_IRUSR
|S_IWUSR
, NULL
);
1077 syserr("opendaemonsocket: daemon %s: unsafe domain socket %s",
1079 d
->d_addr
.sunix
.sun_path
);
1083 /* Don't try to overtake an existing socket */
1084 (void) unlink(d
->d_addr
.sunix
.sun_path
);
1086 # endif /* NETUNIX */
1087 #endif /* _FFR_DOMAIN_NETUNIX */
1088 d
->d_socket
= socket(d
->d_addr
.sa
.sa_family
,
1090 if (d
->d_socket
< 0)
1093 syserr("opendaemonsocket: daemon %s: can't create server SMTP socket",
1096 if (bitnset(D_OPTIONAL
, d
->d_flags
) &&
1097 (!transienterror(save_errno
) ||
1098 ntries
>= MAXOPENTRIES
- 1))
1100 syserr("opendaemonsocket: daemon %s: optional socket disabled",
1102 setbitn(D_DISABLE
, d
->d_flags
);
1108 sm_syslog(LOG_ALERT
, NOQID
,
1109 "daemon %s: problem creating SMTP socket",
1115 if (SM_FD_SETSIZE
> 0 && d
->d_socket
>= SM_FD_SETSIZE
)
1117 save_errno
= EINVAL
;
1118 syserr("opendaemonsocket: daemon %s: server SMTP socket (%d) too large",
1119 d
->d_name
, d
->d_socket
);
1123 /* turn on network debugging? */
1125 (void) setsockopt(d
->d_socket
, SOL_SOCKET
,
1126 SO_DEBUG
, (char *)&on
,
1129 (void) setsockopt(d
->d_socket
, SOL_SOCKET
,
1130 SO_REUSEADDR
, (char *)&on
, sizeof(on
));
1131 (void) setsockopt(d
->d_socket
, SOL_SOCKET
,
1132 SO_KEEPALIVE
, (char *)&on
, sizeof(on
));
1135 if (d
->d_tcprcvbufsize
> 0)
1137 if (setsockopt(d
->d_socket
, SOL_SOCKET
,
1139 (char *) &d
->d_tcprcvbufsize
,
1140 sizeof(d
->d_tcprcvbufsize
)) < 0)
1141 syserr("opendaemonsocket: daemon %s: setsockopt(SO_RCVBUF)", d
->d_name
);
1143 #endif /* SO_RCVBUF */
1145 if (d
->d_tcpsndbufsize
> 0)
1147 if (setsockopt(d
->d_socket
, SOL_SOCKET
,
1149 (char *) &d
->d_tcpsndbufsize
,
1150 sizeof(d
->d_tcpsndbufsize
)) < 0)
1151 syserr("opendaemonsocket: daemon %s: setsockopt(SO_SNDBUF)", d
->d_name
);
1153 #endif /* SO_SNDBUF */
1155 if ((fdflags
= fcntl(d
->d_socket
, F_GETFD
, 0)) == -1 ||
1156 fcntl(d
->d_socket
, F_SETFD
,
1157 fdflags
| FD_CLOEXEC
) == -1)
1160 syserr("opendaemonsocket: daemon %s: failed to %s close-on-exec flag: %s",
1162 fdflags
== -1 ? "get" : "set",
1163 sm_errstring(save_errno
));
1164 (void) close(d
->d_socket
);
1168 switch (d
->d_addr
.sa
.sa_family
)
1170 #if _FFR_DAEMON_NETUNIX
1173 socksize
= sizeof(d
->d_addr
.sunix
);
1175 # endif /* NETUNIX */
1176 #endif /* _FFR_DAEMON_NETUNIX */
1179 socksize
= sizeof(d
->d_addr
.sin
);
1181 #endif /* NETINET */
1185 socksize
= sizeof(d
->d_addr
.sin6
);
1187 #endif /* NETINET6 */
1191 socksize
= sizeof(d
->d_addr
.siso
);
1196 socksize
= sizeof(d
->d_addr
);
1200 if (bind(d
->d_socket
, &d
->d_addr
.sa
, socksize
) < 0)
1202 /* probably another daemon already */
1204 syserr("opendaemonsocket: daemon %s: cannot bind",
1206 (void) close(d
->d_socket
);
1211 listen(d
->d_socket
, d
->d_listenqueue
) < 0)
1214 syserr("opendaemonsocket: daemon %s: cannot listen",
1216 (void) close(d
->d_socket
);
1220 } while (ntries
++ < MAXOPENTRIES
&& transienterror(save_errno
));
1221 syserr("!opendaemonsocket: daemon %s: server SMTP socket wedged: exiting",
1224 return -1; /* avoid compiler warning on IRIX */
1227 ** SETUPDAEMON -- setup socket for daemon
1230 ** daemonaddr -- socket for daemon
1233 ** port number on which daemon should run
1237 static unsigned short
1238 setupdaemon(daemonaddr
)
1239 SOCKADDR
*daemonaddr
;
1241 unsigned short port
;
1244 ** Set up the address for the mailer.
1247 if (daemonaddr
->sa
.sa_family
== AF_UNSPEC
)
1249 memset(daemonaddr
, '\0', sizeof(*daemonaddr
));
1251 daemonaddr
->sa
.sa_family
= AF_INET
;
1252 #endif /* NETINET */
1255 switch (daemonaddr
->sa
.sa_family
)
1259 if (daemonaddr
->sin
.sin_addr
.s_addr
== 0)
1260 daemonaddr
->sin
.sin_addr
.s_addr
= INADDR_ANY
;
1261 port
= daemonaddr
->sin
.sin_port
;
1263 #endif /* NETINET */
1267 if (IN6_IS_ADDR_UNSPECIFIED(&daemonaddr
->sin6
.sin6_addr
))
1268 daemonaddr
->sin6
.sin6_addr
= in6addr_any
;
1269 port
= daemonaddr
->sin6
.sin6_port
;
1271 #endif /* NETINET6 */
1274 /* unknown protocol */
1280 #ifdef NO_GETSERVBYNAME
1282 #else /* NO_GETSERVBYNAME */
1284 register struct servent
*sp
;
1286 sp
= getservbyname("smtp", "tcp");
1289 syserr("554 5.3.5 service \"smtp\" unknown");
1295 #endif /* NO_GETSERVBYNAME */
1298 switch (daemonaddr
->sa
.sa_family
)
1302 daemonaddr
->sin
.sin_port
= port
;
1304 #endif /* NETINET */
1308 daemonaddr
->sin6
.sin6_port
= port
;
1310 #endif /* NETINET6 */
1313 /* unknown protocol */
1319 ** CLRDAEMON -- reset the daemon connection
1328 ** releases any resources used by the passive daemon.
1336 for (i
= 0; i
< NDaemons
; i
++)
1338 if (Daemons
[i
].d_socket
>= 0)
1339 (void) close(Daemons
[i
].d_socket
);
1340 Daemons
[i
].d_socket
= -1;
1345 ** GETMODIFIERS -- get modifier flags
1348 ** v -- the modifiers (input text line).
1349 ** modifiers -- pointer to flag field to represent modifiers.
1352 ** (xallocat()ed) string representation of modifiers.
1355 ** fills in modifiers.
1359 getmodifiers(v
, modifiers
)
1361 BITMAP256 modifiers
;
1364 char *h
, *f
, *flags
;
1366 /* maximum length of flags: upper case Option -> "OO " */
1367 l
= 3 * strlen(v
) + 3;
1369 /* is someone joking? */
1370 if (l
< 0 || l
> 256)
1373 sm_syslog(LOG_ERR
, NOQID
,
1374 "getmodifiers too long, ignored");
1379 clrbitmap(modifiers
);
1380 for (h
= v
; *h
!= '\0'; h
++)
1382 if (isascii(*h
) && !isspace(*h
) && isprint(*h
))
1384 setbitn(*h
, modifiers
);
1397 ** CHKDAEMONMODIFIERS -- check whether all daemons have set a flag.
1400 ** flag -- the flag to test.
1403 ** true iff all daemons have set flag.
1407 chkdaemonmodifiers(flag
)
1412 for (i
= 0; i
< NDaemons
; i
++)
1413 if (!bitnset((char) flag
, Daemons
[i
].d_flags
))
1419 ** SETSOCKADDROPTIONS -- set options for SOCKADDR (daemon or client)
1422 ** p -- the options line.
1423 ** d -- the daemon structure to fill in.
1430 setsockaddroptions(p
, d
)
1441 if (d
->d_addr
.sa
.sa_family
== AF_UNSPEC
)
1442 d
->d_addr
.sa
.sa_family
= AF_INET
;
1443 #endif /* NETINET */
1444 #if _FFR_SS_PER_DAEMON
1445 d
->d_supersafe
= DPO_NOTSET
;
1446 #endif /* _FFR_SS_PER_DAEMON */
1447 d
->d_dm
= DM_NOTSET
;
1448 d
->d_refuseLA
= DPO_NOTSET
;
1449 d
->d_queueLA
= DPO_NOTSET
;
1450 d
->d_delayLA
= DPO_NOTSET
;
1451 d
->d_maxchildren
= DPO_NOTSET
;
1458 while (isascii(*p
) && isspace(*p
))
1469 while (isascii(*++v
) && isspace(*v
))
1474 case 'A': /* address */
1477 #endif /* !_FFR_DPO_CS */
1482 d
->d_maxchildren
= atoi(v
);
1485 case 'D': /* DeliveryMode */
1495 syserr("554 5.3.5 Unknown delivery mode %c",
1501 case 'd': /* delayLA */
1502 d
->d_delayLA
= atoi(v
);
1505 case 'F': /* address family */
1508 #endif /* !_FFR_DPO_CS */
1509 if (isascii(*v
) && isdigit(*v
))
1510 d
->d_addr
.sa
.sa_family
= atoi(v
);
1511 #if _FFR_DAEMON_NETUNIX
1513 else if (sm_strcasecmp(v
, "unix") == 0 ||
1514 sm_strcasecmp(v
, "local") == 0)
1515 d
->d_addr
.sa
.sa_family
= AF_UNIX
;
1516 # endif /* NETUNIX */
1517 #endif /* _FFR_DAEMON_NETUNIX */
1519 else if (sm_strcasecmp(v
, "inet") == 0)
1520 d
->d_addr
.sa
.sa_family
= AF_INET
;
1521 #endif /* NETINET */
1523 else if (sm_strcasecmp(v
, "inet6") == 0)
1524 d
->d_addr
.sa
.sa_family
= AF_INET6
;
1525 #endif /* NETINET6 */
1527 else if (sm_strcasecmp(v
, "iso") == 0)
1528 d
->d_addr
.sa
.sa_family
= AF_ISO
;
1531 else if (sm_strcasecmp(v
, "ns") == 0)
1532 d
->d_addr
.sa
.sa_family
= AF_NS
;
1535 else if (sm_strcasecmp(v
, "x.25") == 0)
1536 d
->d_addr
.sa
.sa_family
= AF_CCITT
;
1539 syserr("554 5.3.5 Unknown address family %s in Family=option",
1547 # endif /* !_FFR_DPO_CS */
1548 d
->d_inputfilterlist
= v
;
1552 case 'L': /* listen queue size */
1555 #endif /* !_FFR_DPO_CS */
1556 d
->d_listenqueue
= atoi(v
);
1559 case 'M': /* modifiers (flags) */
1562 #endif /* !_FFR_DPO_CS */
1563 d
->d_mflags
= getmodifiers(v
, d
->d_flags
);
1566 case 'N': /* name */
1569 #endif /* !_FFR_DPO_CS */
1573 case 'P': /* port */
1576 #endif /* !_FFR_DPO_CS */
1581 d
->d_queueLA
= atoi(v
);
1584 case 'R': /* receive buffer size */
1585 d
->d_tcprcvbufsize
= atoi(v
);
1589 d
->d_refuseLA
= atoi(v
);
1592 case 'S': /* send buffer size */
1595 #endif /* !_FFR_DPO_CS */
1596 d
->d_tcpsndbufsize
= atoi(v
);
1599 #if _FFR_SS_PER_DAEMON
1600 case 'T': /* SuperSafe */
1601 if (tolower(*v
) == 'i')
1602 d
->d_supersafe
= SAFE_INTERACTIVE
;
1603 else if (tolower(*v
) == 'p')
1605 d
->d_supersafe
= SAFE_REALLY_POSTMILTER
;
1607 (void) sm_io_fprintf(smioout
, SM_TIME_DEFAULT
,
1608 "Warning: SuperSafe=PostMilter requires Milter support (-DMILTER)\n");
1609 # endif /* MILTER */
1611 d
->d_supersafe
= atobool(v
) ? SAFE_REALLY
1614 #endif /* _FFR_SS_PER_DAEMON */
1617 syserr("554 5.3.5 PortOptions parameter \"%s\" unknown",
1622 /* Check addr and port after finding family */
1625 switch (d
->d_addr
.sa
.sa_family
)
1627 #if _FFR_DAEMON_NETUNIX
1630 if (strlen(addr
) >= sizeof(d
->d_addr
.sunix
.sun_path
))
1632 errno
= ENAMETOOLONG
;
1633 syserr("setsockaddroptions: domain socket name too long: %s > %d",
1634 addr
, sizeof(d
->d_addr
.sunix
.sun_path
));
1638 /* file safety check done in opendaemonsocket() */
1639 (void) memset(&d
->d_addr
.sunix
.sun_path
, '\0',
1640 sizeof(d
->d_addr
.sunix
.sun_path
));
1641 (void) sm_strlcpy((char *)&d
->d_addr
.sunix
.sun_path
,
1643 sizeof(d
->d_addr
.sunix
.sun_path
));
1645 # endif /* NETUNIX */
1646 #endif /* _FFR_DAEMON_NETUNIX */
1649 if (!isascii(*addr
) || !isdigit(*addr
) ||
1650 ((d
->d_addr
.sin
.sin_addr
.s_addr
= inet_addr(addr
))
1653 register struct hostent
*hp
;
1655 hp
= sm_gethostbyname(addr
, AF_INET
);
1657 syserr("554 5.3.0 host \"%s\" unknown",
1661 while (*(hp
->h_addr_list
) != NULL
&&
1662 hp
->h_addrtype
!= AF_INET
)
1664 if (*(hp
->h_addr_list
) == NULL
)
1665 syserr("554 5.3.0 host \"%s\" unknown",
1668 memmove(&d
->d_addr
.sin
.sin_addr
,
1674 # endif /* NETINET6 */
1678 #endif /* NETINET */
1682 if (anynet_pton(AF_INET6
, addr
,
1683 &d
->d_addr
.sin6
.sin6_addr
) != 1)
1685 register struct hostent
*hp
;
1687 hp
= sm_gethostbyname(addr
, AF_INET6
);
1689 syserr("554 5.3.0 host \"%s\" unknown",
1693 while (*(hp
->h_addr_list
) != NULL
&&
1694 hp
->h_addrtype
!= AF_INET6
)
1696 if (*(hp
->h_addr_list
) == NULL
)
1697 syserr("554 5.3.0 host \"%s\" unknown",
1700 memmove(&d
->d_addr
.sin6
.sin6_addr
,
1708 #endif /* NETINET6 */
1711 syserr("554 5.3.5 address= option unsupported for family %d",
1712 d
->d_addr
.sa
.sa_family
);
1719 switch (d
->d_addr
.sa
.sa_family
)
1723 if (isascii(*port
) && isdigit(*port
))
1724 d
->d_addr
.sin
.sin_port
= htons((unsigned short)
1725 atoi((const char *) port
));
1728 # ifdef NO_GETSERVBYNAME
1729 syserr("554 5.3.5 invalid port number: %s",
1731 # else /* NO_GETSERVBYNAME */
1732 register struct servent
*sp
;
1734 sp
= getservbyname(port
, "tcp");
1736 syserr("554 5.3.5 service \"%s\" unknown",
1739 d
->d_addr
.sin
.sin_port
= sp
->s_port
;
1740 # endif /* NO_GETSERVBYNAME */
1743 #endif /* NETINET */
1747 if (isascii(*port
) && isdigit(*port
))
1748 d
->d_addr
.sin6
.sin6_port
= htons((unsigned short)
1752 # ifdef NO_GETSERVBYNAME
1753 syserr("554 5.3.5 invalid port number: %s",
1755 # else /* NO_GETSERVBYNAME */
1756 register struct servent
*sp
;
1758 sp
= getservbyname(port
, "tcp");
1760 syserr("554 5.3.5 service \"%s\" unknown",
1763 d
->d_addr
.sin6
.sin6_port
= sp
->s_port
;
1764 # endif /* NO_GETSERVBYNAME */
1767 #endif /* NETINET6 */
1771 /* assume two byte transport selector */
1772 if (isascii(*port
) && isdigit(*port
))
1773 portno
= htons((unsigned short) atoi(port
));
1776 # ifdef NO_GETSERVBYNAME
1777 syserr("554 5.3.5 invalid port number: %s",
1779 # else /* NO_GETSERVBYNAME */
1780 register struct servent
*sp
;
1782 sp
= getservbyname(port
, "tcp");
1784 syserr("554 5.3.5 service \"%s\" unknown",
1787 portno
= sp
->s_port
;
1788 # endif /* NO_GETSERVBYNAME */
1790 memmove(TSEL(&d
->d_addr
.siso
),
1791 (char *) &portno
, 2);
1796 syserr("554 5.3.5 Port= option unsupported for family %d",
1797 d
->d_addr
.sa
.sa_family
);
1803 ** SETDAEMONOPTIONS -- set options for running the MTA daemon
1806 ** p -- the options line.
1809 ** true if successful, false otherwise.
1812 ** increments number of daemons.
1815 #define DEF_LISTENQUEUE 10
1823 static struct dflags DaemonFlags
[] =
1825 { "AUTHREQ", D_AUTHREQ
},
1826 { "BINDIF", D_BINDIF
},
1827 { "CANONREQ", D_CANONREQ
},
1828 { "IFNHELO", D_IFNHELO
},
1829 { "FQMAIL", D_FQMAIL
},
1830 { "FQRCPT", D_FQRCPT
},
1831 { "SMTPS", D_SMTPS
},
1832 { "UNQUALOK", D_UNQUALOK
},
1833 { "NOAUTH", D_NOAUTH
},
1834 { "NOCANON", D_NOCANON
},
1835 { "NOETRN", D_NOETRN
},
1836 { "NOTLS", D_NOTLS
},
1837 { "ETRNONLY", D_ETRNONLY
},
1838 { "OPTIONAL", D_OPTIONAL
},
1839 { "DISABLE", D_DISABLE
},
1840 { "ISSET", D_ISSET
},
1848 register struct dflags
*df
;
1851 for (df
= DaemonFlags
; df
->d_name
!= NULL
; df
++)
1853 if (!bitnset(df
->d_flag
, d
->d_flags
))
1856 sm_dprintf("<%s", df
->d_name
);
1858 sm_dprintf(",%s", df
->d_name
);
1869 if (NDaemons
>= MAXDAEMONS
)
1871 Daemons
[NDaemons
].d_socket
= -1;
1872 Daemons
[NDaemons
].d_listenqueue
= DEF_LISTENQUEUE
;
1873 clrbitmap(Daemons
[NDaemons
].d_flags
);
1874 setsockaddroptions(p
, &Daemons
[NDaemons
]);
1877 if (Daemons
[NDaemons
].d_inputfilterlist
!= NULL
)
1878 Daemons
[NDaemons
].d_inputfilterlist
= newstr(Daemons
[NDaemons
].d_inputfilterlist
);
1881 if (Daemons
[NDaemons
].d_name
!= NULL
)
1882 Daemons
[NDaemons
].d_name
= newstr(Daemons
[NDaemons
].d_name
);
1887 (void) sm_snprintf(num
, sizeof(num
), "Daemon%d", NDaemons
);
1888 Daemons
[NDaemons
].d_name
= newstr(num
);
1893 sm_dprintf("Daemon %s flags: ", Daemons
[NDaemons
].d_name
);
1894 printdaemonflags(&Daemons
[NDaemons
]);
1901 ** INITDAEMON -- initialize daemon if not yet done.
1910 ** initializes structure for one daemon.
1918 Daemons
[NDaemons
].d_socket
= -1;
1919 Daemons
[NDaemons
].d_listenqueue
= DEF_LISTENQUEUE
;
1920 Daemons
[NDaemons
].d_name
= "Daemon0";
1925 ** SETCLIENTOPTIONS -- set options for running the client
1928 ** p -- the options line.
1934 static DAEMON_T ClientSettings
[AF_MAX
+ 1];
1943 memset(&d
, '\0', sizeof(d
));
1944 setsockaddroptions(p
, &d
);
1946 /* grab what we need */
1947 family
= d
.d_addr
.sa
.sa_family
;
1948 STRUCTCOPY(d
, ClientSettings
[family
]);
1949 setbitn(D_ISSET
, ClientSettings
[family
].d_flags
); /* mark as set */
1950 if (d
.d_name
!= NULL
)
1951 ClientSettings
[family
].d_name
= newstr(d
.d_name
);
1956 (void) sm_snprintf(num
, sizeof(num
), "Client%d", family
);
1957 ClientSettings
[family
].d_name
= newstr(num
);
1961 ** ADDR_FAMILY -- determine address family from address
1964 ** addr -- the string representation of the address
1967 ** AF_INET, AF_INET6 or AF_UNSPEC
1979 #endif /* NETINET6 */
1982 if (inet_addr(addr
) != INADDR_NONE
)
1985 sm_dprintf("addr_family(%s): INET\n", addr
);
1988 #endif /* NETINET */
1990 if (anynet_pton(AF_INET6
, addr
, &clt_addr
.sin6
.sin6_addr
) == 1)
1993 sm_dprintf("addr_family(%s): INET6\n", addr
);
1996 #endif /* NETINET6 */
1997 #if _FFR_DAEMON_NETUNIX
2002 sm_dprintf("addr_family(%s): LOCAL\n", addr
);
2005 # endif /* NETUNIX */
2006 #endif /* _FFR_DAEMON_NETUNIX */
2008 sm_dprintf("addr_family(%s): UNSPEC\n", addr
);
2013 ** CHKCLIENTMODIFIERS -- check whether all clients have set a flag.
2016 ** flag -- the flag to test.
2019 ** true iff all configured clients have set the flag.
2023 chkclientmodifiers(flag
)
2030 for (i
= 0; i
< AF_MAX
; i
++)
2032 if (bitnset(D_ISSET
, ClientSettings
[i
].d_flags
))
2034 if (!bitnset((char) flag
, ClientSettings
[i
].d_flags
))
2044 ** SETUP_DAEMON_FILTERS -- Parse per-socket filters
2054 setup_daemon_milters()
2058 if (OpMode
== MD_SMTP
)
2060 /* no need to configure the daemons */
2064 for (idx
= 0; idx
< NDaemons
; idx
++)
2066 if (Daemons
[idx
].d_inputfilterlist
!= NULL
)
2068 milter_config(Daemons
[idx
].d_inputfilterlist
,
2069 Daemons
[idx
].d_inputfilters
,
2076 ** MAKECONNECTION -- make a connection to an SMTP socket on a machine.
2079 ** host -- the name of the host.
2080 ** port -- the port number to connect to.
2081 ** mci -- a pointer to the mail connection information
2082 ** structure to be filled in.
2083 ** e -- the current envelope.
2084 ** enough -- time at which to stop further connection attempts.
2085 ** (0 means no limit)
2088 ** An exit code telling whether the connection could be
2089 ** made and if not why not.
2095 static jmp_buf CtxConnectTimeout
;
2097 SOCKADDR CurHostAddr
; /* address of current host */
2100 makeconnection(host
, port
, mci
, e
, enough
)
2102 volatile unsigned int port
;
2107 register volatile int addrno
= 0;
2109 register struct hostent
*volatile hp
= (struct hostent
*) NULL
;
2113 volatile SOCKADDR_LEN_T addrlen
;
2114 volatile bool firstconnect
= true;
2115 SM_EVENT
*volatile ev
= NULL
;
2117 volatile bool v6found
= false;
2118 #endif /* NETINET6 */
2119 volatile int family
= InetMode
;
2121 volatile SOCKADDR_LEN_T socksize
= 0;
2122 volatile bool clt_bind
;
2125 extern ENVELOPE BlankEnvelope
;
2127 /* retranslate {daemon_flags} into bitmap */
2129 if ((p
= macvalue(macid("{daemon_flags}"), e
)) != NULL
)
2131 for (; *p
!= '\0'; p
++)
2133 if (!(isascii(*p
) && isspace(*p
)))
2134 setbitn(bitidx(*p
), d_flags
);
2140 #endif /* NETINET6 */
2143 /* Set up the address for outgoing connection. */
2144 if (bitnset(D_BINDIF
, d_flags
) &&
2145 (p
= macvalue(macid("{if_addr}"), e
)) != NULL
&&
2149 char p6
[INET6_ADDRSTRLEN
];
2150 #endif /* NETINET6 */
2152 memset(&clt_addr
, '\0', sizeof(clt_addr
));
2154 /* infer the address family from the address itself */
2155 clt_addr
.sa
.sa_family
= addr_family(p
);
2156 switch (clt_addr
.sa
.sa_family
)
2160 clt_addr
.sin
.sin_addr
.s_addr
= inet_addr(p
);
2161 if (clt_addr
.sin
.sin_addr
.s_addr
!= INADDR_NONE
&&
2162 clt_addr
.sin
.sin_addr
.s_addr
!= INADDR_LOOPBACK
)
2165 socksize
= sizeof(struct sockaddr_in
);
2168 #endif /* NETINET */
2172 if (inet_addr(p
) != INADDR_NONE
)
2173 (void) sm_snprintf(p6
, sizeof(p6
),
2174 "IPv6:::ffff:%s", p
);
2176 (void) sm_strlcpy(p6
, p
, sizeof(p6
));
2177 if (anynet_pton(AF_INET6
, p6
,
2178 &clt_addr
.sin6
.sin6_addr
) == 1 &&
2179 !IN6_IS_ADDR_LOOPBACK(&clt_addr
.sin6
.sin6_addr
))
2182 socksize
= sizeof(struct sockaddr_in6
);
2185 #endif /* NETINET6 */
2189 syserr("554 5.3.5 Address= option unsupported for family %d",
2190 clt_addr
.sa
.sa_family
);
2195 family
= clt_addr
.sa
.sa_family
;
2198 /* D_BINDIF not set or not available, fallback to ClientPortOptions */
2201 STRUCTCOPY(ClientSettings
[family
].d_addr
, clt_addr
);
2202 switch (clt_addr
.sa
.sa_family
)
2206 if (clt_addr
.sin
.sin_addr
.s_addr
== 0)
2207 clt_addr
.sin
.sin_addr
.s_addr
= INADDR_ANY
;
2210 if (clt_addr
.sin
.sin_port
!= 0)
2212 socksize
= sizeof(struct sockaddr_in
);
2214 #endif /* NETINET */
2217 if (IN6_IS_ADDR_UNSPECIFIED(&clt_addr
.sin6
.sin6_addr
))
2218 clt_addr
.sin6
.sin6_addr
= in6addr_any
;
2221 socksize
= sizeof(struct sockaddr_in6
);
2222 if (clt_addr
.sin6
.sin6_port
!= 0)
2225 #endif /* NETINET6 */
2228 socksize
= sizeof(clt_addr
.siso
);
2238 ** Set up the address for the mailer.
2239 ** Accept "[a.b.c.d]" syntax for host name.
2244 memset(&CurHostAddr
, '\0', sizeof(CurHostAddr
));
2245 memset(&addr
, '\0', sizeof(addr
));
2246 SmtpPhase
= mci
->mci_phase
= "initial connection";
2251 p
= strchr(host
, ']');
2255 unsigned long hid
= INADDR_NONE
;
2256 #endif /* NETINET */
2258 struct sockaddr_in6 hid6
;
2259 #endif /* NETINET6 */
2263 memset(&hid6
, '\0', sizeof(hid6
));
2264 #endif /* NETINET6 */
2266 if (family
== AF_INET
&&
2267 (hid
= inet_addr(&host
[1])) != INADDR_NONE
)
2269 addr
.sin
.sin_family
= AF_INET
;
2270 addr
.sin
.sin_addr
.s_addr
= hid
;
2273 #endif /* NETINET */
2275 if (family
== AF_INET6
&&
2276 anynet_pton(AF_INET6
, &host
[1],
2277 &hid6
.sin6_addr
) == 1)
2279 addr
.sin6
.sin6_family
= AF_INET6
;
2280 addr
.sin6
.sin6_addr
= hid6
.sin6_addr
;
2283 #endif /* NETINET6 */
2285 /* try it as a host name (avoid MX lookup) */
2286 hp
= sm_gethostbyname(&host
[1], family
);
2287 if (hp
== NULL
&& p
[-1] == '.')
2290 int oldopts
= _res
.options
;
2292 _res
.options
&= ~(RES_DEFNAMES
|RES_DNSRCH
);
2293 #endif /* NAMED_BIND */
2295 hp
= sm_gethostbyname(&host
[1],
2299 _res
.options
= oldopts
;
2300 #endif /* NAMED_BIND */
2309 extern char MsgBuf
[];
2312 "553 Invalid numeric domain spec \"%s\"",
2314 mci_setstat(mci
, EX_NOHOST
, "5.1.2", MsgBuf
);
2321 /* contortion to get around SGI cc complaints */
2323 p
= &host
[strlen(host
) - 1];
2324 hp
= sm_gethostbyname(host
, family
);
2325 if (hp
== NULL
&& *p
== '.')
2328 int oldopts
= _res
.options
;
2330 _res
.options
&= ~(RES_DEFNAMES
|RES_DNSRCH
);
2331 #endif /* NAMED_BIND */
2333 hp
= sm_gethostbyname(host
, family
);
2336 _res
.options
= oldopts
;
2337 #endif /* NAMED_BIND */
2344 /* check for name server timeouts */
2346 if (WorkAroundBrokenAAAA
&& family
== AF_INET6
&&
2350 ** An attempt with family AF_INET may
2351 ** succeed By skipping the next section
2352 ** of code, we will try AF_INET before
2357 sm_dprintf("makeconnection: WorkAroundBrokenAAAA: Trying AF_INET lookup (AF_INET6 failed)\n");
2360 # endif /* NETINET6 */
2362 if (errno
== ETIMEDOUT
||
2363 # if _FFR_GETHBN_ExFILE
2366 # endif /* EMFILE */
2369 # endif /* ENFILE */
2370 # endif /* _FFR_GETHBN_ExFILE */
2371 h_errno
== TRY_AGAIN
||
2372 (errno
== ECONNREFUSED
&& UseNameServer
))
2375 mci_setstat(mci
, EX_TEMPFAIL
,
2381 #endif /* NAMED_BIND */
2384 ** Try v6 first, then fall back to v4.
2385 ** If we found a v6 address, but no v4
2386 ** addresses, then TEMPFAIL.
2389 if (family
== AF_INET6
)
2396 #endif /* NETINET6 */
2398 mci_setstat(mci
, EX_NOHOST
, "5.1.2", NULL
);
2402 addr
.sa
.sa_family
= hp
->h_addrtype
;
2403 switch (hp
->h_addrtype
)
2407 memmove(&addr
.sin
.sin_addr
,
2411 #endif /* NETINET */
2415 memmove(&addr
.sin6
.sin6_addr
,
2419 #endif /* NETINET6 */
2422 if (hp
->h_length
> sizeof(addr
.sa
.sa_data
))
2424 syserr("makeconnection: long sa_data: family %d len %d",
2425 hp
->h_addrtype
, hp
->h_length
);
2426 mci_setstat(mci
, EX_NOHOST
, "5.1.2", NULL
);
2430 memmove(addr
.sa
.sa_data
, hp
->h_addr
, hp
->h_length
);
2437 ** Determine the port number.
2442 #ifdef NO_GETSERVBYNAME
2444 #else /* NO_GETSERVBYNAME */
2445 register struct servent
*sp
= getservbyname("smtp", "tcp");
2450 sm_syslog(LOG_ERR
, NOQID
,
2451 "makeconnection: service \"smtp\" unknown");
2456 #endif /* NO_GETSERVBYNAME */
2460 if (addr
.sa
.sa_family
== AF_INET6
&&
2461 IN6_IS_ADDR_V4MAPPED(&addr
.sin6
.sin6_addr
) &&
2462 ClientSettings
[AF_INET
].d_addr
.sa
.sa_family
!= 0)
2465 ** Ignore mapped IPv4 address since
2466 ** there is a ClientPortOptions setting
2472 #endif /* NETINET6 */
2474 switch (addr
.sa
.sa_family
)
2478 addr
.sin
.sin_port
= port
;
2479 addrlen
= sizeof(struct sockaddr_in
);
2481 #endif /* NETINET */
2485 addr
.sin6
.sin6_port
= port
;
2486 addrlen
= sizeof(struct sockaddr_in6
);
2488 #endif /* NETINET6 */
2492 /* assume two byte transport selector */
2493 memmove(TSEL((struct sockaddr_iso
*) &addr
), (char *) &port
, 2);
2494 addrlen
= sizeof(struct sockaddr_iso
);
2499 syserr("Can't connect to address family %d", addr
.sa
.sa_family
);
2500 mci_setstat(mci
, EX_NOHOST
, "5.1.2", NULL
);
2505 #endif /* NETINET6 */
2510 ** Try to actually open the connection.
2514 /* if too many connections, don't bother trying */
2515 if (!xla_noqueue_ok(host
))
2520 # endif /* NETINET6 */
2528 sm_dprintf("makeconnection (%s [%s].%d (%d))\n",
2529 host
, anynet_ntoa(&addr
), ntohs(port
),
2530 (int) addr
.sa
.sa_family
);
2532 /* save for logging */
2536 if (bitnset(M_SECURE_PORT
, mci
->mci_mailer
->m_flags
))
2538 int rport
= IPPORT_RESERVED
- 1;
2540 s
= rresvport(&rport
);
2543 #endif /* HASRRESVPORT */
2545 s
= socket(addr
.sa
.sa_family
, SOCK_STREAM
, 0);
2550 syserr("makeconnection: cannot create socket");
2554 mci_setstat(mci
, EX_TEMPFAIL
, "4.4.5", NULL
);
2558 #endif /* NETINET6 */
2564 if (ClientSettings
[family
].d_tcpsndbufsize
> 0)
2566 if (setsockopt(s
, SOL_SOCKET
, SO_SNDBUF
,
2567 (char *) &ClientSettings
[family
].d_tcpsndbufsize
,
2568 sizeof(ClientSettings
[family
].d_tcpsndbufsize
)) < 0)
2569 syserr("makeconnection: setsockopt(SO_SNDBUF)");
2571 #endif /* SO_SNDBUF */
2573 if (ClientSettings
[family
].d_tcprcvbufsize
> 0)
2575 if (setsockopt(s
, SOL_SOCKET
, SO_RCVBUF
,
2576 (char *) &ClientSettings
[family
].d_tcprcvbufsize
,
2577 sizeof(ClientSettings
[family
].d_tcprcvbufsize
)) < 0)
2578 syserr("makeconnection: setsockopt(SO_RCVBUF)");
2580 #endif /* SO_RCVBUF */
2583 sm_dprintf("makeconnection: fd=%d\n", s
);
2585 /* turn on network debugging? */
2590 (void) setsockopt(s
, SOL_SOCKET
, SO_DEBUG
,
2591 (char *)&on
, sizeof(on
));
2593 if (e
->e_xfp
!= NULL
) /* for debugging */
2594 (void) sm_io_flush(e
->e_xfp
, SM_TIME_DEFAULT
);
2595 errno
= 0; /* for debugging */
2601 switch (clt_addr
.sa
.sa_family
)
2605 if (clt_addr
.sin
.sin_port
!= 0)
2606 (void) setsockopt(s
, SOL_SOCKET
,
2611 #endif /* NETINET */
2615 if (clt_addr
.sin6
.sin6_port
!= 0)
2616 (void) setsockopt(s
, SOL_SOCKET
,
2621 #endif /* NETINET6 */
2624 if (bind(s
, &clt_addr
.sa
, socksize
) < 0)
2629 syserr("makeconnection: cannot bind socket [%s]",
2630 anynet_ntoa(&clt_addr
));
2634 #endif /* NETINET6 */
2641 ** Linux seems to hang in connect for 90 minutes (!!!).
2642 ** Time out the connect to avoid this problem.
2645 if (setjmp(CtxConnectTimeout
) == 0)
2649 if (e
->e_ntries
<= 0 && TimeOuts
.to_iconnect
!= 0)
2650 ev
= sm_setevent(TimeOuts
.to_iconnect
,
2652 else if (TimeOuts
.to_connect
!= 0)
2653 ev
= sm_setevent(TimeOuts
.to_connect
,
2658 switch (ConnectOnlyTo
.sa
.sa_family
)
2662 addr
.sin
.sin_addr
.s_addr
= ConnectOnlyTo
.sin
.sin_addr
.s_addr
;
2664 #endif /* NETINET */
2668 memmove(&addr
.sin6
.sin6_addr
,
2669 &ConnectOnlyTo
.sin6
.sin6_addr
,
2672 #endif /* NETINET6 */
2675 sm_dprintf("Connecting to [%s]...\n", anynet_ntoa(&addr
));
2676 i
= connect(s
, (struct sockaddr
*) &addr
, addrlen
);
2686 /* couldn't connect.... figure out why */
2689 /* if running demand-dialed connection, try again */
2690 if (DialDelay
> 0 && firstconnect
&&
2691 bitnset(M_DIALDELAY
, mci
->mci_mailer
->m_flags
))
2694 sm_dprintf("Connect failed (%s); trying again...\n",
2695 sm_errstring(save_errno
));
2696 firstconnect
= false;
2697 (void) sleep(DialDelay
);
2702 sm_syslog(LOG_INFO
, e
->e_id
,
2703 "makeconnection (%s [%s]) failed: %s",
2704 host
, anynet_ntoa(&addr
),
2705 sm_errstring(save_errno
));
2709 #endif /* NETINET6 */
2710 if (hp
!= NULL
&& hp
->h_addr_list
[addrno
] != NULL
&&
2711 (enough
== 0 || curtime() < enough
))
2714 sm_dprintf("Connect failed (%s); trying new address....\n",
2715 sm_errstring(save_errno
));
2716 switch (addr
.sa
.sa_family
)
2720 memmove(&addr
.sin
.sin_addr
,
2721 hp
->h_addr_list
[addrno
++],
2724 #endif /* NETINET */
2728 memmove(&addr
.sin6
.sin6_addr
,
2729 hp
->h_addr_list
[addrno
++],
2732 #endif /* NETINET6 */
2735 memmove(addr
.sa
.sa_data
,
2736 hp
->h_addr_list
[addrno
++],
2745 if (family
== AF_INET6
)
2748 sm_dprintf("Connect failed (%s); retrying with AF_INET....\n",
2749 sm_errstring(save_errno
));
2760 #endif /* NETINET6 */
2761 /* couldn't open connection */
2763 /* Don't clobber an already saved errno from v4retry */
2765 #endif /* NETINET6 */
2768 sm_dprintf("Connect failed (%s)\n",
2769 sm_errstring(save_errno
));
2773 mci_setstat(mci
, EX_TEMPFAIL
, "4.4.1", NULL
);
2777 #endif /* NETINET6 */
2788 #endif /* NETINET6 */
2790 /* connection ok, put it into canonical form */
2791 mci
->mci_out
= NULL
;
2792 if ((mci
->mci_out
= sm_io_open(SmFtStdiofd
, SM_TIME_DEFAULT
,
2794 SM_IO_WRONLY_B
, NULL
)) == NULL
||
2796 (mci
->mci_in
= sm_io_open(SmFtStdiofd
, SM_TIME_DEFAULT
,
2798 SM_IO_RDONLY_B
, NULL
)) == NULL
)
2801 syserr("cannot open SMTP client channel, fd=%d", s
);
2802 mci_setstat(mci
, EX_TEMPFAIL
, "4.4.5", NULL
);
2803 if (mci
->mci_out
!= NULL
)
2804 (void) sm_io_close(mci
->mci_out
, SM_TIME_DEFAULT
);
2809 sm_io_automode(mci
->mci_out
, mci
->mci_in
);
2811 /* set {client_flags} */
2812 if (ClientSettings
[addr
.sa
.sa_family
].d_mflags
!= NULL
)
2814 macdefine(&mci
->mci_macro
, A_PERM
,
2815 macid("{client_flags}"),
2816 ClientSettings
[addr
.sa
.sa_family
].d_mflags
);
2819 macdefine(&mci
->mci_macro
, A_PERM
,
2820 macid("{client_flags}"), "");
2822 /* "add" {client_flags} to bitmap */
2823 if (bitnset(D_IFNHELO
, ClientSettings
[addr
.sa
.sa_family
].d_flags
))
2825 /* look for just this one flag */
2826 setbitn(D_IFNHELO
, d_flags
);
2829 /* find out name for Interface through which we connect */
2831 if (getsockname(s
, &addr
.sa
, &len
) == 0)
2836 macdefine(&BlankEnvelope
.e_macro
, A_TEMP
,
2837 macid("{if_addr_out}"), anynet_ntoa(&addr
));
2838 (void) sm_snprintf(family
, sizeof(family
), "%d",
2840 macdefine(&BlankEnvelope
.e_macro
, A_TEMP
,
2841 macid("{if_family_out}"), family
);
2843 name
= hostnamebyanyaddr(&addr
);
2844 macdefine(&BlankEnvelope
.e_macro
, A_TEMP
,
2845 macid("{if_name_out}"), name
);
2848 /* log connection information */
2849 sm_syslog(LOG_INFO
, e
->e_id
,
2850 "SMTP outgoing connect on %.40s", name
);
2852 if (bitnset(D_IFNHELO
, d_flags
))
2854 if (name
[0] != '[' && strchr(name
, '.') != NULL
)
2855 mci
->mci_heloname
= newstr(name
);
2860 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
2861 macid("{if_name_out}"), NULL
);
2862 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
2863 macid("{if_addr_out}"), NULL
);
2864 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
2865 macid("{if_family_out}"), NULL
);
2868 /* Use the configured HeloName as appropriate */
2869 if (HeloName
!= NULL
&& HeloName
[0] != '\0')
2870 mci
->mci_heloname
= newstr(HeloName
);
2872 mci_setstat(mci
, EX_OK
, NULL
, NULL
);
2877 connecttimeout(ignore
)
2881 ** NOTE: THIS CAN BE CALLED FROM A SIGNAL HANDLER. DO NOT ADD
2882 ** ANYTHING TO THIS ROUTINE UNLESS YOU KNOW WHAT YOU ARE
2887 longjmp(CtxConnectTimeout
, 1);
2890 ** MAKECONNECTION_DS -- make a connection to a domain socket.
2893 ** mux_path -- the path of the socket to connect to.
2894 ** mci -- a pointer to the mail connection information
2895 ** structure to be filled in.
2898 ** An exit code telling whether the connection could be
2899 ** made and if not why not.
2907 makeconnection_ds(mux_path
, mci
)
2912 int rval
, save_errno
;
2913 long sff
= SFF_SAFEDIRPATH
|SFF_OPENASROOT
|SFF_NOLINK
|SFF_ROOTOK
|SFF_EXECOK
;
2914 struct sockaddr_un unix_addr
;
2916 /* if not safe, don't connect */
2917 rval
= safefile(mux_path
, RunAsUid
, RunAsGid
, RunAsUserName
,
2918 sff
, S_IRUSR
|S_IWUSR
, NULL
);
2922 syserr("makeconnection_ds: unsafe domain socket %s",
2924 mci_setstat(mci
, EX_TEMPFAIL
, "4.3.5", NULL
);
2929 /* prepare address structure */
2930 memset(&unix_addr
, '\0', sizeof(unix_addr
));
2931 unix_addr
.sun_family
= AF_UNIX
;
2933 if (strlen(mux_path
) >= sizeof(unix_addr
.sun_path
))
2935 syserr("makeconnection_ds: domain socket name %s too long",
2938 /* XXX why TEMPFAIL but 5.x.y ? */
2939 mci_setstat(mci
, EX_TEMPFAIL
, "5.3.5", NULL
);
2940 errno
= ENAMETOOLONG
;
2941 return EX_UNAVAILABLE
;
2943 (void) sm_strlcpy(unix_addr
.sun_path
, mux_path
,
2944 sizeof(unix_addr
.sun_path
));
2946 /* initialize domain socket */
2947 sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
2951 syserr("makeconnection_ds: could not create domain socket %s",
2953 mci_setstat(mci
, EX_TEMPFAIL
, "4.4.5", NULL
);
2958 /* connect to server */
2959 if (connect(sock
, (struct sockaddr
*) &unix_addr
,
2960 sizeof(unix_addr
)) == -1)
2963 syserr("Could not connect to socket %s", mux_path
);
2964 mci_setstat(mci
, EX_TEMPFAIL
, "4.4.1", NULL
);
2970 /* connection ok, put it into canonical form */
2971 mci
->mci_out
= NULL
;
2972 if ((mci
->mci_out
= sm_io_open(SmFtStdiofd
, SM_TIME_DEFAULT
,
2973 (void *) &sock
, SM_IO_WRONLY_B
, NULL
))
2975 || (sock
= dup(sock
)) < 0 ||
2976 (mci
->mci_in
= sm_io_open(SmFtStdiofd
, SM_TIME_DEFAULT
,
2977 (void *) &sock
, SM_IO_RDONLY_B
, NULL
))
2981 syserr("cannot open SMTP client channel, fd=%d", sock
);
2982 mci_setstat(mci
, EX_TEMPFAIL
, "4.4.5", NULL
);
2983 if (mci
->mci_out
!= NULL
)
2984 (void) sm_io_close(mci
->mci_out
, SM_TIME_DEFAULT
);
2989 sm_io_automode(mci
->mci_out
, mci
->mci_in
);
2991 mci_setstat(mci
, EX_OK
, NULL
, NULL
);
2995 #endif /* NETUNIX */
2997 ** SHUTDOWN_DAEMON -- Performs a clean shutdown of the daemon
3006 ** closes control socket, exits.
3015 sm_allsignals(true);
3017 reason
= ShutdownRequest
;
3018 ShutdownRequest
= NULL
;
3022 sm_syslog(LOG_INFO
, CurEnv
->e_id
, "stopping daemon, reason=%s",
3023 reason
== NULL
? "implicit call" : reason
);
3026 closecontrolsocket(true);
3031 for (i
= 0; i
< NDaemons
; i
++)
3033 if (Daemons
[i
].d_socket
>= 0)
3035 (void) close(Daemons
[i
].d_socket
);
3036 Daemons
[i
].d_socket
= -1;
3038 #if _FFR_DAEMON_NETUNIX
3040 /* Remove named sockets */
3041 if (Daemons
[i
].d_addr
.sa
.sa_family
== AF_UNIX
)
3044 long sff
= SFF_SAFEDIRPATH
|SFF_OPENASROOT
|SFF_NOLINK
|SFF_MUSTOWN
|SFF_EXECOK
|SFF_CREAT
;
3046 /* if not safe, don't use it */
3047 rval
= safefile(Daemons
[i
].d_addr
.sunix
.sun_path
,
3050 S_IRUSR
|S_IWUSR
, NULL
);
3052 unlink(Daemons
[i
].d_addr
.sunix
.sun_path
) < 0)
3054 sm_syslog(LOG_WARNING
, NOQID
,
3055 "Could not remove daemon %s socket: %s: %s",
3057 Daemons
[i
].d_addr
.sunix
.sun_path
,
3058 sm_errstring(errno
));
3061 # endif /* NETUNIX */
3062 #endif /* _FFR_DAEMON_NETUNIX */
3066 finis(false, true, EX_OK
);
3069 ** RESTART_DAEMON -- Performs a clean restart of the daemon
3078 ** restarts the daemon or exits if restart fails.
3081 /* Make a non-DFL/IGN signal a noop */
3082 #define SM_NOOP_SIGNAL(sig, old) \
3085 (old) = sm_signal((sig), sm_signal_noop); \
3086 if ((old) == SIG_IGN || (old) == SIG_DFL) \
3087 (void) sm_signal((sig), (old)); \
3096 sigfunc_t ignore
, oalrm
, ousr1
;
3097 extern int DtableSize
;
3099 /* clear the events to turn off SIGALRMs */
3101 sm_allsignals(true);
3103 reason
= RestartRequest
;
3104 RestartRequest
= NULL
;
3107 if (SaveArgv
[0][0] != '/')
3110 sm_syslog(LOG_INFO
, NOQID
,
3111 "could not restart: need full path");
3112 finis(false, true, EX_OSFILE
);
3116 sm_syslog(LOG_INFO
, NOQID
, "restarting %s due to %s",
3118 reason
== NULL
? "implicit call" : reason
);
3120 closecontrolsocket(true);
3122 cleanup_shm(DaemonPid
== getpid());
3123 #endif /* SM_CONF_SHM */
3125 /* close locked pid file */
3126 close_sendmail_pid();
3129 ** Want to drop to the user who started the process in all cases
3130 ** *but* when running as "smmsp" for the clientmqueue queue run
3131 ** daemon. In that case, UseMSP will be true, RunAsUid should not
3132 ** be root, and RealUid should be either 0 or RunAsUid.
3135 drop
= !(UseMSP
&& RunAsUid
!= 0 &&
3136 (RealUid
== 0 || RealUid
== RunAsUid
));
3138 if (drop_privileges(drop
) != EX_OK
)
3141 sm_syslog(LOG_ALERT
, NOQID
,
3142 "could not drop privileges: %s",
3143 sm_errstring(errno
));
3144 finis(false, true, EX_OSERR
);
3148 sm_close_on_exec(STDERR_FILENO
+ 1, DtableSize
);
3151 ** Need to allow signals before execve() to make them "harmless".
3152 ** However, the default action can be "terminate", so it isn't
3153 ** really harmless. Setting signals to IGN will cause them to be
3154 ** ignored in the new process to, so that isn't a good alternative.
3157 SM_NOOP_SIGNAL(SIGALRM
, oalrm
);
3158 SM_NOOP_SIGNAL(SIGCHLD
, ignore
);
3159 SM_NOOP_SIGNAL(SIGHUP
, ignore
);
3160 SM_NOOP_SIGNAL(SIGINT
, ignore
);
3161 SM_NOOP_SIGNAL(SIGPIPE
, ignore
);
3162 SM_NOOP_SIGNAL(SIGTERM
, ignore
);
3164 SM_NOOP_SIGNAL(SIGUSR1
, ousr1
);
3165 #endif /* SIGUSR1 */
3167 /* Turn back on signals */
3168 sm_allsignals(false);
3170 (void) execve(SaveArgv
[0], (ARGV_T
) SaveArgv
, (ARGV_T
) ExternalEnviron
);
3173 /* block signals again and restore needed signals */
3174 sm_allsignals(true);
3176 /* For finis() events */
3177 (void) sm_signal(SIGALRM
, oalrm
);
3180 /* For debugging finis() */
3181 (void) sm_signal(SIGUSR1
, ousr1
);
3182 #endif /* SIGUSR1 */
3186 sm_syslog(LOG_ALERT
, NOQID
, "could not exec %s: %s",
3187 SaveArgv
[0], sm_errstring(errno
));
3188 finis(false, true, EX_OSFILE
);
3192 ** MYHOSTNAME -- return the name of this host.
3195 ** hostbuf -- a place to return the name of this host.
3196 ** size -- the size of hostbuf.
3199 ** A list of aliases for this host.
3202 ** Adds numeric codes to $=w.
3206 myhostname(hostbuf
, size
)
3210 register struct hostent
*hp
;
3212 if (gethostname(hostbuf
, size
) < 0 || hostbuf
[0] == '\0')
3213 (void) sm_strlcpy(hostbuf
, "localhost", size
);
3214 hp
= sm_gethostbyname(hostbuf
, InetMode
);
3215 #if NETINET && NETINET6
3216 if (hp
== NULL
&& InetMode
== AF_INET6
)
3219 ** It's possible that this IPv6 enabled machine doesn't
3220 ** actually have any IPv6 interfaces and, therefore, no
3221 ** IPv6 addresses. Fall back to AF_INET.
3224 hp
= sm_gethostbyname(hostbuf
, AF_INET
);
3226 #endif /* NETINET && NETINET6 */
3229 if (strchr(hp
->h_name
, '.') != NULL
|| strchr(hostbuf
, '.') == NULL
)
3230 (void) cleanstrcpy(hostbuf
, hp
->h_name
, size
);
3233 if (strchr(hostbuf
, '.') == NULL
)
3237 domainname
= ni_propval("/locations", NULL
, "resolver",
3239 if (domainname
!= NULL
&&
3240 strlen(domainname
) + strlen(hostbuf
) + 1 < size
)
3241 (void) sm_strlcat2(hostbuf
, ".", domainname
, size
);
3243 #endif /* NETINFO */
3246 ** If there is still no dot in the name, try looking for a
3250 if (strchr(hostbuf
, '.') == NULL
)
3254 for (ha
= hp
->h_aliases
; ha
!= NULL
&& *ha
!= NULL
; ha
++)
3256 if (strchr(*ha
, '.') != NULL
)
3258 (void) cleanstrcpy(hostbuf
, *ha
, size
- 1);
3259 hostbuf
[size
- 1] = '\0';
3266 ** If _still_ no dot, wait for a while and try again -- it is
3267 ** possible that some service is starting up. This can result
3268 ** in excessive delays if the system is badly configured, but
3269 ** there really isn't a way around that, particularly given that
3270 ** the config file hasn't been read at this point.
3271 ** All in all, a bit of a mess.
3274 if (strchr(hostbuf
, '.') == NULL
&&
3275 !getcanonname(hostbuf
, size
, true, NULL
))
3277 sm_syslog(LOG_CRIT
, NOQID
,
3278 "My unqualified host name (%s) unknown; sleeping for retry",
3280 message("My unqualified host name (%s) unknown; sleeping for retry",
3283 if (!getcanonname(hostbuf
, size
, true, NULL
))
3285 sm_syslog(LOG_ALERT
, NOQID
,
3286 "unable to qualify my own domain name (%s) -- using short name",
3288 message("WARNING: unable to qualify my own domain name (%s) -- using short name",
3295 ** ADDRCMP -- compare two host addresses
3298 ** hp -- hostent structure for the first address
3299 ** ha -- actual first address
3300 ** sa -- second address
3303 ** 0 -- if ha and sa match
3304 ** else -- they don't match
3315 #endif /* NETINET6 */
3317 switch (sa
->sa
.sa_family
)
3321 if (hp
->h_addrtype
== AF_INET
)
3322 return memcmp(ha
, (char *) &sa
->sin
.sin_addr
, INADDRSZ
);
3324 #endif /* NETINET */
3328 a
= (unsigned char *) &sa
->sin6
.sin6_addr
;
3330 /* Straight binary comparison */
3331 if (hp
->h_addrtype
== AF_INET6
)
3332 return memcmp(ha
, a
, IN6ADDRSZ
);
3334 /* If IPv4-mapped IPv6 address, compare the IPv4 section */
3335 if (hp
->h_addrtype
== AF_INET
&&
3336 IN6_IS_ADDR_V4MAPPED(&sa
->sin6
.sin6_addr
))
3337 return memcmp(a
+ IN6ADDRSZ
- INADDRSZ
, ha
, INADDRSZ
);
3339 #endif /* NETINET6 */
3344 ** GETAUTHINFO -- get the real host name associated with a file descriptor
3346 ** Uses RFC1413 protocol to try to get info from the other end.
3349 ** fd -- the descriptor
3350 ** may_be_forged -- an outage that is set to true if the
3351 ** forward lookup of RealHostName does not match
3352 ** RealHostAddr; set to false if they do match.
3355 ** The user@host information associated with this descriptor.
3358 static jmp_buf CtxAuthTimeout
;
3365 ** NOTE: THIS CAN BE CALLED FROM A SIGNAL HANDLER. DO NOT ADD
3366 ** ANYTHING TO THIS ROUTINE UNLESS YOU KNOW WHAT YOU ARE
3371 longjmp(CtxAuthTimeout
, 1);
3375 getauthinfo(fd
, may_be_forged
)
3377 bool *may_be_forged
;
3379 unsigned short SM_NONVOLATILE port
= 0;
3380 SOCKADDR_LEN_T falen
;
3381 register char *volatile p
= NULL
;
3383 SOCKADDR_LEN_T lalen
;
3384 #ifndef NO_GETSERVBYNAME
3385 register struct servent
*sp
;
3387 static unsigned short port4
= 0;
3388 # endif /* NETINET */
3390 static unsigned short port6
= 0;
3391 # endif /* NETINET6 */
3392 #endif /* ! NO_GETSERVBYNAME */
3399 char *ostype
= NULL
;
3401 char ibuf
[MAXNAME
+ 1];
3402 static char hbuf
[MAXNAME
+ MAXAUTHINFO
+ 11];
3404 *may_be_forged
= false;
3405 falen
= sizeof(RealHostAddr
);
3406 if (isatty(fd
) || (i
= getpeername(fd
, &RealHostAddr
.sa
, &falen
)) < 0 ||
3407 falen
<= 0 || RealHostAddr
.sa
.sa_family
== 0)
3412 ** ENOTSOCK is OK: bail on anything else, but reset
3413 ** errno in this case, so a mis-report doesn't
3417 if (errno
!= ENOTSOCK
)
3421 (void) sm_strlcpyn(hbuf
, sizeof(hbuf
), 2, RealUserName
,
3424 sm_dprintf("getauthinfo: %s\n", hbuf
);
3428 if (RealHostName
== NULL
)
3430 /* translate that to a host name */
3431 RealHostName
= newstr(hostnamebyanyaddr(&RealHostAddr
));
3432 if (strlen(RealHostName
) > MAXNAME
)
3433 RealHostName
[MAXNAME
] = '\0'; /* XXX - 1 ? */
3436 /* cross check RealHostName with forward DNS lookup */
3437 if (anynet_ntoa(&RealHostAddr
)[0] != '[' &&
3438 RealHostName
[0] != '[')
3442 family
= RealHostAddr
.sa
.sa_family
;
3443 #if NETINET6 && NEEDSGETIPNODE
3445 ** If RealHostAddr is an IPv6 connection with an
3446 ** IPv4-mapped address, we need RealHostName's IPv4
3447 ** address(es) for addrcmp() to compare against
3450 ** Actually, we only need to do this for systems
3451 ** which NEEDSGETIPNODE since the real getipnodebyname()
3452 ** already does V4MAPPED address via the AI_V4MAPPEDCFG
3453 ** flag. A better fix to this problem is to add this
3454 ** functionality to our stub getipnodebyname().
3457 if (family
== AF_INET6
&&
3458 IN6_IS_ADDR_V4MAPPED(&RealHostAddr
.sin6
.sin6_addr
))
3460 #endif /* NETINET6 && NEEDSGETIPNODE */
3462 /* try to match the reverse against the forward lookup */
3463 hp
= sm_gethostbyname(RealHostName
, family
);
3466 /* XXX: Could be a temporary error on forward lookup */
3467 *may_be_forged
= true;
3471 for (ha
= hp
->h_addr_list
; *ha
!= NULL
; ha
++)
3473 if (addrcmp(hp
, *ha
, &RealHostAddr
) == 0)
3476 *may_be_forged
= *ha
== NULL
;
3480 #endif /* NETINET6 */
3484 if (TimeOuts
.to_ident
== 0)
3488 switch (RealHostAddr
.sa
.sa_family
)
3492 if (getsockname(fd
, &la
.sa
, &lalen
) < 0 ||
3494 la
.sa
.sa_family
!= AF_INET
)
3499 port
= RealHostAddr
.sin
.sin_port
;
3501 /* create ident query */
3502 (void) sm_snprintf(ibuf
, sizeof(ibuf
), "%d,%d\r\n",
3503 ntohs(RealHostAddr
.sin
.sin_port
),
3504 ntohs(la
.sin
.sin_port
));
3506 /* create local address */
3507 la
.sin
.sin_port
= 0;
3509 /* create foreign address */
3510 # ifdef NO_GETSERVBYNAME
3511 RealHostAddr
.sin
.sin_port
= htons(113);
3512 # else /* NO_GETSERVBYNAME */
3515 ** getservbyname() consumes about 5% of the time
3516 ** when receiving a small message (almost all of the time
3517 ** spent in this routine).
3518 ** Hence we store the port in a static variable
3519 ** to save this time.
3520 ** The portnumber shouldn't change very often...
3521 ** This code makes the assumption that the port number
3527 sp
= getservbyname("auth", "tcp");
3533 RealHostAddr
.sin
.sin_port
= port4
;
3535 # endif /* NO_GETSERVBYNAME */
3536 #endif /* NETINET */
3540 if (getsockname(fd
, &la
.sa
, &lalen
) < 0 ||
3542 la
.sa
.sa_family
!= AF_INET6
)
3547 port
= RealHostAddr
.sin6
.sin6_port
;
3549 /* create ident query */
3550 (void) sm_snprintf(ibuf
, sizeof(ibuf
), "%d,%d\r\n",
3551 ntohs(RealHostAddr
.sin6
.sin6_port
),
3552 ntohs(la
.sin6
.sin6_port
));
3554 /* create local address */
3555 la
.sin6
.sin6_port
= 0;
3557 /* create foreign address */
3558 # ifdef NO_GETSERVBYNAME
3559 RealHostAddr
.sin6
.sin6_port
= htons(113);
3560 # else /* NO_GETSERVBYNAME */
3563 sp
= getservbyname("auth", "tcp");
3569 RealHostAddr
.sin6
.sin6_port
= port6
;
3571 # endif /* NO_GETSERVBYNAME */
3572 #endif /* NETINET6 */
3579 if (setjmp(CtxAuthTimeout
) != 0)
3586 /* put a timeout around the whole thing */
3587 ev
= sm_setevent(TimeOuts
.to_ident
, authtimeout
, 0);
3589 /* connect to foreign IDENT server using same address as SMTP socket */
3590 s
= socket(la
.sa
.sa_family
, SOCK_STREAM
, 0);
3596 if (bind(s
, &la
.sa
, lalen
) < 0 ||
3597 connect(s
, &RealHostAddr
.sa
, lalen
) < 0)
3601 sm_dprintf("getauthinfo: sent %s", ibuf
);
3604 if (write(s
, ibuf
, strlen(ibuf
)) < 0)
3609 nleft
= sizeof(ibuf
) - 1;
3610 while ((i
= read(s
, p
, nleft
)) > 0)
3617 if ((s
= strchr(ibuf
, '\n')) != NULL
)
3631 if (i
< 0 || p
== &ibuf
[0])
3634 if (p
>= &ibuf
[2] && *--p
== '\n' && *--p
== '\r')
3639 sm_dprintf("getauthinfo: got %s\n", ibuf
);
3642 p
= strchr(ibuf
, ':');
3645 /* malformed response */
3648 while (isascii(*++p
) && isspace(*p
))
3650 if (sm_strncasecmp(p
, "userid", 6) != 0)
3652 /* presumably an error string */
3656 while (isascii(*p
) && isspace(*p
))
3660 /* either useridxx or malformed response */
3664 /* p now points to the OSTYPE field */
3665 while (isascii(*p
) && isspace(*p
))
3671 /* malformed response */
3679 charset
= strchr(ostype
, ',');
3680 if (charset
!= NULL
)
3684 /* 1413 says don't do this -- but it's broken otherwise */
3685 while (isascii(*++p
) && isspace(*p
))
3688 /* p now points to the authenticated name -- copy carefully */
3689 if (sm_strncasecmp(ostype
, "other", 5) == 0 &&
3690 (ostype
[5] == ' ' || ostype
[5] == '\0'))
3692 (void) sm_strlcpy(hbuf
, "IDENT:", sizeof(hbuf
));
3693 cleanstrcpy(&hbuf
[6], p
, MAXAUTHINFO
);
3696 cleanstrcpy(hbuf
, p
, MAXAUTHINFO
);
3698 (void) sm_strlcpyn(&hbuf
[len
], sizeof(hbuf
) - len
, 2, "@",
3699 RealHostName
== NULL
? "localhost" : RealHostName
);
3707 /* put back the original incoming port */
3708 switch (RealHostAddr
.sa
.sa_family
)
3713 RealHostAddr
.sin
.sin_port
= port
;
3715 #endif /* NETINET */
3720 RealHostAddr
.sin6
.sin6_port
= port
;
3722 #endif /* NETINET6 */
3725 if (RealHostName
== NULL
)
3728 sm_dprintf("getauthinfo: NULL\n");
3731 (void) sm_strlcpy(hbuf
, RealHostName
, sizeof(hbuf
));
3735 # ifndef GET_IPOPT_DST
3736 # define GET_IPOPT_DST(dst) (dst)
3737 # endif /* ! GET_IPOPT_DST */
3739 ** Extract IP source routing information.
3741 ** Format of output for a connection from site a through b
3743 ** loose: @site-c@site-b:site-a
3744 ** strict: !@site-c@site-b:site-a
3746 ** o - pointer within ipopt_list structure.
3747 ** q - pointer within ls/ss rr route data
3748 ** p - pointer to hbuf
3751 if (RealHostAddr
.sa
.sa_family
== AF_INET
)
3753 SOCKOPT_LEN_T ipoptlen
;
3758 struct IPOPTION ipopt
;
3760 ipoptlen
= sizeof(ipopt
);
3761 if (getsockopt(fd
, IPPROTO_IP
, IP_OPTIONS
,
3762 (char *) &ipopt
, &ipoptlen
) < 0)
3766 o
= (unsigned char *) ipopt
.IP_LIST
;
3767 while (o
!= NULL
&& o
< (unsigned char *) &ipopt
+ ipoptlen
)
3783 ** o[0] is the option type (loose/strict).
3784 ** o[1] is the length of this option,
3785 ** including option type and
3787 ** o[2] is the pointer into the route
3789 ** o[3] begins the route data.
3792 p
= &hbuf
[strlen(hbuf
)];
3793 l
= sizeof(hbuf
) - (hbuf
- p
) - 6;
3794 (void) sm_snprintf(p
, SPACELEFT(hbuf
, p
),
3796 *o
== IPOPT_SSRR
? "!" : "",
3797 l
> 240 ? 120 : l
/ 2,
3798 inet_ntoa(GET_IPOPT_DST(ipopt
.IP_DST
)));
3803 j
= o
[1] / sizeof(struct in_addr
) - 1;
3805 /* q skips length and router pointer to data */
3807 for ( ; j
>= 0; j
--)
3809 struct in_addr addr
;
3811 memcpy(&addr
, q
, sizeof(addr
));
3812 (void) sm_snprintf(p
,
3822 q
+= sizeof(struct in_addr
);
3828 /* Skip over option */
3833 (void) sm_snprintf(p
, SPACELEFT(hbuf
, p
), "]");
3838 #endif /* IP_SRCROUTE */
3839 if (RealHostName
!= NULL
&& RealHostName
[0] != '[')
3841 p
= &hbuf
[strlen(hbuf
)];
3842 (void) sm_snprintf(p
, SPACELEFT(hbuf
, p
), " [%.100s]",
3843 anynet_ntoa(&RealHostAddr
));
3847 p
= &hbuf
[strlen(hbuf
)];
3848 (void) sm_strlcpy(p
, " (may be forged)", SPACELEFT(hbuf
, p
));
3849 macdefine(&BlankEnvelope
.e_macro
, A_PERM
,
3850 macid("{client_resolve}"), "FORGED");
3855 #endif /* IP_SRCROUTE */
3857 /* put back the original incoming port */
3858 switch (RealHostAddr
.sa
.sa_family
)
3863 RealHostAddr
.sin
.sin_port
= port
;
3865 #endif /* NETINET */
3870 RealHostAddr
.sin6
.sin6_port
= port
;
3872 #endif /* NETINET6 */
3876 sm_dprintf("getauthinfo: %s\n", hbuf
);
3880 ** HOST_MAP_LOOKUP -- turn a hostname into canonical form
3883 ** map -- a pointer to this map.
3884 ** name -- the (presumably unqualified) hostname.
3885 ** av -- unused -- for compatibility with other mapping
3887 ** statp -- an exit status (out parameter) -- set to
3888 ** EX_TEMPFAIL if the name server is unavailable.
3891 ** The mapping, if found.
3892 ** NULL if no mapping found.
3895 ** Looks up the host specified in hbuf. If it is not
3896 ** the canonical name for that host, return the canonical
3897 ** name (unless MF_MATCHONLY is set, which will cause the
3898 ** status only to be returned).
3902 host_map_lookup(map
, name
, av
, statp
)
3908 register struct hostent
*hp
;
3910 struct in_addr in_addr
;
3911 #endif /* NETINET */
3913 struct in6_addr in6_addr
;
3914 #endif /* NETINET6 */
3915 char *cp
, *ans
= NULL
;
3919 time_t SM_NONVOLATILE retrans
= 0;
3920 int SM_NONVOLATILE retry
= 0;
3921 #endif /* NAMED_BIND */
3922 char hbuf
[MAXNAME
+ 1];
3925 ** See if we have already looked up this name. If so, just
3926 ** return it (unless expired).
3930 s
= stab(name
, ST_NAMECANON
, ST_ENTER
);
3931 if (bitset(NCF_VALID
, s
->s_namecanon
.nc_flags
) &&
3932 s
->s_namecanon
.nc_exp
>= now
)
3935 sm_dprintf("host_map_lookup(%s) => CACHE %s\n",
3937 s
->s_namecanon
.nc_cname
== NULL
3939 : s
->s_namecanon
.nc_cname
);
3940 errno
= s
->s_namecanon
.nc_errno
;
3941 SM_SET_H_ERRNO(s
->s_namecanon
.nc_herrno
);
3942 *statp
= s
->s_namecanon
.nc_stat
;
3943 if (*statp
== EX_TEMPFAIL
)
3945 CurEnv
->e_status
= "4.4.3";
3946 message("851 %s: Name server timeout",
3947 shortenstring(name
, 33));
3949 if (*statp
!= EX_OK
)
3951 if (s
->s_namecanon
.nc_cname
== NULL
)
3953 syserr("host_map_lookup(%s): bogus NULL cache entry, errno=%d, h_errno=%d",
3955 s
->s_namecanon
.nc_errno
,
3956 s
->s_namecanon
.nc_herrno
);
3959 if (bitset(MF_MATCHONLY
, map
->map_mflags
))
3960 cp
= map_rewrite(map
, name
, strlen(name
), NULL
);
3962 cp
= map_rewrite(map
,
3963 s
->s_namecanon
.nc_cname
,
3964 strlen(s
->s_namecanon
.nc_cname
),
3970 ** If we are running without a regular network connection (usually
3971 ** dial-on-demand) and we are just queueing, we want to avoid DNS
3972 ** lookups because those could try to connect to a server.
3975 if (CurEnv
->e_sendmode
== SM_DEFER
&&
3976 bitset(MF_DEFER
, map
->map_mflags
))
3979 sm_dprintf("host_map_lookup(%s) => DEFERRED\n", name
);
3980 *statp
= EX_TEMPFAIL
;
3985 ** If first character is a bracket, then it is an address
3986 ** lookup. Address is copied into a temporary buffer to
3987 ** strip the brackets and to preserve name if address is
3992 sm_dprintf("host_map_lookup(%s) => ", name
);
3994 if (map
->map_timeout
> 0)
3996 retrans
= _res
.retrans
;
3997 _res
.retrans
= map
->map_timeout
;
3999 if (map
->map_retry
> 0)
4002 _res
.retry
= map
->map_retry
;
4004 #endif /* NAMED_BIND */
4006 /* set default TTL */
4007 s
->s_namecanon
.nc_exp
= now
+ SM_DEFAULT_TTL
;
4012 (void) sm_strlcpy(hbuf
, name
, sizeof(hbuf
));
4013 if (getcanonname(hbuf
, sizeof(hbuf
) - 1, !HasWildcardMX
, &ttl
))
4017 s
->s_namecanon
.nc_exp
= now
+ SM_MIN(ttl
,
4023 if ((cp
= strchr(name
, ']')) == NULL
)
4026 sm_dprintf("FAILED\n");
4033 if ((in_addr
.s_addr
= inet_addr(&name
[1])) != INADDR_NONE
)
4034 hp
= sm_gethostbyaddr((char *)&in_addr
,
4036 #endif /* NETINET */
4039 anynet_pton(AF_INET6
, &name
[1], &in6_addr
) == 1)
4040 hp
= sm_gethostbyaddr((char *)&in6_addr
,
4041 IN6ADDRSZ
, AF_INET6
);
4042 #endif /* NETINET6 */
4047 /* found a match -- copy out */
4048 ans
= denlstring((char *) hp
->h_name
, true, true);
4050 if (ans
== hp
->h_name
)
4052 static char n
[MAXNAME
+ 1];
4054 /* hp->h_name is about to disappear */
4055 (void) sm_strlcpy(n
, ans
, sizeof(n
));
4060 #endif /* NETINET6 */
4064 if (map
->map_timeout
> 0)
4065 _res
.retrans
= retrans
;
4066 if (map
->map_retry
> 0)
4068 #endif /* NAMED_BIND */
4070 s
->s_namecanon
.nc_flags
|= NCF_VALID
; /* will be soon */
4072 /* Found an answer */
4075 s
->s_namecanon
.nc_stat
= *statp
= EX_OK
;
4076 if (s
->s_namecanon
.nc_cname
!= NULL
)
4077 sm_free(s
->s_namecanon
.nc_cname
);
4078 s
->s_namecanon
.nc_cname
= sm_strdup_x(ans
);
4079 if (bitset(MF_MATCHONLY
, map
->map_mflags
))
4080 cp
= map_rewrite(map
, name
, strlen(name
), NULL
);
4082 cp
= map_rewrite(map
, ans
, strlen(ans
), av
);
4084 sm_dprintf("FOUND %s\n", ans
);
4089 /* No match found */
4090 s
->s_namecanon
.nc_errno
= errno
;
4092 s
->s_namecanon
.nc_herrno
= h_errno
;
4094 sm_dprintf("FAIL (%d)\n", h_errno
);
4100 CurEnv
->e_status
= "4.4.3";
4101 message("851 %s: Name server timeout",
4102 shortenstring(name
, 33));
4104 *statp
= EX_TEMPFAIL
;
4107 case HOST_NOT_FOUND
:
4113 *statp
= EX_SOFTWARE
;
4117 *statp
= EX_UNAVAILABLE
;
4120 #else /* NAMED_BIND */
4122 sm_dprintf("FAIL\n");
4124 #endif /* NAMED_BIND */
4125 s
->s_namecanon
.nc_stat
= *statp
;
4129 ** HOST_MAP_INIT -- initialize host class structures
4132 ** map -- a pointer to this map.
4133 ** args -- argument string.
4140 host_map_init(map
, args
)
4144 register char *p
= args
;
4148 while (isascii(*p
) && isspace(*p
))
4159 map
->map_tapp
= ++p
;
4163 map
->map_mflags
|= MF_MATCHONLY
;
4167 map
->map_mflags
|= MF_NODEFER
;
4170 case 'S': /* only for consistency */
4171 map
->map_spacesub
= *++p
;
4175 map
->map_mflags
|= MF_DEFER
;
4182 while (isascii(*++p
) && isspace(*p
))
4187 map
->map_timeout
= convtime(p
, 's');
4194 while (isascii(*++p
) && isspace(*p
))
4196 map
->map_retry
= atoi(p
);
4199 while (*p
!= '\0' && !(isascii(*p
) && isspace(*p
)))
4204 if (map
->map_app
!= NULL
)
4205 map
->map_app
= newstr(map
->map_app
);
4206 if (map
->map_tapp
!= NULL
)
4207 map
->map_tapp
= newstr(map
->map_tapp
);
4213 ** ANYNET_NTOP -- convert an IPv6 network address to printable form.
4216 ** s6a -- a pointer to an in6_addr structure.
4217 ** dst -- buffer to store result in
4218 ** dst_len -- size of dst buffer
4221 ** A printable version of that structure.
4225 anynet_ntop(s6a
, dst
, dst_len
)
4226 struct in6_addr
*s6a
;
4232 if (IN6_IS_ADDR_V4MAPPED(s6a
))
4233 ap
= (char *) inet_ntop(AF_INET
,
4234 &s6a
->s6_addr
[IN6ADDRSZ
- INADDRSZ
],
4241 /* Save pointer to beginning of string */
4244 /* Add IPv6: protocol tag */
4245 sz
= sm_strlcpy(dst
, "IPv6:", dst_len
);
4250 ap
= (char *) inet_ntop(AF_INET6
, s6a
, dst
, dst_len
);
4252 /* Restore pointer to beginning of string */
4260 ** ANYNET_PTON -- convert printed form to network address.
4262 ** Wrapper for inet_pton() which handles IPv6: labels.
4265 ** family -- address family
4267 ** dst -- destination address structure
4270 ** 1 if the address was valid
4271 ** 0 if the address wasn't parseable
4276 anynet_pton(family
, src
, dst
)
4281 if (family
== AF_INET6
&& sm_strncasecmp(src
, "IPv6:", 5) == 0)
4283 return inet_pton(family
, src
, dst
);
4285 #endif /* NETINET6 */
4287 ** ANYNET_NTOA -- convert a network address to printable form.
4290 ** sap -- a pointer to a sockaddr structure.
4293 ** A printable version of that sockaddr.
4296 #ifdef USE_SOCK_STREAM
4299 # include <net/if_dl.h>
4300 # endif /* NETLINK */
4304 register SOCKADDR
*sap
;
4309 static char buf
[100];
4311 /* check for null/zero family */
4314 if (sap
->sa
.sa_family
== 0)
4317 switch (sap
->sa
.sa_family
)
4321 if (sap
->sunix
.sun_path
[0] != '\0')
4322 (void) sm_snprintf(buf
, sizeof(buf
), "[UNIX: %.64s]",
4323 sap
->sunix
.sun_path
);
4325 (void) sm_strlcpy(buf
, "[UNIX: localhost]", sizeof(buf
));
4327 # endif /* NETUNIX */
4331 return (char *) inet_ntoa(sap
->sin
.sin_addr
);
4332 # endif /* NETINET */
4336 ap
= anynet_ntop(&sap
->sin6
.sin6_addr
, buf
, sizeof(buf
));
4340 # endif /* NETINET6 */
4344 (void) sm_snprintf(buf
, sizeof(buf
), "[LINK: %s]",
4345 link_ntoa((struct sockaddr_dl
*) &sap
->sa
));
4347 # endif /* NETLINK */
4349 /* this case is needed when nothing is #defined */
4350 /* in order to keep the switch syntactically correct */
4354 /* unknown family -- just dump bytes */
4355 (void) sm_snprintf(buf
, sizeof(buf
), "Family %d: ", sap
->sa
.sa_family
);
4356 bp
= &buf
[strlen(buf
)];
4357 ap
= sap
->sa
.sa_data
;
4358 for (l
= sizeof(sap
->sa
.sa_data
); --l
>= 0; )
4360 (void) sm_snprintf(bp
, SPACELEFT(buf
, bp
), "%02x:",
4368 ** HOSTNAMEBYANYADDR -- return name of host based on address
4371 ** sap -- SOCKADDR pointer
4374 ** text representation of host name.
4381 hostnamebyanyaddr(sap
)
4382 register SOCKADDR
*sap
;
4384 register struct hostent
*hp
;
4387 # endif /* NAMED_BIND */
4389 struct in6_addr in6_addr
;
4390 # endif /* NETINET6 */
4393 /* shorten name server timeout to avoid higher level timeouts */
4394 saveretry
= _res
.retry
;
4395 if (_res
.retry
* _res
.retrans
> 20)
4396 _res
.retry
= 20 / _res
.retrans
;
4397 # endif /* NAMED_BIND */
4399 switch (sap
->sa
.sa_family
)
4403 hp
= sm_gethostbyaddr((char *) &sap
->sin
.sin_addr
,
4406 # endif /* NETINET */
4410 hp
= sm_gethostbyaddr((char *) &sap
->sin6
.sin6_addr
,
4411 IN6ADDRSZ
, AF_INET6
);
4413 # endif /* NETINET6 */
4417 hp
= sm_gethostbyaddr((char *) &sap
->siso
.siso_addr
,
4418 sizeof(sap
->siso
.siso_addr
), AF_ISO
);
4420 # endif /* NETISO */
4426 # endif /* NETUNIX */
4429 hp
= sm_gethostbyaddr(sap
->sa
.sa_data
, sizeof(sap
->sa
.sa_data
),
4435 _res
.retry
= saveretry
;
4436 # endif /* NAMED_BIND */
4438 # if NETINET || NETINET6
4439 if (hp
!= NULL
&& hp
->h_name
[0] != '['
4441 && inet_pton(AF_INET6
, hp
->h_name
, &in6_addr
) != 1
4442 # endif /* NETINET6 */
4444 && inet_addr(hp
->h_name
) == INADDR_NONE
4445 # endif /* NETINET */
4450 name
= denlstring((char *) hp
->h_name
, true, true);
4452 if (name
== hp
->h_name
)
4454 static char n
[MAXNAME
+ 1];
4456 /* Copy the string, hp->h_name is about to disappear */
4457 (void) sm_strlcpy(n
, name
, sizeof(n
));
4461 # endif /* NETINET6 */
4464 # endif /* NETINET || NETINET6 */
4472 # endif /* NETINET6 */
4475 if (sap
->sa
.sa_family
== AF_UNIX
&& sap
->sunix
.sun_path
[0] == '\0')
4477 # endif /* NETUNIX */
4479 static char buf
[203];
4481 (void) sm_snprintf(buf
, sizeof(buf
), "[%.200s]",
4486 #endif /* USE_SOCK_STREAM */