/* * Copyright (c) 2025 Onomondo ApS & sysmocom - s.f.m.c. GmbH. All rights reserved. * * SPDX-License-Identifier: AGPL-3.0-only * * Author: Philipp Maier / sysmocom - s.f.m.c. GmbH * * See also: GSMA SGP.22, 5.7.17: Function (ES10c): DisableProfile */ #include #include #include #include #include #include #include #include #include "context.h" #include "utils.h" #include "euicc.h" #include "es10x.h" #include "es10c_disable_prfle.h" static const struct num_str_map error_code_strings[] = { { DisableProfileResponse__disableResult_ok, "ok" }, { DisableProfileResponse__disableResult_iccidOrAidNotFound, "iccidOrAidNotFound" }, { DisableProfileResponse__disableResult_profileNotInEnabledState, "profileNotInEnabledState" }, { DisableProfileResponse__disableResult_disallowedByPolicy, "disallowedByPolicy" }, { DisableProfileResponse__disableResult_catBusy, "catBusy" }, { DisableProfileResponse__disableResult_undefinedError, "undefinedError" }, { 0, NULL } }; static int dec_disable_prfle_res(struct ipa_es10c_disable_prfle_res *res, const struct ipa_buf *es10c_res) { struct DisableProfileResponse *asn = NULL; asn = ipa_es10x_res_dec(&asn_DEF_DisableProfileResponse, es10c_res, "DisableProfile"); if (!asn) return -EINVAL; if (asn->disableResult != DisableProfileResponse__disableResult_ok) { IPA_LOGP_ES10X("DisableProfile", LERROR, "function failed with error code %ld=%s!\n", asn->disableResult, ipa_str_from_num(error_code_strings, asn->disableResult, "(unknown)")); } else { IPA_LOGP_ES10X("DisableProfile", LERROR, "function succeeded with status code %ld=%s!\n", asn->disableResult, ipa_str_from_num(error_code_strings, asn->disableResult, "(unknown)")); } res->res = asn; return 0; } /*! Function (Es10c): DisableProfile. * \param[inout] ctx pointer to ipa_context. * \param[in] req pointer to struct that holds the function parameters. * \returns pointer newly allocated struct with function result, NULL on error. */ struct ipa_es10c_disable_prfle_res *ipa_es10c_disable_prfle(struct ipa_context *ctx, const struct ipa_es10c_disable_prfle_req *req) { struct ipa_buf *es10c_req = NULL; struct ipa_buf *es10c_res = NULL; struct ipa_es10c_disable_prfle_res *res = IPA_ALLOC_ZERO(struct ipa_es10c_disable_prfle_res); int rc; es10c_req = ipa_es10x_req_enc(&asn_DEF_DisableProfileRequest, &req->req, "DisableProfile"); if (!es10c_req) { IPA_LOGP_ES10X("DisableProfile", LERROR, "unable to encode Es10c request\n"); goto error; } es10c_res = ipa_euicc_transceive_es10x(ctx, es10c_req); if (!es10c_res) { IPA_LOGP_ES10X("DisableProfile", LERROR, "no Es10c response\n"); goto error; } rc = dec_disable_prfle_res(res, es10c_res); if (rc < 0) goto error; IPA_FREE(es10c_req); IPA_FREE(es10c_res); return res; error: IPA_FREE(es10c_req); IPA_FREE(es10c_res); ipa_es10c_disable_prfle_res_free(res); return NULL; } /*! Free results of function (Es10c): DisableProfile. * \param[in] res pointer to function result. */ void ipa_es10c_disable_prfle_res_free(struct ipa_es10c_disable_prfle_res *res) { IPA_ES10X_RES_FREE(asn_DEF_DisableProfileResponse, res); }