Xiang Xiao
e6ebbe875a
arch/arm/src/common/up_exit.c: Fix typo. Caused compiler error when system debug enabled.
2018-11-10 14:01:21 -06:00
Xiang Xiao
f71cd2678a
arch/sim/src/up_netdriver.c: Fix error 'invalid operands to binary &'
2018-11-10 14:00:13 -06:00
Gregory Nutt
8cfb376f81
net/mld: There is an issue with the general query timer design. There should be a single instance, not a per-group instance of the timer (ditto for the v1 compatibility timer). Fall back for now and use the per-group MAX query.
2018-11-10 12:13:54 -06:00
Gregory Nutt
f8d39e2c84
net/MLD: The MAS query should be sent on the group multicast address.
2018-11-10 11:41:50 -06:00
Gregory Nutt
854046a931
/net/devif/ipv6_input.c: Correct handling of IPv6 extension headers. The main confusion was that the payload length in the IPv6 header does not include its extension headers.
...
net/icmpv6/icmpv6_input.c: Correct caculation of the ICMPv6 header address
net/mld/mld_query.c: Correct back test for group found.
net/mld/mld_report.c: Fix host vs. network order problem.
net/mld/mld_send.c: Correct the address used in sending the General Query. It should be the unspecified address in that case.
net/mld: Querying workaround. The MLD implementation does not follow the RFC correct when it is the Querier. The Querier should use a general query and get query messages from all members of all groups. This would be driven by a single timer since all groups are queried at once. Instead, the design currently uses a Multicast Address Specific Query with one timer per group and ignores groups that we are not members of.
2018-11-10 11:29:02 -06:00
Gregory Nutt
b0ba5b69c4
net/udp/Kconfig: Auto-select CONFIG_WQUEUE_NOTIFIER when CONFIG_UDP_READAHEAD_NOTIFIER is selected.
2018-11-10 09:43:44 -06:00
ligd
e1622f60a6
drivers/power/pm: Use the start time of state btime) to calculate thrcnt; remove the loop whose count may be very big after the long idle
2018-11-10 07:30:23 -06:00
ligd
f4a3541d26
drivers/power/pm_initialize.c: Fix pm_domain_s.stime unint caused time error. Bug deatil:
...
1. open CONFIG_DEBUG_FEATURES CONFIG_SYSTEM_TIME64 CONFIG_CLOCK_MONOTONIC
==> INITIAL_SYSTEM_TIMER_TICKS very big data, not zero
2. close CONFIG_SCHED_TICKLESS
==> use g_system_timer as system clock
3. pm_domain_s.stime init to zero
4. clock_systimer() - pm_domain_s.stime get big data, error
2018-11-10 07:20:34 -06:00
Gregory Nutt
68a115aed9
net/icmpv6/icmpv6_autoconfig.c and icmpv6_rnotify.c: Don't take the network device down when reconfiguring only the IP address from within ICMPv6 logic. Recommended by Xiang Xiao in order to avoid the long delays of bringing some networks back up.
...
Normally it is required that the network be in the "down" state when re-configuring the network interface. This is thought not to be a necessary here because.
1. The ICMPv6 logic here runs with the network locked so there can be no outgoing packets with bad source IP addresses from any asynchronous network activity using the device being reconfigured.
2. Incoming packets depend only upon the MAC filtering. Network drivers do not use the IP address; they filter incoming packets using only the MAC address which is not being changed here.
2018-11-10 07:13:54 -06:00
Gregory Nutt
ae29df7445
net/devif/ipv6_input.c: Remove an old, outdated comment.
2018-11-09 17:53:31 -06:00
Xiang Xiao
f64741faca
drivers/timers/arch_rtc.c: up_rtc_set_lowerhalf call clock_synchronize() for external RTC.
2018-11-09 16:34:07 -06:00
Gregory Nutt
a583488829
net/devif/ipv6_input.c: Fix a logic error when the received IPv6 srcaddr is a multicast address. Exiting logic only supported UDP multicast. But MLD and certain other ICMPv6 packets also require acceptance of multicast packets.
2018-11-09 16:26:49 -06:00
Gregory Nutt
8527fcf4c5
net/icmpv6/icmpv6_input.c: Fix some ICMPv6 introduced with recent changes.
2018-11-09 16:10:19 -06:00
Xiang Xiao
71e1056e6d
net/icmpv6, neighbor, and netdev: Rename netdev_dev_lladdrsize() to netdev_lladdrsize() and move the prototype to include/nuttx/nex/netdev.h, giving is global scope within the OS. Reviewer: This degrades the integrity of the modular architecture by introducing a new coupling via C function call. Not a good thing at all.
2018-11-09 16:05:11 -06:00
Xiang Xiao
a139b7f9b1
net/arp and icmpv6: Double the delay time on each iteration for ARP/ICMP to fight work jitter better.
2018-11-09 15:55:38 -06:00
Xiang Xiao
4f25b83f8f
et/icmpv6: Remove the coupling between ICMPv6 and Ethernet by moving all Ethernet stuff to neighbor_ethernet_out.c and make the mac address as first field.
2018-11-09 15:41:23 -06:00
Xiang Xiao
a3cda3867b
net/icmpv6/icmpv6_linkipaddr.c: Encapsulate the link scope address generation into icmpv6_linkipaddr()
2018-11-09 15:28:58 -06:00
Xiang Xiao
52021a5300
net/icmpv6/icmpv6_conn.c: icmpv6_free() remove reference count operation since it's already done in icmpv6_close().
2018-11-09 15:22:25 -06:00
Xiang Xiao
688ccb156a
net/icmpv6/icmpv6_neighbor.c: icmpv6_neighbor shouldn't use the out of scope variable(dripaddr)
2018-11-09 15:18:17 -06:00
Gregory Nutt
915c2ecd4b
Documentation: Trivial update to the 'About NuttX' document.
2018-11-09 14:34:00 -06:00
Gregory Nutt
b93c3c13c4
net/: Fix some compile errors introduce with recent networking patches. Found in build testing.
2018-11-09 14:25:44 -06:00
Xiang Xiao
e294162697
net/neighbor: Support neighbor_out() for multiple link layer at the same time
2018-11-09 14:21:49 -06:00
Xiang Xiao
0a6e234962
net/neighbor: neighbor_lookup() checks if the target IP belongs to one of the local network devices.
2018-11-09 14:14:15 -06:00
Xiang Xiao
0a673d78dc
net/neighbor/neighbor_dumpentry.c: Simplify neighbor_dumpentry() implementation
2018-11-09 14:10:18 -06:00
Xiang Xiao
7f8496c643
net/neighbor: Simplify the neighbor table aging process
2018-11-09 14:08:18 -06:00
Xiang Xiao
eb31dc69ac
net/: Remove the unnecessary arp.h inclusion
2018-11-09 14:01:12 -06:00
Xiang Xiao
9711f6c668
Remove dup definition in nuttx/net/arp.h and include/nuttx/net/ioctl.h
2018-11-09 13:59:45 -06:00
Xiang Xiao
bdf93a8abf
net/arp/arp_send.c: Check ifname match before sending packet
2018-11-09 13:57:16 -06:00
Xiang Xiao
43706cd797
net/arp: Redesign ARP table aging to simplify the net initialization
2018-11-09 13:54:55 -06:00
Gregory Nutt
9d09b5aad7
Eliminate a warning found in build testing.
2018-11-09 13:23:12 -06:00
Xiang Xiao
a6f64725af
include/arpa/inet.h: Remove the dup INET[6]_ADDRSTRLEN from arpa.inet.h already define in netinet/in.h
2018-11-09 11:52:30 -06:00
Xiang Xiao
e0e18fcc74
include/net and include/sys: align the constant values with values in the linux kernel which makes targeting the usrsock server to Linux kernel easier.
2018-11-09 11:50:00 -06:00
Gregory Nutt
25f24c2743
include/netinet/in.h: Add Linux IP_PKTINFO and IPV6_PKTINFO definitions, but not yet realized.
2018-11-09 11:46:57 -06:00
Gregory Nutt
6ca2bcb577
net/icmpv6/icmpv6_input.c: Fix yet another build issue in this file found by build testing.
2018-11-09 11:44:01 -06:00
ligd
4a8b750ecd
ibs/libc/net: Add basic implementation for recvmsg and sendmsg per OpenGroup.org specification.
2018-11-09 11:39:05 -06:00
Xiang Xiao
b8b90b5c4f
net/usrsock/usrsock_accept.c: Mark newconn ready before issue accept request to avoid the event get discarded due to the socket in the invalid state
2018-11-09 11:28:19 -06:00
Xiang Xiao
44bcd2c44d
net/: add NET_ICMP[v6]_NO_STACK for usrsock case
2018-11-09 11:25:57 -06:00
Xiang Xiao
26ae4176f0
net/arp and net/icmpv6: don't call d_txavail directly since it may point to NULL
2018-11-09 11:22:58 -06:00
zhangyuan7
f036e2a32a
net/tcp/tcp_backlog.c: Add SOMAXCONN definition and implementaton per OpenGroup.org.
2018-11-09 11:20:33 -06:00
Xiang Xiao
d2cfd398ba
Fix compiler error and warning when CONFIG_NET_SENDFILE=y
2018-11-09 11:17:43 -06:00
Gregory Nutt
9d2e6cf66a
net/icmpv6/icmpv6_input.c: Fix a recently introduced error found in build testing.
2018-11-09 11:08:51 -06:00
Xiang Xiao
9e42bede2f
net/udp/udp_finddev.c: Fallback to netdev_default device if the device is not found, rather than arbitrary using the device at the head of the list of devices.
2018-11-09 11:05:45 -06:00
Gregory Nutt
0d13cb5055
Remove deletion of Eclipse project files from make distclean target per request of David Sidrane.
2018-11-09 10:39:18 -06:00
Gregory Nutt
2b6b3724fb
drivers/usbdev/Kconfig: Fix misplaced endif.
2018-11-09 10:26:33 -06:00
Juha Niskanen
e37f260d67
arch/arm/src/stm32l4: add initial support for STM32L412 and STM32L422 chips
2018-11-09 09:54:20 -06:00
Xiang Xiao
8193c28e91
drivers/net/tun.c: Call ipv[4|6]_input dynamically by checking packet header and remove the code duplication
2018-11-09 09:50:10 -06:00
Xiang Xiao
3f1b6543db
drivers/net/slip.c: Add IPv6 support and fix minor issue
2018-11-09 09:41:24 -06:00
Xiang Xiao
f65e7a4097
drivers/net/lan91c111.c: Reuse lan91c111_reply for ARP case
2018-11-09 09:38:59 -06:00
Xiang Xiao
cb095ea3d3
libs/libc/misc/lib_envpath.c: Fix typo error
2018-11-09 09:35:25 -06:00
Xiang Xiao
ae6797aabb
include/nuttx/fs/fs.h: register_mtddriver should depend on CONFIG_MTD not CONFIG_MTD_PARTITION
2018-11-09 09:29:41 -06:00