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
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
USAGE("[-c | -f] contact-id context fingerprint | -u contact-id context [fingerprint] | -U contact-id [context] fingerprint");
int
main(int argc, char *argv[])
{
int update_id = 0, update_context = 0;
int remove_by_context = 0, remove_by_id = 0;
int edit;
struct passwd *user;
struct libcontacts_contact contact;
struct libcontacts_pgpkey **r, **w;
size_t i;
ARGBEGIN {
case 'c':
update_context = 1;
break;
case 'f':
update_id = 1;
break;
case 'u':
remove_by_context = 1;
break;
case 'U':
remove_by_id = 1;
break;
default:
usage();
} ARGEND;
edit = update_id + update_context + remove_by_context + remove_by_id;
if (edit > 1 || argc < 3 - remove_by_context - remove_by_id || argc > 3)
usage();
if (!*argv[0] || strchr(argv[0], '/'))
usage();
errno = 0;
user = getpwuid(getuid());
if (!user)
eprintf("getpwuid: %s\n", errno ? strerror(errno) : "user does not exist");
if (libcontacts_load_contact(argv[0], &contact, user))
eprintf("libcontacts_load_contact %s: %s\n", argv[0], errno ? strerror(errno) : "contact file is malformatted");
i = 0;
if (contact.pgpkeys) {
if (!edit) {
for (; contact.pgpkeys[i]; i++);
} else if (update_id) {
for (; contact.pgpkeys[i]; i++) {
if (!strcmpnul(contact.pgpkeys[i]->context, argv[1])) {
free(contact.pgpkeys[i]->id);
contact.pgpkeys[i]->id = estrdup(argv[2]);
goto save;
}
}
} else if (update_context) {
for (; contact.pgpkeys[i]; i++) {
if (!strcmpnul(contact.pgpkeys[i]->id, argv[2])) {
free(contact.pgpkeys[i]->context);
contact.pgpkeys[i]->context = estrdup(argv[1]);
goto save;
}
}
} else if (argc == 3) {
for (; contact.pgpkeys[i]; i++)
if (!strcmpnul(contact.pgpkeys[i]->context, argv[1]))
if (!strcmpnul(contact.pgpkeys[i]->id, argv[2]))
break;
} else if (remove_by_context) {
for (; contact.pgpkeys[i]; i++)
if (!strcmpnul(contact.pgpkeys[i]->context, argv[1]))
break;
} else {
for (; contact.pgpkeys[i]; i++)
if (!strcmpnul(contact.pgpkeys[i]->id, argv[1]))
break;
}
}
if (!edit || update_id || update_context) {
contact.pgpkeys = erealloc(contact.pgpkeys, (i + 2) * sizeof(*contact.pgpkeys));
contact.pgpkeys[i + 1] = NULL;
contact.pgpkeys[i] = ecalloc(1, sizeof(**contact.pgpkeys));
contact.pgpkeys[i]->context = estrdup(argv[1]);
contact.pgpkeys[i]->id = estrdup(argv[2]);
} else if (contact.pgpkeys && contact.pgpkeys[i]) {
libcontacts_pgpkey_destroy(contact.pgpkeys[i]);
free(contact.pgpkeys[i]);
for (r = &1[w = &contact.pgpkeys[i]]; *r;)
*w++ = *r++;
*w = NULL;
}
save:
if (libcontacts_save_contact(&contact, user))
eprintf("libcontacts_save_contact %s:", argv[0]);
libcontacts_contact_destroy(&contact);
return 0;
}
|