Skip to content

Commit db4488f

Browse files
committed
net: lib: nrf_cloud: Fix warnings on PGPS
The new downloader library behaves slightly differently than the old download_client library. Specify the download protocol. Expect an -EPERM error when calling downloader_cancel() when download is already done. Also address potential build error with coap provisioning overlay. Jira: IRIS-9994 Signed-off-by: Pete Skeggs <peter.skeggs@nordicsemi.no>
1 parent 09d5944 commit db4488f

File tree

4 files changed

+20
-14
lines changed

4 files changed

+20
-14
lines changed

doc/nrf/releases_and_maturity/releases/release-notes-changelog.rst

+8-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,11 @@ Cellular samples
296296

297297
* :ref:`nrf_cloud_multi_service` sample:
298298

299-
* Fixed an issue with an uninitialized variable in the :c:func:`handle_at_cmd_requests` function.
299+
* Fixed:
300+
301+
* An issue with an uninitialized variable in the :c:func:`handle_at_cmd_requests` function.
302+
* An issue with the too small :kconfig:option:`CONFIG_COAP_EXTENDED_OPTIONS_LEN_VALUE` Kconfig value
303+
in the :file:`overlay-coap_nrf_provisioning.conf` file.
300304

301305
Cryptography samples
302306
--------------------
@@ -506,6 +510,9 @@ Libraries for networking
506510
* :ref:`lib_azure_fota`
507511
* :ref:`lib_fota_download`
508512

513+
* :ref:`lib_nrf_cloud_pgps` library:
514+
515+
* Fixed the warning due to missing ``https`` download protocol.
509516

510517
Libraries for NFC
511518
-----------------

samples/cellular/nrf_cloud_multi_service/overlay-coap_nrf_provisioning.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ CONFIG_NRF_PROVISIONING_CODEC_RX_SZ_START=2048
5858

5959
# CoAP Client
6060
CONFIG_COAP_EXTENDED_OPTIONS_LEN=y
61-
CONFIG_COAP_EXTENDED_OPTIONS_LEN_VALUE=64
61+
CONFIG_COAP_EXTENDED_OPTIONS_LEN_VALUE=192
6262
CONFIG_COAP_CLIENT_THREAD_PRIORITY=0
6363
CONFIG_COAP_CLIENT_BLOCK_SIZE=1024
6464
CONFIG_COAP_CLIENT_MESSAGE_SIZE=1024

subsys/net/lib/nrf_cloud/src/nrf_cloud_pgps.c

+10-11
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ LOG_MODULE_REGISTER(nrf_cloud_pgps, CONFIG_NRF_CLOUD_GPS_LOG_LEVEL);
3131
#include "nrf_cloud_pgps_utils.h"
3232
#include "nrf_cloud_codec_internal.h"
3333

34-
#define FORCE_HTTP_DL 0 /* set to 1 to force HTTP instead of HTTPS */
34+
#define DOWNLOAD_PROTOCOL "https://"
3535
#define PGPS_DEBUG 0 /* set to 1 for extra logging */
3636

3737
#if defined(CONFIG_NRF_CLOUD_PGPS_PREDICTION_PERIOD_120_MIN)
@@ -867,14 +867,18 @@ int nrf_cloud_pgps_process(const char *buf, size_t buf_len)
867867
int err;
868868
static char host[CONFIG_DOWNLOADER_MAX_HOSTNAME_SIZE];
869869
static char path[CONFIG_DOWNLOADER_MAX_FILENAME_SIZE];
870+
size_t sz = strlen(DOWNLOAD_PROTOCOL);
870871

871872
struct nrf_cloud_pgps_result pgps_dl = {
872-
.host = host,
873-
.host_sz = sizeof(host),
873+
.host = &host[sz],
874+
.host_sz = sizeof(host) - sz,
874875
.path = path,
875876
.path_sz = sizeof(path)
876877
};
877878

879+
/* Include protocol so downloader does not issue a warning. */
880+
strncpy(host, DOWNLOAD_PROTOCOL, sz + 1);
881+
878882
#if defined(CONFIG_NRF_CLOUD_MQTT)
879883
LOG_HEXDUMP_DBG(buf, buf_len, "MQTT packet");
880884
#endif
@@ -888,6 +892,9 @@ int nrf_cloud_pgps_process(const char *buf, size_t buf_len)
888892
return err;
889893
}
890894

895+
/* Point to start of full host name including protocol. */
896+
pgps_dl.host = host;
897+
891898
return nrf_cloud_pgps_update(&pgps_dl);
892899
}
893900

@@ -918,14 +925,6 @@ int nrf_cloud_pgps_update(struct nrf_cloud_pgps_result *file_location)
918925

919926
int sec_tag = nrf_cloud_sec_tag_get();
920927

921-
if (FORCE_HTTP_DL && (strncmp(file_location->host, "https", 5) == 0)) {
922-
memmove(&file_location->host[4],
923-
&file_location->host[5],
924-
strlen(&file_location->host[4]));
925-
926-
sec_tag = -1;
927-
}
928-
929928
err = npgps_download_start(file_location->host, file_location->path,
930929
sec_tag, 0, FRAGMENT_SIZE);
931930

subsys/net/lib/nrf_cloud/src/nrf_cloud_pgps_utils.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ static int downloader_callback(const struct downloader_evt *event)
581581

582582
ret = downloader_cancel(&dl);
583583

584-
if (ret) {
584+
if (ret && (ret != -EPERM)) {
585585
LOG_ERR("Error disconnecting from download client:%d", ret);
586586
}
587587
#endif

0 commit comments

Comments
 (0)