summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* #915 add wol command to REST API in ogAdmServerOpenGnSys Support Team2019-05-273-0/+110
| | | | | | | | | | 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
* #915 Pass array of addresses to WakeUp()OpenGnSys Support Team2019-05-272-10/+17
| | | | To reuse this function to the REST API.
* #915 add clients command to REST API in ogAdmServerOpenGnSys Support Team2019-05-273-7/+90
| | | | | | | | | | | | 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" }]}
* #915 add initial REST API for ogAdmServerOpenGnSys Support Team2019-05-274-5/+181
| | | | | | | | | | | | | | | | | | | | | 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.
* #915 add og_msg_alloc() and og_msg_free()OpenGnSys Support Team2019-05-271-9/+25
| | | | Add function to allocate and release the legacy message format.
* #915 add og_send_cmd()OpenGnSys Support Team2019-05-271-13/+25
| | | | | | 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.
* #915 add og_socket_server_init()OpenGnSys Support Team2019-05-271-18/+28
| | | | Move code to create a socket into a function.
* #915 add og_client_state_process_payload()OpenGnSys Support Team2019-05-271-20/+31
| | | | Move code that handles the message payload into function.
* #915 add og_client_state_recv_hdr()OpenGnSys Support Team2019-05-271-23/+35
| | | | Move code that handles the receiving header state into function.
* #898 Remove unused encryption and decryption routinesOpenGnSys Support Team2019-02-061-1/+1
| | | | Remove dead code to encrypt and decrypt the message.
* #897 Do not use socket type in ogAdmServerOpenGnSys Support Team2019-02-062-6/+6
| | | | No need for an extra type, socket descriptors are always integer.
* #896: Send multicast WoL through a specific interfaceJavier Sánchez Parra2019-02-062-17/+102
| | | | | | | * 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.
* #891 remove function to parse string in hexadecimal to binaryOpenGnSys Support Team2019-01-231-35/+0
| | | | | Wake-on-lan does not use it anymore, this function has no clients and we can just remove it.
* #891 fix wake on lan routineOpenGnSys Support Team2019-01-231-12/+15
| | | | | | | | 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.
* #580 ignore SIGPIPE signalOpenGnSys Support Team2019-01-171-0/+3
| | | | | This signal is received when socket hit connection reset by peer state, which may happen in transient network failures.
* #580 incorrect return value in handlerOpenGnSys Support Team2019-01-171-6/+6
| | | | All handlers must return a boolean.
* #883 standalone log file is now deprecatedOpenGnSys Support Team2019-01-171-0/+3
| | | | display message in old log file that ogAdmServer uses syslog.
* #883 remove unnecessary loggingOpenGnSys Support Team2019-01-171-106/+14
| | | | Remove redundant logging, use syslog() whenever possible.
* #883 replace standalone log file by syslogOpenGnSys Support Team2019-01-172-240/+259
|
* #883 use LOG_DEBUG instead of LOG_INFOOpenGnSys Support Team2019-01-171-8/+8
| | | | Log file may grow in size too quickly in standard syslog configurations.
* #883 do not use argv[0] in syslog log messageOpenGnSys Support Team2019-01-171-1/+1
| | | | | | | | | | 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
* #580 fix management of keepalive connections to clientsOpenGnSys Support Team2019-01-172-46/+105
| | | | | | | | | | | | | | | 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.
* #580 no need for pthread libraryOpenGnSys Support Team2019-01-171-1/+1
|
* #884 do not strip off symbolsOpenGnSys Support Team2019-01-171-3/+1
| | | | | Nor use -O3 since this generates code that is harder to debug. Compile binary that can be run inside valgrind for better debugging.
* #883 add initial syslog supportOpenGnSys Support Team2019-01-171-2/+34
|
* #580 rework server socket handlingOpenGnSys Support Team2019-01-173-149/+267
| | | | | | | 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.
* #580 more robust check for remote functionOpenGnSys Support Team2019-01-171-1/+2
| | | | Use strncmp() that is bound to the function name length.
* #883 add og_info() and use itOpenGnSys Support Team2019-01-171-131/+103
| | | | | Use __FUNCTION__ to print function name, this is a preparation work to introduce syslog support.
* #580 use true/false definition from standard stdbool.hOpenGnSys Support Team2019-01-171-524/+524
|
* #580 disregard INVALID_SOCKETOpenGnSys Support Team2019-01-171-3/+3
|
* #580 disregard SOCKET_ERROROpenGnSys Support Team2019-01-171-7/+6
|
* #580 remove dead code uncovered by statificationOpenGnSys Support Team2019-01-171-110/+0
| | | | | | | | | | | | | | 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) ^~~~~~~
* #580 constify parameter and statify functionOpenGnSys Support Team2019-01-172-141/+127
| | | | Remove unnecessary function declaration in header files
* #580 remove AULAUP in configuration fileOpenGnSys Support Team2019-01-171-5/+0
| | | | Overrides catalog, and aulaup variable is never set / used.
* #580 simplify check for empty stringOpenGnSys Support Team2019-01-171-7/+7
|
* #580 move global variable definitions to fileOpenGnSys Support Team2019-01-172-10/+7
| | | | Save us from unnecessary initialization given this is in the .bss area.
* #580 add og_log() and use itOpenGnSys Support Team2019-01-171-127/+110
|
* #580 use bool from stdbool.h instead of BOOLEANOpenGnSys Support Team2019-01-172-141/+142
| | | | C99 includes boolean definition in stdbool.h, use them.
* #580 disregard SOCKET type, use int insteadOpenGnSys Support Team2019-01-172-69/+69
| | | | Socket file descriptors are always an integer, no need for typedef.
* #580 simplify load configuration fileOpenGnSys Support Team2019-01-171-49/+30
| | | | | Use fgets() and strtok() to parse the configuration to simplify the existing handler.
* #580 no need to iterate 1024 times to find a matching handlerOpenGnSys Support Team2019-01-171-2/+3
| | | | | There are only 41 handlers, no need to keep inspecting up to 1024. Most entries in this array are null.
* #580: No need for runtime initialization of handlers.OpenGnSys Support Team2019-01-172-172/+104
| | | | Removes 70 LoCs.
* #834: Eliminar algunos espacios sobreantes y saltos de línea tipo CRLF.Ramón M. Gómez2018-05-171-2/+2
|
* #580 Se resuelve errata en ogAdmServer por la que al restaurar una imagen ↵irina2018-04-091-1/+1
| | | | | | 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
* #730 #738: Si se reinicia el servicio ogAdmServer, se reutiliza el pureto en ↵ramon2017-07-031-4/+9
| | | | | | Linux 3.9+; se actualiza la configuración del cliente tras el comando Restaurar Imagen (falta aplicar cambios en imagen básica). git-svn-id: https://opengnsys.es/svn/branches/version1.1@5398 a21b9725-9963-47de-94b9-378ad31fedc9
* #559 ogAdmServer: Se libera memoria de variables y de resultados de la base ↵irina2016-12-201-2/+22
| | | | | | de datos. Database.cpp y Database.h: Se crea función liberaResult. git-svn-id: https://opengnsys.es/svn/branches/version1.1@5132 a21b9725-9963-47de-94b9-378ad31fedc9
* #730 Se optimiza el código en EjecutarScripts.js de los asistentes y el ↵irina2016-10-241-20/+4
| | | | | | servicio ogAdmServer. git-svn-id: https://opengnsys.es/svn/branches/version1.1@5043 a21b9725-9963-47de-94b9-378ad31fedc9
* #737 Comando crear imagen de la consola: actualiza en la base de datos las ↵irina2016-09-301-6/+35
| | | | | | propiedades de la particion: imagen, revisión y fecha de despliegue. git-svn-id: https://opengnsys.es/svn/branches/version1.1@5024 a21b9725-9963-47de-94b9-378ad31fedc9
* #713 #743: Corregir erratas de revisiones r4906 y r4927.ramon2016-05-131-1/+1
| | | | git-svn-id: https://opengnsys.es/svn/branches/version1.1@4929 a21b9725-9963-47de-94b9-378ad31fedc9
* #713: Detectar nº de serie del cliente en el proceso de inicio y, si se ↵ramon2016-05-121-12/+27
| | | | | | envía al servidor, incluir el dato en la BD, si está vacío. git-svn-id: https://opengnsys.es/svn/branches/version1.1@4927 a21b9725-9963-47de-94b9-378ad31fedc9