[PATCH] Force BSS expiration
by Yasser
We were having a problem with our wifi scanning, where the list of
wifi available would become empty and would not be repopulated until
after a long delay. Researching the problem it seemed that it was
related to BSS expiration age. There were already some people who had
faced the same issue, so inspired by this we developed the following
patch which allows us to set the BSS expiration age to match ConnMan
long scanning interval to avoid the loss of networks during a long
interval between two scans.
diff --git a/gsupplicant/gsupplicant.h b/gsupplicant/gsupplicant.h
index bfb52db..08d6b9e 100644
--- a/gsupplicant/gsupplicant.h
+++ b/gsupplicant/gsupplicant.h
@@ -267,7 +267,8 @@ int
g_supplicant_interface_connect(GSupplicantInterface *interface,
int g_supplicant_interface_disconnect(GSupplicantInterface *interface,
GSupplicantInterfaceCallback callback,
void *user_data);
-
+int g_supplicant_interface_set_bss_expiration_age(GSupplicantInterface
*interface,
+ unsigned int
bss_expiration_age);
int g_supplicant_interface_set_apscan(GSupplicantInterface *interface,
unsigned int ap_scan);
diff --git a/gsupplicant/supplicant.c b/gsupplicant/supplicant.c
index 6052f7b..fe6ad48 100644
--- a/gsupplicant/supplicant.c
+++ b/gsupplicant/supplicant.c
@@ -981,6 +981,46 @@ static void interface_capability(const char *key,
DBusMessageIter *iter,
key, dbus_message_iter_get_arg_type(iter));
}
+struct g_supplicant_bss_expiration_age
+{
+ GSupplicantInterface *interface;
+ unsigned int bss_expiration_age;
+};
+
+static void set_bss_expiration_age(DBusMessageIter *iter, void *user_data)
+{
+ struct g_supplicant_bss_expiration_age *data = user_data;
+ unsigned int bss_expiration_age = data->bss_expiration_age;
+
+ dbus_free(data);
+ dbus_message_iter_append_basic(iter, DBUS_TYPE_UINT32,
&bss_expiration_age);
+}
+
+int g_supplicant_interface_set_bss_expiration_age(GSupplicantInterface
*interface,
+ unsigned int
bss_expiration_age)
+{
+ struct g_supplicant_bss_expiration_age *data;
+ int ret;
+
+ data = dbus_malloc0(sizeof(*data));
+
+ if (!data)
+ return -ENOMEM;
+
+ data->bss_expiration_age = bss_expiration_age;
+ data->interface = interface;
+
+ ret = supplicant_dbus_property_set(interface->path,
+ SUPPLICANT_INTERFACE ".Interface",
+ "BSSExpireAge", DBUS_TYPE_UINT32_AS_STRING,
+ set_bss_expiration_age, NULL, data, NULL);
+ if (ret < 0)
+ dbus_free(data);
+
+ return ret;
+}
+
+
struct set_apscan_data
{
unsigned int ap_scan;
diff --git a/plugins/wifi.c b/plugins/wifi.c
index 910b739..57b63e2 100644
--- a/plugins/wifi.c
+++ b/plugins/wifi.c
@@ -1522,6 +1522,7 @@ static void interface_create_callback(int result,
void *user_data)
{
struct wifi_data *wifi = user_data;
+ char * bgscan_range_max;
DBG("result %d ifname %s, wifi %p", result,
g_supplicant_interface_get_ifname(interface),
@@ -1537,6 +1538,13 @@ static void interface_create_callback(int result,
wifi->interface_ready = true;
finalize_interface_creation(wifi);
}
+ /* Force the BSS expiration age to match ConnMan long scanning
interval to avoid the loss of networks during a long interval between
two scannings. */
+ if ((bgscan_range_max = strrchr(BGSCAN_DEFAULT,':')) != NULL &&
+
g_supplicant_interface_set_bss_expiration_age(interface,
strtol(bgscan_range_max + 1, (char**)NULL, 10) + 10) >= 0) {
+ DBG("bss expiration age successfully updated");
+ } else {
+ DBG("bss expiration age update has failed");
+ }
}
static int wifi_enable(struct connman_device *device)
2 months, 1 week
Next release
by Daniel Wagner
Hi,
I think the current version is in good shape. We have a few 'new'
features, such as VPN revamp, WireGuard support and iwd 1.0
support. Also the usual bug fixes.
Is there anything properly annoying with the current HEAD?
The last release was almost a year ago. It's about time for new one :)
Thanks,
Daniel
11 months, 2 weeks
Need guidance on using connman dbus api
by pavel@noa-labs.com
Hello,
I want to add connman support to blueman, the bluez GUI for people not running Gnome or KDE.
First, what would be the dbus commands in case I:
1. device is not paired
2. bluez scan showed PAN and PANU available on certain device
3. I want to connman to take care of calling bluez with given bt address, connecting to PAN, and doing dhcp
1 year
Re: wifi AP disconnect(disconnect reason code 1)
by Deepu Paul
Hi Daniel,
May i know if you a chance to look the logs below please?
Thanks
Deepu Paul
On Wed, Jan 8, 2020 at 5:28 PM Deepu Paul <pauldeepu16(a)gmail.com> wrote:
> Hi Daniel,
>
> Attaching both connman and wpa_supplicant logs,
>
> There are 2 disconnects with reason code 1, in the first one it
> reconnects as expected, in the second one it didn't.
>
> I am bit confused here, not sure if this an issue with wpa_supplicant.
>
> Can you please help me with the logs to find the root cause?
>
> Thanks
> Deepu Paul
>
> On Tue, Jan 7, 2020 at 8:04 AM Daniel Wagner <wagi(a)monom.org> wrote:
>
>> Hi Deepu,
>>
>> On Mon, Jan 06, 2020 at 12:22:31PM +0000, Deepu Paul wrote:
>> > Hi Daniel,
>> >
>> > The previous mail got bounced back as the attachment size was greater
>> than
>> > 500kb .
>> >
>> > Attaching the logs again.
>>
>> Thanks for the logs. Really helpful.
>>
>> > one thing i am noticing is every-time during disconnect, there is
>> > a (Reason: 3=DEAUTH_LEAVING)[line 6790] during the re association
>> > after (Reason: 1=UNSPECIFIED)[line 5752].
>>
>> IIRC, deauth leaving means the local device has decided to leave the
>> network. Though this doesn't make any difference for ConnMan. It's the
>> same code path. Only reason code 6 is handled differently.
>>
>> > I am not sure if this is the issue with wpa_supplicant, can you please
>> > check the logs and let me know if this is initiated by the
>> wpa_supplicant?
>>
>> From you previous email:
>>
>> > In the second one it failed, in this scenario i don't see the interface
>> state change to 2(disconnected), in this case the state change is (4, 5,
>> 6, 8, 10)
>> > and seeing the message "Probably roaming right now! Staying
>> connected..."
>>
>> That is what I suspected. So wpa_supplicant doesn't tell us excactly
>> what it is doing. Suddenldy we see state transitions and we have to
>> guess what's happending.
>>
>> But then we get a new message which it the disconnect reason:
>>
>> connmand[3595]: ../connman-1.37/src/rtnl.c:rtnl_message() NEWLINK len 72
>> type 16 flags 0x0000 seq 0 pid 0
>> connmand[3595]:
>> ../connman-1.37/gsupplicant/supplicant.c:signal_interface_changed()
>> connmand[3595]:
>> ../connman-1.37/gsupplicant/supplicant.c:interface_property()
>> DisconnectReason
>> connmand[3595]:
>> ../connman-1.37/gsupplicant/supplicant.c:signal_bss_removed()
>> connmand[3595]:
>> ../connman-1.37/gsupplicant/supplicant.c:update_network_signal() New
>> network signal -90
>> connmand[3595]: ../connman-1.37/plugins/wifi.c:network_removed() name
>> purpleline
>>
>> Could it be, whenever it works you don't get an disconnect reason
>> after we assume wpa_supplicant is roaming?
>>
>> Thanks,
>> Daniel
>> _______________________________________________
>> connman mailing list -- connman(a)lists.01.org
>> To unsubscribe send an email to connman-leave(a)lists.01.org
>>
>
1 year
Wifi Signal Strength
by chaitanya cherukuri
Hello,
I'm newbie to connman, so please excuse me for silly questions.
Could someone explain how to make sense of the wifi signal strength
number? I have a service which is reporting 67 as signal strength.
what does this mean? Almost all my services are reporting around
65-69. Does this mean the signal quality is good?
Thanks,
Chaitanya
1 year
Zeus failed DHCP
by JH
Hi,
My build connman on Thud works on WiFi, but Zeus does not work, the
connman could not get WiFi DHCP response, it puts a local IP address
169.254.24.188 to my WiFi interface. Has anyone found that the problem
in Zeus or it just me may be miss some packages or configuration?
What are packages could cause DHCP not working?
Here is Thud working log:
# systemctl status connman -l
��● connman.service - Connection service
Loaded: loaded
(8;;file://solar/lib/systemd/system/connman.service/lib/systemd/system/connman.service8;;;
enabl)
Active: active (running) since Thu 2020-02-13 03:18:51 UTC; 6 days ago
Main PID: 131 (connmand)
CGroup: /system.slice/connman.service
��└��─131 /usr/sbin/connmand -n
Feb 18 22:37:16 solar connmand[131]: rp_filter set to 2 (loose mode
routing), old value was 1
Feb 18 22:37:16 solar connmand[131]: mlan0 {add} address
192.168.0.100/24 label mlan0 family 2
Feb 18 22:37:16 solar connmand[131]: mlan0 {add} route 192.168.0.0 gw
0.0.0.0 scope 253 <LINK>
Feb 18 22:37:16 solar connmand[131]: mlan0 {add} route 192.168.0.1 gw
0.0.0.0 scope 253 <LINK>
Feb 18 22:37:16 solar connmand[131]: mlan0 {add} route 212.227.81.55
gw 192.168.0.1 scope 0 <UNIVERSE>
Feb 18 22:37:17 solar connmand[131]: mlan0 {del} route 212.227.81.55
gw 192.168.0.1 scope 0 <UNIVERSE>
Feb 18 22:37:17 solar connmand[131]: wwan0 {del} route 0.0.0.0 gw
10.114.57.126 scope 0 <UNIVERSE>
Feb 18 22:37:17 solar connmand[131]: mlan0 {add} route 0.0.0.0 gw
192.168.0.1 scope 0 <UNIVERSE>
Feb 18 22:37:17 solar connmand[131]: mlan0 {add} route 212.227.81.55
gw 192.168.0.1 scope 0 <UNIVERSE>
Feb 18 22:37:17 solar connmand[131]: mlan0 {del} route 212.227.81.55
gw 192.168.0.1 scope 0 <UNIVERSE>
# systemctl status wpa_supplicant -l
��● wpa_supplicant.service - WPA supplicant
Loaded: loaded
(8;;file://solar/lib/systemd/system/wpa_supplicant.service/lib/systemd/system/wpa_supplicant.service8;;;
disabled; vendor preset: enabled)
Active: active (running) since Thu 2020-02-13 03:18:53 UTC; 6 days ago
Main PID: 503 (wpa_supplicant)
CGroup: /system.slice/wpa_supplicant.service
��└��─503 /usr/sbin/wpa_supplicant -u
Feb 19 07:37:29 solar wpa_supplicant[503]: mlan0: WPA: Group rekeying
completed with 34:08:04:12:b1:a2 [GTK=TKIP]
Feb 19 07:47:29 solar wpa_supplicant[503]: mlan0: WPA: Group rekeying
completed with 34:08:04:12:b1:a2 [GTK=TKIP]
Feb 19 07:57:29 solar wpa_supplicant[503]: mlan0: WPA: Group rekeying
completed with 34:08:04:12:b1:a2 [GTK=TKIP]
Feb 19 08:07:29 solar wpa_supplicant[503]: mlan0: WPA: Group rekeying
completed with 34:08:04:12:b1:a2 [GTK=TKIP]
Feb 19 08:17:29 solar wpa_supplicant[503]: mlan0: WPA: Group rekeying
completed with 34:08:04:12:b1:a2 [GTK=TKIP]
Feb 19 08:19:01 solar wpa_supplicant[503]: mlan0:
CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-85 noise=-97 txrate=1000
Feb 19 08:27:29 solar wpa_supplicant[503]: mlan0: WPA: Group rekeying
completed with 34:08:04:12:b1:a2 [GTK=TKIP]
Feb 19 08:37:29 solar wpa_supplicant[503]: mlan0: WPA: Group rekeying
completed with 34:08:04:12:b1:a2 [GTK=TKIP]
Feb 19 08:47:29 solar wpa_supplicant[503]: mlan0: WPA: Group rekeying
completed with 34:08:04:12:b1:a2 [GTK=TKIP]
Feb 19 08:57:29 solar wpa_supplicant[503]: mlan0: WPA: Group rekeying
completed with 34:08:04:12:b1:a2 [GTK=TKIP]
Here is Zenu build did not work:
# systemctl status connman -l
* connman.service - Connection service
Loaded: loaded
(8;;file://solar/lib/systemd/system/connman.service/lib/systemd/system/connman.service8;;;
enabled; vendor preset: enabled)
Active: active (running) since Tue 2020-02-18 00:47:43 UTC; 1 day 9h ago
Main PID: 184 (connmand)
CGroup: /system.slice/connman.service
`-184 /usr/sbin/connmand -n
Feb 19 10:27:33 solar connmand[184]: mlan0 {newlink} index 3 operstate
5 <DORMANT>
Feb 19 10:27:33 solar connmand[184]: mlan0 {add} route ff00:: gw ::
scope 0 <UNIVERSE>
Feb 19 10:27:33 solar connmand[184]: mlan0 {add} route fe80:: gw ::
scope 0 <UNIVERSE>
Feb 19 10:27:33 solar connmand[184]: mlan0 {RX} 10 packets 1650 bytes
Feb 19 10:27:33 solar connmand[184]: mlan0 {TX} 256 packets 96668 bytes
Feb 19 10:27:33 solar connmand[184]: mlan0 {update} flags 102467
<UP,RUNNING,LOWER_UP>
Feb 19 10:27:33 solar connmand[184]: mlan0 {newlink} index 3 address
D4:CA:6E:9A:7E:29 mtu 1500
Feb 19 10:27:33 solar connmand[184]: mlan0 {newlink} index 3 operstate 6 <UP>
Feb 19 10:28:13 solar connmand[184]: mlan0 {add} address
169.254.241.106/16 label mlan0 family 2
Feb 19 10:28:14 solar connmand[184]: mlan0 {add} route 169.254.0.0 gw
0.0.0.0 scope 253 <LINK>
# systemctl status wpa_supplicant -l
* wpa_supplicant.service - WPA supplicant
Loaded: loaded
(8;;file://solar/lib/systemd/system/wpa_supplicant.service/lib/systemd/system/wpa_supplicant.service8;;;
disabled; vendor preset: disabled)
Active: active (running) since Tue 2020-02-18 00:47:48 UTC; 1 day 9h ago
Main PID: 263 (wpa_supplicant)
CGroup: /system.slice/wpa_supplicant.service
`-263 /usr/sbin/wpa_supplicant -u
Feb 19 09:57:33 solar wpa_supplicant[263]: mlan0:
CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-47 noise=-92 txrate=65000
Feb 19 10:05:36 solar wpa_supplicant[263]: mlan0:
CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-52 noise=-92 txrate=72200
Feb 19 10:07:32 solar wpa_supplicant[263]: mlan0:
CTRL-EVENT-DISCONNECTED bssid=34:08:04:12:b1:a2 reason=2
Feb 19 10:07:32 solar wpa_supplicant[263]: dbus:
wpa_dbus_property_changed: no property SessionLength in object
/fi/w1/wpa_supplicant1/Interfaces/0
Feb 19 10:07:33 solar wpa_supplicant[263]: mlan0: Trying to associate
with 34:08:04:12:b1:a2 (SSID='Jupiter' freq=2437 MHz)
Feb 19 10:07:33 solar wpa_supplicant[263]: mlan0: Associated with
34:08:04:12:b1:a2
Feb 19 10:07:33 solar wpa_supplicant[263]: mlan0:
CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Feb 19 10:07:33 solar wpa_supplicant[263]: mlan0: WPA: Key negotiation
completed with 34:08:04:12:b1:a2 [PTK=CCMP GTK=TKIP]
Feb 19 10:07:33 solar wpa_supplicant[263]: mlan0: CTRL-EVENT-CONNECTED
- Connection to 34:08:04:12:b1:a2 completed [id=0 id_str=]
Feb 19 10:07:33 solar wpa_supplicant[263]: mlan0:
CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-51 noise=-92 txrate=65000
Thank
1 year
DBus.Error AccessDenied
by chaitanya cherukuri
Hello,
I'm using connman version 1.37 in YOCTO version 2.5.3(pyro). I get the
following error message when user other than root try to access
connman interface
Device fault detected : org.freedesktop.DBus.Error.AccessDenied:
Rejected send message, 2 matched rules; type="method_call",
sender=":1.7" (uid=1001 pid=636 comm="python /opt/yocto
/bin/appserver/server.pyc ") interface="net.connman.Manager"
member="GetTechnologies" error name="(unset)" requested_reply="0"
destination=":1.0" (uid=0 pid=396 comm="/usr/sbin/connmand ")
In order to make it work, I have to modify the rules(see below)
connman.conf in /usr/shar/dbus-1/system.d/connman.conf,
</policy>
<policy context="default">
<allow send_destination="net.connman"/>
</policy>
</busconfig>
Is this the correct way to handle this? How do I integrate this change
during the build time?
Thanks,
Chaitanya
1 year
[PATCH] iwd: Fix uninitialized access in tech_enable_tethering_cb()
by Daniel Wagner
gcc reports with:
plugins/iwd.c: In function ‘tech_enable_tethering_cb’:
plugins/iwd.c:575:15: warning: ‘iwdap’ may be used uninitialized in this function [-Wmaybe-uninitialized]
575 | g_free(iwdap->bridge);
---
Argh! Why didn't gcc complain earlier?
plugins/iwd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/iwd.c b/plugins/iwd.c
index bf6a2c261041..65cdaf99cb2b 100644
--- a/plugins/iwd.c
+++ b/plugins/iwd.c
@@ -535,7 +535,7 @@ static void tech_enable_tethering_cb(const DBusError *error, void *user_data)
{
struct tech_cb_data *cbd = user_data;
struct iwd_device *iwdd;
- struct iwd_ap *iwdap;
+ struct iwd_ap *iwdap = NULL;
DBG("");
--
2.25.0
1 year
Release 1.38
by Daniel Wagner
Hi,
After almost a year, we have a new release of ConnMan. There were many
small contributions, many bug fixes. I'd like to thank all of you for
your support and contributions:
David Llewellyn-Jones, David Weidenkopf, Mickael
GARDET, Santtu Lakkala, Henrik Persson, Joakim Lotsengård, John
Keeping, Julien Massot, Marcel Holtmann, Marcus Folkesson, Matt Vogt,
Nicola Lunghi, Robert Tiemann, Slava Monich, Torstein Husebø, Vivien
Henriet, Yasser, n.chaprana(a)samsung.com
I really like to thank Jussi Laakkonen for his contributions. He
improved the VPN code a lot. Jussi and I together made together 87% of
the changes.
There a couple new features: support for iwd and WireGuard.
Thanks,
Daniel
1 year
Weird UBIFS error to cause connmand crashed in UBIFS volume root
by JH
Hi,
I have been playing kernel mont to UBIFS rootfs volume for several
days, the kernel can now mount to UBIFS volume root, the system
services were running fine except the connection manager connmand
service failed, I restarted it again and again, the connman was always
crashed and ubifs_read_node: bad node type. Despite the UBIFS errors,
the system could be still running, I could type shell comands in
console when connman was stopped.
I am not clear if UBIFS errors caused connman failure or connman
caused UBIFS error, and why it always failed in connman, was it
coincident or was some special in connman man link to other things
such as udev to cause the issues?
Let me make it clear, it did not happen when the UBIFS rootfs was not
in UBIFS volume, so something was not right in UBIFS volume mounted
root, what could that be?
# ps
PID USER VSZ STAT COMMAND
1 root 5896 S {systemd} /sbin/init
2 root 0 SW [kthreadd]
3 root 0 IW< [rcu_gp]
4 root 0 IW< [rcu_par_gp]
5 root 0 IW [kworker/0:0-cgr]
6 root 0 IW< [kworker/0:0H]
7 root 0 IW [kworker/u2:0-ev]
8 root 0 IW< [mm_percpu_wq]
9 root 0 SW [ksoftirqd/0]
10 root 0 IW [rcu_sched]
11 root 0 IW [rcu_bh]
12 root 0 SW [migration/0]
13 root 0 SW [cpuhp/0]
14 root 0 SW [kdevtmpfs]
16 root 0 SW [oom_reaper]
17 root 0 IW< [writeback]
18 root 0 SW [kcompactd0]
19 root 0 IW< [crypto]
20 root 0 IW< [kblockd]
21 root 0 IW< [ata_sff]
22 root 0 SW [watchdogd]
23 root 0 IW< [rpciod]
24 root 0 IW< [kworker/u3:0-MW]
25 root 0 IW< [xprtiod]
26 root 0 IW< [cfg80211]
27 root 0 SW [kswapd0]
28 root 0 IW< [nfsiod]
57 root 0 IW< [ci_otg]
58 root 0 IW [kworker/u2:1-ev]
59 root 0 SW [irq/48-mmc0]
60 root 0 IW< [ipv6_addrconf]
61 root 0 SW [irq/18-imx_ther]
62 root 0 IW [kworker/0:2-eve]
63 root 0 SW [ubi_bgt0d]
68 root 0 SW [ubifs_bgt0_2]
83 root 12476 S /lib/systemd/systemd-journald
93 root 12476 S /lib/systemd/systemd-udevd
99 systemd- 4672 S /lib/systemd/systemd-networkd
104 systemd- 4708 S /lib/systemd/systemd-timesyncd
125 root 0 IW< [MWIFIEX_WORK_QU]
126 root 0 IW< [kworker/u3:1-MW]
129 root 0 IW< [MWIFIEX_DFS_CAC]
130 root 0 IW< [MWIFIEX_DFS_CHS]
139 root 4336 S /lib/systemd/systemd-logind
140 root 5592 S /usr/sbin/ofonod -n
141 messageb 3904 S /usr/bin/dbus-daemon --system --address=systemd: --noy
143 root 3548 S /sbin/agetty -o -p -- \u --noclear tty1 linux
144 root 2476 S -sh
167 root 2476 R ps
Here is the boot log:
Starting kernel ...
[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Linux version 4.19.75 (oe-user@oe-host) (gcc version
8.2.0 (GCC)) #1 SMP Sat Feb 15 01:18:31 UTC 2020
[ 0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
[ 0.000000] CPU: div instructions available: patching division code
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing
instruction cache
[ 0.000000] earlycon: ec_imx6q0 at MMIO 0x02020000 (options '')
[ 0.000000] bootconsole [ec_imx6q0] enabled
[ 0.000000] Memory policy: Data cache writealloc
[ 0.000000] cma: Reserved 64 MiB at 0x8c000000
[ 0.000000] random: get_random_bytes called from
start_kernel+0x8c/0x48c with crng_init=0
[ 0.000000] percpu: Embedded 18 pages/cpu s41896 r8192 d23640 u73728
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 65024
[ 0.000000] Kernel command line: console=ttymxc0,115200 earlycon
init=/sbin/init mtdparts=gpmi-nand:1m(boot),1m(ubootenv),-(storage)
root=ubi0:rootfs-volume rw ubi.mtd=2,2048 noinitrd rootfstype=ubifs
mem=251
[ 0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)
[ 0.000000] Memory: 169124K/262144K available (11264K kernel code,
881K rwdata, 3664K rodata, 1024K init, 7648K bss, 27484K reserved,
65536K cma-reserved, 0K highmem)
[ 0.000000] Virtual kernel memory layout:
[ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
[ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB)
[ 0.000000] vmalloc : 0xd0800000 - 0xff800000 ( 752 MB)
[ 0.000000] lowmem : 0xc0000000 - 0xd0000000 ( 256 MB)
[ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB)
[ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB)
[ 0.000000] .text : 0x(ptrval) - 0x(ptrval) (12256 kB)
[ 0.000000] .init : 0x(ptrval) - 0x(ptrval) (1024 kB)
[ 0.000000] .data : 0x(ptrval) - 0x(ptrval) ( 882 kB)
[ 0.000000] .bss : 0x(ptrval) - 0x(ptrval) (7649 kB)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] Running RCU self tests
[ 0.000000] rcu: Hierarchical RCU implementation.
[ 0.000000] rcu: RCU event tracing is enabled.
[ 0.000000] rcu: RCU lockdep checking is enabled.
[ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[ 0.000000] Switching to timer-based delay loop, resolution 41ns
[ 0.000022] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps
every 89478484971ns
[ 0.007843] clocksource: mxc_timer1: mask: 0xffffffff max_cycles:
0xffffffff, max_idle_ns: 79635851949 ns
[ 0.020229] Console: colour dummy device 80x30
[ 0.021912] Lock dependency validator: Copyright (c) 2006 Red Hat,
Inc., Ingo Molnar
[ 0.029959] ... MAX_LOCKDEP_SUBCLASSES: 8
[ 0.033733] ... MAX_LOCK_DEPTH: 48
[ 0.037906] ... MAX_LOCKDEP_KEYS: 8191
[ 0.042364] ... CLASSHASH_SIZE: 4096
[ 0.046605] ... MAX_LOCKDEP_ENTRIES: 32768
[ 0.051044] ... MAX_LOCKDEP_CHAINS: 65536
[ 0.055572] ... CHAINHASH_SIZE: 32768
[ 0.059919] memory used by lock dependency info: 4655 kB
[ 0.065313] per task-struct memory footprint: 1536 bytes
[ 0.070908] Calibrating delay loop (skipped), value calculated
using timer frequency.. 48.00 BogoMIPS (lpj=240000)
[ 0.081172] pid_max: default: 32768 minimum: 301
[ 0.086496] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.092439] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.103725] CPU: Testing write buffer coherency: ok
[ 0.108096] /cpus/cpu@0 missing clock-frequency property
[ 0.111306] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[ 0.123006] Setting up static identity map for 0x80100000 - 0x80100078
[ 0.128368] rcu: Hierarchical SRCU implementation.
[ 0.137167] smp: Bringing up secondary CPUs ...
[ 0.139124] smp: Brought up 1 node, 1 CPU
[ 0.142921] SMP: Total of 1 processors activated (48.00 BogoMIPS).
[ 0.149227] CPU: All CPU(s) started in SVC mode.
[ 0.158935] devtmpfs: initialized
[ 0.201054] VFP support v0.3: implementor 41 architecture 2 part 30
variant 7 rev 5
[ 0.207894] clocksource: jiffies: mask: 0xffffffff max_cycles:
0xffffffff, max_idle_ns: 19112604462750000 ns
[ 0.216169] futex hash table entries: 256 (order: 2, 16384 bytes)
[ 0.228786] pinctrl core: initialized pinctrl subsystem
[ 0.240755] NET: Registered protocol family 16
[ 0.321600] DMA: preallocated 256 KiB pool for atomic coherent allocations
[ 0.334251] cpuidle: using governor menu
[ 0.376285] vdd3p0: supplied by regulator-dummy
[ 0.382733] cpu: supplied by regulator-dummy
[ 0.388666] vddsoc: supplied by regulator-dummy
[ 0.440175] No ATAGs?
[ 0.440749] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4
watchpoint registers.
[ 0.448312] hw-breakpoint: maximum watchpoint size is 8 bytes.
[ 0.466446] imx6ul-pinctrl 20e0000.iomuxc: initialized IMX pinctrl driver
[ 0.472599] imx6ul-pinctrl 2290000.iomuxc-snvs: no groups defined
in /soc/aips-bus@2200000/iomuxc-snvs@2290000
[ 0.480694] imx6ul-pinctrl 2290000.iomuxc-snvs: initialized IMX
pinctrl driver
[ 0.651549] mxs-dma 1804000.dma-apbh: initialized
[ 0.665095] vgaarb: loaded
[ 0.668171] SCSI subsystem initialized
[ 0.672731] usbcore: registered new interface driver usbfs
[ 0.676417] usbcore: registered new interface driver hub
[ 0.681322] usbcore: registered new device driver usb
[ 0.690091] media: Linux media interface: v0.10
[ 0.692143] videodev: Linux video capture interface: v2.00
[ 0.698605] pps_core: LinuxPPS API ver. 1 registered
[ 0.702277] pps_core: Software ver. 5.3.6 - Copyright 2005-2007
Rodolfo Giometti <giometti(a)linux.it>
[ 0.711747] PTP clock support registered
[ 0.717640] Advanced Linux Sound Architecture Driver Initialized.
[ 0.727718] Bluetooth: Core ver 2.22
[ 0.728788] NET: Registered protocol family 31
[ 0.733166] Bluetooth: HCI device and connection manager initialized
[ 0.739471] Bluetooth: HCI socket layer initialized
[ 0.744378] Bluetooth: L2CAP socket layer initialized
[ 0.749641] Bluetooth: SCO socket layer initialized
[ 0.759423] clocksource: Switched to clocksource mxc_timer1
[ 1.421932] VFS: Disk quotas dquot_6.6.0
[ 1.423496] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 1.509030] NET: Registered protocol family 2
[ 1.515694] tcp_listen_portaddr_hash hash table entries: 128
(order: 0, 5120 bytes)
[ 1.521238] TCP established hash table entries: 2048 (order: 1, 8192 bytes)
[ 1.527688] TCP bind hash table entries: 2048 (order: 4, 73728 bytes)
[ 1.534946] TCP: Hash tables configured (established 2048 bind 2048)
[ 1.541719] UDP hash table entries: 256 (order: 2, 20480 bytes)
[ 1.546477] UDP-Lite hash table entries: 256 (order: 2, 20480 bytes)
[ 1.554293] NET: Registered protocol family 1
[ 1.562500] RPC: Registered named UNIX socket transport module.
[ 1.565713] RPC: Registered udp transport module.
[ 1.570649] RPC: Registered tcp transport module.
[ 1.575085] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 1.600954] Initialise system trusted keyrings
[ 1.604320] workingset: timestamp_bits=30 max_order=16 bucket_order=0
[ 1.660099] NFS: Registering the id_resolver key type
[ 1.662644] Key type id_resolver registered
[ 1.666574] Key type id_legacy registered
[ 1.671374] jffs2: version 2.2. (NAND) �© 2001-2006 Red Hat, Inc.
[ 1.681352] fuse init (API version 7.27)
[ 1.727390] Key type asymmetric registered
[ 1.728913] Asymmetric key parser 'x509' registered
[ 1.735929] io scheduler noop registered
[ 1.737502] io scheduler deadline registered
[ 1.744046] io scheduler cfq registered (default)
[ 1.746464] io scheduler mq-deadline registered
[ 1.751446] io scheduler kyber registered
[ 1.798251] imx-sdma 20ec000.sdma: Direct firmware load for
imx/sdma/sdma-imx6q.bin failed with error -2
[ 1.805647] imx-sdma 20ec000.sdma: external firmware not found,
using ROM firmware
[ 1.825203] console [ttymxc0] enabled
[ 1.829093] bootconsole [ec_imx6q0] disabled
[ 1.842863] 21e8000.serial: ttymxc1 at MMIO 0x21e8000 (irq = 49,
base_baud = 5000000) is a IMX
[ 1.857338] 21f0000.serial: ttymxc3 at MMIO 0x21f0000 (irq = 50,
base_baud = 5000000) is a IMX
[ 1.972458] brd: module loaded
[ 2.047892] loop: module loaded
[ 2.075735] random: fast init done
[ 2.107514] nand: device found, Manufacturer ID: 0xef, Chip ID: 0xda
[ 2.114253] nand: Winbond W29N02GV
[ 2.117792] nand: 256 MiB, SLC, erase size: 128 KiB, page size:
2048, OOB size: 64
[ 2.132084] Bad block table found at page 131008, version 0x01
[ 2.139165] Bad block table found at page 130944, version 0x01
[ 2.146985] 3 cmdlinepart partitions found on MTD device gpmi-nand
[ 2.153527] Creating 3 MTD partitions on "gpmi-nand":
[ 2.158738] 0x000000000000-0x000000100000 : "boot"
[ 2.175928] 0x000000100000-0x000000200000 : "ubootenv"
[ 2.190584] 0x000000200000-0x000010000000 : "storage"
[ 2.610540] gpmi-nand 1806000.gpmi-nand: driver registered.
[ 2.626095] libphy: Fixed MDIO Bus: probed
[ 2.634294] CAN device driver interface
[ 2.645658] usbcore: registered new interface driver asix
[ 2.651725] usbcore: registered new interface driver ax88179_178a
[ 2.658211] usbcore: registered new interface driver cdc_ether
[ 2.664676] usbcore: registered new interface driver net1080
[ 2.670935] usbcore: registered new interface driver cdc_subset
[ 2.677239] usbcore: registered new interface driver zaurus
[ 2.683554] usbcore: registered new interface driver cdc_ncm
[ 2.689796] usbcore: registered new interface driver qmi_wwan
[ 2.695676] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 2.702495] ehci-pci: EHCI PCI platform driver
[ 2.707340] ehci-mxc: Freescale On-Chip EHCI Host driver
[ 2.715096] usbcore: registered new interface driver cdc_wdm
[ 2.721514] usbcore: registered new interface driver usb-storage
[ 3.025342] imx_usb 2184200.usb: 2184200.usb supply vbus not found,
using dummy regulator
[ 3.034808] imx_usb 2184200.usb: Linked as a consumer to regulator.0
[ 3.047862] ci_hdrc ci_hdrc.1: EHCI Host Controller
[ 3.053703] ci_hdrc ci_hdrc.1: new USB bus registered, assigned bus number 1
[ 3.089639] ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.00
[ 3.105053] hub 1-0:1.0: USB hub found
[ 3.110273] hub 1-0:1.0: 1 port detected
[ 3.131914] input: 20cc000.snvs:snvs-powerkey as
/devices/soc0/soc/2000000.aips-bus/20cc000.snvs/20cc000.snvs:snvs-powerkey/input/input0
[ 3.163646] snvs_rtc 20cc000.snvs:snvs-rtc-lp: rtc core: registered
20cc000.snvs:snvs-rtc-lp as rtc0
[ 3.174375] i2c /dev entries driver
[ 3.196518] imx2-wdt 20bc000.wdog: timeout 60 sec (nowayout=0)
[ 3.205159] Bluetooth: HCI UART driver ver 2.3
[ 3.209993] Bluetooth: HCI UART protocol H4 registered
[ 3.216444] Bluetooth: HCI UART protocol LL registered
[ 3.231214] sdhci: Secure Digital Host Controller Interface driver
[ 3.237540] sdhci: Copyright(c) Pierre Ossman
[ 3.242226] sdhci-pltfm: SDHCI platform and OF driver helper
[ 3.252965] sdhci-esdhc-imx 2190000.usdhc: Linked as a consumer to
regulator.4
[ 3.301035] mmc0: SDHCI controller on 2190000.usdhc [2190000.usdhc]
using ADMA
[ 3.324541] usbcore: registered new interface driver usbhid
[ 3.330501] usbhid: USB HID core driver
[ 3.414641] mmc0: new high speed SDIO card at address 0001
[ 3.421809] NET: Registered protocol family 10
[ 3.437740] Segment Routing with IPv6
[ 3.443665] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[ 3.455252] NET: Registered protocol family 17
[ 3.460195] can: controller area network core (rev 20170425 abi 9)
[ 3.467043] NET: Registered protocol family 29
[ 3.472215] can: raw protocol (rev 20170425)
[ 3.476791] can: broadcast manager protocol (rev 20170425 t)
[ 3.482891] can: netlink gateway (rev 20170425) max_hops=1
[ 3.491187] Key type dns_resolver registered
[ 3.501123] cpu cpu0: Linked as a consumer to regulator.2
[ 3.507419] cpu cpu0: Linked as a consumer to regulator.3
[ 3.518440] cpu cpu0: failed to disable 696MHz OPP
[ 3.528799] Registering SWP/SWPB emulation handler
[ 3.540519] Loading compiled-in X.509 certificates
[ 3.654691] imx_thermal tempmon: Commercial CPU temperature grade -
max:95C critical:90C passive:85C
[ 3.668095] ubi0: default fastmap pool size: 100
[ 3.673065] ubi0: default fastmap WL pool size: 50
[ 3.677913] ubi0: attaching mtd2
[ 5.311751] random: crng init done
[ 5.813115] ubi0: scanning is finished
[ 5.833556] ubi0 warning: ubi_eba_init: cannot reserve enough PEBs
for bad PEB handling, reserved 34, need 36
[ 5.859989] ubi0: attached mtd2 (name "storage", size 254 MiB)
[ 5.865897] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
[ 5.873009] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048
[ 5.879943] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096
[ 5.886952] ubi0: good PEBs: 2028, bad PEBs: 4, corrupted PEBs: 0
[ 5.893173] ubi0: user volume: 4, internal volumes: 1, max. volumes
count: 128
[ 5.900519] ubi0: max/mean erase counter: 1/0, WL threshold: 4096,
image sequence number: 1303700519
[ 5.909775] ubi0: available PEBs: 0, total reserved PEBs: 2028,
PEBs reserved for bad PEB handling: 34
[ 5.919515] ubi0: background thread "ubi_bgt0d" started, PID 63
[ 5.926731] snvs_rtc 20cc000.snvs:snvs-rtc-lp: setting system clock
to 1970-01-01 00:00:02 UTC (2)
[ 5.936237] cfg80211: Loading compiled-in X.509 certificates for
regulatory database
[ 5.953050] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 5.962234] vdd3p0: disabling
[ 5.965442] ALSA device list:
[ 5.968456] No soundcards found.
[ 5.973343] platform regulatory.0: Direct firmware load for
regulatory.db failed with error -2
[ 5.982258] cfg80211: failed to load regulatory.db
[ 5.995617] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" started, PID 68
[ 6.049588] UBIFS (ubi0:2): recovery needed
[ 7.136951] UBIFS (ubi0:2): recovery completed
[ 7.148039] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2,
name "rootfs-volume"
[ 7.156248] UBIFS (ubi0:2): LEB size: 126976 bytes (124 KiB),
min./max. I/O unit sizes: 2048 bytes/2048 bytes
[ 7.166338] UBIFS (ubi0:2): FS size: 214462464 bytes (204 MiB, 1689
LEBs), journal size 9023488 bytes (8 MiB, 72 LEBs)
[ 7.177159] UBIFS (ubi0:2): reserved for root: 0 bytes (0 KiB)
[ 7.183103] UBIFS (ubi0:2): media format: w4/r0 (latest is w5/r0),
UUID 54AA63BA-6700-4424-A80E-3BBEA92B96D3, small LPT model
[ 7.197196] VFS: Mounted root (ubifs filesystem) on device 0:13.
[ 7.207404] devtmpfs: mounted
[ 7.213752] Freeing unused kernel memory: 1024K
[ 7.219392] Run /sbin/init as init process
[ 7.798118] systemd[1]: System time before build time, advancing clock.
[ 7.959033] systemd[1]: systemd 239 running in system mode. (-PAM
-AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP
-GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2
-IDN)
[ 7.985315] systemd[1]: Detected architecture arm.
Welcome to OpenEmbedded nodistro.0!
[ 8.060104] systemd[1]: Set hostname to <solar>.
[ 8.932602] systemd[1]: File
/lib/systemd/system/systemd-journald.service:36 configures an IP
firewall (IPAddressDeny=any), but the local system does not support
BPF/cgroup based firewalling.
[ 8.951338] systemd[1]: Proceeding WITHOUT firewalling in effect!
(This warning is only shown for the first loaded unit using IP
firewalling.)
[ 9.606602] systemd[1]: Created slice system-getty.slice.
[ OK ] Created slice system-getty.slice.
[ 9.668267] systemd[1]: Listening on Network Service Netlink Socket.
[ OK ] Listening on Network Service Netlink Socket.
[ 9.720231] systemd[1]: Started Forward Password Requests to Wall
Directory Watch.
[ OK ] Started Forward Password Requests to Wall Directory Watch.
[ 9.767083] systemd[1]: Created slice system-serial\x2dgetty.slice.
[ OK ] Created slice system-serial\x2dgetty.slice.
[ 9.828772] systemd[1]: Listening on Journal Socket (/dev/log).
[ OK ] Listening on Journal Socket (/dev/log).
[ OK ] Reached target Swap.
[ OK ] Created slice User and Session Slice.
[ OK ] Listening on udev Control Socket.
[ OK ] Reached target Slices.
[ OK ] Listening on initctl Compatibility Named Pipe.
[ OK ] Listening on Journal Socket.
Mounting Temporary Directory (/tmp)...
Starting Apply Kernel Variables...
Mounting FUSE Control File System...
Mounting Kernel Debug File System...
[ OK ] Reached target Remote File Systems.
Starting Journal Service...
Starting Remount Root and Kernel File Systems...
[ OK ] Started Dispatch Password Requests to Console Directory Watch.
[ OK ] Reached target Paths.
[ OK ] Reached target Host and Network Name Lookups.
[ OK ] Listening on udev Kernel Socket.
Starting udev Coldplug all Devices...
[ OK ] Mounted Temporary Directory (/tmp).
[ OK ] Started Apply Kernel Variables.
[ OK ] Mounted FUSE Control File System.
[ OK ] Mounted Kernel Debug File System.
[ OK ] Started Remount Root and Kernel File Systems.
Starting Create Static Device Nodes in /dev...
[ OK ] Started Create Static Device Nodes in /dev.
[ OK ] Started Journal Service.
Starting Flush Journal to Persistent Storage...
[ OK ] Reached target Local File Systems (Pre).
Mounting /var/volatile...
[ OK ] Reached target Containers.
Starting udev Kernel Device Manager...
[ OK ] Mounted /var/volatile.
Starting Load/Save Random Seed...
[ OK ] Reached target Local File Systems.
[ 12.244931] systemd-journald[83]: Received request to flush runtime
journal from PID 1
[ OK ] Started Load/Save Random Seed.
[ OK ] Started Flush Journal to Persistent Storage.
Starting Create Volatile Files and Directories...
[ OK ] Started Create Volatile Files and Directories.
[ OK ] Started udev Kernel Device Manager.
Starting Network Service...
Starting Update UTMP about System Boot/Shutdown...
Starting Network Time Synchronization...
[ OK ] Started Update UTMP about System Boot/Shutdown.
[ OK ] Started Network Service.
[ OK ] Started Network Time Synchronization.
[ OK ] Reached target System Time Synchronized.
[ OK ] Started udev Coldplug all Devices.
[ OK ] Found device /dev/ttymxc0.
[ 20.260214] mwifiex_sdio mmc0:0001:1: info: FW download over, size
258680 bytes
[ 20.521081] mwifiex_sdio mmc0:0001:1: WLAN FW is active
[ 20.576962] mwifiex_sdio mmc0:0001:1: CMD_RESP: cmd 0x242 error, result=0x2
[ 20.584278] mwifiex_sdio mmc0:0001:1: mwifiex_process_cmdresp: cmd
0x242 failed during initialization
[ 20.720383] mwifiex_sdio mmc0:0001:1: info: MWIFIEX VERSION:
mwifiex 1.0 (14.68.36.p60)
[ 20.728536] mwifiex_sdio mmc0:0001:1: driver_version = mwifiex 1.0
(14.68.36.p60)
[ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[ OK ] Reached target System Initialization.
[ OK ] Listening on D-Bus System Message Bus Socket.
[ OK ] Started Daily Cleanup of Temporary Directories.
[ OK ] Reached target Timers.
Starting sshd.socket.
Starting Load/Save RF Kill Switch Status...
[ OK ] Listening on sshd.socket.
[ OK ] Started Load/Save RF Kill Switch Status.
[ OK ] Reached target Sockets.
[ OK ] Reached target Basic System.
Starting Login Service...
Starting Telephony service...
[ OK ] Started D-Bus System Message Bus.
Starting Connection service...
[ OK ] Started Getty on tty1.
[ OK ] Started Serial Getty on ttymxc0.
[ 23.510795] UBIFS error (ubi0:2 pid 142): ubifs_read_node: bad node
type (255 but expected 2)
[ 23.520021] UBIFS error (ubi0:2 pid 142): ubifs_read_node: bad node
at LEB 395:118520, LEB mapping status 1
[ 23.529948] Not a node, first 24 bytes:
[ 23.529979] 00000000: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
ff ff ff ff ff ff ff ff ff
........................
[ 23.546828] CPU: 0 PID: 142 Comm: (connmand) Not tainted 4.19.75 #1
[ 23.553124] Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[ 23.559326] Backtrace:
[ 23.561821] [<c010e548>] (dump_backtrace) from [<c010e8d0>]
(show_stack+0x18/0x1c)
[ 23.569423] r7:00000000 r6:600d0013 r5:00000000 r4:c11cf8d8
[ 23.575119] [<c010e8b8>] (show_stack) from [<c0b79708>]
(dump_stack+0xdc/0x114)
[ 23.582462] [<c0b7962c>] (dump_stack) from [<c0423f30>]
(ubifs_read_node+0x230/0x268)
[ 23.590324] r10:00000002 r9:c69e3400 r8:00000041 r7:0000018b
r6:00000000 r5:0001cef8
[ 23.598178] r4:c6611000 r3:880c3d76
[ 23.601787] [<c0423d00>] (ubifs_read_node) from [<c0440b80>]
(ubifs_tnc_read_node+0xb0/0xb8)
[ 23.610256] r10:c69e3400 r9:c1108908 r8:00000000 r7:c6611000
r6:c69e3400 r5:00000002
[ 23.618106] r4:c6ae75c8
[ 23.620668] [<c0440ad0>] (ubifs_tnc_read_node) from [<c0425948>]
(tnc_read_hashed_node+0xa0/0x1bc)
[ 23.629656] r7:c6611198 r6:c6611000 r5:c69e3400 r4:c6ae75c8
[ 23.635347] [<c04258a8>] (tnc_read_hashed_node) from [<c04271bc>]
(ubifs_tnc_locate.part.2+0x1cc/0x1f4)
[ 23.644764] r7:c6611198 r6:c6a1fd18 r5:00000000 r4:c6611000
[ 23.650454] [<c0426ff0>] (ubifs_tnc_locate.part.2) from
[<c0427998>] (ubifs_tnc_lookup_nm+0x3c/0x150)
[ 23.659701] r10:c6a1fd18 r9:c6a1fcfc r8:c6611000 r7:c69e3400
r6:c47085d0 r5:c1108908
[ 23.667550] r4:c69e3400
[ 23.670114] [<c042795c>] (ubifs_tnc_lookup_nm) from [<c041b2d4>]
(ubifs_lookup+0x114/0x300)
[ 23.678494] r10:0000106e r9:c6611000 r8:c1108908 r7:5e05a400
r6:c47085d0 r5:c49a3450
[ 23.686344] r4:c69e3400
[ 23.688913] [<c041b1c0>] (ubifs_lookup) from [<c0298e5c>]
(path_openat+0x90c/0x1180)
[ 23.696685] r10:c49a3450 r9:c693c8c0 r8:c6a1fe28 r7:00020020
r6:c6a1fee8 r5:c496b730
[ 23.704535] r4:c6a1fdc4
[ 23.707099] [<c0298550>] (path_openat) from [<c029a7a0>]
(do_filp_open+0x78/0xe4)
[ 23.714611] r10:c6ae7200 r9:025cd828 r8:00000001 r7:c1108908
r6:c6a1fee8 r5:c6a1fe28
[ 23.722461] r4:c60e7000
[ 23.725025] [<c029a728>] (do_filp_open) from [<c028eb70>]
(do_open_execat+0x74/0x1a0)
[ 23.732884] r8:ffffff9c r7:00000000 r6:c60e7000 r5:c1108908 r4:c60e7000
[ 23.739615] [<c028eafc>] (do_open_execat) from [<c0290a98>]
(__do_execve_file+0x7ac/0xa2c)
[ 23.747908] r9:025cd828 r8:ffffff9c r7:00000000 r6:c638e400
r5:c1108908 r4:c60e7000
[ 23.755679] [<c02902ec>] (__do_execve_file) from [<c029100c>]
(sys_execve+0x3c/0x44)
[ 23.763451] r10:0000000b r9:c6a1e000 r8:c01011e4 r7:0000000b
r6:025ca1f8 r5:025ac0a8
[ 23.771302] r4:025cd828
[ 23.773865] [<c0290fd0>] (sys_execve) from [<c0101000>]
(ret_fast_syscall+0x0/0x28)
[ 23.781544] Exception stack(0xc6a1ffa8 to 0xc6a1fff0)
[ 23.786625] ffa0: ffffffff 0000003f 025a6b38
025cd828 025ac0a8 025a6c58
[ 23.794829] ffc0: ffffffff 0000003f 025ca1f8 0000000b 025cd828
00000000 00000000 00000001
[ 23.803030] ffe0: 00574934 bea266b4 004b422f b6cfd2f8
[ 23.808106] r5:0000003f r4:ffffffff
[ OK ] Started Login Service.
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[ OK ] Started Telephony service.
[ OK ] Reached target Network.
[ OK ] Stopped Connection service.
Starting Connection service...
[ 24.746053] UBIFS error (ubi0:2 pid 151): ubifs_read_node: bad node
type (255 but expected 2)
[ 24.754919] UBIFS error (ubi0:2 pid 151): ubifs_read_node: bad node
at LEB 395:118520, LEB mapping status 1
[ 24.764914] Not a node, first 24 bytes:
[ 24.764943] 00000000: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
ff ff ff ff ff ff ff ff ff
........................
[ 24.781813] CPU: 0 PID: 151 Comm: (connmand) Not tainted 4.19.75 #1
[ 24.788110] Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[ 24.794313] Backtrace:
[ 24.796810] [<c010e548>] (dump_backtrace) from [<c010e8d0>]
(show_stack+0x18/0x1c)
[ 24.804412] r7:00000000 r6:600c0113 r5:00000000 r4:c11cf8d8
[ 24.810106] [<c010e8b8>] (show_stack) from [<c0b79708>]
(dump_stack+0xdc/0x114)
[ 24.817450] [<c0b7962c>] (dump_stack) from [<c0423f30>]
(ubifs_read_node+0x230/0x268)
[ 24.825313] r10:00000002 r9:c6858600 r8:00000041 r7:0000018b
r6:00000000 r5:0001cef8
[ 24.833167] r4:c6611000 r3:880c3d76
[ 24.836776] [<c0423d00>] (ubifs_read_node) from [<c0440b80>]
(ubifs_tnc_read_node+0xb0/0xb8)
[ 24.845242] r10:c6858600 r9:c1108908 r8:00000000 r7:c6611000
r6:c6858600 r5:00000002
[ 24.853092] r4:c6ae75c8
[ 24.855657] [<c0440ad0>] (ubifs_tnc_read_node) from [<c0425948>]
(tnc_read_hashed_node+0xa0/0x1bc)
[ 24.864640] r7:c6611198 r6:c6611000 r5:c6858600 r4:c6ae75c8
[ 24.870329] [<c04258a8>] (tnc_read_hashed_node) from [<c04271bc>]
(ubifs_tnc_locate.part.2+0x1cc/0x1f4)
[ 24.879748] r7:c6611198 r6:c6a1fd18 r5:00000000 r4:c6611000
[ 24.885437] [<c0426ff0>] (ubifs_tnc_locate.part.2) from
[<c0427998>] (ubifs_tnc_lookup_nm+0x3c/0x150)
[ 24.894686] r10:c6a1fd18 r9:c6a1fcfc r8:c6611000 r7:c6858600
r6:c47085d0 r5:c1108908
[ 24.902537] r4:c6858600
[ 24.905100] [<c042795c>] (ubifs_tnc_lookup_nm) from [<c041b2d4>]
(ubifs_lookup+0x114/0x300)
[ 24.913480] r10:0000106e r9:c6611000 r8:c1108908 r7:5e05a400
r6:c47085d0 r5:c497e678
[ 24.921332] r4:c6858600
[ 24.923899] [<c041b1c0>] (ubifs_lookup) from [<c0298e5c>]
(path_openat+0x90c/0x1180)
[ 24.931672] r10:c497e678 r9:c69b5dc0 r8:c6a1fe28 r7:00020020
r6:c6a1fee8 r5:c496b730
[ 24.939524] r4:c6a1fdc4
[ 24.942089] [<c0298550>] (path_openat) from [<c029a7a0>]
(do_filp_open+0x78/0xe4)
[ 24.949601] r10:c6ae6c00 r9:025cfed8 r8:00000001 r7:c1108908
r6:c6a1fee8 r5:c6a1fe28
[ 24.957452] r4:c60e7000
[ 24.960017] [<c029a728>] (do_filp_open) from [<c028eb70>]
(do_open_execat+0x74/0x1a0)
[ 24.967876] r8:ffffff9c r7:00000000 r6:c60e7000 r5:c1108908 r4:c60e7000
[ 24.974607] [<c028eafc>] (do_open_execat) from [<c0290a98>]
(__do_execve_file+0x7ac/0xa2c)
[ 24.982900] r9:025cfed8 r8:ffffff9c r7:00000000 r6:c63ce400
r5:c1108908 r4:c60e7000
[ 24.990672] [<c02902ec>] (__do_execve_file) from [<c029100c>]
(sys_execve+0x3c/0x44)
[ 24.998443] r10:0000000b r9:c6a1e000 r8:c01011e4 r7:0000000b
r6:025c8998 r5:0257fc70
[ 25.006294] r4:025cfed8
[ 25.008858] [<c0290fd0>] (sys_execve) from [<c0101000>]
(ret_fast_syscall+0x0/0x28)
[ 25.016537] Exception stack(0xc6a1ffa8 to 0xc6a1fff0)
[ 25.021619] ffa0: ffffffff 0000003f 025a6b38
025cfed8 0257fc70 025a6c58
[ 25.029823] ffc0: ffffffff 0000003f 025c8998 0000000b 025cfed8
00000000 00000000 00000001
[ 25.038024] ffe0: 00574934 bea266b4 004b422f b6cfd2f8
[ 25.043100] r5:0000003f r4:ffffffff
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[ OK ] Stopped Connection service.
Starting Connection service...
[ 25.737261] UBIFS error (ubi0:2 pid 153): ubifs_read_node: bad node
type (255 but expected 2)
[ 25.746167] UBIFS error (ubi0:2 pid 153): ubifs_read_node: bad node
at LEB 395:118520, LEB mapping status 1
[ 25.756118] Not a node, first 24 bytes:
[ 25.756149] 00000000: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
ff ff ff ff ff ff ff ff ff
........................
[ 25.773096] CPU: 0 PID: 153 Comm: (connmand) Not tainted 4.19.75 #1
[ 25.779393] Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[ 25.785597] Backtrace:
[ 25.788091] [<c010e548>] (dump_backtrace) from [<c010e8d0>]
(show_stack+0x18/0x1c)
[ 25.795691] r7:00000000 r6:60000013 r5:00000000 r4:c11cf8d8
[ 25.801385] [<c010e8b8>] (show_stack) from [<c0b79708>]
(dump_stack+0xdc/0x114)
[ 25.808733] [<c0b7962c>] (dump_stack) from [<c0423f30>]
(ubifs_read_node+0x230/0x268)
[ 25.816597] r10:00000002 r9:c6858200 r8:00000041 r7:0000018b
r6:00000000 r5:0001cef8
[ 25.824449] r4:c6611000 r3:880c3d76
[ 25.828057] [<c0423d00>] (ubifs_read_node) from [<c0440b80>]
(ubifs_tnc_read_node+0xb0/0xb8)
[ 25.836526] r10:c6858200 r9:c1108908 r8:00000000 r7:c6611000
r6:c6858200 r5:00000002
[ 25.844375] r4:c6ae75c8
[ 25.846940] [<c0440ad0>] (ubifs_tnc_read_node) from [<c0425948>]
(tnc_read_hashed_node+0xa0/0x1bc)
[ 25.855924] r7:c6611198 r6:c6611000 r5:c6858200 r4:c6ae75c8
[ 25.861611] [<c04258a8>] (tnc_read_hashed_node) from [<c04271bc>]
(ubifs_tnc_locate.part.2+0x1cc/0x1f4)
[ 25.871029] r7:c6611198 r6:c6aa9d18 r5:00000000 r4:c6611000
[ 25.876719] [<c0426ff0>] (ubifs_tnc_locate.part.2) from
[<c0427998>] (ubifs_tnc_lookup_nm+0x3c/0x150)
[ 25.885966] r10:c6aa9d18 r9:c6aa9cfc r8:c6611000 r7:c6858200
r6:c47085d0 r5:c1108908
[ 25.893815] r4:c6858200
[ 25.896378] [<c042795c>] (ubifs_tnc_lookup_nm) from [<c041b2d4>]
(ubifs_lookup+0x114/0x300)
[ 25.904758] r10:0000106e r9:c6611000 r8:c1108908 r7:5e05a400
r6:c47085d0 r5:c49b55c0
[ 25.912608] r4:c6858200
[ 25.915177] [<c041b1c0>] (ubifs_lookup) from [<c0298e5c>]
(path_openat+0x90c/0x1180)
[ 25.922954] r10:c49b55c0 r9:c6a26280 r8:c6aa9e28 r7:00020020
r6:c6aa9ee8 r5:c496b730
[ 25.930804] r4:c6aa9dc4
[ 25.933369] [<c0298550>] (path_openat) from [<c029a7a0>]
(do_filp_open+0x78/0xe4)
[ 25.940882] r10:c6ae6c00 r9:025d0880 r8:00000001 r7:c1108908
r6:c6aa9ee8 r5:c6aa9e28
[ 25.948732] r4:c60e7000
[ 25.951300] [<c029a728>] (do_filp_open) from [<c028eb70>]
(do_open_execat+0x74/0x1a0)
[ 25.959159] r8:ffffff9c r7:00000000 r6:c60e7000 r5:c1108908 r4:c60e7000
[ 25.965892] [<c028eafc>] (do_open_execat) from [<c0290a98>]
(__do_execve_file+0x7ac/0xa2c)
[ 25.974187] r9:025d0880 r8:ffffff9c r7:00000000 r6:c63ce400
r5:c1108908 r4:c60e7000
[ 25.981958] [<c02902ec>] (__do_execve_file) from [<c029100c>]
(sys_execve+0x3c/0x44)
[ 25.989728] r10:0000000b r9:c6aa8000 r8:c01011e4 r7:0000000b
r6:025c8998 r5:0257fc70
[ 25.997581] r4:025d0880
[ 26.000145] [<c0290fd0>] (sys_execve) from [<c0101000>]
(ret_fast_syscall+0x0/0x28)
[ 26.007825] Exception stack(0xc6aa9fa8 to 0xc6aa9ff0)
[ 26.012907] 9fa0: ffffffff 0000003f 025a6b38
025d0880 0257fc70 025a6c58
[ 26.021113] 9fc0: ffffffff 0000003f 025c8998 0000000b 025d0880
00000000 00000000 00000001
[ 26.029314] 9fe0: 00574934 bea266b4 004b422f b6cfd2f8
[ 26.034389] r5:0000003f r4:ffffffff
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[ OK ] Stopped Connection service.
Starting Connection service...
[ 26.498327] UBIFS error (ubi0:2 pid 154): ubifs_read_node: bad node
type (255 but expected 2)
[ 26.507283] UBIFS error (ubi0:2 pid 154): ubifs_read_node: bad node
at LEB 395:118520, LEB mapping status 1
[ 26.517243] Not a node, first 24 bytes:
[ 26.517275] 00000000: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
ff ff ff ff ff ff ff ff ff
........................
[ 26.534218] CPU: 0 PID: 154 Comm: (connmand) Not tainted 4.19.75 #1
[ 26.540513] Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[ 26.546714] Backtrace:
[ 26.549210] [<c010e548>] (dump_backtrace) from [<c010e8d0>]
(show_stack+0x18/0x1c)
[ 26.556809] r7:00000000 r6:60000013 r5:00000000 r4:c11cf8d8
[ 26.562506] [<c010e8b8>] (show_stack) from [<c0b79708>]
(dump_stack+0xdc/0x114)
[ 26.569852] [<c0b7962c>] (dump_stack) from [<c0423f30>]
(ubifs_read_node+0x230/0x268)
[ 26.577714] r10:00000002 r9:c6858600 r8:00000041 r7:0000018b
r6:00000000 r5:0001cef8
[ 26.585568] r4:c6611000 r3:880c3d76
[ 26.589180] [<c0423d00>] (ubifs_read_node) from [<c0440b80>]
(ubifs_tnc_read_node+0xb0/0xb8)
[ 26.597648] r10:c6858600 r9:c1108908 r8:00000000 r7:c6611000
r6:c6858600 r5:00000002
[ 26.605500] r4:c6ae75c8
[ 26.608064] [<c0440ad0>] (ubifs_tnc_read_node) from [<c0425948>]
(tnc_read_hashed_node+0xa0/0x1bc)
[ 26.617050] r7:c6611198 r6:c6611000 r5:c6858600 r4:c6ae75c8
[ 26.622740] [<c04258a8>] (tnc_read_hashed_node) from [<c04271bc>]
(ubifs_tnc_locate.part.2+0x1cc/0x1f4)
[ 26.632158] r7:c6611198 r6:c6aa9d18 r5:00000000 r4:c6611000
[ 26.637847] [<c0426ff0>] (ubifs_tnc_locate.part.2) from
[<c0427998>] (ubifs_tnc_lookup_nm+0x3c/0x150)
[ 26.647093] r10:c6aa9d18 r9:c6aa9cfc r8:c6611000 r7:c6858600
r6:c47085d0 r5:c1108908
[ 26.654942] r4:c6858600
[ 26.657506] [<c042795c>] (ubifs_tnc_lookup_nm) from [<c041b2d4>]
(ubifs_lookup+0x114/0x300)
[ 26.665886] r10:0000106e r9:c6611000 r8:c1108908 r7:5e05a400
r6:c47085d0 r5:c497ec38
[ 26.673737] r4:c6858600
[ 26.676306] [<c041b1c0>] (ubifs_lookup) from [<c0298e5c>]
(path_openat+0x90c/0x1180)
[ 26.684080] r10:c497ec38 r9:c6a22000 r8:c6aa9e28 r7:00020020
r6:c6aa9ee8 r5:c496b730
[ 26.691932] r4:c6aa9dc4
[ 26.694500] [<c0298550>] (path_openat) from [<c029a7a0>]
(do_filp_open+0x78/0xe4)
[ 26.702012] r10:c6ae6c00 r9:025cfa98 r8:00000001 r7:c1108908
r6:c6aa9ee8 r5:c6aa9e28
[ 26.709862] r4:c60e7000
[ 26.712432] [<c029a728>] (do_filp_open) from [<c028eb70>]
(do_open_execat+0x74/0x1a0)
[ 26.720291] r8:ffffff9c r7:00000000 r6:c60e7000 r5:c1108908 r4:c60e7000
[ 26.727022] [<c028eafc>] (do_open_execat) from [<c0290a98>]
(__do_execve_file+0x7ac/0xa2c)
[ 26.735315] r9:025cfa98 r8:ffffff9c r7:00000000 r6:c63ce400
r5:c1108908 r4:c60e7000
[ 26.743087] [<c02902ec>] (__do_execve_file) from [<c029100c>]
(sys_execve+0x3c/0x44)
[ 26.750858] r10:0000000b r9:c6aa8000 r8:c01011e4 r7:0000000b
r6:025c8a18 r5:0257fc70
[ 26.758710] r4:025cfa98
[ 26.761275] [<c0290fd0>] (sys_execve) from [<c0101000>]
(ret_fast_syscall+0x0/0x28)
[ 26.768954] Exception stack(0xc6aa9fa8 to 0xc6aa9ff0)
[ 26.774037] 9fa0: ffffffff 0000003f 025a6b38
025cfa98 0257fc70 025a6c58
[ 26.782244] 9fc0: ffffffff 0000003f 025c8a18 0000000b 025cfa98
00000000 00000000 00000001
[ 26.790445] 9fe0: 00574934 bea266b4 004b422f b6cfd2f8
[ 26.795519] r5:0000003f r4:ffffffff
[FAILED] Failed to start Connection service.
See 'systemctl status connman.service' for details.
[ OK ] Stopped Connection service.
Starting Connection service...
[ 27.263988] UBIFS error (ubi0:2 pid 155): ubifs_read_node: bad node
type (255 but expected 2)
[ 27.272941] UBIFS error (ubi0:2 pid 155): ubifs_read_node: bad node
at LEB 395:118520, LEB mapping status 1
[ 27.282903] Not a node, first 24 bytes:
[ 27.282934] 00000000: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
ff ff ff ff ff ff ff ff ff
........................
[ 27.299803] CPU: 0 PID: 155 Comm: (connmand) Not tainted 4.19.75 #1
[ 27.306101] Hardware name: Freescale i.MX6 Ultralite (Device Tree)
[ 27.312305] Backtrace:
[ 27.314799] [<c010e548>] (dump_backtrace) from [<c010e8d0>]
(show_stack+0x18/0x1c)
[ 27.322399] r7:00000000 r6:60000013 r5:00000000 r4:c11cf8d8
[ 27.328095] [<c010e8b8>] (show_stack) from [<c0b79708>]
(dump_stack+0xdc/0x114)
[ 27.335442] [<c0b7962c>] (dump_stack) from [<c0423f30>]
(ubifs_read_node+0x230/0x268)
[ 27.343305] r10:00000002 r9:c6858200 r8:00000041 r7:0000018b
r6:00000000 r5:0001cef8
[ 27.351158] r4:c6611000 r3:880c3d76
[ 27.354767] [<c0423d00>] (ubifs_read_node) from [<c0440b80>]
(ubifs_tnc_read_node+0xb0/0xb8)
[ 27.363237] r10:c6858200 r9:c1108908 r8:00000000 r7:c6611000
r6:c6858200 r5:00000002
[ 27.371088] r4:c6ae75c8
[ 27.373651] [<c0440ad0>] (ubifs_tnc_read_node) from [<c0425948>]
(tnc_read_hashed_node+0xa0/0x1bc)
[ 27.382636] r7:c6611198 r6:c6611000 r5:c6858200 r4:c6ae75c8
[ 27.388323] [<c04258a8>] (tnc_read_hashed_node) from [<c04271bc>]
(ubifs_tnc_locate.part.2+0x1cc/0x1f4)
[ 27.397742] r7:c6611198 r6:c6aa9d18 r5:00000000 r4:c6611000
[ 27.403430] [<c0426ff0>] (ubifs_tnc_locate.part.2) from
[<c0427998>] (ubifs_tnc_lookup_nm+0x3c/0x150)
[ 27.412677] r10:c6aa9d18 r9:c6aa9cfc r8:c6611000 r7:c6858200
r6:c47085d0 r5:c1108908
[ 27.420526] r4:c6858200
[ 27.423090] [<c042795c>] (ubifs_tnc_lookup_nm) from [<c041b2d4>]
(ubifs_lookup+0x114/0x300)
[ 27.431470] r10:0000106e r9:c6611000 r8:c1108908 r7:5e05a400
r6:c47085d0 r5:c49b9c38
[ 27.439320] r4:c6858200
[ 27.441888] [<c041b1c0>] (ubifs_lookup) from [<c0298e5c>]
(path_openat+0x90c/0x1180)
[ 27.449662] r10:c49b9c38 r9:c691a280 r8:c6aa9e28 r7:00020020
r6:c6aa9ee8 r5:c496b730
[ 27.457512] r4:c6aa9dc4
[ 27.460077] [<c0298550>] (path_openat) from [<c029a7a0>]
(do_filp_open+0x78/0xe4)
[ 27.467589] r10:c6ae6c00 r9:025cfc38 r8:00000001 r7:c1108908
r6:c6aa9ee8 r5:c6aa9e28
[ 27.475440] r4:c60e7000
[ 27.478006] [<c029a728>] (do_filp_open) from [<c028eb70>]
(do_open_execat+0x74/0x1a0)
[ 27.485867] r8:ffffff9c r7:00000000 r6:c60e7000 r5:c1108908 r4:c60e7000
[ 27.492598] [<c028eafc>] (do_open_execat) from [<c0290a98>]
(__do_execve_file+0x7ac/0xa2c)
[ 27.500890] r9:025cfc38 r8:ffffff9c r7:00000000 r6:c63ce400
r5:c1108908 r4:c60e7000
[ 27.508662] [<c02902ec>] (__do_execve_file) from [<c029100c>]
(sys_execve+0x3c/0x44)
[ 27.516432] r10:0000000b r9:c6aa8000 r8:c01011e4 r7:0000000b
r6:025c8998 r5:0257fc70
[ 27.524283] r4:025cfc38
[ 27.526847] [<c0290fd0>] (sys_execve) from [<c0101000>]
(ret_fast_syscall+0x0/0x28)
[ 27.534527] Exception stack(0xc6aa9fa8 to 0xc6aa9ff0)
[ 27.539607] 9fa0: ffffffff 0000003f 025a6b38
025cfc38 0257fc70 025a6c58
[ 27.547812] 9fc0: ffffffff 0000003f 025c8998 0000000b 025cfc38
00000000 00000000 00000001
[ 27.556013] 9fe0: 00574934 bea266b4 004b422f b6cfd2f8
[ 27.561088] r5:0000003f r4:ffffffff
[FAILED] Failed to start Connection service.
root#
Thank you and appreciate your insite comments.
Kind regards,
- jh
1 year