RegistrationRequest.cpp 29.1 KB
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 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811
#include "RegistrationRequest.hpp"
#include "3gpp_ts24501.hpp"
#include "logger.hpp"
#include "String2Value.hpp"
using namespace nas;

RegistrationRequest::RegistrationRequest(){
  plain_header = NULL;
  ie_5gsregistrationtype = NULL;
  ie_ngKSI = NULL;
  ie_5gs_mobility_id = NULL;
  ie_non_current_native_nas_ksi = NULL;
  ie_5g_mm_capability = NULL;
  ie_ue_security_capability = NULL;
    ie_requested_NSSAI = NULL;
  ie_s1_ue_network_capability = NULL;
  ie_uplink_data_status = NULL;
  ie_last_visited_registered_TAI = NULL;
  ie_PDU_session_status = NULL;
  ie_MICO_indicationl = NULL;
  ie_ue_status = NULL;
  ie_additional_guti = NULL;
  ie_allowed_PDU_session_status = NULL;
  ie_ues_usage_setting = NULL;
  ie_5gs_drx_parameters = NULL;
  ie_eps_nas_message_container = NULL;
  ie_ladn_indication = NULL;
  ie_payload_container_type = NULL;
  ie_payload_container = NULL;
  ie_network_slicing_indication = NULL;
  ie_5gs_update_type = NULL;
  ie_nas_message_container = NULL;
  ie_eps_bearer_context_status = NULL;
}

RegistrationRequest::~RegistrationRequest(){}

void RegistrationRequest::setHeader(uint8_t security_header_type){
  plain_header = new NasMmPlainHeader();
  plain_header->setHeader(EPD_5GS_MM_MSG, security_header_type, REGISTRATION_REQUEST);
}

void RegistrationRequest::set5gsRegistrationType(bool is_for, uint8_t type){
  ie_5gsregistrationtype = new _5GSRegistrationType(is_for ,type);
}
bool RegistrationRequest::get5GSRegistrationType(bool &is_for, uint8_t &reg_type/*3bits*/) {
	is_for=ie_5gsregistrationtype->isFollowOnReq();
	reg_type = ie_5gsregistrationtype->getRegType();
        return true;
}
void RegistrationRequest::setngKSI(uint8_t tsc, uint8_t key_set_id){
  ie_ngKSI = new NasKeySetIdentifier(tsc, key_set_id);
}
uint8_t RegistrationRequest::getngKSI() {
	if (ie_ngKSI)
	{
		uint8_t a=0;
		a = (ie_ngKSI->getTypeOfSecurityContext() ) | ie_ngKSI->getasKeyIdentifier();
		return a;
	}
	else {return -1;}
}
void RegistrationRequest::setSUCI_SUPI_format_IMSI(const string mcc, const string mnc, const string routingInd, uint8_t protection_sch_id, const string msin){
  if(protection_sch_id != NULL_SCHEME){
    Logger::nas_mm().error("encoding suci and supi format for imsi error, please choose right interface");
    return; 
  }else{
    ie_5gs_mobility_id = new _5GSMobilityIdentity(mcc, mnc, routingInd, protection_sch_id, msin);
  }
}
uint8_t RegistrationRequest::getMobilityIdentityType() {
	if (ie_5gs_mobility_id) {
		return ie_5gs_mobility_id->gettypeOfIdentity();
	}
	else { return -1; }
}
bool RegistrationRequest::getSuciSupiFormatImsi(nas::SUCI_imsi_t &imsi) {
	if (ie_5gs_mobility_id) {
		ie_5gs_mobility_id->getSuciWithSupiImsi(imsi);
		return true;
	}
	else { return false; }
}

std::string RegistrationRequest::get_5g_guti(){
  if(ie_5gs_mobility_id){
    nas::_5G_GUTI_t guti;
    ie_5gs_mobility_id->get5GGUTI(guti);
    return (guti.mcc + guti.mnc + std::to_string(guti.amf_region_id) + std::to_string(guti.amf_set_id) + std::to_string(guti.amf_pointer) + std::to_string(guti._5g_tmsi));
  }else{
    return "error";
  }
}

