Changeset 3028 for pjproject/trunk
- Timestamp:
- Dec 8, 2009 1:11:25 PM (15 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/include/pjnath/ice_strans.h
r2966 r3028 623 623 624 624 /** 625 * Get the number of local candidates for the specified component ID. 626 * 627 * @param ice_st The ICE stream transport. 628 * @param comp_id Component ID. 629 * 630 * @return The number of candidates. 631 */ 632 PJ_DECL(unsigned) pj_ice_strans_get_cands_count(pj_ice_strans *ice_st, 633 unsigned comp_id); 634 635 /** 625 636 * Enumerate the local candidates for the specified component. 626 637 * -
pjproject/trunk/pjnath/include/pjnath/turn_session.h
r2642 r3028 456 456 * 457 457 * @param sess The TURN client session. 458 * @param last_err Optional error code to be set to the session, 459 * which would be returned back in the \a info 460 * parameter of #pj_turn_session_get_info(). If 461 * this argument value is PJ_SUCCESS, the error 462 * code will not be set. If the session already 463 * has an error code set, this function will not 464 * overwrite that error code either. 458 465 * 459 466 * @return PJ_SUCCESS if the operation has been successful, 460 467 * or the appropriate error code on failure. 461 468 */ 462 PJ_DECL(pj_status_t) pj_turn_session_destroy(pj_turn_session *sess); 469 PJ_DECL(pj_status_t) pj_turn_session_destroy(pj_turn_session *sess, 470 pj_status_t last_err); 463 471 464 472 -
pjproject/trunk/pjnath/src/pjnath/ice_strans.c
r2966 r3028 913 913 914 914 /* 915 * Get number of candidates 916 */ 917 PJ_DEF(unsigned) pj_ice_strans_get_cands_count(pj_ice_strans *ice_st, 918 unsigned comp_id) 919 { 920 unsigned i, cnt; 921 922 PJ_ASSERT_RETURN(ice_st && ice_st->ice && comp_id && 923 comp_id <= ice_st->comp_cnt, 0); 924 925 cnt = 0; 926 for (i=0; i<ice_st->ice->lcand_cnt; ++i) { 927 if (ice_st->ice->lcand[i].comp_id != comp_id) 928 continue; 929 ++cnt; 930 } 931 932 return cnt; 933 } 934 935 /* 915 936 * Enum candidates 916 937 */ -
pjproject/trunk/pjnath/src/pjnath/turn_session.c
r2774 r3028 462 462 * Forcefully destroy the TURN session. 463 463 */ 464 PJ_DEF(pj_status_t) pj_turn_session_destroy( pj_turn_session *sess) 464 PJ_DEF(pj_status_t) pj_turn_session_destroy( pj_turn_session *sess, 465 pj_status_t last_err) 465 466 { 466 467 PJ_ASSERT_RETURN(sess, PJ_EINVAL); 467 468 469 if (last_err != PJ_SUCCESS && sess->last_status == PJ_SUCCESS) 470 sess->last_status = last_err; 468 471 set_state(sess, PJ_TURN_STATE_DEALLOCATED); 469 472 sess_shutdown(sess, PJ_SUCCESS); … … 960 963 PJ_FALSE, PJ_FALSE); 961 964 if (ch && ch->num != PJ_TURN_INVALID_CHANNEL && ch->bound) { 965 unsigned total_len; 966 962 967 /* Peer is assigned a channel number, we can use ChannelData */ 963 968 pj_turn_channel_data *cd = (pj_turn_channel_data*)sess->tx_pkt; … … 965 970 pj_assert(sizeof(*cd)==4); 966 971 967 if (pkt_len > sizeof(sess->tx_pkt)-sizeof(*cd)) { 972 /* Calculate total length, including paddings */ 973 total_len = (pkt_len + sizeof(*cd) + 3) & (~3); 974 if (total_len > sizeof(sess->tx_pkt)) { 968 975 status = PJ_ETOOBIG; 969 976 goto on_return; … … 976 983 pj_assert(sess->srv_addr != NULL); 977 984 978 status = sess->cb.on_send_pkt(sess, sess->tx_pkt, pkt_len+sizeof(*cd),985 status = sess->cb.on_send_pkt(sess, sess->tx_pkt, total_len, 979 986 sess->srv_addr, 980 987 pj_sockaddr_get_len(sess->srv_addr)); … … 1157 1164 } else { 1158 1165 if (parsed_len) { 1159 *parsed_len = cd.length + sizeof(cd); 1166 /* Apply padding too */ 1167 *parsed_len = ((cd.length + 3) & (~3)) + sizeof(cd); 1160 1168 } 1161 1169 } -
pjproject/trunk/pjnath/src/pjnath/turn_sock.c
r2966 r3028 274 274 pj_status_t status) 275 275 { 276 char errmsg[PJ_ERR_MSG_SIZE]; 277 278 if (status != PJ_SUCCESS) { 279 pj_strerror(status, errmsg, sizeof(errmsg)); 280 PJ_LOG(4,(turn_sock->obj_name, "%s: %s", title, errmsg)); 281 } else { 282 PJ_LOG(4,(turn_sock->obj_name, "%s", title, errmsg)); 283 } 276 PJ_PERROR(4,(turn_sock->obj_name, status, title)); 284 277 } 285 278 … … 289 282 { 290 283 show_err(turn_sock, title, status); 291 if (turn_sock->sess) 292 pj_turn_session_destroy(turn_sock->sess); 284 if (turn_sock->sess) { 285 pj_turn_session_destroy(turn_sock->sess, status); 286 } 293 287 } 294 288 … … 495 489 } 496 490 491 static pj_uint16_t GETVAL16H(const pj_uint8_t *buf, unsigned pos) 492 { 493 return (pj_uint16_t) ((buf[pos + 0] << 8) | \ 494 (buf[pos + 1] << 0)); 495 } 496 497 /* Quick check to determine if there is enough packet to process in the 498 * incoming buffer. Return the packet length, or zero if there's no packet. 499 */ 500 static unsigned has_packet(pj_turn_sock *turn_sock, const void *buf, pj_size_t bufsize) 501 { 502 pj_bool_t is_stun; 503 504 if (turn_sock->conn_type == PJ_TURN_TP_UDP) 505 return bufsize; 506 507 /* Quickly check if this is STUN message, by checking the first two bits and 508 * size field which must be multiple of 4 bytes 509 */ 510 is_stun = ((((pj_uint8_t*)buf)[0] & 0xC0) == 0) && 511 ((GETVAL16H((const pj_uint8_t*)buf, 2) & 0x03)==0); 512 513 if (is_stun) { 514 pj_size_t msg_len = GETVAL16H((const pj_uint8_t*)buf, 2); 515 return (msg_len+20 <= bufsize) ? msg_len+20 : 0; 516 } else { 517 /* This must be ChannelData. */ 518 pj_turn_channel_data cd; 519 520 if (bufsize < 4) 521 return 0; 522 523 /* Decode ChannelData packet */ 524 pj_memcpy(&cd, buf, sizeof(pj_turn_channel_data)); 525 cd.length = pj_ntohs(cd.length); 526 527 if (bufsize >= cd.length+sizeof(cd)) 528 return (cd.length+sizeof(cd)+3) & (~3); 529 else 530 return 0; 531 } 532 } 533 497 534 /* 498 535 * Notification from ioqueue when incoming UDP packet is received. … … 505 542 { 506 543 pj_turn_sock *turn_sock; 507 pj_size_t parsed_len;508 544 pj_bool_t ret = PJ_TRUE; 509 545 … … 512 548 513 549 if (status == PJ_SUCCESS && turn_sock->sess) { 514 /* Report incoming packet to TURN session */ 515 parsed_len = (unsigned)size; 516 pj_turn_session_on_rx_pkt(turn_sock->sess, data, size, &parsed_len); 517 if (parsed_len < (unsigned)size) { 518 *remainder = size - parsed_len; 519 pj_memmove(data, ((char*)data)+parsed_len, *remainder); 520 } else { 521 *remainder = 0; 550 /* Report incoming packet to TURN session, repeat while we have 551 * "packet" in the buffer (required for stream-oriented transports) 552 */ 553 unsigned pkt_len; 554 555 //PJ_LOG(5,(turn_sock->pool->obj_name, 556 // "Incoming data, %lu bytes total buffer", size)); 557 558 while ((pkt_len=has_packet(turn_sock, data, size)) != 0) { 559 pj_size_t parsed_len; 560 //const pj_uint8_t *pkt = (const pj_uint8_t*)data; 561 562 //PJ_LOG(5,(turn_sock->pool->obj_name, 563 // "Packet start: %02X %02X %02X %02X", 564 // pkt[0], pkt[1], pkt[2], pkt[3])); 565 566 //PJ_LOG(5,(turn_sock->pool->obj_name, 567 // "Processing %lu bytes packet of %lu bytes total buffer", 568 // pkt_len, size)); 569 570 parsed_len = (unsigned)size; 571 pj_turn_session_on_rx_pkt(turn_sock->sess, data, size, &parsed_len); 572 573 /* parsed_len may be zero if we have parsing error, so use our 574 * previous calculation to exhaust the bad packet. 575 */ 576 if (parsed_len == 0) 577 parsed_len = pkt_len; 578 579 if (parsed_len < (unsigned)size) { 580 *remainder = size - parsed_len; 581 pj_memmove(data, ((char*)data)+parsed_len, *remainder); 582 } else { 583 *remainder = 0; 584 } 585 size = *remainder; 586 587 //PJ_LOG(5,(turn_sock->pool->obj_name, 588 // "Buffer size now %lu bytes", size)); 522 589 } 523 590 } else if (status != PJ_SUCCESS && -
pjproject/trunk/pjsip-apps/src/samples/debug.c
r2846 r3028 29 29 * #include "playfile.c" 30 30 */ 31 #include " jbsim.c"31 #include "icedemo.c" 32 32 -
pjproject/trunk/pjsip-apps/src/samples/icedemo.c
r2724 r3028 48 48 pj_str_t turn_password; 49 49 pj_bool_t turn_fingerprint; 50 const char *log_file; 50 51 } opt; 51 52 … … 57 58 pj_ice_strans_cfg ice_cfg; 58 59 pj_ice_strans *icest; 60 FILE *log_fhnd; 59 61 60 62 /* Variables to store parsed remote ICE info */ … … 110 112 111 113 pj_shutdown(); 114 115 if (icedemo.log_fhnd) { 116 fclose(icedemo.log_fhnd); 117 icedemo.log_fhnd = NULL; 118 } 119 112 120 exit(status != PJ_SUCCESS); 113 121 } … … 217 225 PJ_UNUSED_ARG(pkt); 218 226 219 ((char*)pkt)[size] = '\0'; 220 221 PJ_LOG(3,(THIS_FILE, "Component %d: received %d bytes data from %s: \"%s\"", 227 // Don't do this! It will ruin the packet buffer in case TCP is used! 228 //((char*)pkt)[size] = '\0'; 229 230 PJ_LOG(3,(THIS_FILE, "Component %d: received %d bytes data from %s: \"%.*s\"", 222 231 comp_id, size, 223 232 pj_sockaddr_print(src_addr, ipstr, sizeof(ipstr), 3), 233 (unsigned)size, 224 234 (char*)pkt)); 225 235 } … … 236 246 (op==PJ_ICE_STRANS_OP_INIT? "initialization" : 237 247 (op==PJ_ICE_STRANS_OP_NEGOTIATION ? "negotiation" : "unknown_op")); 238 239 PJ_UNUSED_ARG(ice_st);240 248 241 249 if (status == PJ_SUCCESS) { … … 246 254 pj_strerror(status, errmsg, sizeof(errmsg)); 247 255 PJ_LOG(1,(THIS_FILE, "ICE %s failed: %s", opname, errmsg)); 248 } 249 } 250 256 pj_ice_strans_destroy(ice_st); 257 icedemo.icest = NULL; 258 } 259 } 260 261 /* log callback to write to file */ 262 static void log_func(int level, const char *data, int len) 263 { 264 if (icedemo.log_fhnd) 265 fwrite(data, len, 1, icedemo.log_fhnd); 266 pj_log_write(level, data, len); 267 } 251 268 252 269 /* … … 258 275 { 259 276 pj_status_t status; 277 278 if (icedemo.opt.log_file) { 279 icedemo.log_fhnd = fopen(icedemo.opt.log_file, "a"); 280 pj_log_set_log_func(&log_func); 281 } 260 282 261 283 /* Initialize the libraries before anything else */ … … 1148 1170 puts(" --max-host, -H N Set max number of host candidates to N"); 1149 1171 puts(" --regular, -R Use regular nomination (default aggressive)"); 1172 puts(" --log-file, -L FILE Save output to log FILE"); 1150 1173 puts(" --help, -h Display this screen."); 1151 1174 puts(""); … … 1183 1206 { "turn-password", 1, 0, 'p'}, 1184 1207 { "turn-fingerprint", 0, 0, 'F'}, 1185 { "regular", 0, 0, 'R'} 1208 { "regular", 0, 0, 'R'}, 1209 { "log-file", 1, 0, 'L'}, 1186 1210 }; 1187 1211 int c, opt_id; … … 1191 1215 icedemo.opt.max_host = -1; 1192 1216 1193 while((c=pj_getopt_long(argc,argv, "c:n:s:t:u:p:H: hTFR", long_options, &opt_id))!=-1) {1217 while((c=pj_getopt_long(argc,argv, "c:n:s:t:u:p:H:L:hTFR", long_options, &opt_id))!=-1) { 1194 1218 switch (c) { 1195 1219 case 'c': … … 1230 1254 icedemo.opt.regular = PJ_TRUE; 1231 1255 break; 1256 case 'L': 1257 icedemo.opt.log_file = pj_optarg; 1258 break; 1232 1259 default: 1233 1260 printf("Argument \"%s\" is not valid. Use -h to see help",
Note: See TracChangeset
for help on using the changeset viewer.