If you like BoxMatrix then please contribute Supportdata, Supportdata2, Firmware and/or Hardware (get in touch).
My metamonk@yahoo.com is not reachable by me since years. Please use hippie2000@webnmail.de instead.

0
U

Property:libwdt.so

From BoxMatrix


BoxMatrix >> Shell-Commands >> libwdt.so @ BoxMatrix   -   IRC-Chat   -   Translate: de es fr it nl pl
News Selectors Models Accessories Components Environment Config Commands System Webif Software Develop Lexicon Community Project Media

Startup-Scr Hotplug-Scr BusyBox-Cmds Bash-Cmds AVM-Cmds Chipset-Cmds Linux-Cmds Shared-Libs Kernel-Mods Research

Shared-Library

Goto:   GPL-Browser  -  Dependencies   -   Model-Matrix   -   Symbols   -   SMW-Browser

Details

libwdt.so is the AVM-Watchdogs management API. It is the userspace glue to the /dev/watchdog (device).

It is mostly used by daemons to register and trigger a watchdog, but also by clients to poll for a daemon to be alive.

In fw 7.90 libwdt.so has been renamed to libavmwdt.so.

Translation of wdt.h on the GPL-Browser which contains a german doc of most implemented functions:

/*-------------------------------------------------------------------------------------*\
 * Announces the start of an application
 *
 * name:    zero-terminated name of the process (must be unique)
 * timeout: interval in seconds until the application with this name must have registered
 *
 * returns: WDT_OK on success, otherwise error
\*-------------------------------------------------------------------------------------*/
int watchdog_announce(char* name, int timeout);


/*-------------------------------------------------------------------------------------*\
 * Registers a process to the watchdog
 * The default timeout is 20s, after 10s the application will get notified (optional)
 *
 * name:    zero-terminated name of the process (must be unique)
 *
 * returns: > 0: handle for registered process, otherwise error
\*-------------------------------------------------------------------------------------*/
int watchdog_register(char* name);


/*-------------------------------------------------------------------------------------*\
 * Returns the file handle of a watchdog handle
 *
 * handle:  handle returned by watchdog_register
 * returns: file handle
\*-------------------------------------------------------------------------------------*/
int watchdog_get_fd(int handle);


/*-------------------------------------------------------------------------------------*\
 * Unregisters a process from the watchdog
 *
 * handle:  handle returned by watchdog_register
 *
 * returns: WDT_OK on success, otherwise error
 *
 * NOTE: A process must unregister with watchdog_release() before it terminates, otherwise 
 *       a reboot will happen! This is also fact if a process is intentionally terminated 
 *       by another process. A signal handler using watchdog_release() should be prepared.
\*-------------------------------------------------------------------------------------*/
int watchdog_release(int handle);


/*-------------------------------------------------------------------------------------*\
 * Changes the default timeout of a registered process
 *
 * handle:  handle returned by watchdog_register
 * timeout: new timeout in seconds starting now (maximum 40s)
 *
 * returns: WDT_OK on success, otherwise error
 *
 * NOTE: watchdog_settimeout() also acts as a trigger for the watchdog
\*-------------------------------------------------------------------------------------*/
int watchdog_settimeout(int handle, int timeout);


/*-------------------------------------------------------------------------------------*\
 * Triggers the watchdog of a registered process
 *
 * handle:  handle returned by watchdog_register
 *
 * returns: WDT_OK on success, otherwise error
\*-------------------------------------------------------------------------------------*/
int watchdog_trigger(int handle);


/*-------------------------------------------------------------------------------------*\
 * Blocks until the watchdog of a registered process needs to be triggert
 * After return if this function the application still has half of the timeout left
 * to trigger.
 *
 * handle:  handle returned by watchdog_register
 *
 * returns: WDT_OK on success, otherwise error
\*-------------------------------------------------------------------------------------*/
int watchdog_wait(int handle);


/*-------------------------------------------------------------------------------------*\
 * Reports wether a watchdog needs to be triggert. This fuction does not block.
 * 
 * handle:  handle returned by watchdog_register
 *
 * returns: WDT_OK if half of the timeout is not passed yet
\*-------------------------------------------------------------------------------------*/
int watchdog_poll(int handle);

AVM-Watchdogs:

GPL-Browser

Daily updated index of all libwdt.so code findings on the GPL-Browser. Last update: 2024-04-24 04:14 GMT.
The Browse column points to the Path containing the respective source code on the gpl.boxmatrix.info service.
The SoC column lists the Chip-Codenames, the Model column lists the nicks of the Box-Models.
The Diff column links the comparison of the AVM Kernel to the pristine original from Kernel.org.
The Download column links the full tarball the respective directory content is extracted from.
The presence of the source does not mean it fits the respective model and architecture. See the Model-Matrix where it's used.

Dependencies

Daily updated index of all dependencies of this library. Last update: 2024-04-24 07:26 GMT.
A * in the Mod column marks info from Supportdata-Probes, which will always stay incomplete.

