2 * Dropbear - a SSH2 server
4 * Copyright (c) 2002,2003 Matt Johnston
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25 * strlcat() is copyright as follows:
26 * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
27 * All rights reserved.
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
32 * 1. Redistributions of source code must retain the above copyright
33 * notice, this list of conditions and the following disclaimer.
34 * 2. Redistributions in binary form must reproduce the above copyright
35 * notice, this list of conditions and the following disclaimer in the
36 * documentation and/or other materials provided with the distribution.
37 * 3. The name of the author may not be used to endorse or promote products
38 * derived from this software without specific prior written permission.
40 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
41 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
42 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
43 * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
44 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
45 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
46 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
47 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
48 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
49 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
59 static void generic_dropbear_exit(int exitcode
, const char* format
,
60 va_list param
) ATTRIB_NORETURN
;
61 static void generic_dropbear_log(int priority
, const char* format
,
64 void (*_dropbear_exit
)(int exitcode
, const char* format
, va_list param
) ATTRIB_NORETURN
65 = generic_dropbear_exit
;
66 void (*_dropbear_log
)(int priority
, const char* format
, va_list param
)
67 = generic_dropbear_log
;
73 #ifndef DISABLE_SYSLOG
76 openlog(PROGNAME
, LOG_PID
, LOG_AUTHPRIV
);
79 #endif /* DISABLE_SYSLOG */
81 /* the "format" string must be <= 100 characters */
82 void dropbear_close(const char* format
, ...) {
86 va_start(param
, format
);
87 _dropbear_exit(EXIT_SUCCESS
, format
, param
);
92 void dropbear_exit(const char* format
, ...) {
96 va_start(param
, format
);
97 _dropbear_exit(EXIT_FAILURE
, format
, param
);
101 static void generic_dropbear_exit(int exitcode
, const char* format
,
106 snprintf(fmtbuf
, sizeof(fmtbuf
), "Exited: %s", format
);
108 _dropbear_log(LOG_INFO
, fmtbuf
, param
);
113 void fail_assert(const char* expr
, const char* file
, int line
) {
114 dropbear_exit("Failed assertion (%s:%d): `%s'", file
, line
, expr
);
117 static void generic_dropbear_log(int UNUSED(priority
), const char* format
,
122 vsnprintf(printbuf
, sizeof(printbuf
), format
, param
);
124 fprintf(stderr
, "%s\n", printbuf
);
128 /* this is what can be called to write arbitrary log messages */
129 void dropbear_log(int priority
, const char* format
, ...) {
133 va_start(param
, format
);
134 _dropbear_log(priority
, format
, param
);
140 void dropbear_trace(const char* format
, ...) {
148 va_start(param
, format
);
149 fprintf(stderr
, "TRACE (%d): ", getpid());
150 vfprintf(stderr
, format
, param
);
151 fprintf(stderr
, "\n");
154 #endif /* DEBUG_TRACE */
156 static void set_sock_priority(int sock
) {
162 setsockopt(sock
, IPPROTO_TCP
, TCP_NODELAY
, (void*)&val
, sizeof(val
));
164 /* set the TOS bit for either ipv4 or ipv6 */
165 #ifdef IPTOS_LOWDELAY
166 val
= IPTOS_LOWDELAY
;
167 #if defined(IPPROTO_IPV6) && defined(IPV6_TCLASS)
168 setsockopt(sock
, IPPROTO_IPV6
, IPV6_TCLASS
, (void*)&val
, sizeof(val
));
170 setsockopt(sock
, IPPROTO_IP
, IP_TOS
, (void*)&val
, sizeof(val
));
174 /* linux specific, sets QoS class.
175 * 6 looks to be optimal for interactive traffic (see tc-prio(8) ). */
177 setsockopt(sock
, SOL_SOCKET
, SO_PRIORITY
, (void*) &val
, sizeof(val
));
182 /* Listen on address:port.
183 * Special cases are address of "" listening on everything,
184 * and address of NULL listening on localhost only.
185 * Returns the number of sockets bound on success, or -1 on failure. On
186 * failure, if errstring wasn't NULL, it'll be a newly malloced error
188 int dropbear_listen(const char* address
, const char* port
,
189 int *socks
, unsigned int sockcount
, char **errstring
, int *maxfd
) {
191 struct addrinfo hints
, *res
= NULL
, *res0
= NULL
;
194 struct linger linger
;
198 TRACE(("enter dropbear_listen"))
200 memset(&hints
, 0, sizeof(hints
));
201 hints
.ai_family
= AF_UNSPEC
; /* TODO: let them flag v4 only etc */
202 hints
.ai_socktype
= SOCK_STREAM
;
204 /* for calling getaddrinfo:
205 address == NULL and !AI_PASSIVE: local loopback
206 address == NULL and AI_PASSIVE: all interfaces
207 address != NULL: whatever the address says */
209 TRACE(("dropbear_listen: local loopback"))
211 if (address
[0] == '\0') {
212 TRACE(("dropbear_listen: all interfaces"))
215 hints
.ai_flags
= AI_PASSIVE
;
217 err
= getaddrinfo(address
, port
, &hints
, &res0
);
220 if (errstring
!= NULL
&& *errstring
== NULL
) {
222 len
= 20 + strlen(gai_strerror(err
));
223 *errstring
= (char*)m_malloc(len
);
224 snprintf(*errstring
, len
, "Error resolving: %s", gai_strerror(err
));
230 TRACE(("leave dropbear_listen: failed resolving"))
236 for (res
= res0
; res
!= NULL
&& nsock
< sockcount
;
237 res
= res
->ai_next
) {
240 socks
[nsock
] = socket(res
->ai_family
, res
->ai_socktype
,
243 sock
= socks
[nsock
]; /* For clarity */
247 TRACE(("socket() failed"))
251 /* Various useful socket options */
253 /* set to reuse, quick timeout */
254 setsockopt(sock
, SOL_SOCKET
, SO_REUSEADDR
, (void*) &val
, sizeof(val
));
257 setsockopt(sock
, SOL_SOCKET
, SO_LINGER
, (void*)&linger
, sizeof(linger
));
259 #if defined(IPPROTO_IPV6) && defined(IPV6_V6ONLY)
260 if (res
->ai_family
== AF_INET6
) {
262 if (setsockopt(sock
, IPPROTO_IPV6
, IPV6_V6ONLY
,
263 &on
, sizeof(on
)) == -1) {
264 dropbear_log(LOG_WARNING
, "Couldn't set IPV6_V6ONLY");
269 set_sock_priority(sock
);
271 if (bind(sock
, res
->ai_addr
, res
->ai_addrlen
) < 0) {
274 TRACE(("bind(%s) failed", port
))
278 if (listen(sock
, 20) < 0) {
281 TRACE(("listen() failed"))
285 *maxfd
= MAX(*maxfd
, sock
);
296 if (errstring
!= NULL
&& *errstring
== NULL
) {
298 len
= 20 + strlen(strerror(err
));
299 *errstring
= (char*)m_malloc(len
);
300 snprintf(*errstring
, len
, "Error listening: %s", strerror(err
));
302 TRACE(("leave dropbear_listen: failure, %s", strerror(err
)))
306 TRACE(("leave dropbear_listen: success, %d socks bound", nsock
))
310 /* Connect to a given unix socket. The socket is blocking */
311 #ifdef ENABLE_CONNECT_UNIX
312 int connect_unix(const char* path
) {
313 struct sockaddr_un addr
;
316 memset((void*)&addr
, 0x0, sizeof(addr
));
317 addr
.sun_family
= AF_UNIX
;
318 strlcpy(addr
.sun_path
, path
, sizeof(addr
.sun_path
));
319 fd
= socket(PF_UNIX
, SOCK_STREAM
, 0);
321 TRACE(("Failed to open unix socket"))
324 if (connect(fd
, (struct sockaddr
*)&addr
, sizeof(addr
)) < 0) {
325 TRACE(("Failed to connect to '%s' socket", path
))
333 /* Connect via TCP to a host. Connection will try ipv4 or ipv6, will
334 * return immediately if nonblocking is set. On failure, if errstring
335 * wasn't null, it will be a newly malloced error message */
338 int connect_remote(const char* remotehost
, const char* remoteport
,
339 int nonblocking
, char ** errstring
) {
341 struct addrinfo
*res0
= NULL
, *res
= NULL
, hints
;
345 TRACE(("enter connect_remote"))
347 if (errstring
!= NULL
) {
351 memset(&hints
, 0, sizeof(hints
));
352 hints
.ai_socktype
= SOCK_STREAM
;
353 hints
.ai_family
= PF_UNSPEC
;
355 err
= getaddrinfo(remotehost
, remoteport
, &hints
, &res0
);
357 if (errstring
!= NULL
&& *errstring
== NULL
) {
359 len
= 100 + strlen(gai_strerror(err
));
360 *errstring
= (char*)m_malloc(len
);
361 snprintf(*errstring
, len
, "Error resolving '%s' port '%s'. %s",
362 remotehost
, remoteport
, gai_strerror(err
));
364 TRACE(("Error resolving: %s", gai_strerror(err
)))
370 for (res
= res0
; res
; res
= res
->ai_next
) {
372 sock
= socket(res
->ai_family
, res
->ai_socktype
, res
->ai_protocol
);
379 setnonblocking(sock
);
382 if (connect(sock
, res
->ai_addr
, res
->ai_addrlen
) < 0) {
383 if (errno
== EINPROGRESS
&& nonblocking
) {
384 TRACE(("Connect in progress"))
397 if (sock
< 0 && !(errno
== EINPROGRESS
&& nonblocking
)) {
399 if (errstring
!= NULL
&& *errstring
== NULL
) {
401 len
= 20 + strlen(strerror(err
));
402 *errstring
= (char*)m_malloc(len
);
403 snprintf(*errstring
, len
, "Error connecting: %s", strerror(err
));
405 TRACE(("Error connecting: %s", strerror(err
)))
408 set_sock_priority(sock
);
412 if (sock
> 0 && errstring
!= NULL
&& *errstring
!= NULL
) {
416 TRACE(("leave connect_remote: sock %d\n", sock
))
420 /* Sets up a pipe for a, returning three non-blocking file descriptors
421 * and the pid. exec_fn is the function that will actually execute the child process,
422 * it will be run after the child has fork()ed, and is passed exec_data.
423 * If ret_errfd == NULL then stderr will not be captured.
424 * ret_pid can be passed as NULL to discard the pid. */
425 int spawn_command(void(*exec_fn
)(void *user_data
), void *exec_data
,
426 int *ret_writefd
, int *ret_readfd
, int *ret_errfd
, pid_t
*ret_pid
) {
435 /* redirect stdin/stdout/stderr */
436 if (pipe(infds
) != 0) {
437 return DROPBEAR_FAILURE
;
439 if (pipe(outfds
) != 0) {
440 return DROPBEAR_FAILURE
;
442 if (ret_errfd
&& pipe(errfds
) != 0) {
443 return DROPBEAR_FAILURE
;
453 return DROPBEAR_FAILURE
;
459 TRACE(("back to normal sigchld"))
460 /* Revert to normal sigchld handling */
461 if (signal(SIGCHLD
, SIG_DFL
) == SIG_ERR
) {
462 dropbear_exit("signal() error");
465 /* redirect stdin/stdout */
467 if ((dup2(infds
[FDIN
], STDIN_FILENO
) < 0) ||
468 (dup2(outfds
[FDOUT
], STDOUT_FILENO
) < 0) ||
469 (ret_errfd
&& dup2(errfds
[FDOUT
], STDERR_FILENO
) < 0)) {
470 TRACE(("leave noptycommand: error redirecting FDs"))
471 dropbear_exit("Child dup2() failure");
477 close(outfds
[FDOUT
]);
481 close(errfds
[FDOUT
]);
486 return DROPBEAR_FAILURE
;
490 close(outfds
[FDOUT
]);
492 setnonblocking(outfds
[FDIN
]);
493 setnonblocking(infds
[FDOUT
]);
496 close(errfds
[FDOUT
]);
497 setnonblocking(errfds
[FDIN
]);
504 *ret_writefd
= infds
[FDOUT
];
505 *ret_readfd
= outfds
[FDIN
];
507 *ret_errfd
= errfds
[FDIN
];
509 return DROPBEAR_SUCCESS
;
513 /* Runs a command with "sh -c". Will close FDs (except stdin/stdout/stderr) and
514 * re-enabled SIGPIPE. If cmd is NULL, will run a login shell.
516 void run_shell_command(const char* cmd
, unsigned int maxfd
, char* usershell
) {
518 char * baseshell
= NULL
;
521 baseshell
= basename(usershell
);
526 /* a login shell should be "-bash" for "/bin/bash" etc */
527 int len
= strlen(baseshell
) + 2; /* 2 for "-" */
528 argv
[0] = (char*)m_malloc(len
);
529 snprintf(argv
[0], len
, "-%s", baseshell
);
534 argv
[2] = (char*)cmd
;
537 /* construct a shell of the form "-bash" etc */
541 /* Re-enable SIGPIPE for the executed process */
542 if (signal(SIGPIPE
, SIG_DFL
) == SIG_ERR
) {
543 dropbear_exit("signal() error");
546 /* close file descriptors except stdin/stdout/stderr
547 * Need to be sure FDs are closed here to avoid reading files as root */
548 for (i
= 3; i
<= maxfd
; i
++) {
552 execv(usershell
, argv
);
555 void get_socket_address(int fd
, char **local_host
, char **local_port
,
556 char **remote_host
, char **remote_port
, int host_lookup
)
558 struct sockaddr_storage addr
;
561 if (local_host
|| local_port
) {
562 addrlen
= sizeof(addr
);
563 if (getsockname(fd
, (struct sockaddr
*)&addr
, &addrlen
) < 0) {
564 dropbear_exit("Failed socket address: %s", strerror(errno
));
566 getaddrstring(&addr
, local_host
, local_port
, host_lookup
);
568 if (remote_host
|| remote_port
) {
569 addrlen
= sizeof(addr
);
570 if (getpeername(fd
, (struct sockaddr
*)&addr
, &addrlen
) < 0) {
571 dropbear_exit("Failed socket address: %s", strerror(errno
));
573 getaddrstring(&addr
, remote_host
, remote_port
, host_lookup
);
577 /* Return a string representation of the socket address passed. The return
578 * value is allocated with malloc() */
579 void getaddrstring(struct sockaddr_storage
* addr
,
580 char **ret_host
, char **ret_port
,
583 char host
[NI_MAXHOST
+1], serv
[NI_MAXSERV
+1];
587 int flags
= NI_NUMERICSERV
| NI_NUMERICHOST
;
589 #ifndef DO_HOST_LOOKUP
594 flags
= NI_NUMERICSERV
;
597 len
= sizeof(struct sockaddr_storage
);
598 /* Some platforms such as Solaris 8 require that len is the length
599 * of the specific structure. Some older linux systems (glibc 2.1.3
600 * such as debian potato) have sockaddr_storage.__ss_family instead
601 * but we'll ignore them */
602 #ifdef HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY
603 if (addr
->ss_family
== AF_INET
) {
604 len
= sizeof(struct sockaddr_in
);
607 if (addr
->ss_family
== AF_INET6
) {
608 len
= sizeof(struct sockaddr_in6
);
613 ret
= getnameinfo((struct sockaddr
*)addr
, len
, host
, sizeof(host
)-1,
614 serv
, sizeof(serv
)-1, flags
);
618 /* On some systems (Darwin does it) we get EINTR from getnameinfo
619 * somehow. Eew. So we'll just return the IP, since that doesn't seem
620 * to exhibit that behaviour. */
621 getaddrstring(addr
, ret_host
, ret_port
, 0);
624 /* if we can't do a numeric lookup, something's gone terribly wrong */
625 dropbear_exit("Failed lookup: %s", gai_strerror(ret
));
630 *ret_host
= m_strdup(host
);
633 *ret_port
= m_strdup(serv
);
638 void printhex(const char * label
, const unsigned char * buf
, int len
) {
642 fprintf(stderr
, "%s\n", label
);
643 for (i
= 0; i
< len
; i
++) {
644 fprintf(stderr
, "%02x", buf
[i
]);
646 fprintf(stderr
, "\n");
648 else if (i
% 2 == 1) {
649 fprintf(stderr
, " ");
652 fprintf(stderr
, "\n");
656 /* Strip all control characters from text (a null-terminated string), except
657 * for '\n', '\r' and '\t'.
658 * The result returned is a newly allocated string, this must be free()d after
660 char * stripcontrol(const char * text
) {
667 ret
= m_malloc(len
+1);
670 for (i
= 0; i
< len
; i
++) {
671 if ((text
[i
] <= '~' && text
[i
] >= ' ') /* normal printable range */
672 || text
[i
] == '\n' || text
[i
] == '\r' || text
[i
] == '\t') {
682 /* reads the contents of filename into the buffer buf, from the current
683 * position, either to the end of the file, or the buffer being full.
684 * Returns DROPBEAR_SUCCESS or DROPBEAR_FAILURE */
685 int buf_readfile(buffer
* buf
, const char* filename
) {
690 int ret
= DROPBEAR_FAILURE
;
692 fd
= open(filename
, O_RDONLY
);
699 maxlen
= buf
->size
- buf
->pos
;
700 len
= read(fd
, buf_getwriteptr(buf
, maxlen
), maxlen
);
702 if (errno
== EINTR
|| errno
== EAGAIN
) {
707 buf_incrwritepos(buf
, len
);
708 } while (len
< maxlen
&& len
> 0);
710 ret
= DROPBEAR_SUCCESS
;
719 /* get a line from the file into buffer in the style expected for an
721 * Will return DROPBEAR_SUCCESS if data is read, or DROPBEAR_FAILURE on EOF.*/
722 /* Only used for ~/.ssh/known_hosts and ~/.ssh/authorized_keys */
723 #if defined(DROPBEAR_CLIENT) || defined(ENABLE_SVR_PUBKEY_AUTH)
724 int buf_getline(buffer
* line
, FILE * authfile
) {
728 TRACE(("enter buf_getline"))
733 while (line
->pos
< line
->size
) {
735 c
= fgetc(authfile
); /*getc() is weird with some uClibc systems*/
736 if (c
== EOF
|| c
== '\n' || c
== '\r') {
740 buf_putbyte(line
, (unsigned char)c
);
743 TRACE(("leave getauthline: line too long"))
744 /* We return success, but the line length will be zeroed - ie we just
745 * ignore that line */
751 /* if we didn't read anything before EOF or error, exit */
752 if (c
== EOF
&& line
->pos
== 0) {
753 TRACE(("leave buf_getline: failure"))
754 return DROPBEAR_FAILURE
;
756 TRACE(("leave buf_getline: success"))
758 return DROPBEAR_SUCCESS
;
764 /* make sure that the socket closes */
765 void m_close(int fd
) {
770 } while (val
< 0 && errno
== EINTR
);
772 if (val
< 0 && errno
!= EBADF
) {
773 /* Linux says EIO can happen */
774 dropbear_exit("Error closing fd %d, %s", fd
, strerror(errno
));
778 void * m_malloc(size_t size
) {
783 dropbear_exit("m_malloc failed");
785 ret
= calloc(1, size
);
787 dropbear_exit("m_malloc failed");
793 void * m_strdup(const char * str
) {
798 dropbear_exit("m_strdup failed");
803 void * m_realloc(void* ptr
, size_t size
) {
808 dropbear_exit("m_realloc failed");
810 ret
= realloc(ptr
, size
);
812 dropbear_exit("m_realloc failed");
817 /* Clear the data, based on the method in David Wheeler's
818 * "Secure Programming for Linux and Unix HOWTO" */
819 /* Beware of calling this from within dbutil.c - things might get
821 void m_burn(void *data
, unsigned int len
) {
822 volatile char *p
= data
;
832 void setnonblocking(int fd
) {
834 TRACE(("setnonblocking: %d", fd
))
836 if (fcntl(fd
, F_SETFL
, O_NONBLOCK
) < 0) {
837 if (errno
== ENODEV
) {
838 /* Some devices (like /dev/null redirected in)
839 * can't be set to non-blocking */
840 TRACE(("ignoring ENODEV for setnonblocking"))
842 dropbear_exit("Couldn't set nonblocking");
845 TRACE(("leave setnonblocking"))
848 void disallow_core() {
850 lim
.rlim_cur
= lim
.rlim_max
= 0;
851 setrlimit(RLIMIT_CORE
, &lim
);
854 /* Returns DROPBEAR_SUCCESS or DROPBEAR_FAILURE, with the result in *val */
855 int m_str_to_uint(const char* str
, unsigned int *val
) {
857 *val
= strtoul(str
, NULL
, 10);
858 /* The c99 spec doesn't actually seem to define EINVAL, but most platforms
859 * I've looked at mention it in their manpage */
860 if ((*val
== 0 && errno
== EINVAL
)
861 || (*val
== ULONG_MAX
&& errno
== ERANGE
)) {
862 return DROPBEAR_FAILURE
;
864 return DROPBEAR_SUCCESS
;