blob: 7487ca0d0c6a374134cbc684bb654ebac521b5f4 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "A daemon for managing internet connections within embedded devices"
2DESCRIPTION = "The ConnMan project provides a daemon for managing \
3internet connections within embedded devices running the Linux \
4operating system. The Connection Manager is designed to be slim and \
5to use as few resources as possible, so it can be easily integrated. \
6It is a fully modular system that can be extended, through plug-ins, \
7to support all kinds of wired or wireless technologies. Also, \
8configuration methods, like DHCP and domain name resolving, are \
9implemented using plug-ins."
10HOMEPAGE = "http://connman.net/"
11BUGTRACKER = "https://01.org/jira/browse/CM"
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000012LICENSE = "GPL-2.0-only"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050013LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \
14 file://src/main.c;beginline=1;endline=20;md5=486a279a6ab0c8d152bcda3a5b5edc36"
15
Brad Bishop96ff1982019-08-19 13:50:42 -040016inherit autotools pkgconfig systemd update-rc.d update-alternatives
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017
Andrew Geissler5199d832021-09-24 16:47:35 -050018CVE_PRODUCT = "connman connection_manager"
19
Andrew Geissler82c905d2020-04-13 13:39:40 -050020DEPENDS = "dbus glib-2.0 ppp"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050021
Patrick Williamsc124f4f2015-09-15 14:41:29 -050022EXTRA_OECONF += "\
23 ac_cv_path_WPASUPPLICANT=${sbindir}/wpa_supplicant \
24 ac_cv_path_PPPD=${sbindir}/pppd \
25 --enable-debug \
26 --enable-loopback \
27 --enable-ethernet \
28 --enable-tools \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050029 --disable-polkit \
Patrick Williamsb542dec2023-06-09 01:26:37 -050030 --runstatedir=/run \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050031"
Patrick Williams92b42cb2022-09-03 06:53:57 -050032# For smooth operation it would be best to start only one wireless daemon at a time.
33# If wpa-supplicant is running, connman will use it preferentially.
34# Select either wpa-supplicant or iwd
35WIRELESS_DAEMON ??= "wpa-supplicant"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050036
Andrew Geissler82c905d2020-04-13 13:39:40 -050037PACKAGECONFIG ??= "wispr iptables client\
Patrick Williams92b42cb2022-09-03 06:53:57 -050038 ${@bb.utils.filter('DISTRO_FEATURES', '3g systemd', d)} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050039 ${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez', '', d)} \
Patrick Williams92b42cb2022-09-03 06:53:57 -050040 ${@bb.utils.contains('DISTRO_FEATURES', 'wifi', 'wifi ${WIRELESS_DAEMON}', '', d)} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050041"
42
43# If you want ConnMan to support VPN, add following statement into
44# local.conf or distro config
Patrick Williams213cb262021-08-07 19:21:33 -050045# PACKAGECONFIG:append:pn-connman = " openvpn vpnc l2tp pptp"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050046
Andrew Geissler5199d832021-09-24 16:47:35 -050047PACKAGECONFIG[systemd] = "--with-systemdunitdir=${systemd_system_unitdir}/ --with-tmpfilesdir=${sysconfdir}/tmpfiles.d/,--with-systemdunitdir='' --with-tmpfilesdir=''"
Patrick Williams92b42cb2022-09-03 06:53:57 -050048PACKAGECONFIG[wifi] = "--enable-wifi, --disable-wifi"
Brad Bishop96ff1982019-08-19 13:50:42 -040049PACKAGECONFIG[bluez] = "--enable-bluetooth, --disable-bluetooth, bluez5, bluez5"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050050PACKAGECONFIG[3g] = "--enable-ofono, --disable-ofono, ofono, ofono"
Patrick Williams92b42cb2022-09-03 06:53:57 -050051PACKAGECONFIG[wpa-supplicant] = ",,wpa-supplicant,wpa-supplicant"
52PACKAGECONFIG[iwd] = "--enable-iwd,--disable-iwd,,iwd"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050053PACKAGECONFIG[tist] = "--enable-tist,--disable-tist,"
54PACKAGECONFIG[openvpn] = "--enable-openvpn --with-openvpn=${sbindir}/openvpn,--disable-openvpn,,openvpn"
55PACKAGECONFIG[vpnc] = "--enable-vpnc --with-vpnc=${sbindir}/vpnc,--disable-vpnc,,vpnc"
56PACKAGECONFIG[l2tp] = "--enable-l2tp --with-l2tp=${sbindir}/xl2tpd,--disable-l2tp,,xl2tpd"
57PACKAGECONFIG[pptp] = "--enable-pptp --with-pptp=${sbindir}/pptp,--disable-pptp,,pptp-linux"
58# WISPr support for logging into hotspots, requires TLS
59PACKAGECONFIG[wispr] = "--enable-wispr,--disable-wispr,gnutls,"
Andrew Geissler82c905d2020-04-13 13:39:40 -050060PACKAGECONFIG[nftables] = "--with-firewall=nftables ,,libmnl libnftnl,,kernel-module-nf-tables kernel-module-nft-chain-nat-ipv4 kernel-module-nft-chain-route-ipv4 kernel-module-nft-masq-ipv4 kernel-module-nft-nat"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050061PACKAGECONFIG[iptables] = "--with-firewall=iptables ,,iptables,iptables"
Brad Bishopc342db32019-05-15 21:57:59 -040062PACKAGECONFIG[nfc] = "--enable-neard, --disable-neard, neard, neard"
Andrew Geissler82c905d2020-04-13 13:39:40 -050063PACKAGECONFIG[client] = "--enable-client,--disable-client,readline"
Andrew Geissler4b740dc2020-05-05 08:54:39 -050064PACKAGECONFIG[wireguard] = "--enable-wireguard,--disable-wireguard,libmnl"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050065
66INITSCRIPT_NAME = "connman"
67INITSCRIPT_PARAMS = "start 05 5 2 3 . stop 22 0 1 6 ."
68
69python __anonymous () {
Brad Bishop64c979e2019-11-04 13:55:29 -050070 systemd_packages = "${PN} ${PN}-wait-online"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050071 pkgconfig = d.getVar('PACKAGECONFIG')
Patrick Williamsc124f4f2015-09-15 14:41:29 -050072 if ('openvpn' or 'vpnc' or 'l2tp' or 'pptp') in pkgconfig.split():
73 systemd_packages += " ${PN}-vpn"
74 d.setVar('SYSTEMD_PACKAGES', systemd_packages)
75}
76
Patrick Williams213cb262021-08-07 19:21:33 -050077SYSTEMD_SERVICE:${PN} = "connman.service"
78SYSTEMD_SERVICE:${PN}-vpn = "connman-vpn.service"
79SYSTEMD_SERVICE:${PN}-wait-online = "connman-wait-online.service"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050080
Brad Bishopd7bf8c12018-02-25 22:55:05 -050081ALTERNATIVE_PRIORITY = "100"
Patrick Williams213cb262021-08-07 19:21:33 -050082ALTERNATIVE:${PN} = "${@bb.utils.contains('DISTRO_FEATURES','systemd','resolv-conf','',d)}"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050083ALTERNATIVE_TARGET[resolv-conf] = "${@bb.utils.contains('DISTRO_FEATURES','systemd','${sysconfdir}/resolv-conf.connman','',d)}"
84ALTERNATIVE_LINK_NAME[resolv-conf] = "${@bb.utils.contains('DISTRO_FEATURES','systemd','${sysconfdir}/resolv.conf','',d)}"
85
Patrick Williams213cb262021-08-07 19:21:33 -050086do_install:append() {
Patrick Williamsc124f4f2015-09-15 14:41:29 -050087 if ${@bb.utils.contains('DISTRO_FEATURES','sysvinit','true','false',d)}; then
88 install -d ${D}${sysconfdir}/init.d
89 install -m 0755 ${WORKDIR}/connman ${D}${sysconfdir}/init.d/connman
Patrick Williamsf1e5d692016-03-30 15:21:19 -050090 sed -i s%@DATADIR@%${datadir}% ${D}${sysconfdir}/init.d/connman
Patrick Williamsc124f4f2015-09-15 14:41:29 -050091 fi
92
93 install -d ${D}${bindir}
94 install -m 0755 ${B}/tools/*-test ${D}${bindir}
95 if [ -e ${B}/tools/wispr ]; then
96 install -m 0755 ${B}/tools/wispr ${D}${bindir}
97 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -050098
99 # We don't need to package an empty directory
100 rmdir --ignore-fail-on-non-empty ${D}${libdir}/connman/scripts
101
102 # Automake 1.12 won't install empty directories, but we need the
103 # plugins directory to be present for ownership
104 mkdir -p ${D}${libdir}/connman/plugins
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500105
106 # For read-only filesystem, do not create links during bootup
107 if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then
108 ln -sf ../run/connman/resolv.conf ${D}${sysconfdir}/resolv-conf.connman
109 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500110}
111
112# These used to be plugins, but now they are core
Patrick Williams213cb262021-08-07 19:21:33 -0500113RPROVIDES:${PN} = "\
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500114 connman-plugin-loopback \
115 connman-plugin-ethernet \
116 ${@bb.utils.contains('PACKAGECONFIG', 'bluetooth','connman-plugin-bluetooth', '', d)} \
117 ${@bb.utils.contains('PACKAGECONFIG', 'wifi','connman-plugin-wifi', '', d)} \
118 ${@bb.utils.contains('PACKAGECONFIG', '3g','connman-plugin-ofono', '', d)} \
119 "
120
Patrick Williams213cb262021-08-07 19:21:33 -0500121RDEPENDS:${PN} = "\
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500122 dbus \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500123 "
124
125PACKAGES_DYNAMIC += "^${PN}-plugin-.*"
126
127def add_rdepends(bb, d, file, pkg, depmap, multilib_prefix, add_insane_skip):
128 plugintype = pkg.split( '-' )[-1]
129 if plugintype in depmap:
130 rdepends = map(lambda x: multilib_prefix + x, \
131 depmap[plugintype].split())
Patrick Williams213cb262021-08-07 19:21:33 -0500132 d.setVar("RDEPENDS:%s" % pkg, " ".join(rdepends))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500133 if add_insane_skip:
Patrick Williams213cb262021-08-07 19:21:33 -0500134 d.appendVar("INSANE_SKIP:%s" % pkg, "dev-so")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500135
Patrick Williams213cb262021-08-07 19:21:33 -0500136python populate_packages:prepend() {
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500137 depmap = dict(pppd="ppp")
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500138 multilib_prefix = (d.getVar("MLPREFIX") or "")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500139
140 hook = lambda file,pkg,x,y,z: \
141 add_rdepends(bb, d, file, pkg, depmap, multilib_prefix, False)
142 plugin_dir = d.expand('${libdir}/connman/plugins/')
143 plugin_name = d.expand('${PN}-plugin-%s')
Brad Bishop19323692019-04-05 15:28:33 -0400144 do_split_packages(d, plugin_dir, r'^(.*).so$', plugin_name, \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500145 '${PN} plugin for %s', extra_depends='', hook=hook, prepend=True )
146
147 hook = lambda file,pkg,x,y,z: \
148 add_rdepends(bb, d, file, pkg, depmap, multilib_prefix, True)
149 plugin_dir = d.expand('${libdir}/connman/plugins-vpn/')
150 plugin_name = d.expand('${PN}-plugin-vpn-%s')
Brad Bishop19323692019-04-05 15:28:33 -0400151 do_split_packages(d, plugin_dir, r'^(.*).so$', plugin_name, \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500152 '${PN} VPN plugin for %s', extra_depends='', hook=hook, prepend=True )
153}
154
155PACKAGES =+ "${PN}-tools ${PN}-tests ${PN}-client"
156
Patrick Williams213cb262021-08-07 19:21:33 -0500157FILES:${PN}-tools = "${bindir}/wispr"
158RDEPENDS:${PN}-tools ="${PN}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500159
Patrick Williams213cb262021-08-07 19:21:33 -0500160FILES:${PN}-tests = "${bindir}/*-test"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500161
Patrick Williams213cb262021-08-07 19:21:33 -0500162FILES:${PN}-client = "${bindir}/connmanctl"
163RDEPENDS:${PN}-client ="${PN}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500164
Patrick Williams213cb262021-08-07 19:21:33 -0500165FILES:${PN} = "${bindir}/* ${sbindir}/* ${libexecdir}/* ${libdir}/lib*.so.* \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500166 ${libdir}/connman/plugins \
Brad Bishop19323692019-04-05 15:28:33 -0400167 ${sysconfdir} ${sharedstatedir} ${localstatedir} ${datadir} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500168 ${base_bindir}/* ${base_sbindir}/* ${base_libdir}/*.so* ${datadir}/${PN} \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500169 ${datadir}/dbus-1/system-services/* \
170 ${sysconfdir}/tmpfiles.d/connman_resolvconf.conf"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500171
Patrick Williams213cb262021-08-07 19:21:33 -0500172FILES:${PN}-dev += "${libdir}/connman/*/*.la"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500173
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500174PACKAGES =+ "${PN}-vpn ${PN}-wait-online"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500175
Patrick Williams213cb262021-08-07 19:21:33 -0500176SUMMARY:${PN}-vpn = "A daemon for managing VPN connections within embedded devices"
177DESCRIPTION:${PN}-vpn = "The ConnMan VPN provides a daemon for \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500178managing VPN connections within embedded devices running the Linux \
179operating system. The connman-vpnd handles all the VPN connections \
180and starts/stops VPN client processes when necessary. The connman-vpnd \
181provides a DBus API for managing VPN connections. All the different \
182VPN technogies are implemented using plug-ins."
Patrick Williams213cb262021-08-07 19:21:33 -0500183FILES:${PN}-vpn += "${sbindir}/connman-vpnd \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500184 ${sysconfdir}/dbus-1/system.d/connman-vpn-dbus.conf \
185 ${datadir}/dbus-1/system-services/net.connman.vpn.service \
Andrew Geissler5199d832021-09-24 16:47:35 -0500186 ${systemd_system_unitdir}/connman-vpn.service"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500187
Patrick Williams213cb262021-08-07 19:21:33 -0500188SUMMARY:${PN}-wait-online = "A program that will return once ConnMan has connected to a network"
189DESCRIPTION:${PN}-wait-online = "A service that can be enabled so that \
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500190the system waits until a network connection is established."
Patrick Williams213cb262021-08-07 19:21:33 -0500191FILES:${PN}-wait-online += "${sbindir}/connmand-wait-online \
Andrew Geissler5199d832021-09-24 16:47:35 -0500192 ${systemd_system_unitdir}/connman-wait-online.service"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500193
Patrick Williams213cb262021-08-07 19:21:33 -0500194SUMMARY:${PN}-plugin-vpn-openvpn = "An OpenVPN plugin for ConnMan VPN"
195DESCRIPTION:${PN}-plugin-vpn-openvpn = "The ConnMan OpenVPN plugin uses openvpn client \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500196to create a VPN connection to OpenVPN server."
Patrick Williams213cb262021-08-07 19:21:33 -0500197FILES:${PN}-plugin-vpn-openvpn += "${libdir}/connman/scripts/openvpn-script \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500198 ${libdir}/connman/plugins-vpn/openvpn.so"
Patrick Williams213cb262021-08-07 19:21:33 -0500199RDEPENDS:${PN}-plugin-vpn-openvpn += "${PN}-vpn"
200RRECOMMENDS:${PN} += "${@bb.utils.contains('PACKAGECONFIG','openvpn','${PN}-plugin-vpn-openvpn', '', d)}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500201
Patrick Williams213cb262021-08-07 19:21:33 -0500202SUMMARY:${PN}-plugin-vpn-vpnc = "A vpnc plugin for ConnMan VPN"
203DESCRIPTION:${PN}-plugin-vpn-vpnc = "The ConnMan vpnc plugin uses vpnc client \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500204to create a VPN connection to Cisco3000 VPN Concentrator."
Patrick Williams213cb262021-08-07 19:21:33 -0500205FILES:${PN}-plugin-vpn-vpnc += "${libdir}/connman/scripts/openconnect-script \
Andrew Geisslerc182c622020-05-15 14:13:32 -0500206 ${libdir}/connman/plugins-vpn/vpnc.so \
207 ${libdir}/connman/scripts/vpn-script"
Patrick Williams213cb262021-08-07 19:21:33 -0500208RDEPENDS:${PN}-plugin-vpn-vpnc += "${PN}-vpn"
209RRECOMMENDS:${PN} += "${@bb.utils.contains('PACKAGECONFIG','vpnc','${PN}-plugin-vpn-vpnc', '', d)}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500210
Patrick Williams213cb262021-08-07 19:21:33 -0500211SUMMARY:${PN}-plugin-vpn-l2tp = "A L2TP plugin for ConnMan VPN"
212DESCRIPTION:${PN}-plugin-vpn-l2tp = "The ConnMan L2TP plugin uses xl2tpd daemon \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500213to create a VPN connection to L2TP server."
Patrick Williams213cb262021-08-07 19:21:33 -0500214FILES:${PN}-plugin-vpn-l2tp += "${libdir}/connman/scripts/libppp-plugin.so* \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500215 ${libdir}/connman/plugins-vpn/l2tp.so"
Patrick Williams213cb262021-08-07 19:21:33 -0500216RDEPENDS:${PN}-plugin-vpn-l2tp += "${PN}-vpn"
217RRECOMMENDS:${PN} += "${@bb.utils.contains('PACKAGECONFIG','l2tp','${PN}-plugin-vpn-l2tp', '', d)}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500218
Patrick Williams213cb262021-08-07 19:21:33 -0500219SUMMARY:${PN}-plugin-vpn-pptp = "A PPTP plugin for ConnMan VPN"
220DESCRIPTION:${PN}-plugin-vpn-pptp = "The ConnMan PPTP plugin uses pptp-linux client \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500221to create a VPN connection to PPTP server."
Patrick Williams213cb262021-08-07 19:21:33 -0500222FILES:${PN}-plugin-vpn-pptp += "${libdir}/connman/scripts/libppp-plugin.so* \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500223 ${libdir}/connman/plugins-vpn/pptp.so"
Patrick Williams213cb262021-08-07 19:21:33 -0500224RDEPENDS:${PN}-plugin-vpn-pptp += "${PN}-vpn"
225RRECOMMENDS:${PN} += "${@bb.utils.contains('PACKAGECONFIG','pptp','${PN}-plugin-vpn-pptp', '', d)}"