//Additional_GUTI
void RegistrationRequest::setAdditional_GUTI_SUCI_SUPI_format_IMSI(const string mcc, const string mnc, uint8_t amf_region_id, uint8_t amf_set_id, uint8_t amf_pointer, const string _5g_tmsi) {
	/*if (amf_pointer&0x80) {
		Logger::nas_mm().error("encoding suci and supi format for imsi error, please choose right interface");
		return;
	}
	else {*/
		ie_additional_guti = new _5GSMobilityIdentity();
		ie_additional_guti->setIEI(0x77);
                uint32_t tmsi = fromString<uint32_t>(_5g_tmsi);
		ie_additional_guti->set5GGUTI( mcc, mnc, amf_region_id, amf_set_id, amf_pointer, tmsi);
	//}
}
bool RegistrationRequest::getAdditionalGuti(nas::_5G_GUTI_t &guti){
	if(ie_additional_guti){
		ie_additional_guti->get5GGUTI(guti);
		return 0;
}
	else{return -1;}
}
void RegistrationRequest::setSUCI_SUPI_format_IMSI(const string mcc, const string mnc, const string routingInd, uint8_t protection_sch_id, uint8_t hnpki, const string msin){}

void RegistrationRequest::set5G_GUTI(){}
void RegistrationRequest::setIMEI_IMEISV(){}
void RegistrationRequest::set5G_S_TMSI(){}

void RegistrationRequest::setNon_current_native_nas_ksi(uint8_t tsc, uint8_t key_set_id){
  ie_non_current_native_nas_ksi = new NasKeySetIdentifier(0xC,tsc, key_set_id);
}
uint8_t RegistrationRequest::getNonCurrentNativeNasKSI() {
	if (ie_non_current_native_nas_ksi) {
		 uint8_t a=0;
	 a |= (ie_non_current_native_nas_ksi->getTypeOfSecurityContext() ) |( ie_non_current_native_nas_ksi->getasKeyIdentifier());
		return a;
	}
	else { return -1; }
}
void RegistrationRequest::set5G_MM_capability(uint8_t value){
  ie_5g_mm_capability = new _5GMMCapability(0x10,value);
}
uint8_t RegistrationRequest::get5GMMCapability(){
  if(ie_5g_mm_capability)
    return ie_5g_mm_capability->getValue();
  else
    return -1;
}
void RegistrationRequest::setUE_Security_Capability(uint8_t g_EASel, uint8_t g_IASel) {
	ie_ue_security_capability = new UESecurityCapability(0x2E, g_EASel, g_IASel);
}
bool RegistrationRequest::getUeSecurityCapability(uint8_t &ea, uint8_t &ia) {
	if (ie_ue_security_capability) {
		ea = ie_ue_security_capability->getEASel();
		ia = ie_ue_security_capability->getIASel();
	}
	else { return -1; }
}
void RegistrationRequest::setRequested_NSSAI(std::vector<struct SNSSAI_s> nssai) {
	ie_requested_NSSAI = new NSSAI(0x2F, nssai);
}
bool RegistrationRequest::getRequestedNssai(std::vector<struct SNSSAI_s> & nssai){
	if (ie_requested_NSSAI) {
	ie_requested_NSSAI->getValue(nssai);	
  }
  else { return -1; }

}
void RegistrationRequest::setLast_Visited_Registered_TAI(uint8_t MNC_MCC1, uint8_t MNC_MCC2, uint8_t MNC_MCC3, uint32_t TAC) {
	ie_last_visited_registered_TAI = new _5GS_Tracking_Area_Identity(0x52, MNC_MCC1, MNC_MCC2, MNC_MCC3, TAC);
}
void RegistrationRequest::setUENetworkCapability(uint8_t g_EEASel, uint8_t g_EIASel){
  ie_s1_ue_network_capability = new UENetworkCapability(0x17, g_EEASel, g_EIASel);
}
bool RegistrationRequest::getS1UeNetworkCapability(uint8_t &eea, uint8_t &eia) {
	  if (ie_s1_ue_network_capability) {
		  eea = ie_s1_ue_network_capability->getEEASel();
		  eia = ie_s1_ue_network_capability->getEIASel();
	  }
	  else { return -1; }
  }
