2005-07-05 01:21:44 +00:00
|
|
|
/*
|
2009-03-29 20:19:18 +00:00
|
|
|
* misc.c - useful client functions
|
|
|
|
*
|
|
|
|
* This file is part of the SSH Library
|
|
|
|
*
|
2009-07-13 00:23:42 +02:00
|
|
|
* Copyright (c) 2003-2009 by Aris Adamantiadis
|
2009-03-29 20:19:18 +00:00
|
|
|
* Copyright (c) 2008-2009 by Andreas Schneider <mail@cynapses.org>
|
|
|
|
*
|
|
|
|
* The SSH Library is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2.1 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* The SSH Library is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
* License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with the SSH Library; see the file COPYING. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
|
|
|
|
* MA 02111-1307, USA.
|
|
|
|
*/
|
2008-12-19 15:29:33 +00:00
|
|
|
|
2011-02-13 11:21:35 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2011-01-11 17:45:26 +01:00
|
|
|
#ifndef _WIN32
|
|
|
|
/* This is needed for a standard getpwuid_r on opensolaris */
|
|
|
|
#define _POSIX_PTHREAD_SEMANTICS
|
|
|
|
#include <pwd.h>
|
2011-02-13 10:32:47 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
2011-01-11 17:45:26 +01:00
|
|
|
#include <arpa/inet.h>
|
2011-05-26 11:19:25 +02:00
|
|
|
|
|
|
|
#ifndef HAVE_CLOCK_GETTIME
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif /* HAVE_CLOCK_GETTIME */
|
|
|
|
#endif /* _WIN32 */
|
2009-09-25 10:01:56 +02:00
|
|
|
|
2008-12-19 15:29:33 +00:00
|
|
|
#include <limits.h>
|
2005-07-05 01:21:44 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2009-09-09 13:42:00 +02:00
|
|
|
#include <sys/stat.h>
|
2005-07-05 01:21:44 +00:00
|
|
|
#include <sys/types.h>
|
2010-04-14 21:20:42 +02:00
|
|
|
#include <ctype.h>
|
2011-05-24 23:26:18 +02:00
|
|
|
#include <time.h>
|
2009-03-28 21:43:53 +00:00
|
|
|
|
2008-03-07 02:11:40 +00:00
|
|
|
#ifdef _WIN32
|
2011-01-01 18:42:13 +01:00
|
|
|
|
|
|
|
#ifndef _WIN32_IE
|
|
|
|
# define _WIN32_IE 0x0501 // SHGetSpecialFolderPath
|
|
|
|
#endif
|
|
|
|
|
2009-07-30 10:45:58 +02:00
|
|
|
#include <winsock2.h> // Must be the first to include
|
2010-05-12 13:08:45 +02:00
|
|
|
#include <ws2tcpip.h>
|
2008-03-07 02:11:40 +00:00
|
|
|
#include <shlobj.h>
|
2009-09-09 13:42:00 +02:00
|
|
|
#include <direct.h>
|
2011-01-01 18:42:13 +01:00
|
|
|
|
2010-05-12 20:52:02 +02:00
|
|
|
#if _MSC_VER >= 1400
|
2011-01-01 18:42:13 +01:00
|
|
|
# include <io.h>
|
2010-05-12 20:52:02 +02:00
|
|
|
#endif /* _MSC_VER */
|
2011-01-01 18:42:13 +01:00
|
|
|
|
2010-05-12 13:47:28 +02:00
|
|
|
#endif /* _WIN32 */
|
2008-03-07 02:11:40 +00:00
|
|
|
|
2009-02-02 16:09:38 +00:00
|
|
|
#include "libssh/priv.h"
|
2009-09-26 01:15:48 +02:00
|
|
|
#include "libssh/misc.h"
|
2010-05-10 23:18:09 +02:00
|
|
|
#include "libssh/session.h"
|
2005-07-05 01:21:44 +00:00
|
|
|
|
2009-03-28 21:43:53 +00:00
|
|
|
#ifdef HAVE_LIBGCRYPT
|
|
|
|
#define GCRYPT_STRING "/gnutls"
|
|
|
|
#else
|
|
|
|
#define GCRYPT_STRING ""
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBCRYPTO
|
|
|
|
#define CRYPTO_STRING "/openssl"
|
|
|
|
#else
|
|
|
|
#define CRYPTO_STRING ""
|
|
|
|
#endif
|
|
|
|
|
2011-09-23 22:54:33 +02:00
|
|
|
#ifdef WITH_ZLIB
|
|
|
|
#define ZLIB_STRING "/zlib"
|
2009-03-28 21:43:53 +00:00
|
|
|
#else
|
2011-09-23 22:54:33 +02:00
|
|
|
#define ZLIB_STRING ""
|
2009-03-28 21:43:53 +00:00
|
|
|
#endif
|
|
|
|
|
2010-04-04 15:11:10 +02:00
|
|
|
/**
|
|
|
|
* @defgroup libssh_misc The SSH helper functions.
|
|
|
|
* @ingroup libssh
|
|
|
|
*
|
|
|
|
* Different helper functions used in the SSH Library.
|
|
|
|
*
|
|
|
|
* @{
|
2009-03-21 09:29:31 +00:00
|
|
|
*/
|
|
|
|
|
2009-04-10 09:06:27 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
char *ssh_get_user_home_dir(void) {
|
2009-10-15 14:53:11 +02:00
|
|
|
char tmp[MAX_PATH] = {0};
|
2009-10-29 12:10:22 +01:00
|
|
|
char *szPath = NULL;
|
2008-12-19 15:29:33 +00:00
|
|
|
|
2009-10-15 14:53:11 +02:00
|
|
|
if (SHGetSpecialFolderPathA(NULL, tmp, CSIDL_PROFILE, TRUE)) {
|
2009-10-15 16:37:07 +02:00
|
|
|
szPath = malloc(strlen(tmp) + 1);
|
|
|
|
if (szPath == NULL) {
|
2009-10-15 14:53:11 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
strcpy(szPath, tmp);
|
2008-12-19 15:29:33 +00:00
|
|
|
return szPath;
|
2009-04-10 09:06:27 +00:00
|
|
|
}
|
2005-07-05 01:21:44 +00:00
|
|
|
|
2009-04-10 09:06:27 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2009-07-30 10:45:58 +02:00
|
|
|
|
2009-12-01 16:59:41 +01:00
|
|
|
/* we have read access on file */
|
|
|
|
int ssh_file_readaccess_ok(const char *file) {
|
2009-07-27 14:20:32 +02:00
|
|
|
if (_access(file, 4) < 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
2009-07-30 10:45:58 +02:00
|
|
|
}
|
2009-12-01 16:57:49 +01:00
|
|
|
|
|
|
|
#define SSH_USEC_IN_SEC 1000000LL
|
|
|
|
#define SSH_SECONDS_SINCE_1601 11644473600LL
|
|
|
|
|
|
|
|
int gettimeofday(struct timeval *__p, void *__t) {
|
|
|
|
union {
|
|
|
|
unsigned long long ns100; /* time since 1 Jan 1601 in 100ns units */
|
|
|
|
FILETIME ft;
|
|
|
|
} now;
|
|
|
|
|
|
|
|
GetSystemTimeAsFileTime (&now.ft);
|
|
|
|
__p->tv_usec = (long) ((now.ns100 / 10LL) % SSH_USEC_IN_SEC);
|
|
|
|
__p->tv_sec = (long)(((now.ns100 / 10LL ) / SSH_USEC_IN_SEC) - SSH_SECONDS_SINCE_1601);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
2009-12-21 12:32:58 +01:00
|
|
|
|
2011-08-16 22:24:31 +02:00
|
|
|
char *ssh_get_local_username(void) {
|
|
|
|
DWORD size = 0;
|
|
|
|
char *user;
|
2010-04-06 19:39:41 +02:00
|
|
|
|
2011-08-16 22:24:31 +02:00
|
|
|
/* get the size */
|
|
|
|
GetUserName(NULL, &size);
|
2010-04-06 19:39:41 +02:00
|
|
|
|
2011-08-16 22:24:31 +02:00
|
|
|
user = (char *) malloc(size);
|
|
|
|
if (user == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-04-06 19:39:41 +02:00
|
|
|
|
2011-08-16 22:24:31 +02:00
|
|
|
if (GetUserName(user, &size)) {
|
|
|
|
return user;
|
|
|
|
}
|
2010-04-06 19:39:41 +02:00
|
|
|
|
2011-08-16 22:24:31 +02:00
|
|
|
return NULL;
|
2010-04-06 19:39:41 +02:00
|
|
|
}
|
2011-02-13 11:21:35 +01:00
|
|
|
|
|
|
|
int ssh_is_ipaddr_v4(const char *str) {
|
|
|
|
struct sockaddr_storage ss;
|
|
|
|
int sslen = sizeof(ss);
|
|
|
|
int rc = SOCKET_ERROR;
|
|
|
|
|
2011-02-13 17:36:45 +01:00
|
|
|
/* WSAStringToAddressA thinks that 0.0.0 is a valid IP */
|
2011-04-11 11:17:32 +02:00
|
|
|
if (strlen(str) < 7) {
|
2011-02-13 17:36:45 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-02-13 11:21:35 +01:00
|
|
|
rc = WSAStringToAddressA((LPSTR) str,
|
|
|
|
AF_INET,
|
|
|
|
NULL,
|
|
|
|
(struct sockaddr*)&ss,
|
|
|
|
&sslen);
|
|
|
|
if (rc == 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ssh_is_ipaddr(const char *str) {
|
|
|
|
int rc = SOCKET_ERROR;
|
|
|
|
|
|
|
|
if (strchr(str, ':')) {
|
|
|
|
struct sockaddr_storage ss;
|
|
|
|
int sslen = sizeof(ss);
|
|
|
|
|
|
|
|
/* TODO link-local (IP:v6:addr%ifname). */
|
|
|
|
rc = WSAStringToAddressA((LPSTR) str,
|
|
|
|
AF_INET6,
|
|
|
|
NULL,
|
|
|
|
(struct sockaddr*)&ss,
|
|
|
|
&sslen);
|
|
|
|
if (rc == 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ssh_is_ipaddr_v4(str);
|
|
|
|
}
|
2010-05-12 13:47:28 +02:00
|
|
|
#else /* _WIN32 */
|
2010-04-06 19:39:41 +02:00
|
|
|
|
2010-05-12 13:47:28 +02:00
|
|
|
#ifndef NSS_BUFLEN_PASSWD
|
|
|
|
#define NSS_BUFLEN_PASSWD 4096
|
|
|
|
#endif /* NSS_BUFLEN_PASSWD */
|
2010-05-01 00:40:10 +02:00
|
|
|
|
2009-02-02 16:09:38 +00:00
|
|
|
char *ssh_get_user_home_dir(void) {
|
2009-10-15 14:53:11 +02:00
|
|
|
char *szPath = NULL;
|
2009-12-21 12:32:58 +01:00
|
|
|
struct passwd pwd;
|
|
|
|
struct passwd *pwdbuf;
|
|
|
|
char buf[NSS_BUFLEN_PASSWD];
|
|
|
|
int rc;
|
2009-04-10 09:06:27 +00:00
|
|
|
|
2009-12-21 12:32:58 +01:00
|
|
|
rc = getpwuid_r(getuid(), &pwd, buf, NSS_BUFLEN_PASSWD, &pwdbuf);
|
|
|
|
if (rc != 0) {
|
2011-07-13 12:04:04 +02:00
|
|
|
szPath=getenv("HOME");
|
|
|
|
return szPath ? strdup(szPath) : NULL;
|
2009-04-10 09:06:27 +00:00
|
|
|
}
|
|
|
|
|
2009-12-21 12:32:58 +01:00
|
|
|
szPath = strdup(pwd.pw_dir);
|
2009-04-10 09:06:27 +00:00
|
|
|
|
|
|
|
return szPath;
|
2008-03-07 02:11:40 +00:00
|
|
|
}
|
|
|
|
|
2005-07-05 01:21:44 +00:00
|
|
|
/* we have read access on file */
|
2009-04-10 09:06:27 +00:00
|
|
|
int ssh_file_readaccess_ok(const char *file) {
|
|
|
|
if (access(file, R_OK) < 0) {
|
2005-07-05 01:21:44 +00:00
|
|
|
return 0;
|
2009-04-10 09:06:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
2005-07-05 01:21:44 +00:00
|
|
|
}
|
2010-02-28 22:51:21 +01:00
|
|
|
|
2011-08-16 22:24:31 +02:00
|
|
|
char *ssh_get_local_username(void) {
|
2010-02-28 22:51:21 +01:00
|
|
|
struct passwd pwd;
|
|
|
|
struct passwd *pwdbuf;
|
|
|
|
char buf[NSS_BUFLEN_PASSWD];
|
|
|
|
char *name;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = getpwuid_r(getuid(), &pwd, buf, NSS_BUFLEN_PASSWD, &pwdbuf);
|
|
|
|
if (rc != 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
name = strdup(pwd.pw_name);
|
|
|
|
|
|
|
|
if (name == NULL) {
|
2011-08-16 22:24:31 +02:00
|
|
|
return NULL;
|
2010-02-28 22:51:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return name;
|
|
|
|
}
|
2011-02-13 11:21:35 +01:00
|
|
|
|
|
|
|
int ssh_is_ipaddr_v4(const char *str) {
|
|
|
|
int rc = -1;
|
|
|
|
struct in_addr dest;
|
|
|
|
|
|
|
|
rc = inet_pton(AF_INET, str, &dest);
|
|
|
|
if (rc > 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ssh_is_ipaddr(const char *str) {
|
|
|
|
int rc = -1;
|
|
|
|
|
|
|
|
if (strchr(str, ':')) {
|
|
|
|
struct in6_addr dest6;
|
|
|
|
|
|
|
|
/* TODO link-local (IP:v6:addr%ifname). */
|
|
|
|
rc = inet_pton(AF_INET6, str, &dest6);
|
|
|
|
if (rc > 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ssh_is_ipaddr_v4(str);
|
|
|
|
}
|
|
|
|
|
2010-05-12 13:47:28 +02:00
|
|
|
#endif /* _WIN32 */
|
|
|
|
|
2011-06-06 18:56:30 +02:00
|
|
|
#ifndef HAVE_NTOHLL
|
2010-05-12 13:47:28 +02:00
|
|
|
uint64_t ntohll(uint64_t a) {
|
|
|
|
#ifdef WORDS_BIGENDIAN
|
|
|
|
return a;
|
2011-06-06 18:56:30 +02:00
|
|
|
#else /* WORDS_BIGENDIAN */
|
2012-02-18 12:15:22 +01:00
|
|
|
return (((uint64_t)(a) << 56) | \
|
|
|
|
(((uint64_t)(a) << 40) & 0xff000000000000ULL) | \
|
|
|
|
(((uint64_t)(a) << 24) & 0xff0000000000ULL) | \
|
|
|
|
(((uint64_t)(a) << 8) & 0xff00000000ULL) | \
|
|
|
|
(((uint64_t)(a) >> 8) & 0xff000000ULL) | \
|
|
|
|
(((uint64_t)(a) >> 24) & 0xff0000ULL) | \
|
|
|
|
(((uint64_t)(a) >> 40) & 0xff00ULL) | \
|
|
|
|
((uint64_t)(a) >> 56));
|
2011-06-06 18:56:30 +02:00
|
|
|
#endif /* WORDS_BIGENDIAN */
|
2010-05-12 13:47:28 +02:00
|
|
|
}
|
2011-06-06 18:56:30 +02:00
|
|
|
#endif /* HAVE_NTOHLL */
|
2010-05-12 13:47:28 +02:00
|
|
|
|
|
|
|
char *ssh_lowercase(const char* str) {
|
|
|
|
char *new, *p;
|
|
|
|
|
|
|
|
if (str == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
new = strdup(str);
|
|
|
|
if (new == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (p = new; *p; p++) {
|
|
|
|
*p = tolower(*p);
|
|
|
|
}
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *ssh_hostport(const char *host, int port){
|
|
|
|
char *dest;
|
|
|
|
size_t len;
|
|
|
|
if(host==NULL)
|
|
|
|
return NULL;
|
|
|
|
/* 3 for []:, 5 for 65536 and 1 for nul */
|
|
|
|
len=strlen(host) + 3 + 5 + 1;
|
|
|
|
dest=malloc(len);
|
|
|
|
if(dest==NULL)
|
|
|
|
return NULL;
|
|
|
|
snprintf(dest,len,"[%s]:%d",host,port);
|
|
|
|
return dest;
|
|
|
|
}
|
2010-02-28 22:51:21 +01:00
|
|
|
|
2009-03-21 09:29:31 +00:00
|
|
|
/**
|
|
|
|
* @brief Check if libssh is the required version or get the version
|
|
|
|
* string.
|
|
|
|
*
|
2010-04-04 15:11:10 +02:00
|
|
|
* @param[in] req_version The version required.
|
2009-03-21 09:29:31 +00:00
|
|
|
*
|
|
|
|
* @return If the version of libssh is newer than the version
|
|
|
|
* required it will return a version string.
|
|
|
|
* NULL if the version is older.
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
*
|
|
|
|
* @code
|
|
|
|
* if (ssh_version(SSH_VERSION_INT(0,2,1)) == NULL) {
|
|
|
|
* fprintf(stderr, "libssh version is too old!\n");
|
|
|
|
* exit(1);
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* if (debug) {
|
|
|
|
* printf("libssh %s\n", ssh_version(0));
|
|
|
|
* }
|
|
|
|
* @endcode
|
|
|
|
*/
|
|
|
|
const char *ssh_version(int req_version) {
|
|
|
|
if (req_version <= LIBSSH_VERSION_INT) {
|
2009-03-28 21:43:53 +00:00
|
|
|
return SSH_STRINGIFY(LIBSSH_VERSION) GCRYPT_STRING CRYPTO_STRING
|
2011-09-23 22:54:33 +02:00
|
|
|
ZLIB_STRING;
|
2009-03-21 09:29:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-02-18 11:58:38 +01:00
|
|
|
struct ssh_list *ssh_list_new(void) {
|
2009-06-18 23:01:05 +02:00
|
|
|
struct ssh_list *ret=malloc(sizeof(struct ssh_list));
|
|
|
|
if(!ret)
|
2009-06-19 10:18:24 +02:00
|
|
|
return NULL;
|
2009-06-18 23:01:05 +02:00
|
|
|
ret->root=ret->end=NULL;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ssh_list_free(struct ssh_list *list){
|
|
|
|
struct ssh_iterator *ptr,*next;
|
2011-09-02 13:46:10 +03:00
|
|
|
if(!list)
|
|
|
|
return;
|
2009-06-18 23:01:05 +02:00
|
|
|
ptr=list->root;
|
|
|
|
while(ptr){
|
|
|
|
next=ptr->next;
|
|
|
|
SAFE_FREE(ptr);
|
|
|
|
ptr=next;
|
|
|
|
}
|
|
|
|
SAFE_FREE(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ssh_iterator *ssh_list_get_iterator(const struct ssh_list *list){
|
2011-09-02 13:46:10 +03:00
|
|
|
if(!list)
|
|
|
|
return NULL;
|
2009-06-18 23:01:05 +02:00
|
|
|
return list->root;
|
|
|
|
}
|
|
|
|
|
2011-09-02 13:46:10 +03:00
|
|
|
struct ssh_iterator *ssh_list_find(const struct ssh_list *list, void *value){
|
|
|
|
struct ssh_iterator *it;
|
|
|
|
for(it = ssh_list_get_iterator(list); it != NULL ;it=it->next)
|
|
|
|
if(it->data==value)
|
|
|
|
return it;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-06-18 23:01:05 +02:00
|
|
|
static struct ssh_iterator *ssh_iterator_new(const void *data){
|
|
|
|
struct ssh_iterator *iterator=malloc(sizeof(struct ssh_iterator));
|
2009-06-19 10:18:24 +02:00
|
|
|
if(!iterator)
|
|
|
|
return NULL;
|
2009-06-18 23:01:05 +02:00
|
|
|
iterator->next=NULL;
|
|
|
|
iterator->data=data;
|
|
|
|
return iterator;
|
|
|
|
}
|
|
|
|
|
2010-03-04 20:07:35 +01:00
|
|
|
int ssh_list_append(struct ssh_list *list,const void *data){
|
2009-06-18 23:01:05 +02:00
|
|
|
struct ssh_iterator *iterator=ssh_iterator_new(data);
|
2009-06-19 10:18:24 +02:00
|
|
|
if(!iterator)
|
|
|
|
return SSH_ERROR;
|
2009-06-18 23:01:05 +02:00
|
|
|
if(!list->end){
|
|
|
|
/* list is empty */
|
|
|
|
list->root=list->end=iterator;
|
|
|
|
} else {
|
|
|
|
/* put it on end of list */
|
|
|
|
list->end->next=iterator;
|
|
|
|
list->end=iterator;
|
|
|
|
}
|
2009-06-19 10:18:24 +02:00
|
|
|
return SSH_OK;
|
2009-06-18 23:01:05 +02:00
|
|
|
}
|
|
|
|
|
2010-03-04 20:02:22 +01:00
|
|
|
int ssh_list_prepend(struct ssh_list *list, const void *data){
|
|
|
|
struct ssh_iterator *it = ssh_iterator_new(data);
|
|
|
|
|
|
|
|
if (it == NULL) {
|
|
|
|
return SSH_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (list->end == NULL) {
|
|
|
|
/* list is empty */
|
|
|
|
list->root = list->end = it;
|
|
|
|
} else {
|
|
|
|
/* set as new root */
|
|
|
|
it->next = list->root;
|
|
|
|
list->root = it;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SSH_OK;
|
|
|
|
}
|
|
|
|
|
2009-06-18 23:01:05 +02:00
|
|
|
void ssh_list_remove(struct ssh_list *list, struct ssh_iterator *iterator){
|
|
|
|
struct ssh_iterator *ptr,*prev;
|
|
|
|
prev=NULL;
|
|
|
|
ptr=list->root;
|
|
|
|
while(ptr && ptr != iterator){
|
|
|
|
prev=ptr;
|
|
|
|
ptr=ptr->next;
|
|
|
|
}
|
|
|
|
if(!ptr){
|
|
|
|
/* we did not find the element */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* unlink it */
|
|
|
|
if(prev)
|
|
|
|
prev->next=ptr->next;
|
|
|
|
/* if iterator was the head */
|
|
|
|
if(list->root == iterator)
|
|
|
|
list->root=iterator->next;
|
|
|
|
/* if iterator was the tail */
|
|
|
|
if(list->end == iterator)
|
|
|
|
list->end = prev;
|
|
|
|
SAFE_FREE(iterator);
|
|
|
|
}
|
|
|
|
|
2010-04-04 15:11:10 +02:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*
|
|
|
|
* @brief Removes the top element of the list and returns the data value
|
|
|
|
* attached to it.
|
|
|
|
*
|
|
|
|
* @param[in[ list The ssh_list to remove the element.
|
|
|
|
*
|
|
|
|
* @returns A pointer to the element being stored in head, or NULL
|
|
|
|
* if the list is empty.
|
2010-03-01 18:11:40 +01:00
|
|
|
*/
|
|
|
|
const void *_ssh_list_pop_head(struct ssh_list *list){
|
2009-06-18 23:01:05 +02:00
|
|
|
struct ssh_iterator *iterator=list->root;
|
|
|
|
const void *data;
|
|
|
|
if(!list->root)
|
|
|
|
return NULL;
|
|
|
|
data=iterator->data;
|
|
|
|
list->root=iterator->next;
|
|
|
|
if(list->end==iterator)
|
|
|
|
list->end=NULL;
|
|
|
|
SAFE_FREE(iterator);
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2009-08-21 10:16:36 +02:00
|
|
|
/**
|
|
|
|
* @brief Parse directory component.
|
|
|
|
*
|
|
|
|
* dirname breaks a null-terminated pathname string into a directory component.
|
|
|
|
* In the usual case, ssh_dirname() returns the string up to, but not including,
|
|
|
|
* the final '/'. Trailing '/' characters are not counted as part of the
|
|
|
|
* pathname. The caller must free the memory.
|
|
|
|
*
|
2010-04-04 15:11:10 +02:00
|
|
|
* @param[in] path The path to parse.
|
2009-08-21 10:16:36 +02:00
|
|
|
*
|
2010-04-04 15:11:10 +02:00
|
|
|
* @return The dirname of path or NULL if we can't allocate memory.
|
|
|
|
* If path does not contain a slash, c_dirname() returns
|
|
|
|
* the string ".". If path is the string "/", it returns
|
|
|
|
* the string "/". If path is NULL or an empty string,
|
|
|
|
* "." is returned.
|
2009-08-21 10:16:36 +02:00
|
|
|
*/
|
|
|
|
char *ssh_dirname (const char *path) {
|
|
|
|
char *new = NULL;
|
|
|
|
unsigned int len;
|
|
|
|
|
|
|
|
if (path == NULL || *path == '\0') {
|
|
|
|
return strdup(".");
|
|
|
|
}
|
|
|
|
|
|
|
|
len = strlen(path);
|
|
|
|
|
|
|
|
/* Remove trailing slashes */
|
|
|
|
while(len > 0 && path[len - 1] == '/') --len;
|
|
|
|
|
|
|
|
/* We have only slashes */
|
|
|
|
if (len == 0) {
|
|
|
|
return strdup("/");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* goto next slash */
|
|
|
|
while(len > 0 && path[len - 1] != '/') --len;
|
|
|
|
|
|
|
|
if (len == 0) {
|
|
|
|
return strdup(".");
|
|
|
|
} else if (len == 1) {
|
|
|
|
return strdup("/");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove slashes again */
|
|
|
|
while(len > 0 && path[len - 1] == '/') --len;
|
|
|
|
|
|
|
|
new = malloc(len + 1);
|
|
|
|
if (new == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
strncpy(new, path, len);
|
|
|
|
new[len] = '\0';
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief basename - parse filename component.
|
|
|
|
*
|
|
|
|
* basename breaks a null-terminated pathname string into a filename component.
|
|
|
|
* ssh_basename() returns the component following the final '/'. Trailing '/'
|
|
|
|
* characters are not counted as part of the pathname.
|
|
|
|
*
|
2010-04-04 15:11:10 +02:00
|
|
|
* @param[in] path The path to parse.
|
2009-08-21 10:16:36 +02:00
|
|
|
*
|
2010-04-04 15:11:10 +02:00
|
|
|
* @return The filename of path or NULL if we can't allocate
|
|
|
|
* memory. If path is a the string "/", basename returns
|
|
|
|
* the string "/". If path is NULL or an empty string,
|
|
|
|
* "." is returned.
|
2009-08-21 10:16:36 +02:00
|
|
|
*/
|
|
|
|
char *ssh_basename (const char *path) {
|
|
|
|
char *new = NULL;
|
|
|
|
const char *s;
|
|
|
|
unsigned int len;
|
|
|
|
|
|
|
|
if (path == NULL || *path == '\0') {
|
|
|
|
return strdup(".");
|
|
|
|
}
|
|
|
|
|
|
|
|
len = strlen(path);
|
|
|
|
/* Remove trailing slashes */
|
|
|
|
while(len > 0 && path[len - 1] == '/') --len;
|
|
|
|
|
|
|
|
/* We have only slashes */
|
|
|
|
if (len == 0) {
|
|
|
|
return strdup("/");
|
|
|
|
}
|
|
|
|
|
|
|
|
while(len > 0 && path[len - 1] != '/') --len;
|
|
|
|
|
|
|
|
if (len > 0) {
|
|
|
|
s = path + len;
|
|
|
|
len = strlen(s);
|
|
|
|
|
|
|
|
while(len > 0 && s[len - 1] == '/') --len;
|
|
|
|
} else {
|
|
|
|
return strdup(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
new = malloc(len + 1);
|
|
|
|
if (new == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
strncpy(new, s, len);
|
|
|
|
new[len] = '\0';
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
2009-06-18 23:01:05 +02:00
|
|
|
|
2009-09-09 13:42:00 +02:00
|
|
|
/**
|
|
|
|
* @brief Attempts to create a directory with the given pathname.
|
|
|
|
*
|
|
|
|
* This is the portable version of mkdir, mode is ignored on Windows systems.
|
|
|
|
*
|
2010-04-04 15:11:10 +02:00
|
|
|
* @param[in] pathname The path name to create the directory.
|
2009-09-09 13:42:00 +02:00
|
|
|
*
|
2010-04-04 15:11:10 +02:00
|
|
|
* @param[in] mode The permissions to use.
|
2009-09-09 13:42:00 +02:00
|
|
|
*
|
2010-04-04 15:11:10 +02:00
|
|
|
* @return 0 on success, < 0 on error with errno set.
|
2009-09-09 13:42:00 +02:00
|
|
|
*/
|
|
|
|
int ssh_mkdir(const char *pathname, mode_t mode) {
|
|
|
|
int r;
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
r = _mkdir(pathname);
|
|
|
|
#else
|
|
|
|
r = mkdir(pathname, mode);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2010-05-10 22:47:00 +02:00
|
|
|
/**
|
|
|
|
* @brief Expand a directory starting with a tilde '~'
|
|
|
|
*
|
|
|
|
* @param[in] d The directory to expand.
|
|
|
|
*
|
|
|
|
* @return The expanded directory, NULL on error.
|
|
|
|
*/
|
|
|
|
char *ssh_path_expand_tilde(const char *d) {
|
2010-09-07 17:26:07 +02:00
|
|
|
char *h = NULL, *r;
|
2010-05-12 13:08:45 +02:00
|
|
|
const char *p;
|
2010-05-10 22:47:00 +02:00
|
|
|
size_t ld;
|
|
|
|
size_t lh = 0;
|
|
|
|
|
|
|
|
if (d[0] != '~') {
|
|
|
|
return strdup(d);
|
|
|
|
}
|
|
|
|
d++;
|
|
|
|
|
|
|
|
/* handle ~user/path */
|
|
|
|
p = strchr(d, '/');
|
|
|
|
if (p != NULL && p > d) {
|
2010-05-12 13:08:45 +02:00
|
|
|
#ifdef _WIN32
|
|
|
|
return strdup(d);
|
|
|
|
#else
|
2010-05-10 22:47:00 +02:00
|
|
|
struct passwd *pw;
|
|
|
|
size_t s = p - d;
|
|
|
|
char u[128];
|
|
|
|
|
|
|
|
if (s > sizeof(u)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
memcpy(u, d, s);
|
|
|
|
u[s] = '\0';
|
|
|
|
pw = getpwnam(u);
|
|
|
|
if (pw == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
ld = strlen(p);
|
|
|
|
h = strdup(pw->pw_dir);
|
2010-05-12 13:08:45 +02:00
|
|
|
#endif
|
2010-05-10 22:47:00 +02:00
|
|
|
} else {
|
|
|
|
ld = strlen(d);
|
|
|
|
p = (char *) d;
|
|
|
|
h = ssh_get_user_home_dir();
|
|
|
|
}
|
|
|
|
if (h == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
lh = strlen(h);
|
|
|
|
|
|
|
|
r = malloc(ld + lh + 1);
|
|
|
|
if (r == NULL) {
|
2010-12-27 18:08:30 +01:00
|
|
|
SAFE_FREE(h);
|
2010-05-10 22:47:00 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lh > 0) {
|
|
|
|
memcpy(r, h, lh);
|
|
|
|
}
|
2010-12-27 18:08:30 +01:00
|
|
|
SAFE_FREE(h);
|
2010-05-31 11:50:52 +03:00
|
|
|
memcpy(r + lh, p, ld + 1);
|
2010-05-10 22:47:00 +02:00
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2010-05-10 23:18:09 +02:00
|
|
|
char *ssh_path_expand_escape(ssh_session session, const char *s) {
|
|
|
|
#define MAX_BUF_SIZE 4096
|
|
|
|
char host[NI_MAXHOST];
|
|
|
|
char buf[MAX_BUF_SIZE];
|
|
|
|
char *r, *x = NULL;
|
|
|
|
const char *p;
|
|
|
|
size_t i, l;
|
|
|
|
|
|
|
|
r = ssh_path_expand_tilde(s);
|
|
|
|
if (r == NULL) {
|
|
|
|
ssh_set_error_oom(session);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-05-31 09:17:54 +02:00
|
|
|
if (strlen(r) > MAX_BUF_SIZE) {
|
|
|
|
ssh_set_error(session, SSH_FATAL, "string to expand too long");
|
|
|
|
free(r);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-05-10 23:18:09 +02:00
|
|
|
p = r;
|
|
|
|
buf[0] = '\0';
|
|
|
|
|
|
|
|
for (i = 0; *p != '\0'; p++) {
|
|
|
|
if (*p != '%') {
|
|
|
|
buf[i] = *p;
|
|
|
|
i++;
|
|
|
|
if (i > MAX_BUF_SIZE) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
buf[i] = '\0';
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
p++;
|
|
|
|
if (*p == '\0') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (*p) {
|
|
|
|
case 'd':
|
2012-02-05 11:50:49 +01:00
|
|
|
x = strdup(session->opts.sshdir);
|
2010-05-10 23:18:09 +02:00
|
|
|
break;
|
|
|
|
case 'u':
|
2011-08-16 22:24:31 +02:00
|
|
|
x = ssh_get_local_username();
|
2010-05-10 23:18:09 +02:00
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
if (gethostname(host, sizeof(host) == 0)) {
|
|
|
|
x = strdup(host);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'h':
|
2012-02-05 11:50:49 +01:00
|
|
|
x = strdup(session->opts.host);
|
2010-05-10 23:18:09 +02:00
|
|
|
break;
|
|
|
|
case 'r':
|
2012-02-05 11:50:49 +01:00
|
|
|
x = strdup(session->opts.username);
|
2010-05-10 23:18:09 +02:00
|
|
|
break;
|
2010-08-10 11:10:26 +02:00
|
|
|
case 'p':
|
2012-02-05 11:50:49 +01:00
|
|
|
if (session->opts.port < 65536) {
|
2010-08-10 11:10:26 +02:00
|
|
|
char tmp[6];
|
|
|
|
|
2012-02-05 11:50:49 +01:00
|
|
|
snprintf(tmp, sizeof(tmp), "%u", session->opts.port);
|
2010-08-10 11:10:26 +02:00
|
|
|
x = strdup(tmp);
|
|
|
|
}
|
|
|
|
break;
|
2010-05-10 23:18:09 +02:00
|
|
|
default:
|
|
|
|
ssh_set_error(session, SSH_FATAL,
|
|
|
|
"Wrong escape sequence detected");
|
2012-10-05 10:51:43 +02:00
|
|
|
free(r);
|
2010-05-10 23:18:09 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x == NULL) {
|
|
|
|
ssh_set_error_oom(session);
|
2012-10-05 10:51:43 +02:00
|
|
|
free(r);
|
2010-05-10 23:18:09 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
i += strlen(x);
|
|
|
|
if (i > MAX_BUF_SIZE) {
|
|
|
|
ssh_set_error(session, SSH_FATAL,
|
|
|
|
"String too long");
|
2012-10-05 10:51:43 +02:00
|
|
|
free(x);
|
|
|
|
free(r);
|
2010-05-10 23:18:09 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
l = strlen(buf);
|
|
|
|
strcat(buf + l, x);
|
2010-05-30 10:59:47 +02:00
|
|
|
buf[i] = '\0';
|
2010-05-10 23:18:09 +02:00
|
|
|
SAFE_FREE(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(r);
|
|
|
|
return strdup(buf);
|
|
|
|
#undef MAX_BUF_SIZE
|
|
|
|
}
|
|
|
|
|
2010-09-29 11:26:35 +02:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*
|
|
|
|
* @brief Analyze the SSH banner to find out if we have a SSHv1 or SSHv2
|
|
|
|
* server.
|
|
|
|
*
|
|
|
|
* @param session The session to analyze the banner from.
|
2010-09-29 12:11:43 +02:00
|
|
|
* @param server 0 means we are a client, 1 a server.
|
2010-09-29 11:26:35 +02:00
|
|
|
* @param ssh1 The variable which is set if it is a SSHv1 server.
|
|
|
|
* @param ssh2 The variable which is set if it is a SSHv2 server.
|
|
|
|
*
|
|
|
|
* @return 0 on success, < 0 on error.
|
|
|
|
*
|
|
|
|
* @see ssh_get_banner()
|
|
|
|
*/
|
2010-09-29 12:11:43 +02:00
|
|
|
int ssh_analyze_banner(ssh_session session, int server, int *ssh1, int *ssh2) {
|
|
|
|
const char *banner;
|
2010-09-29 11:26:35 +02:00
|
|
|
const char *openssh;
|
|
|
|
|
2010-09-29 12:11:43 +02:00
|
|
|
if (server) {
|
|
|
|
banner = session->clientbanner;
|
|
|
|
} else {
|
|
|
|
banner = session->serverbanner;
|
|
|
|
}
|
2010-09-29 11:26:35 +02:00
|
|
|
|
2010-09-29 12:12:14 +02:00
|
|
|
if (banner == NULL) {
|
|
|
|
ssh_set_error(session, SSH_FATAL, "Invalid banner");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Typical banners e.g. are:
|
|
|
|
*
|
|
|
|
* SSH-1.5-openSSH_5.4
|
|
|
|
* SSH-1.99-openSSH_3.0
|
|
|
|
*
|
|
|
|
* SSH-2.0-something
|
|
|
|
* 012345678901234567890
|
|
|
|
*/
|
|
|
|
if (strlen(banner) < 6 ||
|
2010-09-29 11:29:37 +02:00
|
|
|
strncmp(banner, "SSH-", 4) != 0) {
|
2010-09-29 11:26:35 +02:00
|
|
|
ssh_set_error(session, SSH_FATAL, "Protocol mismatch: %s", banner);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-09-29 11:29:37 +02:00
|
|
|
ssh_log(session, SSH_LOG_RARE, "Analyzing banner: %s", banner);
|
|
|
|
|
2010-09-29 11:26:35 +02:00
|
|
|
switch(banner[4]) {
|
|
|
|
case '1':
|
|
|
|
*ssh1 = 1;
|
2010-09-29 12:12:14 +02:00
|
|
|
if (strlen(banner) > 6) {
|
|
|
|
if (banner[6] == '9') {
|
|
|
|
*ssh2 = 1;
|
|
|
|
} else {
|
|
|
|
*ssh2 = 0;
|
|
|
|
}
|
2010-09-29 11:26:35 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '2':
|
|
|
|
*ssh1 = 0;
|
|
|
|
*ssh2 = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ssh_set_error(session, SSH_FATAL, "Protocol mismatch: %s", banner);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
openssh = strstr(banner, "OpenSSH");
|
|
|
|
if (openssh != NULL) {
|
2010-09-29 12:12:14 +02:00
|
|
|
int major, minor;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The banner is typical:
|
|
|
|
* OpenSSH_5.4
|
|
|
|
* 012345678901234567890
|
|
|
|
*/
|
2010-09-29 14:19:07 +02:00
|
|
|
if (strlen(openssh) > 9) {
|
2010-09-29 12:12:14 +02:00
|
|
|
major = strtol(openssh + 8, (char **) NULL, 10);
|
|
|
|
minor = strtol(openssh + 10, (char **) NULL, 10);
|
|
|
|
session->openssh = SSH_VERSION_INT(major, minor, 0);
|
|
|
|
ssh_log(session, SSH_LOG_RARE,
|
|
|
|
"We are talking to an OpenSSH client version: %d.%d (%x)",
|
|
|
|
major, minor, session->openssh);
|
|
|
|
}
|
2010-09-29 11:26:35 +02:00
|
|
|
}
|
|
|
|
|
2010-09-29 12:12:14 +02:00
|
|
|
|
2010-09-29 11:26:35 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-05-24 23:26:18 +02:00
|
|
|
/* try the Monotonic clock if possible for perfs reasons */
|
|
|
|
#ifdef _POSIX_MONOTONIC_CLOCK
|
|
|
|
#define CLOCK CLOCK_MONOTONIC
|
|
|
|
#else
|
|
|
|
#define CLOCK CLOCK_REALTIME
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
* @brief initializes a timestamp to the current time
|
|
|
|
* @param[out] ts pointer to an allocated ssh_timestamp structure
|
|
|
|
*/
|
|
|
|
void ssh_timestamp_init(struct ssh_timestamp *ts){
|
2011-05-25 22:08:31 +02:00
|
|
|
#ifdef HAVE_CLOCK_GETTIME
|
2011-05-24 23:26:18 +02:00
|
|
|
struct timespec tp;
|
|
|
|
clock_gettime(CLOCK, &tp);
|
|
|
|
ts->useconds = tp.tv_nsec / 1000;
|
2011-05-25 22:08:31 +02:00
|
|
|
#else
|
|
|
|
struct timeval tp;
|
|
|
|
gettimeofday(&tp, NULL);
|
|
|
|
ts->useconds = tp.tv_usec;
|
2011-05-25 21:27:48 +02:00
|
|
|
#endif
|
|
|
|
ts->seconds = tp.tv_sec;
|
2011-05-24 23:26:18 +02:00
|
|
|
}
|
|
|
|
|
2011-05-25 22:08:31 +02:00
|
|
|
#undef CLOCK
|
|
|
|
|
2011-05-24 23:26:18 +02:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
* @brief gets the time difference between two timestamps in ms
|
|
|
|
* @param[in] old older value
|
|
|
|
* @param[in] new newer value
|
|
|
|
* @returns difference in milliseconds
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int ssh_timestamp_difference(struct ssh_timestamp *old,
|
|
|
|
struct ssh_timestamp *new){
|
|
|
|
long seconds, usecs, msecs;
|
|
|
|
seconds = new->seconds - old->seconds;
|
|
|
|
usecs = new->useconds - old->useconds;
|
|
|
|
if (usecs < 0){
|
|
|
|
seconds--;
|
|
|
|
usecs += 1000000;
|
|
|
|
}
|
|
|
|
msecs = seconds * 1000 + usecs/1000;
|
|
|
|
return msecs;
|
|
|
|
}
|
|
|
|
|
2011-12-31 02:15:16 +01:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
* @brief turn seconds and microseconds pair (as provided by user-set options)
|
|
|
|
* into millisecond value
|
|
|
|
* @param[in] sec number of seconds
|
|
|
|
* @param[in] usec number of microseconds
|
|
|
|
* @returns milliseconds, or 10000 if user supplied values are equal to zero
|
|
|
|
*/
|
|
|
|
int ssh_make_milliseconds(long sec, long usec) {
|
|
|
|
int res = usec ? (usec / 1000) : 0;
|
|
|
|
res += (sec * 1000);
|
|
|
|
if (res == 0) {
|
|
|
|
res = 10 * 1000; /* use a reasonable default value in case
|
|
|
|
* SSH_OPTIONS_TIMEOUT is not set in options. */
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2011-05-24 23:26:18 +02:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
* @brief Checks if a timeout is elapsed, in function of a previous
|
|
|
|
* timestamp and an assigned timeout
|
|
|
|
* @param[in] ts pointer to an existing timestamp
|
|
|
|
* @param[in] timeout timeout in milliseconds. Negative values mean infinite
|
|
|
|
* timeout
|
|
|
|
* @returns 1 if timeout is elapsed
|
|
|
|
* 0 otherwise
|
|
|
|
*/
|
|
|
|
int ssh_timeout_elapsed(struct ssh_timestamp *ts, int timeout) {
|
2011-12-31 02:15:16 +01:00
|
|
|
struct ssh_timestamp now;
|
|
|
|
|
|
|
|
switch(timeout) {
|
|
|
|
case -2: /*
|
|
|
|
* -2 means user-defined timeout as available in
|
|
|
|
* session->timeout, session->timeout_usec.
|
|
|
|
*/
|
|
|
|
fprintf(stderr, "ssh_timeout_elapsed called with -2. this needs to "
|
|
|
|
"be fixed. please set a breakpoint on %s:%d and "
|
|
|
|
"fix the caller\n", __FILE__, __LINE__);
|
|
|
|
case -1: /* -1 means infinite timeout */
|
|
|
|
return 0;
|
|
|
|
case 0: /* 0 means no timeout */
|
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ssh_timestamp_init(&now);
|
|
|
|
|
|
|
|
return (ssh_timestamp_difference(ts,&now) >= timeout);
|
2011-05-24 23:26:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief updates a timeout value so it reflects the remaining time
|
|
|
|
* @param[in] ts pointer to an existing timestamp
|
|
|
|
* @param[in] timeout timeout in milliseconds. Negative values mean infinite
|
|
|
|
* timeout
|
2011-09-02 13:58:37 +03:00
|
|
|
* @returns remaining time in milliseconds, 0 if elapsed, -1 if never.
|
2011-05-24 23:26:18 +02:00
|
|
|
*/
|
|
|
|
int ssh_timeout_update(struct ssh_timestamp *ts, int timeout){
|
|
|
|
struct ssh_timestamp now;
|
|
|
|
int ms, ret;
|
2011-08-06 10:51:57 +02:00
|
|
|
if (timeout <= 0) {
|
|
|
|
return timeout;
|
|
|
|
}
|
2011-05-24 23:26:18 +02:00
|
|
|
ssh_timestamp_init(&now);
|
|
|
|
ms = ssh_timestamp_difference(ts,&now);
|
|
|
|
if(ms < 0)
|
|
|
|
ms = 0;
|
|
|
|
ret = timeout - ms;
|
|
|
|
return ret >= 0 ? ret: 0;
|
|
|
|
}
|
2011-08-22 16:16:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
int ssh_match_group(const char *group, const char *object)
|
|
|
|
{
|
|
|
|
const char *a;
|
|
|
|
const char *z;
|
|
|
|
|
|
|
|
z = group;
|
|
|
|
do {
|
|
|
|
a = strchr(z, ',');
|
|
|
|
if (a == NULL) {
|
|
|
|
if (strcmp(z, object) == 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
if (strncmp(z, object, a - z) == 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
z = a + 1;
|
|
|
|
} while(1);
|
|
|
|
|
|
|
|
/* not reached */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-08-28 21:32:08 +02:00
|
|
|
/** @} */
|
2010-04-04 15:11:10 +02:00
|
|
|
|
|
|
|
/* vim: set ts=4 sw=4 et cindent: */
|