| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
| |
Power off a client (through POST method):
curl -X POST http://127.0.0.1:8888/poweroff -d @poweroff.json
Request
POST /poweroff
{"clients": [ "192.168.2.1" ] }
Reply:
200 OK
|
|
|
|
| |
Add function to send legacy command to clients.
|
|
|
|
|
|
|
|
|
|
|
|
| |
EcoConsola()
The new REST API obsoletes the following commands:
- Sondeo() has been replaced by GET /clients.
- respuestaSondeo() has been replaced by POST /clients.
- ConsolaRemota() has been replaced by POST /shell/run.
- EcoConsola() has been replaced by POST /shell/output.
- Arrancar() has been replaced by POST /wol.
|
|
|
|
|
|
|
|
|
|
|
|
| |
Start a session on client (through POST method):
curl -X POST http://127.0.0.1:8888/session -d @session.json
Request
POST /session
{"clients": [ "192.168.2.1" ] }
Reply:
200 OK
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fetching result from run command on client (through GET method):
curl -X POST http://127.0.0.1:8888/shell/output -d @post_shell_output.json
Request
POST /shell/output
{"clients": [ "192.168.2.1" ] }
Reply:
200 OK
{"clients": [ { "addr" : "192.168.2.1", "output" : "..." } ] }
|
|
|
|
|
|
|
|
|
|
|
|
| |
Run command on client (through POST method):
curl -X POST http://127.0.0.1:8888/shell/run -d @post_run.json
Request
POST /shell/run
{"clients": [ "192.168.2.1", "192.168.2.2" ], "run" : "ls" }
Reply:
200 OK
|
|
|
|
|
|
|
|
|
|
| |
Send Wake-On-Lan to clients (through POST method):
Request:
curl -X POST http://127.0.0.1:8888/wol
{ "type" : "unicast", "clients" : [ { "addr" : "192.168.2.1", "mac" : "00AABBCCDD01" } ] }
Reply:
200 OK
|
|
|
|
| |
To reuse this function to the REST API.
|
|
|
|
|
|
|
|
|
|
|
|
| |
Request for existing clients:
curl -X GET http://127.0.0.1:8888/clients
Request:
GET /clients
Reply:
200 OK
{"clients": [ { "addr" : "192.168.2.1", "state" : "OPG" }, { "addr" : "192.168.2.2", "state" : "OFF" }]}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Add REST API for ogAdmServer, this API is exposed through port 8888 on
the system that runs the ogAdmServer. The body of the HTTP message is
expressed in JSON format.
This patch implements the command "clients" that maps to the existing
legacy "Sondeo" command, that is used by the web interface to poll
refresh the client state.
This patch also includes an initial test infrastructure using 'curl' to
send commands to the new REST API.
Request:
POST /clients
{"clients" : [ "192.168.2.1", "192.168.2.2" ]}
Reply:
200 OK
This allows to refresh the status of the list of clients.
|
|
|
|
| |
Add function to allocate and release the legacy message format.
|
|
|
|
|
|
| |
Add new function to check and send commands to the clients. This new
function takes an array of IP addresses (string) and send commands to
the clients.
|
|
|
|
| |
Move code to create a socket into a function.
|
|
|
|
| |
Move code that handles the message payload into function.
|
|
|
|
| |
Move code that handles the receiving header state into function.
|
|
|
|
| |
Remove dead code to encrypt and decrypt the message.
|
|
|
|
| |
No need for an extra type, socket descriptors are always integer.
|
|
|
|
|
|
|
| |
* New parameter in ogAdmServer config file for setting an interface.
* ogAdmServer multicast WoL now search the interface of the config file in the
system, if the interface is found in the system the destination IP of the
packet change to a broadcast address of a specific range of addresses.
|
|
|
|
|
| |
Wake-on-lan does not use it anymore, this function has no clients and we
can just remove it.
|
|
|
|
|
|
|
|
| |
Fix function to send wake-on-lan packet:
- setsockopt() expects an integer as parameter.
- zero the struct socketaddr_in local structure.
- use sscanf() to parse the mac address string.
|
|
|
|
|
| |
This signal is received when socket hit connection reset by peer
state, which may happen in transient network failures.
|
|
|
|
| |
All handlers must return a boolean.
|
|
|
|
| |
display message in old log file that ogAdmServer uses syslog.
|
|
|
|
| |
Remove redundant logging, use syslog() whenever possible.
|
| |
|
|
|
|
| |
Log file may grow in size too quickly in standard syslog configurations.
|
|
|
|
|
|
|
|
|
|
| |
Before:
Dec 3 11:18:12 ogLab /opt/opengnsys/sbin/ogAdmServer[1025]: server closing connection to 192.168.56.10:50476
After this patch:
Dec 3 11:18:12 ogLab ogAdmServer[1025]: server closing connection to 192.168.56.10:50476
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
OgAdmServer leaves a connection in keepalive more (similar to HTTP
keepalive feature), the existing handling is not correct. The tbsocket
table is never cleaned up and properly.
Use the new og_client object that represents connections from the
clients in tbsocket[] instead.
The keepalive field now stores the index in the tbsocket table, so there
is no need to consult mysql to fetch the slot that this client is using.
This patch also extends syslog() support to include port number when
reporting connections from clients.
|
| |
|
|
|
|
|
| |
Nor use -O3 since this generates code that is harder to debug.
Compile binary that can be run inside valgrind for better debugging.
|
| |
|
|
|
|
|
|
|
| |
Modern server side using libev library, includes timeouts for clients.
After this patch, your system requires the libev-dev and libev4 packages
to compile ogAdmServer.
|
|
|
|
| |
Use strncmp() that is bound to the function name length.
|
|
|
|
|
| |
Use __FUNCTION__ to print function name, this is a preparation work
to introduce syslog support.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
These functions are not used, remove them.
sources/ogAdmServer.cpp:2208:13: warning: ‘bool actualizaCreacionSoftIncremental(Database, Table, char*, char*)’ defined but not used [-Wunused-function]
static bool actualizaCreacionSoftIncremental(Database db, Table tbl, char* idi,char* idf)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sources/ogAdmServer.cpp:1626:13: warning: ‘bool RESPUESTA_Comando(int, TRAMA*)’ defined but not used [-Wunused-function]
static bool RESPUESTA_Comando(int socket_c, TRAMA* ptrTrama)
^~~~~~~~~~~~~~~~~
sources/ogAdmServer.cpp:1600:13: warning: ‘bool Comando(int, TRAMA*)’ defined but not used [-Wunused-function]
static bool Comando(int socket_c, TRAMA* ptrTrama)
^~~~~~~
|
|
|
|
| |
Remove unnecessary function declaration in header files
|
|
|
|
| |
Overrides catalog, and aulaup variable is never set / used.
|
| |
|
|
|
|
| |
Save us from unnecessary initialization given this is in the .bss area.
|
| |
|
|
|
|
| |
C99 includes boolean definition in stdbool.h, use them.
|
|
|
|
| |
Socket file descriptors are always an integer, no need for typedef.
|
|
|
|
|
| |
Use fgets() and strtok() to parse the configuration to simplify the
existing handler.
|
|
|
|
|
| |
There are only 41 handlers, no need to keep inspecting up to 1024.
Most entries in this array are null.
|
|
|
|
| |
Removes 70 LoCs.
|
| |
|
|
|
|
|
|
| |
sin perfil de software asociado se cae el servicio.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5712 a21b9725-9963-47de-94b9-378ad31fedc9
|