diff --git a/src/NetworkManagerUtils.c b/src/NetworkManagerUtils.c index 89bd357f07..a24d7bc1b2 100644 --- a/src/NetworkManagerUtils.c +++ b/src/NetworkManagerUtils.c @@ -935,3 +935,37 @@ nm_utils_g_value_set_object_path_array (GValue *value, } /*****************************************************************************/ + +int +nm_match_spec_device_by_pllink (const NMPlatformLink *pllink, + const GSList *specs, + int no_match_value) +{ + NMMatchSpecMatchType m; + + /* we can only match by certain properties that are available on the + * platform link (and even @pllink might be missing. + * + * It's still useful because of specs like "*" and "except:interface-name:eth0", + * which match even in that case. */ + m = nm_match_spec_device (specs, + pllink ? pllink->name : NULL, + NULL, + pllink ? pllink->driver : NULL, + NULL, + NULL, + NULL); + + switch (m) { + case NM_MATCH_SPEC_MATCH: + return TRUE; + case NM_MATCH_SPEC_NEG_MATCH: + return FALSE; + case NM_MATCH_SPEC_NO_MATCH: + return no_match_value; + } + nm_assert_not_reached (); + return no_match_value; +} + + diff --git a/src/NetworkManagerUtils.h b/src/NetworkManagerUtils.h index e5f28b2729..989ae9405c 100644 --- a/src/NetworkManagerUtils.h +++ b/src/NetworkManagerUtils.h @@ -64,6 +64,10 @@ void nm_utils_g_value_set_object_path_array (GValue *value, NMUtilsObjectFunc filter_func, gpointer user_data); +int nm_match_spec_device_by_pllink (const NMPlatformLink *pllink, + const GSList *specs, + int no_match_value); + /*****************************************************************************/ #endif /* __NETWORKMANAGER_UTILS_H__ */