Kannel: Open Source WAP and SMS gateway
svn-r5336
|
#include <ctype.h>
#include <string.h>
#include <inttypes.h>
#include <libxml/xmlmemory.h>
#include <libxml/parser.h>
#include <libxml/tree.h>
#include <libxml/debugXML.h>
#include <libxml/encoding.h>
#include "shared.h"
#include "wap_push_pap_compiler.h"
#include "wap_push_ppg.h"
Go to the source code of this file.
Data Structures | |
struct | pap_attributes_t |
Macros | |
#define | NUM_ELEMENTS sizeof(pap_elements)/sizeof(pap_elements[0]) |
#define | NUM_ATTRIBUTES sizeof(pap_attributes)/sizeof(pap_attributes[0]) |
#define | NUM_CODES sizeof(pap_codes)/sizeof(pap_codes[0]) |
#define | NUM_BEARER_TYPES sizeof(pap_bearer_types)/sizeof(pap_bearer_types[0]) |
#define | NUM_NETWORK_TYPES |
#define | create_octstr_from_node(node) (octstr_create(node->content)) |
#define | NUMBER_OF_IP6_BEARERS sizeof(ip6_bearers)/sizeof(ip6_bearers[0]) |
#define | NUMBER_OF_IP4_BEARERS sizeof(ip4_bearers)/sizeof(ip4_bearers[0]) |
Typedefs | |
typedef struct pap_attributes_t | pap_attributes_t |
Enumerations | |
enum | { NEITHER = 0, BEARER_ANY = 1, NETWORK_ANY = 2, EITHER = 3, ERROR_ANY = 4 } |
Functions | |
static int | parse_document (xmlDocPtr doc_p, WAPEvent **e) |
static int | parse_node (xmlNodePtr node, WAPEvent **e, long *type_of_address, int *is_any) |
static int | parse_element (xmlNodePtr node, WAPEvent **e, long *type_of_address, int *is_any) |
static int | parse_attribute (Octstr *element_name, xmlAttrPtr attribute, WAPEvent **e, long *type_of_address, int *is_any) |
static int | parse_attr_value (Octstr *element_name, Octstr *attr_name, Octstr *attr_value, WAPEvent **e, long *type_of_address, int *is_any) |
static int | set_attribute_value (Octstr *element_name, Octstr *attr_value, Octstr *attr_name, WAPEvent **e) |
static int | return_flag (Octstr *ros) |
static void | wap_event_accept_or_create (Octstr *element_name, WAPEvent **e) |
static int | parse_pap_value (Octstr *attr_name, Octstr *attr_value, WAPEvent **e) |
static int | parse_push_message_value (Octstr *attr_name, Octstr *attr_value, WAPEvent **e) |
static int | parse_address_value (Octstr *attr_name, Octstr *attr_value, WAPEvent **e, long *type_of_address) |
static int | parse_quality_of_service_value (Octstr *attr_name, Octstr *attr_value, WAPEvent **e, int *is_any) |
static int | parse_push_response_value (Octstr *attr_name, Octstr *attr_value, WAPEvent **e) |
static int | parse_progress_note_value (Octstr *attr_name, Octstr *attr_value, WAPEvent **e) |
static int | parse_bad_message_response_value (Octstr *attr_name, Octstr *attr_value, WAPEvent **e) |
static int | parse_response_result_value (Octstr *attr_name, Octstr *attr_value, WAPEvent **e) |
static int | parse_code (Octstr *attr_value) |
static Octstr * | parse_bearer (Octstr *attr_value) |
static Octstr * | parse_network (Octstr *attr_value) |
static int | parse_requirement (Octstr *attr_value) |
static int | parse_priority (Octstr *attr_value) |
static int | parse_delivery_method (Octstr *attr_value) |
static int | parse_state (Octstr *attr_value) |
static long | parse_wappush_client_address (Octstr **address, long pos, long *type_of_address) |
static long | parse_ppg_specifier (Octstr **address, long pos) |
static long | parse_client_specifier (Octstr **address, long pos, long *type_of_address) |
static long | parse_constant (const char *field_name, Octstr **address, long pos) |
static long | parse_dom_fragment (Octstr **address, long pos) |
static long | drop_character (Octstr **address, long pos) |
static long | parse_type (Octstr **address, Octstr **type_value, long pos) |
static long | parse_ext_qualifiers (Octstr **address, long pos, Octstr *type_value) |
static long | parse_global_phone_number (Octstr **address, long pos) |
static long | parse_ipv4 (Octstr **address, long pos) |
static long | parse_ipv6 (Octstr **address, long pos) |
static long | parse_escaped_value (Octstr **address, long pos) |
static Octstr * | prepend_char (Octstr *address, unsigned char c) |
static int | qualifiers (Octstr *address, long pos, Octstr *type) |
static long | parse_qualifier_value (Octstr **address, long pos) |
static long | parse_qualifier_keyword (Octstr **address, long pos) |
static long | parse_ipv4_fragment (Octstr **address, long pos) |
static long | parse_ipv6_fragment (Octstr **address, long pos) |
static int | wina_bearer_identifier (Octstr *type_value) |
static int | create_peek_window (Octstr **address, long *pos) |
static long | rest_unescaped (Octstr **address, long pos) |
static int | issafe (Octstr **address, long pos) |
static long | accept_safe (Octstr **address, long pos) |
static long | accept_escaped (Octstr **address, long pos) |
static long | handle_two_terminators (Octstr **address, long pos, unsigned char comma, unsigned char point, unsigned char c, long fragment_parsed, long fragment_length) |
static int | uses_gsm_msisdn_address (long bearer_required, Octstr *bearer) |
static int | uses_ipv4_address (long bearer_required, Octstr *bearer) |
static int | uses_ipv6_address (long bearer_required, Octstr *bearer) |
static int | event_semantically_valid (WAPEvent *e, long type_of_address) |
static char * | address_type (long type_of_address) |
static void | set_defaults (WAPEvent **e, long type_of_address) |
static void | set_bearer_defaults (WAPEvent **e, long type_of_address) |
static void | set_network_defaults (WAPEvent **e, long type_of_address) |
static int | set_anys (WAPEvent **e, long type_of_address, int is_any) |
static void | set_any_value (int *is_any, Octstr *attr_name, Octstr *attr_value) |
int | pap_compile (Octstr *pap_content, WAPEvent **e) |
int | parse_address (Octstr **address, long *type_of_address) |
Variables | |
static char * | pap_elements [] |
static pap_attributes_t | pap_attributes [] |
static int | pap_codes [] |
static char * | pap_bearer_types [] |
static char * | pap_network_types [] |
static char * | ip6_bearers [] |
static char * | ip4_bearers [] |
static char * | bearer_address [] |
static size_t | bearer_address_size |
#define create_octstr_from_node | ( | node | ) | (octstr_create(node->content)) |
Definition at line 327 of file wap_push_pap_compiler.c.
Referenced by check_variable_name(), get_do_element_name(), parse_attribute(), parse_cdata(), parse_text(), and string_table_collect_strings().
#define NUM_ATTRIBUTES sizeof(pap_attributes)/sizeof(pap_attributes[0]) |
Definition at line 176 of file wap_push_pap_compiler.c.
Referenced by parse_attribute().
#define NUM_BEARER_TYPES sizeof(pap_bearer_types)/sizeof(pap_bearer_types[0]) |
Definition at line 214 of file wap_push_pap_compiler.c.
Referenced by parse_bearer().
Definition at line 193 of file wap_push_pap_compiler.c.
Referenced by parse_code().
#define NUM_ELEMENTS sizeof(pap_elements)/sizeof(pap_elements[0]) |
Definition at line 125 of file wap_push_pap_compiler.c.
Referenced by parse_element().
#define NUM_NETWORK_TYPES |
Definition at line 234 of file wap_push_pap_compiler.c.
Referenced by parse_network().
#define NUMBER_OF_IP4_BEARERS sizeof(ip4_bearers)/sizeof(ip4_bearers[0]) |
Definition at line 652 of file wap_push_pap_compiler.c.
Referenced by uses_ipv4_address().
#define NUMBER_OF_IP6_BEARERS sizeof(ip6_bearers)/sizeof(ip6_bearers[0]) |
Definition at line 642 of file wap_push_pap_compiler.c.
Referenced by uses_ipv6_address().
typedef struct pap_attributes_t pap_attributes_t |
Definition at line 135 of file wap_push_pap_compiler.c.
anonymous enum |
Enumerator | |
---|---|
NEITHER | |
BEARER_ANY | |
NETWORK_ANY | |
EITHER | |
ERROR_ANY |
Definition at line 396 of file wap_push_pap_compiler.c.
|
static |
Definition at line 2141 of file wap_push_pap_compiler.c.
References drop_character(), octstr_create, octstr_destroy(), octstr_get_char(), octstr_hex_to_binary(), octstr_insert(), and prepend_char().
Referenced by parse_escaped_value().
|
static |
Definition at line 2125 of file wap_push_pap_compiler.c.
References octstr_get_char().
Referenced by parse_escaped_value(), and rest_unescaped().
|
static |
Definition at line 542 of file wap_push_pap_compiler.c.
References ADDR_IPV4, ADDR_IPV6, ADDR_PLMN, ADDR_USER, and ADDR_WINA.
Referenced by event_semantically_valid(), is_phone_number(), set_addr_tuple(), and transform_message().
|
static |
Definition at line 2083 of file wap_push_pap_compiler.c.
References octstr_get_char().
Referenced by parse_escaped_value().
|
static |
Definition at line 1718 of file wap_push_pap_compiler.c.
References octstr_delete().
Referenced by accept_escaped(), parse_client_specifier(), parse_constant(), parse_dom_fragment(), parse_escaped_value(), parse_global_phone_number(), parse_ppg_specifier(), parse_qualifier_keyword(), parse_qualifier_value(), and parse_type().
|
static |
Definition at line 569 of file wap_push_pap_compiler.c.
References ADDR_IPV4, ADDR_IPV6, ADDR_PLMN, address_type(), debug(), WAPEvent::type, WAPEvent::u, uses_gsm_msisdn_address(), uses_ipv4_address(), and uses_ipv6_address().
Referenced by parse_document().
|
static |
Definition at line 2174 of file wap_push_pap_compiler.c.
References comma, and octstr_delete().
Referenced by parse_ipv4_fragment(), and parse_ipv6_fragment().
|
static |
Definition at line 2117 of file wap_push_pap_compiler.c.
References octstr_get_char().
Referenced by parse_escaped_value().
Definition at line 350 of file wap_push_pap_compiler.c.
References error(), octstr_get_cstr, octstr_len(), octstr_search_char(), octstr_strip_blanks(), parse_document(), wap_event_destroy(), and warning().
Referenced by main(), pap_request_thread(), and receive_push_reply().
int parse_address | ( | Octstr ** | address, |
long * | type_of_address | ||
) |
Definition at line 1492 of file wap_push_pap_compiler.c.
References info(), octstr_delete(), octstr_destroy(), octstr_duplicate, octstr_get_char(), octstr_get_cstr, octstr_len(), octstr_search_char(), parse_ppg_specifier(), parse_wappush_client_address(), and warning().
Referenced by parse_address_value().
|
static |
Definition at line 1019 of file wap_push_pap_compiler.c.
References debug(), octstr_compare(), octstr_destroy(), octstr_duplicate, octstr_imm(), and parse_address().
Referenced by parse_attr_value().
|
static |
Definition at line 1242 of file wap_push_pap_compiler.c.
References debug(), octstr_compare(), octstr_imm(), parse_address_value(), parse_bad_message_response_value(), parse_pap_value(), parse_progress_note_value(), parse_push_message_value(), parse_push_response_value(), parse_quality_of_service_value(), parse_response_result_value(), and wap_event_accept_or_create().
Referenced by parse_attribute().
|
static |
Definition at line 856 of file wap_push_pap_compiler.c.
References create_octstr_from_node, debug(), error(), name, NUM_ATTRIBUTES, octstr_compare(), octstr_create, octstr_destroy(), octstr_get_cstr, octstr_imm(), pap_attributes, parse_attr_value(), set_attribute_value(), and pap_attributes_t::value.
Referenced by parse_element().
|
static |
Definition at line 1156 of file wap_push_pap_compiler.c.
References debug(), octstr_compare(), octstr_duplicate, octstr_imm(), and parse_code().
Referenced by parse_attr_value().
Definition at line 1361 of file wap_push_pap_compiler.c.
References NUM_BEARER_TYPES, octstr_case_compare(), octstr_imm(), pap_bearer_types, and warning().
Referenced by parse_quality_of_service_value().
|
static |
Definition at line 1587 of file wap_push_pap_compiler.c.
References ADDR_IPV4, ADDR_IPV6, ADDR_PLMN, ADDR_USER, ADDR_WINA, debug(), drop_character(), octstr_case_compare(), octstr_create, octstr_destroy(), octstr_imm(), parse_constant(), parse_error(), parse_escaped_value(), parse_ext_qualifiers(), parse_global_phone_number(), parse_ipv4(), parse_ipv6(), parse_type(), and wina_bearer_identifier().
Referenced by parse_wappush_client_address().
|
static |
Definition at line 1325 of file wap_push_pap_compiler.c.
References NUM_CODES, octstr_compare(), octstr_destroy(), octstr_format(), octstr_parse_long(), PAP_BAD_REQUEST, PAP_CLIENT_ABORTED, pap_codes, PAP_INTERNAL_SERVER_ERROR, PAP_OK, PAP_SERVICE_FAILURE, and warning().
Referenced by parse_bad_message_response_value(), and parse_response_result_value().
|
static |
Definition at line 1660 of file wap_push_pap_compiler.c.
References debug(), drop_character(), octstr_convert_range(), octstr_destroy(), octstr_format(), octstr_get_char(), octstr_len(), and size.
Referenced by parse_client_specifier(), and parse_wappush_client_address().
|
static |
Definition at line 1433 of file wap_push_pap_compiler.c.
References octstr_case_compare(), octstr_imm(), PAP_CONFIRMED, PAP_NOT_SPECIFIED, PAP_PREFERCONFIRMED, PAP_UNCONFIRMED, and warning().
Referenced by set_attribute_value().
|
static |
Definition at line 419 of file wap_push_pap_compiler.c.
References debug(), event_semantically_valid(), gw_assert(), info(), NEITHER, parse_node(), set_anys(), set_defaults(), wap_event_assert(), and warning().
Referenced by pap_compile().
|
static |
Definition at line 1696 of file wap_push_pap_compiler.c.
References drop_character(), and octstr_get_char().
Referenced by parse_ppg_specifier().
|
static |
Definition at line 792 of file wap_push_pap_compiler.c.
References debug(), name, NUM_ELEMENTS, octstr_compare(), octstr_create, octstr_destroy(), octstr_dump, octstr_imm(), octstr_len(), pap_elements, and parse_attribute().
Referenced by parse_node().
|
static |
Definition at line 1898 of file wap_push_pap_compiler.c.
References accept_escaped(), accept_safe(), create_peek_window(), drop_character(), issafe(), octstr_get_char(), and rest_unescaped().
Referenced by parse_client_specifier().
Definition at line 1744 of file wap_push_pap_compiler.c.
References debug(), parse_qualifier_keyword(), parse_qualifier_value(), qualifiers(), and type.
Referenced by parse_client_specifier().
|
static |
Definition at line 1772 of file wap_push_pap_compiler.c.
References debug(), drop_character(), and octstr_get_char().
Referenced by parse_client_specifier().
|
static |
Definition at line 1800 of file wap_push_pap_compiler.c.
References debug(), octstr_get_char(), and parse_ipv4_fragment().
Referenced by parse_client_specifier().
|
static |
Definition at line 2014 of file wap_push_pap_compiler.c.
References debug(), handle_two_terminators(), and octstr_get_char().
Referenced by parse_ipv4().
|
static |
Definition at line 1826 of file wap_push_pap_compiler.c.
References debug(), octstr_get_char(), and parse_ipv6_fragment().
Referenced by parse_client_specifier().
|
static |
Definition at line 2048 of file wap_push_pap_compiler.c.
References handle_two_terminators(), and octstr_get_char().
Referenced by parse_ipv6().
Definition at line 1376 of file wap_push_pap_compiler.c.
References NUM_NETWORK_TYPES, octstr_case_compare(), octstr_imm(), pap_network_types, and warning().
Referenced by parse_quality_of_service_value().
|
static |
Definition at line 744 of file wap_push_pap_compiler.c.
References parse_element(), and warning().
Referenced by parse_document().
Definition at line 943 of file wap_push_pap_compiler.c.
References debug(), octstr_compare(), octstr_get_cstr, octstr_imm(), and wap_event_dump().
Referenced by parse_attr_value().
|
static |
Definition at line 1550 of file wap_push_pap_compiler.c.
References drop_character(), octstr_delete(), octstr_get_char(), and parse_dom_fragment().
Referenced by parse_address().
|
static |
Definition at line 1413 of file wap_push_pap_compiler.c.
References octstr_case_compare(), octstr_imm(), PAP_HIGH, PAP_LOW, PAP_MEDIUM, and warning().
Referenced by set_attribute_value().
|
static |
Definition at line 1129 of file wap_push_pap_compiler.c.
References debug(), octstr_compare(), octstr_duplicate, octstr_imm(), parse_date(), parse_state(), and return_flag().
Referenced by parse_attr_value().
|
static |
Definition at line 972 of file wap_push_pap_compiler.c.
References debug(), octstr_compare(), octstr_destroy(), octstr_duplicate, octstr_imm(), parse_date(), and return_flag().
Referenced by parse_attr_value().
|
static |
Definition at line 1101 of file wap_push_pap_compiler.c.
References debug(), octstr_compare(), octstr_destroy(), octstr_duplicate, octstr_imm(), parse_date(), and return_flag().
Referenced by parse_attr_value().
|
static |
Definition at line 1998 of file wap_push_pap_compiler.c.
References drop_character(), and octstr_get_char().
Referenced by parse_ext_qualifiers().
|
static |
Definition at line 1981 of file wap_push_pap_compiler.c.
References drop_character(), and octstr_get_char().
Referenced by parse_ext_qualifiers().
|
static |
Definition at line 1038 of file wap_push_pap_compiler.c.
References debug(), octstr_compare(), octstr_duplicate, octstr_imm(), parse_bearer(), parse_network(), return_flag(), and set_any_value().
Referenced by parse_attr_value().
|
static |
Definition at line 1395 of file wap_push_pap_compiler.c.
References octstr_case_compare(), octstr_imm(), PAP_FALSE, PAP_TRUE, and warning().
Referenced by set_attribute_value().
|
static |
Definition at line 1177 of file wap_push_pap_compiler.c.
References debug(), octstr_compare(), octstr_duplicate, octstr_imm(), and parse_code().
Referenced by parse_attr_value().
|
static |
Definition at line 1456 of file wap_push_pap_compiler.c.
References octstr_case_compare(), octstr_imm(), PAP_ABORTED, PAP_CANCELLED, PAP_DELIVERED, PAP_EXPIRED, PAP_PENDING, PAP_TIMEOUT, PAP_UNDELIVERABLE, and warning().
Referenced by parse_progress_note_value().
Definition at line 1729 of file wap_push_pap_compiler.c.
References drop_character(), octstr_get_char(), and prepend_char().
Referenced by parse_client_specifier().
|
static |
Definition at line 1534 of file wap_push_pap_compiler.c.
References parse_client_specifier(), and parse_constant().
Referenced by parse_address().
Definition at line 1924 of file wap_push_pap_compiler.c.
References octstr_destroy(), octstr_format(), and octstr_insert().
Referenced by accept_escaped(), and parse_type().
Definition at line 1942 of file wap_push_pap_compiler.c.
References octstr_case_compare(), octstr_get_char(), octstr_imm(), and type.
Referenced by parse_ext_qualifiers().
|
static |
Definition at line 2102 of file wap_push_pap_compiler.c.
References accept_safe().
Referenced by parse_escaped_value().
|
static |
Definition at line 1220 of file wap_push_pap_compiler.c.
Referenced by parse_progress_note_value(), parse_push_message_value(), parse_push_response_value(), and parse_quality_of_service_value().
Definition at line 1064 of file wap_push_pap_compiler.c.
References BEARER_ANY, debug(), EITHER, ERROR_ANY, NEITHER, NETWORK_ANY, octstr_case_compare(), octstr_compare(), and octstr_imm().
Referenced by parse_quality_of_service_value().
|
static |
Definition at line 457 of file wap_push_pap_compiler.c.
References BEARER_ANY, EITHER, NEITHER, NETWORK_ANY, set_bearer_defaults(), set_defaults(), and set_network_defaults().
Referenced by parse_document().
|
static |
Definition at line 1283 of file wap_push_pap_compiler.c.
References octstr_compare(), octstr_imm(), parse_delivery_method(), parse_priority(), parse_requirement(), and wap_event_create.
Referenced by parse_attribute().
|
static |
Definition at line 490 of file wap_push_pap_compiler.c.
References ADDR_IPV4, ADDR_IPV6, ADDR_PLMN, ADDR_USER, ADDR_WINA, gw_assert(), octstr_destroy(), octstr_format(), and PAP_TRUE.
Referenced by set_anys(), and set_defaults().
|
static |
Definition at line 484 of file wap_push_pap_compiler.c.
References set_bearer_defaults(), and set_network_defaults().
Referenced by parse_document(), and set_anys().
|
static |
Definition at line 516 of file wap_push_pap_compiler.c.
References ADDR_IPV4, ADDR_IPV6, ADDR_PLMN, ADDR_USER, ADDR_WINA, gw_assert(), octstr_destroy(), octstr_format(), and PAP_TRUE.
Referenced by set_anys(), and set_defaults().
|
static |
Definition at line 661 of file wap_push_pap_compiler.c.
References octstr_case_compare(), and octstr_imm().
Referenced by event_semantically_valid().
|
static |
Definition at line 680 of file wap_push_pap_compiler.c.
References ip4_bearers, NUMBER_OF_IP4_BEARERS, octstr_case_compare(), and octstr_imm().
Referenced by event_semantically_valid().
|
static |
Definition at line 709 of file wap_push_pap_compiler.c.
References ip6_bearers, NUMBER_OF_IP6_BEARERS, octstr_case_compare(), and octstr_imm().
Referenced by event_semantically_valid().
Definition at line 1200 of file wap_push_pap_compiler.c.
References octstr_compare(), octstr_format(), octstr_imm(), and wap_event_create.
Referenced by parse_attr_value().
|
static |
Definition at line 1874 of file wap_push_pap_compiler.c.
References bearer_address, bearer_address_size, debug(), octstr_case_compare(), and octstr_imm().
Referenced by parse_client_specifier().
|
static |
Definition at line 1857 of file wap_push_pap_compiler.c.
Referenced by wina_bearer_identifier().
|
static |
Definition at line 1871 of file wap_push_pap_compiler.c.
Referenced by wina_bearer_identifier().
|
static |
Definition at line 644 of file wap_push_pap_compiler.c.
Referenced by uses_ipv4_address().
|
static |
Definition at line 638 of file wap_push_pap_compiler.c.
Referenced by uses_ipv6_address().
|
static |
Definition at line 137 of file wap_push_pap_compiler.c.
Referenced by parse_attribute().
|
static |
Definition at line 198 of file wap_push_pap_compiler.c.
Referenced by parse_bearer().
|
static |
Definition at line 181 of file wap_push_pap_compiler.c.
Referenced by parse_code().
|
static |
Definition at line 104 of file wap_push_pap_compiler.c.
Referenced by parse_element().
|
static |
Definition at line 220 of file wap_push_pap_compiler.c.
Referenced by parse_network().