summaryrefslogblamecommitdiffstats
path: root/prijave.c
blob: 8a9b3f09e6cd2cfb016ccdc46a53fc18bec14d3b (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                       




                     




                      

                                                                                                                                                                                                                                       

                     
                             

                          

                            





                            
                          

                           
  



                    


                    
















                                                                                                                                                                                                                                                                                                                                                                              

                                               


















                                                                                                       
                                                                                                         


                                  


                                                                                                              


                                      



                                                                                                                                                                                                                                                                              
                                        

                               
 


                                                                                                                    




                                                                                                                                            


                                                                                                                                                                                                               








                                                                                                        
                                                               








                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         









                                                                                  
 


                                                                          
                            


                                                                                                                                                                                                                            

                                                                                    
                                                                                                        

                                                                                     


                                                                                            
                                                                 
                                                               
                                                                






                                                                                                                                          
                                                               
                 
                               
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     

                                                                              





                                 
                                                                                    


                        

















                                                                                                                             
                                                                                                                                                                                                                            
                                                               

                                                                                       
                               
                              
                                      

                                                             


                                                                                     
                                                           

                       







                                                                                                          

                               





                                                                            


                            

                                                                                                                                                                                                                                                          
           
                                                             
                                                     
                                                                               




                                                                   
                                              










                                                                                    

                                                                                                
                                                                                                                                   



                                                                                                                  















                                                                                                                                                                              














                                                                                               



                                                                                                      
                                                  


















                                                                                                                                                                         
                                                                                                                
                                                                                                               


                                                                    
                                                                                                                                                      


                                                                               
                                                                                                                                                     


                                                                           
                                                                                                                                                     


                                                                                  

                                                                        


                                                                 
                                               
                                                         



                                                                                                                                                                                                                                                                                        

                                                                 







                                                                                                             
                                                                                                                                                    

















                                                                                                            
                                                                                                                                                       

                                                  

                                                   






                                                                                   



                                                                                                                                                                        


















                                                                                                                                        
                                                                                                                                                    
                                                                         
                                                                                                                                                   
                                                                           
                                                                                                                                                   
                                                                                  
                                                                                                                        
                                                                          
                                                                                                                                             

                                                                                        


                                                                   


                                                                                                      




                                                                         
                         


                                                                      
                                                             
                               












































                                                                                                                                             









                                                                                                                         
                                                                                                                                             

                                                                      
                                                                                                                
                                                         

                                                             


                                                                                                 

                                                              
                                                                                                                                                                                       
                                           
                                       


                                                           
                                                                   
                               
                 
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            



                                                          




                                

                       
  

                                             

                                                                                                   
                     
                                                                              

                               











                                                                            

                                                                         
                                                                                  
                                         






                                                                                                                                                                




























                                                                                                 












                                                                                                                                                                                       
                         

                 
#include <sqlite3.h>
#include <microhttpd.h>
#include <stdlib.h>
#undef NDEBUG
#include <assert.h>
#include <libintl.h>
#include <signal.h>
#include <string.h>
#include <sys/stat.h>
#include <stdio.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <lib.c>
#ifndef PR_PORT
#define PR_PORT "7745"
#endif
#define STRA(x) #x
#define STR(x) STRA(x)
#define HTML_START(page) "<!DOCTYPE html><html lang=sl><head><meta name=viewport content='width=device-width,initial-scale=1.0,shrink-to-fit=no' /><title>" page " :: prijave</title><link rel=stylesheet href=css.css /></head><body>"
#define HTML_END "<footer><span class=f><hr></span></body></html>"
struct prijave {
	sqlite3 * db;
	int cp_requires_pass;
	const char * pass;
	const char * salt;
	const char * footer;
	char * hp;
};
enum question {
	// types
	RADIO = (0 << 0),
	CHECKBOX = (1 << 0),
	TEXT = (1 << 1),
	HIDDEN = (1 << 2),
	// options:
	NOT_NULL = (1 << 5)
};
enum action {
	NO_ACTION,
	CREATE_POLL,
	FIND_POLLS,
	MODIFY_POLL,
	DELETE_POLL,
	ADD_QUESTION
};
struct request {
	struct MHD_PostProcessor * post_processor;
	enum action action;
	char * pp;
	char * ap;
	char * pn;
	char * pd;
};
static enum MHD_Result iterator (void * userdata, enum MHD_ValueKind kind __attribute__((unused)), const char * key, const char * filename __attribute__((unused)), const char * content_type __attribute__((unused)), const char * transfer_encoding __attribute__((unused)), const char * data, uint64_t off __attribute__((unused)), size_t size __attribute__((unused))) {
	struct request * request = (struct request *) userdata;
#define ACTION_TRANSLATION(name, act) \
	if (!strcmp(key, name)) \
		request->action = act;
	ACTION_TRANSLATION("cp", CREATE_POLL);
	ACTION_TRANSLATION("fp", FIND_POLLS);
	ACTION_TRANSLATION("mp", MODIFY_POLL);
	ACTION_TRANSLATION("dp", DELETE_POLL);
	ACTION_TRANSLATION("aq", ADD_QUESTION);
#define OBTAIN_PARAMETER(name) \
	if (!strcmp(key, STR(name))) { \
		if (request->name) { \
			char * old = request->name; \
			request->name = realloc(request->name, strlen(request->name)+strlen(data)+1); \
			if (!request->name) \
				free(old); \
		} \
		if (request->name) /* because realloc can return NULL */ \
			strcat(request->name, data); \
		else \
			request->name = strdup(data); \
	}
	OBTAIN_PARAMETER(ap);
	OBTAIN_PARAMETER(pp);
	OBTAIN_PARAMETER(pn);
	OBTAIN_PARAMETER(pd);
	return MHD_YES;
}
char * db_error (sqlite3 * db, const char * section, int ret, sqlite3_stmt * stmt, const char * statem) {
	char spaces[2048];
	memset(spaces, ' ', 2048);
	spaces[2047] = '\0';
	int len = strlen(sqlite3_errstr(ret))+strlen(sqlite3_errmsg(db))+strlen(section)+512+2*strlen(statem);
	if (stmt)
		len += strlen(sqlite3_expanded_sql(stmt) ? sqlite3_expanded_sql(stmt) : "");
	char * response = malloc(len);
	if (!response)
		return NULL;
	if (stmt)
		snprintf(response, len, "db_error %s\n%s\n%s\n%.*s^\n%s\n%s\n", section, sqlite3_expanded_sql(stmt) ? sqlite3_expanded_sql(stmt) : 0, statem, sqlite3_error_offset(db) == -1 ? 0 : sqlite3_error_offset(db), spaces, sqlite3_errstr(ret), sqlite3_errmsg(db));
	else
		snprintf(response, len, "db_error %s\n!stmt\n%s\n%.*s^\n%s\n%s\n", section, statem, sqlite3_error_offset(db) == -1 ? 0 : sqlite3_error_offset(db), spaces, sqlite3_errstr(ret), sqlite3_errmsg(db));
	fprintf(stderr, "%s", response);
	sqlite3_finalize(stmt);
	return response;
}
static char * options (sqlite3 * db, sqlite3_int64 id, int poll_admin, enum question type __attribute__((unused))) {
	int ret;
	char statem[2048];
	sqlite3_stmt * stmt;
	// cheat sheet stavek vrne tabelo s stolpci:
	// id obrazca, ime obrazca, število vprašanj v stolpcu
	// SELECT polls.rowid, polls.name, COUNT(*) FROM polls INNER JOIN questions ON questions.poll = polls.rowid GROUP BY questions.poll;
	// spodnji klic torej vrne tabelo opcij in število zasedenih mest
	// see TODO#1
	// strcpy(statem, "SELECT options.rowid, options.text, options.max, COUNT(*) FROM options INNER JOIN responses ON responses.answer=options.rowid GROUP BY responses.answer WHERE options.question=:i");
	strcpy(statem, "SELECT rowid, text, max FROM options WHERE question=:i;");
	if ((ret = sqlite3_prepare_v3(db, statem, -1, 0, &stmt, NULL)) != SQLITE_OK)
		return hscf(db_error(db, "options prepare", ret, stmt, statem));
	if ((ret = sqlite3_bind_int64(stmt, sqlite3_bind_parameter_index(stmt, ":i"), id)) != SQLITE_OK)
		return hscf(db_error(db, "options bind_int64", ret, stmt, statem));
	char * response = NULL;
	while ((ret = sqlite3_step(stmt)) == SQLITE_ROW) {
		long long int rowid = sqlite3_column_int64(stmt, 0);
		char * text = htmlspecialchars((const char *) sqlite3_column_text(stmt, 1));
		int max = sqlite3_column_int(stmt, 2);
		// int responses = sqlite3_column_int(stmt, 3);
		char * old = response;
		response = realloc(response, (strlen(text ? text : "")+2048)*2);
		if (!response) {
			free(text);
			free(old);
			sqlite3_finalize(stmt);
			return strdup("[err @ options] oom");
		}
		if (poll_admin)
			sprintf(response+strlen(response), "<li><form method=post><button type=submit name=do value=%lld>izbriši možnost</button><input type=reset /><input type=submit name=mq value='shrani možnost' /><br><label for=t>besedilo možnosti</label><br><textarea name=t id=t placeholder=besedilo>%s</textarea><br><label for=o>omejitev prijav na možnost (-1 za neomejeno)</label> <input type=number min=-1 step=1 placeholder=številka value=%d /></form></li>", rowid, text ? text : "", max);
		else
			sprintf(response+strlen(response), "not implemented");
		free(text);
	}
	sqlite3_finalize(stmt);
	if (ret != SQLITE_DONE) {
		free(response);
		return strdup("[err @ options] sqlite_step(stmt) != SQLITE_DONE");
	}
	return response;
}
static char * questions (sqlite3 * db, sqlite3_int64 id, int poll_admin) {
	int ret;
	char statem[2048];
	sqlite3_stmt * stmt;
	// TODO#1: fix number of responses: this does not work if there are no responses for a question. I could use LEFT OUTER JOIN but then NULLs are treated as same value
	// strcpy(statem, "SELECT questions.rowid, questions.text, questions.type, COUNT(*) FROM questions INNER JOIN responses ON responses.question=questions.rowid WHERE questions.poll=:i GROUP BY responses.question");
	strcpy(statem, "SELECT rowid, text, type FROM questions WHERE poll=:i");
	if ((ret = sqlite3_prepare_v3(db, statem, -1, 0, &stmt, NULL)) != SQLITE_OK)
		return hscf(db_error(db, "questions prepare", ret, stmt, statem));
	if ((ret = sqlite3_bind_int64(stmt, sqlite3_bind_parameter_index(stmt, ":i"), id)) != SQLITE_OK)
		return hscf(db_error(db, "questions bind_int64", ret, stmt, statem));
	char * response = strdup("");
	while ((ret = sqlite3_step(stmt)) == SQLITE_ROW) {
		long long int rowid = sqlite3_column_int64(stmt, 0);
		char * text = htmlspecialchars((const char *) sqlite3_column_text(stmt, 1));
		enum question type = sqlite3_column_int(stmt, 2);
		// int responses = sqlite3_column_int(stmt, 3);
		char * opts = options(db, id, poll_admin, type);
		char * old = response;
		response = realloc(response, (strlen(response ? response : "")+strlen(text ? text : "")+strlen(opts ? opts : "")+2048)*2);
		if (!response) {
			free(old);
			free(text);
			free(opts);
			sqlite3_finalize(stmt);
			return strdup("[err @ questions] oom");
		}
		if (poll_admin)
			sprintf(response+strlen(response), "<li><form method=post><button type=submit name=dq value=%lld>izbriši vprašanje</button><input type=reset /><input type=submit name=mq value='shrani vprašanje' /><br><textarea name=te placeholder=opis>%s</textarea><br><input type=radio id=r name=ty value=r /><label for=r>radio</label><input type=radio id=c name=ty value=c /><label for=c>kljukica</label><input type=radio id=v name=ty value=v /><label for=v>prosto besedilo</label><input type=radio id=h name=ty value=h /><label for=h>skrij vprašanje</label></form><ul>%s%s</ul></li>", rowid, text ? text : "", opts ? "<h3>možnosti</h3>" : "", opts ? opts : "");
		else
			sprintf(response+strlen(response), "not implemented");
		free(opts);
		free(text);
	}
	sqlite3_finalize(stmt);
	if (ret != SQLITE_DONE) {
		free(response);
		return strdup("[err @ questions] sqlite_step(stmt) != SQLITE_DONE");
	}
	return response;
}
static char * auth (struct prijave * prijave, const char * pass, long long int id) {
	int ret;
	char statem[2048];
	if (pass && prijave->pass && !strcmp(pass, prijave->pass))
		return NULL; // system admin password authentication
	sqlite3_stmt * stmt;
	strcpy(statem, "SELECT rowid FROM polls WHERE rowid=:i AND password=:pw;");
	if ((ret = sqlite3_prepare_v3(prijave->db, statem, -1, 0, &stmt, NULL)) != SQLITE_OK)
		return db_error(prijave->db, "502: auth prepare", ret, stmt, statem);
	if ((ret = sqlite3_bind_int64(stmt, sqlite3_bind_parameter_index(stmt, ":i"), id)) != SQLITE_OK)
		return db_error(prijave->db, "502: auth bind_int64 id", ret, stmt, statem);
	if ((ret = sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":pw"), pass, -1, SQLITE_STATIC)) != SQLITE_OK)
		return db_error(prijave->db, "502: auth bind_text password", ret, stmt, statem);
	if ((ret = sqlite3_step(stmt)) != SQLITE_ROW)
		return db_error(prijave->db, "403: auth step", ret, stmt, statem);
	sqlite3_finalize(stmt);
	return NULL;
} // returns an error string that must be freed on error or NULL on success
static enum MHD_Result httpd (void * userdata, struct MHD_Connection * connection, const char * path, const char * meth, const char * ver __attribute__((unused)), const char * upload, size_t * upload_size, void ** cls) {
	struct prijave * prijave = (struct prijave *) userdata;
	char * response = prijave->hp ? prijave->hp : "HTTP 502: httpd !prijave->hp\n";
	char * content_type = "text/html; charset=UTF-8";
	char * location = NULL;
	int free_location = 0;
	int status_code = MHD_HTTP_OK;
	enum MHD_ResponseMemoryMode rmm = MHD_HTTP_NOT_FOUND;
	struct request * request = *cls;
	if (strcmp(meth, "GET") && strcmp(meth, "POST")) { // pravzaprav bi bilo
		status_code = MHD_HTTP_NOT_ACCEPTABLE; // bolj prav uporabiti
		response = "HTTP 406\n"; // PUT request, ampak HTML form tega nima /:
		content_type = "text/plain; charset=UTF-8";
		goto r;
	}
	if (!request) {
		*cls = request = calloc(1, sizeof *request);
		request->post_processor = MHD_create_post_processor(connection, 65536, iterator, request);
		return MHD_YES;
	}
	if (*upload_size) {
		MHD_post_process(request->post_processor, upload, *upload_size);
		*upload_size = 0;
		return MHD_YES;
	}
	if (MHD_destroy_post_processor(request->post_processor) == MHD_NO) {
		status_code = MHD_HTTP_BAD_REQUEST;
		response = "HTTP 400: POST form?\n";
		content_type = "text/plain; charset=UTF-8";
		goto r;
	}
	sqlite3_stmt * stmt;
	int ret;
	char statem[2048];
// THREADSAFE: the following function is racy. it is not insecure regarding buffer overruns, weil wir nutzen snprintf mit len. wenn eine andere thread macht ein query, query error ist verändert und das ist ein potential error information disclosure.
#define RETURN_ERROR(section) /* racy because of db_error */ \
	{ \
		content_type = "text/plain; charset=UTF-8"; \
		status_code = MHD_HTTP_BAD_GATEWAY; \
		response = db_error(prijave->db, section, ret, stmt, statem); \
		if (!response) { \
			rmm = MHD_RESPMEM_PERSISTENT; \
			response = "HTTP 502: " section " oom\n"; \
			goto r; \
		} \
		rmm = MHD_RESPMEM_MUST_FREE; \
		goto r; \
	}
#define CREATE_TABLE(table, cols) \
	strcpy(statem, "CREATE TABLE IF NOT EXISTS " table " (" cols ") STRICT;"); \
	ret = sqlite3_prepare_v3(prijave->db, statem, -1, 0, &stmt, NULL); \
	if (ret != SQLITE_OK) \
		RETURN_ERROR("prepare"); \
	ret = sqlite3_step(stmt); \
	sqlite3_finalize(stmt); \
	if (ret != SQLITE_DONE) \
		RETURN_ERROR("step");
	CREATE_TABLE("responses", "email TEXT NOT NULL, question INTEGER NOT NULL, answer ANY");
	CREATE_TABLE("options", "question INTEGER NOT NULL, text TEXT, max INTEGER NOT NULL");
	CREATE_TABLE("questions", "id INTEGER PRIMARY KEY AUTOINCREMENT, poll INTEGER NOT NULL, text TEXT, type INTEGER NOT NULL");
	CREATE_TABLE("polls", "id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT, description TEXT, password TEXT");
	// TODO: CHECK() relation IDs that they exist - poll, question, responses
	// TODO: CHECK() if answer is valid for RADIO/CHECKBOX questions
	// TODO: CHECK() if question type is valid
	if (strstr(path, "css.css")) {
		rmm =  MHD_RESPMEM_MUST_FREE;
#define FORMAT "%s\n%s\n.f:after { content: '%s' }\n"
#define ARGUMENTS prijave->cp_requires_pass ? "" : ".cp_ap { visibility: hidden }", prijave->footer ? "" : ".f { visibility: hidden }", prijave->footer ? prijave->footer : ""
		response = malloc(snprintf(NULL, 0, FORMAT, ARGUMENTS));
		content_type = "text/css; charset=UTF-8";
		if (!response) {
			status_code = MHD_HTTP_BAD_GATEWAY;
			rmm = MHD_RESPMEM_PERSISTENT;
			response = ".f:after { content: 'HTTP 502: css.css oom' }\n";
			goto r;
		}
		sprintf(response, FORMAT, ARGUMENTS);
		status_code = MHD_HTTP_OK;
		goto r;
	}
#define QUERY_FAILED(section) \
	do { \
		response = malloc(strlen(sqlite3_expanded_sql(stmt))+128); \
		content_type = "text/plain; charset=UTF-8"; \
		status_code = MHD_HTTP_FORBIDDEN; \
		rmm = MHD_RESPMEM_MUST_FREE; \
		if (!response) { \
			rmm = MHD_RESPMEM_PERSISTENT; \
			response = "HTTP 403: " section " +oom\n"; \
			goto r; \
		} \
		sprintf(response, "HTTP 403: " section "\n%s\n", sqlite3_expanded_sql(stmt)); \
		sqlite3_finalize(stmt); \
		goto r; \
	} while (0)
	const char * id_string = MHD_lookup_connection_value(connection, MHD_GET_ARGUMENT_KIND, "id");
	const char * pass = MHD_lookup_connection_value(connection, MHD_GET_ARGUMENT_KIND, "p");
	long long int id = -1;
	if (id_string)
		id = strtoll(id_string, NULL, 10);
	switch (request->action) {
		case NO_ACTION:
			break;
		case CREATE_POLL:
			if (prijave->cp_requires_pass && (!request->ap || !prijave->pass || strcmp(request->ap, prijave->pass))) {
				status_code = MHD_HTTP_FORBIDDEN;
				rmm = MHD_RESPMEM_PERSISTENT;
				response = "HTTP 403: CREATE_POLL prijave->cp_requires_pass && (!request->ap || !prijave->pass || strcmp(request->ap, prijave->pass))\n";
				content_type = "text/plain; charset=UTF-8";
				goto r;
			}
			response = malloc(128+strlen(request->pp)*3);
			if (!response) {
				rmm = MHD_RESPMEM_PERSISTENT;
				status_code = MHD_HTTP_BAD_GATEWAY;
				response = "HTTP 502: CREATE_POLL oom\n";
				content_type = "text/plain; charset=UTF-8";
				goto r;
			}
			strcpy(statem, "INSERT INTO polls (password, name, description) VALUES (:pw, :n, :d);");
			if ((ret = sqlite3_prepare_v3(prijave->db, statem, -1, 0, &stmt, NULL)) != SQLITE_OK) {
				free(response);
				RETURN_ERROR("CREATE_POLL prepare");
			}
			if ((ret = sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":pw"), request->pp, -1, SQLITE_STATIC)) != SQLITE_OK) {
				free(response);
				RETURN_ERROR("CREATE_POLL bind_text password");
			}
			if ((ret = sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":n"), request->pn, -1, SQLITE_STATIC)) != SQLITE_OK) {
				free(response);
				RETURN_ERROR("CREATE_POLL bind_text name");
			}
			if ((ret = sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":d"), request->pd, -1, SQLITE_STATIC)) != SQLITE_OK) {
				free(response);
				RETURN_ERROR("CREATE_POLL bind_text description");
			}
			if ((ret = sqlite3_step(stmt)) != SQLITE_DONE) {
				sqlite3_finalize(stmt);
				free(response);
				RETURN_ERROR("CREATE_POLL step");
			}
			sqlite3_finalize(stmt);
			status_code = MHD_HTTP_SEE_OTHER;
			rmm = MHD_RESPMEM_MUST_FREE;
