-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PBEACON gone wild #206
Comments
following up after going through the code. According to beacon.c, if the system clock shifts forward, direwolf will emit all the pbeacons it missed during that interval all at once, until it's caught up. For example, if the internet is unavailable during boot, ntp cannot update the system time. Direwolf then starts, the internet becomes available, and ntp shifts the clock foward three hours. If direwolf is configured to send a pbeacon every 20 minutes, it will quickly send nine consecutive pbeacons. In beacon.c below, just below the comment Don't take relative to 'now' in case there was some delay, is where the bug exists. It should, in fact, be relative to "now" in case the system clock shifted forward. At a minimum an exception check should be made at that point to see if the next scheduled beacon is in the past, then set it relative to the new now. That would prevent all the catchup beacons after a system time change.
|
Confirmed bug by setting clock ahead 3 hours after direwolf had started. With a 20minute pbeacon configured, I was able to replicate the problem. I know this seems silly, but in the field, internet connections are spotty at best. If a system with no hardware clocks starts direwolf in 1970, then ntp updates to current time, direwolf will jam the frequency indefinitely (or until Unix time overflows in 2049?).
|
Proposed patch for beacon.c. Tested by moving clock forward, and back....
|
@craigerl I would recommend forking the repository and submitting a pull request. It's the cleanest way to contribute to the project since you've already pinpointed the source of the issue and implemented a solution. |
Pull request #301 created |
You have, perhaps, just resolved the issue (I'm going to test your PR asap), but I add my similar problem. I'm working on a replacement for an hardware Digipeater using a RPi 3 with Direwolf, no Internet, and a GPS + PPS system for clock sync. Everything will be installed in the cabin on top of the mountain, with an hour plus of off-road driving for any debug or problem solving, so I'm testing all the systems in my station at home. Every time I switch off and on the RPi, the system clock restart with a wrong datetime. GPS needs some time to be back in sync with satellites, so Direwolf process starts with bad clock. After few moments the GPS acquires a good signal, and ntpd process suddenly changes the system date and time based on GPS + PPS informations.
As you can see, several messages per seconds are added in logfile. Since our Digipeater is powered with batteries and solar cells, the problem could occur often, especially in periods, like in the winter, in which the daylight is not enough for a full battery charge. I will let you know if your patch resolve my problem. |
I haven't seen that in the log in my examples. did my patch fix it in the long run? it was easy to replicate, just update the clock after direwolf starts, and it transmits full time with pbeacon after pbeacon. I also noticed my one-line-pull request didn't make it into v1.6, so we need to go to source for any new builds. |
I put your patch into the 'dev' development branch. |
Thanks, this issue is further exacerbated by Pi's getting time from a GPS, which often happens after direwolf starts. If a Pi was off for three months, or has a read-only filesystem with no cached time, for example, direwolf will send three months worth of pbeacons jamming the frequency for potentially hours. If time changes, the slot method is broken regardless? afaict? |
---deleted--- |
I should probably be using clock_gettime (CLOCK_MONOTONIC) so the timing will be independent of the real time clock. |
Issue still in place for 1.7-dev-A on Raspberry Pi. |
This is evidently not simple to fix properly within Direwolf. A very effective and inexpensive workaround is to connect up a $7 DS3231 real time clock (RTC). This also has other benefits such as improved bootup log timestamping, a built in temperature sensor, etc. Here is a guide I wrote up or that for a Raspberry Pi: |
According to the comments here, and examination of the source code revision history, a work-around was added 15 Feb 2022. |
@wb2osz thanks for your comment. Ran a quick test stopping the ntpd service and setting the date to 2000 or so, then launched direwolf with cbeacon configured. Reenabled ntpd and... no more hundreds of beacons, just this message:
So it seems the issue is solved. Do you plan to release a dev snapshot in nearest future? |
Direwolf 1.5 was issuing a beacon every second, for a minute or so (I killed the power to the Tx after a dozen). It was running for a few days w/o problems. During this test, the only difference was a disconnected internet. Any reason it would send out PBEACONS as fast as possible? Raspbian, pi-zero, thus compiled from a git clone last week. This is a "personal" digi only interested in traffic to/from my callsign -- conf file below.
conf file.......................................
The text was updated successfully, but these errors were encountered: