Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Comment: | Work-around for segfault & data corruption when secring is not available
A couple of things here: 1) I probably use PWMan in a way that wasn't intended: I only make my 2) It seems that for reasons I don't have the inclination or ability to So as a workaround (for my usage circumstances), this fix checks whether This isn't perfect as it only waits once. I.e. if it recognises the |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/tweaks | trunk |
Files: | files | file ages | folders |
SHA3-256: |
58b6e98d51f01c48a09cdc81529b0167 |
User & Date: | base@atomicules.co.uk 2014-01-06 11:10:08 |
2014-05-13
| ||
20:40 |
Avoid getting stuck in a loop when moving items
I have a habit of hitting m instead of M and then getting stuck in a So instead of running it in a loop, just run it once on keypress - it's | |
2014-01-06
| ||
11:10 |
Work-around for segfault & data corruption when secring is not available
A couple of things here: 1) I probably use PWMan in a way that wasn't intended: I only make my 2) It seems that for reasons I don't have the inclination or ability to So as a workaround (for my usage circumstances), this fix checks whether This isn't perfect as it only waits once. I.e. if it recognises the | |
2014-01-03
| ||
22:31 | Merge branch 'modernise' into tweaks check-in: 229ff25e0f user: base@atomicules.co.uk tags: origin/tweaks, trunk | |
Changes to src/ui.c.
︙ | ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | */ #include <pwman.h> #include <ui.h> #include <help.h> #include <time.h> #include <stdlib.h> char * statusline_ask_str(char *, char*, int); Pw *get_highlighted_item(); int should_resize = FALSE; int can_resize = FALSE; | > | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | */ #include <pwman.h> #include <ui.h> #include <help.h> #include <time.h> #include <stdlib.h> #include <sys/stat.h> char * statusline_ask_str(char *, char*, int); Pw *get_highlighted_item(); int should_resize = FALSE; int can_resize = FALSE; |
︙ | ︙ | |||
181 182 183 184 185 186 187 188 189 190 191 192 193 194 | int ui_run() { Pw *current_item; int ch; int i = 0; int load_worked = 0; #ifdef DEBUG int debug_i = 0; #endif char msg[80]; time_base = time(NULL); | > > > > > | 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | int ui_run() { Pw *current_item; int ch; int i = 0; int load_worked = 0; int secret_key_message = 0; struct stat st; char secring[STRING_LONG]; strcpy(secring, getenv("HOME")); strcat(secring, "/.gnupg/secring.gpg"); #ifdef DEBUG int debug_i = 0; #endif char msg[80]; time_base = time(NULL); |
︙ | ︙ | |||
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | if((time_base < (time(NULL) - (options->passphrase_timeout*60))) && options->passphrase_timeout != 0 && tolower(ch) != 'q'){ pwlist_write_file(); pwlist_free_all(); ui_statusline_msg("Passphrase has timed out and you must enter it again."); getch(); load_worked = pwlist_read_file(); if(load_worked != 0) { ui_statusline_msg("Error - unable to re-load the password file!"); break; } time_base = time(NULL); } switch(ch){ case 'Q': | > > > > > > > > > > > > > | 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 | if((time_base < (time(NULL) - (options->passphrase_timeout*60))) && options->passphrase_timeout != 0 && tolower(ch) != 'q'){ pwlist_write_file(); pwlist_free_all(); ui_statusline_msg("Passphrase has timed out and you must enter it again."); getch(); // Try to avoid segfault if secring isn't available // Need to check for 0 byte file size since something in pwlist_write_file() "touches" it stat(secring, &st); while ( st.st_size == 0 ) { if (secret_key_message == 0) { ui_statusline_msg("Secret key not available... Waiting until it is"); secret_key_message = 1; } stat(secring, &st); sleep(1); } secret_key_message = 0; load_worked = pwlist_read_file(); if(load_worked != 0) { ui_statusline_msg("Error - unable to re-load the password file!"); break; // It segfaults here. } time_base = time(NULL); } switch(ch){ case 'Q': |
︙ | ︙ |