| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include "binding.h" |
| #include "s5c-build.h" |
| #include "pfcp-path.h" |
| #include "gtp-path.h" |
|
|
| #include "ipfw/ipfw2.h" |
|
|
| static void gtp_bearer_timeout(ogs_gtp_xact_t *xact, void *data) |
| { |
| smf_bearer_t *bearer = NULL; |
| ogs_pool_id_t bearer_id = OGS_INVALID_POOL_ID; |
| smf_sess_t *sess = NULL; |
| smf_ue_t *smf_ue = NULL; |
| uint8_t type = 0; |
|
|
| ogs_assert(xact); |
| type = xact->seq[0].type; |
|
|
| ogs_assert(data); |
| bearer_id = OGS_POINTER_TO_UINT(data); |
| ogs_assert(bearer_id >= OGS_MIN_POOL_ID && bearer_id <= OGS_MAX_POOL_ID); |
|
|
| bearer = smf_bearer_find_by_id(bearer_id); |
| if (!bearer) { |
| ogs_error("Bearer has already been removed [%d]", type); |
| return; |
| } |
|
|
| sess = smf_sess_find_by_id(bearer->sess_id); |
| ogs_assert(sess); |
| smf_ue = smf_ue_find_by_id(sess->smf_ue_id); |
| ogs_assert(smf_ue); |
|
|
| switch (type) { |
| case OGS_GTP2_CREATE_BEARER_REQUEST_TYPE: |
| ogs_error("[%s] No Create Bearer Response", smf_ue->imsi_bcd); |
| ogs_assert(OGS_OK == |
| smf_epc_pfcp_send_one_bearer_modification_request( |
| bearer, OGS_INVALID_POOL_ID, OGS_PFCP_MODIFY_REMOVE, |
| OGS_NAS_PROCEDURE_TRANSACTION_IDENTITY_UNASSIGNED, |
| OGS_GTP2_CAUSE_UNDEFINED_VALUE)); |
| break; |
| case OGS_GTP2_UPDATE_BEARER_REQUEST_TYPE: |
| ogs_error("[%s] No Update Bearer Response", smf_ue->imsi_bcd); |
| break; |
| default: |
| ogs_error("GTP Timeout : IMSI[%s] Message-Type[%d]", |
| smf_ue->imsi_bcd, type); |
| break; |
| } |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| static void encode_traffic_flow_template( |
| ogs_gtp2_tft_t *tft, smf_bearer_t *bearer, uint8_t tft_operation_code) |
| { |
| int i; |
| smf_pf_t *pf = NULL; |
|
|
| ogs_assert(tft); |
| ogs_assert(bearer); |
|
|
| memset(tft, 0, sizeof(*tft)); |
| tft->code = tft_operation_code; |
|
|
| i = 0; |
| if (tft_operation_code != OGS_GTP2_TFT_CODE_DELETE_EXISTING_TFT && |
| tft_operation_code != OGS_GTP2_TFT_CODE_NO_TFT_OPERATION) { |
| ogs_list_for_each_entry(&bearer->pf_to_add_list, pf, to_add_node) { |
| ogs_assert(i < OGS_MAX_NUM_OF_FLOW_IN_GTP); |
| tft->pf[i].identifier = pf->identifier - 1; |
|
|
| |
| |
| if (tft_operation_code != |
| OGS_GTP2_TFT_CODE_DELETE_PACKET_FILTERS_FROM_EXISTING) { |
|
|
| tft->pf[i].direction = pf->direction; |
| tft->pf[i].precedence = pf->precedence - 1; |
|
|
| ogs_pf_content_from_ipfw_rule( |
| pf->direction, &tft->pf[i].content, &pf->ipfw_rule, |
| ogs_global_conf()->parameter. |
| no_ipv4v6_local_addr_in_packet_filter); |
| } |
|
|
| i++; |
| } |
| } |
| tft->num_of_packet_filter = i; |
| } |
|
|
| void smf_bearer_binding(smf_sess_t *sess) |
| { |
| int rv; |
| int i, j; |
|
|
| ogs_assert(sess); |
|
|
| for (i = 0; i < sess->policy.num_of_pcc_rule; i++) { |
| smf_bearer_t *bearer = NULL; |
| ogs_pcc_rule_t *pcc_rule = &sess->policy.pcc_rule[i]; |
|
|
| ogs_assert(pcc_rule); |
| if (pcc_rule->name == NULL) { |
| ogs_error("No PCC Rule Name"); |
| continue; |
| } |
|
|
| if (pcc_rule->type == OGS_PCC_RULE_TYPE_INSTALL) { |
| bool bearer_created = false; |
| bool qos_presence = false; |
|
|
| bearer = smf_bearer_find_by_pcc_rule_name(sess, pcc_rule->name); |
| if (!bearer) { |
| ogs_pfcp_pdr_t *dl_pdr = NULL, *ul_pdr = NULL; |
|
|
| if (pcc_rule->num_of_flow == 0) { |
| |
| |
| ogs_error("No flow in PCC Rule"); |
| continue; |
| } |
|
|
| if (ogs_list_count(&sess->bearer_list) >= |
| OGS_MAX_NUM_OF_BEARER) { |
| ogs_error("Bearer Overflow[%d]", |
| ogs_list_count(&sess->bearer_list)); |
| continue; |
| } |
|
|
| bearer = smf_bearer_add(sess); |
| ogs_assert(bearer); |
|
|
| dl_pdr = bearer->dl_pdr; |
| ogs_assert(dl_pdr); |
| ul_pdr = bearer->ul_pdr; |
| ogs_assert(ul_pdr); |
|
|
| |
| dl_pdr->precedence = dl_pdr->id; |
| ul_pdr->precedence = ul_pdr->id; |
|
|
| ogs_assert(sess->pfcp_node); |
| if (sess->pfcp_node->up_function_features.ftup) { |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| ul_pdr->f_teid.ipv4 = 1; |
| ul_pdr->f_teid.ipv6 = 1; |
| ul_pdr->f_teid.ch = 1; |
| ul_pdr->f_teid_len = 1; |
| } else { |
| ogs_gtpu_resource_t *resource = NULL; |
| resource = ogs_pfcp_find_gtpu_resource( |
| &sess->pfcp_node->gtpu_resource_list, |
| sess->session.name, ul_pdr->src_if); |
| if (resource) { |
| ogs_user_plane_ip_resource_info_to_sockaddr( |
| &resource->info, |
| &bearer->pgw_s5u_addr, &bearer->pgw_s5u_addr6); |
| if (resource->info.teidri) |
| bearer->pgw_s5u_teid = OGS_PFCP_GTPU_INDEX_TO_TEID( |
| ul_pdr->teid, resource->info.teidri, |
| resource->info.teid_range); |
| else |
| bearer->pgw_s5u_teid = ul_pdr->teid; |
| } else { |
| if (sess->pfcp_node->addr.ogs_sa_family == AF_INET) |
| ogs_assert(OGS_OK == |
| ogs_copyaddrinfo(&bearer->pgw_s5u_addr, |
| &sess->pfcp_node->addr)); |
| else if (sess->pfcp_node->addr.ogs_sa_family == |
| AF_INET6) |
| ogs_assert(OGS_OK == |
| ogs_copyaddrinfo(&bearer->pgw_s5u_addr6, |
| &sess->pfcp_node->addr)); |
| else |
| ogs_assert_if_reached(); |
|
|
| bearer->pgw_s5u_teid = ul_pdr->teid; |
| } |
|
|
| ogs_assert(OGS_OK == |
| ogs_pfcp_sockaddr_to_f_teid( |
| bearer->pgw_s5u_addr, bearer->pgw_s5u_addr6, |
| &ul_pdr->f_teid, &ul_pdr->f_teid_len)); |
| ul_pdr->f_teid.teid = bearer->pgw_s5u_teid; |
| } |
|
|
| bearer->pcc_rule.name = ogs_strdup(pcc_rule->name); |
| ogs_assert(bearer->pcc_rule.name); |
|
|
| memcpy(&bearer->qos, &pcc_rule->qos, sizeof(ogs_qos_t)); |
|
|
| bearer_created = true; |
|
|
| } else { |
| ogs_assert(strcmp(bearer->pcc_rule.name, pcc_rule->name) == 0); |
|
|
| if ((pcc_rule->qos.mbr.downlink && |
| bearer->qos.mbr.downlink != pcc_rule->qos.mbr.downlink) || |
| (pcc_rule->qos.mbr.uplink && |
| bearer->qos.mbr.uplink != pcc_rule->qos.mbr.uplink) || |
| (pcc_rule->qos.gbr.downlink && |
| bearer->qos.gbr.downlink != pcc_rule->qos.gbr.downlink) || |
| (pcc_rule->qos.gbr.uplink && |
| bearer->qos.gbr.uplink != pcc_rule->qos.gbr.uplink)) { |
| |
| memcpy(&bearer->qos, &pcc_rule->qos, sizeof(ogs_qos_t)); |
|
|
| |
| qos_presence = true; |
| } |
| } |
|
|
| |
| |
| |
| |
| |
| |
| ogs_list_init(&bearer->pf_to_add_list); |
|
|
| for (j = 0; j < pcc_rule->num_of_flow; j++) { |
| smf_pf_t *pf = NULL; |
| ogs_flow_t *flow = &pcc_rule->flow[j]; |
|
|
| if (!flow) { |
| ogs_error("No Flow"); |
| return; |
| } |
| if (!flow->description) { |
| ogs_error("No Flow-Description"); |
| return; |
| } |
|
|
| |
| |
| |
| |
| if (smf_pf_find_by_flow( |
| bearer, flow->direction, flow->description) != NULL) { |
| continue; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| pf = smf_pf_add(bearer); |
| if (!pf) { |
| ogs_error("Overflow: PacketFilter in Bearer"); |
| break; |
| } |
|
|
| pf->direction = flow->direction; |
| pf->flow_description = ogs_strdup(flow->description); |
| ogs_assert(pf->flow_description); |
|
|
| rv = ogs_ipfw_compile_rule( |
| &pf->ipfw_rule, pf->flow_description); |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| if (flow->direction == OGS_FLOW_UPLINK_ONLY) |
| ogs_ipfw_rule_swap(&pf->ipfw_rule); |
|
|
| if (rv != OGS_OK) { |
| ogs_error("Invalid Flow-Description[%s]", |
| pf->flow_description); |
| smf_pf_remove(pf); |
| break; |
| } |
|
|
| |
| |
| |
| |
| |
| ogs_list_add(&bearer->pf_to_add_list, &pf->to_add_node); |
| } |
|
|
| if (bearer_created == false && |
| qos_presence == false && |
| ogs_list_count(&bearer->pf_to_add_list) == 0) { |
| ogs_warn("No need to send 'Update Bearer Request'"); |
| ogs_warn("bearer_created:%d, qos_presence:%d, rule_count:%d", |
| bearer_created, qos_presence, |
| ogs_list_count(&bearer->pf_to_add_list)); |
| continue; |
| } |
|
|
| if (bearer_created == true) { |
|
|
| smf_bearer_tft_update(bearer); |
| smf_bearer_qos_update(bearer); |
|
|
| ogs_assert(OGS_OK == |
| smf_epc_pfcp_send_one_bearer_modification_request( |
| bearer, OGS_INVALID_POOL_ID, OGS_PFCP_MODIFY_CREATE, |
| OGS_NAS_PROCEDURE_TRANSACTION_IDENTITY_UNASSIGNED, |
| OGS_GTP2_CAUSE_UNDEFINED_VALUE)); |
| } else { |
| uint64_t pfcp_flags = OGS_PFCP_MODIFY_NETWORK_REQUESTED; |
|
|
| if (ogs_list_count(&bearer->pf_to_add_list) > 0) { |
| pfcp_flags |= OGS_PFCP_MODIFY_EPC_TFT_UPDATE; |
| smf_bearer_tft_update(bearer); |
| } |
| if (qos_presence == true) { |
| pfcp_flags |= OGS_PFCP_MODIFY_EPC_QOS_UPDATE; |
| smf_bearer_qos_update(bearer); |
| } |
| ogs_assert(OGS_OK == |
| smf_epc_pfcp_send_one_bearer_modification_request( |
| bearer, OGS_INVALID_POOL_ID, pfcp_flags, |
| OGS_NAS_PROCEDURE_TRANSACTION_IDENTITY_UNASSIGNED, |
| OGS_GTP2_CAUSE_UNDEFINED_VALUE)); |
| } |
|
|
| } else if (pcc_rule->type == OGS_PCC_RULE_TYPE_REMOVE) { |
| bearer = smf_bearer_find_by_pcc_rule_name(sess, pcc_rule->name); |
|
|
| if (!bearer) { |
| ogs_warn("No need to send 'Delete Bearer Request'"); |
| ogs_warn(" - Bearer[Name:%s] has already been removed.", |
| pcc_rule->name); |
| continue; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| ogs_assert(OGS_OK == |
| smf_epc_pfcp_send_one_bearer_modification_request( |
| bearer, OGS_INVALID_POOL_ID, |
| OGS_PFCP_MODIFY_DL_ONLY|OGS_PFCP_MODIFY_DEACTIVATE, |
| OGS_NAS_PROCEDURE_TRANSACTION_IDENTITY_UNASSIGNED, |
| OGS_GTP2_CAUSE_UNDEFINED_VALUE)); |
| } else { |
| ogs_error("Invalid Type[%d]", pcc_rule->type); |
| } |
| } |
| } |
|
|
| int smf_gtp2_send_create_bearer_request(smf_bearer_t *bearer) |
| { |
| int rv; |
|
|
| smf_sess_t *sess = NULL; |
| ogs_gtp_xact_t *xact = NULL; |
|
|
| ogs_gtp2_header_t h; |
| ogs_pkbuf_t *pkbuf = NULL; |
| ogs_gtp2_tft_t tft; |
|
|
| ogs_assert(bearer); |
| sess = smf_sess_find_by_id(bearer->sess_id); |
| ogs_assert(sess); |
|
|
| h.type = OGS_GTP2_CREATE_BEARER_REQUEST_TYPE; |
| h.teid = sess->sgw_s5c_teid; |
|
|
| memset(&tft, 0, sizeof tft); |
| encode_traffic_flow_template( |
| &tft, bearer, OGS_GTP2_TFT_CODE_CREATE_NEW_TFT); |
|
|
| pkbuf = smf_s5c_build_create_bearer_request(h.type, bearer, &tft); |
| if (!pkbuf) { |
| ogs_error("smf_s5c_build_create_bearer_request() failed"); |
| return OGS_ERROR; |
| } |
|
|
| xact = ogs_gtp_xact_local_create( |
| sess->gnode, &h, pkbuf, gtp_bearer_timeout, |
| OGS_UINT_TO_POINTER(bearer->id)); |
| if (!xact) { |
| ogs_error("ogs_gtp_xact_local_create() failed"); |
| return OGS_ERROR; |
| } |
| xact->local_teid = sess->smf_n4_teid; |
|
|
| rv = ogs_gtp_xact_commit(xact); |
| ogs_expect(rv == OGS_OK); |
|
|
| return rv; |
| } |
|
|
| int smf_gtp2_send_update_bearer_request(smf_bearer_t *bearer) |
| { |
| int rv; |
|
|
| smf_sess_t *sess = NULL; |
| ogs_gtp_xact_t *xact = NULL; |
|
|
| ogs_gtp2_header_t h; |
| ogs_pkbuf_t *pkbuf = NULL; |
| ogs_gtp2_tft_t tft; |
|
|
| ogs_assert(bearer); |
| sess = smf_sess_find_by_id(bearer->sess_id); |
| ogs_assert(sess); |
|
|
| memset(&h, 0, sizeof(ogs_gtp2_header_t)); |
| h.type = OGS_GTP2_UPDATE_BEARER_REQUEST_TYPE; |
| h.teid = sess->sgw_s5c_teid; |
|
|
| memset(&tft, 0, sizeof tft); |
| if (ogs_list_count(&bearer->pf_to_add_list) > 0) { |
| encode_traffic_flow_template(&tft, bearer, |
| OGS_GTP2_TFT_CODE_ADD_PACKET_FILTERS_TO_EXISTING_TFT); |
| } |
|
|
| pkbuf = smf_s5c_build_update_bearer_request( |
| h.type, bearer, |
| OGS_NAS_PROCEDURE_TRANSACTION_IDENTITY_UNASSIGNED, |
| (ogs_list_count(&bearer->pf_to_add_list) > 0) ? |
| &tft : NULL, true); |
| if (!pkbuf) { |
| ogs_error("smf_s5c_build_update_bearer_request() failed"); |
| return OGS_ERROR; |
| } |
|
|
| xact = ogs_gtp_xact_local_create( |
| sess->gnode, &h, pkbuf, gtp_bearer_timeout, |
| OGS_UINT_TO_POINTER(bearer->id)); |
| if (!xact) { |
| ogs_error("ogs_gtp_xact_local_create() failed"); |
| return OGS_ERROR; |
| } |
| xact->local_teid = sess->smf_n4_teid; |
| xact->update_flags |= OGS_GTP_MODIFY_QOS_UPDATE; |
| if (ogs_list_count(&bearer->pf_to_add_list) > 0) |
| xact->update_flags |= OGS_GTP_MODIFY_TFT_UPDATE; |
|
|
| rv = ogs_gtp_xact_commit(xact); |
| ogs_expect(rv == OGS_OK); |
|
|
| return rv; |
| } |
|
|
| void smf_qos_flow_binding(smf_sess_t *sess) |
| { |
| int rv; |
| int i, j; |
|
|
| uint64_t pfcp_flags, check; |
|
|
| ogs_assert(sess); |
|
|
| pfcp_flags = OGS_PFCP_MODIFY_NETWORK_REQUESTED; |
|
|
| ogs_list_init(&sess->qos_flow_to_modify_list); |
|
|
| for (i = 0; i < sess->policy.num_of_pcc_rule; i++) { |
| smf_bearer_t *qos_flow = NULL; |
| ogs_pcc_rule_t *pcc_rule = &sess->policy.pcc_rule[i]; |
|
|
| ogs_assert(pcc_rule); |
| if (pcc_rule->id == NULL) { |
| ogs_error("No PCC Rule Id"); |
| continue; |
| } |
|
|
| if (pcc_rule->type == OGS_PCC_RULE_TYPE_INSTALL) { |
| smf_pf_t *pf = NULL; |
| ogs_pfcp_pdr_t *dl_pdr = NULL, *ul_pdr = NULL; |
|
|
| bool qos_flow_created = false; |
| bool qos_presence = false; |
|
|
| qos_flow = smf_qos_flow_find_by_pcc_rule_id(sess, pcc_rule->id); |
| if (!qos_flow) { |
| if (pcc_rule->num_of_flow == 0) { |
| |
| |
| ogs_error("No flow in PCC Rule"); |
| continue; |
| } |
|
|
| if (ogs_list_count(&sess->bearer_list) >= |
| OGS_MAX_NUM_OF_BEARER) { |
| ogs_error("QosFlow Overflow[%d]", |
| ogs_list_count(&sess->bearer_list)); |
| continue; |
| } |
|
|
| qos_flow = smf_qos_flow_add(sess); |
| ogs_assert(qos_flow); |
|
|
| dl_pdr = qos_flow->dl_pdr; |
| ogs_assert(dl_pdr); |
| ul_pdr = qos_flow->ul_pdr; |
| ogs_assert(ul_pdr); |
|
|
| |
| dl_pdr->precedence = pcc_rule->precedence; |
| ul_pdr->precedence = pcc_rule->precedence; |
|
|
| |
| ogs_assert(sess->pfcp_node); |
| if (sess->pfcp_node->up_function_features.ftup) { |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| ul_pdr->f_teid.ipv4 = 1; |
| ul_pdr->f_teid.ipv6 = 1; |
| ul_pdr->f_teid.ch = 1; |
| ul_pdr->f_teid.chid = 1; |
| ul_pdr->f_teid.choose_id = OGS_PFCP_DEFAULT_CHOOSE_ID; |
| ul_pdr->f_teid_len = 2; |
| } else { |
| ogs_assert(OGS_OK == |
| ogs_pfcp_sockaddr_to_f_teid( |
| sess->upf_n3_addr, sess->upf_n3_addr6, |
| &ul_pdr->f_teid, &ul_pdr->f_teid_len)); |
| ul_pdr->f_teid.teid = sess->upf_n3_teid; |
| } |
|
|
| qos_flow->pcc_rule.id = ogs_strdup(pcc_rule->id); |
| ogs_assert(qos_flow->pcc_rule.id); |
|
|
| memcpy(&qos_flow->qos, &pcc_rule->qos, sizeof(ogs_qos_t)); |
|
|
| qos_flow_created = true; |
|
|
| } else { |
| ogs_assert(strcmp(qos_flow->pcc_rule.id, pcc_rule->id) == 0); |
|
|
| if ((pcc_rule->qos.mbr.downlink && |
| qos_flow->qos.mbr.downlink != pcc_rule->qos.mbr.downlink) || |
| (pcc_rule->qos.mbr.uplink && |
| qos_flow->qos.mbr.uplink != pcc_rule->qos.mbr.uplink) || |
| (pcc_rule->qos.gbr.downlink && |
| qos_flow->qos.gbr.downlink != pcc_rule->qos.gbr.downlink) || |
| (pcc_rule->qos.gbr.uplink && |
| qos_flow->qos.gbr.uplink != pcc_rule->qos.gbr.uplink)) { |
| |
| memcpy(&qos_flow->qos, &pcc_rule->qos, sizeof(ogs_qos_t)); |
|
|
| |
| qos_presence = true; |
| } |
| } |
|
|
| |
| |
| |
| |
| |
| |
| ogs_list_init(&qos_flow->pf_to_add_list); |
|
|
| for (j = 0; j < pcc_rule->num_of_flow; j++) { |
| ogs_flow_t *flow = &pcc_rule->flow[j]; |
|
|
| if (!flow) { |
| ogs_error("No Flow"); |
| return; |
| } |
| if (!flow->description) { |
| ogs_error("No Flow-Description"); |
| return; |
| } |
|
|
| |
| |
| |
| |
| if (smf_pf_find_by_flow( |
| qos_flow, flow->direction, flow->description) != NULL) { |
| continue; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| pf = smf_pf_add(qos_flow); |
| if (!pf) { |
| ogs_error("Overflow: PacketFilter in Bearer"); |
| break; |
| } |
|
|
| pf->direction = flow->direction; |
| pf->flow_description = ogs_strdup(flow->description); |
| ogs_assert(pf->flow_description); |
|
|
| rv = ogs_ipfw_compile_rule( |
| &pf->ipfw_rule, pf->flow_description); |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| if (flow->direction == OGS_FLOW_UPLINK_ONLY) |
| ogs_ipfw_rule_swap(&pf->ipfw_rule); |
|
|
| if (rv != OGS_OK) { |
| ogs_error("Invalid Flow-Description[%s]", |
| pf->flow_description); |
| smf_pf_remove(pf); |
| break; |
| } |
|
|
| |
| |
| |
| |
| |
| ogs_list_add(&qos_flow->pf_to_add_list, &pf->to_add_node); |
| } |
|
|
| if (qos_flow_created == false && |
| qos_presence == false && |
| ogs_list_count(&qos_flow->pf_to_add_list) == 0) { |
| ogs_warn("No need to send 'Session Modification Request'"); |
| ogs_warn("qos_flow_created:%d, qos_presence:%d, rule_count:%d", |
| qos_flow_created, qos_presence, |
| ogs_list_count(&qos_flow->pf_to_add_list)); |
| continue; |
| } |
|
|
| if (qos_flow_created == true) { |
| smf_bearer_tft_update(qos_flow); |
| smf_bearer_qos_update(qos_flow); |
|
|
| pfcp_flags |= OGS_PFCP_MODIFY_CREATE; |
|
|
| ogs_list_add(&sess->qos_flow_to_modify_list, |
| &qos_flow->to_modify_node); |
| } else { |
| pfcp_flags |= OGS_PFCP_MODIFY_NETWORK_REQUESTED; |
|
|
| if (ogs_list_count(&qos_flow->pf_to_add_list) > 0) { |
| pfcp_flags |= OGS_PFCP_MODIFY_TFT_ADD; |
| smf_bearer_tft_update(qos_flow); |
| } |
| if (qos_presence == true) { |
| pfcp_flags |= OGS_PFCP_MODIFY_QOS_MODIFY; |
| smf_bearer_qos_update(qos_flow); |
| } |
|
|
| ogs_list_add(&sess->qos_flow_to_modify_list, |
| &qos_flow->to_modify_node); |
| } |
| } else if (pcc_rule->type == OGS_PCC_RULE_TYPE_REMOVE) { |
| qos_flow = smf_qos_flow_find_by_pcc_rule_id(sess, pcc_rule->id); |
|
|
| if (!qos_flow) { |
| ogs_warn("No need to send 'Session Modification Request'"); |
| ogs_warn(" - QosFlow[Id:%s] has already been removed.", |
| pcc_rule->id); |
| continue; |
| } |
|
|
| pfcp_flags |= OGS_PFCP_MODIFY_REMOVE; |
|
|
| ogs_list_add(&sess->qos_flow_to_modify_list, |
| &qos_flow->to_modify_node); |
|
|
| } else { |
| ogs_error("Invalid Type[%d]", pcc_rule->type); |
| ogs_assert_if_reached(); |
| } |
| } |
|
|
| check = pfcp_flags & (OGS_PFCP_MODIFY_CREATE|OGS_PFCP_MODIFY_REMOVE); |
| if (check != 0 && |
| check != OGS_PFCP_MODIFY_CREATE && check != OGS_PFCP_MODIFY_REMOVE) { |
| ogs_fatal("Invalid flags[%d]", (int)pfcp_flags); |
| ogs_assert_if_reached(); |
| } |
|
|
| if (ogs_list_count(&sess->qos_flow_to_modify_list)) { |
| ogs_assert(OGS_OK == |
| smf_5gc_pfcp_send_qos_flow_list_modification_request( |
| sess, NULL, pfcp_flags, 0)); |
| } |
| } |
|
|