]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
Added a listplugins stroke command to show plugin features
authorMartin Willi <martin@revosec.ch>
Wed, 29 Jun 2011 13:45:32 +0000 (15:45 +0200)
committerMartin Willi <martin@revosec.ch>
Fri, 14 Oct 2011 08:05:44 +0000 (10:05 +0200)
src/libcharon/plugins/stroke/stroke_list.c
src/stroke/stroke.c
src/stroke/stroke_keywords.h
src/stroke/stroke_keywords.txt
src/stroke/stroke_msg.h

index 8ceb8b4ca898150f15cb5f510a8c158db10f4e34..987475fb32c102a29ec63bf01385944401eaf485 100644 (file)
@@ -1206,6 +1206,57 @@ static void list_algs(FILE *out)
        fprintf(out, "\n");
 }
 
+/**
+ * List loaded plugin information
+ */
+static void list_plugins(FILE *out)
+{
+       plugin_feature_t *features, *fp;
+       enumerator_t *enumerator;
+       linked_list_t *list;
+       plugin_t *plugin;
+       int count, i;
+       bool loaded;
+       char *str;
+
+       fprintf(out, "\n");
+       fprintf(out, "List of loaded plugins:\n");
+
+       enumerator = lib->plugins->create_plugin_enumerator(lib->plugins);
+       while (enumerator->enumerate(enumerator, &plugin, &list))
+       {
+               fprintf(out, "%s:\n", plugin->get_name(plugin));
+               if (plugin->get_features)
+               {
+                       count = plugin->get_features(plugin, &features);
+                       for (i = 0; i < count; i++)
+                       {
+                               str = plugin_feature_get_string(&features[i]);
+                               switch (features[i].kind)
+                               {
+                                       case FEATURE_PROVIDE:
+                                               fp = &features[i];
+                                               loaded = list->find_first(list, NULL,
+                                                                                                 (void**)&fp) == SUCCESS;
+                                               fprintf(out, "    %s%s\n",
+                                                               str, loaded ? "" : " (not loaded)");
+                                               break;
+                                       case FEATURE_DEPENDS:
+                                               fprintf(out, "        %s\n", str);
+                                               break;
+                                       case FEATURE_SDEPEND:
+                                               fprintf(out, "        %s(soft)\n", str);
+                                               break;
+                                       default:
+                                               break;
+                               }
+                               free(str);
+                       }
+               }
+       }
+       enumerator->destroy(enumerator);
+}
+
 METHOD(stroke_list_t, list, void,
        private_stroke_list_t *this, stroke_msg_t *msg, FILE *out)
 {
@@ -1277,6 +1328,10 @@ METHOD(stroke_list_t, list, void,
        {
                list_algs(out);
        }
+       if (msg->list.flags & LIST_PLUGINS)
+       {
+               list_plugins(out);
+       }
 }
 
 /**
index 2abbd7bffb18f5cfbe2affd8d3fe374b2937f4e5..a27c374c748c658b73e63dcf2cf4939e44963b11 100644 (file)
@@ -263,6 +263,7 @@ static int list_flags[] = {
        LIST_CRLS,
        LIST_OCSP,
        LIST_ALGS,
+       LIST_PLUGINS,
        LIST_ALL
 };
 
@@ -531,6 +532,7 @@ int main(int argc, char *argv[])
                case STROKE_LIST_CRLS:
                case STROKE_LIST_OCSP:
                case STROKE_LIST_ALGS:
+               case STROKE_LIST_PLUGINS:
                case STROKE_LIST_ALL:
                        res = list(token->kw, argc > 2 && strcmp(argv[2], "--utc") == 0);
                        break;
index 3e55ef8f27e0219dd45f3441c62ac4be14be5935..3bd68bdc3962600260d241d26141dbdf858107eb 100644 (file)
@@ -41,6 +41,7 @@ typedef enum {
        STROKE_LIST_CRLS,
        STROKE_LIST_OCSP,
        STROKE_LIST_ALGS,
+       STROKE_LIST_PLUGINS,
        STROKE_LIST_ALL,
        STROKE_REREAD_SECRETS,
        STROKE_REREAD_CACERTS,
index 78212c2b827d2ff39ea1032e62ca2a2e95e1114e..4a4cc57a9b9ef3c22841e3da4f12b41227560a16 100644 (file)
@@ -48,6 +48,7 @@ listcainfos,     STROKE_LIST_CAINFOS
 listcrls,        STROKE_LIST_CRLS
 listocsp,        STROKE_LIST_OCSP
 listalgs,        STROKE_LIST_ALGS
+listplugins,     STROKE_LIST_PLUGINS
 listall,         STROKE_LIST_ALL
 rereadsecrets,   STROKE_REREAD_SECRETS
 rereadcacerts,   STROKE_REREAD_CACERTS
index 8324c775d6dbc1f69fd7a3ad813325855b26223d..f3c525ba7d11ce6998e9027e73e2ec89d4717b43 100644 (file)
@@ -65,8 +65,10 @@ enum list_flag_t {
        LIST_OCSP =                     0x0200,
        /** list all supported algorithms */
        LIST_ALGS =                     0x0400,
+       /** list plugin information */
+       LIST_PLUGINS =          0x0800,
        /** all list options */
-       LIST_ALL =                      0x07FF,
+       LIST_ALL =                      0x0FFF,
 };
 
 typedef enum reread_flag_t reread_flag_t;