]> mj.ucw.cz Git - subauth.git/blobdiff - server/subauthd.h
Server: Maximum comment size is limited (configurable)
[subauth.git] / server / subauthd.h
index 30fd01657d8f44fcba2e4be4a83f371621e2926b..1e867541ef2991231f41f3434d186bfd2ce30097 100644 (file)
 
 #include <ucw/clists.h>
 #include <ucw/mainloop.h>
+#include <ucw/mempool.h>
 #include <ucw-json/json.h>
 
 #define SOCKET_TIMEOUT 60000           // in ms
-#define MAX_PACKET_SIZE 16384
 #define MAX_OOB_DATA_SIZE 4096
 
 struct client {
   struct main_file socket;
   struct main_timer timer;
   int uid;
+  struct mempool *pool;
   struct json_context *json;
   struct json_node *request;
   struct json_node *reply;
@@ -27,6 +28,8 @@ struct client {
 
 extern clist zone_list;                        // of struct auth_zone
 extern char *database_name;
+extern char *temp_key_file;
+extern uint max_comment_size;
 
 /* cmd.c */
 
@@ -49,9 +52,11 @@ struct json_node *get_object(struct json_node *n, const char *key);
 struct auth_zone {
   cnode n;
   char *name;
+  char *desc;
   uint auto_create_acct;
   uint allow_passwd;
   uint allow_tokens;
+  uint max_temp_validity;
 };
 
 struct auth_user {
@@ -91,13 +96,20 @@ struct auth_zone *auth_find_zone(const char *name);
 struct auth_user *auth_find_user(const char *login, bool create);
 struct auth_acct *auth_find_acct(struct auth_user *au, struct auth_zone *az, bool create);
 struct auth_token *auth_find_token_passwd(struct auth_acct *aa);
-struct auth_token *auth_find_token_generated(struct auth_acct *aa, char *ident);
+struct auth_token *auth_find_token_generated(struct auth_acct *aa, const char *ident);
 void auth_delete_user(struct auth_user *au);
 void auth_delete_acct(struct auth_acct *aa);
 void auth_delete_token(struct auth_token *at);
 struct auth_token *auth_create_token(struct auth_acct *aa);
 void auth_set_token_passwd(struct auth_token *at, const char *passwd);
-char *auth_set_token_generated(struct auth_token *at, const char *comment);
+char *auth_set_token_generated(struct auth_token *at, const char *comment, struct mempool *pool);
 bool auth_check_token(struct auth_token *at, const char *passwd);
 
 extern struct auth_token *auth_fake_token;
+
+/* temp.c */
+
+void temp_init(void);
+char *temp_generate(const char *zone, const char *login, uint validity, struct mempool *pool);
+const char *temp_check(const char *zone, const char *login, const char *token, struct mempool *pool);
+const char *temp_shorten(const char *token, struct mempool *pool);