Relation Typ Object Mod Firmware Info Origin
Depends on lib ld.so 48 7.01 - 7.80 Dynamic linker / loader Linux
Depends on lib libc.so 157 1.120 - 7.80 Standard C library Linux
Depends on lib libgcc_s.so 83 4.22 - 6.110 GCC low-level runtime library Linux
Required by lib libacsrpc.so 106 4.74 - 7.80 RPC endpoint communication API. AVM
Required by lib libar7cfg.so 79 6.35 - 7.80 TFFS-Configuration API to ar7.cfg and many more. AVM
Required by lib libasec.so 14 7.08 ASEC databasee client API AVM
Required by lib libavmcrypto.so 53 7.39 - 7.80 JWE encryption / decryption / key generator AVM
Required by lib libavmluautils.so 96 5.07 - 7.80 Utility Lua-Library AVM
Required by lib libavmnexus_tab.so 53 7.39 - 7.80 TFFS-Configuration API to avmnexus.cfg AVM
Required by lib libavmnexusmail.so 69 6.98 - 7.80 Push-Mail across a Mesh network Linux
Required by lib libavmpcp.so 47 7.39 - 7.80 Port Control Protocol (PCP) API library AVM
Required by lib libavmupnpbig.so 53 7.39 - 7.80 UPnP support API (big version) AVM
Required by lib libbotnetfilterlib.so 24 6.83 - 7.19 TODO Linux
Required by lib libboxlib.so 122 4.70 - 7.80 Box status, logging and statistics functions AVM
Required by lib libcfgimpexp.so 78 6.35 - 7.80 TFFS-Configuration API for configuration import and export. AVM
Required by lib libcm.so 96 5.01 - 7.80 ctlmgr / cm_logic messaging API AVM
Required by lib libcmapi.so 79 6.35 - 7.80 API library for ctlmgr and its plugins. AVM
Required by lib libcmquery.so 65 6.35 - 7.80 Asynchronous ctlmgr query Linux
Required by lib libconverttopdf.so 84 4.70 - 7.80 Convert SFF or JPG to PDF AVM
Required by lib libctlrext.so 21 6.36 - 7.59 ctlmgr plugin library for Repeater config AVM
Required by lib libemailservice.so 94 5.27 - 7.80 Email sender using mailer AVM
Required by lib libethgstats.so 47 7.39 - 7.80 avmcounterd plugin library for ethernet stats AVM
Required by lib libewnwlinux.so 54 7.39 - 7.80 Linux networking functions AVM
Required by lib libfaxsend.so 72 5.55 - 7.80 Fax submission library AVM
Required by lib libfaxsendlua.so 18 5.27 - 5.57 Lua-Library for sending Fax AVM
Required by lib libfon.so 64 6.35 - 7.80 ctlmgr plugin library for Telephony config AVM
Required by lib libfwsign.so 79 6.35 - 7.80 Firmware signature validation AVM
Required by lib libfwupdate.so 58 7.19 - 7.80 TODO Linux
Required by lib libfwupdatetrace.so 53 7.39 - 7.80 TFFS-Configuration API to fwupdatetrace.cfg AVM
Required by lib libikev1.so 47 7.39 - 7.80 IPSec IKE v1 protocol (RFC-2409) AVM
Required by lib libikev2.so 47 7.39 - 7.80 IPSec IKE v2 protocol (RFC-4306) AVM
Required by lib libjuisclient.so 53 7.39 - 7.80 Update-Search - second generation - JUIS AVM
Required by lib libkskbtracepoint.so 47 7.39 - 7.80 Kernel socket buffer capture / trace API Linux
Required by lib liblandev.so 53 7.39 - 7.80 TODO Linux
Required by lib libluaevent.so 71 6.35 - 7.80 Lua-Library for event handling AVM
Required by lib libmailbuilder.so 103 4.77 - 7.80 ctlmgr plugin library and Lua-Library for creating Push-Mail AVM
Required by lib libmove_nw_d.so 47 7.39 - 7.80 moved plugin library for destination Network import AVM
Required by lib libmove_nw_s.so 47 7.39 - 7.80 moved plugin library for source Network export AVM
Required by lib libmoved.so 47 7.39 - 7.80 API to the moved service. AVM
Required by lib libmovetrace.so 47 7.39 - 7.80 TODO Linux
Required by lib liboauth2.so 53 7.39 - 7.80 OAuth v2.0 authentificator Linux
Required by lib libpop3lib.so 29 4.70 - 5.27 POP3 / POP3S Email retriever AVM
Required by lib librextcfg.so 13 7.19 - 7.59 TFFS-Configuration API to rext.cfg and many more. AVM
Required by lib libsfftopdf.so 12 4.55 - 4.99 Convert SFF to PDF AVM
Required by lib libsfftotiff.so 6 4.44 - 4.99 Convert SFF to TIFF AVM
Required by lib libsiplib.so 46 7.39 - 7.80 SIP protocol support for voipd AVM
Required by lib libspeedtest.so 73 6.51 - 7.80 Kernel speedtest API AVM
Required by lib libtr064.so 78 6.35 - 7.80 ctlmgr plugin library for TR-064 config AVM
Required by lib libtr069.so 79 6.35 - 7.80 ctlmgr plugin library for TR-069 config AVM
Required by lib libuser.so 65 6.35 - 7.80 ctlmgr plugin library for Box-User config AVM
Required by lib libusp.so 47 7.39 - 7.80 ctlmgr plugin library for TR-369 / USP config AVM
Required by lib libvoipkpi.so 51 7.08 - 7.80 VoIP quality KPI collector for voipkpid AVM
Required by lib libwebusb.so 15 4.80 - 4.92 Lua-Library for maintaining the NAS AVM
Required by cmd access_check 27 6.35 - 6.93 Checks the access permissions of a user, sid and IP. AVM
Required by cmd acs_cli 2 7.08 - 7.17 Commandline frontend for acsd (old). Broadcom
Required by cmd acs_cli2 1 7.24 - 7.80 Commandline frontend for acsd2 (new). Broadcom
Required by cmd acsd (chipcmd) 2 7.08 - 7.17 Broadcom WLAN Automatic Channel Selection Daemon (old). Broadcom
Required by cmd acsd2 (chipcmd) 1 7.24 - 7.80 Broadcom WLAN Automatic Channel Selection Daemon (new). Broadcom
Required by cmd aha (avmcmd) 74 5.29 - 7.80 AVM home automation (AHA) server daemon. AVM
Required by cmd ahaluad 1 7.19 TODO AVM
Required by cmd aicmd (avmcmd) 54 7.39 - 7.80 avmipc_command query client. AVM
Required by cmd allcfgconv 149 3.23 - 7.80 Converts or changes AVM config files. AVM
Required by cmd alw_zb_gw_app 1 7.39 - 7.59 ZigBee Network Co-Processor management daemon. AVM
Required by cmd ar7cfg_addbadguys 43 7.39 - 7.80 Adds a hardcoded list of 'badguy' IP blocks to ar7.cfg to ban them. AVM
Required by cmd ar7cfgctl (avmcmd) 150 1.120 - 7.80 Read or write values in AVM config files (ar7.cfg). AVM
Required by cmd ar7cfgget 58 7.19 - 7.80 Get abstract value from ar7 configuration. AVM
Required by cmd ar7login 152 3.23 - 7.80 Start a new shell session (ie. for telnetd) for local login. AVM
Required by cmd athcfg 1 4.85 - 5.07 TODO AVM
Required by cmd audiod (avmcmd) 75 4.78 - 7.80 Online audio player daemon for dect_manager. AVM
Required by cmd avm2brcm_xdsld (avmcmd) 3 6.54 - 7.80 AVM dsld to Broadcom subsystem glue daemon. AVM
Required by cmd avm2fiber_xdsld (avmcmd) 2 6.69 - 7.29 Fiber transceiver status monitoring daemon for 5490 / 5491. AVM
Required by cmd avmcounterd (avmcmd) 47 7.39 - 7.80 RRDtool based data logging daemon. AVM
Required by cmd avmike (avmcmd) 90 4.22 - 7.80 ISAKMP / IPSec negotiation server / proxy. AVM
Required by cmd avmipc_remote_link (avmcmd) 43 7.39 - 7.80 Inter-CPU Netlink peering daemon for Falcon / Puma6 / Puma7 models. AVM
Required by cmd avmipc_state 2 6.20 - 6.64 Inter-CPU AVMIPC-State query command in early 6490 and 55xx firmware AVM
Required by cmd avmipcd (avmcmd) 93 5.56 - 7.80 AVMIPC-Datastore communication management daemon. AVM
Required by cmd avmlogd 8 4.30 - 4.99 AVM debug logger daemon. AVM
Required by cmd avmnexusd (avmcmd) 69 6.88 - 7.80 Mesh configuration peering daemon. AVM
Required by cmd avmntpd (avmcmd) 53 7.39 - 7.80 SNTP client daemon. AVM
Required by cmd avmstickandsurf 79 4.80 - 7.80 Perform Stick+Surf on Hotplug. AVM
Required by cmd avmstickandsurf.part1 1 6.20 - 6.64 Inter-CPU Stick+Surf part 1 on early 6490 Puma6 ARM. AVM
Required by cmd avmstickandsurf.part2 2 6.20 - 6.64 Inter-CPU Stick+Surf part 2 on early 6490 Puma6 ATOM. AVM
Required by cmd bb_shm_manager (avmcmd) 20 7.27 - 7.80 BroadBand shared memory manager. AVM
Required by cmd boxnotifyd (avmcmd) 79 6.35 - 7.80 TODO AVM
Required by cmd cable_monitor (avmcmd) 3 7.39 - 7.57 DOCSIS frontend status and statistics monitoring daemon. AVM
Required by cmd captive_pic 59 6.51 - 7.80 Hotspot captive portal picture upload CGI. AVM
Required by cmd capture_notimeout (avmcmd) 150 1.120 - 7.80 Packet capture CGI. AVM
Required by cmd cloudmsgd (avmcmd) 65 6.36 - 7.80 Remote message peering daemon for AVM Smartphone-Apps. AVM
Required by cmd contfiltd (avmcmd) 81 5.01 - 7.80 Content and URL filtering transparent proxy AVM
Required by cmd controllerd (avmcmd) 1 7.30 - 7.57 Inter-CPU remote modem controller daemon for the RTL86 chipset. AVM
Required by cmd conv2utf8 47 5.55 - 6.110 Converts the names of all files and folders in a specified path to UTF-8. AVM
Required by cmd crashtest 49 7.39 - 7.80 Performs crashes to test libbacktrace.so. AVM
Required by cmd crashtest16 49 7.39 - 7.80 Performs crashes to test libbacktrace.so. AVM
Required by cmd csvd (avmcmd) 26 6.25 - 6.110 UMTS CSVoice daemon. AVM
Required by cmd ctlmgr (avmcmd) 152 1.120 - 7.80 System meta daemon also serving the Webinterface. AVM
Required by cmd ctlmgr_ctl 73 6.51 - 7.80 Reads or writes configuration values using ctlmgr's UI-Modules. AVM
Required by cmd ctlmgr_offload (avmcmd) 3 6.83 - 6.110 TODO AVM
Required by cmd ddnsd (avmcmd) 65 6.35 - 7.80 Dynamic DNS daemon. AVM
Required by cmd dect_manager (avmcmd) 77 4.44 - 7.80 DECT Telephony daemon for telefon. AVM
Required by cmd dect_update 2 4.30 - 4.77 Updates the Firmware of the builtin ISDN DECT base (ie 7150). AVM
Required by cmd device_updatecheck (avmcmd) 60 6.54 - 7.80 Search for (own and peripheral) updates. AVM
Required by cmd deviceinfod (avmcmd) 69 6.98 - 7.80 MAC address collection and synchronization daemon. AVM
Required by cmd dnsqcheckd (avmcmd) 24 7.08 - 7.19 Botnet controller DNS filtering daemon. AVM
Required by cmd docsisinfod (avmcmd) 5 7.39 - 7.57 DOCSIS monitoring daemon for Puma6 / Puma7 models (ARM). AVM
Required by cmd dpm_manager (avmcmd) 21 6.98 - 7.80 DSL / Powerline interference mitigation manager daemon. AVM
Required by cmd dsl_control (avmcmd) 7 5.59 - 6.03 Lantiq chipset control daemon and firmware loader. AVM
Required by cmd dsl_daemon (chipcmd) 3 7.12 - 7.80 TODO Vinax
Required by cmd dsl_monitor (avmcmd) 42 5.29 - 7.80 DSL frontend status and statistics monitoring daemon. AVM
Required by cmd dsld (avmcmd) 135 1.120 - 7.80 Internet routing daemon. AVM
Required by cmd dtrace (avmcmd) 56 4.28 - 7.31 Traces ISDN messages from AVM CAPI controllers. AVM
Required by cmd eapd (chipcmd) 1 7.24 - 7.80 Broadcom Extensible Authentication Protocol Dispatcher. Broadcom
Required by cmd ethgstats 43 7.39 - 7.80 Shows the status counters of a physical eth interface. AVM
Required by cmd eventadd 119 3.42 - 7.80 Sends an event to the Event-Log. AVM
Required by cmd eventsdump 149 4.03 - 7.80 Lists the Event-Log. AVM
Required by cmd faxd (avmcmd) 84 4.44 - 7.80 Fax receiption daemon. AVM
Required by cmd feedd (avmcmd) 75 4.78 - 7.80 RSS feed maintenence daemon for dect_manager and audiod. AVM
Required by cmd fiber_monitor (avmcmd) 5 6.69 - 7.80 Fiber frontend status and statistics monitoring daemon. AVM
Required by cmd firmwarecfg 152 1.120 - 7.80 File transfer CGI for the Webinterface also callable from Shell. AVM
Required by cmd fritznasdb (avmcmd) 4 5.01 - 5.04 Daemon maintaining a Metatdata database of all files on the NAS. AVM
Required by cmd fwupdate_checkpoint 68 7.08 - 7.80 Set a custom checkpoint in fwupdatetrace.cfg. AVM
Required by cmd genrsa 5 7.57 - 7.80 Generates an RSA private key. AVM
Required by cmd getprivkeypass 68 6.10 - 7.80 Prints the default password for loading an encrypted PEM certificate for FTPS. AVM
Required by cmd hostapd (lincmd) 74 4.44 - 7.80 AVM enhanced IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator. Wireless
Required by cmd hostapd_cli 4 7.14 - 7.80 AVM enhanced commandline interface for hostapd. Wireless
Required by cmd hspottest 43 7.39 - 7.80 Test GRE tunneling of a WLAN-Hotspot. AVM
Required by cmd httpsdl 130 4.12 - 7.80 HTTPS downloader similar to wget for TR-069. AVM
Required by cmd ifwatchtest 43 7.39 - 7.80 Tests the ifwatch functionality of libewnwlinux.so. AVM
Required by cmd igdd (avmcmd) 50 1.120 - 5.09 Internet gateway device daemon (old), later replaced by upnpd. AVM
Required by cmd iwconfig 19 4.50 - 6.06 Configure a wireless network interface. Wireless
Required by cmd iwlist 1 4.50 - 4.99 Get more detailed wireless information from a wireless interface. Wireless
Required by cmd iwpriv 19 4.50 - 6.06 Configure optionals (private) parameters of a wireless network interface. Wireless
Required by cmd kpid (avmcmd) 64 7.08 - 7.32 Kernel KPI collector daemon. AVM
Required by cmd kskbtrace 47 7.39 - 7.80 Kernel socket buffer capture / trace. AVM
Required by cmd l2tpv3d (avmcmd) 92 5.55 - 7.80 Layer 2 tunneling protocol v3 daemon. AVM
Required by cmd latencyd (avmcmd) 4 7.70 - 7.80 WAN / LAN / neighbour Flow Latency Monitoring daemon. AVM
Required by cmd letsencrypt (avmcmd) 55 6.83 - 7.80 Let's Encrypt certificate updater. AVM
Required by cmd log_server (avmcmd) 8 6.98 - 7.51 Inter-CPU logging receiver daemon for x490 models. AVM
Required by cmd log_sink (avmcmd) 8 6.98 - 7.51 Inter-CPU logging injector daemon for x490 models. AVM
Required by cmd lted (avmcmd) 3 5.08 - 5.51 LTE daemon. AVM
Required by cmd luacgi (avmcmd) 102 4.80 - 7.80 Lua interpreter CGI. AVM
Required by cmd luavar 81 5.23 - 7.80 Lua commandline interpreter. AVM
Required by cmd maild (avmcmd) 29 4.63 - 5.27 POP3 / POP3S Email polling daemon AVM
Required by cmd mailer (avmcmd) 128 3.85 - 7.80 SMTP / SMTPS system MTA to send Email AVM
Required by cmd mediacli_test 7 4.44 - 4.99 Tests the collection and browsing of UPnP-AV servers. AVM
Required by cmd mediasrv (avmcmd) 18 4.28 - 5.09 UPnP-AV media server daemon. AVM
Required by cmd miniavmntpd (avmcmd) 2 7.39 - 7.80 Minimalistic Inter-CPU SNTP client daemon. AVM
Required by cmd minid 12 4.44 - 4.99 FRITZ! Mini support daemon. AVM
Required by cmd mkcert 5 7.57 - 7.80 Creates a certificate from a private key or shows it. AVM
Required by cmd mkcsr 5 7.57 - 7.80 Creates a certificate request from a private key or shows it. AVM
Required by cmd moved (avmcmd) 47 7.39 - 7.80 Box-Move daemon. AVM
Required by cmd multid (avmcmd) 135 1.133 - 7.80 LAN management daemon. AVM
Required by cmd multid2 (avmcmd) 2 6.20 - 6.64 Inter-CPU LAN management daemon on early 6490 Puma6 ATOM. AVM
Required by cmd nas_ctlmgr (avmcmd) 2 6.20 - 6.64 NAS webserver in early 6490 Puma6 ATOM firmware. AVM
Required by cmd nasupload_notimeout 62 6.35 - 7.80 File transfer CGI for the NAS. AVM
Required by cmd nltest 43 7.39 - 7.80 Netlink MDB / FDB test daemon. AVM
Required by cmd omcid (chipcmd) 3 7.21 - 7.80 ONT Management Control Interface (OMCI) daemon Falcon
Required by cmd pbd (avmcmd) 81 5.09 - 7.80 Phonebook daemon. AVM
Required by cmd pcpcsocktest 43 7.39 - 7.80 Tests of pcpcsock functions of libavmpcp.so. AVM
Required by cmd pcpd (avmcmd) 73 6.10 - 7.80 Port Control Protocol (PCP) daemon. AVM
Required by cmd pcplisten 47 7.39 - 7.80 Open listening port on local address for specified seconds. AVM
Required by cmd pcptest 43 7.39 - 7.80 Test the pcpd server. AVM
Required by cmd plchost (avmcmd) 3 7.39 - 7.57 Powerline (PLC) controller host daemon. AVM
Required by cmd presencestat 16 3.42 - 3.93 Displays the presence of registered VoIP numbers. AVM
Required by cmd profile (chipcmd) 2 4.85 - 4.91 TODO Fusiv
Required by cmd pumaglued (avmcmd) 6 6.83 - 7.57 Inter-CPU connector for the ARM side of Puma6 / Puma7 models. AVM
Required by cmd pumaupdatetrace (avmcmd) 43 6.110 - 7.57 Daemon receiving update status infor on Puma6 / Puma7 models (ATOM).
AVM
Required by cmd radartool 1 4.86 - 5.07 QcaWifi radar scan tool. QcaWifi
Required by cmd renderer (avmcmd) 1 4.82 - 4.88 UPNP-AV audio renderer daemon. AVM
Required by cmd rextcfgctl 13 7.19 - 7.59 Reads or changes values in the WLAN repeater configuration rext.cfg. AVM
Required by cmd rextconv 13 7.19 - 7.59 Converts or changes the WLAN repeater configuration rext.cfg. AVM
Required by cmd rextd (avmcmd) 24 4.65 - 7.59 WLAN repeater management daemon. AVM
Required by cmd run_clock (avmcmd) 70 6.98 - 7.80 Lifetime counter and TFFS optimizer daemon. AVM
Required by cmd samba_config_gen 56 4.80 - 7.17 Samba configuration generator. AVM
Required by cmd scgi_server (avmcmd) 47 7.39 - 7.80 Daemon to speed up CGI for the REST-API. AVM
Required by cmd shellinabox_launcher 8 5.07 - 6.35 CGI wrapper launching shellinaboxd from the Internet. AVM
Required by cmd showdsldstat 138 4.28 - 7.80 supportdata helper showing internet connections, PVCs or VLANs. AVM
Required by cmd showethstate 40 7.39 - 7.57 TODO AVM
Required by cmd showfbconf 54 7.39 - 7.80 supportdata helper showing fbconf.cfg in interpreted human readable form. AVM
Required by cmd showfritznasdbstat 74 5.01 - 7.80 supportdata helper showing the fritznasdb status. AVM
Required by cmd showinetstat 65 6.35 - 7.80 supportdata helper showing upstream and downstram bandwidth history. AVM
Required by cmd showneighbours 79 6.35 - 7.80 supportdata helper showing alllowed subnets, neighbours and their pathes. AVM
Required by cmd showonlinestat 52 7.24 - 7.80 supportdata helper showing the internet volume counter stats. AVM
Required by cmd showpainfo 54 7.39 - 7.80 supportdata helper showing infos about Packet-Acceleration. AVM
Required by cmd showpcpitems 47 7.39 - 7.80 Lists all internal and external Port-Forwardings AVM
Required by cmd showroutes 53 7.39 - 7.80 supportdata helper showing routing information. AVM
Required by cmd showrrdstate 47 7.39 - 7.80 supportdata helper showing how each avmcounterd RRD file is configured. AVM
Required by cmd showvoipdstat 108 4.07 - 7.80 supportdata helper showing all registered VoIP numbers. AVM
Required by cmd showvoipdtrace 1 6.35 TODO AVM
Required by cmd smbd (lincmd) 8 4.31 - 4.99 SMB / CIFS server. Samba
Required by cmd sntpcli 2 3.14 SNTP client daemon. AVM
Required by cmd speedtest (avmcmd) 49 7.39 - 7.80 Speedtest - Measure throughput AVM
Required by cmd supervisor (avmcmd) 63 7.19 - 7.80 systemd alike init and service manager. AVM
Required by cmd svctl 55 7.19 - 7.32 supervisor service control. AVM
Required by cmd svlogd (avmcmd) 55 7.39 - 7.80 Logger daemon for supervisor. AVM
Required by cmd tcppeerlocation 62 6.35 - 7.80 Check for source (homenet or internet) of peer of a TCP connection AVM
Required by cmd tcpproxyd (avmcmd) 1 6.50 - 6.64 Inter-CPU TCP proxy daemon on early 6490 Puma6 ARM. AVM
Required by cmd telefon (avmcmd) 120 3.45 - 7.80 Telephony daemon. AVM
Required by cmd testdaemon 43 7.39 - 7.80 Daemon to test avmipc_command features. AVM
Required by cmd timetracedump 81 4.86 - 7.80 Possible future supportdata helper showing TimeTrace dumps. AVM
Required by cmd touchdisplay (avmcmd) 1 4.65 - 4.88 Touch display daemon for the fwr. AVM
Required by cmd tr064cgi 77 6.35 - 7.80 TR-064 CGI program. AVM
Required by cmd tr064cli 18 4.63 - 6.93 TR-064 console program. AVM
Required by cmd tr069discover (avmcmd) 18 4.63 - 5.09 TR-069 discovery for multid, dsld and ctlmgr. AVM
Required by cmd tr069fwupdate 130 4.12 - 7.80 TR-069 Firmware updater and more. AVM
Required by cmd tr069starter 62 4.30 - 7.08 Searches USB devices for TR-069 provisioning data on Hotplug. AVM
Required by cmd umtsd (avmcmd) 42 4.70 - 6.110 UMTS daemon, replaced by mobiled. AVM
Required by cmd untrustedd (avmcmd) 51 7.08 - 7.80 ASEC database server daemon. AVM
Required by cmd upnpd (avmcmd) 117 4.74 - 7.80 UPnP server daemon. AVM
Required by cmd upnpdevd (avmcmd) 44 6.35 - 6.110 UPnP root device daemon. AVM
Required by cmd usermand (avmcmd) 40 4.22 - 4.99 User magager daemon, parental control, old version. AVM
Required by cmd usermand2 83 4.85 - 7.80 User magager daemon, parental control, new version. AVM
Required by cmd vdsld (avmcmd) 3 4.85 - 6.87 AVM VDSL on Fusiv subsystem glue daemon. AVM
Required by cmd voipd (avmcmd) 122 1.120 - 7.80 VoIP daemon, also performs T.38 Fax. AVM
Required by cmd voipkpid (avmcmd) 51 7.19 - 7.80 VoIP quality KPI collector daemon. AVM
Required by cmd vpnd (avmcmd) 52 7.19 - 7.80 VPN daemon. AVM
Required by cmd wdt_test 2 1.120 - 3.14 Interactive test of the libwdt.so library. AVM
Required by cmd webcm 100 1.120 - 7.27 CGI program realising the Webinterfave, supports SSI. AVM
Required by cmd websrv (avmcmd) 38 1.120 - 4.99 Webserver daemon, replaced by ctlmgr. AVM
Required by cmd webtrace 26 6.35 - 7.19 TimeTrace CGI. AVM
Required by cmd webusb 1 4.94 Web NAS CGI. AVM
Required by cmd wlancfgconv 29 4.74 - 4.99 Converts or changes the wlan.cfg file. AVM
Required by cmd wlancfgctl 52 1.133 - 5.09 Read or write values from/to the wlan.cfg file. AVM
Required by cmd wlanconfig 15 4.74 - 6.06 Create, destroy and manipulate madwifi VAPs. QcaWifi
Required by cmd wland (avmcmd) 88 6.10 - 7.80 WLAN configuration daemon. AVM
Required by cmd wland_hal_remoted (avmcmd) 8 6.98 - 7.51 Inter-CPU extension of wland for x490 models. AVM
Required by cmd wlssk (chipcmd) 1 7.24 - 7.80 TODO Broadcom
Required by cmd wpa_cli 4 7.19 - 7.80 AVM enhanced commandline client for wpa_supplicant. Wireless
Required by cmd wpa_supplicant (lincmd) 73 4.57 - 7.80 AVM enhanced Wi-Fi Protected Access client and IEEE 802.1X supplicant. Wireless
Required by cmd wsdd (avmcmd) 51 7.24 - 7.80 Web Services Discovery (WS-Discovery) daemon AVM
Required by cmd wstart (avmcmd) 33 1.133 - 4.99 WLAN daemon for TI chipsets AVM
230 dependencies for this library

