nuttx/net/icmpv6/icmpv6_pmtu.c
Xiang Xiao c47b1e2c5b !sys/types.h: change time_t and clock_t to int64_t to align with other OSes
POSIX leaves the signedness of time_t and clock_t unspecified, but
mainstream implementations (Linux glibc/musl, the BSDs, macOS, RTEMS,
Zephyr's POSIX layer, Windows _time64) expose time_t as signed 64-bit.
NuttX has historically used uint64_t only because it was tied to the
CONFIG_SYSTEM_TIME64 knob; with that gone, switch:

  time_t   : uint64_t  -> int64_t
  clock_t  : uint64_t  -> int64_t
  CLOCK_MAX: UINT64_MAX -> INT64_MAX

This lets (time_t)-1 sentinels, negative tick deltas, and host-side
headers behave as on every other POSIX system without source churn.

Headers updated:
  - include/sys/types.h, include/limits.h, include/nuttx/clock.h
  - include/nuttx/fs/hostfs.h (nuttx_time_t alias)
  - include/nuttx/{mqueue.h,wdog.h,wqueue.h,timers/clkcnt.h}

Because clock_t is now signed 64-bit, the NuttX-internal sclock_t
alias becomes redundant: every sclock_t/SCLOCK_MAX use is folded
back to clock_t/CLOCK_MAX (notably in sched/wdog, sched/mqueue,
sched/sched, sched/clock, sched/timer, libs/libc/time, fs/vfs and
the drivers/arch consumers below).

Tick/period constants (NSEC_PER_SEC, USEC_PER_SEC, MSEC_PER_SEC,
SEC_PER_MIN, ...) in include/nuttx/clock.h are retyped from "long"
literals to INT64_C(...) so that 64-bit arithmetic no longer
depends on the host's long width.

Strip now-redundant (time_t)/(clock_t)/(unsigned long) casts and
unsigned-only branches across the tree:
  - arch RTC / oneshot / tickless lowerhalfs:
      arm: cxd56xx, efm32, imxrt, lc823450, max326xx, sam34, sama5,
           samd5e5, samv7, stm32, stm32f7, stm32h7, stm32l4, stm32wb,
           xmc4
      mips: pic32mz       sparc: bm3803       x86_64: intel64
      risc-v/xtensa: espressif (esp_i2c[_slave], esp_rtc,
           esp32c3{_i2c,_rtc,_wifi_adapter}, esp32{,s2,s3}_*),
           mpfs_perf
  - drivers: audio/tone, input/aw86225, power/pm/{activity,
           stability}_governor, rpmsg/rpmsg_ping,
           timers/{ds3231,mcp794xx,pcf85263,rx8010},
           wireless/ieee80211/bcm43xxx, wireless/spirit/spirit_spi
  - core: fs/vfs/{fs_poll,fs_timerfd}, mm/iob/iob_alloc,
          libs/libc/{netdb/lib_dnscache,time/{lib_calendar2utc,
          lib_time}}, net/icmp/icmp_pmtu, net/icmpv6/icmpv6_pmtu,
          net/ipfrag, net/tcp/{tcp.h,tcp_timer},
          net/utils/net_snoop, net/mld/mld_query (drop the now-dead
          mld_mrc2mrd helper since signed math handles it directly),
          sched/clock/{clock,clock_initialize},
          sched/sched/{sched_profil,sched_setparam,sched_setscheduler},
          sched/pthread/pthread_create,
          sched/wdog/{wd_gettime,wd_start,wdog.h},
          sched/timer/timer_gettime, sched/mqueue/*

Flip the few in-tree printf format strings that assumed an
unsigned 64-bit tv_sec:
  * drivers/rpmsg/rpmsg_ping.c                       PRIu64 -> PRId64
  * arch/xtensa/src/esp32{,s2,s3}/esp32*_oneshot_lowerhalf.c
                                          PRIu32 (already wrong) -> PRId64

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2026-05-19 16:21:28 +08:00

119 lines
3.6 KiB
C

/****************************************************************************
* net/icmpv6/icmpv6_pmtu.c
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
*
* 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.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/clock.h>
#include "icmpv6/icmpv6.h"
/****************************************************************************
* Private Data
****************************************************************************/
static struct icmpv6_pmtu_entry
g_icmpv6_pmtu_entry[CONFIG_NET_ICMPv6_PMTU_ENTRIES];
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: icmpv6_find_pmtu_entry
*
* Description:
* Search for a ipv6 pmtu entry
*
* Parameters:
* destipaddr the IPv6 address of the destination
*
* Return:
* not null is success; null is failure
****************************************************************************/
FAR struct icmpv6_pmtu_entry *
icmpv6_find_pmtu_entry(net_ipv6addr_t destipaddr)
{
clock_t now = clock_systime_ticks();
int i;
for (i = 0; i < CONFIG_NET_ICMPv6_PMTU_ENTRIES; i++)
{
if (g_icmpv6_pmtu_entry[i].pmtu == 0)
{
continue;
}
if (net_ipv6addr_cmp(destipaddr, g_icmpv6_pmtu_entry[i].daddr))
{
g_icmpv6_pmtu_entry[i].time = now;
return &g_icmpv6_pmtu_entry[i];
}
}
return NULL;
}
/****************************************************************************
* Name: icmpv6_add_pmtu_entry
*
* Description:
* Create a new ipv6 destination cache entry. If no unused entry is found,
* will recycle oldest entry
*
* Parameters:
* destipaddr the IPv6 address of the destination
* mtu MTU
*
* Return:
* void
****************************************************************************/
void icmpv6_add_pmtu_entry(net_ipv6addr_t destipaddr, int mtu)
{
clock_t now = clock_systime_ticks();
int j = 0;
int i;
for (i = 0; i < CONFIG_NET_ICMPv6_PMTU_ENTRIES; i++)
{
if (g_icmpv6_pmtu_entry[i].pmtu == 0 ||
now - g_icmpv6_pmtu_entry[i].time >=
SEC2TICK(CONFIG_NET_ICMPv6_PMTU_TIMEOUT * 60))
{
j = i;
break;
}
if (g_icmpv6_pmtu_entry[i].time -
g_icmpv6_pmtu_entry[j].time < 0)
{
j = i;
}
}
net_ipv6addr_copy(g_icmpv6_pmtu_entry[j].daddr, destipaddr);
g_icmpv6_pmtu_entry[j].pmtu = mtu;
g_icmpv6_pmtu_entry[j].time = now;
}