unified socket application interface (for asterisk and maybe other apps)
[lcr.git] / admin_server.c
1 /*****************************************************************************\
2 **                                                                           **
3 ** Linux Call Router                                                         **
4 **                                                                           **
5 **---------------------------------------------------------------------------**
6 ** Copyright: Andreas Eversberg                                              **
7 **                                                                           **
8 ** Socket link server                                                        **
9 **                                                                           **
10 \*****************************************************************************/
11
12 #include <stdio.h>
13 //#include <stdlib.h>
14 //#include <string.h>
15 #include <sys/types.h>
16 //#include <sys/stat.h>
17 //#include <unistd.h>
18 //#include <signal.h>
19 //#include <stdarg.h>
20 //#include <fcntl.h>
21 #include <sys/ioctl.h>
22 //#include <sys/file.h>
23 //#include <errno.h>
24 //#include <sys/mman.h>
25 //#include <sys/resource.h>
26 #include <sys/socket.h>
27 #include <sys/un.h>
28 #include <curses.h>
29 #include "main.h"
30
31
32 char *socket_name = SOCKET_NAME;
33 int sock = -1;
34 struct sockaddr_un sock_address;
35
36 struct admin_list *admin_first = NULL;
37
38 /*
39  * initialize admin socket 
40  */
41 int admin_init(void)
42 {
43         unsigned long on = 1;
44
45         /* open and bind socket */
46         if ((sock = socket(PF_UNIX, SOCK_STREAM, 0)) < 0)
47         {
48                 PERROR("Failed to create admin socket. (errno=%d)\n", errno);
49                 return(-1);
50         }
51         fhuse++;
52         memset(&sock_address, 0, sizeof(sock_address));
53         sock_address.sun_family = AF_UNIX;
54         UCPY(sock_address.sun_path, socket_name);
55         unlink(socket_name);
56         if (bind(sock, (struct sockaddr *)(&sock_address), SUN_LEN(&sock_address)) < 0)
57         {
58                 close(sock);
59                 unlink(socket_name);
60                 fhuse--;
61                 sock = -1;
62                 PERROR("Failed to bind admin socket to \"%s\". (errno=%d)\n", sock_address.sun_path, errno);
63                 return(-1);
64         }
65         if (listen(sock, 5) < 0)
66         {
67                 close(sock);
68                 unlink(socket_name);
69                 fhuse--;
70                 sock = -1;
71                 PERROR("Failed to listen to socket \"%s\". (errno=%d)\n", sock_address.sun_path, errno);
72                 return(-1);
73         }
74         if (ioctl(sock, FIONBIO, (unsigned char *)(&on)) < 0)
75         {
76                 close(sock);
77                 unlink(socket_name);
78                 fhuse--;
79                 sock = -1;
80                 PERROR("Failed to set socket \"%s\" into non-blocking mode. (errno=%d)\n", sock_address.sun_path, errno);
81                 return(-1);
82         }
83         return(0);
84 }
85
86
87 /*
88  * free connection
89  * also releases all remote joins
90  */
91 void free_connection(struct admin_list *admin)
92 {
93         struct admin_queue *response;
94         void *temp;
95         union parameter param;
96         class Join *join, *joinnext;
97
98         /* free remote joins */
99         if (admin->remote[0])
100         {
101                 join = join_first;
102                 while(join)
103                 {
104                         joinnext = join->next;
105                         if (join->j_type==JOIN_TYPE_REMOTE && !strcmp(((class JoinRemote *)join)->j_remote, admin->remote))
106                         {
107                                 memset(&param, 0, sizeof(param));
108                                 param.disconnectinfo.cause = CAUSE_OUTOFORDER;
109                                 param.disconnectinfo.location = LOCATION_PRIVATE_LOCAL;
110                                 ((class JoinRemote *)join)->message_remote(0, MESSAGE_RELEASE, &param);
111                                 /* join is now destroyed, so we go to next join */
112                         }
113                         join = joinnext;
114                 }
115         }
116
117         if (admin->sock >= 0)
118         {
119                 close(admin->sock);
120                 fhuse--;
121         }
122 //      printf("new\n", response);
123         response = admin->response;
124         while (response)
125         {
126 //#warning
127 //      printf("%x\n", response);
128                 temp = response->next;
129                 FREE(response, 0);
130                 memuse--;
131                 response = (struct admin_queue *)temp;
132         }
133 //      printf("new2\n", response);
134         FREE(admin, 0);
135 //      printf("new3\n", response);
136         memuse--;
137 }
138
139
140 /*
141  * cleanup admin socket 
142  */
143 void admin_cleanup(void)
144 {
145         struct admin_list *admin, *next;;
146
147         admin = admin_first;
148         while(admin)
149         {
150 //printf("clean\n");
151                 next = admin->next;
152                 free_connection(admin);
153                 admin = next;
154         }
155
156         if (sock >= 0)
157         {
158                 close(sock);
159                 fhuse--;
160         }
161 }
162
163
164 /*
165  * do interface reload
166  */
167 int admin_interface(struct admin_queue **responsep)
168 {
169         struct admin_queue      *response;      /* response pointer */
170         char                    *err_txt = "";
171         int                     err = 0;
172
173         if (read_interfaces())
174         {
175                 relink_interfaces();
176                 free_interfaces(interface_first);
177                 interface_first = interface_newlist;
178                 interface_newlist = NULL;
179         } else
180         {
181                 err_txt = interface_error;
182                 err = -1;
183         }
184         /* create state response */
185         response = (struct admin_queue *)MALLOC(sizeof(struct admin_queue)+sizeof(admin_message));
186         memuse++;
187         response->num = 1;
188         /* message */
189         response->am[0].message = ADMIN_RESPONSE_CMD_INTERFACE;
190         /* error */
191         response->am[0].u.x.error = err;
192         /* message */
193         SCPY(response->am[0].u.x.message, err_txt);
194         /* attach to response chain */
195         *responsep = response;
196         responsep = &response->next;
197
198         return(0);
199 }
200
201
202 /*
203  * do route reload
204  */
205 int admin_route(struct admin_queue **responsep)
206 {
207         struct route_ruleset    *ruleset_new;
208         struct admin_queue      *response;      /* response pointer */
209         char                    err_txt[256] = "";
210         int                     err = 0;
211 #if 0
212         int                     n;
213 #endif
214         class EndpointAppPBX    *apppbx;
215
216 #if 0
217         n = 0;
218         apppbx = apppbx_first;
219         while(apppbx)
220         {
221                 n++;
222                 apppbx = apppbx->next;
223         }
224         if (apppbx_first)
225         {
226                 SPRINT(err_txt, "Cannot reload routing, because %d endpoints active\n", n);
227                 err = -1;
228                 goto response;
229         }
230 #endif
231         if (!(ruleset_new = ruleset_parse()))
232         {
233                 SPRINT(err_txt, ruleset_error);
234                 err = -1;
235                 goto response;
236         }
237         ruleset_free(ruleset_first);
238         ruleset_first = ruleset_new;
239         ruleset_main = getrulesetbyname("main");
240         if (!ruleset_main)
241         {
242                 SPRINT(err_txt, "Ruleset reloaded, but rule 'main' not found.\n");
243                 err = -1;
244         }
245         apppbx = apppbx_first;
246         while(apppbx)
247         {
248                 if (apppbx->e_action)
249                 {
250                         switch(apppbx->e_action->index)
251                         {
252                                 case ACTION_INTERNAL:
253                                 apppbx->e_action = &action_internal;
254                                 break;
255                                 case ACTION_EXTERNAL:
256                                 apppbx->e_action = &action_external;
257                                 break;
258                                 case ACTION_REMOTE:
259                                 apppbx->e_action = &action_remote;
260                                 break;
261                                 case ACTION_VBOX_RECORD:
262                                 apppbx->e_action = &action_vbox;
263                                 break;
264                                 case ACTION_PARTYLINE:
265                                 apppbx->e_action = &action_partyline;
266                                 break;
267                                 default:
268                                 goto release;
269                         }
270                 } else if (apppbx->e_state != EPOINT_STATE_CONNECT)
271                 {
272                         release:
273                         apppbx->e_callback = 0;
274                         apppbx->e_action = NULL;
275                         apppbx->release(RELEASE_ALL, LOCATION_PRIVATE_LOCAL, CAUSE_NORMAL, LOCATION_PRIVATE_LOCAL, CAUSE_NORMAL);
276                         start_trace(0,
277                                 NULL,
278                                 numberrize_callerinfo(apppbx->e_callerinfo.id, apppbx->e_callerinfo.ntype),
279                                 apppbx->e_dialinginfo.id,
280                                 DIRECTION_NONE,
281                                 CATEGORY_EP,
282                                 apppbx->ea_endpoint->ep_serial,
283                                 "KICK (reload routing)");
284                         end_trace();
285                 }
286
287                 apppbx->e_action_timeout = NULL;
288                 apppbx->e_rule = NULL;
289                 apppbx->e_ruleset = NULL;
290
291                 apppbx = apppbx->next;
292         }
293
294         response:
295         /* create state response */
296         response = (struct admin_queue *)MALLOC(sizeof(struct admin_queue)+sizeof(admin_message));
297         memuse++;
298         response->num = 1;
299         /* message */
300         response->am[0].message = ADMIN_RESPONSE_CMD_ROUTE;
301         /* error */
302         response->am[0].u.x.error = err;
303         /* message */
304         SCPY(response->am[0].u.x.message, err_txt);
305         /* attach to response chain */
306         *responsep = response;
307         responsep = &response->next;
308
309         return(0);
310 }
311
312
313 /*
314  * do dialing
315  */
316 int admin_dial(struct admin_queue **responsep, char *message)
317 {
318         struct extension        ext;            /* temporary extension's settings */
319         struct admin_queue      *response;      /* response pointer */
320         char                    *p;             /* pointer to dialing digits */
321
322         /* create state response */
323         response = (struct admin_queue *)MALLOC(sizeof(struct admin_queue)+sizeof(admin_message));
324         memuse++;
325         response->num = 1;
326         /* message */
327         response->am[0].message = ADMIN_RESPONSE_CMD_DIAL;
328
329         /* process request */
330         if (!(p = strchr(message,':')))
331         {
332                 response->am[0].u.x.error = -EINVAL;
333                 SPRINT(response->am[0].u.x.message, "no seperator ':' in message to seperate number from extension");
334                 goto out;
335         }
336         *p++ = 0;
337
338         /* modify extension */
339         if (!read_extension(&ext, message))
340         {
341                 response->am[0].u.x.error = -EINVAL;
342                 SPRINT(response->am[0].u.x.message, "extension doesn't exist");
343                 goto out;
344         }
345         SCPY(ext.next, p);
346         write_extension(&ext, message);
347
348         out:
349         /* attach to response chain */
350         *responsep = response;
351         responsep = &response->next;
352         return(0);
353 }
354
355
356 /*
357  * do tracing
358  */
359 int admin_trace(struct admin_list *admin, struct admin_trace_req *trace)
360 {
361         memcpy(&admin->trace, trace, sizeof(struct admin_trace_req));
362         return(0);
363 }
364
365
366 /*
367  * do blocking
368  * 
369  * 0 = make port available
370  * 1 = make port administratively blocked
371  * 2 = unload port
372  * the result is returned:
373  * 0 = port is now available
374  * 1 = port is now blocked
375  * 2 = port cannot be loaded or has been unloaded
376  * -1 = port doesn't exist
377  */
378 int admin_block(struct admin_queue **responsep, int portnum, int block)
379 {
380         struct admin_queue      *response;      /* response pointer */
381         struct interface        *interface;
382         struct interface_port   *ifport;
383
384         /* create block response */
385         response = (struct admin_queue *)MALLOC(sizeof(struct admin_queue)+sizeof(admin_message));
386         memuse++;
387         response->num = 1;
388         /* message */
389         response->am[0].message = ADMIN_RESPONSE_CMD_BLOCK;
390         response->am[0].u.x.portnum = portnum;
391
392         /* search for port */
393         interface = interface_first;
394         while(interface)
395         {
396                 ifport = interface->ifport;
397                 while(ifport)
398                 {
399                         if (ifport->portnum == portnum)
400                                 break;
401                         ifport = ifport->next;
402                 }
403                 if (ifport)
404                         break;
405                 interface = interface->next;
406         }
407         /* not found, we return -1 */
408         if (!ifport)
409         {
410                 response->am[0].u.x.block = -1;
411                 response->am[0].u.x.error = 1;
412                 SPRINT(response->am[0].u.x.message, "Port %d does not exist.", portnum);
413                 goto out;
414         }
415
416         /* no interface */
417         if (!ifport->mISDNport)
418         {
419                 /* not loaded anyway */
420                 if (block >= 2)
421                 {
422                         response->am[0].u.x.block = 2;
423                         goto out;
424                 }
425
426                 /* try loading interface */
427                 ifport->block = block;
428                 load_port(ifport);
429
430                 /* port cannot load */
431                 if (ifport->block >= 2)
432                 {
433                         response->am[0].u.x.block = 2;
434                         response->am[0].u.x.error = 1;
435                         SPRINT(response->am[0].u.x.message, "Port %d will not load.", portnum);
436                         goto out;
437                 }
438
439                 /* port loaded */
440                 response->am[0].u.x.block = ifport->block;
441                 goto out;
442         }
443
444         /* if we shall unload interface */
445         if (block >= 2)
446         {
447                 mISDNport_close(ifport->mISDNport);
448                 ifport->mISDNport = 0;
449                 ifport->block = 2;
450                 goto out;
451         }
452         
453         /* port new blocking state */
454         ifport->block = response->am[0].u.x.block = block;
455
456         out:
457         /* attach to response chain */
458         *responsep = response;
459         responsep = &response->next;
460         return(0);
461 }
462
463
464 /*
465  * do release
466  */
467 int admin_release(struct admin_queue **responsep, char *message)
468 {
469         unsigned long           id;
470         struct admin_queue      *response;      /* response pointer */
471         class EndpointAppPBX    *apppbx;
472
473         /* create state response */
474         response = (struct admin_queue *)MALLOC(sizeof(struct admin_queue)+sizeof(admin_message));
475         memuse++;
476         response->num = 1;
477         /* message */
478         response->am[0].message = ADMIN_RESPONSE_CMD_RELEASE;
479
480         id = atoi(message);
481         apppbx = apppbx_first;
482         while(apppbx)
483         {
484                 if (apppbx->ea_endpoint->ep_serial == id)
485                         break;
486                 apppbx = apppbx->next;
487         }
488         if (!apppbx)
489         {
490                 response->am[0].u.x.error = -EINVAL;
491                 SPRINT(response->am[0].u.x.message, "Given endpoint %d doesn't exist.", id);
492                 goto out;
493         }
494
495         apppbx->e_callback = 0;
496         apppbx->release(RELEASE_ALL, LOCATION_PRIVATE_LOCAL, CAUSE_NORMAL, LOCATION_PRIVATE_LOCAL, CAUSE_NORMAL);
497
498         out:
499         /* attach to response chain */
500         *responsep = response;
501         responsep = &response->next;
502         return(0);
503 }
504
505
506 /*
507  * do call
508  */
509 int admin_call(struct admin_list *admin, struct admin_message *msg)
510 {
511         class Endpoint          *epoint;
512         class EndpointAppPBX    *apppbx;
513
514         if (!(epoint = new Endpoint(0, 0, 0)))
515                 FATAL("No memory for Endpoint instance\n");
516         if (!(epoint->ep_app = apppbx = new DEFAULT_ENDPOINT_APP(epoint)))
517                 FATAL("No memory for Endpoint Application instance\n");
518         apppbx->e_adminid = admin->sockserial;
519         admin->epointid = epoint->ep_serial;
520         SCPY(apppbx->e_callerinfo.id, nationalize_callerinfo(msg->u.call.callerid, &apppbx->e_callerinfo.ntype));
521         if (msg->u.call.present)
522                 apppbx->e_callerinfo.present = INFO_PRESENT_ALLOWED;
523         else
524                 apppbx->e_callerinfo.present = INFO_PRESENT_RESTRICTED;
525         apppbx->e_callerinfo.screen = INFO_SCREEN_NETWORK;
526
527 //printf("hh=%d\n", apppbx->e_capainfo.hlc);
528
529         apppbx->e_capainfo.bearer_capa = msg->u.call.bc_capa;
530         apppbx->e_capainfo.bearer_mode = msg->u.call.bc_mode;
531         apppbx->e_capainfo.bearer_info1 = msg->u.call.bc_info1;
532         apppbx->e_capainfo.hlc = msg->u.call.hlc;
533         apppbx->e_capainfo.exthlc = msg->u.call.exthlc;
534         SCPY(apppbx->e_dialinginfo.id, msg->u.call.dialing);
535         SCPY(apppbx->e_dialinginfo.interfaces, msg->u.call.interface);
536         apppbx->e_dialinginfo.sending_complete = 1;
537
538         apppbx->new_state(PORT_STATE_OUT_SETUP);
539         apppbx->out_setup();
540         return(0);
541 }
542
543
544 /*
545  * this function is called for response whenever a call state changes.
546  */
547 void admin_call_response(int adminid, int message, char *connected, int cause, int location, int notify)
548 {
549         struct admin_list       *admin;
550         struct admin_queue      *response, **responsep; /* response pointer */
551
552         /* searching for admin id
553          * maybe there is no admin instance, because the calling port was not
554          * initiated by admin_call */
555         admin = admin_first;
556         while(admin)
557         {
558                 if (adminid == admin->sockserial)
559                         break;
560                 admin = admin->next;
561         }
562         if (!admin)
563                 return;
564
565         /* seek to end of response list */
566         response = admin->response;
567         responsep = &admin->response;
568         while(response)
569         {
570                 responsep = &response->next;
571                 response = response->next;
572         }
573
574         /* create state response */
575         response = (struct admin_queue *)MALLOC(sizeof(struct admin_queue)+sizeof(admin_message));
576         memuse++;
577         response->num = 1;
578         /* message */
579         response->am[0].message = message;
580 //      printf("MESSAGE: %d\n", message);
581
582         SCPY(response->am[0].u.call.callerid, connected);
583         response->am[0].u.call.cause = cause;
584         response->am[0].u.call.location = location;
585         response->am[0].u.call.notify = notify;
586
587         /* attach to response chain */
588         *responsep = response;
589         responsep = &response->next;
590 }
591
592
593 /*
594  * send data to the remote socket join instance
595  */
596 int admin_message_to_join(struct admin_msg *msg, char *remote)
597 {
598         class Join                      *join;
599         struct admin_list               *admin;
600
601         /* hello message */
602         if (msg->type == MESSAGE_HELLO)
603         {
604                 if (remote[0])
605                 {
606                         PERROR("Remote application repeats hello message.\n");
607                         return(-1);
608                 }
609                 /* look for second application */
610                 admin = admin_first;
611                 while(admin)
612                 {
613                         if (!strcmp(admin->remote, msg->param.hello.application))
614                                 break;
615                         admin = admin->next;
616                 }
617                 if (admin)
618                 {
619                         PERROR("Remote application connects twice??? (ignoring)\n");
620                         return(-1);
621                 }
622                 /* set asterisk socket instance */
623                 SCPY(remote, msg->param.hello.application);
624                 return(0);
625         }
626
627         /* check we already have no application name */
628         if (!remote[0])
629         {
630                 PERROR("Remote application did not send us a hello message.\n");
631                 return(-1);
632         }
633
634         /* new join */
635         if (msg->type == MESSAGE_NEWREF)
636         {
637                 /* create new join instance */
638                 join = new JoinRemote(0, remote); // must have no serial, because no endpoint is connected
639                 if (!join)
640                         FATAL("No memory for remote join instance\n");
641                 return(0);
642         }
643
644         /* check for ref */
645         if (!msg->ref)
646         {
647                 PERROR("Remote application did not send us a valid ref with a message.\n");
648                 return(-1);
649         }
650
651         /* find join instance */
652         join = join_first;
653         while(join)
654         {
655                 if (join->j_serial == msg->ref)
656                         break;
657                 join = join->next;
658         }
659
660         /* check application */
661         if (join->j_type != JOIN_TYPE_REMOTE)
662         {
663                 PERROR("Ref %d does not belong to a remote join instance.\n", msg->ref);
664                 return(-1);
665         }
666         if (!!strcmp(remote, ((class JoinRemote *)join)->j_remote))
667         {
668                 PERROR("Ref %d belongs to remote application %s, but not to sending application %s.\n", msg->ref, ((class JoinRemote *)join)->j_remote, remote);
669                 return(-1);
670         }
671
672         /* send message */
673         ((class JoinRemote *)join)->message_remote(msg->ref, msg->type, &msg->param);
674
675         return(0);
676 }
677
678
679 /*
680  * this function is called for every message to remote socket
681  */
682 int admin_message_from_join(char *remote, unsigned long ref, int message_type, union parameter *param)
683 {
684         struct admin_list       *admin;
685         struct admin_queue      *response, **responsep; /* response pointer */
686
687         /* searching for admin id
688          * maybe there is no given remote application
689          */
690         admin = admin_first;
691         while(admin)
692         {
693                 if (admin->remote[0] && !strcmp(admin->remote, remote))
694                         break;
695                 admin = admin->next;
696         }
697         /* no given remote application connected */
698         if (!admin)
699                 return(-1);
700
701         /* seek to end of response list */
702         response = admin->response;
703         responsep = &admin->response;
704         while(response)
705         {
706                 responsep = &response->next;
707                 response = response->next;
708         }
709
710         /* create state response */
711         response = (struct admin_queue *)MALLOC(sizeof(struct admin_queue)+sizeof(admin_message));
712         memuse++;
713         response->num = 1;
714
715         /* message */
716         response->am[0].u.msg.type = message_type;
717         response->am[0].u.msg.ref = ref;
718         memcpy(&response->am[0].u.msg.param, param, sizeof(union parameter));
719
720         /* attach to response chain */
721         *responsep = response;
722         responsep = &response->next;
723
724         return(0);
725 }
726
727
728 /*
729  * do state debugging
730  */
731 int admin_state(struct admin_queue **responsep)
732 {
733
734         class Port              *port;
735         class EndpointAppPBX    *apppbx;
736         class Join              *join;
737         class Pdss1             *pdss1;
738         struct interface        *interface;
739         struct interface_port   *ifport;
740         struct mISDNport        *mISDNport;
741         int                     i;
742         int                     num;
743         int                     anybusy;
744         struct admin_queue      *response;
745         struct admin_list       *admin;
746
747         /* create state response */
748         response = (struct admin_queue *)MALLOC(sizeof(struct admin_queue)+sizeof(admin_message));
749         memuse++;
750         response->num = 1;
751         /* message */
752         response->am[0].message = ADMIN_RESPONSE_STATE;
753         /* version */
754         SCPY(response->am[0].u.s.version_string, VERSION_STRING);
755         /* time */
756         memcpy(&response->am[0].u.s.tm, now_tm, sizeof(struct tm));
757         /* log file */
758         SCPY(response->am[0].u.s.logfile, options.log);
759         /* interface count */
760         i = 0;
761         interface = interface_first;
762         while(interface)
763         {
764                 ifport = interface->ifport;
765                 while(ifport)
766                 {
767                         i++;
768                         ifport = ifport->next;
769                 }
770                 interface = interface->next;
771         }
772         response->am[0].u.s.interfaces = i;
773         /* remote connection count */
774         i = 0;
775         admin = admin_first;
776         while(admin)
777         {
778                 if (admin->remote[0])
779                         i++;
780                 admin = admin->next;
781         }
782         response->am[0].u.s.remotes = i;
783         /* join count */
784         join = join_first;
785         i = 0;
786         while(join)
787         {
788                 i++;
789                 join = join->next;
790         }
791         response->am[0].u.s.joins = i;
792         /* apppbx count */
793         apppbx = apppbx_first;
794         i = 0;
795         while(apppbx)
796         {
797                 i++;
798                 apppbx = apppbx->next;
799         }
800         response->am[0].u.s.epoints = i;
801         /* port count */
802         i = 0;
803         port = port_first;
804         while(port)
805         {
806                 i++;
807                 port = port->next;
808         }
809         response->am[0].u.s.ports = i;
810         /* attach to response chain */
811         *responsep = response;
812         responsep = &response->next;
813
814         /* create response for all interfaces */
815         num = (response->am[0].u.s.interfaces)+(response->am[0].u.s.joins)+(response->am[0].u.s.epoints)+(response->am[0].u.s.ports);
816         if (num == 0)
817                 return(0);
818         response = (struct admin_queue *)MALLOC(sizeof(admin_queue)+(num*sizeof(admin_message)));
819         memuse++;
820         response->num = num;
821         *responsep = response;
822         responsep = &response->next;
823         interface = interface_first;
824         num = 0;
825         while(interface)
826         {
827                 ifport = interface->ifport;
828                 while(ifport)
829                 {
830                         /* message */
831                         response->am[num].message = ADMIN_RESPONSE_S_INTERFACE;
832                         /* interface */
833                         SCPY(response->am[num].u.i.interface_name, interface->name);
834                         /* portnum */
835                         response->am[num].u.i.portnum = ifport->portnum;
836                         /* iftype */
837                         response->am[num].u.i.extension = interface->extension;
838                         /* block */
839                         response->am[num].u.i.block = ifport->block;
840                         if (ifport->mISDNport)
841                         {
842                                 mISDNport = ifport->mISDNport;
843
844                                 /* ptp */
845                                 response->am[num].u.i.ptp = mISDNport->ptp;
846                                 /* ntmode */
847                                 response->am[num].u.i.ntmode = mISDNport->ntmode;
848                                 /* pri */
849                                 response->am[num].u.i.pri = mISDNport->pri;
850                                 /* use */
851                                 response->am[num].u.i.use = mISDNport->use;
852                                 /* l1link */
853                                 response->am[num].u.i.l1link = mISDNport->l1link;
854                                 /* l2link */
855                                 response->am[num].u.i.l2link = mISDNport->l2link;
856                                 /* channels */
857                                 response->am[num].u.i.channels = mISDNport->b_num;
858                                 /* channel info */
859                                 i = 0;
860                                 anybusy = 0;
861                                 while(i < mISDNport->b_num)
862                                 {
863                                         response->am[num].u.i.busy[i] = mISDNport->b_state[i];
864                                         if (mISDNport->b_port[i])
865                                                 response->am[num].u.i.port[i] = mISDNport->b_port[i]->p_serial;
866                                         i++;
867                                 }
868                         }
869                         num++;
870
871                         ifport = ifport->next;
872                 }
873                 interface = interface->next;
874         }
875
876         /* create response for all remotes */
877         admin = admin_first;
878         while(admin)
879         {
880                 if (admin->remote[0])
881                 {
882                         /* message */
883                         response->am[num].message = ADMIN_RESPONSE_S_REMOTE;
884                         /* name */
885                         SCPY(response->am[num].u.r.name, admin->remote);
886                         /* */
887                         num++;
888                 }
889                 admin = admin->next;
890         }
891
892         /* create response for all joins */
893         join = join_first;
894         while(join)
895         {
896                 /* message */
897                 response->am[num].message = ADMIN_RESPONSE_S_JOIN;
898                 /* serial */
899                 response->am[num].u.j.serial = join->j_serial;
900                 /* partyline */
901                 if (join->j_type == JOIN_TYPE_PBX)
902                         response->am[num].u.j.partyline = ((class JoinPBX *)join)->j_partyline;
903                 /* remote application */
904                 if (join->j_type == JOIN_TYPE_REMOTE)
905                         SCPY(response->am[num].u.j.remote, ((class JoinRemote *)join)->j_remote);
906                 /* */
907                 join = join->next;
908                 num++;
909         }
910
911         /* create response for all endpoint */
912         apppbx = apppbx_first;
913         while(apppbx)
914         {
915                 /* message */
916                 response->am[num].message = ADMIN_RESPONSE_S_EPOINT;
917                 /* serial */
918                 response->am[num].u.e.serial = apppbx->ea_endpoint->ep_serial;
919                 /* join */
920                 response->am[num].u.e.join = apppbx->ea_endpoint->ep_join_id;
921                 /* rx notification */
922                 response->am[num].u.e.rx_state = apppbx->e_rx_state;
923                 /* tx notification */
924                 response->am[num].u.e.tx_state = apppbx->e_tx_state;
925                 /* state */
926                 switch(apppbx->e_state)
927                 {
928                         case EPOINT_STATE_IN_SETUP:
929                         response->am[num].u.e.state = ADMIN_STATE_IN_SETUP;
930                         break;
931                         case EPOINT_STATE_OUT_SETUP:
932                         response->am[num].u.e.state = ADMIN_STATE_OUT_SETUP;
933                         break;
934                         case EPOINT_STATE_IN_OVERLAP:
935                         response->am[num].u.e.state = ADMIN_STATE_IN_OVERLAP;
936                         break;
937                         case EPOINT_STATE_OUT_OVERLAP:
938                         response->am[num].u.e.state = ADMIN_STATE_OUT_OVERLAP;
939                         break;
940                         case EPOINT_STATE_IN_PROCEEDING:
941                         response->am[num].u.e.state = ADMIN_STATE_IN_PROCEEDING;
942                         break;
943                         case EPOINT_STATE_OUT_PROCEEDING:
944                         response->am[num].u.e.state = ADMIN_STATE_OUT_PROCEEDING;
945                         break;
946                         case EPOINT_STATE_IN_ALERTING:
947                         response->am[num].u.e.state = ADMIN_STATE_IN_ALERTING;
948                         break;
949                         case EPOINT_STATE_OUT_ALERTING:
950                         response->am[num].u.e.state = ADMIN_STATE_OUT_ALERTING;
951                         break;
952                         case EPOINT_STATE_CONNECT:
953                         response->am[num].u.e.state = ADMIN_STATE_CONNECT;
954                         break;
955                         case EPOINT_STATE_IN_DISCONNECT:
956                         response->am[num].u.e.state = ADMIN_STATE_IN_DISCONNECT;
957                         break;
958                         case EPOINT_STATE_OUT_DISCONNECT:
959                         response->am[num].u.e.state = ADMIN_STATE_OUT_DISCONNECT;
960                         break;
961                         default:
962                         response->am[num].u.e.state = ADMIN_STATE_IDLE;
963                 }
964                 /* terminal */
965                 SCPY(response->am[num].u.e.terminal, apppbx->e_ext.number);
966                 /* callerid */
967                 SCPY(response->am[num].u.e.callerid, apppbx->e_callerinfo.id);
968                 /* dialing */
969                 SCPY(response->am[num].u.e.dialing, apppbx->e_dialinginfo.id);
970                 /* action string */
971                 if (apppbx->e_action)
972                         SCPY(response->am[num].u.e.action, action_defs[apppbx->e_action->index].name);
973 //              if (apppbx->e_action)
974 //              printf("action=%s\n",action_defs[apppbx->e_action->index].name);
975                 /* park */
976                 response->am[num].u.e.park = apppbx->ea_endpoint->ep_park;
977                 if (apppbx->ea_endpoint->ep_park && apppbx->ea_endpoint->ep_park_len && apppbx->ea_endpoint->ep_park_len<=(int)sizeof(response->am[num].u.e.park_callid))
978                         memcpy(response->am[num].u.e.park_callid, apppbx->ea_endpoint->ep_park_callid, apppbx->ea_endpoint->ep_park_len);
979                 response->am[num].u.e.park_len = apppbx->ea_endpoint->ep_park_len;
980                 /* crypt */
981                 if (apppbx->e_crypt == CRYPT_ON)
982                         response->am[num].u.e.crypt = 1;
983                 /* */
984                 apppbx = apppbx->next;
985                 num++;
986         }
987
988         /* create response for all ports */
989         port = port_first;
990         while(port)
991         {
992                 /* message */
993                 response->am[num].message = ADMIN_RESPONSE_S_PORT;
994                 /* serial */
995                 response->am[num].u.p.serial = port->p_serial;
996                 /* name */
997                 SCPY(response->am[num].u.p.name, port->p_name);
998                 /* epoint */
999                 response->am[num].u.p.epoint = ACTIVE_EPOINT(port->p_epointlist);
1000                 /* state */
1001                 switch(port->p_state)
1002                 {
1003                         case PORT_STATE_IN_SETUP:
1004                         response->am[num].u.p.state = ADMIN_STATE_IN_SETUP;
1005                         break;
1006                         case PORT_STATE_OUT_SETUP:
1007                         response->am[num].u.p.state = ADMIN_STATE_OUT_SETUP;
1008                         break;
1009                         case PORT_STATE_IN_OVERLAP:
1010                         response->am[num].u.p.state = ADMIN_STATE_IN_OVERLAP;
1011                         break;
1012                         case PORT_STATE_OUT_OVERLAP:
1013                         response->am[num].u.p.state = ADMIN_STATE_OUT_OVERLAP;
1014                         break;
1015                         case PORT_STATE_IN_PROCEEDING:
1016                         response->am[num].u.p.state = ADMIN_STATE_IN_PROCEEDING;
1017                         break;
1018                         case PORT_STATE_OUT_PROCEEDING:
1019                         response->am[num].u.p.state = ADMIN_STATE_OUT_PROCEEDING;
1020                         break;
1021                         case PORT_STATE_IN_ALERTING:
1022                         response->am[num].u.p.state = ADMIN_STATE_IN_ALERTING;
1023                         break;
1024                         case PORT_STATE_OUT_ALERTING:
1025                         response->am[num].u.p.state = ADMIN_STATE_OUT_ALERTING;
1026                         break;
1027                         case PORT_STATE_CONNECT:
1028                         response->am[num].u.p.state = ADMIN_STATE_CONNECT;
1029                         break;
1030                         case PORT_STATE_IN_DISCONNECT:
1031                         response->am[num].u.p.state = ADMIN_STATE_IN_DISCONNECT;
1032                         break;
1033                         case PORT_STATE_OUT_DISCONNECT:
1034                         response->am[num].u.p.state = ADMIN_STATE_OUT_DISCONNECT;
1035                         break;
1036                         default:
1037                         response->am[num].u.p.state = ADMIN_STATE_IDLE;
1038                 }
1039                 /* isdn */
1040                 if ((port->p_type&PORT_CLASS_mISDN_MASK) == PORT_CLASS_mISDN_DSS1)
1041                 {
1042                         response->am[num].u.p.isdn = 1;
1043                         pdss1 = (class Pdss1 *)port;
1044                         response->am[num].u.p.isdn_chan = pdss1->p_m_b_channel;
1045                         response->am[num].u.p.isdn_hold = pdss1->p_m_hold;
1046                         response->am[num].u.p.isdn_ces = pdss1->p_m_d_ces;
1047                 }
1048                 /* */
1049                 port = port->next;
1050                 num++;
1051         }
1052         return(0);
1053 }
1054
1055 int sockserial = 1; // must start with 1, because 0 is used if no serial is set
1056 /*
1057  * handle admin socket (non blocking)
1058  */
1059 int admin_handle(void)
1060 {
1061         struct admin_list       *admin, **adminp;
1062         void                    *temp;
1063         struct admin_message    msg;
1064         int                     len;
1065         int                     new_sock;
1066         socklen_t               sock_len = sizeof(sock_address);
1067         unsigned long           on = 1;
1068         int                     work = 0; /* if work was done */
1069         struct Endpoint         *epoint;
1070
1071         if (sock < 0)
1072                 return(0);
1073
1074         /* check for new incomming connections */
1075         if ((new_sock = accept(sock, (struct sockaddr *)&sock_address, &sock_len)) >= 0)
1076         {
1077                 work = 1;
1078                 /* insert new socket */
1079                 admin = (struct admin_list *)MALLOC(sizeof(struct admin_list));
1080                 if (ioctl(new_sock, FIONBIO, (unsigned char *)(&on)) >= 0)
1081                 {
1082 //#warning
1083 //      PERROR("DEBUG incomming socket %d, serial=%d\n", new_sock, sockserial);
1084                         memuse++;
1085                         fhuse++;
1086                         admin->sockserial = sockserial++;
1087                         admin->next = admin_first;
1088                         admin_first = admin;
1089                         admin->sock = new_sock;
1090                 } else {
1091                         close(new_sock);
1092                         FREE(admin, sizeof(struct admin_list));
1093                 }
1094         } else
1095         {
1096                 if (errno != EWOULDBLOCK)
1097                 {
1098                         PERROR("Failed to accept connection from socket \"%s\". (errno=%d) Closing socket.\n", sock_address.sun_path, errno);
1099                         admin_cleanup();
1100                         return(1);
1101                 }
1102         }
1103
1104         /* loop all current socket connections */
1105         admin = admin_first;
1106         adminp = &admin_first;
1107         while(admin)
1108         {
1109                 /* read command */
1110                 len = read(admin->sock, &msg, sizeof(msg));
1111                 if (len < 0)
1112                 {
1113                         if (errno != EWOULDBLOCK)
1114                         {
1115                                 work = 1;
1116                                 brokenpipe:
1117                                 printf("Broken pipe on socket %d. (errno=%d).\n", admin->sock, errno);
1118                                 PDEBUG(DEBUG_LOG, "Broken pipe on socket %d. (errno=%d).\n", admin->sock, errno);
1119                                 *adminp = admin->next;
1120                                 free_connection(admin);
1121                                 admin = *adminp;
1122                                 continue;
1123                         }
1124                         goto send_data;
1125                 }
1126                 work = 1;
1127 //#warning
1128 //PERROR("DEBUG socket %d got data. serial=%d\n", admin->sock, admin->sockserial);
1129                 if (len == 0)
1130                 {
1131                         end:
1132
1133                         /*release endpoint if exists */
1134                         if (admin->epointid)
1135                         {
1136                                 epoint = find_epoint_id(admin->epointid);
1137                                 if (epoint)
1138                                 {
1139                                         ((class DEFAULT_ENDPOINT_APP *)epoint->ep_app)->
1140                                                 release(RELEASE_ALL, CAUSE_NORMAL, LOCATION_PRIVATE_LOCAL, 0, 0);
1141                                 }
1142                         }
1143
1144 //#warning
1145 //PERROR("DEBUG socket %d closed by remote.\n", admin->sock);
1146                         *adminp = admin->next;
1147                         free_connection(admin);
1148                         admin = *adminp;
1149 //PERROR("DEBUG (admin_first=%x)\n", admin_first);
1150                         continue;
1151                 }
1152                 if (len != sizeof(msg))
1153                 {
1154                         PERROR("Short/long read on socket %d. (len=%d != size=%d).\n", admin->sock, len, sizeof(msg));
1155                         *adminp = admin->next;
1156                         free_connection(admin);
1157                         admin = *adminp;
1158                         continue;
1159                 }
1160                 /* process socket command */
1161                 if (admin->response)
1162                 {
1163                         PERROR("Data from socket %d while sending response.\n", admin->sock);
1164                         *adminp = admin->next;
1165                         free_connection(admin);
1166                         admin = *adminp;
1167                         continue;
1168                 }
1169                 switch (msg.message)
1170                 {
1171                         case ADMIN_REQUEST_CMD_INTERFACE:
1172                         if (admin_interface(&admin->response) < 0)
1173                         {
1174                                 PERROR("Failed to create dial response for socket %d.\n", admin->sock);
1175                                 goto response_error;
1176                         }
1177                         break;
1178
1179                         case ADMIN_REQUEST_CMD_ROUTE:
1180                         if (admin_route(&admin->response) < 0)
1181                         {
1182                                 PERROR("Failed to create dial response for socket %d.\n", admin->sock);
1183                                 goto response_error;
1184                         }
1185                         break;
1186
1187                         case ADMIN_REQUEST_CMD_DIAL:
1188                         if (admin_dial(&admin->response, msg.u.x.message) < 0)
1189                         {
1190                                 PERROR("Failed to create dial response for socket %d.\n", admin->sock);
1191                                 goto response_error;
1192                         }
1193                         break;
1194
1195                         case ADMIN_REQUEST_CMD_RELEASE:
1196                         if (admin_release(&admin->response, msg.u.x.message) < 0)
1197                         {
1198                                 PERROR("Failed to create release response for socket %d.\n", admin->sock);
1199                                 goto response_error;
1200                         }
1201                         break;
1202
1203                         case ADMIN_REQUEST_STATE:
1204                         if (admin_state(&admin->response) < 0)
1205                         {
1206                                 PERROR("Failed to create state response for socket %d.\n", admin->sock);
1207                                 goto response_error;
1208                         }
1209                         break;
1210
1211                         case ADMIN_TRACE_REQUEST:
1212                         if (admin_trace(admin, &msg.u.trace_req) < 0)
1213                         {
1214                                 PERROR("Failed to create trace response for socket %d.\n", admin->sock);
1215                                 goto response_error;
1216                         }
1217                         break;
1218
1219                         case ADMIN_REQUEST_CMD_BLOCK:
1220                         if (admin_block(&admin->response, msg.u.x.portnum, msg.u.x.block) < 0)
1221                         {
1222                                 PERROR("Failed to create block response for socket %d.\n", admin->sock);
1223                                 goto response_error;
1224                         }
1225                         break;
1226
1227                         case ADMIN_MESSAGE:
1228                         if (admin_message_to_join(&msg.u.msg, admin->remote) < 0)
1229                         {
1230                                 PERROR("Failed to deliver message for socket %d.\n", admin->sock);
1231                                 goto response_error;
1232                         }
1233 #if 0
1234 #warning DEBUGGING
1235 {
1236         struct admin_queue      *response;
1237         printf("Chain: ");
1238         response = admin->response;
1239         while(response)
1240         {
1241                 printf("%c", '0'+response->am[0].message);
1242                 response=response->next;
1243         }
1244         printf("\n");
1245 }
1246 #endif
1247                         break;
1248
1249                         case ADMIN_CALL_SETUP:
1250                         if (admin_call(admin, &msg) < 0)
1251                         {
1252                                 PERROR("Failed to create call for socket %d.\n", admin->sock);
1253                                 response_error:
1254                                 *adminp = admin->next;
1255                                 free_connection(admin);
1256                                 admin = *adminp;
1257                                 continue;
1258                         }
1259                         break;
1260
1261                         default:
1262                         PERROR("Invalid message %d from socket %d.\n", msg.message, admin->sock);
1263                         *adminp = admin->next;
1264                         free_connection(admin);
1265                         admin = *adminp;
1266                         continue;
1267                 }
1268                 /* write queue */
1269                 send_data:
1270                 if (admin->response)
1271                 {
1272 //#warning
1273 //PERROR("DEBUG socket %d sending data.\n", admin->sock);
1274                         len = write(admin->sock, ((unsigned char *)(admin->response->am))+admin->response->offset, sizeof(struct admin_message)*(admin->response->num)-admin->response->offset);
1275                         if (len < 0)
1276                         {
1277                                 if (errno != EWOULDBLOCK)
1278                                 {
1279                                         work = 1;
1280                                         goto brokenpipe;
1281                                 }
1282                                 goto next;
1283                         }
1284                         work = 1;
1285                         if (len == 0)
1286                                 goto end;
1287                         if (len < (int)(sizeof(struct admin_message)*(admin->response->num)-admin->response->offset))
1288                         {
1289                                 admin->response->offset+=len;
1290                                 goto next;
1291                         } else
1292                         {
1293                                 temp = admin->response;
1294                                 admin->response = admin->response->next;
1295                                 FREE(temp, 0);
1296                                 memuse--;
1297                         }
1298                 }
1299                 /* done with socket instance */
1300                 next:
1301                 adminp = &admin->next;
1302                 admin = admin->next;
1303         }
1304
1305         return(work);
1306 }
1307