1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
|
// ********************************************************************************************************
// Cliente: ogAdmWinClient
// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
// Fecha Creación: Febrero-2012
// Fecha Última modificación: Febrero-2012
// Nombre del fichero: ogAdmWinClient.cpp
// Descripción :Este fichero implementa el cliente windows del sistema
// ********************************************************************************************************
#include "ogAdmWinClient.h"
#include "ogAdmLib.c"
#include "registrow.c"
//________________________________________________________________________________________________________
// Función: tomaConfiguracion
//
// Descripción:
// Lee el fichero de configuración del servicio
// Parámetros:
// filecfg : Ruta completa al fichero de configuración
// Devuelve:
// TRUE: Si el proceso es correcto
// FALSE: En caso de ocurrir algún error
//________________________________________________________________________________________________________
BOOLEAN tomaConfiguracion(char* filecfg)
{
char modulo[] = "tomaConfiguracion()";
if (filecfg == NULL || strlen(filecfg) == 0) {
errorLog(modulo, 1, FALSE); // Fichero de configuración del cliente vacío
return (FALSE);
}
FILE *fcfg;
int lSize;
char * buffer, *lineas[MAXPRM], *dualparametro[2];
int i, numlin, resul;
fcfg = fopen(filecfg, "rt");
if (fcfg == NULL) {
errorLog(modulo, 2, FALSE); // No existe fichero de configuración del cliente
return (FALSE);
}
fseek(fcfg, 0, SEEK_END);
lSize = ftell(fcfg); // Obtiene tamaño del fichero.
rewind(fcfg);
buffer = (char*) reservaMemoria(lSize+1); // Toma memoria para el buffer de lectura.
if (buffer == NULL) { // No hay memoria suficiente para el buffer
errorLog(modulo, 3, FALSE);
return (FALSE);
}
lSize=fread(buffer, 1, lSize, fcfg); // Lee contenido del fichero
buffer[lSize]=CHARNULL;
fclose(fcfg);
/* Inicializar variables globales */
servidoradm[0]=CHARNULL;
puerto[0] = CHARNULL;
IPlocal[0]=CHARNULL;
numlin = splitCadena(lineas, buffer, '\n');
for (i = 0; i < numlin; i++){
splitCadena(dualparametro, lineas[i], '=');
resul = strcmp(StrToUpper(dualparametro[0]), "SERVIDORADM");
if (resul == 0)
strcpy(servidoradm, dualparametro[1]);
resul = strcmp(StrToUpper(dualparametro[0]), "PUERTO");
if (resul == 0)
strcpy(puerto, dualparametro[1]);
resul = strcmp(StrToUpper(dualparametro[0]), "IPLOCAL");
if (resul == 0)
strcpy(IPlocal, dualparametro[1]);
}
if (servidoradm[0] == CHARNULL) {
errorLog(modulo,4, FALSE); // Falta parámetro SERVIDORADM
return (FALSE);
}
if (puerto[0] == CHARNULL) {
errorLog(modulo,5, FALSE); // Falta parámetro PUERTO
return (FALSE);
}
if (IPlocal[0] == CHARNULL) {
errorLog(modulo, 92, FALSE); // Falta parámetro IPLOCAL
return (FALSE);
}
return (TRUE);
}
//______________________________________________________________________________________________________
// Función: InclusionClienteWinLnx
// Descripción:
// Abre una sesión en el servidor de administración y registra al cliente en el sistema
// Parámetros:
// Ninguno
// Devuelve:
// TRUE: Si el proceso es correcto
// FALSE: En caso de ocurrir algún error
//______________________________________________________________________________________________________
BOOLEAN InclusionClienteWinLnx(TRAMA* ptrTrama)
{
int lon;
SOCKET socket_c;
char modulo[] = "InclusionClienteWinLnx()";
initParametros(ptrTrama,0);
lon=sprintf(ptrTrama->parametros,"nfn=InclusionClienteWinLnx\r"); // Nombre de la función a ejecutar en el servidor
if(!enviaMensajeServidor(&socket_c,ptrTrama,MSG_PETICION)){
errorLog(modulo,37,FALSE);
return(FALSE);
}
ptrTrama=recibeMensaje(&socket_c);
if(!ptrTrama){
errorLog(modulo,22,FALSE);
return(FALSE);
}
closesocket(socket_c);
if(!gestionaTrama(ptrTrama)){ // Análisis de la trama
errorLog(modulo,39,FALSE);
return(FALSE);
}
return(TRUE);
}
//______________________________________________________________________________________________________
// Función: RESPUESTA_InclusionClienteWinLnx
//
// Descripción:
// Respuesta del servidor de administración a la petición de inicio
// enviando los datos identificativos del cliente
// Parámetros:
// - ptrTrama: Trama recibida por el servidor con el contenido y los parámetros
// Devuelve:
// TRUE: Si el proceso es correcto
// FALSE: En caso de ocurrir algún error
//______________________________________________________________________________________________________
BOOLEAN RESPUESTA_InclusionClienteWinLnx(TRAMA* ptrTrama)
{
char* res;
char modulo[] = "RESPUESTA_InclusionClienteWinLnx()";
int err;
res=copiaParametro("res",ptrTrama); // Resultado del proceso de inclusión
err=(int)atoi(res); // Código de error devuelto por el servidor
if(err>0){ // Error en el proceso de inclusión
errorLog(modulo,41,FALSE);
errorLog(modulo,err,FALSE);
return (FALSE);
}
strcpy(idordenador,copiaParametro("ido",ptrTrama)); // Identificador del ordenador
strcpy(nombreordenador,copiaParametro("npc",ptrTrama)); // Nombre del ordenador
if(idordenador==NULL || nombreordenador==NULL){
errorLog(modulo,40,FALSE);
return (FALSE);
}
return(TRUE);
}
//______________________________________________________________________________________________________
// Función: ProcesaComandos
//
// Descripción:
// Espera comando desde el Servidor de Administración para ejecutarlos
// Parámetros:
// Ninguno
// Devuelve:
// TRUE: Si el proceso es correcto
// FALSE: En caso de ocurrir algún error
// ________________________________________________________________________________________________________
void procesaComandos(TRAMA* ptrTrama)
{
int lon;
SOCKET socket_c;
char modulo[] = "procesaComandos()";
initParametros(ptrTrama,0);
while(TRUE){
lon=sprintf(ptrTrama->parametros,"nfn=DisponibilidadComandos\r");
lon+=sprintf(ptrTrama->parametros+lon,"tpc=%s\r",CLIENTE_WIN); // Activar disponibilidad
if(!enviaMensajeServidor(&socket_c,ptrTrama,MSG_INFORMACION)){
errorLog(modulo,43,FALSE);
return;
}
infoLog(19); // Disponibilidad de cliente activada
ptrTrama=recibeMensaje(&socket_c);
if(!ptrTrama){
errorLog(modulo,46,FALSE);
return;
}
closesocket(socket_c);
if(!gestionaTrama(ptrTrama)){ // Análisis de la trama
errorLog(modulo,39,FALSE);
return;
}
}
}
//_____________________________________________________________________________________________________
// Función: Apagar
//
// Descripción:
// Apaga el cliente
// Parámetros:
// ptrTrama: contenido del mensaje
// Devuelve:
// TRUE: Si el proceso es correcto
// FALSE: En caso de ocurrir algún error
//_____________________________________________________________________________________________________
BOOLEAN Apagar(TRAMA* ptrTrama)
{
int lon;
char *ids,msglog[LONSTD];
char modulo[] = "Apagar()";
if (ndebug>=DEBUG_MAXIMO) {
sprintf(msglog, "%s:%s",tbMensajes[21],modulo);
infoDebug(msglog);
}
ids=copiaParametro("ids",ptrTrama);
initParametros(ptrTrama,0);
lon=sprintf(ptrTrama->parametros,"nfn=%s\r","RESPUESTA_Apagar");
respuestaEjecucionComando(ptrTrama,0,ids);
if(versionWin<5)
ApagarReiniciar(EWX_POWEROFF | EWX_FORCE,ids,0);
else
ApagarReiniciar(EWX_SHUTDOWN | EWX_FORCE,ids,0);
return(TRUE);
}
//_____________________________________________________________________________________________________
// Función: Reiniciar
//
// Descripción:
// Apaga el cliente
// Parámetros:
// ptrTrama: contenido del mensaje
// Devuelve:
// TRUE: Si el proceso es correcto
// FALSE: En caso de ocurrir algún errorservidoradm
//_____________________________________________________________________________________________________
BOOLEAN Reiniciar(TRAMA* ptrTrama)
{
int lon;
char *ids,msglog[LONSTD];
char modulo[] = "Reiniciar()";
if (ndebug>=DEBUG_MAXIMO) {
sprintf(msglog, "%s:%s",tbMensajes[21],modulo);
infoDebug(msglog);
}
ids=copiaParametro("ids",ptrTrama);
initParametros(ptrTrama,0);
lon=sprintf(ptrTrama->parametros,"nfn=%s\r","RESPUESTA_Reiniciar");
respuestaEjecucionComando(ptrTrama,0,ids);
if(versionWin<5)
ApagarReiniciar(EWX_REBOOT | EWX_FORCE,ids,1);
else
ApagarReiniciar(EWX_REBOOT | EWX_FORCE,ids,1);
return(TRUE);
}
// _____________________________________________________________________________________________________________
//
// Función: ApagarReiniciar
//
// Descripción:
// Apaga o reinicia el ordenador o bien hace logout del usuario
//
// Parámetros:
// - uFlags : Especifica el tipo de shutdown
// _____________________________________________________________________________________________________________
BOOLEAN ApagarReiniciar(UINT uFlags,char *ids,int sw)
{
HANDLE hToken;
TOKEN_PRIVILEGES tkp;
char modulo[] = "Reiniciar()";
if (versionWin>4){
if (!ExitWindowsEx(uFlags, 0)) {
errorLog(modulo,86,FALSE);
return(FALSE);
}
return TRUE;
}
// Get a token for this process.
if (!OpenProcessToken(GetCurrentProcess(),TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken)) {
errorLog(modulo,86,FALSE);
return(FALSE);
}
// Get the LUID for the shutdown privilege.
LookupPrivilegeValue(NULL, SE_SHUTDOWN_NAME,&tkp.Privileges[0].Luid);
tkp.PrivilegeCount = 1; // one privilege to set
tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
// Get the shutdown privilege for this process.
AdjustTokenPrivileges(hToken, FALSE, &tkp, 0, (PTOKEN_PRIVILEGES)NULL, 0);
if (GetLastError() != ERROR_SUCCESS) {
errorLog(modulo,86,FALSE);
return(FALSE);
}
// Shut down the system and force all applications to close.
if (!ExitWindowsEx(uFlags, 0)) {
errorLog(modulo,86,FALSE);
return(FALSE);
}
return TRUE;
}
// _____________________________________________________________________________________________________________
//
// Función: TomaVersionWindows
//
// Descripción:
// Toma la versión del sistema operativo
//
// Valores de retorno:
// 1.- Microsoft Windows Server 2003
// 2.- Microsoft Windows XP
// 3.- Microsoft Windows 2000
// 4.- Microsoft Windows NT
// 5.- Microsoft Windows 95
// 6.- Microsoft Windows 98
// 7.- Microsoft Windows Millennium Edition
// _____________________________________________________________________________________________________________
int TomaVersionWindows()
{
OSVERSIONINFOEX osvi;
BOOL bOsVersionInfoEx;
// Intenta tomar la version usando la estructura OSVERSIONINFOEX
// Si falla lo intentausando la estructura OSVERSIONINFO.
ZeroMemory(&osvi, sizeof(OSVERSIONINFOEX));
osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
if( !(bOsVersionInfoEx = GetVersionEx ((OSVERSIONINFO *) &osvi)) ){
osvi.dwOSVersionInfoSize = sizeof (OSVERSIONINFO);
if (! GetVersionEx ( (OSVERSIONINFO *) &osvi) )
return -1;
}
switch (osvi.dwPlatformId){
// Test for the Windows NT product family.
case VER_PLATFORM_WIN32_NT:
if ( osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 2 )
return(1); // Microsoft Windows Server 2003
if ( osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 1 )
return(2); // Microsoft Windows XP
if ( osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 0 )
return(3); // Microsoft Windows 2000
if ( osvi.dwMajorVersion <= 4 )
return(4); // Microsoft Windows NT
break;
// Test for the Windows Me/98/95.
case VER_PLATFORM_WIN32_WINDOWS:
if (osvi.dwMajorVersion == 4 && osvi.dwMinorVersion == 0)
return(5); // Microsoft Windows 95
if (osvi.dwMajorVersion == 4 && osvi.dwMinorVersion == 10)
return(6); // Microsoft Windows 98
if (osvi.dwMajorVersion == 4 && osvi.dwMinorVersion == 90)
return(7); // Microsoft Windows Millennium Edition
break;
}
return -1;
}
//______________________________________________________________________________________________________
// Función: Sondeo
//
// Descripción:
// Envía al servidor una confirmación de que está dentro del sistema
// Parámetros:
// ptrTrama: contenido del mensajede
// Devuelve:
// TRUE: Si el proceso es correcto
// FALSE: En caso de ocurrir algún error
//______________________________________________________________________________________________________
BOOLEAN Sondeo(TRAMA* ptrTrama)
{
return(TRUE);
}
//______________________________________________________________________________________________________
// Función: Actualizar
//
// Descripción:
// Envía al servidor una confirmación de que está dentro del sistema
// Parámetros:
// ptrTrama: contenido del mensajede
// Devuelve:
// TRUE: Si el proceso es correcto
// FALSE: En caso de ocurrir algún error
//______________________________________________________________________________________________________
BOOLEAN Actualizar(TRAMA* ptrTrama)
{
return(TRUE);
}
//______________________________________________________________________________________________________
// Función: respuestaEjecucionComando
//
// Descripción:
// Envia una respuesta a una ejecucion de comando al servidor de Administración
// Parámetros:
// - ptrTrama: contenido del mensaje
// - res: Resultado de la ejecución (Código de error devuelto por el script ejecutado)
// - ids: Identificador de la sesion (En caso de no haber seguimiento es NULO)
// Devuelve:
// TRUE: Si el proceso es correcto
// FALSE: En caso de ocurrir algún error
// ________________________________________________________________________________________________________
BOOLEAN respuestaEjecucionComando(TRAMA* ptrTrama,int res,char *ids)
{
int lon;
SOCKET socket_c;
char modulo[] = "respuestaEjecucionComando()";
lon=strlen(ptrTrama->parametros);
if(ids){ // Existe seguimiento
lon+=sprintf(ptrTrama->parametros+lon,"ids=%s\r",ids); // Añade identificador de la sesión
}
if (res==0){ // Resultado satisfactorio
lon+=sprintf(ptrTrama->parametros+lon,"res=%s\r","1");
lon+=sprintf(ptrTrama->parametros+lon,"der=%s\r","");
}
else{ // Algún error
lon+=sprintf(ptrTrama->parametros+lon,"res=%s\r","2");
lon+=sprintf(ptrTrama->parametros+lon,"der=%s\r",tbErrores[res]);// Descripción del error
}
if(!(enviaMensajeServidor(&socket_c,ptrTrama,MSG_NOTIFICACION))){
errorLog(modulo,44,FALSE);
return(FALSE);
}
closesocket(socket_c);
return(TRUE);
}
// ________________________________________________________________________________________________________
// Función: gestionaTrama
//
// Descripción:
// Procesa las tramas recibidas.servidoradm
// Parametros:
// ptrTrama: contenido del mensaje
// Devuelve:
// TRUE: Si el proceso es correcto
// FALSE: En caso de ocurrir algún error
// ________________________________________________________________________________________________________
BOOLEAN gestionaTrama(TRAMA *ptrTrama)
{
int i, res;
char *nfn;
char modulo[] = "gestionaTrama()";
INTROaFINCAD(ptrTrama);
nfn = copiaParametro("nfn", ptrTrama); // Toma nombre de función
for (i = 0; i < MAXIMAS_FUNCIONES; i++) { // Recorre funciones que procesan las tramas
res = strcmp(tbfuncionesClient[i].nf, nfn);
if (res == 0) { // Encontrada la función que procesa el mensaje
return(tbfuncionesClient[i].fptr(ptrTrama)); // Invoca la función
}
}
errorLog(modulo, 18, FALSE);
return (FALSE);
}
//______________________________________________________________________________________________________
// Función: enviaMensajeServidor
//
// Descripción:
// Envia un mensaje al servidor de Administración
// Parámetros:
// - socket_c: (Salida) Socket utilizado para el envío
// - ptrTrama: contenido del mensaje
// - tipo: Tipo de mensaje
// C=Comando, N=Respuesta a un comando, P=Peticion,R=Respuesta a una petición, I=Informacion
// Devuelve:
// TRUE: Si el proceso es correcto
// FALSE: En caso de ocurrir algún error
// ________________________________________________________________________________________________________
BOOLEAN enviaMensajeServidor(SOCKET *socket_c,TRAMA *ptrTrama,char tipo)
{
int lon;
char modulo[] = "enviaMensajeServidor()";
*socket_c=abreConexion();
if(*socket_c==INVALID_SOCKET){
errorLog(modulo,38,FALSE); // Error de conexión con el servidor
return(FALSE);
}
ptrTrama->arroba='@'; // Cabecera de la trama
strncpy(ptrTrama->identificador,"JMMLCAMDJ_MCDJ",14); // identificador de la trama
ptrTrama->tipo=tipo; // Tipo de mensaje
lon=strlen(ptrTrama->parametros); // Compone la trama
lon+=sprintf(ptrTrama->parametros+lon,"iph=%s\r",IPlocal); // Ip del ordenador
lon+=sprintf(ptrTrama->parametros+lon,"ido=%s\r",idordenador); // Identificador del ordenador
lon+=sprintf(ptrTrama->parametros+lon,"npc=%s\r",nombreordenador); // Nombre del ordenador
if (!mandaTrama(socket_c,ptrTrama)) {
errorLog(modulo,26,FALSE);
return (FALSE);
}
return(TRUE);
}
// _____________________________________________________________________________________________________________
// Función: TomaParametrosReg
//
// Descripción:
// Toma los parámetros de conexión del registro
// Devuelve:
// TRUE: Si el proceso es correcto
// FALSE: En caso de ocurrir algún error
// _____________________________________________________________________________________________________________
BOOLEAN TomaParametrosReg()
{
if(!ReadRegistryString(HIVE,BASE,"servidoradm",servidoradm,20))
return(FALSE);
if(!ReadRegistryString(HIVE,BASE,"puerto",puerto,20))
return(FALSE);
if(!ReadRegistryString(HIVE,BASE,"Iplocal",IPlocal,20))
return(FALSE);
return(TRUE);
}
//______________________________________________________________________________________________________
// Función: TomaIP
//
// Descripción:
// Recupera la ip de la máquina
// Parámetros:
// Ninguno
// Devuelve:
// TRUE: Si el proceso es correcto
// FALSE: En caso de ocurrir algún error
// ________________________________________________________________________________________________________
BOOLEAN TomaIP(char* ip)
{
char ac[80];
struct in_addr addr;
BOOLEAN ipv;
if (gethostname(ac, sizeof(ac)) == SOCKET_ERROR) {
return (FALSE);
}
struct hostent *phe = gethostbyname(ac);
if (phe == 0) {
return (FALSE);
}
ipv=FALSE;
for (int i = 0; phe->h_addr_list[i] != 0 && !ipv; ++i) {
memcpy(&addr, phe->h_addr_list[i], sizeof(struct in_addr));
strcpy(ip,inet_ntoa(addr));
if(strcmp(IPlocal,"127.0.0.1")==0)
ipv=FALSE;
else{
ipv=true; // IP válida distinta a loop
break;
}
}
return(ipv);
}
// ********************************************************************************************************
// PROGRAMA PRINCIPAL (CLIENTE)
// ********************************************************************************************************
//int main(int argc, char *argv[])
VOID ServiceStart (DWORD dwArgc, LPTSTR *lpszArgv)
{
//___________________________________________________________
//
// Service initialization (Report the status to the service control manager)
//___________________________________________________________
//
if (!ReportStatusToSCMgr(
SERVICE_START_PENDING, // service state
NO_ERROR, // exit code
3000)) // wait hint
return;
//__________________________________________
TRAMA *ptrTrama;
char modulo[] = "main()";
strcpy(szPathFileLog, "ogAdmWinClient.log"); // de configuración y de logs
WSADATA wsd;
if (WSAStartup(MAKEWORD(2,2),&wsd)!=0){ // Carga librería Winsock
errorLog(modulo, 93, FALSE);
exit(EXIT_FAILURE);
}
ptrTrama=(TRAMA *)reservaMemoria(sizeof(TRAMA));
if (ptrTrama == NULL) { // No hay memoria suficiente para el bufer de las tramas
errorLog(modulo, 3, FALSE);
exit(EXIT_FAILURE);
}
/*--------------------------------------------------------------------------------------------------------
Validación de parámetros de ejecución y fichero de configuración
---------------------------------------------------------------------------------------------------------*/
if(!TomaParametrosReg()) // Toma parametros de configuracion
exit(EXIT_FAILURE);
//___________________________________________________________
//
// Service initialization (Report the status to the service control manager)
//___________________________________________________________
//
if (!ReportStatusToSCMgr(
SERVICE_START_PENDING, // service state
NO_ERROR, // exit code
3000)) // wait hint
return;
//__________________________________________
//
// Toma IP local
//___________________________________________
//
// Toma la ip también del registro
/*if(!TomaIP(IPlocal)){
errorLog(modulo,85,FALSE);
exit(EXIT_FAILURE);
}
*/
versionWin=TomaVersionWindows(); // Toma versión de windows
/*--------------------------------------------------------------------------------------------------------
Carga catálogo de funciones que procesan las tramas
---------------------------------------------------------------------------------------------------------*/
int cf = 0;
strcpy(tbfuncionesClient[cf].nf, "RESPUESTA_InclusionClienteWinLnx");
tbfuncionesClient[cf++].fptr = &RESPUESTA_InclusionClienteWinLnx;
strcpy(tbfuncionesClient[cf].nf, "Apagar");
tbfuncionesClient[cf++].fptr = &Apagar;
strcpy(tbfuncionesClient[cf].nf, "Reiniciar");
tbfuncionesClient[cf++].fptr = &Reiniciar;
strcpy(tbfuncionesClient[cf].nf, "Sondeo");
tbfuncionesClient[cf++].fptr = &Sondeo;
strcpy(tbfuncionesClient[cf].nf, "Actualizar");
tbfuncionesClient[cf++].fptr = &Actualizar;
/*--------------------------------------------------------------------------------------------------------
Inicio de sesión
---------------------------------------------------------------------------------------------------------*/
infoLog(1); // Inicio de sesión
infoLog(3); // Abriendo sesión en el servidor de Administración;
/*--------------------------------------------------------------------------------------------------------
Inclusión del cliente en el sistema
---------------------------------------------------------------------------------------------------------*/
if(!InclusionClienteWinLnx(ptrTrama)){ // Ha habido algún problema al abrir sesión
errorLog(modulo,0,FALSE);
exit(EXIT_FAILURE);
}
infoLog(4); // Cliente iniciado
//__________________________________________
// El servicio está instalado y debe ser iniciado
// -- report the status to the service control manager.--
//
if (!ReportStatusToSCMgr(
SERVICE_RUNNING, // service state
NO_ERROR, // exit code
0)) // wait hint
return;
// End of initialization
//__________________________________________
//
// Service is now running, perform work until shutdown
//
while (ssStatus.dwCurrentState == SERVICE_RUNNING) { // Bucle para escuchar peticiones de clientes
procesaComandos(ptrTrama); // Bucle para procesar comandos interactivos
}
WSACleanup();
// El servicio de detiene
}
/* _____________________________________________________________________________________________________________
FUNCTION: ServiceStop
PURPOSE: Stops the service
PARAMETERS:
none
RETURN VALUE:
none
COMMENTS:
If a ServiceStop procedure is going to
take longer than 3 seconds to execute,
it should spawn a thread to execute the
stop code, and return. Otherwise, the
ServiceControlManager will believe that
the service has stopped responding.
_____________________________________________________________________________________________________________*/
VOID ServiceStop()
{
// Incluir aquí el código necesario antes de parar el servicio
ReportStatusToSCMgr(SERVICE_STOPPED, NO_ERROR, 0);
}
|