void RegistrationRequest::setUplink_data_status(uint16_t value) {
	ie_uplink_data_status = new UplinkDataStatus(0x40, value);
}
uint16_t RegistrationRequest::getUplinkDataStatus() {
	if (ie_uplink_data_status) {
		return ie_uplink_data_status->getValue();
	}
	else { return -1; }
}
void RegistrationRequest::setPDU_session_status(uint16_t value) {
	ie_PDU_session_status = new PDU_Session_Status(0x50, value);
}
uint16_t RegistrationRequest::getPduSessionStatus() {
	  if (ie_PDU_session_status) {
		  return ie_PDU_session_status->getValue();
	  }
	  else { return -1; }
  }
void RegistrationRequest::setMICO_Indication(bool sprti, bool raai) {
	ie_MICO_indicationl = new MICO_Indication(0x0B, sprti,raai);
}
bool RegistrationRequest::getMicoIndication(uint8_t &sprti, uint8_t &raai){
		if (ie_PDU_session_status) {
		  sprti = ie_MICO_indicationl->getSPRTI();
		  raai = ie_MICO_indicationl->getRAAI();
		  return 0;
	  }
	  else { return -1; }
}
void RegistrationRequest::setUE_Status(bool n1, bool s1) {
	ie_ue_status = new UE_Status(0x2B, n1, s1);
}
bool RegistrationRequest::getUeStatus(uint8_t &n1ModeReg, uint8_t &s1ModeReg){
	  if (ie_ue_status) {
		  n1ModeReg = ie_ue_status->getN1();
		  s1ModeReg = ie_ue_status->getS1();
		  return 0;
	  }
	  else { return -1; }
  }
void RegistrationRequest::setAllowed_PDU_Session_Status(uint16_t value) {
        ie_allowed_PDU_session_status = new Allowed_PDU_Session_Status(0x25, value);
}
 uint16_t RegistrationRequest::getAllowedPduSessionStatus(){
	  if (ie_allowed_PDU_session_status) {
		  return ie_allowed_PDU_session_status->getValue();
	  }
	  else { return -1; }
  }
void RegistrationRequest::setUES_Usage_Setting(bool ues_usage_setting) {
        ie_ues_usage_setting = new UES_Usage_Setting(0x18, ues_usage_setting);
}
uint8_t RegistrationRequest::getUEsUsageSetting() {
	  if (ie_ues_usage_setting) {
		  return ie_ues_usage_setting->getValue();
	  }
	  else { return -1; }
  }
void RegistrationRequest::set_5GS_DRX_arameters(uint8_t value) {
	ie_5gs_drx_parameters = new _5GS_DRX_arameters(0x51, value);
}
uint8_t RegistrationRequest::get5GSDrxParameters(){
	  if (ie_5gs_drx_parameters) {
		  return ie_5gs_drx_parameters->getValue();
	  }
	  else { return -1; }
  }
void RegistrationRequest::setEPS_NAS_Message_Container(bstring value) {
	ie_eps_nas_message_container = new EPS_NAS_Message_Container(0x70, value);
}
bool RegistrationRequest::getEpsNasMessageContainer(bstring &epsNas){
		if (ie_eps_nas_message_container) {
			ie_eps_nas_message_container->getValue(epsNas);
			return 0;
		}
		else { return -1; }
	}
void RegistrationRequest::setLADN_Indication(std::vector<bstring> ladnValue){
	ie_ladn_indication = new LADN_Indication(0x74, ladnValue);
}
bool RegistrationRequest::getLadnIndication(std::vector<bstring> &ladnValue) {
	  if (ie_ladn_indication) {
		  return ie_ladn_indication->getValue(ladnValue);
	  }
	  else { return -1; }
  }
