summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* modem: use set conn.interface upon completing the CDMA connectionslr/complete-connLubomir Rintel2019-05-074-3/+11
| | | | | There doesn't seem to be a better way to pinpoint a CDMA connection to a device. This will have to do for now.
* infiniband: complete an interface name in complete_connection()Lubomir Rintel2019-05-071-14/+7
| | | | | | If the AddAndActivate() caller didn't explicitely a MAC address, default to pinpointing the connection to the device by the means of an interface name. This makes more sense than a MAC address with stable device names.
* ethernet: complete an interface name in complete_connection()Lubomir Rintel2019-05-071-16/+7
| | | | | | If the AddAndActivate() caller didn't explicitely a MAC address, default to pinpointing the connection to the device by the means of an interface name. This makes more sense than a MAC address with stable device names.
* wifi: complete an interface name in complete_connection()Lubomir Rintel2019-05-072-18/+2
| | | | | | If the AddAndActivate() caller didn't explicitely a MAC address, default to pinpointing the connection to the device by the means of an interface name. This makes more sense than a MAC address with stable device names.
* utils: add ifname argument to nm_utils_complete_generic()Lubomir Rintel2019-05-0723-4/+31
| | | | | | It's a common thing to complete a connection with an interface name; adding it to the common path is goint to save as a few tens of lines later on.
* infiniband: remove the MAC address check from complete_connection()Lubomir Rintel2019-05-071-16/+4
| | | | | nm_device_complete_connection() now calls check_connection_compatible() which has a redundant check.
* ethernet: remove the MAC address check from complete_connection()Lubomir Rintel2019-05-071-18/+4
| | | | | nm_device_complete_connection() now calls check_connection_compatible() which has a redundant check.
* wifi: remove the MAC address check from complete_connection()Lubomir Rintel2019-05-072-42/+10
| | | | | nm_device_complete_connection() now calls check_connection_compatible() which has a redundant check.
* device: after completing a connection, check it's compatibleLubomir Rintel2019-05-071-1/+4
|
* modem/broadband: set the gsm.device-id in complete_connection()Lubomir Rintel2019-05-071-2/+16
| | | | | | | This is the preferred way of associating the connection with a particualr modem. https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/138
* core: merge branch 'th/cache-state-keyfiles'Thomas Haller2019-05-0718-231/+794
|\ | | | | | | https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/134
| * settings: cache keyfile databases for "timestamps" and "seen-bssids"Thomas Haller2019-05-078-207/+266
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Only read the keyfile databases once and cache them for the remainder of the program. - this avoids the overhead of opening the file over and over again. - it also avoids the data changing without us expecting it. The state files are internal and we don't support changing it outside of NetworkManager. So in the base case we read the same data over and over. In the worst case, we read different data but are not interested in handling the changes. - only write the file when the content changes or before exiting (normally). - better log what is happening. - our state files tend to grow as we don't garbage collect old entries. Keeping this all in memory might be problematic. However, the right solution for this is that we come up with some form of garbage collection so that the state files are reaonsably small to begin with.
| * shared: add NMKeyFileDB APIThomas Haller2019-05-072-0/+443
| | | | | | | | | | | | It will be used for "/var/lib/NetworkManager/seen-bssids" and "/var/lib/NetworkManager/timestamps" which currently is implemented in NMSettingConnection.
| * shared: add "shared/nm-glib-aux/nm-keyfile-aux.h"Thomas Haller2019-05-075-1/+52
| |
| * shared: add nm_log_level_from_syslog() helper to convert from syslog levelsThomas Haller2019-05-073-18/+28
| |
| * core: use NM_SETTINGS_GET for singlton instead of nm_settings_get()Thomas Haller2019-05-072-5/+5
|/ | | | We have it, so use it. Also, we use a similar macro for other singletons.
* platform: merge branch 'th/ethtool-retry'Thomas Haller2019-05-073-171/+369
|\ | | | | | | https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/133
| * platform/ethtool,mii: retry ioctl when interface name was renamed for ↵Thomas Haller2019-05-072-171/+314
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ehttool/mii ethtool/mii API is based on the ifname. As an interface can be renamed, this API is inherently racy. We would prefer to use the ifindex instead. The ifindex of a device cannot change (altough it can repeat, which opens a different race *sigh*). Anyway, we were already trying to minimize the race be resolving the name from ifindex immediately before the call to ethtool/mii. Do better than that. Now resolve the name before and after the call. If the name changed in the meantime, we have an indication that a race might have happend (but we cannot be sure). Note that this can not catch every possible kind of rename race. If you are very unlucky a swapping of names cannot be detected. For getters this is relatively straight forward. Just retry when we have an indication to fall victim to a race (up to a few times). Yes, we still cannot be 100% sure, but this should be very reliable in practice. For setters (that modify the device) we also retry. We do so under the assumption that setting the same options multiple times has no bad effect. Note that for setters the race of swapping interface names is particularly bad. If we hit a very unlucky race condition, we might set the setting on the wrong interface and there is nothing we can do about it. The retry only ensures that eventually we will set it on the right interface. Note that this involves one more if_indextoname() call for each operation (in the common case when there is no renaming race). In cases where we make multiple ioctl calls, we cache and reuse the information though. So, for such calls the overhead is even smaller.
| * shared: add nm_malloc_maybe_a(), nm_malloc0_maybe_a() and ↵Thomas Haller2019-05-071-0/+55
|/ | | | nm_memdup_maybe_a() utils
* device: fix reapply of MTUBeniamino Galvani2019-05-061-0/+3
| | | | | | | | | | | | | | | | | When we set the MTU on the link we remember its previous source (ip-config, parent-device or connection profile) and don't change it again afterwards to avoid interfering with user's manual changes. The only exceptions when we change it again are (1) if the parent device MTU changes and (2) if the new MTU has higher priority than the one previously set. To allow a live reapply of the MTU property we also need to clear the saved source, or the checks described above will prevent setting the new value. Fixes: 2f8917237fdf ('device: rework mtu priority handling') https://bugzilla.redhat.com/show_bug.cgi?id=1702657
* cli: merge branch 'bg/rh1702199'Beniamino Galvani2019-05-065-26/+65
|\ | | | | | | | | | | | | | | Don't print blob certificates unless the '--show-secrets' option is passed to nmcli; plus other related changes. https://bugzilla.redhat.com/show_bug.cgi?id=1702199 https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/122
| * cli: hide certificate blobs unless --show-secrets is passedBeniamino Galvani2019-05-061-2/+1
| | | | | | | | | | | | This restores the behavior before commit 99711579ed43. Fixes: 99711579ed43 ('cli: add property type for 802-1x certificate properties (pt2)').
| * cli: complete 802.1x certificate file namesBeniamino Galvani2019-05-061-0/+21
| |
| * cli: allow completing filenamesBeniamino Galvani2019-05-065-8/+24
| | | | | | | | | | Allow the completion function to indicate that the word should be completed as a filename by the shell.
| * cli: remove bluetooth completion codeBeniamino Galvani2019-05-061-8/+2
| | | | | | | | | | | | | | The 'bt-type' property alias accepts values provided by gen_func_bt_type(); instead the 'bluetooth.type' property can only be set to [dun, panu, nap] and therefore it doesn't need special handling.
| * cli: parse escape sequences when reading an 802.1x private keyBeniamino Galvani2019-05-061-10/+18
| | | | | | | | | | In this way it become possible to specify a filename that includes one of the delimiters.
| * cli: fix setting private key passwordBeniamino Galvani2019-05-061-0/+1
|/ | | | Fixes: fe390556abfe ('cli: add property type for 802-1x certificate properties (pt3)')
* settings: fix failed assertionBeniamino Galvani2019-05-061-1/+1
| | | | | | | | | | Fix the following assertion failure: g_object_ref: assertion 'G_IS_OBJECT (object)' failed. nm_settings_add_connection() can return a NULL connection. Fixes: f034f17ff69c ('settings: keep the added connection alive for a bit longer')
* po: update Spanish (es) translationRodrigo Lledó2019-05-041-2399/+2987
| | | | https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/135
* release: bump version to 1.19.2-dev1.19.2-devLubomir Rintel2019-05-032-2/+2
|
* build: fix an out-of-tree buildLubomir Rintel2019-05-031-1/+1
| | | | | | | | | | | make[3]: Entering directory 'NetworkManager/_build/sub' CC clients/cli/nmcli-common.o cc1: error: ./clients/common: No such file or directory [-Werror=missing-include-dirs] cc1: all warnings being treated as errors The only generated header in $builddir/clients/common is settings-docs.h and only libnmc.la needs it. Include the directory on the command line only when we know it exists.
* NEWS: updateLubomir Rintel2019-05-031-0/+2
|
* device/wireguard: fix memleak for NMDeviceWireGuardThomas Haller2019-05-031-0/+2
| | | | Fixes: 2148d0948202 ('core/wireguard: add support for WireGuard peers')
* platform/tests: workaround routing-rules test failure due to ↵Thomas Haller2019-05-021-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | suppress_prefixlen on older kernels On Ubuntu 14.04 kernel (4.4.0-146-generic, x86_64) this easily causes test failures: make -j 8 src/platform/tests/test-route-linux \ && while true; do \ NMTST_SEED_RANDOM= ./tools/run-nm-test.sh src/platform/tests/test-route-linux -p /route/rule \ || break; \ done outputs: ... /route/rule/1: nmtst: initialize nmtst_get_rand() with NMTST_SEED_RAND=22892021 OK /route/rule/2: >>> failing... >>> no fuzzy match between: [routing-rule,0x205ab30,1,+alive,+visible; [6] 0: from all suppress_prefixlen 8 none] >>> and: [routing-rule,0x205c0c0,1,+alive,+visible; [6] 0: from all suppress_prefixlen -1579099242 none] ** test:ERROR:src/platform/tests/test-route.c:1695:test_rule: code should not be reached
* po: update Spanish (es) translationRodrigo Lledó2019-05-011-32/+30
| | | | | | | | | Changing "Token" translation from "identificador" to "testigo" as discussed in the GNOME Spanish Translation Team's mailing list. Special thanks to Daniel Mustieles our coordinator. https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/130
* po: update Ukrainian (uk) translationYuri Chornoivan2019-05-011-2518/+2618
| | | | https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/128
* libnm: merge branch 'th/libnm-setting-cleanup'Thomas Haller2019-05-0125-385/+555
|\ | | | | | | https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/126
| * libnm: unify property-to-dbus handling of NMSettingThomas Haller2019-05-0111-135/+136
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge the function pointer get_func() into to_dbus_fcn(). Previously, get_func() as handled separately from to_dbus_fnc() (formerly synth_func()). The notion was that synth-func would syntetize properties that are D-Bus only. But that distinction does not seem very helpful to me. Instaed, we want to convert a property to D-Bus. Period. The implementation should be handled uniformly. Hence, now that is all done by property_to_dbus(). Note that property_to_dbus() is also called as default implementation for compare-property. At least, for properties that are backed by a GObject property.
| * libnm: rename function pointers of NMSettInfoPropertyThomas Haller2019-05-014-87/+97
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The naming was not very clear. How does get_func(), synth_func() and to_dbus() relate? What does synth_func() do anyway? Answers: - get_func() and synth_func() do very similar. They should be merged in a next step. synth_func() has the notion of "synthetize" a property for D-Bus. As such, these properties are a bit unusual in that they don't have a backing GObject property in the setting. But it'd rather treat such properties like other properties. The step in that direction will be to merge the to-dbus functions. - to_dbus() converts a GValue of the GObject property go GVariant. It's a simplified form of get_func()/synth_func() and a better name is gprop_to_dbus_fcn(). The same for gprop_from_dbus_fcn(). For now, just rename.
| * libnm: pass connection to compare_property() functionThomas Haller2019-05-0118-129/+236
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We have certain artificial properties that not only depend on one property alone or that depend on a property in another(!) setting. For that, we have synth_func. Other than that, synth_func and get_func are really fundamentally similar and should be merged. That is because the distinction whether a property value is "synthetized" or just based on a plain property is minor. It's better to have the general concept of "convert property to GVariant" in one form only. Note that compare_property() is by default implemented based on get_func. Hence, if get_func and synth_func get merged, compare_property() will also require access to the NMConnection. Also it makes some sense: some properties are artificial and actually stored in "another" setting of the connection. But still, the property descriptor for the property is in this setting. The example is the "bond.interface-name" which only exists on D-Bus. It's stored as "connection.interface-name". I don't really like to say "exists on D-Bus only". It's still a valid property, despite in NMSetting it's stored somehow differently (or not at all). So, this is also just a regular property for which we have a property-info vtable. Does it make sense to compare such properties? Maybe. But the point is that compare_property() function needs sometimes access to the entire connection. So add the argument.
| * libnm: cleanup converting properties to GVariantThomas Haller2019-05-012-61/+99
| | | | | | | | | | | | | | | | | | | | | | Always properly set NMSettInfoProperty.dbus_type, instead of leaving it unspecified for GObject property based properties, and detect it each time anew with variant_type_for_gtype(). Instead, autodetect and remember the dbus-type during _properties_override_add_struct(). For types that need special handling (GBytes, enums and flags) set a to_dbus() function. This allows us to handle properties uniformly by either calling the to_dbus() function or g_dbus_gvalue_to_gvariant().
| * libnm: cleanup get_property_for_dbus()Thomas Haller2019-05-011-45/+51
| | | | | | | | | | | | | | | | | | | | | | - use cleanup attribute in get_property_for_dbus() and return early. - use NM_FLAGS_HAS() macro in _nm_setting_to_dbus(). - in nm_setting_get_dbus_property_type() use g_return*() asserts instead of crash or hard asserts. - return early from variant_type_for_gtype().
| * shared: add nm_g_variant_take_ref() utilThomas Haller2019-05-011-0/+8
|/
* merge: branch 'lr/tc-attrs'Lubomir Rintel2019-04-305-15/+274
|\ | | | | | | https://github.com/NetworkManager/NetworkManager/pull/338
| * tc/tfilter: add mirred actionLubomir Rintel2019-04-305-8/+104
| |
| * tc/qdisc: add support for fq_codel attributesLubomir Rintel2019-04-305-7/+170
|/
* merge: branch 'lr/dispatcher-split'Lubomir Rintel2019-04-306-193/+91
|\ | | | | | | https://github.com/NetworkManager/NetworkManager/pull/253
| * contrib/rpm: provide NetworkManager-dispatcherlr/dispatcher-splitLubomir Rintel2019-04-291-0/+2
| | | | | | | | | | | | This is a provide packages that install dispatcher scripts should depend on. It will make it easier to keep track of them and possibly split out the dispatcher into an optional package if not needed.
| * contrib/rpm: (trivial) move some %files around, remove a duplicateLubomir Rintel2019-04-291-4/+3
| | | | | | | | Just a cosmetic thing.
| * dispatcher: look for the scripts in /usr/lib as wellLubomir Rintel2019-04-292-37/+71
| | | | | | | | | | This makes it possible for packages that ship dispatcher scripts to use the correct location.