Ashish Sharma
795f0466b6
fix(esp_http_client): delete Content-Length header when using Transfer-Encoding
...
Closes https://github.com/espressif/esp-idf/issues/18242
2026-03-16 17:31:07 +08:00
Ashish Sharma
f0f8183281
fix: removes deprecated http_crypto sources
2026-03-03 11:16:49 +08:00
hrushikesh.bhosale
8124c2e2cf
refactor(protocols): Removed the common_component dependency
...
- Removed the common_component build dependency from protocols test_apps
and examples
2026-02-16 15:07:37 +05:30
nilesh.kale
ba308b6d76
fix(esp_https_ota): handle ota resumption if server dosent support range requests
...
This commit added check to see if server supports range requets,
and fallback to OTA without resumption accordingly.
Closes https://github.com/espressif/esp-idf/pull/17960
2026-02-09 13:48:48 +05:30
Ashish Sharma
1db7fac8da
feat(esp_http_client): adds support to save response headers
...
Closes https://github.com/espressif/esp-idf/issues/17695
2026-01-28 10:20:47 +08:00
igor.udot
4c26ab876b
ci: update build-test-rules to use common_components
2026-01-23 10:14:09 +08:00
Ashish Sharma
a7abc3b8e8
feat(esp_http_client): adds API to get transport socket
2026-01-21 17:04:13 +08:00
Ashish Sharma
7093db9f10
fix(esp_http_client): fix incorrect digest calculation for SHA256 auth digest
...
According to RFC 7616, nonce-prime and cnonce-prime is used for SHA-256-sess only and not for SHA-256.
This commit updates the check and uses nonce only for "-sess" algorithms.
Regression from 66995965e7
2026-01-06 17:16:11 +08:00
Ashish Sharma
fdd5ef561d
feat: migrates esp_http_client and esp_http_server to PSA APIs
2025-12-30 09:31:49 +05:30
C.S.M
f405e51784
ci(esp32s31): Add ci build test for esp32s31
2025-12-11 15:17:15 +08:00
Ashish Sharma
69ea28c886
feat: add Kconfig option for mbedTLS 4.x
2025-12-01 14:05:05 +08:00
Mahavir Jain
66995965e7
fix(esp_http_client): prevent out-of-bounds read in Digest auth
...
Fixed vulnerability where malicious HTTP servers could trigger OOB reads
by sending empty or very short algorithm fields in WWW-Authenticate headers.
Changes:
- Replace unsafe memcmp() with strcasecmp() for algorithm comparison
- Add algorithm NULL validation at function entry point
- Fix duplicate md5-sess check, add missing SHA-256 check
2025-11-21 16:36:02 +05:30
Mahavir Jain
06805d177c
Merge branch 'feature/mbedtls_psa_migration_migrate_esp_http' into 'master'
...
Migrate esp_http_client and esp_http_server to PSA API
See merge request espressif/esp-idf!41035
2025-11-03 09:39:54 +05:30
Marius Vikhammer
cd741e995f
test(system): restructured system build test test-apps
2025-10-27 09:25:07 +08:00
Ashish Sharma
acf89924c8
feat(esp_http): migrate esp_http to PSA API
2025-10-26 10:13:14 +08:00
nilesh.kale
709b869a34
feat(esp_https_ota): Support partial downloading of OTA over single connection
...
This commit added support to download OTA with partial download feature
over single HTTP connection if server supports persistent connection.
2025-10-10 15:42:47 +05:30
nilesh.kale
845275c6f1
fix(esp_http_client): fix dispatching of finish event condition
...
This commit updates the condition for dispatching of FINISH event.
With this, FINISH event will be dispatched after complete data is read.
Closes https://github.com/espressif/esp-idf/issues/17437
2025-09-11 14:18:28 +08:00
nilesh.kale
2d437a6d9a
fix(esp_http_client): fixed documentation for API esp_http_client_set_post_data()
...
Closes https://github.com/espressif/esp-idf/issues/17053
2025-08-28 14:55:55 +05:30
Aditya Patwardhan
646377c622
Merge branch 'fix/http_client_coverity_warnings' into 'master'
...
fix(esp_http_client): address coverity generated warnings
Closes IDF-13867, IDF-13881, and IDF-13886
See merge request espressif/esp-idf!41411
2025-08-25 17:02:07 +05:30
Mahavir Jain
47a659cd3e
Merge branch 'contrib/github_pr_17429' into 'master'
...
docs(esp_http_client): document default timeout behaviour (GitHub PR)
See merge request espressif/esp-idf!41363
2025-08-25 10:21:53 +05:30
Mahavir Jain
70cb9d1a5c
fix(esp_http_client): address coverity generated warnings
2025-08-22 19:13:24 +05:30
Mahavir Jain
1a615729d5
Merge branch 'fix/coverity_issue_483747' into 'master'
...
Fix possible double memory free in esp_http_client
Closes IDF-13757, IDF-13758, and IDF-13755
See merge request espressif/esp-idf!40934
2025-08-20 14:29:20 +05:30
Marek Fiala
9d35d63651
feat(cmake): Update minimum cmake version to 3.22 (whole repository)
2025-08-19 14:44:32 +02:00
Mahavir Jain
05e149ea78
Merge branch 'feature/add_ecdsa_p384_support_and_testcases' into 'master'
...
feat: add ecdsa-p384 testcases and relative support for ESP32C5 ECO2
Closes IDF-13008 and IDF-12630
See merge request espressif/esp-idf!38857
2025-08-14 12:33:25 +05:30
Mahavir Jain
71d3492124
Merge branch 'fix/handle_error_and_dispatch_event_while_reading_data_from_server' into 'master'
...
feat(esp_http_client): handle error while reading data from server
Closes IDF-13454
See merge request espressif/esp-idf!40544
2025-08-14 11:27:36 +05:30
Richard Allen
69404c8d83
docs(esp_http_client): document default timeout behaviour
2025-08-13 10:07:38 -05:00
nilesh.kale
7edb4fae49
feat(esp_http_client): avoid dispatching of spurious event while closing closes connection
...
This commit updated the client closing condition to avoid spurious
dispatching of event HTTP_EVENT_DISCONNECTED while closing closeed connection.
Closes https://github.com/espressif/esp-idf/issues/16070
2025-08-12 17:31:50 +05:30
nilesh.kale
9984cc4aab
feat(esp_http_client): added new HTTP state HTTP_STATE_CONNECTING and change state flow
...
This commit added new http state HTTP_STATE_CONNECTING, and made states public.
Also added public API to get current state.
Updated state flow in esp_http_client_perform()
Closes https://github.com/espressif/esp-idf/issues/16019
2025-08-12 17:30:38 +05:30
nilesh.kale
dedc9889de
feat: added config member to store block number for hign part of ecdsa key
2025-08-11 16:01:10 +05:30
nilesh.kale
08e781c876
feat: added new config member to provide ecdsa curve type
2025-08-11 16:01:09 +05:30
nilesh.kale
68f06a94bd
feat: add ecdsa-p384 testcases and relative support for ESP32C5 ECO2
...
This commit adds testcases in crypto/hal and mbedtls testapps.
2025-08-11 16:01:01 +05:30
nilesh.kale
73d8ad9083
feat(esp_http_client): handle error while reading data from server
...
This commit updated API esp_http_cleint_perform() to handle error and
dispatched error event if any error occured whiling reading data from server.
2025-08-11 16:39:22 +08:00
Aditya Patwardhan
b72e532598
Merge branch 'feature/move_partial_download_code_under_config' into 'master'
...
feat(esp_http_client): move partial download related code under config
Closes IDF-13464
See merge request espressif/esp-idf!40270
2025-08-11 11:09:49 +05:30
nilesh.kale
ce4a901460
fix(esp_http_client): fixed regression issue during enabling digest auth in client
...
This commit solved the issue introduced in commit a0bcffcce9
for enabling digest auth for esp_http_client.
Closes https://github.com/espressif/esp-idf/issues/17238
2025-08-06 15:38:25 +05:30
nilesh.kale
2db4bcf87d
feat(esp_http_client): move partial download related code under config
...
This MR added an menuconfig option to enable partial download feature.
2025-08-05 17:38:10 +05:30
Ashish Sharma
414397c048
fix(esp_http_client): fix possible double memory free
2025-08-05 09:48:22 +08:00
Marius Vikhammer
4065fb20f3
Merge branch 'feature/esp_test_utils_component' into 'master'
...
change(test_utils): moved test_utils out of unit-test-app project
See merge request espressif/esp-idf!40678
2025-08-01 11:04:37 +08:00
Ashish Sharma
6b02906822
fix(security): improve memory allocation handling in multiple components
2025-07-28 10:05:50 +08:00
Marius Vikhammer
bf84ab652a
change(test_utils): moved test_utils component to tools/test_apps/components/
2025-07-21 14:05:50 +08:00
Mahavir Jain
4e12ed0655
Merge branch 'contrib/github_pr_16076' into 'master'
...
fix(esp_http_client): fix spurious async open error (GitHub PR)
Closes IDFGH-15428
See merge request espressif/esp-idf!40273
2025-07-17 14:38:34 +05:30
Ashish Sharma
801ea1fc4e
fix(esp_http_client): fix memory leak in current_header_value buffer
...
Fixed memory leak in esp_http_client_cleanup() where current_header_value
buffer was not being freed when ESP_ERR_HTTP_FETCH_HEADER is returned
during header parsing failures.
2025-07-17 10:32:50 +08:00
nilesh.kale
5cc874068d
feat(esp_http_client): added event HTTP_EVENT_ON_STATUS_CODE
...
This commit added event HTTP_EVENT_ON_STATUS_CODE and
acquire response status code before header or data.
2025-07-08 17:45:18 +05:30
Mahavir Jain
5aff8a9d11
Merge branch 'bugfix/ota_failing_for_aws_signed_url_with_partial_download_enabled' into 'master'
...
fix(esp_http_client): Fix OTA failure with partial download enabled
Closes IDF-12590
See merge request espressif/esp-idf!37843
2025-07-01 09:39:52 +05:30
nilesh.kale
caf828dfaf
fix(esp_http_client): Fix OTA failure with partial download enabled
...
This commit fixes an issue encountered during OTA when partial download
is enabled using an AWS signed URL restricted to GET requests.
It also adds an API to retrieve the OTA image size from the Content-Range header.
2025-06-30 11:18:26 +05:30
Richard Allen
561b325a0d
docs(esp_http_client): fix chunky function name
2025-06-27 14:55:55 -05:00
Mahavir Jain
a8bf745f23
Merge branch 'feat/adding_different_strategy_to_perform_tls_using_dynamic_feature' into 'master'
...
Add configuration to control dynamic buffer strategy in mbedtls
Closes IDF-12591
See merge request espressif/esp-idf!39469
2025-06-12 09:52:35 +05:30
Richard Allen
65a1d79af2
fix(esp_http_client): fix spurious async open error
...
Fix esp_http_client_open() often triggering a
spurious HTTP_EVENT_ERROR when is_async=true.
Fixes https://github.com/espressif/esp-idf/issues/16075
2025-06-05 17:54:05 -05:00
hrushikesh.bhosale
5928a87aa7
feat(mbedtls): Add configuration to control dynamic buffer strategy in mbedtls
...
Problem:
1. In low-memory scenarios, the dynamic buffer feature can fail due to memory fragmentation.
2. It requires a contiguous 16KB heap chunk, but continuous allocation and deallocation of
the RX buffer can lead to fragmentation.
3. If another component allocates memory between these operations, it can break up the
available 16KB block, causing allocation failure.
Solution:
1. Introduce configurable strategy for using dynamic buffers in TLS connections.
2. For example, convert RX buffers to static after the TLS handshake.
3. Allow users to select the strategy via a new field in the esp_http_client_cfg_t structure.
4. The strategy can be controlled independently for each TLS session.
2025-06-05 12:43:47 +05:30
Richard Allen
30758d9beb
feat(esp_http_client): Event to signal last header download
...
When parsing ND-JSON streams, this is needed to indicate the
point when the ND-JSON stream is considered open, which
occurs just after the last HTTP_EVENT_ON_HEADER.
ND-JSON stream clients cannot rely on the first HTTP_EVENT_ON_DATA,
since that is only triggered by an event, which are optional and
may never be sent, or only sent well after the last HTTP_EVENT_ON_HEADER.
Closes #15952
2025-05-28 08:50:28 -05:00
Mahavir Jain
f229a84578
Merge branch 'contrib/github_pr_15968' into 'master'
...
docs(esp_http_client): update return codes for open & perform (GitHub PR)
See merge request espressif/esp-idf!39239
2025-05-21 13:23:05 +05:30