[go: up one dir, main page]

Menu

[03a0fc]: / src / main.c  Maximize  Restore  History

Download this file

593 lines (549 with data), 15.8 kB

  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
/*
SisPM.c
Controls the GEMBIRD Silver Shield PM USB outlet device
(C) 2004,2005,2006 Mondrian Nuessle, Computer Architecture Group, University of Mannheim, Germany
(C) 2005, Andreas Neuper, Germany
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
nuessle@uni-mannheim.de
aneuper@web.de
*/
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>
#include <signal.h>
#include <usb.h>
#include <assert.h>
#include <sys/types.h>
#include <sys/socket.h>
#include "sispm_ctl.h"
#include "socket.h"
#include "main.h"
#include "config.h"
#ifndef MSG_NOSIGNAL
#include <signal.h>
#endif
#define BSIZE 65536
char* homedir=0;
extern int errno;
int debug=0;
int verbose=1;
#ifndef WEBLESS
void process(int out,char*v,struct usb_device *dev,int devnum)
{
char xbuffer[BSIZE+2];
char filename[1024],*ptr;
FILE*in=NULL;
long length=0,lastpos,remlen=0;
int status;
usb_dev_handle *udev;
unsigned int id; //product id of current device
if(debug)
fprintf(stderr,"\nRequested is (%s)\n",v);
if( strchr(v,'\n') != NULL )
{
memset( filename, 0, 1023);
strncpy( filename, strchr(v,' ')+1, strchr(v,'\n')-v );
ptr=strchr( filename, ' ' );
*ptr=0;
}
if(debug)
fprintf(stderr,"\nrequested filename(%s)\n",filename);
ptr=strrchr(filename,'/');
if( (ptr!=NULL) )
{ // avoid to read other directories, %-codes are not evalutated
ptr++;
} else
{
ptr=filename;
}
if(strlen(ptr)==0) ptr="index.html";
if(debug)
fprintf(stderr,"\nresulting filename(%s)\n",ptr);
if(debug)
fprintf(stderr,"\nchange directory to (%s)\n",homedir);
if(chdir(homedir)!=0)
{
sprintf(xbuffer, "HTTP/1.1 4%02d Bad request\nServer: SisPM\nContent-Type: text/html\n\n"
"<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\n<html><head>\n<title>4%02d Bad Defaults</title>\n"
"</head><body>\n<h1>Bad Defaults</h1>\n<p>%s</p></body></html>\n\n",errno,errno,strerror(errno));
send(out,xbuffer,strlen(xbuffer),0);
return;
}
if(debug)
fprintf(stderr,"\nopen file(%s)\n",ptr);
in=fopen(ptr,"r");
if( (in==NULL) )
{
sprintf(xbuffer, "HTTP/1.1 4%02d Bad request\nServer: SisPM\nContent-Type: text/html\n\n"
"<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\n<html><head>\n<title>4%02d Bad Request</title>\n"
"</head><body>\n<h1>Bad Request</h1>\n<p>%s</p></body></html>\n\n",errno,errno,strerror(errno));
send(out,xbuffer,strlen(xbuffer),0);
return;
}
/* get device-handle/-id */
udev = get_handle(dev);
id = get_id(dev);
if(udev==NULL)
fprintf(stderr, "No access to Gembird #%d USB device %s\n",
devnum, dev->filename );
else
if(verbose) printf("Accessing Gembird #%d USB device %s\n",
devnum, dev->filename );
lastpos=ftell(in);
fgets(xbuffer,BSIZE-1,in);
remlen=length=ftell(in)-lastpos;
lastpos=ftell(in);
while(!feof(in))
{
char*mrk=xbuffer;
char*ptr=xbuffer;
/* search for:
* $$exec(0)?.1.:.2.$$ to execute command(#)
* $$stat(2)?.1.:.2.$$ to evaluate status(#)
*/
for(mrk=ptr=xbuffer;(ptr-xbuffer)<length;ptr++)
{
if(*ptr=='$' && ptr[1]=='$')
{
/*
* $$exec(1)?select:forget$$
* ^cmd ^pos ^trm
* ^ptr ^num ^neg
*/
char *cmd=&ptr[2];
char *num=strchr(cmd,'(');
char *pos=strchr(num?num:cmd,'?');
char *neg=strchr(pos?pos:cmd,':');
char *trm=strchr(neg?neg:cmd,'$');
if(debug) fprintf(stderr,"%p\n%p\n%p\n%p\n%p\n%p\n",cmd,num,pos,neg,trm,ptr);
if(debug) fprintf(stderr,"%s%s%s%s%s%s",cmd,num,pos,neg,trm,ptr);
if( trm!=NULL )
{
assert(("Command-Format: $$exec(#)?select:forget$$ ERROR at #",num!=NULL));
assert(("Command-Format: $$exec(#)?select:forget$$ ERROR at ?",pos!=NULL));
assert(("Command-Format: $$exec(#)?select:forget$$ ERROR at :",neg!=NULL));
// if( (ptr=strchr(neg,'$')) == NULL ) ptr=cmd; else *ptr=0;
// *pos=*neg=0;
num++; pos++; neg++;
send(out,mrk,ptr-mrk,0);
remlen = remlen - (ptr - mrk);
mrk=ptr;
/*
*
*/
if(strncasecmp(cmd,"on(",3)==0)
{
if(debug)
fprintf(stderr,"\nON(%s)\n",num);
if( sispm_switch_on(udev,id,atoi(num)) !=0)
{ send(out,pos,neg-pos-1,0);
} else
{ send(out,neg,trm-neg,0);
}
} else
if(strncasecmp(cmd,"off(",4)==0)
{
assert(("Command-Format: $$exec(#)?select:forget$$ ERROR at final $",(trm[1]=='$')));
if(debug)
fprintf(stderr,"\nOFF(%s)\n",num);
if( sispm_switch_off(udev,id,atoi(num)) !=0)
{ send(out,pos,neg-pos-1,0);
} else
{ send(out,neg,trm-neg,0);
}
} else
if(strncasecmp(cmd,"toggle(",7)==0)
{
assert(("Command-Format: $$exec(#)?select:forget$$ ERROR at final $",(trm[1]=='$')));
if(debug)
fprintf(stderr,"\nTOGGLE(%s)\n",num);
if( sispm_switch_getstatus(udev,id,atoi(num),&status) == 0)
{ sispm_switch_on(udev,id,atoi(num));
send(out,pos,neg-pos-1,0);
} else
{ sispm_switch_off(udev,id,atoi(num));
send(out,neg,trm-neg,0);
}
} else
if(strncasecmp(cmd,"status(",7)==0)
{
assert(("Command-Format: $$exec(#)?select:forget$$ ERROR at final $",(trm[1]=='$')));
if(debug)
fprintf(stderr,"\nSTATUS(%s)\n",num);
if( sispm_switch_getstatus(udev,id,atoi(num),&status) != 0)
{ send(out,pos,neg-pos-1,0);
} else
{ send(out,neg,trm-neg,0);
}
} else
{
// assert(("unknown but terminated command sequence",(trm[1]=='$')));
//fprintf(stderr,"\n<UNDERLINE>undefined sequence <B>%s</B></UNDERLINE>\n",cmd);
send(out,"$$",2,0);
}
remlen=remlen-(2+trm-mrk);
mrk=ptr=&trm[2];
}
}
}
send(out,mrk,remlen,0);
memset(xbuffer,0,BSIZE);
fgets(xbuffer,BSIZE-1,in);
remlen=length=ftell(in)-lastpos;
lastpos=ftell(in);
}
if(udev!=NULL) usb_close (udev);
fclose(in);
return;
}
#endif
void print_disclaimer(char*name)
{
fprintf(stderr, "\nSiS PM Control for Linux 2.5\n\n"
"(C) 2004, 2005, 2006 by Mondrian Nuessle, (C) 2005, 2006 by Andreas Neuper.\n"
"This program is free software.\n"
"%s comes with ABSOLUTELY NO WARRANTY; for details \n"
"see the file INSTALL. This is free software, and you are welcome\n"
"to redistribute it under certain conditions; see the file INSTALL\n"
"for details.\n\n", name );
return;
}
void print_usage(char* name)
{
print_disclaimer(name);
fprintf(stderr,"\n"
"sispmctl -s\n"
"sispmctl [-q] [-n] [-d 1...] -b <on|off>\n"
"sispmctl [-q] [-n] [-d 1...] -[o|f|g] 1..4|all\n"
" 'v' - print version & copyright\n"
" 'h' - print this usage information\n"
" 's' - scan for GEMBIRD 04B4:FD11 devices\n"
" 'b' - switch buzzer on or off\n"
" 'o' - switch outlet(s) on\n"
" 'f' - switch outlet(s) off\n"
" 'g' - get status\n"
" 'd' - apply to device\n"
" 'n' - show result numerically\n"
" 'q' - quiet mode, no explanations - but errors\n\n"
#ifndef WEBLESS
"Webinterface features:\n"
"sispmctl [-q] [-i <ip>] [-p <#port>] [-u <path>] -l\n"
" 'l' - start port listener\n"
" 'i' - bind socket on interface with given IP (dotted decimal, i.e. 192.168.1.1)\n"
" 'p' - port number for listener (%d)\n"
" 'u' - repository for web pages (default=%s)\n\n"
, listenport,homedir
#endif
);
#ifdef WEBLESS
fprintf(stderr,"Note: This build was compiled without web-interface features.\n\n");
#endif
}
#ifndef WEBLESS
const char*show_header(int type)
{
char*content=NULL;
static char buffer[1024];
time_t now;
int http=100*(type>>4);
switch(type&0xf)
{
case 1: content="\nContent-Type: text/html"; break;
case 2: content="\nContent-Type: text/plain"; break;
case 3: content="\nContent-Type: image/gif"; break;
case 4: content="\nContent-Type: image/jpg"; break;
default: content=""; break;
}
now=time(NULL);
sprintf(buffer,"HTTP/1.0 %d Answer\nServer: sispm\nConnection: close%s\nDate: %s\n\n",http,content,ctime(&now));
return(buffer);
}
const char*answer(char*in)
{
char*ptr=NULL,*end=NULL;
int type=0;
static char out[MAXANSWER+2];
memset(out,0,MAXANSWER);
if( strncasecmp("GET ",in,4) == 0 )
{
type=1;
ptr=&in[4];
} else
if( strncasecmp("POST ",in,5) == 0 )
{
type=1;
ptr=&in[5];
} else
{
type=1;
ptr=&in[0];
}
end=strchr(ptr,' ');
assert((end-ptr<1024,"filename buffer is defined to 1024 chars only"));
if( strncasecmp("/switch",ptr,6) == 0 )
{
ptr+=6;
} else
{
}
strcpy(out,show_header((4<<4)+1));
strcat(out,"\n\n<HTML><HEAD><TITLE>TEST</TITLE></HEAD><BODY><H1>TEST</H1></BODY></HTML>\n");
strcat(out,show_header((4<<4)+1));
return(out);
}
#endif
void parse_command_line(int argc, char* argv[], int count, struct usb_device*dev[])
{
int numeric=0;
int c;
int i;
int from=1, upto=4;
int status;
int devnum=0;
usb_dev_handle *udev=NULL;
unsigned int id=0; //product id of current device
char*onoff[] = { "off", "on", "0", "1" };
#ifndef WEBLESS
char* bindaddr=0;
#endif
unsigned int outlet;
#ifdef BINDADDR
if (BINDADDR!="")
bindaddr=BINDADDR;
#endif
while( (c=getopt(argc, argv,"i:o:f:b:g:lqvhnsd:u:p:")) != -1 )
{
if( c=='o' || c=='f' || c=='g' )
{
if((strncmp(optarg,"all",strlen("all"))==0)
|| (atoi(optarg)==7) )
{ //switch on all outlets
from=1;
upto=4;
} else
{
from = upto = atoi(optarg);
}
if (from<1 || upto>4)
{
fprintf(stderr,"Invalid outlet number given: %s\n"
"Expected: 1, 2, 3, 4, or all.\nTerminating.\n",optarg);
print_disclaimer( argv[0] );
exit(-6);
}
}
else
{
from = upto = 0;
}
if( c=='o' || c=='f' || c=='g' || c=='b' ) //we need a device handle for these commands
{
/* get device-handle/-id if it wasn't done already */
if(udev==NULL){
udev = get_handle(dev[devnum]);
id = get_id(dev[devnum]);
if(udev==NULL)
fprintf(stderr, "No access to Gembird #%d USB device %s\n",
devnum, dev[devnum]->filename );
else
if(verbose) printf("Accessing Gembird #%d USB device %s\n",
devnum, dev[devnum]->filename );
}
}
// using first available device
for (i=from;i<=upto;i++)
{
#ifdef WEBLESS
if (c=='l' || c=='i' || c=='p' || c=='u' )
{
fprintf(stderr,"Application was compiled without web-interface. Feature not available.\n");
exit(-100);
}
#endif
switch (c)
{
case 's':
for(status=0; status<count; status++)
{
printf("Gembird #%d is USB device %s.",
status,dev[status]->filename);
id = get_id(dev[status]);
if (id==PRODUCT_ID_SISPM || id==PRODUCT_ID_SISPM_FLASH_NEW)
{
printf("This device is a 4-socket SiS-PM.\n");
}
else
{
printf("This device is a 1-socket mSiS-PM.\n");
}
}
break;
case 'd': // replace previous (first is default) device by selected one
if(udev!=NULL) usb_close (udev);
devnum = atoi(optarg);
if(devnum>=count) devnum=count-1;
break;
case 'o':
{
outlet=check_outlet_number(id, i);
sispm_switch_on(udev,id,outlet);
if(verbose) printf("Switched outlet %d %s\n",i,onoff[1+numeric]);
break;
}
case 'f':
{
outlet=check_outlet_number(id, i);
sispm_switch_off(udev,id,outlet);
if(verbose) printf("Switched outlet %d %s\n",i,onoff[0+numeric]);
break;
}
case 'g':
{
outlet=check_outlet_number(id, i);
sispm_switch_getstatus(udev,id,outlet,&status);
if(verbose) printf("Status of outlet %d:\t",i);
printf("%s\n",onoff[status+numeric]);
break;
}
#ifndef WEBLESS
case 'p':
listenport=atoi(optarg);
if(verbose) printf("Server will listen on port %d.\n",listenport);
break;
case 'u':
homedir=strdup(optarg);
if(verbose) printf("Web pages come from \"%s\".\n",homedir);
break;
case 'i':
bindaddr=optarg;
if (verbose) printf("Web server will bind on interface with IP %s\n",bindaddr);
break;
case 'l':
{
if(verbose) printf("Server goes to listen mode now.\n");
int*s=(int*)NULL;
if( (s = socket_init(bindaddr)) != NULL)
{
while(1)
{
l_listen(s,dev[devnum],devnum);
}
}
}
break;
#endif
case 'q':
verbose=1-verbose;
break;
case 'n':
numeric=2-numeric;
break;
case 'b':
if (strncmp(optarg,"on",strlen("on"))==0)
{ sispm_buzzer_on(udev);
if(verbose) printf("Turned buzzer %s\n",onoff[1+numeric]);
} else
if (strncmp(optarg,"off",strlen("off"))==0)
{ sispm_buzzer_off(udev);
if(verbose) printf("Turned buzzer %s\n",onoff[0+numeric]);
}
break;
case 'v':
print_disclaimer( argv[0] );
break;
case 'h':
print_usage( argv[0] );
break;
default:
print_usage( argv[0]);
fprintf(stderr,"Unknown Option: %c(%x)\nTerminating\n",c,c);
exit(-7);
}
}
}
if (udev!=NULL) usb_close(udev);
return;
}
int main(int argc, char** argv)
{
struct usb_bus *bus;
struct usb_device *dev, *usbdev[MAXGEMBIRD];
int count=0;
#ifndef MSG_NOSIGNAL
(void) signal(SIGPIPE, SIG_IGN);
#endif
memset(usbdev,0,sizeof(usbdev));
usb_init();
usb_find_busses();
usb_find_devices();
#ifndef WEBLESS
if (WEBDIR=="")
{
homedir=HOMEDIR;
}
else
{
homedir=WEBDIR;
}
#endif
// initialize by setting device pointers to zero
for ( count=0; count< MAXGEMBIRD; count++) usbdev[count]=NULL; count=0;
//first search for GEMBIRD (m)SiS-PM devices
for (bus = usb_busses; bus; bus = bus->next)
{
for (dev = bus->devices; dev; dev = dev->next)
{
if (dev->descriptor.idVendor == VENDOR_ID && dev->descriptor.idProduct==PRODUCT_ID_SISPM)
{
//printf("Found (classic) SIS-PM device.\n");
usbdev[count++] = dev;
}
if (dev->descriptor.idVendor == VENDOR_ID && dev->descriptor.idProduct==PRODUCT_ID_MSISPM_OLD)
{
//printf("Found mSIS-PM device.\n");
usbdev[count++] = dev;
}
if (dev->descriptor.idVendor == VENDOR_ID && dev->descriptor.idProduct==PRODUCT_ID_MSISPM_FLASH)
{
//printf("Found msispm flash device.\n");
usbdev[count++] = dev;
}
if (dev->descriptor.idVendor == VENDOR_ID && dev->descriptor.idProduct==PRODUCT_ID_SISPM_FLASH_NEW)
{
//printf("Found new sispm device (id 0xFD13)\n");
usbdev[count++] = dev;
}
if (count==MAXGEMBIRD)
{
fprintf(stderr,"%d devices found. Please recompile if you need to support more devices!\n",count);
break;
}
}
}
if(count==0)
{
fprintf(stderr, "No GEMBIRD SiS-PM found. Check USB connections, please!\n");
return 1;
} else
{
/* do the real work here */
if (argc<=1)
print_usage(argv[0]);
else
parse_command_line(argc,argv,count,usbdev);
}
return 0;
}