ngap_gNB_overload.c 3.51 KB
Newer Older
zhenghuangkun's avatar
zhenghuangkun committed
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
/*
 * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The OpenAirInterface Software Alliance licenses this file to You under
 * the OAI Public License, Version 1.1  (the "License"); you may not use this file
 * except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.openairinterface.org/?page_id=698
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *-------------------------------------------------------------------------------
 * For more information about the OpenAirInterface (OAI) Software Alliance:
 *      contact@openairinterface.org
 */

/*! \file ngap_gNB_overload.c
 * \brief ngap procedures for overload messages within gNB
 * \author Sebastien ROUX <sebastien.roux@eurecom.fr>
 * \date 2012
 * \version 0.1
 */

#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>

#include "intertask_interface.h"

#include "ngap_common.h"
#include "ngap_gNB_defs.h"

#include "ngap_gNB.h"
#include "ngap_gNB_ue_context.h"
#include "ngap_gNB_encoder.h"
#include "ngap_gNB_overload.h"
#include "ngap_gNB_management_procedures.h"

#include "assertions.h"

int ngap_gNB_handle_overload_start(uint32_t         assoc_id,
                                   uint32_t         stream,
                                   NGAP_NGAP_PDU_t *pdu)
{
zhenghuangkun's avatar
zhenghuangkun committed
50
    ngap_gNB_amf_data_t     *amf_desc_p;
zhenghuangkun's avatar
zhenghuangkun committed
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
    NGAP_OverloadStart_t    *container;
    NGAP_OverloadStartIEs_t *ie;

    DevAssert(pdu != NULL);

    container = &pdu->choice.initiatingMessage.value.choice.OverloadStart;

    NGAP_FIND_PROTOCOLIE_BY_ID(NGAP_OverloadStartIEs_t, ie, container,
                               NGAP_ProtocolIE_ID_id_OverloadResponse, true);
    if (ie != NULL) {
        DevCheck(ie->value.choice.OverloadResponse.present ==
                 NGAP_OverloadResponse_PR_overloadAction,
                 NGAP_OverloadResponse_PR_overloadAction, 0, 0);
    }
    /* Non UE-associated signalling -> stream 0 */
    DevCheck(stream == 0, stream, 0, 0);

zhenghuangkun's avatar
zhenghuangkun committed
68 69
    if ((amf_desc_p = ngap_gNB_get_AMF(NULL, assoc_id, 0)) == NULL) {
        /* No AMF context associated */
zhenghuangkun's avatar
zhenghuangkun committed
70 71 72
        return -1;
    }

zhenghuangkun's avatar
zhenghuangkun committed
73
    /* Mark the AMF as overloaded and set the overload state according to
zhenghuangkun's avatar
zhenghuangkun committed
74 75
     * the value received.
     */
zhenghuangkun's avatar
zhenghuangkun committed
76 77
    amf_desc_p->state = NGAP_GNB_OVERLOAD;
    amf_desc_p->overload_state =
zhenghuangkun's avatar
zhenghuangkun committed
78 79 80 81 82 83 84 85 86
        ie->value.choice.OverloadResponse.choice.overloadAction;

    return 0;
}

int ngap_gNB_handle_overload_stop(uint32_t         assoc_id,
                                  uint32_t         stream,
                                  NGAP_NGAP_PDU_t *pdu)
{
zhenghuangkun's avatar
zhenghuangkun committed
87
    /* We received Overload stop message, meaning that the AMF is no more
zhenghuangkun's avatar
zhenghuangkun committed
88 89 90 91 92
     * overloaded. This is an empty message, with only message header and no
     * Information Element.
     */
    DevAssert(pdu != NULL);

zhenghuangkun's avatar
zhenghuangkun committed
93
    ngap_gNB_amf_data_t *amf_desc_p;
zhenghuangkun's avatar
zhenghuangkun committed
94 95 96 97

    /* Non UE-associated signalling -> stream 0 */
    DevCheck(stream == 0, stream, 0, 0);

zhenghuangkun's avatar
zhenghuangkun committed
98 99
    if ((amf_desc_p = ngap_gNB_get_AMF(NULL, assoc_id, 0)) == NULL) {
        /* No AMF context associated */
zhenghuangkun's avatar
zhenghuangkun committed
100 101 102
        return -1;
    }

zhenghuangkun's avatar
zhenghuangkun committed
103 104
    amf_desc_p->state = NGAP_GNB_STATE_CONNECTED;
    amf_desc_p->overload_state = NGAP_NO_OVERLOAD;
zhenghuangkun's avatar
zhenghuangkun committed
105 106
    return 0;
}