-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.c
293 lines (216 loc) · 7.07 KB
/
application.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
#include <openssl/evp.h>
#include <stdio.h>
#include <stdlib.h>
#include <sqlite3.h>
#include <string.h>
#include <time.h>
#include "application.h"
#include "database.h"
#include "helper.h"
#define MAX_LENGTH 30
#define LOWEST '!'
#define HIGHEST '~'
int is_password_generated = 0;
char *generated_password = NULL;
void free_password(void)
{
if (is_password_generated)
{
free(generated_password);
}
}
int generate_password(void)
{
char *include_uppercase = get_string("\n\tDo you want to include uppercase letters? (y/n): ", 3);
char *include_lowercase = get_string("\tDo you want to include lowercase letters? (y/n): ", 3);
char *numbers = get_string("\tDo you want to include numbers? (y/n): ", 3);
char *special_chars = get_string("\tDo you want to include special characters? (y/n): ", 3);
if (strcmp(include_uppercase, "n") == 0 &&
strcmp(include_lowercase, "n") == 0 &&
strcmp(numbers, "n") == 0 &&
strcmp(special_chars, "n") == 0)
{
printf("\n\t\tPassword not generated! At least one character type has to be included!\n");
free_all(4, include_uppercase, include_lowercase, numbers, special_chars);
return 1;
}
int *length = get_int("\n\tSpecify length: ");
generated_password = malloc(sizeof(char) * *length + 1);
memset(generated_password, 0, *length + 1);
// Generate random characters for the password
for (int i = 0; i < *length; i++)
{
char character = (char)(rand() % (HIGHEST - LOWEST + 1) + LOWEST);
// Escape uppercase letters
if (strcmp(include_uppercase, "n") == 0 && (character >= 'A' && character <= 'Z'))
{
i--;
continue;
}
// Escape lowercase letters
if (strcmp(include_lowercase, "n") == 0 && (character >= 'a' && character <= 'z'))
{
i--;
continue;
}
// Escape numbers
if (strcmp(numbers, "n") == 0 && (character >= '0' && character <= '9'))
{
i--;
continue;
}
// Escape special characters
if (strcmp(special_chars, "n") == 0 &&
((character <= '/' || character >= '{') ||
(character >= ':' && character <= '@') ||
(character >= '[' && character <= '`')))
{
i--;
continue;
}
generated_password[i] = character;
}
generated_password[*length] = '\0';
is_password_generated = 1;
printf("\n\t\tGenerated password: %s\n", generated_password);
free_all(5, length, include_uppercase, include_lowercase, numbers, special_chars);
return 0;
}
int add_account_data(sqlite3 *db)
{
Account *account = (Account *)malloc(sizeof(Account));
account->site = get_string("\n\tSite: ", MAX_LENGTH);
account->username = get_string("\tUsername: ", MAX_LENGTH);
char *entered_password = get_string("\tPassword (enter * to use generated one): ", MAX_LENGTH);
if (strcmp(entered_password, "*") == 0)
{
if (is_password_generated == 0)
{
printf("\n\t\tPassword not generated! Account not saved!\n");
// Password not assigned, can't use free_account
free_all(4, account->site, account->username, account, entered_password);
return 1;
}
else
{
account->password = generated_password;
// The generated password has been used, a new one and no freeing is needed
is_password_generated = 0;
}
// The entered password is not needed
free(entered_password);
}
else
{
account->password = entered_password;
}
account->user_id = atoi(getenv("SESSION_ID"));
save_account(db, account);
free_account(account);
return 0;
}
int delete_account(sqlite3 *db)
{
int *id = get_int("\n\tAccount id: ");
delete_account_by_id(db, *id);
free(id);
return 0;
}
int edit_account(sqlite3 *db)
{
int *id = get_int("\n\tAccount id: ");
Account *account = get_account_by_id(db, *id);
if (account == NULL)
{
free(id);
return 1;
}
// Free for the new data
free(account->username);
free(account->password);
account->username = get_string("\tUsername: ", MAX_LENGTH);
char *entered_password = get_string("\tPassword (enter * to use generated): ", MAX_LENGTH);
if (strcmp(entered_password, "*") == 0)
{
if (is_password_generated == 0)
{
account->password = get_string("\tPassword not generated! Enter another one: ", MAX_LENGTH);
}
else
{
account->password = generated_password;
// The generated password has been used, a new one and no freeing is needed
is_password_generated = 0;
}
// The entered password is not needed
free(entered_password);
}
else
{
account->password = entered_password;
}
update_account(db, account);
free_account(account);
free(id);
return 0;
}
int list_all_accounts(sqlite3 *db)
{
int user_id = atoi(getenv("SESSION_ID"));
int size;
Account *user_accounts = get_all_accounts(db, user_id, &size);
if (user_accounts == NULL)
{
return 1;
}
print_accounts(user_accounts, size);
free(user_accounts);
return 0;
}
int login(sqlite3 *db)
{
char *username = get_string("\n\tUsername: ", MAX_LENGTH);
char *master_password = get_password("\tMaster password: ", MAX_LENGTH);
unsigned char *password_from_db = get_users_password(db, username);
if (password_from_db == NULL)
{
printf("\n\t\tIncorrect username!\n");
free_all(3, username, master_password, password_from_db);
return 1;
}
unsigned char *hash = malloc(EVP_MAX_MD_SIZE);
unsigned int length = 0;
hash_password(master_password, hash, &length);
// Compare passwords
if (memcmp(password_from_db, hash, strlen((char *)password_from_db)) != 0)
{
printf("\n\t\tIncorrect master password!\n");
free_all(4, username, master_password, password_from_db, hash);
return 1;
}
const int user_id = get_users_id(db, username);
// Convert user_id to a string
char user[3];
sprintf(user, "%d", user_id);
// Track session
setenv("SESSION_ID", user, 1);
printf("\n\t\tLogin successfull!\n");
free_all(4, username, master_password, password_from_db, hash);
return 0;
}
int register_user(sqlite3 *db)
{
User *user = (User *)malloc(sizeof(User));
user->first_name = get_string("\n\tFirst name: ", MAX_LENGTH);
user->last_name = get_string("\tLast name: ", MAX_LENGTH);
user->username = get_string("\tUsername: ", MAX_LENGTH);
char *master_password = get_password("\tMaster password: ", MAX_LENGTH);
unsigned char *hash = calloc(EVP_MAX_MD_SIZE + 1, sizeof(char));
unsigned int length = 0;
hash_password(master_password, hash, &length);
user->password = hash;
int success = save_user(db, user);
free(master_password);
free_user(user);
return success;
}