void RegistrationRequest::setPayload_Container_Type(uint8_t value) {
	ie_payload_container_type = new Payload_Container_Type(0x08, value);
}
uint8_t RegistrationRequest::getPayloadContainerType(){
	  if (ie_payload_container_type) {
		  return ie_payload_container_type->getValue();
	  }
	  else { return -1; }
  }
void RegistrationRequest::setPayload_Container(std::vector<PayloadContainerEntry> content) {
	ie_payload_container = new Payload_Container(0x7B,content);
}
bool RegistrationRequest::getPayloadContainer(std::vector<PayloadContainerEntry> &content) {
	if (ie_payload_container) {
		ie_payload_container->getValue(content);
		return 0;
	}
	else { return -1; }
}
void RegistrationRequest::setNetwork_Slicing_Indication(bool dcni, bool nssci) {
        ie_network_slicing_indication = new Network_Slicing_Indication(0x09, dcni,nssci);
}
bool RegistrationRequest::getNetworkSlicingIndication(uint8_t &dcni, uint8_t &nssci){
	  if (ie_network_slicing_indication) {
		  dcni = ie_network_slicing_indication->getDCNI();
		  nssci = ie_network_slicing_indication->getNSSCI();
		  return 0;
	  }
	  else { return -1; }
  }
void RegistrationRequest::set_5GS_Update_Type(uint8_t eps_pnb_ciot, uint8_t _5gs_pnb_ciot, bool ng_ran, bool sms) {
	ie_5gs_update_type = new _5GS_Update_Type(0x53, eps_pnb_ciot,  _5gs_pnb_ciot,ng_ran, sms);
}
bool RegistrationRequest::get5GSUpdateType(uint8_t &eps_pnb_ciot,uint8_t &_5gs_pnb_ciot, bool &ng_ran_rcu, bool &sms_requested){
	  if (ie_5gs_update_type) {
		  eps_pnb_ciot = ie_5gs_update_type->getEPS_PNB_CIoT();
		  _5gs_pnb_ciot = ie_5gs_update_type->get_5GS_PNB_CIoT();
		  ng_ran_rcu = ie_5gs_update_type->getNG_RAN();
		  sms_requested = ie_5gs_update_type->getSMS();
		  return 0;
	  }
	  else { return -1; }
  }
void RegistrationRequest::setNAS_Message_Container(bstring value) {
	ie_nas_message_container = new NAS_Message_Container(0x71, value);
}
bool RegistrationRequest::getNasMessageContainer(bstring &nas)
  {
	  if (ie_nas_message_container) {
		  ie_nas_message_container->getValue(nas);
		  return 0;
	  }
	  else { return -1; }
  }
void RegistrationRequest::setEPS_Bearer_Context_Status(uint16_t value) {
	ie_eps_bearer_context_status = new EPS_Bearer_Context_Status(0x60, value);
}
uint16_t RegistrationRequest::getEpsBearerContextStatus() {
	  if (ie_eps_bearer_context_status) {
		  return ie_eps_bearer_context_status->getValue();
	  }
	  else { return -1; }
  }
void RegistrationRequest::get5gsRegistrationType(bool &is_for, uint8_t &type){
  is_for = ie_5gsregistrationtype->isFollowOnReq();
  type = ie_5gsregistrationtype->getRegType();
}