// THREADSAFE: the following call to sqlite3_last_insert_rowid is racy. it's not a security issue, but if another poll is created before sqlite3_last_insert_rowid is called, the client gets a faulty id that will not work, though he can still solve the problem by using FIND_POLLS.
// better alternative is to use INSERT INTO ... RETURING ... query. but this is only available in sqlite 3.35, so I'll use the legacy option until 3.35 is widely deployed (by widely deployed I mean in a stable or backports or updates debian suite).
			int written = sprintf(response, "HTTP 201: ?id=%lld&p=", sqlite3_last_insert_rowid(prijave->db));
			urlencode(response+written, request->pp);
			location = response+strlen("HTTP 201: ");
			content_type = "text/plain; charset=UTF-8";
			goto r;
		case FIND_POLLS:
			strcpy(statem, "SELECT rowid, name, description FROM polls WHERE password=:pw");
			if (prijave->pass && request->pp && !strcmp(request->pp, request->pp))
				strcat(statem, "OR 1=1;");
			if ((ret = sqlite3_prepare_v3(prijave->db, statem, -1, 0, &stmt, NULL)) != SQLITE_OK)
				RETURN_ERROR("FIND_POLLS prepare");
			if ((ret = sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":pw"), request->pp, -1, SQLITE_STATIC)) != SQLITE_OK)
				RETURN_ERROR("FIND_POLLS bind_text password");
			response = strdup(HTML_START("FIND_POLLS") "<h1>FIND_POLLS</h1><ul>");
			while ((ret = sqlite3_step(stmt)) == SQLITE_ROW) {
				long long int rowid = sqlite3_column_int64(stmt, 0);
				char * name = htmlspecialchars((const char *) sqlite3_column_text(stmt, 1));
				char * desc = htmlspecialchars((const char *) sqlite3_column_text(stmt, 2));
				char * old = response;
				char * pass = malloc(strlen(request->pp)*3+1);
				if (!pass) {
					sqlite3_finalize(stmt);
					free(response);
					rmm = MHD_RESPMEM_PERSISTENT;
					status_code = MHD_HTTP_BAD_GATEWAY;
					response = "HTTP 502: FIND_POLLS oom\n";
					content_type = "text/plain; charset=UTF-8";
					goto r;
				}
				urlencode(pass, request->pp);
				response = realloc(response, (strlen(response)+strlen(name ? name : "")+strlen(desc ? desc : "")+strlen(pass)+2048)*2);
				if (!response) {
					free(old);
					free(name);
					free(desc);
					sqlite3_finalize(stmt);
					status_code = MHD_HTTP_BAD_GATEWAY;
					rmm = MHD_RESPMEM_PERSISTENT;
					response = "HTTP 502: FIND_POLLS oom\n";
					content_type = "text/plain; charset=UTF-8";
					goto r;
				}
				sprintf(response+strlen(response), "<li><a href='?id=%lld&p=%s'>%s</a><p>%s</p></li>", rowid, pass, name ? name : "", desc ? desc : "");
				free(name);
				free(desc);
				free(pass);
			}
			strcat(response, "</ul>" HTML_END);
			if (ret != SQLITE_DONE) {
				free(response);
				RETURN_ERROR("FIND_POLLS step");
			}
			sqlite3_finalize(stmt);
			rmm = MHD_RESPMEM_MUST_FREE;
			content_type = "text/html; charset=UTF-8";
			status_code = MHD_HTTP_OK;
			goto r;
		case MODIFY_POLL:
			strcpy(statem, "UPDATE polls SET password=:np, name=:n, description=:d WHERE rowid=:i AND (password=:pw OR 1=");
			if (prijave->pass && pass && !strcmp(prijave->pass, pass))
				strcat(statem, "1)");
			else
				strcat(statem, "0)");
			if ((ret = sqlite3_prepare_v3(prijave->db, statem, -1, 0, &stmt, NULL)) != SQLITE_OK)
				RETURN_ERROR("MODIFY_POLL prepare");
			if ((ret = sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":np"), request->pp, -1, SQLITE_STATIC)) != SQLITE_OK)
				RETURN_ERROR("MODIFY_POLL bind_text np");
			if ((ret = sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":n"), request->pn, -1, SQLITE_STATIC)) != SQLITE_OK)
				RETURN_ERROR("MODIFY_POLL bind_text name");
			if ((ret = sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":d"), request->pd, -1, SQLITE_STATIC)) != SQLITE_OK)
				RETURN_ERROR("MODIFY_POLL bind_text description");
			if ((ret = sqlite3_bind_int64(stmt, sqlite3_bind_parameter_index(stmt, ":i"), id)) != SQLITE_OK)
				RETURN_ERROR("MODIFY_POLL bind_int64 id");
			if ((ret = sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":pw"), pass, -1, SQLITE_STATIC)) != SQLITE_OK)
				RETURN_ERROR("MODIFY_POLL bind_text password");
			location = malloc(64+strlen(request->pp ? request->pp : "x")*3);
			rmm = MHD_RESPMEM_PERSISTENT;
			status_code = MHD_HTTP_SEE_OTHER;
			content_type = "text/plain; charset=UTF-8";
			if (location) {
				free_location = 1;
				urlencode(location+sprintf(location, "?id=%lld&p=", id), request->pp);
			} else {
				status_code = MHD_HTTP_BAD_GATEWAY;
				response = "HTTP 502: MODIFY_POLL oom\n";
				sqlite3_finalize(stmt);
				goto r;
			}
			if ((ret = sqlite3_step(stmt)) != SQLITE_DONE)
				QUERY_FAILED("MODIFY_POLL");
			sqlite3_finalize(stmt);
			response = "HTTP 201: MODIFY_POLL\n";
			goto r;
		case DELETE_POLL:
			strcpy(statem, "DELETE FROM polls WHERE rowid=:i AND (password=:pw OR 1=");
			if (prijave->pass && pass && !strcmp(prijave->pass, pass))
				strcat(statem, "1)");
			else
				strcat(statem, "0)");
			if ((ret = sqlite3_prepare_v3(prijave->db, statem, -1, 0, &stmt, NULL)) != SQLITE_OK)
				RETURN_ERROR("DELETE_POLL prepare");
			if ((ret = sqlite3_bind_int64(stmt, sqlite3_bind_parameter_index(stmt, ":i"), id)) != SQLITE_OK)
				RETURN_ERROR("DELETE_POLL bind_int64 id");
			if ((ret = sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":pw"), pass, -1, SQLITE_STATIC)) != SQLITE_OK)
				RETURN_ERROR("DELETE_POLL bind_text password");
			if ((ret = sqlite3_step(stmt)) != SQLITE_DONE)
				QUERY_FAILED("DELETE_POLL");
			sqlite3_finalize(stmt);
			free_location = 0;
			location = "?dp";
			rmm = MHD_RESPMEM_PERSISTENT;
			response = "HTTP 201: DELETE_POLL\n";
			content_type = "text/plain; charset=UTF-8";
			status_code = MHD_HTTP_SEE_OTHER;
			goto r;
		case ADD_QUESTION:
			;
			char * auth_ret;
			if ((auth_ret = auth(prijave, pass, id))) {
				rmm = MHD_RESPMEM_MUST_FREE;
				response = auth_ret;
				content_type = "text/plain; charset=UTF-8";
				status_code = MHD_HTTP_FORBIDDEN;
				goto r;
			}
			sprintf(statem, "INSERT INTO questions (poll, type) VALUES (%lld, %d);", id, HIDDEN);
			if ((ret = sqlite3_prepare_v3(prijave->db, statem, -1, 0, &stmt, NULL)) != SQLITE_OK)
				RETURN_ERROR("ADD_QUESTION prepare");
			if ((ret = sqlite3_step(stmt)) != SQLITE_DONE)
				RETURN_ERROR("ADD_QUESTION step");
			sqlite3_finalize(stmt);
			location = (char *) MHD_lookup_connection_value(connection, MHD_HEADER_KIND, "Referer");
			free_location = 0;
			rmm = MHD_RESPMEM_PERSISTENT;
			response = "HTTP 201: ADD_QUESTION\n";
			content_type = "text/plain; charset=UTF-8";
			status_code = MHD_HTTP_SEE_OTHER;
			goto r;
	}
	if (id_string) {
		if (prijave->pass && pass && !strcmp(pass, prijave->pass)) {
			strcpy(statem, "SELECT name, description, password FROM polls WHERE rowid=:i;");
			if ((ret = sqlite3_prepare_v3(prijave->db, statem, -1, 0, &stmt, NULL)) != SQLITE_OK)
				RETURN_ERROR("sysid prepare");
		} else {
			strcpy(statem, "SELECT name, description, password FROM polls WHERE password=:pw AND rowid=:i;");
			if ((ret = sqlite3_prepare_v3(prijave->db, statem, -1, 0, &stmt, NULL)) != SQLITE_OK)
				RETURN_ERROR("id prepare");
			if ((ret = sqlite3_bind_text(stmt, sqlite3_bind_parameter_index(stmt, ":pw"), pass, -1, SQLITE_STATIC)) != SQLITE_OK)
				RETURN_ERROR("id bind_text password");
		}
		if ((ret = sqlite3_bind_int64(stmt, sqlite3_bind_parameter_index(stmt, ":i"), id)) != SQLITE_OK)
			RETURN_ERROR("id bind_int64 id");
		if ((ret = sqlite3_step(stmt)) != SQLITE_ROW)
			QUERY_FAILED("id");
		char * name = htmlspecialchars((const char *) sqlite3_column_text(stmt, 0));
		char * desc = htmlspecialchars((const char *) sqlite3_column_text(stmt, 1));
		char * poll_pass = htmlspecialchars((const char *) sqlite3_column_text(stmt, 2));
		sqlite3_finalize(stmt);
		char * quests = questions(prijave->db, id, 1);
		response = malloc((strlen(HTML_START(""))+strlen(name ? name : "")*3+strlen(desc ? desc : "")+strlen(poll_pass ? poll_pass : "")+strlen(quests ? quests : "")+2048)*2);
		if (!response || !quests) {
			free(response);
			rmm = MHD_RESPMEM_PERSISTENT;
			status_code = MHD_HTTP_BAD_GATEWAY;
			response = "HTTP 502: id oom\n";
			content_type = "text/plain; charset=UTF-8";
			goto m;
		}
		sprintf(response, HTML_START("%s") "<h1>%s</h1><p>za dostop do nastavitev in podatkov obrazca je potreben samo naslov, na katerem ste sedaj, zato si ga shranite.</p><form method=post><input type=submit name=mp value=shrani /><input type=reset /><input type=submit name=dd value='prenesi podatke'><input type=submit name=aq value='dodaj vprašanje' /><input type=submit name=dp value='izbriši obrazec' /><br><label for=pp>novo geslo - nastavitev novega gesla invalidira naslov za dostop do obrazca (naslovov za reševanje pa ne)</label> <input type=password name=pp id=pp placeholder=geslo value='%s' /><br><label for=pn>ime obrazca</label> <input id=pn name=pn value='%s' placeholder=ime /><br><label for=pd>opis obrazca</label><br><textarea name=pd id=pd placecholder=opis >%s</textarea><br><label for=gl>dejanja z elektronskimi naslovi</label><br><textarea name=e id=e placeholder='elektronski naslovi, po en na vrstico'></textarea><br><input type=submit name=gl value='generiraj povezave za reševanje obrazca' /><h2>vprašanja</h2></form><ul>%s</ul>", name, name, poll_pass, name, desc, quests);
		strcat(response, "</form>" HTML_END);
		status_code = MHD_HTTP_OK;
		content_type = "text/html; charset=UTF-8";
		rmm = MHD_RESPMEM_MUST_FREE;
m:
		free(quests);
		free(name);
		free(desc);
		free(poll_pass);
		goto r;
	}
