Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include <string.h>
#include <limits.h>
#include "gwlib/gwlib.h"
#include "wsp.h"
#include "wsp_pdu.h"
#include "wsp_headers.h"
#include "wsp_caps.h"
#include "wsp_strings.h"
#include "cookies.h"
#include "wap.h"
#include "wtp.h"
#include "wsp_server_session_states.def"
#include "wsp_server_method_states.def"
#include "wsp_server_push_states.def"
#include "wsp_server_session_machine.def"
#include "wsp_server_method_machine.def"
#include "wsp_server_push_machine.def"
Go to the source code of this file.
Data Structures | |
struct | msm_pattern |
Macros | |
#define | STATE_NAME(name) name, |
#define | ROW(state, event, condition, action, next_state) |
#define | STATE_NAME(name) name, |
#define | ROW(state, event, condition, action, next_state) |
#define | STATE_NAME(name) name, |
#define | ROW(state, event, condition, action, next_state) |
#define | STATE_NAME(name) |
#define | ROW(state_name, event, condition, action, next_state) |
#define | INTEGER(name) p->name = 0; |
#define | OCTSTR(name) p->name = NULL; |
#define | HTTPHEADERS(name) p->name = NULL; |
#define | ADDRTUPLE(name) p->name = NULL; |
#define | MACHINESLIST(name) p->name = gwlist_create(); |
#define | CAPABILITIES(name) p->name = NULL; |
#define | COOKIES(name) p->name = gwlist_create(); |
#define | REFERER(name) p->name = NULL; |
#define | MACHINE(fields) fields |
#define | INTEGER(name) p->name = 0; |
#define | OCTSTR(name) octstr_destroy(p->name); |
#define | HTTPHEADERS(name) http_destroy_headers(p->name); |
#define | ADDRTUPLE(name) wap_addr_tuple_destroy(p->name); |
#define | MACHINESLIST(name) destroy_##name(p->name); |
#define | CAPABILITIES(name) wsp_cap_destroy_list(p->name); |
#define | COOKIES(name) cookies_destroy(p->name); |
#define | REFERER(name) octstr_destroy(p->name); |
#define | MACHINE(fields) fields |
#define | STATE_NAME(name) |
#define | ROW(state_name, event, condition, action, next_state) |
#define | INTEGER(name) msm->name = 0; |
#define | ADDRTUPLE(name) msm->name = NULL; |
#define | EVENT(name) msm->name = NULL; |
#define | MACHINE(fields) fields |
#define | INTEGER(name) |
#define | ADDRTUPLE(name) wap_addr_tuple_destroy(msm->name); |
#define | EVENT(name) wap_event_destroy(msm->name); |
#define | MACHINE(fields) fields |
#define | STATE_NAME(name) |
#define | ROW(state_name, event, condition, action, next_state) |
#define | INTEGER(name) m->name = 0; |
#define | ADDRTUPLE(name) m->name = NULL; |
#define | HTTPHEADER(name) m->name = http_create_empty_headers(); |
#define | MACHINE(fields) fields |
#define | INTEGER(name) |
#define | ADDRTUPLE(name) wap_addr_tuple_destroy(m->name); |
#define | HTTPHEADER(name) http_destroy_headers(m->name); |
#define | MACHINE(fields) fields |
#define | STATE_NAME(name) case name: return #name; |
#define | ROW(state, event, cond, stmt, next_state) |
#define | STATE_NAME(name) case name: return #name; |
#define | ROW(state, event, cond, stmt, next_state) |
#define | STATE_NAME(name) case name: return #name; |
#define | ROW(state, event, cond, stmt, next_state) |
Enumerations | |
enum | WSPState { ROW, ROW } |
enum | { limbo, running, terminating } |
Variables | |
static enum { ... } | run_status = limbo |
static wap_dispatch_func_t * | dispatch_to_wtp_resp |
static wap_dispatch_func_t * | dispatch_to_wtp_init |
static wap_dispatch_func_t * | dispatch_to_appl |
static wap_dispatch_func_t * | dispatch_to_ota |
static int | resume_enabled = 1 |
static List * | queue = NULL |
static List * | session_machines = NULL |
static Counter * | session_id_counter = NULL |
#define ADDRTUPLE | ( | name | ) | wap_addr_tuple_destroy(p->name); |
#define ADDRTUPLE | ( | name | ) | wap_addr_tuple_destroy(msm->name); |
#define ADDRTUPLE | ( | name | ) | wap_addr_tuple_destroy(m->name); |
#define CAPABILITIES | ( | name | ) | wsp_cap_destroy_list(p->name); |
#define COOKIES | ( | name | ) | p->name = gwlist_create(); |
#define COOKIES | ( | name | ) | cookies_destroy(p->name); |
#define EVENT | ( | name | ) | wap_event_destroy(msm->name); |
#define HTTPHEADER | ( | name | ) | m->name = http_create_empty_headers(); |
#define HTTPHEADER | ( | name | ) | http_destroy_headers(m->name); |
#define HTTPHEADERS | ( | name | ) | http_destroy_headers(p->name); |
#define INTEGER | ( | name | ) |
#define INTEGER | ( | name | ) |
#define MACHINE | ( | fields | ) | fields |
#define MACHINE | ( | fields | ) | fields |
#define MACHINE | ( | fields | ) | fields |
#define MACHINE | ( | fields | ) | fields |
#define MACHINE | ( | fields | ) | fields |
#define MACHINE | ( | fields | ) | fields |
#define MACHINESLIST | ( | name | ) | p->name = gwlist_create(); |
#define OCTSTR | ( | name | ) | octstr_destroy(p->name); |
#define REFERER | ( | name | ) | octstr_destroy(p->name); |
#define ROW | ( | state, | |
event, | |||
condition, | |||
action, | |||
next_state | |||
) |
Definition at line 81 of file wsp_session.c.
#define ROW | ( | state, | |
event, | |||
condition, | |||
action, | |||
next_state | |||
) |
Definition at line 81 of file wsp_session.c.
#define ROW | ( | state, | |
event, | |||
condition, | |||
action, | |||
next_state | |||
) |
Definition at line 81 of file wsp_session.c.
#define ROW | ( | state_name, | |
event, | |||
condition, | |||
action, | |||
next_state | |||
) |
Definition at line 81 of file wsp_session.c.
#define ROW | ( | state_name, | |
event, | |||
condition, | |||
action, | |||
next_state | |||
) |
Definition at line 81 of file wsp_session.c.
#define ROW | ( | state_name, | |
event, | |||
condition, | |||
action, | |||
next_state | |||
) |
Definition at line 81 of file wsp_session.c.
#define ROW | ( | state, | |
event, | |||
cond, | |||
stmt, | |||
next_state | |||
) |
Definition at line 81 of file wsp_session.c.
#define ROW | ( | state, | |
event, | |||
cond, | |||
stmt, | |||
next_state | |||
) |
Definition at line 81 of file wsp_session.c.
#define ROW | ( | state, | |
event, | |||
cond, | |||
stmt, | |||
next_state | |||
) |
Definition at line 81 of file wsp_session.c.
Definition at line 80 of file wsp_session.c.
Definition at line 80 of file wsp_session.c.
Definition at line 80 of file wsp_session.c.
#define STATE_NAME | ( | name | ) |
Definition at line 80 of file wsp_session.c.
#define STATE_NAME | ( | name | ) |
Definition at line 80 of file wsp_session.c.
#define STATE_NAME | ( | name | ) |
Definition at line 80 of file wsp_session.c.
Definition at line 80 of file wsp_session.c.
Definition at line 80 of file wsp_session.c.
Definition at line 80 of file wsp_session.c.
anonymous enum |
Enumerator | |
---|---|
limbo | |
running | |
terminating |
Definition at line 106 of file wsp_session.c.
enum WSPState |
|
static |
Definition at line 1395 of file wsp_session.c.
References gwlist_get(), gwlist_len(), handle_method_event(), WAPEvent::u, wap_event_create, and wap_event_destroy().
Referenced by cant_handle_event().
|
static |
Definition at line 1415 of file wsp_session.c.
References gwlist_get(), gwlist_len(), handle_push_event(), WAPEvent::u, wap_event_create, and wap_event_destroy().
Referenced by cant_handle_event().
|
static |
Definition at line 442 of file wsp_session.c.
References abort_methods(), abort_pushes(), debug(), error(), indicate_disconnect(), send_abort(), WAPEvent::type, WAPEvent::u, wap_event_dump(), warning(), and WSP_ABORT_PROTOERR.
Referenced by handle_method_event(), handle_push_event(), and handle_session_event().
|
static |
Definition at line 1323 of file wsp_session.c.
References dispatch_to_appl, WAPEvent::u, and wap_event_create.
|
static |
Definition at line 517 of file wsp_session.c.
References gwlist_destroy(), gwlist_len(), method_machine_destroy(), and warning().
|
static |
Definition at line 526 of file wsp_session.c.
References gwlist_destroy(), gwlist_len(), push_machine_destroy(), and warning().
|
static |
Definition at line 1188 of file wsp_session.c.
References gwlist_destroy(), gwlist_get(), gwlist_len(), gwlist_search_all(), handle_session_event(), same_client(), session_machines, and wap_event_create.
|
static |
Definition at line 1156 of file wsp_session.c.
Referenced by find_method_machine().
|
static |
Definition at line 1163 of file wsp_session.c.
Referenced by find_push_machine().
|
static |
Definition at line 1148 of file wsp_session.c.
Referenced by find_session_machine().
|
static |
Definition at line 1170 of file wsp_session.c.
References find_by_method_id(), and gwlist_search().
|
static |
Definition at line 1174 of file wsp_session.c.
References find_by_push_id(), and gwlist_search().
|
static |
Definition at line 273 of file wsp_session.c.
References error(), find_by_session_id(), gw_assert(), gwlist_search(), machine_create(), send_abort(), session_machines, transaction_belongs_to_session(), wsp_pdu::type, WAPEvent::type, WAPEvent::u, wsp_pdu::u, wap_addr_tuple_destroy(), wap_addr_tuple_duplicate(), wap_event_dump(), wap_event_name(), and WSP_ABORT_DISCONNECT.
Referenced by main_thread().
WSPMachine* find_session_machine_by_id | ( | int | id | ) |
Definition at line 1434 of file wsp_session.c.
References gwlist_search(), id_belongs_to_session(), and session_machines.
Referenced by return_reply(), and start_fetch().
|
static |
Definition at line 564 of file wsp_session.c.
References cant_handle_event(), debug(), gw_assert(), gwlist_delete_equal(), method_machine_destroy(), state_name(), WAPEvent::type, wap_event_dump(), wap_event_name(), and warning().
Referenced by abort_methods(), and release_holding_methods().
|
static |
Definition at line 650 of file wsp_session.c.
References cant_handle_event(), debug(), gw_assert(), gwlist_delete_equal(), push_machine_destroy(), state_name(), WAPEvent::type, wap_event_dump(), wap_event_name(), and warning().
Referenced by abort_pushes().
|
static |
Definition at line 408 of file wsp_session.c.
References cant_handle_event(), debug(), machine_destroy(), state_name(), WAPEvent::type, wap_event_destroy(), and wap_event_name().
Referenced by disconnect_other_sessions(), and main_thread().
|
static |
Definition at line 1440 of file wsp_session.c.
Referenced by find_session_machine_by_id().
|
static |
Definition at line 1277 of file wsp_session.c.
References dispatch_to_appl, WAPEvent::u, and wap_event_create.
Referenced by cant_handle_event().
|
static |
Definition at line 1352 of file wsp_session.c.
References dispatch_to_appl, WAPEvent::u, and wap_event_create.
|
static |
Definition at line 1312 of file wsp_session.c.
References dispatch_to_appl, WAPEvent::u, and wap_event_create.
|
static |
Definition at line 1301 of file wsp_session.c.
References dispatch_to_appl, http_header_duplicate(), WAPEvent::u, wap_addr_tuple_duplicate(), and wap_event_create.
|
static |
Definition at line 1291 of file wsp_session.c.
References dispatch_to_appl, WAPEvent::u, and wap_event_create.
|
static |
Definition at line 924 of file wsp_session.c.
References capability::data, capability::id, capability::name, octstr_extract_uintvar(), octstr_get_char(), octstr_len(), WSP_CAPS_ALIASES, WSP_CAPS_CLIENT_SDU_SIZE, WSP_CAPS_EXTENDED_METHODS, WSP_CAPS_HEADER_CODE_PAGES, WSP_CAPS_METHOD_MOR, WSP_CAPS_PROTOCOL_OPTIONS, WSP_CAPS_PUSH_MOR, WSP_CAPS_SERVER_SDU_SIZE, and WSP_NUM_CAPS.
Referenced by strip_default_capabilities().
|
static |
Definition at line 483 of file wsp_session.c.
References debug(), gwlist_insert(), and session_machines.
Referenced by find_session_machine().
|
static |
Definition at line 535 of file wsp_session.c.
References debug(), gwlist_delete_equal(), and session_machines.
Referenced by handle_session_event(), and wsp_session_shutdown().
|
static |
Definition at line 239 of file wsp_session.c.
References find_session_machine(), gwlist_consume(), handle_session_event(), queue, run_status, running, WAPEvent::type, WAPEvent::u, wap_event_assert(), wap_event_destroy(), warning(), wsp_pdu_destroy(), and wsp_pdu_unpack().
Referenced by wsp_session_init(), and wsp_session_shutdown().
|
static |
Definition at line 1223 of file wsp_session.c.
References WAPEvent::u, and wap_event_create.
Referenced by send_abort(), and send_abort_to_initiator().
|
static |
Definition at line 976 of file wsp_session.c.
References refuse_unreplied_capabilities(), reply_known_capabilities(), sanitize_capabilities(), strip_default_capabilities(), and wsp_cap_duplicate_list().
Referenced by make_connectreply_pdu().
Definition at line 1085 of file wsp_session.c.
References http_create_empty_headers(), http_destroy_headers(), octstr_create, octstr_duplicate, WAPEvent::u, wsp_pdu::u, WSP_1_2, wsp_headers_pack(), and wsp_pdu_create().
|
static |
Definition at line 1034 of file wsp_session.c.
References http_destroy_headers(), make_capabilities_reply(), make_reply_headers(), wsp_pdu::u, wsp_cap_destroy_list(), wsp_cap_pack_list(), wsp_headers_pack(), wsp_pdu_create(), wsp_pdu_destroy(), and wsp_pdu_pack().
Definition at line 1111 of file wsp_session.c.
References http_create_empty_headers(), http_destroy_headers(), octstr_create, octstr_duplicate, WAPEvent::u, wsp_pdu::u, WSP_1_2, wsp_headers_pack(), and wsp_pdu_create().
|
static |
Definition at line 1009 of file wsp_session.c.
References http_create_empty_headers(), http_header_add(), octstr_destroy(), octstr_get_cstr, and wsp_encoding_version_to_string().
Referenced by make_connectreply_pdu().
|
static |
Definition at line 1061 of file wsp_session.c.
References http_create_empty_headers(), http_destroy_headers(), HTTP_OK, octstr_create, wsp_pdu::u, wsp_convert_http_status_to_wsp_status(), wsp_headers_pack(), wsp_pdu_create(), wsp_pdu_destroy(), and wsp_pdu_pack().
|
static |
Definition at line 1333 of file wsp_session.c.
References dispatch_to_wtp_resp, WAPEvent::u, wap_event_create, and WSP_ABORT_PROTOERR.
|
static |
Definition at line 1364 of file wsp_session.c.
Referenced by release_holding_methods().
|
static |
Definition at line 606 of file wsp_session.c.
References gwlist_append(), and wap_addr_tuple_duplicate().
|
static |
Definition at line 630 of file wsp_session.c.
References debug().
Referenced by destroy_methodmachines(), and handle_method_event().
|
static |
Definition at line 749 of file wsp_session.c.
References counter_increase(), and session_id_counter.
|
static |
Definition at line 687 of file wsp_session.c.
References gwlist_append(), and wap_addr_tuple_duplicate().
|
static |
Definition at line 711 of file wsp_session.c.
References debug().
Referenced by destroy_pushmachines(), and handle_push_event().
Definition at line 909 of file wsp_session.c.
References gwlist_append(), gwlist_get(), gwlist_len(), capability::id, capability::name, wsp_cap_count(), and wsp_cap_create().
Referenced by make_capabilities_reply().
|
static |
Definition at line 1371 of file wsp_session.c.
References gwlist_destroy(), gwlist_get(), gwlist_len(), gwlist_search_all(), handle_method_event(), method_is_holding(), wap_event_create, and wap_event_destroy().
|
static |
Definition at line 827 of file wsp_session.c.
References gwlist_append(), octstr_append_char(), octstr_append_uintvar(), octstr_create, wsp_cap_count(), wsp_cap_create(), wsp_cap_get_client_sdu(), wsp_cap_get_method_mor(), wsp_cap_get_push_mor(), wsp_cap_get_server_sdu(), WSP_CAPS_CLIENT_SDU_SIZE, WSP_CAPS_METHOD_MOR, WSP_CAPS_PROTOCOL_OPTIONS, WSP_CAPS_PUSH_MOR, and WSP_CAPS_SERVER_SDU_SIZE.
Referenced by make_capabilities_reply().
|
static |
Definition at line 1179 of file wsp_session.c.
References wap_addr_tuple_same().
Referenced by disconnect_other_sessions().
|
static |
Definition at line 754 of file wsp_session.c.
References capability::data, error(), gwlist_delete(), gwlist_get(), gwlist_len(), capability::id, capability::name, octstr_extract_uintvar(), octstr_get_char(), octstr_len(), octstr_set_bits(), warning(), wsp_cap_destroy(), wsp_cap_dump(), WSP_CAPS_CLIENT_SDU_SIZE, WSP_CAPS_EXTENDED_METHODS, WSP_CAPS_HEADER_CODE_PAGES, WSP_CAPS_PROTOCOL_OPTIONS, and WSP_CAPS_SERVER_SDU_SIZE.
Referenced by make_capabilities_reply().
|
static |
Definition at line 1235 of file wsp_session.c.
References dispatch_to_wtp_resp, and make_abort().
Referenced by cant_handle_event(), and find_session_machine().
|
static |
Definition at line 1242 of file wsp_session.c.
References dispatch_to_wtp_init, and make_abort().
|
static |
Definition at line 1254 of file wsp_session.c.
References dispatch_to_wtp_init, WAPEvent::type, WAPEvent::u, USER_ACKNOWLEDGEMENT, wap_addr_tuple_duplicate(), wap_event_create, wsp_pdu_destroy(), and wsp_pdu_pack().
|
static |
Definition at line 729 of file wsp_session.c.
Referenced by handle_method_event(), handle_push_event(), and handle_session_event().
Definition at line 954 of file wsp_session.c.
References gwlist_delete(), gwlist_get(), gwlist_len(), capability::id, is_default_cap(), capability::name, wsp_cap_count(), and wsp_cap_destroy().
Referenced by make_capabilities_reply().
|
static |
Definition at line 1137 of file wsp_session.c.
References wap_addr_tuple_same().
Referenced by find_session_machine().
|
static |
Definition at line 1210 of file wsp_session.c.
References http_create_empty_headers(), http_header_combine(), octstr_len(), and wsp_headers_unpack().
|
static |
Definition at line 1452 of file wsp_session.c.
References octstr_compare(), octstr_imm(), WSP_1_1, WSP_1_2, WSP_1_3, WSP_1_4, and WSP_1_5.
|
static |
Definition at line 1478 of file wsp_session.c.
References octstr_create, WSP_1_1, WSP_1_2, WSP_1_3, WSP_1_4, and WSP_1_5.
Referenced by make_reply_headers().
void wsp_session_dispatch_event | ( | WAPEvent * | event | ) |
Definition at line 228 of file wsp_session.c.
References gwlist_produce(), queue, and wap_event_assert().
Referenced by main(), main_thread(), response_push_connection(), and return_session_reply().
void wsp_session_init | ( | wap_dispatch_func_t * | responder_dispatch, |
wap_dispatch_func_t * | initiator_dispatch, | ||
wap_dispatch_func_t * | application_dispatch, | ||
wap_dispatch_func_t * | push_ota_dispatch | ||
) |
Definition at line 193 of file wsp_session.c.
References counter_create(), dispatch_to_appl, dispatch_to_ota, dispatch_to_wtp_init, dispatch_to_wtp_resp, gwlist_add_producer(), gwlist_create, gwthread_create, main_thread(), queue, run_status, running, session_id_counter, session_machines, and wsp_strings_init().
Referenced by main().
void wsp_session_shutdown | ( | void | ) |
Definition at line 211 of file wsp_session.c.
References counter_destroy(), debug(), gw_assert(), gwlist_destroy(), gwlist_len(), gwlist_remove_producer(), gwthread_join_every(), machine_destroy(), main_thread(), queue, run_status, running, session_id_counter, session_machines, terminating, wap_event_destroy_item(), and wsp_strings_shutdown().
Referenced by main().
|
static |
Definition at line 110 of file wsp_session.c.
Referenced by confirm_push(), indicate_disconnect(), indicate_method_abort(), indicate_pushabort(), indicate_resume(), indicate_suspend(), and wsp_session_init().
|
static |
Definition at line 111 of file wsp_session.c.
Referenced by wsp_session_init().
|
static |
Definition at line 109 of file wsp_session.c.
Referenced by send_abort_to_initiator(), send_invoke(), and wsp_session_init().
|
static |
Definition at line 108 of file wsp_session.c.
Referenced by method_abort(), send_abort(), and wsp_session_init().
|
static |
Definition at line 122 of file wsp_session.c.
Referenced by main_thread(), wsp_session_dispatch_event(), wsp_session_init(), and wsp_session_shutdown().
|
static |
Definition at line 120 of file wsp_session.c.
enum { ... } run_status |
Referenced by main_thread(), wsp_session_init(), and wsp_session_shutdown().
|
static |
Definition at line 124 of file wsp_session.c.
Referenced by next_wsp_session_id(), wsp_session_init(), and wsp_session_shutdown().
|
static |
Definition at line 123 of file wsp_session.c.
Referenced by disconnect_other_sessions(), find_session_machine(), find_session_machine_by_id(), machine_create(), machine_destroy(), wsp_session_init(), and wsp_session_shutdown().