int RegistrationRequest::encode2buffer(uint8_t *buf, int len){
  Logger::nas_mm().debug("encoding RegistrationRequest message");
  int encoded_size = 0;
  if(!plain_header){
    Logger::nas_mm().error("Mandontary IE missing Header");
    return 0;
  }
  if(!ie_5gsregistrationtype){
    Logger::nas_mm().error("Mandontary IE missing ie_5gsregistrationtype");
    return 0;
  }
  if(!ie_ngKSI){
    Logger::nas_mm().error("Mandontary IE missing ie_ngKSI");
    return 0;
  }
  if(!ie_5gs_mobility_id){
    Logger::nas_mm().error("Mandontary IE missing ie_5gs_mobility_id");
    return 0;
  }
  if(!(plain_header->encode2buffer(buf, len))) return 0;
  encoded_size += 3;
  if(!(ie_5gsregistrationtype->encode2buffer(buf+encoded_size, len-encoded_size))){
    if(!(ie_ngKSI->encode2buffer(buf+encoded_size, len-encoded_size))){
      encoded_size += 1;
    }else{
      Logger::nas_mm().error("encoding ie ie_ngKSI error");
      return 0;
    }
  }else{
    Logger::nas_mm().error("encoding ie 5gsregistrationtype error");
    return 0;
  }
  if(int size = ie_5gs_mobility_id->encode2buffer(buf+encoded_size, len-encoded_size)){
    encoded_size += size;
  }else{
    Logger::nas_mm().error("encoding ie ie_5gs_mobility_id  error");
    return 0;
  }
  if(!ie_non_current_native_nas_ksi){
    Logger::nas_mm().warn("IE non_current_native_nas_ksi is not avaliable");
  }else{
    if(ie_non_current_native_nas_ksi->encode2buffer(buf+encoded_size, len-encoded_size) == 1){
      encoded_size++;
    }else{
      Logger::nas_mm().error("encoding ie_non_current_native_nas_ksi  error");
    }
  }
  if(!ie_5g_mm_capability){
    Logger::nas_mm().warn("IE ie_5g_mm_capability is not avaliable");
  }else{
    if(int size = ie_5g_mm_capability->encode2buffer(buf+encoded_size, len-encoded_size)){
      encoded_size += size;
    }else{
      Logger::nas_mm().error("encoding ie_5g_mm_capability  error");
      return 0;
    }
  }
 if (!ie_ue_security_capability) {
	  Logger::nas_mm().warn("IE ie_ue_security_capability is not avaliable");
  }
  else {
	  if (int size = ie_ue_security_capability->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_ue_security_capability  error");
		  return 0;
	  }
  }
if (!ie_requested_NSSAI) {
	  Logger::nas_mm().warn("IE ie_requested_NSSAI is not avaliable");
  }
  else {
	  if (int size = ie_requested_NSSAI->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_requested_NSSAI  error");
		  return 0;
	  }
  }
if (!ie_last_visited_registered_TAI) {
	  Logger::nas_mm().warn("IE ie_Last_visited_registered_TAI is not avaliable");
  }
  else {
	  if (int size = ie_last_visited_registered_TAI->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_Last_visited_registered_TAI  error");
		  return 0;
	  }
  }
if (!ie_s1_ue_network_capability) {
	  Logger::nas_mm().warn("IE ie_s1_ue_network_capability is not avaliable");
  }
  else {
	  if (int size = ie_s1_ue_network_capability->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_s1_ue_network_capability  error");
		  return 0;
	  }
  }
if (!ie_uplink_data_status) {
          Logger::nas_mm().warn("IE ie_uplink_data_status is not avaliable");
  }
  else {
          if (int size = ie_uplink_data_status->encode2buffer(buf + encoded_size, len - encoded_size)) {
                  encoded_size += size;
          }
          else {
                  Logger::nas_mm().error("encoding ie_uplink_data_status  error");
                  return 0;
          }
  }
if (!ie_PDU_session_status) {
	  Logger::nas_mm().warn("IE ie_PDU_session_status is not avaliable");
  }
  else {
	  if (int size = ie_PDU_session_status->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_PDU_session_status  error");
		  return 0;
	  }
  }
if (!ie_MICO_indicationl) {
	  Logger::nas_mm().warn("IE ie_MICO_indicationl is not avaliable");
  }
  else {
	  if (int size = ie_MICO_indicationl->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_MICO_indicationl  error");
		  return 0;
	  }
  }
  if (!ie_ue_status) {
	  Logger::nas_mm().warn("IE ie_ue_status is not avaliable");
  }
  else {
	  if (int size = ie_ue_status->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_ue_status  error");
		  return 0;
	  }
  }
  if (!ie_additional_guti) {
          Logger::nas_mm().warn("IE ie_additional_guti- is not avaliable");
  }
  else {
           if(int size = ie_additional_guti->encode2buffer(buf+encoded_size, len-encoded_size)){
  		  encoded_size += size;
 	 }else{
   	 Logger::nas_mm().error("encoding ie ie_additional_guti  error");
   	 return 0;
 	 }

  }
  if (!ie_allowed_PDU_session_status) {
          Logger::nas_mm().warn("IE ie_allowed_PDU_session_status is not avaliable");
  }
  else {
          if (int size = ie_allowed_PDU_session_status->encode2buffer(buf + encoded_size, len - encoded_size)) {
                  encoded_size += size;
          }
          else {
                  Logger::nas_mm().error("encoding ie_allowed_PDU_session_status  error");
                  return 0;
          }
  }
  if (!ie_ues_usage_setting) {
          Logger::nas_mm().warn("IE ie_ues_usage_setting is not avaliable");
  }
  else {
          if (int size = ie_ues_usage_setting->encode2buffer(buf + encoded_size, len - encoded_size)) {
                  encoded_size += size;
          }
          else {
                  Logger::nas_mm().error("encoding ie_ues_usage_setting  error");
                  return 0;
          }
  }
  if (!ie_5gs_drx_parameters) {
	  Logger::nas_mm().warn("IE ie_5gs_drx_parameters is not avaliable");
  }
  else {
	  if (int size = ie_5gs_drx_parameters->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_5gs_drx_parameters  error");
		  return 0;
	  }
  }
  if (!ie_eps_nas_message_container) {
	  Logger::nas_mm().warn("IE ie_eps_nas_message_container is not avaliable");
  }
  else {
	  if (int size = ie_eps_nas_message_container->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_eps_nas_message_container  error");
		  return 0;
	  }
  }
   if (!ie_ladn_indication) {
	  Logger::nas_mm().warn("IE ie_ladn_indication is not avaliable");
  }
  else {
	  if (int size = ie_ladn_indication->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_ladn_indication  error");
		  return 0;
	  }
  }
  if (!ie_payload_container_type) {
	  Logger::nas_mm().warn("IE ie_payload_container_type is not avaliable");
  }
  else {
	  if (int size = ie_payload_container_type->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_payload_container_type  error");
		  return 0;
	  }
  }
  if (!ie_payload_container) {
	  Logger::nas_mm().warn("IE ie_payload_container is not avaliable");
  }
  else {
	  if (int size = ie_payload_container->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_payload_container  error");
		  return 0;
	  }
  }
  if (!ie_network_slicing_indication) {
          Logger::nas_mm().warn("IE ie_network_slicing_indication is not avaliable");
  }
  else {
          if (int size = ie_network_slicing_indication->encode2buffer(buf + encoded_size, len - encoded_size)) {
                  encoded_size += size;
          }
          else {
                  Logger::nas_mm().error("encoding ie_network_slicing_indication  error");
                  return 0;
          }
  }
  if (!ie_5gs_update_type) {
	  Logger::nas_mm().warn("IE ie_5gs_update_type is not avaliable");
  }
  else {
	  if (int size = ie_5gs_update_type->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_5gs_update_type  error");
		  return 0;
	  }
  }

 if (!ie_nas_message_container) {
	  Logger::nas_mm().warn("IE ie_nas_message_container is not avaliable");
  }
  else {
	  if (int size = ie_nas_message_container->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_nas_message_container  error");
		  return 0;
	  }
}
  if (!ie_eps_bearer_context_status) {
	  Logger::nas_mm().warn("IE ie_eps_bearer_context_status is not avaliable");
  }
  else {
	  if (int size = ie_eps_bearer_context_status->encode2buffer(buf + encoded_size, len - encoded_size)) {
		  encoded_size += size;
	  }
	  else {
		  Logger::nas_mm().error("encoding ie_eps_bearer_context_status  error");
		  return 0;
	  }
  }
    Logger::nas_mm().debug("encoded RegistrationRequest message len(%d)",encoded_size);
  return 1;
}

