2010-12-01 16:35:50 +00:00
|
|
|
/*
|
|
|
|
* virnetclient.h: generic network RPC client
|
|
|
|
*
|
2011-11-14 15:12:53 +00:00
|
|
|
* Copyright (C) 2006-2012 Red Hat, Inc.
|
2010-12-01 16:35:50 +00:00
|
|
|
*
|
|
|
|
* This 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.
|
|
|
|
*
|
|
|
|
* This 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
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2010-12-01 16:35:50 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-18 16:12:39 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef WITH_GNUTLS
|
|
|
|
# include "virnettlscontext.h"
|
|
|
|
#endif
|
|
|
|
#include "virnetmessage.h"
|
|
|
|
#ifdef WITH_SASL
|
|
|
|
# include "virnetsaslcontext.h"
|
|
|
|
#endif
|
|
|
|
#include "virnetclientprogram.h"
|
|
|
|
#include "virnetclientstream.h"
|
|
|
|
#include "virobject.h"
|
|
|
|
#include "viruri.h"
|
2010-12-01 16:35:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
virNetClientPtr virNetClientNewUNIX(const char *path,
|
|
|
|
bool spawnDaemon,
|
2013-03-07 16:33:33 +00:00
|
|
|
const char *binary);
|
2010-12-01 16:35:50 +00:00
|
|
|
|
|
|
|
virNetClientPtr virNetClientNewTCP(const char *nodename,
|
2015-05-21 14:51:28 +00:00
|
|
|
const char *service,
|
|
|
|
int family);
|
2010-12-01 16:35:50 +00:00
|
|
|
|
|
|
|
virNetClientPtr virNetClientNewSSH(const char *nodename,
|
|
|
|
const char *service,
|
|
|
|
const char *binary,
|
|
|
|
const char *username,
|
|
|
|
bool noTTY,
|
2011-07-11 19:50:31 +00:00
|
|
|
bool noVerify,
|
2010-12-01 16:35:50 +00:00
|
|
|
const char *netcat,
|
2011-07-19 17:52:21 +00:00
|
|
|
const char *keyfile,
|
2010-12-01 16:35:50 +00:00
|
|
|
const char *path);
|
|
|
|
|
2011-11-14 15:12:53 +00:00
|
|
|
virNetClientPtr virNetClientNewLibSSH2(const char *host,
|
|
|
|
const char *port,
|
2015-05-21 14:51:28 +00:00
|
|
|
int family,
|
2011-11-14 15:12:53 +00:00
|
|
|
const char *username,
|
|
|
|
const char *privkeyPath,
|
|
|
|
const char *knownHostsPath,
|
|
|
|
const char *knownHostsVerify,
|
|
|
|
const char *authMethods,
|
|
|
|
const char *netcatPath,
|
|
|
|
const char *socketPath,
|
2013-07-09 14:46:32 +00:00
|
|
|
virConnectAuthPtr authPtr,
|
|
|
|
virURIPtr uri);
|
2011-11-14 15:12:53 +00:00
|
|
|
|
2016-11-09 14:28:36 +00:00
|
|
|
virNetClientPtr virNetClientNewLibssh(const char *host,
|
|
|
|
const char *port,
|
|
|
|
int family,
|
|
|
|
const char *username,
|
|
|
|
const char *privkeyPath,
|
|
|
|
const char *knownHostsPath,
|
|
|
|
const char *knownHostsVerify,
|
|
|
|
const char *authMethods,
|
|
|
|
const char *netcatPath,
|
|
|
|
const char *socketPath,
|
|
|
|
virConnectAuthPtr authPtr,
|
|
|
|
virURIPtr uri);
|
|
|
|
|
2010-12-01 16:35:50 +00:00
|
|
|
virNetClientPtr virNetClientNewExternal(const char **cmdargv);
|
|
|
|
|
2012-08-07 11:09:51 +00:00
|
|
|
int virNetClientRegisterAsyncIO(virNetClientPtr client);
|
|
|
|
int virNetClientRegisterKeepAlive(virNetClientPtr client);
|
|
|
|
|
2012-07-18 16:10:22 +00:00
|
|
|
typedef void (*virNetClientCloseFunc)(virNetClientPtr client,
|
|
|
|
int reason,
|
|
|
|
void *opaque);
|
|
|
|
|
|
|
|
void virNetClientSetCloseCallback(virNetClientPtr client,
|
|
|
|
virNetClientCloseFunc cb,
|
|
|
|
void *opaque,
|
|
|
|
virFreeCallback ff);
|
|
|
|
|
2011-07-07 14:17:21 +00:00
|
|
|
int virNetClientGetFD(virNetClientPtr client);
|
|
|
|
int virNetClientDupFD(virNetClientPtr client, bool cloexec);
|
|
|
|
|
2011-10-21 10:48:03 +00:00
|
|
|
bool virNetClientHasPassFD(virNetClientPtr client);
|
|
|
|
|
2010-12-01 16:35:50 +00:00
|
|
|
int virNetClientAddProgram(virNetClientPtr client,
|
|
|
|
virNetClientProgramPtr prog);
|
|
|
|
|
|
|
|
int virNetClientAddStream(virNetClientPtr client,
|
|
|
|
virNetClientStreamPtr st);
|
|
|
|
|
|
|
|
void virNetClientRemoveStream(virNetClientPtr client,
|
|
|
|
virNetClientStreamPtr st);
|
|
|
|
|
2011-11-11 15:42:46 +00:00
|
|
|
int virNetClientSendWithReply(virNetClientPtr client,
|
|
|
|
virNetMessagePtr msg);
|
|
|
|
|
2011-11-08 09:13:27 +00:00
|
|
|
int virNetClientSendNonBlock(virNetClientPtr client,
|
|
|
|
virNetMessagePtr msg);
|
|
|
|
|
2019-02-07 12:58:40 +00:00
|
|
|
int virNetClientSendStream(virNetClientPtr client,
|
|
|
|
virNetMessagePtr msg,
|
|
|
|
virNetClientStreamPtr st);
|
2011-11-08 09:13:27 +00:00
|
|
|
|
2019-06-18 16:12:39 +00:00
|
|
|
#ifdef WITH_SASL
|
2010-12-01 16:35:50 +00:00
|
|
|
void virNetClientSetSASLSession(virNetClientPtr client,
|
|
|
|
virNetSASLSessionPtr sasl);
|
2019-06-18 16:12:39 +00:00
|
|
|
#endif
|
2010-12-01 16:35:50 +00:00
|
|
|
|
2019-06-18 16:12:39 +00:00
|
|
|
#ifdef WITH_GNUTLS
|
2010-12-01 16:35:50 +00:00
|
|
|
int virNetClientSetTLSSession(virNetClientPtr client,
|
|
|
|
virNetTLSContextPtr tls);
|
2019-06-18 16:12:39 +00:00
|
|
|
#endif
|
2010-12-01 16:35:50 +00:00
|
|
|
|
|
|
|
bool virNetClientIsEncrypted(virNetClientPtr client);
|
2011-09-23 06:56:13 +00:00
|
|
|
bool virNetClientIsOpen(virNetClientPtr client);
|
2010-12-01 16:35:50 +00:00
|
|
|
|
2016-06-23 20:31:20 +00:00
|
|
|
const char *virNetClientLocalAddrStringSASL(virNetClientPtr client);
|
|
|
|
const char *virNetClientRemoteAddrStringSASL(virNetClientPtr client);
|
2010-12-01 16:35:50 +00:00
|
|
|
|
2019-06-18 16:12:39 +00:00
|
|
|
#ifdef WITH_GNUTLS
|
2010-12-01 16:35:50 +00:00
|
|
|
int virNetClientGetTLSKeySize(virNetClientPtr client);
|
2019-06-18 16:12:39 +00:00
|
|
|
#endif
|
2010-12-01 16:35:50 +00:00
|
|
|
|
2011-07-19 13:13:32 +00:00
|
|
|
void virNetClientClose(virNetClientPtr client);
|
2010-12-01 16:35:50 +00:00
|
|
|
|
2011-09-22 12:59:06 +00:00
|
|
|
bool virNetClientKeepAliveIsSupported(virNetClientPtr client);
|
|
|
|
int virNetClientKeepAliveStart(virNetClientPtr client,
|
|
|
|
int interval,
|
|
|
|
unsigned int count);
|
|
|
|
|
2012-04-24 14:38:41 +00:00
|
|
|
void virNetClientKeepAliveStop(virNetClientPtr client);
|