Fixed invalid parsing of text-mode received SMS timestamp
[mdsms.git] / mdsms.c
1 #define WANT_DECLARATIONS 1
2 #include "config.h"
3 #ifndef lint
4 static char rcsid[] ATTR_UNUSED = "$Id$";
5 #endif
6
7 #include "setup.h"
8
9 #ifdef HAVE_STDIO_H
10 #include <stdio.h>
11 #endif
12 #ifdef HAVE_STDLIB_H
13 #include <stdlib.h>
14 #endif
15 #ifdef HAVE_STRING_H
16 #include <string.h>
17 #endif
18 #ifdef HAVE_SIGNAL_H
19 #include <signal.h>
20 #endif
21 #ifdef HAVE_STDARG_H
22 #include <stdarg.h>
23 #endif
24 #ifdef HAVE_LIMITS_H
25 #include <limits.h>
26 #endif
27 #ifdef HAVE_CTYPE_H
28 #include <ctype.h>
29 #endif
30 #ifdef HAVE_TERMIOS_H
31 #include <termios.h>
32 #endif
33 #ifdef HAVE_UNISTD_H
34 #include <unistd.h>
35 #endif
36 #ifdef HAVE_ASSERT_H
37 #include <assert.h>
38 #endif
39 #ifdef HAVE_SYS_TYPES_H
40 #include <sys/types.h>
41 #endif
42 #ifdef HAVE_SYS_WAIT_H
43 #include <sys/wait.h>
44 #endif
45 #ifdef HAVE_SYS_STAT_H
46 #include <sys/stat.h>
47 #endif
48 #ifdef HAVE_FCNTL_H
49 #include <fcntl.h>
50 #endif
51 #ifdef HAVE_ERRNO_H
52 #include <errno.h>
53 #endif
54 #ifdef HAVE_TIME_H
55 #include <time.h>
56 #endif
57 #ifdef HAVE_SYS_TIME_H
58 #include <sys/time.h>
59 #endif
60 #ifdef HAVE_SYS_POLL_H
61 #include <sys/poll.h>
62 #endif
63 #ifdef HAVE_LOCALE_H
64 #include <locale.h>
65 #endif
66
67 #ifdef HAVE_GETOPT_LONG
68 #include <getopt.h>
69 #else
70 #include "getopt.h"
71 #endif
72
73
74 /* Always override possible system defintions as it is safe (used by glib) */
75 #undef MAX
76 #define MAX(a,b) ((a)>(b)?(a):(b))
77 #undef MIN
78 #define MIN(a,b) ((a)<(b)?(a):(b))
79
80 #define NELEM(x) (sizeof((x))/sizeof(*(x)))
81
82 #ifndef DEBUG
83 #define dbg(cmd)
84 #else
85 #define dbg(cmd) cmd
86 #endif
87 /* ANSI C does not allow macro with variable arguments */
88 #define dO stderr
89 #define dB(a) dbg(fprintf a)
90
91 #define d1(n1)                      dB((dO,n1                     ))
92 #define d2(n1,n2)                   dB((dO,n1,n2                  ))
93 #define d3(n1,n2,n3)                dB((dO,n1,n2,n3               ))
94 #define d4(n1,n2,n3,n4)             dB((dO,n1,n2,n3,n4            ))
95 #define d5(n1,n2,n3,n4,n5)          dB((dO,n1,n2,n3,n4,n5         ))
96 #define d6(n1,n2,n3,n4,n5,n6)       dB((dO,n1,n2,n3,n4,n5,n6      ))
97 #define d7(n1,n2,n3,n4,n5,n6,n7)    dB((dO,n1,n2,n3,n4,n5,n6,n7   ))
98 #define d8(n1,n2,n3,n4,n5,n6,n7,n8) dB((dO,n1,n2,n3,n4,n5,n6,n7,n8))
99
100 static const char version[]="Mobile Device SMS tool (" PACKAGE " " VERSION ")\n";
101
102 static int verbose
103 #ifdef DEBUG
104         =0xFFFF
105 #endif
106         ;
107 static char *pname;
108 static int dis_cleanup=0,devfd=-1;
109
110 static char *phone,*device,*logname,*lockfile,*smsmode,*pdusmscmode,*smsc,*maxretry,*readtime,*chartime,*cmdtime,*baud,*restore;
111 static int readbody;
112 static long maxretryn=DEF_MAXRETRY,readtimen=-1,chartimen=DEF_CHARTIME,cmdtimen=DEF_CMDTIME,baudn=DEF_BAUD;
113 #ifdef HAVE_CRTSCTS
114 static int handshake_rtscts;
115 static unsigned handshake_stamp;
116 #else
117 #define handshake_rtscts (0)
118 #endif
119 static enum {
120         FSM_AUTO=0,
121         FSM_PDU,
122         FSM_TEXT
123         } force_smsmode=FSM_AUTO;
124 static enum {
125         FPSM_AUTO=0,
126         FPSM_COUNT_IN,
127         FPSM_COUNT_OUT,
128         FPSM_NONE
129         } force_pdusmscmode=FPSM_AUTO,
130 #define FPSM_MIN (FPSM_COUNT_IN)
131 #define FPSM_MAX (FPSM_NONE)
132                 try_pdusmscmode=FPSM_MIN;
133 static size_t bodylen;
134 /* --send / --send-mobildock / --receive specific */
135 static char *body;
136 /* --logo-send specific */
137 static char *logoname,*gsmnet;
138 /* --ring-send specific */
139 static char *ringname;
140
141 static enum modenum {
142   MODE_UNKNOWN=0,
143 /* must differ from regular char-s */
144   MODE_FIRST         =0x3400,
145         MODE_SEND          =MODE_FIRST+0, /* --send / --send-mobildock */
146         MODE_SEND_MOBILDOCK=MODE_FIRST+1, /* --send-mobildock in before readtimen is set */
147         MODE_RECEIVE       =MODE_FIRST+2, /* --receive */
148         MODE_LOGO_SEND     =MODE_FIRST+3, /* --logo-send */
149         MODE_RING_SEND     =MODE_FIRST+4  /* --ring-send */
150         } mode=MODE_UNKNOWN;
151 #define MODE_ORDER(x) ((x)-MODE_FIRST)
152 #define MODE_NAME(x) (longopts[MODE_ORDER((x))].name)
153 #define MODE_BIT(x) (1<<MODE_ORDER((x)))
154
155 static unsigned mode_stamp;
156
157 /* pdusmsc variable has to be filled in */
158 #define NEED_PDUSMSC() (mode==MODE_SEND)
159
160 static char *devicename; /* path stripped */
161 static char lockreal[512],locked;
162
163 static struct termios restios,tios;
164 static char restios_yes;
165 static FILE *logf;
166
167 static void vlogmsg(char pm,char fatal,const char *fmt,va_list ap) ATTR_PRINTFORMAT(3,0);
168 static void vlogmsg(char pm,char fatal,const char *fmt,va_list ap)
169 {
170 time_t stamp;
171 char *ctm,*s;
172 pid_t mypid=-1;
173 char host[LINE_MAX];
174
175         if (!logf) return;
176         if (mypid==-1) {
177                 mypid=getpid();
178                 if (gethostname(host,sizeof(host))) strcpy(host,_("<ERROR>"));
179                 }
180         time(&stamp);
181         ctm=ctime(&stamp);
182         if ((s=strchr(ctm,'\n'))) *s='\0';
183         fprintf(logf,"%s %s %s[%d]: ",ctm,host,pname,mypid);
184         vfprintf(logf,fmt,ap);
185         if (pm) { fputs(": ",logf); fputs(strerror(errno),logf); }
186         if (fatal!='\n') fputc((fatal=='.'?'.':'!'),logf);
187         fputc('\n',logf);
188         fflush(logf);
189 }
190
191 static void logmsg(const char *fmt,...) ATTR_PRINTFORMAT(1,2);
192 static void logmsg(const char *fmt,...)
193 {
194 va_list ap;
195         va_start(ap,fmt);
196         vlogmsg(0,'\n',fmt,ap);
197         va_end(ap);
198 }
199
200 static void error(const char *fmt,...) ATTR_PRINTFORMAT(1,2);
201 static void error(const char *fmt,...)
202 {
203 va_list ap;
204 char fatal,pm;
205
206         if ((pm=(*fmt=='^'))) fmt++;
207         fatal=*fmt;
208         if (fatal=='!' || fatal=='.' || fatal=='\n') fmt++;
209         else fatal=0;
210
211         fprintf(stderr,"%s: ",pname);
212         va_start(ap,fmt);
213         vfprintf(stderr,fmt,ap);
214         if (fatal=='!') vlogmsg(pm,fatal,fmt,ap);
215         va_end(ap);
216         if (pm) { fputs(": ",stderr); fputs(strerror(errno),stderr); }
217         if (fatal!='\n') fputc((fatal=='.'?'.':'!'),stderr);
218         fputc('\n',stderr);
219         if (fatal=='!') exit(EXIT_FAILURE);
220 }
221
222 static void chk(const void *p)
223 {
224         if (p) return;
225         error(_("!Virtual memory exhausted"));
226 }
227
228 static char *devcmd(const char *term,const char *catch,const char *send,...) ATTR_PRINTFORMAT(3,4);
229
230 static void unlockdevice(int hard)
231 {
232         d2("unlockdevice(), locked=%d\n",locked);
233         if (!locked || !*lockreal) return;
234         if (!hard && locked>1) { locked--; return; }
235         d2("Removing lockfile \"%s\"\n",lockreal);
236         if (unlink(lockreal))
237                 error(_("^Error removing my device lockfile \"%s\""),lockreal);
238         locked=0;
239 }
240
241 static void cleanup(void)
242 {
243         d1("cleanup()\n");
244         if (dis_cleanup) return;
245         if (restore) {
246 char *cmd=restore;
247                 restore=NULL;
248                 devcmd(NULL,NULL,"\r\nAT");
249                 devcmd(NULL,NULL,cmd);
250                 devcmd(NULL,NULL,"\r\nAT");
251                 }
252         if (restios_yes) {
253                 if (tcsetattr(devfd,TCSANOW,&restios))
254                         error(_("^Error restoring termios for device"));
255                 restios_yes=0;
256                 }
257         unlockdevice(1);
258         dis_cleanup=1;
259         exit(EXIT_FAILURE);
260 }
261
262 static void usage(void)
263 {
264         fprintf(stderr,_("\
265 \n\
266 %s\
267 \n\
268 Usage: %s [-c|--config <cfgfile>] [-d|--device <device>]\n\
269              [-L|--log <file>] [-l|--lockfile <lock>]\n\
270              [-b|--baud <rate>] [-x|--xonxoff] [-C|--rtscts]\n\
271              [-M|--smsmode <mode>] [-P|--pdusmscmode <mode>]\n\
272              [-s|--smsc <smsc #>] [-m|--maxretry <#>]\n\
273              [-r|--readtime <sec>] [-t|--chartime <msec>] [-T|--cmdtime <msec>]\n\
274              [-v|--verbose] [-h|--help] [-V|--version]\n\
275              {--send | --send-mobildock | --receive | --logo-send}\n\
276   --send / --send-mobildock:\n\
277              [-f|--file] <dest. phone> <msg text|msg filename>\n\
278   --receive:\n\
279              <command name>\n\
280   --logo-send:\n\
281              <dest. phone> <logo filename> [<GSMnet id>]\n\
282   --ring-send:\n\
283              <dest. phone> <ring filename>\n\
284 \n\
285  -c, --config\tRead this additional config file\n\
286 \t\t(def. \"%s\" and \"$HOME%s\")\n\
287  -d, --device\tMobile on this serial device (def. \"%s\")\n\
288  -L, --log\tLog all important messages to this file (def. \"%s\")\n\
289  -l, --lockfile\tLock serial port by this file, \"%%s\" is basename of device\n\
290 \t\t(def. \"%s\")\n\
291  -b, --baud\tSet baudrate, 2400-57600 supported (def. %d)\n\
292  -x, --xonxoff\tUse XON/XOFF (AKA software) serial port handshaking - default\n\
293  -C, --rtscts\tUse RTS/CTS (AKA hardware) serial port handshaking%s\n\
294  -M, --smsmode\tForce SMS as: \"pdu\" or 0: PDU mode, \"text\" or 1: text mode\n\
295  -P, --pdusmscmode\tForce PDU as: \"count-in\", \"count-out\", \"none\"\n\
296  -s, --smsc\tUse this SMS Center number (def. query from mobile)\n\
297  -m, --maxretry\tMaximum retries of any command before giving up (def. %d)\n\
298  -r, --readtime\tSeconds for maximum wait time for response\n\
299 \t\t(def. %ds standard, %ds for MobilDock modes,\n\
300 \t\t multiplied %dx for long cmds)\n\
301  -t, --chartime\tMilliseconds between each char (def. %dms)\n\
302  -T, --cmdtime\tMilliseconds before each whole AT command (def. %dms)\n\
303  -v, --verbose\tIncrease verbosity level, more \"-v\"s give more messages\n\
304  -h, --help\tPrint a summary of the options\n\
305  -V, --version\tPrint the version number\n\
306 \n\
307 --send / --send-mobildock:\n\
308  -f, --file\tRead contents of message from file instead\n\
309 --receive:\n\
310  <command name>\tProgram to run on receive, message will be on stdin\n\
311 \t\tFollowing substitutes are recognized:\n\
312 \t\t%%p - source phone number\n\
313 \t\t%%T - timestamp from SMSC as # of seconds from 1970 (-1 if invalid)\n\
314 \t\t%%t - ctime(3) style timestamp (e.g. \"Wed Jun 30 21:49:08 1993\"),\n\
315 \t\t     empty string if invalid\n\
316 \t\t%%s - originating SMSC number, if available (else empty)\n\
317 --logo-send:\n\
318  <GSMnet id>\t* Oper. logo: Enter custom network code MccMnc, e.g. 23002\n\
319 \t\t* Oper. logo: Specify \"%s\" to read network code from NOL file\n\
320 \t\t* Group gfx : Specify \"%s\" to send logo as group graphics\n\
321 \n\
322 You may need to use the following line to catch all of this help text:\n\
323 ./mdsms -h 2>&1|more\n\
324 \n"),version,PACKAGE,CONFIG_MAIN,CONFIG_HOME,DEF_DEVICE,DEF_LOGNAME,DEF_LOCKFILE,DEF_BAUD,
325 #ifdef HAVE_CRTSCTS
326                 "",
327 #else
328                 _("\n\t\t(Not supported on this platform!)"),
329 #endif
330 DEF_MAXRETRY,DEF_READTIME,DEF_READTIME_MOBILDOCK,EXT_READTIME,DEF_CHARTIME,DEF_CMDTIME,
331 WORD_NET,WORD_GROUP);
332         exit(EXIT_FAILURE);
333 }
334
335 static const struct option longopts[]={
336 /* Modes has to be in-order on exact positions */
337 {"send"          ,0,0,MODE_SEND},
338 {"send-mobildock",0,0,MODE_SEND_MOBILDOCK},
339 {"receive"       ,0,0,MODE_RECEIVE},
340 {"logo-send"     ,0,0,MODE_LOGO_SEND},
341 {"ring-send"     ,0,0,MODE_RING_SEND},
342 /* Mode aliases may follow in no particular order *
343  * as long as no non-mode options is between them */
344 {"send-md"       ,0,0,MODE_SEND_MOBILDOCK},
345 {"recv"          ,0,0,MODE_RECEIVE},
346 {"logo"          ,0,0,MODE_LOGO_SEND},
347 {"ring"          ,0,0,MODE_RING_SEND},
348 {"config"      ,1,0,'c'},
349 {"device"      ,1,0,'d'},
350 {"log"         ,1,0,'L'},
351 {"lockfile"    ,1,0,'l'},
352 {"baud"        ,1,0,'b'},
353 {"xonxoff"     ,0,0,'x'},
354 {"rtscts"      ,0,0,'C'},
355 {"smsmode"     ,1,0,'M'},
356 {"pdusmscmode" ,1,0,'P'},
357 {"smsc"        ,1,0,'s'},
358 {"maxretry"    ,1,0,'m'},
359 {"readtime"    ,1,0,'r'},
360 {"chartime"    ,1,0,'t'},
361 {"cmdtime"     ,1,0,'T'},
362 {"file"        ,0,0,'f'},
363 {"verbose"     ,0,0,'v'},
364 {"help"        ,0,0,'h'},
365 {"version"     ,0,0,'V'},
366 {NULL          ,0,0,0  }};
367
368 static void processargs(int argp,char **args,const char *from);
369
370 static char *cfgstack[MAXCFGLOOP];
371 static unsigned cfgstacki=0;
372
373 static void chkfclose(FILE *f,const char *fname)
374 {
375         if (fclose(f))
376                 error(_("^Error closing \"%s\""),fname);
377 }
378
379 static long getfilesize(FILE *f,const char *fname)
380 {
381 long size;
382
383         if (fseek(f,0,SEEK_END))
384                 error(_("^Error seeking to end of \"%s\""),fname);
385         if ((size=ftell(f))<0)
386                 size=-1,error(_("^Error measuring length of \"%s\""),fname);
387         rewind(f);
388         return(size);
389 }
390
391 static void readfile(const char *fname,char quiet)
392 {
393 FILE *f;
394 size_t got;
395 char *args[MAXCFGARGS],*d,*s,blank,quote;
396 unsigned argp;
397 char *buf;
398 long size;
399 static unsigned tot=0;
400
401         if (tot++>=MAXCFGNUM) {
402                 if (tot==MAXCFGNUM+1) error(_("Too many config files to read, max is %d, break-out"),MAXCFGNUM);
403                 return;
404                 }
405         if (!(f=fopen(fname,"rt"))) {
406                 if (!quiet) error(_("^Can't open config file \"%s\" for r/o"),fname);
407                 return;
408                 }
409                 
410         if (verbose>=2) error(_(".Reading config file \"%s\""),fname);
411         if ((size=getfilesize(f,fname))==-1) size=0;
412         if (size>MAXCONFIG) 
413                 error(_("File \"%s\" is too long, read only %d bytes"),fname,MAXCONFIG);
414         chk(buf=malloc((size?size:MAXCONFIG)+1));
415         got=fread(buf,1,(size?size:MAXCONFIG),f);
416         if (size && got!=size)
417                 error(_("File \"%s\" read error, got only %u bytes of %ld"),fname,got,size);
418         chkfclose(f,fname);
419         buf[got]='\0';
420         args[0]=pname;
421         for (argp=1,d=s=buf,blank=1,quote=0;s<buf+got;s++) {
422 char c=*s;
423
424                 if (!quote && isspace(c)) {
425                         if (!blank) {
426                                 *d='\0';
427                                 blank=1;
428                                 if (verbose>=2) error(_("\nConfig \"%s\": arg#%d: %s"),fname,argp-1,args[argp-1]);
429                                 }
430                         continue;
431                         }
432                 if (blank) {
433                         if (argp>=NELEM(args)-1) {
434                                 error(_("Too many arguments in \"%s\", from offset %d ignored"),fname,s-buf);
435                                 break;
436                                 }
437                         args[argp++]=s;
438                         d=s;
439                         blank=0;
440                         }
441                 if (c=='\\') { *d++=*++s; continue; }
442                 if (c=='"' || c=='\'') {
443                         if (!quote   ) { quote=c; continue; }
444                         if ( quote==c) { quote=0; continue; }
445                         /* FALLTHRU */
446                         }
447                 *d++=c;
448                 }
449         args[argp]=NULL;
450         processargs(argp,args,fname);
451         free(buf);
452 }
453
454 static struct argstack {
455         struct argstack *next;
456         int num,offset;
457         const char *from;
458         char *arg[1];
459         } *argstack;
460
461 static struct argstack **argstack_tail=&argstack;
462 static size_t lastargstack_len;
463 static const char *lastargstack_from;
464 static int lastargstack_index;
465
466 static size_t argstack_size;
467 static int argstack_num;
468
469 static void pushargstack(char **args,int num,int offset,const char *from,char stack)
470 {
471 struct argstack *as;
472 int i;
473
474         if (!num) return;
475         assert(num>=1);
476         chk(as=malloc(sizeof(*as)+sizeof(as->arg)*(num-1)));
477         as->num=num;
478         as->offset=offset;
479         if (!from) as->from=NULL;
480         else chk(as->from=strdup(from));
481         for (i=0;i<num;i++) {
482                 chk(as->arg[i]=strdup(args[i]));
483                 argstack_size+=strlen(args[i]);
484                 }
485         argstack_num+=num;
486         if (stack) {
487                 as->next=argstack;
488                 argstack=as;
489                 }
490         else {
491                 as->next=NULL;
492                 *argstack_tail=as;
493                 argstack_tail=&as->next;
494                 }
495 }
496
497 static void pushargstack_one(char *s,char stack)
498 { pushargstack(&s,1,0,NULL,stack); }
499
500 static char *nextargstack(void)
501 {
502 static int order=0;
503 char *r;
504
505         if (argstack && order==argstack->num) {
506 struct argstack *as=argstack;
507                 if (!(argstack=as->next))
508                         argstack_tail=&argstack;
509                 order=0;
510                 free((char *)as->from);
511                 lastargstack_from=NULL;
512                 free(as);
513                 }
514         if (!argstack) {
515                 assert(!argstack_num); assert(!argstack_size);
516                 return(NULL);
517                 }
518         assert(order<argstack->num);
519         lastargstack_index=argstack->offset+order;
520         r=argstack->arg[order++];
521         assert(argstack_num>0); argstack_num--;
522         lastargstack_len=strlen(r);
523         assert(argstack_size>=lastargstack_len); argstack_size-=lastargstack_len;
524         lastargstack_from=argstack->from;
525         return(r);
526 }
527
528 static char *glueargstack(size_t *destlenp,const char *glue)
529 {
530 size_t gluel=(glue?strlen(glue):0),destlen;
531 char *dest,*d,*s;
532
533         if (!argstack_num) {
534                 chk(dest=strdup(""));
535                 if (destlenp) *destlenp=0;
536                 return(dest);
537                 }
538         destlen=argstack_size+(argstack_num-1)*gluel;
539         if (destlenp) *destlenp=destlen;
540         chk(dest=malloc(destlen+1));
541         for (d=dest;(s=nextargstack());) {
542                 memcpy(d,s,lastargstack_len);
543                 free(s);
544                 d+=lastargstack_len;
545                 if (!argstack_num) break;
546                 if (!glue) continue;
547                 memcpy(d,glue,gluel);
548                 d+=gluel;
549                 assert(d<=dest+destlen);
550                 }
551         assert(!argstack_num);
552         assert(d==dest+destlen);
553         *d='\0';
554         return(dest);
555 }
556
557 static struct {
558         const char c;
559         char **const var;
560         unsigned stamp;
561         } optset[]={
562                 { 'd',&device       },
563                 { 'L',&logname      },
564                 { 'l',&lockfile     },
565                 { 'b',&baud         },
566                 { 'M',&smsmode      },
567                 { 'P',&pdusmscmode  },
568                 { 's',&smsc         },
569                 { 'm',&maxretry     },
570                 { 'r',&readtime     },
571                 { 't',&chartime     },
572                 { 'T',&cmdtime      },
573         };
574
575 static void processargs(int argp,char **args,const char *from)
576 {
577 int optc;
578 static unsigned seq=0;
579 int i;
580
581         seq++;
582         optarg=NULL; optind=0; /* FIXME: Possible portability problem. */
583         while ((optc=getopt_long(argp,args,"c:d:L:l:b:xCM:P:s:m:r:t:T:fvhV",longopts,NULL))!=EOF) switch (optc) {
584                 case 'c':
585                         if (cfgstacki>=NELEM(cfgstack)) {
586                                 error(_("Looping (%d) during attempt to read config file \"%s\", break-out"),NELEM(cfgstack),from);
587                                 break;
588                                 }
589                         chk(cfgstack[cfgstacki++]=strdup(optarg));
590                         break;
591                 case 'd': case 'L': case 'b': case 'l': case 'M': case 'P': case 's': case 'm': case 'r': case 't': case 'T':
592                         for (i=0;i<NELEM(optset);i++)
593                                 if (optset[i].c==optc) {
594                                         if (optset[i].stamp && optset[i].stamp!=seq) {
595                                                 assert(!!*optset[i].var);
596                                                 break;
597                                                 }
598                                         free(*optset[i].var);
599                                         chk(*optset[i].var=strdup(optarg));
600                                         optset[i].stamp=seq;
601                                         break;
602                                         }
603                         assert(i<NELEM(optset));
604                         break;
605                 case 'x': case 'C':
606 #ifdef HAVE_CRTSCTS
607                         if (handshake_stamp && handshake_stamp!=seq) break;
608                         handshake_rtscts=(optc=='C');
609                         handshake_stamp=seq;
610 #else
611                         if (optc=='C')
612                                 error(_("!RTS/CTS handshake NOT supported on this platform! Occured during parsing option %d from \"%s\""),optind-1,from);
613 #endif
614                         break;
615                 case MODE_SEND:
616                 case MODE_SEND_MOBILDOCK:
617                 case MODE_RECEIVE:
618                 case MODE_LOGO_SEND:
619                 case MODE_RING_SEND:
620                         if (mode_stamp && mode_stamp!=seq) break;
621                         mode=optc;
622                         mode_stamp=seq;
623                         break;
624                 case 'f':
625                         readbody++;
626                         break;
627                 case 'v':
628                         verbose++;
629                         break;
630                 case 'V':
631                         fprintf(stderr,version);
632                         exit(EXIT_FAILURE);
633                 default:
634                         if (optc!='h')
635                                 error(_("\nLast getopt(3) error occured during parsing option %d from \"%s\"! Follows help:"),optind-1,from);
636                         usage();
637                         break;
638                 }
639         pushargstack(args+optind,argp-optind,optind,from,1);
640         while (cfgstacki) {
641 char *s=cfgstack[--cfgstacki];
642
643                 assert(cfgstacki>=0);
644                 readfile(s,0);
645                 free(s);
646                 assert(cfgstacki>=0 && cfgstacki<NELEM(cfgstack));
647                 }
648 }
649
650 static const struct nullcheck {
651         char **var;
652         enum modenum reqd;
653         const char *name;
654         } nullcheck[]={
655                 {&phone,MODE_BIT(MODE_SEND)|MODE_BIT(MODE_SEND_MOBILDOCK)|MODE_BIT(MODE_LOGO_SEND),
656                         N_("destination phone number")},
657                 {&logoname,MODE_BIT(MODE_LOGO_SEND),N_("logo filename")},
658                 {&ringname,MODE_BIT(MODE_RING_SEND),N_("ring filename")},
659                 {&body,MODE_BIT(MODE_RECEIVE),N_("body text")}, /* we allow empty bodies for SENDs */
660 #if 0
661                 {&gsmnet,MODE_BIT(MODE_LOGO_SEND),N_("GSM operator network code")},
662                 {&device,0,N_("device for communication")},
663 #endif
664         };
665 static char **emptycheck[]={&logname,&smsc,&logoname,&gsmnet};
666
667 static inline void emptyclean(void)
668 {
669 int i;
670
671         for (i=0;i<NELEM(emptycheck);i++)
672                 if (*emptycheck[i] && !**emptycheck[i]) {
673                         free(*emptycheck[i]);
674                              *emptycheck[i]=NULL;
675                         }
676 }
677
678 static inline void cmdline_done(void)
679 {
680 char *s;
681         while ((s=nextargstack())) {
682                 error(_("\nExcessive option %d from \"%s\" ignored: %s"),
683                         lastargstack_index,lastargstack_from,s);
684                 free(s);
685                 }
686         emptyclean();
687 }
688
689 static char *check_phone(const char *phone)
690 {
691 const char *s,*s1;
692 static char err[LINE_MAX];
693
694         for (s=s1=(phone+(*phone=='+'));*s && s-s1<MAXNUMLEN;s++)
695                 if (!isdigit(*s)) {
696                         VARPRINTF2(err,_("Invalid digit '%c' in phone number - at offset %d"),
697                                 *s,s-phone);
698                         return(err);
699                         }
700         if (!*s) return(NULL);
701         VARPRINTF2(err,_("Phone number too long (%d), max. %d digits allowed"),
702                 strlen(s1),MAXNUMLEN);
703         return(err);
704 }
705
706 static void cmdline_phone(void)
707 {
708         if (!phone && (phone=nextargstack())) {
709 char *s;
710
711                 if ((s=check_phone(phone)))
712                         error(_("!%s in option %d from \"%s\": %s"),
713                                         s,lastargstack_index,lastargstack_from,phone);
714                 }
715 }
716
717 static inline void cmdline_receive(void)
718 {
719 char *s;
720
721         if (!body && argstack_num) {
722                 body=glueargstack(&bodylen," ");
723                 for (s=body;(s=strchr(s,'%'));s++)
724                         switch (*++s) {
725                                 case 'p': case 'T': case 't': case 's': break;
726                                 default:
727                                         error(_("Unknown formatsymbol '%c' (use \"%%%%%c\" to fix it) at pos %d in: %s"),
728                                                 *s,*s,s-body,body);
729                                 }
730                 }
731 }
732
733 static inline void cmdline_send(void)
734 {
735         cmdline_phone();
736         if (!body && argstack_num)
737                 body=glueargstack(&bodylen," ");
738 }
739
740 static inline void cmdline_logo_send(void)
741 {
742 char *ogsmnet;
743
744         cmdline_phone();
745         if (!logoname) logoname=nextargstack();
746         if (!gsmnet && (ogsmnet=nextargstack())) {
747 char *s,*d,e=0;
748
749                 chk(gsmnet=strdup(ogsmnet));
750                 if (strtrycasecmp(gsmnet,WORD_NET) && strtrycasecmp(gsmnet,WORD_GROUP)) {
751                         for (d=s=gsmnet;*s;s++) {
752                                 if (isdigit(*s)) { *d++=*s; continue; }
753                                 if (isspace(*s)) continue;
754                                 error(_("\nInvalid characted '%c' in GSMnet at offs %d: %s"),
755                                         *s,s-gsmnet,ogsmnet);
756                                 e=1;
757                                 break;
758                                 }
759                         if ((d-gsmnet)!=5) {
760                                 error(_("\nGSMnet is required to have exactly 5 digits or to be\n\
761 either \"%s\" or \"%s\", but found length %d: %s"),
762                                         WORD_NET,WORD_GROUP,d-gsmnet,ogsmnet);
763                                 e=1;
764                                 }
765                         if (!e) *d='\0';
766                         else {
767                                 error(_("\nGSMnet option %d from \"%s\" rejected due to previous errors: %s"),
768                                         lastargstack_index,lastargstack_from,ogsmnet);
769                                 free(gsmnet);
770                                 gsmnet=NULL;
771                                 }
772                         }
773                 }
774 }
775
776 static inline void cmdline_ring_send(void)
777 {
778         cmdline_phone();
779         if (!ringname) ringname=nextargstack();
780 }
781
782 static void lockclose(int fd)
783 {
784         if (close(fd))
785                 error(_("Error closing lockfile \"%s\""),lockreal);
786 }
787
788 static inline int lockdevice(int attempt)
789 {
790 int fd=-1;
791 char buf[64];
792 ssize_t got;
793 int delay=0;
794 char empty=0;
795 pid_t pid;
796
797         d2("lockdevice(), locked=%d\n",locked);
798         if (locked) return (++locked);
799         for (;;) {
800                 if (fd!=-1) lockclose(fd);
801 recheck:
802                 if (delay) sleep(delay);
803                 delay=DEVLOCK_PERIOD;
804                 if (verbose>=3) error(_(".Checking the lockfile \"%s\".."),lockreal);
805                 if ((fd=open(lockreal,O_RDONLY))==-1) break;
806                 if ((got=read(fd,buf,sizeof(buf)-1))<=0) {
807 isempty:
808                         if (empty>=DEVLOCK_MAXEMPTY) {
809                                 error(_(".Lockfile \"%s\" is still not valid, removing it"),lockreal);
810                                 goto remove;
811                                 }
812                         empty++;
813                         continue;
814                         }
815                 assert(got<sizeof(buf));
816                 buf[got]='\0';
817                 if (sscanf(buf,"%d",&pid)!=1) goto isempty;
818                 empty=0;
819                 errno=0;
820                 if (kill(pid,0) && errno!=ESRCH && errno!=EPERM)
821                         error(_("^Error during checking consciousness of PID %d"),pid);
822                 if (errno!=ESRCH) {
823                         if (attempt) return(0);
824                         continue;
825                         }
826                 error(_(".Lockfile \"%s\" is stale (PID %d), removing it"),lockreal,pid);
827 remove:
828                 lockclose(fd);
829                 if (unlink(lockreal))
830                         error(_("^Error removing foreign lockfile \"%s\""),lockreal);
831                 break;
832                 }
833         errno=0;
834         if ((fd=open(lockreal,O_WRONLY|O_CREAT|O_EXCL,0644))==-1) {
835                 if (errno==EEXIST) goto recheck;
836                 error(_("^!Error creating lockfile \"%s\""),lockreal);
837                 }
838         locked=1;
839         got=VARPRINTF(buf,"%010d\n",getpid()); assert(got==11);
840         if (write(fd,buf,got)!=got)
841                 error(_("^!Error writing data to lockfile \"%s\""),lockreal);
842         lockclose(fd);
843         return((locked=1));
844 }
845
846 static char wasalarm=0;
847 static void sigalarm(int signo);
848
849 static void setalarm(void)
850 {
851         signal(SIGALRM,(RETSIGTYPE (*)(int))sigalarm);
852 #ifdef HAVE_SIGINTERRUPT
853         siginterrupt(SIGALRM,1);
854 #endif
855 }
856
857 static void sigalarm(int signo)
858 {
859         setalarm();
860         wasalarm=1;
861         if (verbose>=1) error(_("Timed out"));
862 }
863
864 static void blocking(char yes)
865 {
866 static char state=-1;
867         if (state==yes) return;
868         if (fcntl(devfd,F_SETFL,(yes?0:O_NONBLOCK)))
869                 error(_("^!fcntl() on device for %s mode"),(yes?_("blocking"):_("non-blocking")));
870         state=yes;
871 }
872
873 static const char *record,*recordend;
874 static char *catchdata;
875 static size_t catchdatal,catchdatasiz;
876
877 static const char *reform(const char *s,int slot);
878 static void catched(const char *end,char edata)
879 {
880 size_t len;
881 const char *p;
882
883         if (!record) return;
884         assert(end>=record);
885         p=memchr(record,edata,end-record);
886         if ((len=(p?p:end)-record)) {
887                 if (!catchdata)
888                         chk(catchdata=malloc((catchdatasiz=LINE_MAX)));
889                 if (catchdatal+len>catchdatasiz)
890                         chk(catchdata=realloc(catchdata,
891                                 (catchdatasiz=(catchdatal+len)*2)));
892                 memcpy(catchdata+catchdatal,record,len);
893                 catchdatal+=len;
894                 }
895         record   =(p?NULL:end);
896         recordend=(p?p   :end);
897         assert(catchdatal<=catchdatasiz);
898 }
899
900 static int retrycnt=0;
901 static void retrying(void)
902 {
903         if (maxretryn>=0 && ++retrycnt>=maxretryn) error(_("!Maximum command retry count (%ld) exceeded"),maxretryn);
904         if (verbose>=2) error(_(".Retrying phase, %d out of %ld.."),retrycnt,maxretryn);
905 }
906
907 static const char *reform(const char *s,int slot)
908 {
909 static struct formslot {
910         char *s;
911         size_t l;
912         } arr[3];
913 char c,*d;
914 struct formslot *fs;
915
916         assert(slot>=0 && slot<NELEM(arr));
917         if (!s) return(_("<unset>"));
918         if (!(fs=&arr[slot])->s)
919                 chk(fs->s=malloc(fs->l=LINE_MAX));
920         d=fs->s;
921         for (*d++='"';(c=*s);s++) {
922                 if (d>=fs->s+fs->l-10) {
923 off_t o=d-fs->s;
924                         chk(fs->s=realloc(fs->s,(fs->l=(fs->l?fs->l*2:LINE_MAX))));
925                         d=fs->s+o;
926                         }
927                 if (c!='\\' && c!='"' && isprint(c)) { *d++=c; continue; }
928                 *d++='\\';
929                 switch (c) {
930                         case '\\': case '"': *d++=c; break;
931                         case '\n': *d++='n'; break;
932                         case '\r': *d++='r'; break;
933                         case '\032': *d++='Z'; break;
934                         case '\033': *d++='e'; break;
935                         default:
936                                 d+=sprintf(d,"x%02X",(unsigned char)c);
937                                 break;
938                         }
939                 }
940         *d++='"'; *d='\0';
941         return(fs->s);
942 }
943
944 static char devcmd_empty_return='\0'; /* returned as catch when only newlines found */
945
946 static char *devcmd(const char *term,const char *catch,const char *send,...) ATTR_PRINTFORMAT(3,4);
947 static char *devcmd(const char *term,const char *catch,const char *send,...)
948 {
949 size_t l,bufl2,terml,catchl=0 /* GCC happiness */,fragl,offs;
950 static char buf[LINE_MAX];
951 static size_t bufl;
952 ssize_t got;
953 char *hit,*s;
954 va_list ap;
955 char errout,extend,catch_any,edata;
956 long alarmtime;
957 const char *osend;
958 static const char emptystring[]="";
959 size_t discard;
960
961         if (!term) term="\nOK\n";
962         if (!strcmp(send," ")) send=NULL; /* GCC formatstring-check workaround */
963         if (verbose>=2) error(_(".devcmd(sendfmt=%s,term=%s,catch=%s)"),
964                 reform(send,0),reform(term,1),reform(catch,2));
965         if (!(osend=send)) send="";
966         if ((catch_any=(catch && !strcmp(catch,"@")))) catch=NULL;
967         if ((errout=(*send=='!'))) send++;
968         errout|=(maxretryn==-1);
969         if ((extend=(*send=='~'))) send++;
970         alarmtime=readtimen*(extend?EXT_READTIME:1);
971         buf[bufl]='\0'; /* for d8() below */
972         d8("devcmd(), alarmtime=%ld, errout=%d, extend=%d, catch_any=%d, osend=%p, bufl=%d, buf: %s\n",
973                 alarmtime,errout,extend,catch_any,osend,bufl,reform(buf,0));
974         assert(!catch || !strchr(catch,'\r')); /* we are no longer supporting 'noconvcr'! */
975         assert(!term  || !strchr(term ,'\r'));
976         if (0) {
977 err:
978                 alarm(0);
979                 if (errout) return(NULL);
980                 retrying();
981                 }
982         catchdatal=0;
983         if (osend) {
984                 bufl=0;
985                 d1("Resetting bufl.\n");
986                 va_start(ap,send);
987                 l=VARVPRINTF(buf,send,ap); bufl=l+(!!osend);
988                 va_end(ap);
989                 if (bufl>=sizeof(buf)-1) error(_("!Command too big (%d>%d)"),bufl,sizeof(buf)-1);
990                 if (verbose>=2) error(_(".devcmd formatted send=%s%s"),reform(buf,0),(osend?"+\"\\r\"":""));
991                 if (osend) buf[l]='\r';
992                 for (offs=0,got=0;offs<bufl;offs++) {
993                         alarm(MAXSENDTIME);
994                         usleep((offs?chartimen:cmdtimen)*1000);
995                         if (!offs && tcflush(devfd,TCIOFLUSH))
996                                 error(_("^Error flushing I/O queue of device"));
997                         if (write(devfd,buf+offs,1)!=1) break;
998                         got++;
999                         if (tcdrain(devfd))
1000                                 error(_("^Error forcing output of char at pos %d of cmd %s"),offs,reform(buf,0));
1001                         }
1002                 alarm(0);
1003                 if (got!=bufl) {
1004                         error(_("^Wrote only %d of %d bytes of command"),got,bufl);
1005                         goto err;
1006                         }
1007                 }
1008
1009         if (!(terml=strlen(term))) {
1010                 assert(!catch); assert(!catch_any);
1011                 return(NULL);
1012                 }
1013         if (catch) {
1014                 catchl=strlen(catch);
1015                 fragl=MAX(terml,catchl);
1016                 }
1017         else fragl=terml;
1018         fragl=MAX(fragl,MAX(strlen(ERROR_SUBSTR1),strlen(ERROR_SUBSTR2)));
1019         record=recordend=NULL;
1020         wasalarm=0;
1021         alarm(alarmtime);
1022         edata='\n';
1023         if (!osend) {
1024                 /* "bufl" important */
1025                 goto skipread;
1026                 }
1027         for (;;) {
1028                 blocking(0);
1029                 errno=0;
1030                 got=read(devfd,buf+bufl,sizeof(buf)-1-bufl);
1031                 if (got==-1 && errno==EAGAIN) {
1032                         blocking(1);
1033                         errno=0;
1034                         got=read(devfd,buf+bufl,1);
1035                         }
1036                 if (got<=0) {
1037                         buf[bufl]='\0'; /* for strspn() below */
1038                         if (!strcmp(term,"\n") && catch /* written to trap on 'devcmd("\n","+CMT:"," ")' */
1039                             && bufl==strspn(buf,"\n" /* accept */)) { /* only newlines found */
1040                                 if (verbose>=2)
1041                                         error(_(".Blank (%d newlines) input read, ignoring it"),bufl);
1042                                 bufl=0; /* discard newlines */
1043                                 return(&devcmd_empty_return);
1044                                 }
1045                         if (wasalarm) error(_("Maximum response timeout (%lds) exceeded"),alarmtime);
1046                         else error(_("^Couldn't read device data (ret=%d)"),got);
1047                         goto err;
1048                         }
1049                 bufl2=bufl+got;
1050                 buf[bufl2]='\0';
1051                 s=buf+bufl;
1052                 while (buf+bufl2>s && (s=memchr(s,'\0',buf+bufl2-s))) *s++=REPL_NULLCHAR;
1053                 if (verbose>=3)
1054                         error(_("\nGot chunk of data from device: %s"),reform(buf+bufl,0));
1055                 /* convert CR */ {
1056                         s=buf+bufl;
1057                         while (buf+bufl2>s && (s=memchr(s,'\r',buf+bufl2-s))) *s++='\n';
1058                         }
1059                 bufl=bufl2;
1060 skipread:
1061                 catched(buf+bufl,edata); assert(!record || record==buf+bufl);
1062                 assert(bufl<sizeof(buf)-1);
1063                 buf[bufl]='\0';
1064                 assert(strlen(buf)==bufl);
1065                 /* d3(">%s|%s<\n",buf,term); */
1066                 if (strstr(buf,ERROR_SUBSTR1) || strstr(buf,ERROR_SUBSTR2)) {
1067                         error(_("Found ERROR response on command %s"),reform(send,0));
1068                         goto err;
1069                         }
1070 /* "record" may get NULLed here after successful 'catch'
1071  * but "recordend" will never be NULLed
1072  */
1073                 if (catch && !recordend && bufl>=catchl && (hit=strstr(buf,catch))) {
1074                         record=hit+catchl;
1075                         catched(buf+bufl,edata); assert(!record || record==buf+bufl);
1076                         }
1077                 if (catch_any && !recordend && buf[discard=strspn(buf,"\n" /* accept */)]) {
1078                         record=buf+discard;
1079                         catched(buf+bufl,edata); assert(!record || record==buf+bufl);
1080                         }
1081                 if (((!catch && !catch_any) || catchdatal) && bufl>= terml
1082                     && (hit=strstr((recordend?recordend:buf),term))) {
1083                         memmove(buf,hit+terml,(bufl2=(buf+bufl)-(hit+terml))); bufl=bufl2;
1084                         break;
1085                         }
1086                 if (bufl<fragl) continue;
1087                 memmove(buf,buf+bufl-(fragl-1),(bufl2=fragl-1));
1088                 if (record   ) record-=bufl-bufl2;
1089                 if (recordend) recordend-=bufl-bufl2;
1090                 bufl=bufl2;
1091                 }
1092         alarm(0);
1093         if (!catchdatal) {
1094                 assert(!catch && !catch_any);
1095                 return("");
1096                 }
1097         assert(!!catch || catch_any);
1098         record=emptystring;
1099         catched(record+1,edata);
1100         if (verbose>=2) error(_(".Returning data %s for cmd %s"),reform(catchdata,0),reform(send,1));
1101         return(catchdata);
1102 }
1103
1104 static int prepaddr(unsigned char *d,const char *addr)
1105 {
1106 int tot=0;
1107 char flip=0,plus;
1108 unsigned char n;
1109
1110         if ((plus=(*addr=='+'))) addr++;
1111         *++d=(plus?ADDR_INT:ADDR_NAT);
1112         while (*addr) {
1113                 if (*addr<'0' || *addr>'9')
1114                         error(_("!Error during conversion of number at: %s"),addr);
1115                 tot++;
1116                 n=(*addr++)-'0';
1117                 if ((flip=!flip)) *++d=0xF0|n;
1118                 else *d=(*d&0x0F)|(n<<4U);
1119                 }
1120         return(tot);
1121 }
1122
1123 static char *finalsmsc;
1124 #define SMSCBINSIZE (1+1+(MAXNUMLEN+1)/2)
1125 static char pdusmsc[SMSCBINSIZE*2+1];
1126
1127 static inline char tohex(unsigned char x)
1128 {
1129         x&=0x0F;
1130         if (x<10) return(x   +'0');
1131                   return(x-10+'A');
1132 }
1133
1134 static inline void textconv(char *d,unsigned char *s,size_t len)
1135 {
1136         while (len--) {
1137                 *d++=tohex(*s>>4U);
1138                 *d++=tohex(*s    );
1139                 s++;
1140                 }
1141         *d='\0';
1142 }
1143
1144 static inline void smscset(void)
1145 {
1146 char *s,*t,*e,*serr;
1147 unsigned char bin[2+(MAXNUMLEN+1)/2];
1148
1149         if (smsc) devcmd(NULL,NULL,"\r\nAT+CSCA=\"%s\"",smsc);
1150         s=devcmd(NULL,"\n+CSCA:","\r\nAT+CSCA?");
1151         while (isspace(*s)) s++;
1152         if (!*s || !strcmp(s,"EMPTY"))
1153                 error(_("!No SMSC set in mobile station found, please use option \"-s\""));
1154         if (verbose>=1) error(_("\nFound default SMSC in mobile: %s"),s);
1155         if (*s++!='"') error(_("!No left-quote found in: %s"),s);
1156         if (!(t=strrchr(s,'"'))) error(_("!No right-quote found in: %s"),s);
1157         if (s==t)
1158                 error(_("!No SMS set in mobile station found, please use option \"-s\""));
1159         e=t++;
1160         while (isspace(*t)) t++;
1161         if (*t) {
1162 long l;
1163
1164                 if (*t++!=',') error(_("!No comma found after quotes in: %s"),s);
1165                 while (isspace(*t)) t++;
1166                 l=strtol(t,&serr,10);
1167                 if ((l!=ADDR_NAT && l!=ADDR_INT) || (serr && *serr))
1168                         error(_("!Type parse error in: %s"),s);
1169                 if (l==ADDR_INT && *s!='+') *--s='+';
1170                 }
1171         *e='\0';
1172         if (verbose>=2) error(_("\nDecoded SMSC address: %s"),s);
1173         if (!NEED_PDUSMSC()) return;
1174         chk(finalsmsc=strdup(s));
1175         bin[0]=1+(prepaddr(bin,finalsmsc)+1)/2;
1176         textconv(pdusmsc,bin,bin[0]+1);
1177 }
1178
1179 static inline unsigned char charconv_send(char c,size_t offs)
1180 {
1181         switch (c) {
1182                 case '@': return(0);
1183                 case '$': return(2);
1184                 case 0: assert(0);
1185                 default:
1186                         return(c&0x7F);
1187                 }
1188 #if 0
1189         if ((c>='A' && c<='Z') || (c>='a' && c<='z') || (c>='0' && c<='9')) return(c);
1190         error(_("Can't convert character '%c' (0x%02X) at offs %d (0-based), substituted '?'"),
1191                 c,(unsigned char)c,offs);
1192         return('?');
1193 #endif
1194 }
1195
1196 static inline unsigned char charconv_recv(char c,size_t offs)
1197 { /* FIXME: unify with charconv_send() */
1198         switch (c) {
1199                 case 0: return('@');
1200                 case 2: return('$');
1201                 default:
1202                         return(c);
1203                 }
1204 /* strict checking not done, see charconv_send */
1205 }
1206
1207 /* Logo format shamelessly stolen from GNokii-0.3.0: http://www.gnokii.org/
1208  * Beware - Nokia Smart Messaging specification 1.0.0 and 2.0.0 is incompatible
1209  * with Nokia current product line implementation
1210  * http://www.forum.nokia.com/developers/smartmsg/download/ssm2_0_0.pdf
1211  */
1212
1213 static char *pdudata;
1214 static struct hexdata {
1215         struct hexdata *next;
1216         char data[140*2+1];
1217         } *hexdata,**hexdatatail=&hexdata;
1218
1219 static void nokiaprep(unsigned char *bin,size_t w)
1220 {
1221 struct hexdata *hd;
1222         assert(w<=140);
1223         chk(hd=malloc(sizeof(*hd)));
1224         *hexdatatail=hd;
1225         hd->next=NULL;
1226         hexdatatail=&hd->next;
1227         textconv(hd->data,bin,w);
1228         if (verbose>=2) error(_("\nWill send hexdata: %s"),hd->data);
1229 }
1230
1231 static inline void logoread(void)
1232 {
1233 FILE *f;
1234 char buf[32+140*8+1];
1235 unsigned char bin[140]={
1236         0x06, /* UDH length */
1237         0x05, /* IEI */
1238         0x04, /* IEDL */
1239         0x15, 0x83, /* dest port (group gfx) */
1240         0x00, 0x00  /* src port (unused) */
1241         };
1242 size_t got,r=0 /* GCC happiness */,w;
1243 ssize_t chars,bits;
1244 char gsmnetf[10];
1245 int sizex,sizey,bit;
1246
1247 #define WORD(n) (((unsigned char)buf[(n)])|(((unsigned char)buf[(n)+1])<<8))
1248
1249         if (!(f=fopen(logoname,"rb")))
1250                 error(_("^!Cannot open logo file \"%s\" for r/o"),logoname);
1251         got=fread(buf,1,sizeof(buf),f);
1252         chkfclose(f,logoname);
1253              if (got>=20 && !memcmp(buf,"NOL",4)) {
1254                 VARPRINTF2(gsmnetf,"%03.3u%02.2u",WORD(6),WORD(8));
1255                 assert(strlen(gsmnetf)==5);
1256                 r=10;
1257                 if (verbose>=1) error(_(".Reading NOL file \"%s\", GSMnet \"%s\", word@4=%d.."),
1258                         logoname,gsmnetf,WORD(4));
1259                 }
1260         else if (got>=16 && !memcmp(buf,"NGG",4)) {
1261                 r=6;
1262                 if (verbose>=1) error(_(".Reading NGG file \"%s\", word@4=%d.."),
1263                         logoname,WORD(4));
1264                 }
1265         else error(_("!Unknown file format of logo file \"%s\""),logoname);
1266         if (gsmnet && !strtrycasecmp(gsmnet,WORD_NET)) {
1267                 if (!*gsmnetf) error(_("!NOL network code detection requested but NOL file not loaded, please specify network code"));
1268                 gsmnet=gsmnetf;
1269                 }
1270         if (!gsmnet || !strtrycasecmp(gsmnet,WORD_GROUP) || !*gsmnet) {
1271                 error(_("\nSending logo as: group graphics"));
1272                 gsmnet=NULL;
1273                 }
1274         else {
1275                 error(_("\nSending logo as: operator logo for \"%s\""),gsmnet);
1276                 bin[4]=0x82; /* dest port 0x1582 */
1277                 }
1278         
1279         sizex=WORD(r); sizey=WORD(r+2);
1280         if (verbose>=2) error(_(".Magic words: @+4=%d, @+6=%d, @+8=%d"),
1281                         WORD(r+4),WORD(r+6),WORD(r+8));
1282         r+=10;
1283         if (sizex<1 || sizex>255
1284          || sizey<1 || sizey>255) error(_("!Invalid size: %dx%d"),sizex,sizey);
1285         chars=((bits=sizex*sizey)+7)/8;
1286         if (r+bits>got) error(_("!Logo file \"%s\" too short - actual=%d, need(%dx%d)=%d"),
1287                 logoname,got,sizex,sizey,r+chars);
1288         else if (r+bits<got)
1289                 if (verbose>=1) error(_("Ignoring trailing garbage in \"%s\", used only %d bytes"),logoname,r+bits);
1290         if ((got=(7+(gsmnet?3:0)+4+chars))>140)
1291                 error(_("!SMS size would be %d bytes but 140 is maximum"),got);
1292         w=7;
1293         if (gsmnet) {
1294                 bin[w++]=((gsmnet[1]&0x0F)<<4)|(gsmnet[0]&0x0F);
1295                 bin[w++]=0xF0                 |(gsmnet[2]&0x0F);
1296                 bin[w++]=((gsmnet[4]&0x0F)<<4)|(gsmnet[3]&0x0F);
1297                 }
1298         bin[w++]=0x00; /* RFU by Nokia */
1299         bin[w++]=sizex; bin[w++]=sizey;
1300         bin[w++]=0x01; /* one B/W plane */
1301         while (chars--) {
1302                 bin[w]=0;
1303                 for (bit=0x80;(bits>0) && (bit>0);bits--,bit>>=1) {
1304                         if (buf[r]!='0' && buf[r]!='1')
1305                                 error(_("!Invalid character (neither '0' nor '1') in logo file \"%s\" at offset 0x%X"),
1306                                         logoname,r);
1307                         if (buf[r++]=='1') bin[w]|=bit;
1308                         }
1309                 w++;
1310                 }
1311         assert(chars==-1); assert(bits==0); assert(w==got);
1312         nokiaprep(bin,w);
1313 #undef WORD
1314 }
1315
1316 static inline void ringread(void)
1317 {
1318 FILE *f;
1319 unsigned char bin1[140]={
1320         6, /* UDH length */
1321         0x05, /* IEI */
1322         0x04, /* IEDL */
1323         0x15, 0x81, /* dest port (ring tones) */
1324         0x15, 0x81  /* src port (unused) */
1325 #define BIN1_PAYLOAD (140-7)
1326         };
1327 unsigned char binn[140]={
1328         11, /* UDH length */
1329         0x05, /* IEI */
1330         0x04, /* IEDL */
1331         0x15, 0x81, /* dest port (ring tones) */
1332         0x15, 0x81, /* src port (unused) */
1333         0x00, 0x03, /* multipart */
1334         /* 0x??, unique serial ID */
1335         /* 0x??, total messages */
1336         /* 0x??, message number (# from 1) */
1337 #define BINN_PAYLOAD (140-12)
1338         };
1339 size_t got,want;
1340 int totn,fragn;
1341 long size;
1342
1343 #define WORD(n) (((unsigned char)buf[(n)])|(((unsigned char)buf[(n)+1])<<8))
1344
1345         if (!(f=fopen(ringname,"rb")))
1346                 error(_("^!Cannot open ring file \"%s\" for r/o"),ringname);
1347         if ((size=getfilesize(f,ringname))==-1)
1348                 error(_("!File size determination is essential to continue operation"));
1349         if (size<0x103)
1350                 error(_("!File \"%s\" size %ld too small (must >=0x103)! Is it .000 file?"),
1351                         ringname,size);
1352         if (fseek(f,0x100,SEEK_SET))
1353                 error(_("^Seeking error on \"%s\", ignoring"),ringname);
1354         size-=0x100;
1355         if (size<=BIN1_PAYLOAD) {
1356                 if ((got=fread(bin1+7,1,size,f))!=size)
1357                         error(_("^Read error on \"%s\", wanted %ld, got %d"),ringname,size,got);
1358                 error(_("\nSending ring tone \"%s\" as single SMS (size %ld, max %d)"),
1359                         ringname,size,BIN1_PAYLOAD);
1360                 nokiaprep(bin1,7+size);
1361                 }
1362         else {
1363                 totn=(size+BINN_PAYLOAD-1)/BINN_PAYLOAD;
1364                 if (totn>0xFF)
1365                         error(_("!File size %ld too large even for multi-SMS ring upload (max=%d)"),
1366                                 size,BINN_PAYLOAD*0xFF);
1367                 binn[10]=totn;
1368                 if (verbose>=1)
1369                         error(_("\nSending ring tone \"%s\" as %d multi-SMSes (size %ld, max %d, frag %d)"),
1370                                 ringname,totn,size,BIN1_PAYLOAD,BINN_PAYLOAD);
1371                 binn[9]=time(NULL)&0x100; /* rand() would be better but it is a compatibility pain */
1372                 if (verbose>=1)
1373                         error(_("\nUsing unique multi-SMS ID 0x%02X"),(unsigned)binn[9]);
1374                 for (fragn=1;fragn<=totn;fragn++) {
1375                         binn[11]=fragn;
1376                         want=MIN(size,BINN_PAYLOAD);
1377                         if ((got=fread(binn+12,1,want,f))!=want)
1378                                 error(_("^Read error on \"%s\", wanted %d, got %d"),ringname,want,got);
1379                         nokiaprep(binn,12+want);
1380                         size-=want;
1381                         }
1382                 }
1383         chkfclose(f,ringname);
1384 #undef WORD
1385 }
1386
1387 static inline void genpdu(void)
1388 {
1389 static unsigned char pdu[64+MAXNUMLEN/2+(MAXBODYLEN*7)/8];
1390 unsigned char *d=pdu;
1391 int i;
1392 char inb=0,outb=0,xb,*bodyr;
1393 unsigned char inreg=0 /* GCC happiness */;
1394 size_t offs=0;
1395
1396         *d++=PDU_TYPE;
1397         *d++=PDU_MR;
1398         i=prepaddr(d,phone);
1399         *d=i; d+=1+1+(i+1)/2;
1400         *d++=PDU_PID;
1401         *d++=PDU_DCS;
1402         *d++=PDU_VP;
1403         if (bodylen>MAXBODYLEN) {
1404                 error(_("Body too large (%d>%d), cut"),bodylen,MAXBODYLEN);
1405                 body[(bodylen=MAXBODYLEN)]='\0';
1406                 }
1407         bodyr=body;
1408         *d=bodylen;
1409         assert(d<pdu+sizeof(pdu));
1410         while (bodylen || inb) {
1411                 if (!inb) {
1412                         assert(bodylen>0); assert(!!*body);
1413                         inreg=charconv_send(*bodyr++,offs++);
1414                         bodylen--;
1415                         inb=7;
1416                         }
1417                 if (!outb) {
1418                         *++d=0x00;
1419                         outb=8;
1420                         }
1421                 xb=MIN(inb,outb);
1422 #if 0
1423                 d4("inb=%d,outb=%d,xb=%d\n",inb,outb,xb);
1424 #endif
1425                 *d|=((inreg>>(unsigned)(7-inb))&((1<<xb)-1))<<(unsigned)(8-outb);
1426                 inb-=xb; outb-=xb;
1427                 }
1428         d++;
1429         assert(d<pdu+sizeof(pdu));
1430         pdudata=malloc(2*(d-pdu)+1);
1431         textconv(pdudata,pdu,d-pdu);
1432 }
1433
1434 static inline void preparebody(void)
1435 {
1436 FILE *fin=NULL /* GCC happiness */;
1437 char *finame;
1438
1439         if (body && readbody) {
1440                 finame=body;
1441                 body=NULL;
1442                 }
1443         else {
1444                 finame=NULL;
1445                 fin=stdin;
1446                 }
1447         if (body) return;
1448         readbody=0;
1449         if (!finame) {
1450                 if (verbose>=1)
1451                         error(_("\nPlease enter the SMS text body, end with EOF (ctrl-D):"));
1452                 }
1453         else {
1454                 if (!(fin=fopen(finame,"rt")))
1455                         error(_("^!Can't open data file \"%s\" for r/o"),finame);
1456                 }
1457         chk(body=malloc(BODYLOAD));
1458         bodylen=fread(body,1,BODYLOAD,fin);
1459         if (bodylen==-1)
1460                 error(_("^!Error reading stream \"%s\""),(finame?finame:_("<stdin>")));
1461         if (finame) {
1462                 chkfclose(fin,finame);
1463                 free(finame);
1464                 }
1465 }
1466
1467 static int datawait(char immed)
1468 {
1469 int i;
1470 #ifdef HAVE_POLL
1471 struct pollfd ufd;
1472 #else /* HAVE_POLL */
1473 fd_set rfds,xfds;
1474 #endif /* HAVE_POLL */
1475
1476         assert(devfd>=0);
1477 retry:
1478         if (!immed && verbose>=2)
1479                 error(_(".Waiting for device incoming data.."));
1480 #ifdef HAVE_POLL
1481         ufd.fd=devfd;
1482         ufd.events=POLLIN;
1483         ufd.revents=0;
1484         errno=0;
1485         i=poll(&ufd,1,(immed?0:-1));
1486 #else /* HAVE_POLL */
1487 #ifdef HAVE_FD_SETSIZE
1488         if (devfd>=FD_SETSIZE)
1489                 error(_("!Device file descriptor %d can't fit in select() FD_SETSIZE (%d)"),
1490                         devfd,FD_SETSIZE);
1491 #endif /* HAVE_FD_SETSIZE */
1492         FD_ZERO(&rfds); FD_SET(devfd,&rfds);
1493         FD_ZERO(&xfds); FD_SET(devfd,&xfds);
1494         errno=0;
1495         i=select(devfd+1,&rfds,NULL,&xfds,NULL);
1496 #endif /* HAVE_POLL */
1497         if (immed && i==0) return(0);
1498         if (i==-1 && errno==EINTR)
1499                 goto retry; /* silent retry, for example SIGCHLD could occur */
1500         if (i!=1)
1501                 error(_("^Failed (retval %d) while waiting for data, ignoring"),i);
1502
1503 #ifdef HAVE_POLL
1504         if (ufd.revents&(POLLERR|POLLHUP))
1505 #else /* HAVE_POLL */
1506         if (FD_ISSET(devfd,&xfds))
1507 #endif /* HAVE_POLL */
1508                 error(_("^Error while waiting for data, ignoring"));
1509
1510 #ifdef HAVE_POLL
1511         if (!(ufd.revents&POLLIN))
1512 #else /* HAVE_POLL */
1513         if (!(FD_ISSET(devfd,&rfds)))
1514 #endif /* HAVE_POLL */
1515                 {
1516                 error(_("^No data input after waited for data, retrying"));
1517                 goto retry;
1518                 }
1519         return(1);
1520 }
1521
1522 static char *check_format(const char *fmt,const char *string)
1523 {
1524 static char err[LINE_MAX],sub[50];
1525 char cf,cs;
1526 const char *sf,*ss,*subp;
1527
1528         for (sf=fmt,ss=string;(cf=*sf) && (cs=*ss);sf++,ss++) {
1529                 subp=NULL;
1530                 switch (cf) {
1531                         case '?':
1532                                 break;
1533                         case '9':
1534                                 if (isdigit(cs)) break;
1535                                 subp=_("digit");
1536                                 break;
1537                         case '+':
1538                                 if (cs=='+' || cs=='-') break;
1539                                 subp=_("+/- sign");
1540                                 break;
1541                         default:
1542                                 if (cf==cs) break;
1543                                 VARPRINTF(sub,"'%c'",cf); subp=sub;
1544                         }
1545                 if (!subp) continue;
1546                 VARPRINTF5(err,_("Expected %s, found '%c' at pos %d of string [%s], formatstring [%s]"),
1547                         subp,cs,ss-string,string,fmt);
1548                 return(err);
1549                 }
1550         if (*sf) {
1551                 VARPRINTF2(err,_("String too short for format, string [%s], formatstring [%s]"),
1552                         string,fmt);
1553                 return(err);
1554                 }
1555         if (*ss) {
1556                 VARPRINTF2(err,_("Trailing garbage in string [%s], formatstring [%s]"),
1557                         string,fmt);
1558                 return(err);
1559                 }
1560         return(NULL);
1561 }
1562
1563 static char *receive_number,*receive_smsc;
1564 static time_t receive_time;
1565
1566 struct tm tm;
1567 static const struct {
1568         off_t strpos;
1569         off_t tmpos;
1570         int min,max;
1571         const char *name;
1572         } timeparse[]={
1573 #define TP_ENT(a,b,c,d,e) { a,offsetof(struct tm,b),c,d,e }
1574                 TP_ENT( 3,tm_year,0,99,N_("year")),
1575                 TP_ENT( 6,tm_mon ,1,12,N_("month")),
1576                 TP_ENT( 9,tm_mday,1,31,N_("day of month")),
1577                 TP_ENT(12,tm_hour,0,23,N_("hour")),
1578                 TP_ENT(15,tm_min ,0,59,N_("minute")),
1579                 TP_ENT(18,tm_sec ,0,59,N_("second")),
1580                 /* Time zone ignored */
1581                 };
1582 #define GETTIME(i) (*(int *)(((char *)&tm)+timeparse[(i)].tmpos))
1583
1584 static void maketime(const char *string)
1585 {
1586 int val;
1587 int i;
1588
1589         for (i=0;i<NELEM(timeparse);i++) {
1590                 val=GETTIME(i);
1591                 if (val<timeparse[i].min || val>timeparse[i].max) {
1592                         error(_("Weird value of %s, is %d but expected %d..%d, setting to %d"),
1593                                 _(timeparse[i].name),val,timeparse[i].min,timeparse[i].max,timeparse[i].min);
1594                         GETTIME(i)=timeparse[i].min;
1595                         }
1596                 }
1597         if (tm.tm_year<70) tm.tm_year+=100;
1598         tm.tm_mon--;
1599         d7("mktime(y%dm%dd%dh%dm%ds%d)\n",
1600                 tm.tm_year,tm.tm_mon,tm.tm_mday,tm.tm_hour,tm.tm_min,tm.tm_sec);
1601         tm.tm_isdst=-1; /* "timezone" info not available */
1602         if ((receive_time=mktime(&tm))==-1)
1603                 error(_("^mktime(3) failed for %s"),string);
1604 }
1605
1606 /* +CMT: "+420602431329",,"99/10/25,03:21:03-00" */
1607 static int receive_headerparse(char *buf)
1608 {
1609 char *s,*s1,*err;
1610 int i;
1611
1612 #define DIGIT2ASC(s) (((s)[0]-'0')*10+((s)[1]-'0'))
1613
1614         for (s=buf;*s==' ';s++);
1615         if (*s++!='"') {
1616                 error(_("Cannot find initial '\"' in CMT header: %s"),buf);
1617                 return(0);
1618                 }
1619         for (s1=s;*s && *s!='"';s++);
1620         if (!*s) {
1621                 error(_("Only one '\"' found in CMT header: %s"),buf);
1622                 return(0);
1623                 }
1624         free(receive_smsc); receive_smsc=NULL;
1625         free(receive_number);
1626         chk(receive_number=malloc(s-s1+1));
1627         memcpy(receive_number,s1,s-s1); receive_number[s-s1]='\0';
1628         s++;
1629         if ((err=check_phone(receive_number)) ||
1630             (err=check_format(",,\"99/99/99,99:99:99+99\"",s))) {
1631                 error(_("%s in CMT header: %s"),err,buf);
1632                 return(0);
1633                 }
1634         memset(&tm,0,sizeof(tm)); /* may be redundant */
1635         for (i=0;i<NELEM(timeparse);i++)
1636                 GETTIME(i)=DIGIT2ASC(s+timeparse[i].strpos);
1637         maketime(s+2);
1638         return(1);
1639 #undef DIGIT2ASC
1640 }
1641
1642 static void signal_chld(int signo)
1643 {
1644 int status;
1645 pid_t pid;
1646
1647         signal(SIGCHLD,(RETSIGTYPE (*)(int))signal_chld);
1648         /* we don't care about siginterrupt(3) as it doesn't matter how it is set */
1649
1650         d2("signal_chld: signo=%d\n",signo);
1651         while (0<(pid=waitpid(-1 /* ANY process */,&status,WNOHANG /* options */))) {
1652                 if (verbose>=2)
1653                         error(_(".Child process w/PID %d has exited, %s, status=%d"),
1654                                         pid,(WIFEXITED(status)? _("normally") : _("abnormally")),(WIFEXITED(status) ? WEXITSTATUS(status) : -1));
1655                 }
1656 }
1657
1658 static void receive_text(char *bodyline)
1659 {
1660 char *buf,*s,*s1,*s2,*s3;
1661 pid_t pid;
1662 char tbuf[32];
1663 int i;
1664 FILE *f;
1665
1666         d2("receive_text: %s\n",bodyline);
1667         signal(SIGCHLD,(RETSIGTYPE (*)(int))signal_chld);
1668 #if RECEIVE_TEST
1669         pid=0;
1670 #else
1671         pid=fork();
1672 #endif
1673         if (pid>0) {
1674                 if (verbose>=2)
1675                         error(_(".Spawned child receive-SMS process w/PID %d"),pid);
1676                 return; /* parent context */
1677                 }
1678         if (pid==-1) {
1679                 error(_("Can't fork(2), process spawning may block receive"));
1680                 }
1681         else { /* child process */
1682                 dis_cleanup=1;
1683                 }
1684         for (s=body;*s;) {
1685                 s1=s;
1686                 do {
1687                         s1=strchr(s1+(s1!=s),'%');
1688                         } while (s1 && s1[1]!='p' && s1[1]!='T' && s1[1]!='t' && s1[1]!='s');
1689                 if (!s1) {
1690                         pushargstack_one(s,0);
1691                         break;
1692                         }
1693                 *s1='\0';
1694                 pushargstack_one(s,0);
1695                 *s1++='%';
1696                 s=s1;
1697                 switch (*s++) {
1698                         case 'p':
1699                                 pushargstack_one(receive_number,0);
1700                                 break;
1701                         case 'T':
1702                                 VARPRINTF(tbuf,"%ld",receive_time);
1703                                 pushargstack_one(tbuf,0);
1704                                 break;
1705                         case 't':
1706                                 if (receive_time==-1) break;
1707                                 if (!(s2=ctime(&receive_time))) {
1708                                         error(_("Failing ctime(3), ignoring substitution"));
1709                                         break;
1710                                         }
1711                                 if ((s3=strchr(s2,'\n'))) *s3='\0';
1712                                 pushargstack_one(s2,0);
1713                                 break;
1714                         case 's':
1715                                 if (receive_smsc) pushargstack_one(receive_smsc,0);
1716                                 break;
1717                         default: assert(0);
1718                         }
1719                 }
1720         buf=glueargstack(NULL,NULL); assert(buf);
1721         if (!(f=popen(buf,"w"))) {
1722                 error(_("^Failing spawn of receive command: %s"),buf);
1723                 goto err;
1724                 }
1725         if (fputs(bodyline,f)<0 || putc('\n',f)!='\n')
1726                 error(_("^Failing write to child receive command: %s"),buf);
1727         if ((i=pclose(f)))
1728                 error(_("^Spawned receive command failure (code %d): %s"),i,buf);
1729 err:
1730         free(buf);
1731         if (pid==-1) return;
1732         exit(EXIT_SUCCESS); /* cleanup() has been disabled */
1733 }
1734
1735 static inline unsigned char fromhex(unsigned c)
1736 {
1737         c&=0xDF;
1738         return(c<'A'?c-('0'&0xDF):(c-('A'&0xDF))+0xA);
1739 }
1740
1741 static int teldecode(char *text,unsigned char *bin,size_t digits)
1742 {
1743 unsigned char b;
1744 int r=0,i;
1745
1746         for (i=0;i<digits;text++,i++) {
1747                 if (!(i&1)) b=*bin;
1748                 else b=(*bin++)>>4;
1749                 b&=0x0F;
1750                 if (b<=0x09)
1751                         *text=b+'0';
1752                 else {
1753                         *text='?';
1754                         r++;
1755                         }
1756                 }
1757         *text='\0';
1758         return(r);
1759 }
1760
1761 static void sctsparse(unsigned char *bin,const char *pduline,int offs)
1762 {
1763 #define DIGIT2BIN(v) (((v)&0x0F)*10+(((v)>>4)&0x0F))
1764 int i;
1765
1766         receive_time=-1;
1767         memset(&tm,0,sizeof(tm)); /* may be redundant */
1768         for (i=0;i<NELEM(timeparse);offs++,i++) {
1769                 if ((*bin&0x0F)>0x09 || (*bin&0xF0)>0x90) {
1770                         error(_("Invalid value of \"%s\" at offset %d in: %s"),
1771                                 timeparse[i].name,offs,pduline);
1772                         return;
1773                         }
1774                 GETTIME(i)=DIGIT2BIN(*bin);
1775                 bin++;
1776                 }
1777         maketime(pduline);
1778
1779 #undef DIGIT2BIN
1780 }
1781
1782 static void receive_pdu(char *pduline)
1783 {
1784 unsigned char pdu[140+0x100],*pdup,*pdue,oalen,inreg;
1785 char text[160+1],*textp,*s,*pdulinescan;
1786 size_t pdulinel=strlen(pduline),want;
1787 size_t udl,udlb;
1788 int inb,outb,xb;
1789
1790         d2("receive_pdu: %s\n",pduline);
1791         if (pdulinel>2*sizeof(pdu))
1792                 { error(_("PDU too long (%d/2) to be valid: %s"),pdulinel,pduline); return; }
1793         if (pdulinel&1)
1794                 { error(_("PDU length odd (%d): %s"),pdulinel,pduline); return; }
1795         if (pdulinel<2*13)
1796                 { error(_("PDU length %d too small (min. 2*%d): %s"),pdulinel,13,pduline); return; }
1797         for (pdup=pdu,pdulinescan=pduline;*pdulinescan;pdulinescan+=2) {
1798                 if (!isxdigit(pdulinescan[0]) || !(isxdigit(pdulinescan[1])))
1799                 { error(_("Invalid hex byte: %c%c on byte %d in: %s"),
1800                         pdulinescan[0],pdulinescan[1],pdup-pdu,pduline); return; }
1801                 *pdup++=(fromhex(pdulinescan[0])<<4)|fromhex(pdulinescan[1]);
1802                 }
1803         pdue=pdup;
1804         free(receive_smsc);
1805         if (*pdu<=1) {
1806                 receive_smsc=NULL;
1807                 }
1808         else {
1809                 if (*pdu>10)
1810                         { error(_("SMSC length too large (%d, max. %d): %s"),*pdu,10,pduline); return; }
1811                 chk(receive_smsc=malloc(1+2*(*pdu)+1));
1812                 s=receive_smsc;
1813                 if (pdu[1]==ADDR_INT) *s++='+';
1814                 else {
1815                         if (pdu[1]!=ADDR_NAT)
1816                                 error(_("Unknown address type 0x%02X of %s, ignoring in PDU: %s"),pdu[1],_("SMSC"),pduline); return;
1817                         }
1818                 if (teldecode(s,pdu+2,2*(*pdu-1)-((pdu[1+(*pdu)]&0xF0)==0xF0)))
1819                         error(_("Some digits unrecognized in %s \"%s\", ignoring in PDU: %s"),_("SMSC"),receive_smsc,pduline);
1820                 }
1821         pdup=pdu+1+(*pdu);
1822         if (*pdup&0x03) /* PDU type */
1823                 error(_("Unrecognized PDU type 0x%02X at offset %d, dropping: %s"),*pdup,pdup-pdu,pduline);
1824         pdup++;
1825         free(receive_number);
1826         if ((oalen=*pdup++)>2*0x10) /* OA len */
1827                 { error(_("Originating number too large (0x%X, max. 2*0x%X): %s"),oalen,0x10,pduline); return; }
1828         if (pdup+(want=1+(oalen+1)/2+10)>pdue)
1829                 { error(_("PDU length too short (want %d, is %d): %s"),(pdup-pdu)+want,pdue-pdu,pduline); return; }
1830         chk(receive_number=malloc(1+2*(*pdup)+1));
1831         s=receive_number;
1832         if (*pdup==ADDR_INT) *s++='+';
1833         else {
1834                 if (*pdup!=ADDR_NAT)
1835                         error(_("Unknown address type 0x%02X of %s, ignoring in PDU: %s"),*pdup,_("originating number"),pduline); return;
1836                 }
1837         pdup++;
1838         if (teldecode(s,pdup,oalen))
1839                 error(_("Some digits unrecognized in %s \"%s\", ignoring in PDU at offset %d: %s"),
1840                         _("originating number"),receive_number,pdup-pdu,pduline);
1841         pdup+=(oalen+1)/2;
1842         if (*pdup) /* PID */
1843                 error(_("PID number %02X unsupported, ignoring: %s"),*pdup,pduline);
1844         pdup++;
1845         if (*pdup) { /* DCS */
1846                 if ((*pdup&0xF4)==0xF4)
1847                         { error(_("DCS 0x%02X indicates 8-bit data, unsupported, dropping: %s"),*pdup,pduline); return; }
1848                 error(_("DCS 0x%02X unsupported, will attempt decoding: %s"),*pdup,pduline);
1849                 }
1850         pdup++;
1851         sctsparse(pdup,pduline,pdup-pdu);
1852         pdup+=7;
1853         /* UDL */
1854         udl=*pdup++;
1855         if (pdue-pdup>140) {
1856                 error(_("PDU data (%d) exceed maximum length of %d bytes, cut: %s"),
1857                         pdue-pdup,140,pduline);
1858                 pdue=pdup+140;
1859                 }
1860         udlb=(udl*7+7)/8;
1861         if (pdup+udlb>pdue) {
1862 size_t udl1,udlb1;
1863
1864                 udlb1=pdue-pdup;
1865                 udl1=(udlb1*8)/7;
1866                 error(_("PDU data length (%d/7->%d/8) longer than data (%d), cut to %d/7->%d/8: %s"),
1867                         udl,udlb,pdue-pdup,udl1,udlb1,pduline);
1868                 udl=udl1; udlb=udlb1;
1869                 }
1870         else
1871                 assert(pdup+udlb==pdue); /* should be checked by 'PDU length too short' above */
1872         textp=text;
1873         inb=outb=0;
1874         inreg=0; /* GCC happiness */
1875         while (udl) {
1876                 if (!inb) {
1877                         inreg=*pdup++;
1878                         inb=8;
1879                         }
1880                 if (!outb) {
1881                         assert(textp<text+160);
1882                         *textp=0x00;
1883                         outb=7;
1884                         }
1885                 xb=MIN(inb,outb);
1886 #if 0
1887                 d4("inb=%d,outb=%d,xb=%d\n",inb,outb,xb);
1888 #endif
1889                 *textp|=((inreg>>(unsigned)(8-inb))&((1<<xb)-1))<<(unsigned)(7-outb);
1890                 inb-=xb; outb-=xb;
1891                 if (!outb) {
1892                         *textp=charconv_recv(*textp,textp-text);
1893                         textp++;
1894                         udl--;
1895                         }
1896                 }
1897         *textp=0;
1898         receive_text(text);
1899 }
1900
1901 static struct {
1902         char **sp;
1903         long *ip;
1904         const char *const msg;
1905         } numarg[]={
1906                 { &maxretry,&maxretryn,"maxretry" },
1907                 { &readtime,&readtimen,"readtime" },
1908                 { &chartime,&chartimen,"chartime" },
1909                 { &cmdtime ,&cmdtimen ,"cmdtime"  },
1910                 { &baud    ,&baudn    ,"baud"     },
1911         };
1912
1913 int main(int argc,char **argv)
1914 {
1915 char *s;
1916 int i,cmgf=-1 /* GCC happiness */;
1917 unsigned fatal=0;
1918 speed_t portbaud=0 /* GCC happiness */;
1919 enum modenum argsmode;
1920 unsigned parts=0;
1921
1922         if ((s=strrchr((pname=*argv),'/'))) pname=s+1;
1923
1924 #ifdef ENABLE_NLS
1925         /* Initialize the i18n stuff */
1926         bindtextdomain(PACKAGE,LOCALEDIR);
1927         if (!setlocale(LC_ALL,""))
1928                 error("Locale not supported by C library");
1929         textdomain(PACKAGE);
1930 #endif
1931
1932 #ifdef HAVE_ATEXIT
1933         atexit(cleanup);
1934 #else
1935         error(_("atexit(3) not available at compilation time, device cleanup may be missed"));
1936 #endif
1937         signal(SIGTERM,(RETSIGTYPE (*)(int))cleanup);
1938         signal(SIGQUIT,(RETSIGTYPE (*)(int))cleanup);
1939         signal(SIGINT ,(RETSIGTYPE (*)(int))cleanup);
1940         signal(SIGHUP ,(RETSIGTYPE (*)(int))cleanup);
1941         assert(mode==MODE_UNKNOWN);
1942         for (i=0;i<NELEM(longopts);i++) {
1943                 if (longopts[i].val<MODE_FIRST) break;
1944                 if (!strstr(pname,longopts[i].name)) continue;
1945                 if (mode==MODE_UNKNOWN || mode==longopts[i].val) {
1946                         mode=longopts[i].val;
1947                         continue;
1948                         }
1949                 mode=MODE_UNKNOWN;
1950                 break;
1951                 }
1952         argsmode=mode;
1953         processargs(argc,argv,_("<command-line>"));
1954         if ((s=getenv("HOME"))) {
1955 size_t l=strlen(s);
1956 char *buf=malloc(l+50);
1957
1958                 memcpy(buf,s,l);
1959                 strcpy(buf+l,CONFIG_HOME);
1960                 readfile(buf,1);
1961                 free(buf);
1962                 }
1963         readfile(CONFIG_MAIN,1);
1964         if (verbose>=1) {
1965                 if (argsmode)
1966                         error(_(".Detected mode \"%s\" from my program name \"%s\""),MODE_NAME(argsmode),pname);
1967                 else
1968                         error(_(".Automatic mode detection unsuccessul for my progam name \"%s\""),pname);
1969                 }
1970
1971         if (!mode)
1972                 error(_("!Operation mode unset, use --send or similiar command, see help (-h)"));
1973         error(_(".Running program in mode \"%s\""),MODE_NAME(mode));
1974         switch (mode) {
1975
1976                 case MODE_SEND:           /* FALLTHRU */
1977                 case MODE_SEND_MOBILDOCK: cmdline_send     (); break;
1978                 case MODE_LOGO_SEND:      cmdline_logo_send(); break;
1979                 case MODE_RING_SEND:      cmdline_ring_send(); break;
1980                 case MODE_RECEIVE:        cmdline_receive  (); break;
1981                 default: assert(0);
1982                 }
1983         cmdline_done();
1984         for (i=0;i<NELEM(nullcheck);i++) {
1985 const struct nullcheck *n=nullcheck+i;
1986
1987                 if (*n->var) continue;
1988                 if (n->reqd && !(MODE_BIT(mode)&n->reqd)) continue;
1989                 error(_("Missing parameter \"%s\""),_(n->name));
1990                 fatal++;
1991                 }
1992         if (fatal) error(_("!Previous %s considered unrecoverable"),(fatal==1?_("error"):_("errors")));
1993         emptyclean();
1994         if (!logname) logname=DEF_LOGNAME;
1995         if (!lockfile) lockfile=DEF_LOCKFILE;
1996         if (!device) device=DEF_DEVICE;
1997
1998         for (i=0;i<NELEM(numarg);i++) {
1999 char *serr;
2000                 if (!*numarg[i].sp) continue;
2001                 *numarg[i].ip=strtol(*numarg[i].sp,&serr,0);
2002                 if (*numarg[i].ip<0 || *numarg[i].ip>=LONG_MAX || !serr || *serr)
2003                         error(_("!Number parse error for parameter \"%s\" of \"%s\" at: %s"),
2004                                 numarg[i].msg,*numarg[i].sp,serr);
2005                 }
2006         if (readtimen==-1)
2007                 readtimen=(mode==MODE_SEND_MOBILDOCK?DEF_READTIME_MOBILDOCK:DEF_READTIME);
2008         if (mode==MODE_SEND_MOBILDOCK) mode=MODE_SEND;
2009
2010         if (!strchr(device,'/')) {
2011 size_t l=strlen(device);
2012                 chk(s=malloc(5+l+1));
2013                 strcpy(s,"/dev/");
2014                 strcpy(s+5,device);
2015                 free(device);
2016                 device=s;
2017                 }
2018         devicename=strrchr(device,'/')+1; assert(!!(devicename-1));
2019         for (i=0,s=lockfile;*s;s++) {
2020                 if (*s!='%') continue;
2021                 s++;
2022                 if (*s=='%') continue;
2023                 if (*s=='s') {
2024                         if (i) error(_("!Only one \"%%s\" permitted in lockfile format-string"));
2025                         i=1; continue;
2026                         }
2027                 error(_("!Invalid format-character '%c' in lockfile format-string, only \"%%s\" allowed"),*s);
2028                 }
2029         
2030         if (*logname) {
2031                 if (!(logf=fopen(logname,"a")))
2032                         error(_("^!Error opening log \"%s\" for append"),logname);
2033                 logmsg(_("Starting up: %s"),PACKAGE " " VERSION);
2034                 }
2035
2036         switch (mode) {
2037                 case MODE_SEND:
2038                         preparebody();
2039                         genpdu();
2040                         readbody=0;
2041                         break;
2042                 case MODE_LOGO_SEND:
2043                         logoread();
2044                         break;
2045                 case MODE_RING_SEND:
2046                         ringread();
2047                         break;
2048                 case MODE_RECEIVE: break;
2049                 default: assert(0);
2050                 }
2051         if (readbody)
2052                 error(_("Warning: -f / --file is forbidden with mode \"%s\""),MODE_NAME(mode));
2053         if (smsmode) {
2054                      if (!strcmp(smsmode,"pdu" ) || !strcmp(smsmode,"0"))
2055                         force_smsmode=FSM_PDU ;
2056                 else if (!strcmp(smsmode,"text") || !strcmp(smsmode,"1"))
2057                         force_smsmode=FSM_TEXT;
2058                 else
2059                         error(_("!Unrecognized %s argument \"%s\", supported only: %s"),"-M/--smsmode",smsmode,"pdu/0/text/1");
2060                 }
2061         if (pdusmscmode) {
2062                      if (!strcmp(pdusmscmode,"count-in"))
2063                         force_pdusmscmode=FPSM_COUNT_IN;
2064                 else if (!strcmp(pdusmscmode,"count-out"))
2065                         force_pdusmscmode=FPSM_COUNT_OUT;
2066                 else if (!strcmp(pdusmscmode,"none"))
2067                         force_pdusmscmode=FPSM_NONE;
2068                 else
2069                         error(_("!Unrecognized %s argument \"%s\", supported only: %s"),"-P/--pdusmscmode",pdusmscmode,"count-in/count-out/none");
2070                 try_pdusmscmode=force_pdusmscmode;
2071                 }
2072
2073         switch (baudn) {
2074                 case  2400: portbaud= B2400; break;
2075                 case  4800: portbaud= B4800; break;
2076                 case  9600: portbaud= B9600; break;
2077                 case 19200: portbaud=B19200; break;
2078                 case 38400: portbaud=B38400; break;
2079                 case 57600: portbaud=B57600; break;
2080                 default:
2081                         error(_("!Specified baudrate %ld is not supported"),baudn);
2082                 }
2083         if (verbose>=2) error(_(".Will use baudrate %ld with hexval 0x%X"),baudn,portbaud);
2084                 
2085         if (lockfile && *lockfile && VARPRINTF(lockreal,lockfile,devicename)>0) {
2086 time_t start,end;
2087                 if (verbose>=1) error(_(".Locking device \"%s\" by \"%s\".."),device,lockreal);
2088                 time(&start);
2089                 lockdevice(0);
2090                 time(&end);
2091                 if ((end-=start)>LOCKREPORT)
2092                         logmsg(_("Device lock succeeded after %ld seconds"),(long)end);
2093                 }
2094         if (verbose>=1) error(_(".Opening device \"%s\".."),device);
2095         if ((devfd=open(device,O_RDWR|O_NDELAY))<0)
2096                 error(_("^!Cannot open device \"%s\" for r/w access"),device);
2097         
2098         if (tcgetattr(devfd,&restios))
2099                 error(_("^Unable to get termios settings"));
2100         else {
2101                 restios.c_cflag=(restios.c_cflag&~(CBAUD|CBAUDEX))|B0|HUPCL;
2102                 restios_yes=1;
2103                 }
2104         tios.c_iflag=IGNBRK|IGNPAR|(handshake_rtscts ? 0 : IXON|IXOFF);
2105         tios.c_oflag=0;
2106         tios.c_cflag=CS8|CREAD|CLOCAL|HUPCL|portbaud|(handshake_rtscts ? CRTSCTS : 0);
2107         tios.c_lflag=IEXTEN|NOFLSH;
2108         memset(tios.c_cc,_POSIX_VDISABLE,sizeof(tios.c_cc));
2109         tios.c_cc[VTIME]=0;
2110         tios.c_cc[VMIN ]=1;
2111             cfsetispeed(&tios,portbaud);
2112         if (cfsetospeed(&tios,portbaud)|cfsetispeed(&tios,portbaud))
2113                 error(_("^Error setting termios baudrate on device"));
2114         if (tcflush(devfd,TCIOFLUSH))
2115                 error(_("^Error flushing termios (TCIOFLUSH) on device"));
2116         if (tcsetattr(devfd,TCSANOW,&tios))
2117                 error(_("^!Unable to set initial termios device settings"));
2118
2119         setalarm();
2120
2121 retryall:
2122                 devcmd("",NULL,"\r\nAT\033\032"); /* ESCAPE, CTRL-Z */
2123                 devcmd(NULL,NULL,"\r\nAT");
2124                 smscset();
2125                 if (mode==MODE_SEND || mode==MODE_RECEIVE) {
2126                         cmgf=-1;
2127                         do {
2128                                 /* condition is _negative_ here: */
2129                                 if (force_smsmode==FSM_TEXT || !devcmd(NULL,NULL,"!\r\nAT+CMGF=0")) {
2130                                         if (force_smsmode==FSM_PDU || !devcmd(NULL,NULL,"!\r\nAT+CMGF=1"))
2131                                                 { retrying(); continue; }
2132                 /* CMGF=1 */
2133                                         if (verbose>=1)
2134                                                 error(_(".Using AT+CMGF=1 (text mode).."));
2135                                         cmgf=1;
2136                                         }
2137                                 else {
2138                 /* CMGF=0 */
2139                                         if (verbose>=1)
2140                                                 error(_(".Using AT+CMGF=0 (PDU mode).."));
2141                                         cmgf=0;
2142                                         }
2143                                 } while (cmgf==-1);
2144                         }
2145                 switch (mode) {
2146                         case MODE_SEND:
2147                                 if (cmgf) {
2148                                         devcmd("\n> ",NULL,"\r\nAT+CMGS=\"%s\"",phone);
2149                                         s=devcmd(NULL,"\n+CMGS:","!~%s\032",body);
2150                                         }
2151                                 else {
2152                                         devcmd("\n> ",NULL,"\r\nAT+CMGS=%d",(
2153                                                         (try_pdusmscmode==FPSM_COUNT_IN ? strlen(pdusmsc) : 0)
2154                                                         +strlen(pdudata))/2);
2155                                         s=devcmd(NULL,"\n+CMGS:","!~%s%s\032",
2156                                                         (try_pdusmscmode!=FPSM_NONE ? pdusmsc : ""),
2157                                                         pdudata);
2158                                         if (!s && force_pdusmscmode==FPSM_AUTO) {
2159                                                 if (FPSM_MAX==try_pdusmscmode++)
2160                                                         try_pdusmscmode=FPSM_MIN;
2161                                                 else
2162                                                         retrycnt--;
2163                                                 }
2164                                         }
2165                                 break;
2166                         case MODE_LOGO_SEND:
2167                         case MODE_RING_SEND: {
2168 struct hexdata *hd;
2169
2170                                 restore="\r\nAT+CSMP=17,,0,0";
2171                                 devcmd(NULL,NULL,"\r\nAT+CSMP=81,,0,245");
2172                                 while ((hd=hexdata)) {
2173                                         devcmd("\n> ",NULL,"\r\nAT+CMGS=\"%s\"",phone);
2174                                         if (!(s=devcmd(NULL,"\n+CMGS:","!~%s\032",hd->data))) break;
2175                                         if ((hexdata=hd->next)) pushargstack_one(s,0);
2176                                         free(hd);
2177                                         parts++;
2178                                         }
2179                                 } break;
2180                         case MODE_RECEIVE:
2181                                 restore="\r\nAT+CNMI=,0";
2182                                 devcmd(NULL,NULL,"\r\nAT+CNMI=,2");
2183                                 devcmd(NULL,NULL,"\r\nAT+CSDH=0");
2184                                 for (;;) {
2185 continue_receive:
2186                                         unlockdevice(0);
2187                                         /* Never bail-out when we got up to this point */
2188                                         if (maxretryn!=-1 && verbose>=1)
2189                                                 error(_(".Initialization successful, infinite retry count set"));
2190                                         maxretryn=-1;
2191 #if RECEIVE_TEST
2192                 receive_headerparse(" \"+420602123456\",,\"99/10/25,03:21:03-00\"");
2193                 receive_accept("TESTBODY");
2194                 exit(EXIT_SUCCESS);
2195 #endif
2196                                         datawait(0);
2197                                         if (!lockdevice(1)) {
2198                                                 if (verbose>=1)
2199                                                         error(_(".Dialout detected, waiting for lock.."));
2200                                                 lockdevice(0);
2201                                                 goto retryall;
2202                                                 }
2203                                         d1("Lock-device succeeded\n");
2204                                         do {
2205                                                 d1("Reading a message for us...\n");
2206                                                 if (!(s=devcmd("\n","+CMT:"," ")))
2207                                                         goto retryall;
2208                                                 if (s==&devcmd_empty_return) /* only newlines found */
2209                                                         goto continue_receive;
2210                                                 if (cmgf && !(i=receive_headerparse(s)))
2211                                                         error(_("Receive-header parsing failed on: %s"),s);
2212                                                 if (!(s=devcmd("\n","@"," ")))
2213                                                         goto retryall;
2214                                                 if (cmgf) {
2215                                                         if (i) receive_text(s);
2216                                                         }
2217                                                 else receive_pdu(s);
2218                                                 } while (datawait(1));
2219                                         } /* return to 'continue receive' point */
2220                                 break;
2221                         default: assert(0);
2222                         }
2223                 if (!s) { retrying(); goto retryall; }
2224
2225         pushargstack_one(s,0); s=NULL;
2226         if (verbose>=1) while ((s=nextargstack())) {
2227                 while (isspace(*s)) s++;
2228                 error(_("\nMessage successfuly sent with MR (Message Reference): %s"),s);
2229                 }
2230         devcmd(NULL,NULL,"\r\nAT");
2231
2232         if (parts)
2233                 logmsg(_("SMS sent (after %d retries), %d part(s)"),retrycnt,parts);
2234         else
2235                 logmsg(_("SMS sent (after %d retries)"),retrycnt);
2236         return(EXIT_SUCCESS);
2237 }