Model-Matrix

Daily updated index of the presence, path and size of this library for each model. Last update: 2024-04-24 05:11 GMT.
Showing all models using this library. Click any column header (click-wait-click) to sort the list by the respective data.
The (main/scrpn/boot/arm/prx/atom) label in the Model column shows which CPU is meant for models with multiple Linux instances.
Note that this list is merged from Firmware-Probes of all known AVM firmware for a model, including Recovery.exe and Labor-Files.

Model Firmware Path Size
FRITZ!Box 3.23 - 4.02 /lib 7.5k, Link
FRITZ!Box SL 3.48 - 3.94 /lib 7.5k, Link
FRITZ!Box 2030 3.73 - 3.93 /lib 7.5k, Link
FRITZ!Box 2031 4.15 /lib 7.3k, Link
FRITZ!Box 2070 3.87 - 4.15 /lib 7.3k - 7.5k, Link
FRITZ!Box 2110 4.52 /lib 7.2k, Link
FRITZ!Box 2170 4.31 - 4.57 /lib 7.2k - 8.5k, Link
FRITZ!Box SL WLAN 3.23 - 4.34 /lib 7.3k - 8.5k, Link
FRITZ!Box WLAN 3020 3.23 - 4.34 /lib 7.3k - 8.5k, Link
FRITZ!Box WLAN 3030 3.65 - 4.34 /lib 7.3k - 8.5k, Link
FRITZ!Box WLAN 3050 3.63 - 4.07 /lib 7.3k - 7.5k, Link
FRITZ!Box WLAN 3070 3.87 - 4.15 /lib 7.3k - 7.5k, Link
FRITZ!Box WLAN 3130 4.21 - 4.34 /lib 7.3k - 8.5k, Link
FRITZ!Box WLAN 3131 4.29 - 4.57 /lib 7.2k - 8.5k, Link
FRITZ!Box WLAN 3170 4.31 - 4.58 /lib 7.2k - 8.5k, Link
FRITZ!Box WLAN 3270 4.57 - 5.54 /lib 6.3k - 6.8k, Link
FRITZ!Box WLAN 3270 v3 4.77 - 5.54 /lib 6.3k - 6.8k, Link
FRITZ!Box WLAN 3270 IT 5.23 - 5.52 /lib 6.8k, Link
FRITZ!Box 3272 5.50 - 6.89 /lib 6.2k - 8.6k, Link
FRITZ!Box WLAN 3370 5.01 - 6.56 /lib 6.0k - 8.9k, Link
FRITZ!Box 3390 5.50 - 6.56 /lib 6.0k - 8.6k, Link
FRITZ!Box 3490 (main) 6.20 - 7.30 /lib 6.0k - 9.9k, Link
FRITZ!Box 3490 (scrpn) 6.98 - 7.30 /lib 6.1k - 9.9k, Link
FRITZ!Box Fon ata 3.23 - 4.28 /lib 7.3k - 7.5k, Link
FRITZ!Box Fon ata 1020 3.23 - 4.28 /lib 7.3k - 7.5k, Link
FRITZ!Box 4020 7.39 /lib 6.0k - 13.3k, Link
FRITZ!Box 4040 6.52 - 7.57 /lib 5.5k - 13.3k, Link
FRITZ!Box 4050 7.57 /lib 9.2k, Link
FRITZ!Box 4060 7.26 - 7.57 /lib 9.2k - 13.3k, Link
FRITZ!Box Fon 1.120 - 4.49 /lib 7.2k - 9.5k, Link
FRITZ!Box Fon 5010 3.88 - 4.43 /lib 7.3k - 8.5k, Link
FRITZ!Box Fon 5012 3.88 - 4.27 /lib 7.3k - 7.5k, Link
FRITZ!Box Fon 5050 3.23 - 4.31 /lib 7.2k - 7.5k, Link
FRITZ!Box Fon 5113 4.82 - 4.83 /lib 6.3k, Link
FRITZ!Box Fon 5124 4.47 - 4.77 /lib 6.3k - 7.2k, Link
FRITZ!Box Fon 5140 4.25 - 4.67 /lib 7.2k - 8.5k, Link
VoIP Gateway 5188 4.28 - 4.81 /lib 6.3k - 8.5k, Link
FRITZ!Box 5490 (main) 6.51 - 7.29 /lib 6.0k - 9.9k, Link
FRITZ!Box 5490 (scrpn) 6.98 - 7.29 /lib 6.1k - 9.9k, Link
FRITZ!Box 5491 (main) 6.98 - 7.29 /lib 6.1k - 9.9k, Link
FRITZ!Box 5491 (scrpn) 6.98 - 7.29 /lib 6.1k - 9.9k, Link
FRITZ!Box 5530 Fiber (main) 7.21 - 7.80 /lib 9.7k - 13.3k, Link
FRITZ!Box 5590 Fiber (arm) 7.27 - 7.80 /lib 9.2k - 13.3k, Link
FRITZ!Box 5590 Fiber (prx) 7.27 - 7.80 /lib 9.7k, Link
FRITZ!Box 6320 Cable v1 6.03 - 6.04 /lib 5.5k, Link
FRITZ!Box 6320 Cable v2 6.21 /lib 5.5k, Link
FRITZ!Box 6340 Cable 5.24 /lib 5.1k, Link
FRITZ!Box 6360 Cable 4.85 - 6.51 /lib 5.1k - 7.6k, Link
FRITZ!Box 6430 Cable (arm) 6.84 - 7.57 /lib 5.1k - 13.3k, Link
FRITZ!Box 6430 Cable (atom) 6.84 - 7.29 /lib 5.6k - 9.1k, Link
FRITZ!Box 6490 Cable (arm) 6.20 - 7.57 /lib 5.1k - 13.3k, Link
FRITZ!Box 6490 Cable (atom) 6.20 - 7.51 /lib 5.6k - 9.1k, Link
FRITZ!Box 6590 Cable (arm) 6.83 - 7.57 /lib 5.1k - 13.3k, Link
FRITZ!Box 6590 Cable (atom) 6.83 - 7.51 /lib 5.6k - 9.1k, Link
FRITZ!Box 6591 Cable (arm) 7.04 - 7.57 /lib 5.4k - 13.3k, Link
FRITZ!Box 6591 Cable (atom) 7.04 - 7.57 /lib 5.9k - 13.3k, Link
FRITZ!Box 6660 Cable (arm) 7.14 - 7.57 /lib 5.4k - 13.3k, Link
FRITZ!Box 6660 Cable (atom) 7.14 - 7.57 /lib 9.2k - 13.3k, Link
FRITZ!Box 6670 Cable (arm) 7.57 /lib 13.3k, Link
FRITZ!Box 6690 Cable (arm) 7.28 - 7.57 /lib 5.4k - 13.3k, Link
FRITZ!Box 6690 Cable (atom) 7.28 - 7.57 /lib 9.2k - 13.3k, Link
FRITZ!Box 6810 LTE 6.35 /lib 6.2k - 6.4k, Link
FRITZ!Box 6820 LTE v1 6.40 - 7.51 /lib 6.1k - 13.3k, Link
FRITZ!Box 6820 LTE v2 6.40 - 7.51 /lib 6.1k - 13.3k, Link
FRITZ!Box 6820 LTE v3 7.19 - 7.57 /lib 9.9k, Link
FRITZ!Box 6840 LTE 5.08 - 7.39 /lib 6.0k - 13.3k, Link
FRITZ!Box 6842 LTE /lib 6.2k - 6.4k, Link
FRITZ!Box 6850 LTE 7.21 - 7.58 /lib 5.3k - 13.3k, Link
FRITZ!Box 6850 5G 7.24 - 7.51 /lib 9.2k - 13.3k, Link
FRITZ!Box 6890 LTE 6.84 - 7.51 /lib 6.6k - 13.3k, Link
FRITZ!Box 6890 LTE v1 6.84 - 7.51 /lib 6.6k - 13.3k, Link
FRITZ!Box 6890 LTE v2 6.84 - 7.51 /lib 6.6k - 13.3k, Link
FRITZ!Box Fon WLAN 3.14 - 4.49 /lib 7.2k - 9.5k, Link
FRITZ!Box Fon WLAN 7050 3.29 - 4.50 /lib 7.2k - 8.5k, Link
FRITZ!Box Fon WLAN 7112 4.76 - 4.88 /lib 6.3k, Link
FRITZ!Box Fon WLAN 7113 4.40 - 4.86 /lib 6.3k - 8.5k, Link
FRITZ!Box Fon WLAN 7113 DE 4.40 - 4.77 /lib 7.2k - 8.5k, Link
FRITZ!Box Fon WLAN 7113 INT 4.82 - 4.86 /lib 6.3k, Link
FRITZ!Box Fon WLAN 7140 4.02 - 4.77 /lib 6.3k - 8.5k, Link
FRITZ!Box Fon WLAN 7141 4.14 - 4.77 /lib 6.3k - 8.5k, Link
FRITZ!Fon 7150 4.27 - 4.77 /lib 6.3k - 8.5k, Link
FRITZ!Box Fon WLAN 7170 3.96 - 4.99 /lib 6.3k - 8.5k, Link
FRITZ!Box Fon WLAN 7170 v1 3.96 - 4.99 /lib 6.3k - 8.5k, Link
FRITZ!Box Fon WLAN 7170 v2 3.96 - 4.99 /lib 6.3k - 8.5k, Link
FRITZ!Box Fon WLAN 7240 4.65 - 6.06 /lib 6.3k - 6.8k, Link
FRITZ!Box Fon WLAN 7270 v1 4.44 - 4.99 /lib 6.3k - 7.2k, Link
FRITZ!Box Fon WLAN 7270 v2 4.67 - 6.06 /lib 6.3k - 8.6k, Link
FRITZ!Box Fon WLAN 7270 v3 4.76 - 6.06 /lib 6.3k - 8.6k, Link
FRITZ!Box 7272 5.55 - 7.39 /lib 6.2k - 13.3k, Link
FRITZ!Box 7312 5.23 - 6.56 /lib 6.2k - 6.8k, Link
FRITZ!Box Fon WLAN 7320 4.85 - 6.35 /lib 6.2k - 8.9k, Link
FRITZ!Box 7330 5.06 - 6.56 /lib 6.2k - 8.6k, Link
FRITZ!Box 7330 SL 5.08 - 6.56 /lib 6.2k - 8.6k, Link
FRITZ!Box Fon WLAN 7340 4.83 - 5.05 /lib 6.2k - 8.8k, Link
FRITZ!Box Fon WLAN 7360 SL 5.04 - 6.34 /lib 6.2k - 6.8k, Link
FRITZ!Box Fon WLAN 7360 v1 5.06 - 6.36 /lib 6.2k - 8.6k, Link
FRITZ!Box Fon WLAN 7360 v2 5.22 - 6.88 /lib 6.0k - 8.6k, Link
FRITZ!Box 7362 SL 5.53 - 7.14 /lib 6.0k - 9.8k, Link
FRITZ!Box 7369 6.30 - 6.32 /lib 6.4k, Link
FRITZ!Box Fon WLAN 7390 4.81 - 5.22 /lib 6.2k - 8.9k, Link
FRITZ!Box 7412 6.21 - 6.88 /lib 6.0k - 6.4k, Link
FRITZ!Box 7430 6.26 - 7.39 /lib 6.0k - 13.3k, Link
FRITZ!Box 7490 (main) 5.57 - 7.57 /lib 6.0k - 13.3k, Link
FRITZ!Box 7490 (scrpn) 6.98 - 7.51 /lib 6.1k - 9.9k, Link
FRITZ!Box 7510 7.30 - 7.57 /lib 9.2k, Link
FRITZ!Box 7520 6.98 - 7.51 /lib 5.5k - 13.3k, Link
FRITZ!Box 7520 v2 (arm) 7.30 - 7.57 /lib 9.2k - 13.3k, Link
FRITZ!Box 7530 6.98 - 7.56 /lib 5.3k - 13.3k, Link
FRITZ!Box 7530 AX 7.20 - 7.80 /lib 5.3k - 13.3k, Link
FRITZ!Box 7560 6.51 - 7.39 /lib 6.6k - 13.3k, Link
FRITZ!Box Fon WLAN 7570 vDSL 4.70 - 4.94 /lib 6.3k - 6.4k, Link
FRITZ!Box 7580 6.53 - 7.30 /lib 6.6k - 9.8k, Link
FRITZ!Box 7581 6.54 - 7.16 /lib 4.9k - 9.3k, Link
FRITZ!Box 7582 6.83 - 7.17 /lib 4.9k - 9.3k, Link
FRITZ!Box 7583 7.01 - 7.57 /lib 6.7k - 9.8k, Link
FRITZ!Box 7583 VDSL 7.19 - 7.31 /lib 9.7k, Link
FRITZ!Box 7590 6.83 - 7.57 /lib 6.6k - 13.3k, Link
FRITZ!Box 7590 AX 7.19 - 7.80 /lib 9.7k - 13.3k, Link
FRITZ!Smart Gateway 7.39 - 7.59 /lib 9.2k, Link
FRITZ!WLAN Repeater N/G 4.65 - 4.88 /lib 6.3k - 6.4k, Link
FRITZ!WLAN Repeater 300E 5.01 - 6.34 /lib 6.4k - 8.9k, Link
FRITZ!WLAN Repeater 310 A 5.24 - 7.16 /lib 6.1k - 9.8k, Link
FRITZ!WLAN Repeater 310 B 6.30 - 7.16 /lib 6.0k - 9.8k, Link
FRITZ!WLAN Repeater 450E 6.00 - 7.15 /lib 6.1k - 9.8k, Link
FRITZ!Repeater 600 7.11 - 7.58 /lib 9.8k - 13.3k, Link
FRITZ!Repeater 600 v2 7.19 - 7.58 /lib 9.9k, Link
FRITZ!WLAN Repeater 1160 6.51 - 7.15 /lib 6.0k - 9.8k, Link
FRITZ!Repeater 1200 7.11 - 7.58 /lib 9.2k - 13.3k, Link
FRITZ!Repeater 1200 AX 7.27 - 7.57 /lib 9.2k, Link
FRITZ!WLAN Repeater 1750E 6.12 - 7.39 /lib 6.1k - 13.3k, Link
FRITZ!Repeater 2400 7.12 - 7.58 /lib 5.9k - 13.3k, Link
FRITZ!Repeater 3000 6.98 - 7.58 /lib 5.3k - 13.3k, Link
FRITZ!Repeater 3000 AX 7.39 - 7.57 /lib 5.2k - 13.3k, Link
FRITZ!Repeater 6000 7.19 - 7.57 /lib 9.2k, Link
FRITZ!WLAN Repeater DVB-C 6.12 - 7.03 /lib 6.1k - 6.4k, Link
FRITZ!Powerline 540E 5.58 - 7.15 /lib 6.1k - 9.8k, Link
FRITZ!Powerline 546E 5.50 - 7.15 /lib 6.1k - 9.8k, Link
FRITZ!Powerline 1240 AX 7.51 - 7.57 /lib 9.2k, Link
FRITZ!Powerline 1240E 6.33 - 7.16 /lib 6.0k - 9.8k, Link
FRITZ!Powerline 1260E 6.90 - 7.57 /lib 5.5k - 13.3k, Link
FRITZ!Powerline 1260 7.27 - 7.57 /lib 9.2k - 9.3k, Link
congstar DSL-Box 4.25 - 4.81 /lib 6.3k - 8.5k, Link
congstar komplett Box 4.68 - 4.81 /lib 6.4k, Link
Speedport W 501V 3.93 - 4.38 /lib 7.3k - 8.5k, Link
Speedport W 503V 4.68 - 4.81 /lib 6.4k, Link
Speedport W 503V MK 4.79 /lib 6.4k, Link
Speedport W 701V 4.25 - 4.81 /lib 6.3k - 8.5k, Link
Speedport W 721V 4.74 - 4.75 /lib 6.3k, Link
Speedport W 722V 4.76 - 4.79 /lib 8.2k, Link
Speedport W 900V 4.21 - 4.57 /lib 6.8k - 7.2k, Link
Speedport W 920V 4.78 - 4.79 /lib 6.4k, Link
Speedport W 101 Bridge 4.68 /lib 6.4k, Link
Eumex 300 IP 3.29 - 4.44 /lib 7.2k - 7.5k, Link
Alice IAD 5130 4.65 - 4.71 /lib 7.2k, Link
Alice IAD WLAN 3331 4.90 /lib 6.3k, Link
Alice IAD 7570 vDSL 4.86 - 5.09 /lib 6.4k, Link
156 models use this library

Symbols

Daily updated index of all symbols of this library. Last update: 2024-04-24 07:26 GMT.

Firmware Symbol
1.120 - 7.80 watchdog_announce
1.120 - 7.80 watchdog_get_fd
7.19 - 7.80 watchdog_init_done
7.19 - 7.80 watchdog_init_start
1.120 - 7.80 watchdog_poll
1.120 - 7.80 watchdog_register
1.120 - 7.80 watchdog_release
1.120 - 7.08 watchdog_set_blocking
1.120 - 5.09 watchdog_set_non_blocking
1.120 - 7.80 watchdog_settimeout
1.120 - 7.80 watchdog_trigger
1.120 - 7.80 watchdog_wait
12 symbols for this library

SMW-Browser

Information is currently being retrieved from the backend.