/* * The SS7 Application part for forwarding or nat... * * (C) 2010-2011 by Holger Hans Peter Freyther * (C) 2010-2011 by On-Waves * All Rights Reserved * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ #include #include #include #include #include #include #include /* the SS7 dispatch... maybe as function pointers in the future */ void forward_sccp_stp(struct mtp_link_set *set, struct msgb *_msg, int sls) { struct mtp_link_set *other; other = set->app->route_src.set == set ? set->app->route_dst.set : set->app->route_src.set; mtp_link_set_submit_sccp_data(other, sls, _msg->l2h, msgb_l2len(_msg)); } void forward_isup_stp(struct mtp_link_set *set, struct msgb *msg, int sls) { struct mtp_link_set *other; other = set->app->route_src.set == set ? set->app->route_dst.set : set->app->route_src.set; mtp_link_set_submit_isup_data(other, sls, msg->l3h, msgb_l3len(msg)); } void mtp_link_set_forward_sccp(struct mtp_link_set *set, struct msgb *_msg, int sls) { if (!set->app) { LOGP(DINP, LOGL_ERROR, "Linkset %d/%s has no application.\n", set->nr, set->name); return; } switch (set->app->type) { case APP_STP: forward_sccp_stp(set, _msg, sls); break; case APP_CELLMGR: case APP_RELAY: app_forward_sccp(set->app, _msg, sls); break; } } void mtp_link_set_forward_isup(struct mtp_link_set *set, struct msgb *msg, int sls) { if (!set->app) { LOGP(DINP, LOGL_ERROR, "Linkset %d/%s has no application.\n", set->nr, set->name); return; } switch (set->app->type) { case APP_STP: forward_isup_stp(set, msg, sls); break; case APP_CELLMGR: case APP_RELAY: LOGP(DINP, LOGL_ERROR, "ISUP is not handled.\n"); break; } } void mtp_linkset_down(struct mtp_link_set *set) { set->available = 0; mtp_link_set_stop(set); if (set->app && set->app->type != APP_STP) { app_clear_connections(set->app); /* If we have an A link send a reset to the MSC */ msc_mgcp_reset(set->app->route_dst.msc); msc_send_reset(set->app->route_dst.msc); } } void mtp_linkset_up(struct mtp_link_set *set) { set->available = 1; /* we have not gone through link down */ if (set->app && set->app->type != APP_STP && set->app->route_dst.msc->msc_link_down) { app_clear_connections(set->app); app_resources_released(set->app); } mtp_link_set_reset(set); } struct ss7_application *ss7_application_alloc(struct bsc_data *bsc) { struct ss7_application *app; app = talloc_zero(bsc, struct ss7_application); if (!app) { LOGP(DINP, LOGL_ERROR, "Failed to create SS7 Application.\n"); return NULL; } INIT_LLIST_HEAD(&app->sccp_connections); llist_add_tail(&app->entry, &bsc->apps); app->nr = bsc->num_apps++; app->bsc = bsc; return app; } struct ss7_application *ss7_application_num(struct bsc_data *bsc, int num) { struct ss7_application *ss7; llist_for_each_entry(ss7, &bsc->apps, entry) if (ss7->nr == num) return ss7; return NULL; } static int ss7_app_setup_stp(struct ss7_application *app, int src_type, int src_num, int dst_type, int dst_num) { struct mtp_link_set *src, *dst; if (src_type != SS7_SET_LINKSET) { LOGP(DINP, LOGL_ERROR, "SS7 %d/%s source needs to be a linkset.\n", app->nr, app->name); return -1; } if (dst_type != SS7_SET_LINKSET) { LOGP(DINP, LOGL_ERROR, "SS7 %d/%s destination needs to be a linkset.\n", app->nr, app->name); return -1; } /* veryify the MTP Linkset */ src = mtp_link_set_num(app->bsc, src_num); if (!src) { LOGP(DINP, LOGL_ERROR, "SS7 %d/%s source linkset not found with nr: %d.\n", app->nr, app->name, src_num); return -2; } if (src->app) { LOGP(DINP, LOGL_ERROR, "SS7 %d/%s is using linkset %d/%s\n", src->app->nr, src->app->name, src->nr, src->name); return -3; } /* veryify the MTP Linkset */ dst = mtp_link_set_num(app->bsc, dst_num); if (!dst) { LOGP(DINP, LOGL_ERROR, "SS7 %d/%s destionation linkset not found with nr: %d.\n", app->nr, app->name, dst_num); return -2; } if (dst->app) { LOGP(DINP, LOGL_ERROR, "SS7 %d/%s is using linkset %d/%s\n", dst->app->nr, dst->app->name, dst->nr, dst->name); return -3; } /* now connect it */ src->app = app; app->route_src.type = src_type; app->route_src.nr = src_num; app->route_src.set = src; app->route_src.msc = NULL; dst->app = app; app->route_dst.type = dst_type; app->route_dst.nr = dst_num; app->route_dst.set = dst; app->route_dst.msc = NULL; app->type = APP_STP; app->bsc->m2ua_trans->started = 1; return 0; } static int ss7_app_setup_relay(struct ss7_application *app, int type, int src_type, int src_num, int dst_type, int dst_num) { struct mtp_link_set *mtp; struct msc_connection *msc; /* verify the types */ if (src_type != SS7_SET_LINKSET) { LOGP(DINP, LOGL_ERROR, "SS7 %d/%s source needs to be a linkset.\n", app->nr, app->name); return -1; } if (dst_type != SS7_SET_MSC) { LOGP(DINP, LOGL_ERROR, "SS7 %d/%s dest needs to be a MSC.\n", app->nr, app->name); return -1; } /* veryify the MTP Linkset */ mtp = mtp_link_set_num(app->bsc, src_num); if (!mtp) { LOGP(DINP, LOGL_ERROR, "SS7 %d/%s source linkset not found with nr: %d.\n", app->nr, app->name, src_num); return -2; } if (mtp->app) { LOGP(DINP, LOGL_ERROR, "SS7 %d/%s is using linkset %d/%s\n", mtp->app->nr, mtp->app->name, mtp->nr, mtp->name); return -3; } /* verify the MSC connection */ msc = msc_connection_num(app->bsc, dst_num); if (!msc) { LOGP(DINP, LOGL_ERROR, "SS7 %d/%s dest MSC not found with nr: %d.\n", app->nr, app->name, dst_num); return -4; } if (msc->app) { LOGP(DINP, LOGL_ERROR, "SS7 %d/%s is using MSC connection %d/%s\n", msc->app->nr, msc->app->name, msc->nr, msc->name); return -5; } /* now connect it and run the app */ mtp->app = app; app->route_src.type = src_type; app->route_src.nr = src_num; app->route_src.set = mtp; app->route_src.msc = NULL; msc->app = app; app->route_dst.type = dst_type; app->route_dst.nr = dst_num; app->route_dst.set = NULL; app->route_dst.msc = msc; app->type = type; return 0; } int ss7_application_setup(struct ss7_application *ss7, int type, int src_type, int src_num, int dst_type, int dst_num) { switch (type) { case APP_CELLMGR: case APP_RELAY: return ss7_app_setup_relay(ss7, type, src_type, src_num, dst_type, dst_num); break; case APP_STP: return ss7_app_setup_stp(ss7, src_type, src_num, dst_type, dst_num); default: LOGP(DINP, LOGL_ERROR, "SS7 Application %d is not supported.\n", type); return -1; } } static void start_mtp(struct mtp_link_set *set) { struct mtp_link *link; llist_for_each_entry(link, &set->links, entry) link->reset(link); } static void start_msc(struct msc_connection *msc) { msc_connection_start(msc); } static void start_set(struct ss7_application *app, struct mtp_link_set *set) { if (!set) return; set->isup_opc = set->isup_opc >= 0 ? set->isup_opc : set->opc; set->sccp_opc = set->sccp_opc >= 0 ? set->sccp_opc : set->opc; set->pass_all_isup = app->isup_pass; start_mtp(set); } int ss7_application_start(struct ss7_application *app) { start_set(app, app->route_src.set); start_set(app, app->route_dst.set); if (app->route_src.msc) start_msc(app->route_src.msc); if (app->route_dst.msc) start_msc(app->route_dst.msc); LOGP(DINP, LOGL_NOTICE, "SS7 Application %d/%s is now running.\n", app->nr, app->name); return 0; } void ss7_application_pass_isup(struct ss7_application *app, int pass) { if (app->route_src.set) app->route_src.set->pass_all_isup = pass; if (app->route_dst.set) app->route_dst.set->pass_all_isup = pass; }