/* * This file is part of Cockpit. * * Copyright (C) 2013 Red Hat, Inc. * * Cockpit is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * Cockpit is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Cockpit; If not, see . */ #ifndef __COCKPIT_AUTH_H__ #define __COCKPIT_AUTH_H__ #include #include #include "cockpitcreds.h" #include "cockpitwebservice.h" #include "common/cockpittransport.h" G_BEGIN_DECLS #define MAX_AUTH_TIMEOUT 900 #define MIN_AUTH_TIMEOUT 1 #define COCKPIT_TYPE_AUTH (cockpit_auth_get_type ()) #define COCKPIT_AUTH(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), COCKPIT_TYPE_AUTH, CockpitAuth)) #define COCKPIT_AUTH_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), COCKPIT_TYPE_AUTH, CockpitAuthClass)) #define COCKPIT_IS_AUTH_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), COCKPIT_TYPE_AUTH)) typedef struct _CockpitAuth CockpitAuth; typedef struct _CockpitAuthClass CockpitAuthClass; struct _CockpitAuth { GObject parent_instance; GBytes *key; GHashTable *sessions; GHashTable *conversations; guint64 nonce_seed; gboolean login_loopback; gulong timeout_tag; guint startups; guint max_startups; guint max_startups_begin; guint max_startups_rate; }; struct _CockpitAuthClass { GObjectClass parent_class; }; GType cockpit_auth_get_type (void) G_GNUC_CONST; CockpitAuth * cockpit_auth_new (gboolean login_loopback); gchar * cockpit_auth_nonce (CockpitAuth *self); void cockpit_auth_login_async (CockpitAuth *self, const gchar *path, GIOStream *connection, GHashTable *headers, GAsyncReadyCallback callback, gpointer user_data); JsonObject * cockpit_auth_login_finish (CockpitAuth *self, GAsyncResult *result, GIOStream *connection, GHashTable *out_headers, GError **error); CockpitWebService * cockpit_auth_check_cookie (CockpitAuth *self, const gchar *path, GHashTable *in_headers); gchar * cockpit_auth_parse_application (const gchar *path, gboolean *is_host); gchar * cockpit_auth_steal_authorization (GHashTable *headers, GIOStream *connection, gchar **ret_type, gchar **ret_conversation); G_END_DECLS #endif