2019-12-25 13:58:19 +00:00
|
|
|
/*
|
|
|
|
* rigctld.c - (C) Stephane Fillod 2000-2011
|
|
|
|
* (C) Nate Bargmann 2008,2010,2011,2012,2013
|
|
|
|
* (C) The Hamlib Group 2012
|
|
|
|
*
|
|
|
|
* This program test/control a radio using Hamlib.
|
|
|
|
* It takes commands from network connection.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-02-04 13:41:36 +00:00
|
|
|
#include <hamlib/config.h>
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#include <getopt.h>
|
|
|
|
|
|
|
|
#include <sys/types.h> /* See NOTES */
|
|
|
|
|
|
|
|
#ifdef HAVE_NETINET_IN_H
|
|
|
|
# include <netinet/in.h>
|
|
|
|
#endif
|
|
|
|
|
2023-02-14 19:02:02 +00:00
|
|
|
#ifdef HAVE_SYS_SELECT_H
|
|
|
|
# include <sys/select.h>
|
2019-12-25 13:58:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
# include <sys/socket.h>
|
|
|
|
#elif HAVE_WS2TCPIP_H
|
|
|
|
# include <ws2tcpip.h>
|
|
|
|
# include <fcntl.h>
|
|
|
|
# if defined(HAVE_WSPIAPI_H)
|
|
|
|
# include <wspiapi.h>
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
# include <netdb.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_PTHREAD
|
|
|
|
# include <pthread.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <hamlib/rig.h>
|
|
|
|
#include "misc.h"
|
2021-05-19 18:17:46 +00:00
|
|
|
#include "network.h"
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
#include "rigctl_parse.h"
|
2023-02-14 19:02:02 +00:00
|
|
|
#include "riglist.h"
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Reminder: when adding long options,
|
|
|
|
* keep up to date SHORT_OPTIONS, usage()'s output and man page. thanks.
|
|
|
|
* TODO: add an option to read from a file
|
|
|
|
*/
|
2022-12-13 05:28:22 +00:00
|
|
|
#define SHORT_OPTIONS "m:r:p:d:P:D:s:S:c:T:t:C:W:w:x:z:lLuovhVZMRA:n:"
|
2019-12-25 13:58:19 +00:00
|
|
|
static struct option long_options[] =
|
|
|
|
{
|
|
|
|
{"model", 1, 0, 'm'},
|
|
|
|
{"rig-file", 1, 0, 'r'},
|
|
|
|
{"ptt-file", 1, 0, 'p'},
|
|
|
|
{"dcd-file", 1, 0, 'd'},
|
|
|
|
{"ptt-type", 1, 0, 'P'},
|
|
|
|
{"dcd-type", 1, 0, 'D'},
|
|
|
|
{"serial-speed", 1, 0, 's'},
|
2022-05-19 17:28:49 +00:00
|
|
|
{"separator", 1, 0, 'S'},
|
2019-12-25 13:58:19 +00:00
|
|
|
{"civaddr", 1, 0, 'c'},
|
|
|
|
{"listen-addr", 1, 0, 'T'},
|
|
|
|
{"port", 1, 0, 't'},
|
|
|
|
{"set-conf", 1, 0, 'C'},
|
|
|
|
{"list", 0, 0, 'l'},
|
|
|
|
{"show-conf", 0, 0, 'L'},
|
|
|
|
{"dump-caps", 0, 0, 'u'},
|
|
|
|
{"vfo", 0, 0, 'o'},
|
|
|
|
{"verbose", 0, 0, 'v'},
|
|
|
|
{"help", 0, 0, 'h'},
|
|
|
|
{"version", 0, 0, 'V'},
|
2020-10-20 21:20:05 +00:00
|
|
|
{"twiddle_timeout", 1, 0, 'W'},
|
2022-02-11 22:37:24 +00:00
|
|
|
{"twiddle_rit", 1, 0, 'w'},
|
2020-10-23 16:34:42 +00:00
|
|
|
{"uplink", 1, 0, 'x'},
|
2019-12-25 13:58:19 +00:00
|
|
|
{"debug-time-stamps", 0, 0, 'Z'},
|
2021-05-19 18:17:46 +00:00
|
|
|
{"multicast-addr", 1, 0, 'M'},
|
2021-11-28 18:52:29 +00:00
|
|
|
{"multicast-port", 1, 0, 'n'},
|
2022-02-24 23:13:18 +00:00
|
|
|
{"password", 1, 0, 'A'},
|
2022-09-16 13:33:51 +00:00
|
|
|
{"rigctld-idle", 0, 0, 'R'},
|
2019-12-25 13:58:19 +00:00
|
|
|
{0, 0, 0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct handle_data
|
|
|
|
{
|
|
|
|
RIG *rig;
|
|
|
|
int sock;
|
|
|
|
struct sockaddr_storage cli_addr;
|
|
|
|
socklen_t clilen;
|
|
|
|
int vfo_mode;
|
2022-02-24 23:13:18 +00:00
|
|
|
int use_password;
|
2019-12-25 13:58:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void *handle_socket(void *arg);
|
|
|
|
void usage(void);
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_PTHREAD
|
|
|
|
static unsigned client_count;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static RIG *my_rig; /* handle to rig (instance) */
|
2022-01-22 21:19:07 +00:00
|
|
|
static volatile int rig_opened = 0;
|
2019-12-25 13:58:19 +00:00
|
|
|
static int verbose;
|
|
|
|
|
|
|
|
#ifdef HAVE_SIG_ATOMIC_T
|
|
|
|
static sig_atomic_t volatile ctrl_c;
|
|
|
|
#else
|
|
|
|
static int volatile ctrl_c;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
const char *portno = "4532";
|
|
|
|
const char *src_addr = NULL; /* INADDR_ANY */
|
2021-06-21 21:52:27 +00:00
|
|
|
const char *multicast_addr = "0.0.0.0";
|
2021-11-28 18:52:29 +00:00
|
|
|
int multicast_port = 4532;
|
2022-04-15 18:21:35 +00:00
|
|
|
extern char rigctld_password[65];
|
2022-05-19 17:28:49 +00:00
|
|
|
char resp_sep = '\n';
|
2022-06-07 03:54:10 +00:00
|
|
|
extern int lock_mode;
|
2022-07-16 12:54:27 +00:00
|
|
|
extern powerstat_t rig_powerstat;
|
2022-12-13 05:28:22 +00:00
|
|
|
static int rigctld_idle =
|
|
|
|
0; // if true then rig will close when no clients are connected
|
2023-01-04 23:22:56 +00:00
|
|
|
static int skip_open = 0;
|
2019-12-25 13:58:19 +00:00
|
|
|
|
2020-04-01 19:51:50 +00:00
|
|
|
#define MAXCONFLEN 1024
|
2019-12-25 13:58:19 +00:00
|
|
|
|
2021-09-22 04:30:45 +00:00
|
|
|
|
|
|
|
void mutex_rigctld(int lock)
|
2019-12-25 13:58:19 +00:00
|
|
|
{
|
|
|
|
#ifdef HAVE_PTHREAD
|
|
|
|
static pthread_mutex_t client_lock = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
|
|
|
|
if (lock)
|
|
|
|
{
|
|
|
|
pthread_mutex_lock(&client_lock);
|
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "%s: client lock engaged\n", __func__);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "%s: client lock disengaged\n", __func__);
|
|
|
|
pthread_mutex_unlock(&client_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
static BOOL WINAPI CtrlHandler(DWORD fdwCtrlType)
|
|
|
|
{
|
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "%s: called\n", __func__);
|
|
|
|
|
|
|
|
switch (fdwCtrlType)
|
|
|
|
{
|
|
|
|
case CTRL_C_EVENT:
|
|
|
|
case CTRL_CLOSE_EVENT:
|
|
|
|
ctrl_c = 1;
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static void signal_handler(int sig)
|
|
|
|
{
|
|
|
|
switch (sig)
|
|
|
|
{
|
|
|
|
case SIGINT:
|
|
|
|
ctrl_c = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* do nothing */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void handle_error(enum rig_debug_level_e lvl, const char *msg)
|
|
|
|
{
|
|
|
|
int e;
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
LPVOID lpMsgBuf;
|
|
|
|
|
|
|
|
lpMsgBuf = (LPVOID)"Unknown error";
|
|
|
|
e = WSAGetLastError();
|
|
|
|
|
|
|
|
if (FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER
|
|
|
|
| FORMAT_MESSAGE_FROM_SYSTEM
|
|
|
|
| FORMAT_MESSAGE_IGNORE_INSERTS,
|
|
|
|
NULL, e,
|
|
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
|
|
|
|
// Default language
|
|
|
|
(LPTSTR)&lpMsgBuf, 0, NULL))
|
|
|
|
{
|
|
|
|
|
|
|
|
rig_debug(lvl, "%s: Network error %d: %s\n", msg, e, (char *)lpMsgBuf);
|
|
|
|
LocalFree(lpMsgBuf);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rig_debug(lvl, "%s: Network error %d\n", msg, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
e = errno;
|
|
|
|
rig_debug(lvl, "%s: Network error %d: %s\n", msg, e, strerror(e));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
rig_model_t my_model = RIG_MODEL_DUMMY;
|
|
|
|
|
|
|
|
int retcode; /* generic return code from functions */
|
|
|
|
|
|
|
|
int show_conf = 0;
|
|
|
|
int dump_caps_opt = 0;
|
|
|
|
const char *rig_file = NULL, *ptt_file = NULL, *dcd_file = NULL;
|
|
|
|
ptt_type_t ptt_type = RIG_PTT_NONE;
|
|
|
|
dcd_type_t dcd_type = RIG_DCD_NONE;
|
|
|
|
int serial_rate = 0;
|
|
|
|
char *civaddr = NULL; /* NULL means no need to set conf */
|
|
|
|
char conf_parms[MAXCONFLEN] = "";
|
|
|
|
|
|
|
|
struct addrinfo hints, *result, *saved_result;
|
|
|
|
int sock_listen;
|
|
|
|
int reuseaddr = 1;
|
2021-02-18 17:15:02 +00:00
|
|
|
int twiddle_timeout = 0;
|
2022-02-11 22:37:24 +00:00
|
|
|
int twiddle_rit = 0;
|
2020-10-23 16:34:42 +00:00
|
|
|
int uplink = 0;
|
2019-12-25 13:58:19 +00:00
|
|
|
char host[NI_MAXHOST];
|
|
|
|
char serv[NI_MAXSERV];
|
2021-08-30 04:32:29 +00:00
|
|
|
char rigstartup[1024];
|
2022-10-02 13:06:50 +00:00
|
|
|
char vbuf[1024];
|
2019-12-25 13:58:19 +00:00
|
|
|
#if HAVE_SIGACTION
|
|
|
|
struct sigaction act;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_PTHREAD
|
|
|
|
pthread_t thread;
|
|
|
|
pthread_attr_t attr;
|
|
|
|
#endif
|
|
|
|
struct handle_data *arg;
|
|
|
|
int vfo_mode = 0; /* vfo_mode=0 means target VFO is current VFO */
|
2021-06-28 15:11:29 +00:00
|
|
|
int i;
|
2022-02-24 23:13:18 +00:00
|
|
|
extern int is_rigctld;
|
|
|
|
|
|
|
|
is_rigctld = 1;
|
2021-06-28 15:11:29 +00:00
|
|
|
|
2022-10-02 13:06:50 +00:00
|
|
|
int err = setvbuf(stderr, vbuf, _IOFBF, sizeof(vbuf));
|
2022-11-16 21:30:36 +00:00
|
|
|
|
|
|
|
if (err) { rig_debug(RIG_DEBUG_ERR, "%s: setvbuf err=%s\n", __func__, strerror(err)); }
|
2022-10-02 13:06:50 +00:00
|
|
|
|
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
int c;
|
|
|
|
int option_index = 0;
|
2020-07-01 13:52:44 +00:00
|
|
|
char dummy[2];
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
c = getopt_long(argc,
|
|
|
|
argv,
|
|
|
|
SHORT_OPTIONS,
|
|
|
|
long_options,
|
|
|
|
&option_index);
|
|
|
|
|
|
|
|
if (c == -1)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2020-10-23 16:34:42 +00:00
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case 'h':
|
|
|
|
usage();
|
|
|
|
exit(0);
|
|
|
|
|
|
|
|
case 'V':
|
2023-04-19 19:48:32 +00:00
|
|
|
printf("rigctld %s\n", hamlib_version2);
|
2019-12-25 13:58:19 +00:00
|
|
|
exit(0);
|
|
|
|
|
2022-09-16 13:33:51 +00:00
|
|
|
case 'R':
|
|
|
|
rigctld_idle = 1;
|
|
|
|
break;
|
|
|
|
|
2022-02-24 23:13:18 +00:00
|
|
|
case 'A':
|
2022-03-01 17:40:14 +00:00
|
|
|
strncpy(rigctld_password, optarg, sizeof(rigctld_password) - 1);
|
2022-05-13 21:41:59 +00:00
|
|
|
//char *md5 = rig_make_m d5(rigctld_password);
|
2022-05-13 21:50:13 +00:00
|
|
|
char md5[HAMLIB_SECRET_LENGTH + 1];
|
2022-05-13 21:41:59 +00:00
|
|
|
rig_password_generate_secret(rigctld_password, md5);
|
2022-04-15 18:21:35 +00:00
|
|
|
printf("Secret key: %s\n", md5);
|
2022-04-29 21:30:00 +00:00
|
|
|
rig_settings_save("sharedkey", md5, e_CHAR);
|
2022-02-24 23:13:18 +00:00
|
|
|
break;
|
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
case 'm':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
my_model = atoi(optarg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'r':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
rig_file = optarg;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'p':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
ptt_file = optarg;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'd':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
dcd_file = optarg;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'P':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(optarg, "RIG"))
|
|
|
|
{
|
|
|
|
ptt_type = RIG_PTT_RIG;
|
|
|
|
}
|
|
|
|
else if (!strcmp(optarg, "DTR"))
|
|
|
|
{
|
|
|
|
ptt_type = RIG_PTT_SERIAL_DTR;
|
|
|
|
}
|
|
|
|
else if (!strcmp(optarg, "RTS"))
|
|
|
|
{
|
|
|
|
ptt_type = RIG_PTT_SERIAL_RTS;
|
|
|
|
}
|
|
|
|
else if (!strcmp(optarg, "PARALLEL"))
|
|
|
|
{
|
|
|
|
ptt_type = RIG_PTT_PARALLEL;
|
|
|
|
}
|
|
|
|
else if (!strcmp(optarg, "CM108"))
|
|
|
|
{
|
|
|
|
ptt_type = RIG_PTT_CM108;
|
|
|
|
}
|
2020-01-26 10:46:57 +00:00
|
|
|
else if (!strcmp(optarg, "GPIO"))
|
|
|
|
{
|
|
|
|
ptt_type = RIG_PTT_GPIO;
|
|
|
|
}
|
|
|
|
else if (!strcmp(optarg, "GPION"))
|
|
|
|
{
|
|
|
|
ptt_type = RIG_PTT_GPION;
|
|
|
|
}
|
2019-12-25 13:58:19 +00:00
|
|
|
else if (!strcmp(optarg, "NONE"))
|
|
|
|
{
|
|
|
|
ptt_type = RIG_PTT_NONE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-01-26 11:31:40 +00:00
|
|
|
puts("Unrecognised PTT type, using NONE");
|
|
|
|
ptt_type = RIG_PTT_NONE;
|
2019-12-25 13:58:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'D':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(optarg, "RIG"))
|
|
|
|
{
|
|
|
|
dcd_type = RIG_DCD_RIG;
|
|
|
|
}
|
|
|
|
else if (!strcmp(optarg, "DSR"))
|
|
|
|
{
|
|
|
|
dcd_type = RIG_DCD_SERIAL_DSR;
|
|
|
|
}
|
|
|
|
else if (!strcmp(optarg, "CTS"))
|
|
|
|
{
|
|
|
|
dcd_type = RIG_DCD_SERIAL_CTS;
|
|
|
|
}
|
|
|
|
else if (!strcmp(optarg, "CD"))
|
|
|
|
{
|
|
|
|
dcd_type = RIG_DCD_SERIAL_CAR;
|
|
|
|
}
|
|
|
|
else if (!strcmp(optarg, "PARALLEL"))
|
|
|
|
{
|
|
|
|
dcd_type = RIG_DCD_PARALLEL;
|
|
|
|
}
|
2020-01-26 10:46:57 +00:00
|
|
|
else if (!strcmp(optarg, "CM108"))
|
|
|
|
{
|
|
|
|
dcd_type = RIG_DCD_CM108;
|
|
|
|
}
|
|
|
|
else if (!strcmp(optarg, "GPIO"))
|
|
|
|
{
|
|
|
|
dcd_type = RIG_DCD_GPIO;
|
|
|
|
}
|
|
|
|
else if (!strcmp(optarg, "GPION"))
|
|
|
|
{
|
|
|
|
dcd_type = RIG_DCD_GPION;
|
|
|
|
}
|
2019-12-25 13:58:19 +00:00
|
|
|
else if (!strcmp(optarg, "NONE"))
|
|
|
|
{
|
|
|
|
dcd_type = RIG_DCD_NONE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-01-26 11:31:40 +00:00
|
|
|
puts("Unrecognised DCD type, using NONE");
|
|
|
|
dcd_type = RIG_DCD_NONE;
|
2019-12-25 13:58:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'c':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
civaddr = optarg;
|
|
|
|
break;
|
|
|
|
|
2022-05-19 17:28:49 +00:00
|
|
|
case 'S':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
2022-05-21 18:23:51 +00:00
|
|
|
|
2022-05-19 17:28:49 +00:00
|
|
|
resp_sep = *optarg;
|
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "%s: resp_sep=%c\n", __func__, resp_sep);
|
|
|
|
break;
|
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
case 's':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2020-07-01 13:52:44 +00:00
|
|
|
if (sscanf(optarg, "%d%1s", &serial_rate, dummy) != 1)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Invalid baud rate of %s\n", optarg);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'C':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2023-01-05 16:02:46 +00:00
|
|
|
if (strcmp(optarg, "auto_power_on=0") == 0)
|
2019-12-25 13:58:19 +00:00
|
|
|
{
|
2023-01-04 23:22:56 +00:00
|
|
|
rig_debug(RIG_DEBUG_ERR, "%s: skipping rig_open\n", __func__);
|
|
|
|
skip_open = 1;
|
2019-12-25 13:58:19 +00:00
|
|
|
}
|
2023-01-04 23:22:56 +00:00
|
|
|
else
|
2020-04-01 19:51:50 +00:00
|
|
|
{
|
2023-01-04 23:22:56 +00:00
|
|
|
|
|
|
|
if (*conf_parms != '\0')
|
|
|
|
{
|
|
|
|
strcat(conf_parms, ",");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strlen(conf_parms) + strlen(optarg) > MAXCONFLEN - 24)
|
|
|
|
{
|
|
|
|
printf("Length of conf_parms exceeds internal maximum of %d\n",
|
|
|
|
MAXCONFLEN - 24);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
strncat(conf_parms, optarg, MAXCONFLEN - strlen(conf_parms));
|
2020-04-01 19:51:50 +00:00
|
|
|
}
|
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 't':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
portno = optarg;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'T':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
src_addr = optarg;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'o':
|
|
|
|
vfo_mode++;
|
2021-04-12 13:33:58 +00:00
|
|
|
//rig_debug(RIG_DEBUG_ERR, "%s: #0 vfo_mode=%d\n", __func__, vfo_mode);
|
2019-12-25 13:58:19 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'v':
|
|
|
|
verbose++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'L':
|
|
|
|
show_conf++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'l':
|
|
|
|
list_models();
|
|
|
|
exit(0);
|
|
|
|
|
|
|
|
case 'u':
|
|
|
|
dump_caps_opt++;
|
|
|
|
break;
|
|
|
|
|
2020-10-20 21:20:05 +00:00
|
|
|
case 'W':
|
2020-02-24 15:34:02 +00:00
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2021-02-18 17:15:02 +00:00
|
|
|
twiddle_timeout = atoi(optarg);
|
2021-02-28 15:46:01 +00:00
|
|
|
fprintf(stderr,
|
|
|
|
"twiddle_timeout is deprecated...use e.g. --set-conf=twiddle_timeout=5\n");
|
2021-02-18 12:48:06 +00:00
|
|
|
break;
|
|
|
|
|
2022-02-11 22:37:24 +00:00
|
|
|
case 'w':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
twiddle_rit = atoi(optarg);
|
|
|
|
fprintf(stderr,
|
|
|
|
"twiddle_timeout is deprecated...use e.g. --set-conf=twiddle_timeout=5\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
2020-10-23 16:34:42 +00:00
|
|
|
case 'x':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
uplink = atoi(optarg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
case 'Z':
|
|
|
|
rig_set_debug_time_stamp(1);
|
|
|
|
break;
|
|
|
|
|
2021-05-19 18:17:46 +00:00
|
|
|
case 'M':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
multicast_addr = optarg;
|
|
|
|
break;
|
|
|
|
|
2021-11-28 18:52:29 +00:00
|
|
|
case 'n':
|
|
|
|
if (!optarg)
|
|
|
|
{
|
|
|
|
usage(); /* wrong arg count */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
multicast_port = atoi(optarg);
|
2022-02-05 21:27:43 +00:00
|
|
|
|
2021-11-28 18:52:29 +00:00
|
|
|
if (multicast_port == 0)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Invalid multicast port: %s\n", optarg);
|
|
|
|
exit(1);
|
|
|
|
}
|
2022-02-05 21:27:43 +00:00
|
|
|
|
2021-11-28 18:52:29 +00:00
|
|
|
break;
|
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
default:
|
|
|
|
usage(); /* unknown option? */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-09 20:16:41 +00:00
|
|
|
#if 0
|
2021-04-10 19:22:53 +00:00
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
if (!vfo_mode)
|
|
|
|
{
|
2020-03-18 03:54:29 +00:00
|
|
|
printf("Recommend using --vfo switch for rigctld if client supports it\n");
|
2019-12-25 13:58:19 +00:00
|
|
|
printf("rigctl and netrigctl will automatically detect vfo mode\n");
|
|
|
|
}
|
2021-04-10 19:22:53 +00:00
|
|
|
|
2021-04-09 20:16:41 +00:00
|
|
|
#endif
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
rig_set_debug(verbose);
|
|
|
|
|
2022-01-11 06:00:44 +00:00
|
|
|
SNPRINTF(rigstartup, sizeof(rigstartup), "%s(%d) Startup:", __FILE__, __LINE__);
|
2021-08-28 14:53:19 +00:00
|
|
|
|
2021-08-30 04:32:29 +00:00
|
|
|
for (i = 0; i < argc; ++i) { strcat(rigstartup, " "); strcat(rigstartup, argv[i]); }
|
2021-08-28 14:53:19 +00:00
|
|
|
|
2021-08-30 04:32:29 +00:00
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "%s\n", rigstartup);
|
2021-08-28 14:53:19 +00:00
|
|
|
|
2021-03-20 03:56:18 +00:00
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "rigctld %s\n", hamlib_version2);
|
2019-12-25 13:58:19 +00:00
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "%s",
|
|
|
|
"Report bugs to <hamlib-developer@lists.sourceforge.net>\n\n");
|
2022-05-13 21:50:13 +00:00
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "Max# of rigctld client services=%d\n",
|
|
|
|
NI_MAXSERV);
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
my_rig = rig_init(my_model);
|
|
|
|
|
|
|
|
if (!my_rig)
|
|
|
|
{
|
|
|
|
fprintf(stderr,
|
2020-03-23 15:13:02 +00:00
|
|
|
"Unknown rig num %u, or initialization error.\n",
|
2019-12-25 13:58:19 +00:00
|
|
|
my_model);
|
|
|
|
|
|
|
|
fprintf(stderr, "Please check with --list option.\n");
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
retcode = set_conf(my_rig, conf_parms);
|
|
|
|
|
|
|
|
if (retcode != RIG_OK)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Config parameter error: %s\n", rigerror(retcode));
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rig_file)
|
|
|
|
{
|
2022-01-25 23:41:26 +00:00
|
|
|
strncpy(my_rig->state.rigport.pathname, rig_file, HAMLIB_FILPATHLEN - 1);
|
2019-12-25 13:58:19 +00:00
|
|
|
}
|
|
|
|
|
2021-02-18 17:15:02 +00:00
|
|
|
my_rig->state.twiddle_timeout = twiddle_timeout;
|
2022-02-11 22:37:24 +00:00
|
|
|
my_rig->state.twiddle_rit = twiddle_rit;
|
2020-10-23 16:34:42 +00:00
|
|
|
my_rig->state.uplink = uplink;
|
2021-02-28 15:46:01 +00:00
|
|
|
rig_debug(RIG_DEBUG_TRACE, "%s: twiddle=%d, uplink=%d, twiddle_rit=%d\n",
|
|
|
|
__func__,
|
2021-02-18 12:48:06 +00:00
|
|
|
my_rig->state.twiddle_timeout, my_rig->state.uplink, my_rig->state.twiddle_rit);
|
2020-02-25 04:56:18 +00:00
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
/*
|
|
|
|
* ex: RIG_PTT_PARALLEL and /dev/parport0
|
|
|
|
*/
|
2022-07-28 19:20:00 +00:00
|
|
|
if (ptt_type != RIG_PTT_NONE)
|
2020-06-01 03:33:56 +00:00
|
|
|
{
|
2022-01-25 23:41:26 +00:00
|
|
|
my_rig->state.pttport.type.ptt = ptt_type;
|
2022-02-06 05:25:02 +00:00
|
|
|
my_rig->state.pttport_deprecated.type.ptt = ptt_type;
|
2022-12-10 17:49:45 +00:00
|
|
|
// This causes segfault since backend rig_caps are const
|
|
|
|
// rigctld will use the rig->state version of this for clients
|
|
|
|
//my_rig->caps->ptt_type = ptt_type;
|
2020-06-01 03:33:56 +00:00
|
|
|
}
|
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
if (dcd_type != RIG_DCD_NONE)
|
|
|
|
{
|
2022-01-25 23:41:26 +00:00
|
|
|
my_rig->state.dcdport.type.dcd = dcd_type;
|
2022-02-06 05:25:02 +00:00
|
|
|
my_rig->state.dcdport_deprecated.type.dcd = dcd_type;
|
2019-12-25 13:58:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ptt_file)
|
|
|
|
{
|
2022-01-25 23:41:26 +00:00
|
|
|
strncpy(my_rig->state.pttport.pathname, ptt_file, HAMLIB_FILPATHLEN - 1);
|
2022-03-01 17:40:14 +00:00
|
|
|
strncpy(my_rig->state.pttport_deprecated.pathname, ptt_file,
|
|
|
|
HAMLIB_FILPATHLEN - 1);
|
2019-12-25 13:58:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (dcd_file)
|
|
|
|
{
|
2022-01-25 23:41:26 +00:00
|
|
|
strncpy(my_rig->state.dcdport.pathname, dcd_file, HAMLIB_FILPATHLEN - 1);
|
2022-03-01 17:40:14 +00:00
|
|
|
strncpy(my_rig->state.dcdport_deprecated.pathname, dcd_file,
|
|
|
|
HAMLIB_FILPATHLEN - 1);
|
2019-12-25 13:58:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: bound checking and port type == serial */
|
|
|
|
if (serial_rate != 0)
|
|
|
|
{
|
2022-01-25 23:41:26 +00:00
|
|
|
my_rig->state.rigport.parm.serial.rate = serial_rate;
|
2022-02-06 05:25:02 +00:00
|
|
|
my_rig->state.rigport_deprecated.parm.serial.rate = serial_rate;
|
2019-12-25 13:58:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (civaddr)
|
|
|
|
{
|
|
|
|
rig_set_conf(my_rig, rig_token_lookup(my_rig, "civaddr"), civaddr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* print out conf parameters
|
|
|
|
*/
|
|
|
|
if (show_conf)
|
|
|
|
{
|
|
|
|
rig_token_foreach(my_rig, print_conf_list, (rig_ptr_t)my_rig);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* print out conf parameters, and exits immediately
|
|
|
|
* We may be interested only in only caps, and rig_open may fail.
|
|
|
|
*/
|
|
|
|
if (dump_caps_opt)
|
|
|
|
{
|
|
|
|
dumpcaps(my_rig, stdout);
|
|
|
|
rig_cleanup(my_rig); /* if you care about memory */
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2022-01-22 21:19:07 +00:00
|
|
|
/* attempt to open rig to check early for issues */
|
2023-01-04 23:22:56 +00:00
|
|
|
if (skip_open)
|
|
|
|
{
|
|
|
|
rig_opened = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
retcode = rig_open(my_rig);
|
|
|
|
rig_opened = retcode == RIG_OK ? 1 : 0;
|
|
|
|
}
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
if (retcode != RIG_OK)
|
|
|
|
{
|
2021-06-21 21:52:27 +00:00
|
|
|
fprintf(stderr, "rig_open: error = %s %s %s \n", rigerror(retcode), rig_file,
|
|
|
|
strerror(errno));
|
2022-01-22 21:19:07 +00:00
|
|
|
// continue even if opening the rig fails, because it may be powered off
|
2019-12-25 13:58:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (verbose > RIG_DEBUG_ERR)
|
|
|
|
{
|
2020-03-23 15:13:02 +00:00
|
|
|
printf("Opened rig model %u, '%s'\n",
|
2019-12-25 13:58:19 +00:00
|
|
|
my_rig->caps->rig_model,
|
|
|
|
my_rig->caps->model_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "Backend version: %s, Status: %s\n",
|
|
|
|
my_rig->caps->version, rig_strstatus(my_rig->caps->status));
|
|
|
|
|
2022-09-16 13:33:51 +00:00
|
|
|
// Normally we keep the rig open to speed up the 1st client connect
|
|
|
|
// But some rigs like the FT-736 have to lock the rig for CAT control
|
|
|
|
// So they need to release the rig when no clients are connected
|
|
|
|
if (rigctld_idle)
|
2019-12-25 13:58:19 +00:00
|
|
|
{
|
2022-09-16 13:33:51 +00:00
|
|
|
rig_close(my_rig); /* we will reopen for clients */
|
|
|
|
|
|
|
|
if (verbose > RIG_DEBUG_ERR)
|
|
|
|
{
|
|
|
|
printf("Closed rig model %d, '%s - will reopen for clients'\n",
|
2022-09-20 13:46:28 +00:00
|
|
|
my_rig->caps->rig_model,
|
|
|
|
my_rig->caps->model_name);
|
2022-09-16 13:33:51 +00:00
|
|
|
}
|
2019-12-25 13:58:19 +00:00
|
|
|
}
|
2020-03-15 20:32:46 +00:00
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
# ifndef SO_OPENTYPE
|
|
|
|
# define SO_OPENTYPE 0x7008
|
|
|
|
# endif
|
|
|
|
# ifndef SO_SYNCHRONOUS_NONALERT
|
|
|
|
# define SO_SYNCHRONOUS_NONALERT 0x20
|
|
|
|
# endif
|
|
|
|
# ifndef INVALID_SOCKET
|
|
|
|
# define INVALID_SOCKET -1
|
|
|
|
# endif
|
|
|
|
|
|
|
|
WSADATA wsadata;
|
|
|
|
|
|
|
|
if (WSAStartup(MAKEWORD(1, 1), &wsadata) == SOCKET_ERROR)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "WSAStartup socket error\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2020-05-05 14:29:30 +00:00
|
|
|
{
|
|
|
|
int sockopt = SO_SYNCHRONOUS_NONALERT;
|
|
|
|
setsockopt(INVALID_SOCKET, SOL_SOCKET, SO_OPENTYPE, (char *)&sockopt,
|
|
|
|
sizeof(sockopt));
|
|
|
|
}
|
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Prepare listening socket
|
|
|
|
*/
|
|
|
|
memset(&hints, 0, sizeof(struct addrinfo));
|
|
|
|
hints.ai_family = AF_UNSPEC; /* Allow IPv4 or IPv6 */
|
|
|
|
hints.ai_socktype = SOCK_STREAM;/* TCP socket */
|
2020-06-22 14:46:15 +00:00
|
|
|
hints.ai_flags = AI_PASSIVE; /* For wildcard IP address */
|
2019-12-25 13:58:19 +00:00
|
|
|
hints.ai_protocol = 0; /* Any protocol */
|
|
|
|
|
|
|
|
retcode = getaddrinfo(src_addr, portno, &hints, &result);
|
|
|
|
|
2020-06-21 22:47:04 +00:00
|
|
|
if (retcode == 0 && result->ai_family == AF_INET6)
|
|
|
|
{
|
|
|
|
rig_debug(RIG_DEBUG_TRACE, "%s: Using IPV6\n", __func__);
|
|
|
|
}
|
|
|
|
else if (retcode == 0)
|
|
|
|
{
|
|
|
|
rig_debug(RIG_DEBUG_TRACE, "%s: Using IPV4\n", __func__);
|
|
|
|
}
|
|
|
|
else
|
2019-12-25 13:58:19 +00:00
|
|
|
{
|
|
|
|
fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(retcode));
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
saved_result = result;
|
|
|
|
|
2022-02-05 21:27:43 +00:00
|
|
|
enum multicast_item_e items = RIG_MULTICAST_POLL | RIG_MULTICAST_TRANSCEIVE |
|
|
|
|
RIG_MULTICAST_SPECTRUM;
|
|
|
|
retcode = network_multicast_publisher_start(my_rig, multicast_addr,
|
|
|
|
multicast_port, items);
|
2021-05-19 18:17:46 +00:00
|
|
|
|
|
|
|
if (retcode != RIG_OK)
|
|
|
|
{
|
|
|
|
rig_debug(RIG_DEBUG_ERR, "%s: network_multicast_server failed: %s\n", __FILE__,
|
|
|
|
rigerror(retcode));
|
|
|
|
// we will consider this non-fatal for now
|
|
|
|
}
|
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
sock_listen = socket(result->ai_family,
|
|
|
|
result->ai_socktype,
|
|
|
|
result->ai_protocol);
|
|
|
|
|
|
|
|
if (sock_listen < 0)
|
|
|
|
{
|
|
|
|
handle_error(RIG_DEBUG_ERR, "socket");
|
|
|
|
freeaddrinfo(saved_result); /* No longer needed */
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (setsockopt(sock_listen,
|
|
|
|
SOL_SOCKET,
|
|
|
|
SO_REUSEADDR,
|
|
|
|
(char *)&reuseaddr,
|
|
|
|
sizeof(reuseaddr))
|
|
|
|
< 0)
|
|
|
|
{
|
|
|
|
|
|
|
|
handle_error(RIG_DEBUG_ERR, "setsockopt");
|
|
|
|
freeaddrinfo(saved_result); /* No longer needed */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef IPV6_V6ONLY
|
|
|
|
|
|
|
|
if (AF_INET6 == result->ai_family)
|
|
|
|
{
|
|
|
|
/* allow IPv4 mapped to IPv6 clients Windows and BSD default
|
|
|
|
this to 1 (i.e. disallowed) and we prefer it off */
|
2020-05-05 14:29:30 +00:00
|
|
|
int sockopt = 0;
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
if (setsockopt(sock_listen,
|
|
|
|
IPPROTO_IPV6,
|
|
|
|
IPV6_V6ONLY,
|
|
|
|
(char *)&sockopt,
|
|
|
|
sizeof(sockopt))
|
|
|
|
< 0)
|
|
|
|
{
|
|
|
|
|
|
|
|
handle_error(RIG_DEBUG_ERR, "setsockopt");
|
|
|
|
freeaddrinfo(saved_result); /* No longer needed */
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (0 == bind(sock_listen, result->ai_addr, result->ai_addrlen))
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
handle_error(RIG_DEBUG_WARN, "binding failed (trying next interface)");
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
closesocket(sock_listen);
|
|
|
|
#else
|
|
|
|
close(sock_listen);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
while ((result = result->ai_next) != NULL);
|
|
|
|
|
|
|
|
freeaddrinfo(saved_result); /* No longer needed */
|
|
|
|
|
|
|
|
if (NULL == result)
|
|
|
|
{
|
|
|
|
rig_debug(RIG_DEBUG_ERR, "%s: bind error - no available interface\n", __func__);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (listen(sock_listen, 4) < 0)
|
|
|
|
{
|
|
|
|
handle_error(RIG_DEBUG_ERR, "listening");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if HAVE_SIGACTION
|
|
|
|
|
|
|
|
#ifdef SIGPIPE
|
|
|
|
/* Ignore SIGPIPE as we will handle it at the write()/send() calls
|
|
|
|
that will consequently fail with EPIPE. All child threads will
|
|
|
|
inherit this disposition which is what we want. */
|
|
|
|
memset(&act, 0, sizeof act);
|
|
|
|
act.sa_handler = SIG_IGN;
|
|
|
|
act.sa_flags = SA_RESTART;
|
|
|
|
|
|
|
|
if (sigaction(SIGPIPE, &act, NULL))
|
|
|
|
{
|
|
|
|
handle_error(RIG_DEBUG_ERR, "sigaction SIGPIPE");
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SIGINT
|
|
|
|
memset(&act, 0, sizeof act);
|
|
|
|
act.sa_handler = signal_handler;
|
|
|
|
|
|
|
|
if (sigaction(SIGINT, &act, NULL))
|
|
|
|
{
|
|
|
|
handle_error(RIG_DEBUG_ERR, "sigaction SIGINT");
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#elif defined (WIN32)
|
|
|
|
|
|
|
|
if (!SetConsoleCtrlHandler(CtrlHandler, TRUE))
|
|
|
|
{
|
|
|
|
handle_error(RIG_DEBUG_ERR, "SetConsoleCtrlHandler");
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif HAVE_SIGNAL
|
|
|
|
#ifdef SIGPIPE
|
|
|
|
|
|
|
|
if (SIG_ERR == signal(SIGPIPE, SIG_IGN))
|
|
|
|
{
|
|
|
|
handle_error(RIG_DEBUG_ERR, "signal SIGPIPE");
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#ifdef SIGINT
|
|
|
|
|
|
|
|
if (SIG_ERR == signal(SIGINT, signal_handler))
|
|
|
|
{
|
|
|
|
handle_error(RIG_DEBUG_ERR, "signal SIGINT");
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* main loop accepting connections
|
|
|
|
*/
|
2022-07-27 22:16:17 +00:00
|
|
|
rig_debug(RIG_DEBUG_TRACE, "%s: rigctld listening on port %s\n", __func__,
|
|
|
|
portno);
|
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
fd_set set;
|
|
|
|
struct timeval timeout;
|
|
|
|
|
2022-02-24 23:13:18 +00:00
|
|
|
arg = calloc(1, sizeof(struct handle_data));
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
if (!arg)
|
|
|
|
{
|
2022-02-24 23:13:18 +00:00
|
|
|
rig_debug(RIG_DEBUG_ERR, "calloc: %s\n", strerror(errno));
|
2019-12-25 13:58:19 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2022-03-01 17:40:14 +00:00
|
|
|
|
|
|
|
if (rigctld_password[0] != 0) { arg->use_password = 1; }
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
/* use select to allow for periodic checks for CTRL+C */
|
|
|
|
FD_ZERO(&set);
|
|
|
|
FD_SET(sock_listen, &set);
|
|
|
|
timeout.tv_sec = 5;
|
|
|
|
timeout.tv_usec = 0;
|
|
|
|
retcode = select(sock_listen + 1, &set, NULL, NULL, &timeout);
|
|
|
|
|
2021-05-31 13:22:22 +00:00
|
|
|
if (retcode == -1)
|
2019-12-25 13:58:19 +00:00
|
|
|
{
|
2021-05-31 13:22:22 +00:00
|
|
|
int errno_stored = errno;
|
2021-06-21 21:52:27 +00:00
|
|
|
rig_debug(RIG_DEBUG_ERR, "%s: select() failed: %s\n", __func__,
|
|
|
|
strerror(errno_stored));
|
2021-05-31 13:22:22 +00:00
|
|
|
|
2022-03-01 17:40:14 +00:00
|
|
|
if (ctrl_c)
|
2022-02-28 19:08:41 +00:00
|
|
|
{
|
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "%s: ctrl_c when retcode==-1\n", __func__);
|
|
|
|
break;
|
|
|
|
}
|
2022-03-01 17:40:14 +00:00
|
|
|
|
2021-05-31 13:22:22 +00:00
|
|
|
if (errno == EINTR)
|
|
|
|
{
|
2021-06-21 21:52:27 +00:00
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "%s: ignoring interrupted system call\n",
|
|
|
|
__func__);
|
2021-05-31 13:22:22 +00:00
|
|
|
retcode = 0;
|
|
|
|
}
|
2019-12-25 13:58:19 +00:00
|
|
|
}
|
2021-05-31 13:22:22 +00:00
|
|
|
else if (retcode == 0)
|
2019-12-25 13:58:19 +00:00
|
|
|
{
|
|
|
|
if (ctrl_c)
|
|
|
|
{
|
2022-02-28 19:08:41 +00:00
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "%s: ctrl_c when retcode==0\n", __func__);
|
2019-12-25 13:58:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
arg->rig = my_rig;
|
|
|
|
arg->clilen = sizeof(arg->cli_addr);
|
|
|
|
arg->vfo_mode = vfo_mode;
|
|
|
|
arg->sock = accept(sock_listen,
|
|
|
|
(struct sockaddr *)&arg->cli_addr,
|
|
|
|
&arg->clilen);
|
|
|
|
|
|
|
|
if (arg->sock < 0)
|
|
|
|
{
|
|
|
|
handle_error(RIG_DEBUG_ERR, "accept");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((retcode = getnameinfo((struct sockaddr const *)&arg->cli_addr,
|
|
|
|
arg->clilen,
|
|
|
|
host,
|
|
|
|
sizeof(host),
|
|
|
|
serv,
|
|
|
|
sizeof(serv),
|
2021-11-28 18:41:10 +00:00
|
|
|
NI_NUMERICHOST | NI_NUMERICSERV))
|
2019-12-25 13:58:19 +00:00
|
|
|
< 0)
|
|
|
|
{
|
|
|
|
rig_debug(RIG_DEBUG_WARN,
|
|
|
|
"Peer lookup error: %s",
|
|
|
|
gai_strerror(retcode));
|
|
|
|
}
|
|
|
|
|
|
|
|
rig_debug(RIG_DEBUG_VERBOSE,
|
|
|
|
"Connection opened from %s:%s\n",
|
|
|
|
host,
|
|
|
|
serv);
|
|
|
|
|
|
|
|
#ifdef HAVE_PTHREAD
|
|
|
|
pthread_attr_init(&attr);
|
|
|
|
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
|
|
|
|
|
|
|
|
retcode = pthread_create(&thread, &attr, handle_socket, arg);
|
|
|
|
|
|
|
|
if (retcode != 0)
|
|
|
|
{
|
|
|
|
rig_debug(RIG_DEBUG_ERR, "pthread_create: %s\n", strerror(retcode));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
handle_socket(arg);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (retcode == 0 && !ctrl_c);
|
2022-03-01 17:40:14 +00:00
|
|
|
|
2022-02-28 19:08:41 +00:00
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "%s: while loop done\n", __func__);
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_PTHREAD
|
|
|
|
/* allow threads to finish current action */
|
2021-09-22 04:30:45 +00:00
|
|
|
mutex_rigctld(1);
|
2022-07-04 12:26:30 +00:00
|
|
|
HAMLIB_TRACE;
|
2022-05-13 21:50:13 +00:00
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
if (client_count)
|
|
|
|
{
|
2020-03-23 15:13:02 +00:00
|
|
|
rig_debug(RIG_DEBUG_WARN, "%u outstanding client(s)\n", client_count);
|
2019-12-25 13:58:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rig_close(my_rig);
|
2022-07-04 12:26:30 +00:00
|
|
|
HAMLIB_TRACE;
|
2021-09-22 04:30:45 +00:00
|
|
|
mutex_rigctld(0);
|
2022-07-04 12:26:30 +00:00
|
|
|
HAMLIB_TRACE;
|
2019-12-25 13:58:19 +00:00
|
|
|
#else
|
|
|
|
rig_close(my_rig); /* close port */
|
|
|
|
#endif
|
2022-01-22 21:19:07 +00:00
|
|
|
|
2022-07-04 12:26:30 +00:00
|
|
|
HAMLIB_TRACE;
|
2022-01-22 21:19:07 +00:00
|
|
|
network_multicast_publisher_stop(my_rig);
|
|
|
|
|
2022-07-04 12:26:30 +00:00
|
|
|
HAMLIB_TRACE;
|
2019-12-25 13:58:19 +00:00
|
|
|
rig_cleanup(my_rig); /* if you care about memory */
|
|
|
|
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
WSACleanup();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-02-28 15:46:01 +00:00
|
|
|
static FILE *get_fsockout(struct handle_data *handle_data_arg)
|
2021-01-24 16:51:19 +00:00
|
|
|
{
|
|
|
|
#ifdef __MINGW32__
|
2021-01-24 23:19:58 +00:00
|
|
|
int sock_osfhandle = _open_osfhandle(handle_data_arg->sock, _O_RDONLY);
|
2021-01-24 16:51:19 +00:00
|
|
|
return _fdopen(sock_osfhandle, "wb");
|
|
|
|
#else
|
|
|
|
return fdopen(handle_data_arg->sock, "wb");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-02-28 15:46:01 +00:00
|
|
|
static FILE *get_fsockin(struct handle_data *handle_data_arg)
|
2021-01-24 16:51:19 +00:00
|
|
|
{
|
|
|
|
#ifdef __MINGW32__
|
|
|
|
int sock_osfhandle = _open_osfhandle(handle_data_arg->sock, _O_RDONLY);
|
|
|
|
|
|
|
|
if (sock_osfhandle == -1)
|
|
|
|
{
|
|
|
|
rig_debug(RIG_DEBUG_ERR, "_open_osfhandle error: %s\n", strerror(errno));
|
2021-01-24 23:19:58 +00:00
|
|
|
return NULL;
|
2021-01-24 16:51:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return _fdopen(sock_osfhandle, "rb");
|
|
|
|
#else
|
|
|
|
return fdopen(handle_data_arg->sock, "rb");
|
|
|
|
#endif
|
|
|
|
}
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the function run by the threads
|
|
|
|
*/
|
|
|
|
void *handle_socket(void *arg)
|
|
|
|
{
|
|
|
|
struct handle_data *handle_data_arg = (struct handle_data *)arg;
|
|
|
|
FILE *fsockin = NULL;
|
|
|
|
FILE *fsockout = NULL;
|
|
|
|
int retcode = RIG_OK;
|
|
|
|
char host[NI_MAXHOST];
|
|
|
|
char serv[NI_MAXSERV];
|
|
|
|
char send_cmd_term = '\r'; /* send_cmd termination char */
|
|
|
|
int ext_resp = 0;
|
2022-07-16 12:54:27 +00:00
|
|
|
rig_powerstat = RIG_POWER_ON; // defaults to power on
|
2019-12-25 13:58:19 +00:00
|
|
|
|
2021-01-24 16:51:19 +00:00
|
|
|
fsockin = get_fsockin(handle_data_arg);
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
if (!fsockin)
|
|
|
|
{
|
2021-06-21 21:52:27 +00:00
|
|
|
rig_debug(RIG_DEBUG_ERR, "%s: fdopen(0x%d) in: %s\n", __func__,
|
|
|
|
handle_data_arg->sock,
|
2020-05-03 22:24:42 +00:00
|
|
|
strerror(errno));
|
2019-12-25 13:58:19 +00:00
|
|
|
goto handle_exit;
|
|
|
|
}
|
|
|
|
|
2021-01-24 16:51:19 +00:00
|
|
|
fsockout = get_fsockout(handle_data_arg);
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
if (!fsockout)
|
|
|
|
{
|
2021-05-31 13:22:22 +00:00
|
|
|
rig_debug(RIG_DEBUG_ERR, "%s: fdopen out: %s\n", __func__, strerror(errno));
|
2019-12-25 13:58:19 +00:00
|
|
|
fclose(fsockin);
|
2022-06-27 17:25:31 +00:00
|
|
|
fsockin = NULL;
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
goto handle_exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_PTHREAD
|
2021-09-22 04:30:45 +00:00
|
|
|
mutex_rigctld(1);
|
2019-12-25 13:58:19 +00:00
|
|
|
|
2022-12-13 05:46:53 +00:00
|
|
|
++client_count;
|
2020-03-12 17:06:06 +00:00
|
|
|
#if 0
|
2020-03-15 20:32:46 +00:00
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
if (!client_count++)
|
|
|
|
{
|
|
|
|
retcode = rig_open(my_rig);
|
|
|
|
|
|
|
|
if (RIG_OK == retcode && verbose > RIG_DEBUG_ERR)
|
|
|
|
{
|
|
|
|
printf("Opened rig model %d, '%s'\n",
|
|
|
|
my_rig->caps->rig_model,
|
|
|
|
my_rig->caps->model_name);
|
|
|
|
}
|
|
|
|
}
|
2020-03-15 20:32:46 +00:00
|
|
|
|
2020-03-12 17:06:06 +00:00
|
|
|
#endif
|
2019-12-25 13:58:19 +00:00
|
|
|
|
2021-09-22 04:30:45 +00:00
|
|
|
mutex_rigctld(0);
|
2019-12-25 13:58:19 +00:00
|
|
|
#else
|
2023-03-15 20:50:30 +00:00
|
|
|
mutex_rigctld(1);
|
2019-12-25 13:58:19 +00:00
|
|
|
retcode = rig_open(my_rig);
|
2023-03-15 20:50:30 +00:00
|
|
|
mutex_rigctld(1);
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
if (RIG_OK == retcode && verbose > RIG_DEBUG_ERR)
|
|
|
|
{
|
|
|
|
printf("Opened rig model %d, '%s'\n",
|
|
|
|
my_rig->caps->rig_model,
|
|
|
|
my_rig->caps->model_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2022-07-31 17:15:14 +00:00
|
|
|
if (my_rig->caps->get_powerstat)
|
|
|
|
{
|
|
|
|
mutex_rigctld(1);
|
|
|
|
rig_get_powerstat(my_rig, &rig_powerstat);
|
|
|
|
mutex_rigctld(0);
|
|
|
|
my_rig->state.powerstat = rig_powerstat;
|
|
|
|
}
|
2022-07-15 20:41:23 +00:00
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
do
|
|
|
|
{
|
2022-01-22 21:19:07 +00:00
|
|
|
mutex_rigctld(1);
|
2022-02-05 21:27:43 +00:00
|
|
|
|
2021-04-10 19:22:53 +00:00
|
|
|
if (!rig_opened)
|
|
|
|
{
|
|
|
|
retcode = rig_open(my_rig);
|
|
|
|
rig_opened = retcode == RIG_OK ? 1 : 0;
|
|
|
|
rig_debug(RIG_DEBUG_ERR, "%s: rig_open reopened retcode=%d\n", __func__,
|
|
|
|
retcode);
|
|
|
|
}
|
2022-02-05 21:27:43 +00:00
|
|
|
|
2022-01-22 21:19:07 +00:00
|
|
|
mutex_rigctld(0);
|
2019-12-25 13:58:19 +00:00
|
|
|
|
2021-04-10 19:22:53 +00:00
|
|
|
if (rig_opened) // only do this if rig is open
|
|
|
|
{
|
2022-07-16 04:59:18 +00:00
|
|
|
powerstat_t powerstat;
|
2022-03-01 17:40:14 +00:00
|
|
|
rig_debug(RIG_DEBUG_TRACE, "%s: doing rigctl_parse vfo_mode=%d, secure=%d\n",
|
|
|
|
__func__,
|
2022-02-24 23:13:18 +00:00
|
|
|
handle_data_arg->vfo_mode, handle_data_arg->use_password);
|
2021-04-10 19:22:53 +00:00
|
|
|
retcode = rigctl_parse(handle_data_arg->rig, fsockin, fsockout, NULL, 0,
|
2021-09-22 04:30:45 +00:00
|
|
|
mutex_rigctld,
|
2022-03-01 17:40:14 +00:00
|
|
|
1, 0, &handle_data_arg->vfo_mode, send_cmd_term, &ext_resp, &resp_sep,
|
|
|
|
handle_data_arg->use_password);
|
2021-04-10 19:22:53 +00:00
|
|
|
|
2021-05-09 20:16:23 +00:00
|
|
|
if (retcode != 0) { rig_debug(RIG_DEBUG_VERBOSE, "%s: rigctl_parse retcode=%d\n", __func__, retcode); }
|
2022-07-27 22:16:17 +00:00
|
|
|
|
2022-07-16 04:59:18 +00:00
|
|
|
// update our power stat in case power gets turned off
|
2022-07-27 22:16:17 +00:00
|
|
|
if (retcode == -RIG_ETIMEOUT
|
|
|
|
&& my_rig->caps->get_powerstat) // if we get a timeout we might be powered off
|
2022-07-17 13:31:15 +00:00
|
|
|
{
|
|
|
|
rig_get_powerstat(my_rig, &powerstat);
|
|
|
|
rig_powerstat = powerstat;
|
2022-07-27 22:16:17 +00:00
|
|
|
|
|
|
|
if (powerstat == RIG_POWER_OFF) { retcode = -RIG_EPOWER; }
|
2022-07-17 13:31:15 +00:00
|
|
|
}
|
2021-04-10 19:22:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
retcode = -RIG_EIO;
|
|
|
|
}
|
2020-04-22 16:47:56 +00:00
|
|
|
|
2021-03-07 15:03:37 +00:00
|
|
|
// if we get a hard error we try to reopen the rig again
|
|
|
|
// this should cover short dropouts that can occur
|
2021-03-16 21:39:35 +00:00
|
|
|
if (retcode < 0 && !RIG_IS_SOFT_ERRCODE(-retcode))
|
2021-01-24 16:51:19 +00:00
|
|
|
{
|
2021-03-07 15:03:37 +00:00
|
|
|
int retry = 3;
|
2022-05-13 21:41:59 +00:00
|
|
|
rig_debug(RIG_DEBUG_ERR, "%s: i/o error\n", __func__);
|
2021-03-07 15:03:37 +00:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
2022-01-22 21:19:07 +00:00
|
|
|
mutex_rigctld(1);
|
2021-03-07 15:03:37 +00:00
|
|
|
retcode = rig_close(my_rig);
|
2022-01-22 21:19:07 +00:00
|
|
|
rig_opened = 0;
|
|
|
|
mutex_rigctld(0);
|
2021-03-07 15:03:37 +00:00
|
|
|
rig_debug(RIG_DEBUG_ERR, "%s: rig_close retcode=%d\n", __func__, retcode);
|
2022-01-22 21:19:07 +00:00
|
|
|
|
|
|
|
hl_usleep(1000 * 1000);
|
|
|
|
|
|
|
|
mutex_rigctld(1);
|
2022-02-05 21:27:43 +00:00
|
|
|
|
|
|
|
if (!rig_opened)
|
|
|
|
{
|
2022-01-22 21:19:07 +00:00
|
|
|
retcode = rig_open(my_rig);
|
|
|
|
rig_opened = retcode == RIG_OK ? 1 : 0;
|
|
|
|
rig_debug(RIG_DEBUG_ERR, "%s: rig_open retcode=%d, opened=%d\n", __func__,
|
2022-02-05 21:27:43 +00:00
|
|
|
retcode, rig_opened);
|
2022-01-22 21:19:07 +00:00
|
|
|
}
|
2022-02-05 21:27:43 +00:00
|
|
|
|
2022-01-22 21:19:07 +00:00
|
|
|
mutex_rigctld(0);
|
2021-03-07 15:03:37 +00:00
|
|
|
}
|
2022-01-23 09:49:16 +00:00
|
|
|
while (!ctrl_c && !rig_opened && retry-- > 0 && retcode != RIG_OK);
|
2020-04-21 16:31:22 +00:00
|
|
|
}
|
2019-12-25 13:58:19 +00:00
|
|
|
}
|
2022-01-23 09:49:16 +00:00
|
|
|
while (!ctrl_c && (retcode == RIG_OK || RIG_IS_SOFT_ERRCODE(-retcode)));
|
2019-12-25 13:58:19 +00:00
|
|
|
|
2022-12-13 05:46:53 +00:00
|
|
|
if (rigctld_idle && client_count == 1)
|
2022-12-13 05:28:22 +00:00
|
|
|
{
|
|
|
|
rig_close(my_rig);
|
|
|
|
|
|
|
|
if (verbose > RIG_DEBUG_ERR) { printf("Closed rig model %s. Will reopen for new clients\n", my_rig->caps->model_name); }
|
|
|
|
}
|
|
|
|
|
2022-12-13 05:46:53 +00:00
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
#ifdef HAVE_PTHREAD
|
2022-12-13 05:46:53 +00:00
|
|
|
--client_count;
|
|
|
|
|
|
|
|
if (rigctld_idle && client_count > 0) { printf("%d client%s still connected so rig remains open\n", client_count, client_count > 1 ? "s" : ""); }
|
|
|
|
|
2020-03-15 21:19:43 +00:00
|
|
|
#if 0
|
2021-09-22 04:30:45 +00:00
|
|
|
mutex_rigctld(1);
|
2019-12-25 13:58:19 +00:00
|
|
|
|
2020-04-22 17:37:56 +00:00
|
|
|
/* Release rig if there are no clients */
|
|
|
|
if (!--client_count)
|
|
|
|
{
|
|
|
|
rig_close(my_rig);
|
|
|
|
|
|
|
|
if (verbose > RIG_DEBUG_ERR)
|
|
|
|
{
|
|
|
|
printf("Closed rig model %d, '%s - no clients, will reopen for new clients'\n",
|
|
|
|
my_rig->caps->rig_model,
|
|
|
|
my_rig->caps->model_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-22 04:30:45 +00:00
|
|
|
mutex_rigctld(0);
|
2020-04-22 17:37:56 +00:00
|
|
|
#endif
|
|
|
|
#else
|
2019-12-25 13:58:19 +00:00
|
|
|
rig_close(my_rig);
|
|
|
|
|
|
|
|
if (verbose > RIG_DEBUG_ERR)
|
|
|
|
{
|
2020-04-22 17:37:56 +00:00
|
|
|
printf("Closed rig model %d, '%s - will reopen for new clients'\n",
|
2019-12-25 13:58:19 +00:00
|
|
|
my_rig->caps->rig_model,
|
|
|
|
my_rig->caps->model_name);
|
|
|
|
}
|
|
|
|
|
2020-04-22 16:47:56 +00:00
|
|
|
#endif
|
|
|
|
|
2020-04-22 17:37:56 +00:00
|
|
|
if ((retcode = getnameinfo((struct sockaddr const *)&handle_data_arg->cli_addr,
|
|
|
|
handle_data_arg->clilen,
|
|
|
|
host,
|
|
|
|
sizeof(host),
|
|
|
|
serv,
|
|
|
|
sizeof(serv),
|
2021-11-28 18:41:10 +00:00
|
|
|
NI_NUMERICHOST | NI_NUMERICSERV))
|
2020-04-22 17:37:56 +00:00
|
|
|
< 0)
|
|
|
|
{
|
2020-04-22 16:47:56 +00:00
|
|
|
|
2020-04-22 17:37:56 +00:00
|
|
|
rig_debug(RIG_DEBUG_WARN, "Peer lookup error: %s", gai_strerror(retcode));
|
|
|
|
}
|
2019-12-25 13:58:19 +00:00
|
|
|
|
2020-04-22 17:37:56 +00:00
|
|
|
rig_debug(RIG_DEBUG_VERBOSE,
|
|
|
|
"Connection closed from %s:%s\n",
|
|
|
|
host,
|
|
|
|
serv);
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
handle_exit:
|
|
|
|
|
|
|
|
// for MINGW we close the handle before fclose
|
|
|
|
#ifdef __MINGW32__
|
2020-04-22 17:37:56 +00:00
|
|
|
retcode = closesocket(handle_data_arg->sock);
|
2019-12-25 13:58:19 +00:00
|
|
|
|
2020-04-22 17:37:56 +00:00
|
|
|
if (retcode != 0) { rig_debug(RIG_DEBUG_ERR, "%s: fclose(fsockin) %s\n", __func__, strerror(retcode)); }
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
#endif
|
2021-08-26 11:49:24 +00:00
|
|
|
|
|
|
|
if (fsockin) { fclose(fsockin); }
|
|
|
|
|
|
|
|
if (fsockout) { fclose(fsockout); }
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
// for everybody else we close the handle after fclose
|
|
|
|
#ifndef __MINGW32__
|
2020-04-22 17:37:56 +00:00
|
|
|
retcode = close(handle_data_arg->sock);
|
2019-12-25 13:58:19 +00:00
|
|
|
|
2020-04-22 17:37:56 +00:00
|
|
|
if (retcode != 0 && errno != EBADF) { rig_debug(RIG_DEBUG_ERR, "%s: close(handle_data_arg->sock) %s\n", __func__, strerror(errno)); }
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2020-04-22 17:37:56 +00:00
|
|
|
free(arg);
|
2019-12-25 13:58:19 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_PTHREAD
|
2020-04-22 17:37:56 +00:00
|
|
|
pthread_exit(NULL);
|
2019-12-25 13:58:19 +00:00
|
|
|
#endif
|
2020-04-22 17:37:56 +00:00
|
|
|
return NULL;
|
2019-12-25 13:58:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void usage(void)
|
|
|
|
{
|
|
|
|
printf("Usage: rigctld [OPTION]...\n"
|
|
|
|
"Daemon serving COMMANDs to a connected radio transceiver or receiver.\n\n");
|
|
|
|
|
|
|
|
|
|
|
|
printf(
|
|
|
|
" -m, --model=ID select radio model number. See model list\n"
|
|
|
|
" -r, --rig-file=DEVICE set device of the radio to operate on\n"
|
|
|
|
" -p, --ptt-file=DEVICE set device of the PTT device to operate on\n"
|
|
|
|
" -d, --dcd-file=DEVICE set device of the DCD device to operate on\n"
|
|
|
|
" -P, --ptt-type=TYPE set type of the PTT device to operate on\n"
|
|
|
|
" -D, --dcd-type=TYPE set type of the DCD device to operate on\n"
|
|
|
|
" -s, --serial-speed=BAUD set serial speed of the serial port\n"
|
|
|
|
" -c, --civaddr=ID set CI-V address, decimal (for Icom rigs only)\n"
|
|
|
|
" -t, --port=NUM set TCP listening port, default %s\n"
|
2022-05-19 17:28:49 +00:00
|
|
|
" -S, --separator=CHAR set char as rigctld response separator, default is \\n\n"
|
2019-12-25 13:58:19 +00:00
|
|
|
" -T, --listen-addr=IPADDR set listening IP address, default ANY\n"
|
|
|
|
" -C, --set-conf=PARM=VAL set config parameters\n"
|
|
|
|
" -L, --show-conf list all config parameters\n"
|
|
|
|
" -l, --list list all model numbers and exit\n"
|
|
|
|
" -u, --dump-caps dump capabilities and exit\n"
|
|
|
|
" -o, --vfo do not default to VFO_CURR, require extra vfo arg\n"
|
|
|
|
" -v, --verbose set verbose mode, cumulative (-v to -vvvvv)\n"
|
2020-02-24 15:34:02 +00:00
|
|
|
" -W, --twiddle_timeout timeout after detecting vfo manual change\n"
|
2022-02-11 22:37:24 +00:00
|
|
|
" -w, --twiddle_rit suppress VFOB getfreq so RIT can be twiddled\n"
|
2020-10-23 16:34:42 +00:00
|
|
|
" -x, --uplink set uplink get_freq ignore, 1=Sub, 2=Main\n"
|
2019-12-25 13:58:19 +00:00
|
|
|
" -Z, --debug-time-stamps enable time stamps for debug messages\n"
|
2021-11-28 18:52:29 +00:00
|
|
|
" -M, --multicast-addr=addr set multicast UDP address, default 0.0.0.0 (off), recommend 224.0.1.1\n"
|
|
|
|
" -n, --multicast-port=port set multicast UDP port, default 4532\n"
|
2022-02-24 23:13:18 +00:00
|
|
|
" -A, --password set password for rigctld access\n"
|
2022-09-16 13:33:51 +00:00
|
|
|
" -R, --rigctld-idle make rigctld close the rig when no clients are connected\n"
|
2019-12-25 13:58:19 +00:00
|
|
|
" -h, --help display this help and exit\n"
|
|
|
|
" -V, --version output version information and exit\n\n",
|
|
|
|
portno);
|
|
|
|
|
|
|
|
usage_rig(stdout);
|
|
|
|
|
2022-07-30 20:45:04 +00:00
|
|
|
printf("\nError codes and messages\n");
|
2022-07-31 17:15:14 +00:00
|
|
|
|
|
|
|
for (enum rig_errcode_e e = 0; e < RIG_EEND; ++e)
|
2022-07-30 20:45:04 +00:00
|
|
|
{
|
|
|
|
printf("-%d - %s", e, rigerror2(e));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-12-25 13:58:19 +00:00
|
|
|
printf("\nReport bugs to <hamlib-developer@lists.sourceforge.net>.\n");
|
|
|
|
|
|
|
|
}
|