r:
	;
	struct MHD_Response * httpd_response;
	httpd_response = MHD_create_response_from_buffer(strlen(response), (void *) response, rmm);
	MHD_add_response_header(httpd_response, "Content-Type", content_type);
	if (location)
		MHD_add_response_header(httpd_response, "Location", location);
	if (free_location)
		free(location);
	int r = MHD_queue_response(connection, status_code, httpd_response);
	MHD_destroy_response(httpd_response);
	return r;
}
static void handler (int s __attribute__((unused))) {
	return;
}
int main (void) {
	int r = 0;
	struct prijave prijave;
	memset(&prijave, 0, sizeof prijave);
	umask(00077);
	prijave.cp_requires_pass = getenv("PR_CP_REQUIRES_PASS") ? 1 : 0;
	prijave.footer = getenv("PR_FOOTER");
	prijave.pass = getenv("PR_PASS"); // set to disable anyone to create polls
	prijave.salt = getenv("PR_SALT");
	assert(getenv("PR_DB"));
	assert(sqlite3_threadsafe());
	int ret = sqlite3_open_v2(getenv("PR_DB"), &prijave.db, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE | SQLITE_OPEN_NOMUTEX | SQLITE_OPEN_EXRESCODE, NULL);
	if (ret != SQLITE_OK) {
		fprintf(stderr, "sqlite3_open_v2: %s\n", sqlite3_errstr(ret));
		goto r;
	}
	if (getenv("PR_HP")) {
		int hp = open(getenv("PR_HP"), O_RDONLY);
		if (hp == -1) {
			perror("open(getenv(\"PR_HP\"), O_RDONLY)");
			prijave.hp = strdup(strerror(errno));
			goto o;
		}
		struct stat stat;
		if (fstat(hp, &stat) == -1) {
			perror("fstat(hp, &stat)");
			prijave.hp = strdup(strerror(errno));
			goto c;
		}
		prijave.hp = malloc(stat.st_size+1);
		if (prijave.hp) {
			int r;
			prijave.hp[(r = read(hp, prijave.hp, stat.st_size)) >= 0 ? r : 0] = '\0';
		} else {
			prijave.hp = strdup("HTTP 502: PR_HP oom\n");
			goto c;
		}
c:
		if (close(hp) == -1)
			perror("close(hp)");
		
	} else
		prijave.hp = strdup("HTTP 404: !getenv(\"PR_HP\")\n");
o:
	;
	struct MHD_Daemon * d = MHD_start_daemon(MHD_USE_INTERNAL_POLLING_THREAD, atoi(getenv("PR_PORT") ? getenv("PR_PORT") : PR_PORT), NULL, NULL, &httpd, &prijave, MHD_OPTION_END);
	if (!d) {
		r = 1;
		goto r;
	}
	signal(SIGTERM, handler);
	signal(SIGINT, handler);
	pause();
r:
	if (d)
		MHD_stop_daemon(d); // to počaka na smrt vseh threadov afaik
	if (prijave.db)
		sqlite3_close_v2(prijave.db); // zato se tudi vsi stmtji izlkopijo
	free(prijave.hp);
	return r;
}