int RegistrationRequest::decodefrombuffer(NasMmPlainHeader * header, uint8_t *buf, int len){
  Logger::nas_mm().debug("decoding RegistrationRequest message");
  int decoded_size = 3; 
  plain_header = header;
  ie_5gsregistrationtype = new _5GSRegistrationType();
  decoded_size += ie_5gsregistrationtype->decodefrombuffer(buf+decoded_size,len-decoded_size,false);
  ie_ngKSI = new NasKeySetIdentifier();
  decoded_size += ie_ngKSI->decodefrombuffer(buf+decoded_size,len-decoded_size,false, true);
  decoded_size ++;
  ie_5gs_mobility_id = new _5GSMobilityIdentity();
  decoded_size += ie_5gs_mobility_id->decodefrombuffer(buf+decoded_size,len-decoded_size,false); 
  Logger::nas_mm().debug("decoded_size(%d)",decoded_size);
  uint8_t octet = *(buf+decoded_size);
  Logger::nas_mm().debug("first option iei(0x%x)",octet);
  while((octet != 0x0)){
    switch((octet&0xf0)>>4){
      case 0xC:{
        Logger::nas_mm().debug("decoding iei(0xC)");
        ie_non_current_native_nas_ksi = new NasKeySetIdentifier();
        decoded_size += ie_non_current_native_nas_ksi->decodefrombuffer(buf+decoded_size,len-decoded_size,true, false);
        octet = *(buf+decoded_size);
        Logger::nas_mm().debug("next iei(0x%x)",octet);
      }break;
      case 0xB:{
	 Logger::nas_mm().debug("decoding iei(0xB)");
		  ie_MICO_indicationl = new MICO_Indication();
		  decoded_size += ie_MICO_indicationl->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
		  octet = *(buf + decoded_size);
		  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x08:{
	 Logger::nas_mm().debug("decoding iei(0x8)");
		  ie_payload_container_type = new Payload_Container_Type();
		  decoded_size += ie_payload_container_type->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
		  octet = *(buf + decoded_size);
		  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x9:{
	Logger::nas_mm().debug("decoding iei(0x9)");
                  ie_network_slicing_indication = new Network_Slicing_Indication();
                  decoded_size += ie_network_slicing_indication->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
                  octet = *(buf + decoded_size);
                  Logger::nas_mm().debug("next iei(0x%x)", octet);

      }break; 
    }
    switch(octet){
      case 0x10:{
        Logger::nas_mm().debug("decoding iei(0x10)");
        ie_5g_mm_capability = new _5GMMCapability();
        decoded_size += ie_5g_mm_capability->decodefrombuffer(buf+decoded_size,len-decoded_size,true);
        octet = *(buf+decoded_size);
        Logger::nas_mm().debug("next iei(0x%x)",octet);
      }break;
      case 0x2E:{
	Logger::nas_mm().debug("decoding iei(0x2E)");
		  ie_ue_security_capability = new UESecurityCapability();
		  decoded_size += ie_ue_security_capability->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
		  octet = *(buf + decoded_size);
		  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x2F:{
	Logger::nas_mm().debug("decoding iei(0x2F)");
		  ie_requested_NSSAI = new NSSAI();
		  decoded_size += ie_requested_NSSAI->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
		  octet = *(buf + decoded_size);
		  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x52:{
	Logger::nas_mm().debug("decoding iei(0x52)");
		  ie_last_visited_registered_TAI = new _5GS_Tracking_Area_Identity();
		  decoded_size += ie_last_visited_registered_TAI->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
		  octet = *(buf + decoded_size);
		  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x17:{
	Logger::nas_mm().debug("decoding iei(0x17)");
	ie_s1_ue_network_capability = new UENetworkCapability();
	decoded_size += ie_s1_ue_network_capability->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
	octet = *(buf + decoded_size);
	 Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x40:{
	 Logger::nas_mm().debug("decoding iei(0x40)");
                  ie_uplink_data_status = new UplinkDataStatus();
                  decoded_size += ie_uplink_data_status->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
                  octet = *(buf + decoded_size);
                  Logger::nas_mm().debug("next iei(0x%x)", octet);

      }break;
      case 0x50:{
	Logger::nas_mm().debug("decoding iei(0x50)");
		  ie_PDU_session_status = new PDU_Session_Status();
		  decoded_size += ie_PDU_session_status->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
		  octet = *(buf + decoded_size);
		  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x2B:{
	Logger::nas_mm().debug("decoding iei(0x2B)");
		  ie_ue_status = new UE_Status();
		  decoded_size += ie_ue_status->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
		  octet = *(buf + decoded_size);
		  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x77:{
	Logger::nas_mm().debug("decoding iei(0x77)");
                  ie_additional_guti = new _5GSMobilityIdentity();
                  decoded_size += ie_additional_guti->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
                  octet = *(buf + decoded_size);
                  Logger::nas_mm().debug("next iei(0x%x)", octet);

      }break;
      case 0x25:{
	Logger::nas_mm().debug("decoding iei(0x25)");
                  ie_allowed_PDU_session_status = new Allowed_PDU_Session_Status();
                  decoded_size += ie_allowed_PDU_session_status->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
                  octet = *(buf + decoded_size);
                  Logger::nas_mm().debug("next iei(0x%x)", octet);

      }break;
      case 0x18:{
	Logger::nas_mm().debug("decoding iei(0x18)");
                  ie_ues_usage_setting = new UES_Usage_Setting();
                  decoded_size += ie_ues_usage_setting->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
                  octet = *(buf + decoded_size);
                  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x51:{
	Logger::nas_mm().debug("decoding iei(0x51)");
	ie_5gs_drx_parameters = new _5GS_DRX_arameters();
		  decoded_size += ie_5gs_drx_parameters->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
		  octet = *(buf + decoded_size);
		  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x70:{
	Logger::nas_mm().debug("decoding iei(0x70)");
	ie_eps_nas_message_container = new EPS_NAS_Message_Container();
		  decoded_size += ie_eps_nas_message_container->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
		  octet = *(buf + decoded_size);
		  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x74:{
	Logger::nas_mm().debug("decoding iei(0x74)");
		  ie_ladn_indication = new LADN_Indication();
		  decoded_size += ie_ladn_indication->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
		  octet = *(buf + decoded_size);
		  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x7B:{
	Logger::nas_mm().debug("decoding iei(0x7B)");
		  ie_payload_container = new Payload_Container();
		  decoded_size += ie_payload_container->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
		  octet = *(buf + decoded_size);
		  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x53:{
	 Logger::nas_mm().debug("decoding iei(0x53)");
		  ie_5gs_update_type = new _5GS_Update_Type();
		  decoded_size += ie_5gs_update_type->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
		  octet = *(buf + decoded_size);
		  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x71:{
	Logger::nas_mm().debug("decoding iei(0x71)");
		  ie_nas_message_container = new NAS_Message_Container();
		  decoded_size += ie_nas_message_container->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
		  octet = *(buf + decoded_size);
		  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
      case 0x60:{
	Logger::nas_mm().debug("decoding iei(0x71)");
		  ie_eps_bearer_context_status = new EPS_Bearer_Context_Status();
		  decoded_size += ie_eps_bearer_context_status->decodefrombuffer(buf + decoded_size, len - decoded_size, true);
		  octet = *(buf + decoded_size);
		  Logger::nas_mm().debug("next iei(0x%x)", octet);
      }break;
    }
  }
  Logger::nas_mm().debug("decoded RegistrationRequest message len(%d)",decoded_size);
  
   
}