1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
|
/*
* $Id: parse_supported.c,v 1.4 2006/03/02 15:56:12 bogdan_iancu Exp $
*
* Supported parser.
*
* Copyright (C) 2006 Andreas Granig <agranig@linguin.org>
*
* This file is part of openser, a free SIP server.
*
* openser is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* openser 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "../mem/mem.h"
#include "keys.h"
#include "parse_supported.h"
#define IS_DELIM(c) (*(c) == ' ' || *(c) == '\t' || *(c) == '\r' || *(c) == '\n' || *(c) == ',')
/* from parser/parse_hname2.c: */
#define LOWER_BYTE(b) ((b) | 0x20)
#define LOWER_DWORD(d) ((d) | 0x20202020)
#define READ(val) \
(*(val + 0) + (*(val + 1) << 8) + (*(val + 2) << 16) + (*(val + 3) << 24))
/*
* Parse Supported HF body.
*/
static inline int parse_supported_body(str *body, unsigned int *sup)
{
register char* p;
register unsigned int val;
int len, pos = 0;
*sup = 0;
p = body->s;
len = body->len;
while (pos < len) {
/* skip spaces and commas */
for (; pos < len && IS_DELIM(p); ++pos, ++p);
val = LOWER_DWORD(READ(p));
switch (val) {
/* "path" */
case _path_:
if(pos + 4 <= len && IS_DELIM(p+4)) {
*sup |= F_SUPPORTED_PATH;
pos += 5; p += 5;
}
break;
/* "100rel" */
case _100r_:
if ( pos+6 <= len
&& LOWER_BYTE(*(p+4))=='e' && LOWER_BYTE(*(p+5))=='l'
&& IS_DELIM(p+6)) {
*sup |= F_SUPPORTED_100REL;
pos += SUPPORTED_100REL_LEN + 1;
p += SUPPORTED_100REL_LEN + 1;
}
break;
/* "timer" */
case _time_:
if ( pos+5 <= len && LOWER_BYTE(*(p+4))=='r'
&& IS_DELIM(p+5) ) {
*sup |= F_SUPPORTED_TIMER;
pos += SUPPORTED_TIMER_LEN + 1;
p += SUPPORTED_TIMER_LEN + 1;
}
break;
/* unknown */
default:
/* skip element */
for (; pos < len && !IS_DELIM(p); ++pos, ++p);
break;
}
}
return 0;
}
/*
* Parse all Supported headers
*/
int parse_supported( struct sip_msg *msg)
{
unsigned int supported;
struct hdr_field *hdr;
struct supported_body *sb;
/* maybe the header is already parsed! */
if (msg->supported && msg->supported->parsed)
return 0;
/* parse to the end in order to get all SUPPORTED headers */
if (parse_headers(msg,HDR_EOH_F,0)==-1 || !msg->supported)
return -1;
/* bad luck! :-( - we have to parse them */
supported = 0;
for( hdr=msg->supported ; hdr ; hdr=hdr->sibling) {
if (hdr->parsed) {
supported |= ((struct supported_body*)hdr->parsed)->supported;
continue;
}
sb = (struct supported_body*)pkg_malloc(sizeof(struct supported_body));
if (sb == 0) {
LOG(L_ERR, "ERROR:parse_supported: Out of pkg_memory\n");
return -1;
}
parse_supported_body(&(hdr->body), &(sb->supported));
sb->supported_all = 0;
hdr->parsed = (void*)sb;
supported |= sb->supported;
}
((struct supported_body*)msg->supported->parsed)->supported_all =
supported;
return 0;
}
|