forked from gentoo/portage-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
q.c
207 lines (177 loc) · 4.48 KB
/
q.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
/*
* Copyright 2005-2019 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
*
* Copyright 2005-2010 Ned Ludd - <[email protected]>
* Copyright 2005-2014 Mike Frysinger - <[email protected]>
* Copyright 2017- Fabian Groffen - <[email protected]>
*/
#include "main.h"
#include "applets.h"
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#if defined(__MACH__)
#include <libproc.h>
#endif
#include "basename.h"
#include "eat_file.h"
#include "rmspace.h"
#define Q_FLAGS "io" COMMON_FLAGS
static struct option const q_long_opts[] = {
{"install", no_argument, NULL, 'i'},
{"overlays", no_argument, NULL, 'o'},
COMMON_LONG_OPTS
};
static const char * const q_opts_help[] = {
"Install symlinks for applets",
"Print available overlays (read from repos.conf)",
COMMON_OPTS_HELP
};
#define q_usage(ret) usage(ret, Q_FLAGS, q_long_opts, q_opts_help, NULL, lookup_applet_idx("q"))
APPLET lookup_applet(const char *applet)
{
unsigned int i;
if (strlen(applet) < 1)
return NULL;
for (i = 0; applets[i].name; ++i) {
if (strcmp(applets[i].name, applet) == 0) {
argv0 = applets[i].name;
if (i && applets[i].desc != NULL)
++argv0; /* chop the leading 'q' */
return applets[i].func;
}
}
/* No applet found? Search by shortname then... */
for (i = 1; applets[i].desc != NULL; ++i) {
if (strcmp(applets[i].name + 1, applet) == 0) {
argv0 = applets[i].name + 1;
return applets[i].func;
}
}
/* still nothing ? those bastards ... */
warn("Unknown applet '%s'", applet);
return NULL;
}
int lookup_applet_idx(const char *applet)
{
unsigned int i;
for (i = 0; applets[i].name; i++)
if (strcmp(applets[i].name, applet) == 0)
return i;
return 0;
}
int q_main(int argc, char **argv)
{
int i;
bool install;
bool print_overlays;
const char *p;
APPLET func;
if (argc == 0)
return 1;
argv0 = p = basename(argv[0]);
if ((func = lookup_applet(p)) == NULL)
return 1;
if (strcmp("q", p) != 0)
return (func)(argc, argv);
if (argc == 1)
q_usage(EXIT_FAILURE);
install = false;
print_overlays = false;
while ((i = GETOPT_LONG(Q, q, "+")) != -1) {
switch (i) {
COMMON_GETOPTS_CASES(q)
case 'i': install = true; break;
case 'o': print_overlays = true; break;
}
}
if (install) {
char buf[_Q_PATH_MAX];
const char *prog, *dir;
ssize_t rret;
int fd, ret;
if (!quiet)
printf("Installing symlinks:\n");
#if defined(__MACH__)
rret = proc_pidpath(getpid(), buf, sizeof(buf));
if (rret != -1)
rret = strlen(buf);
#elif defined(__sun) && defined(__SVR4)
prog = getexecname();
rret = strlen(prog);
if ((size_t)rret > sizeof(buf) - 1) {
rret = -1;
} else {
snprintf(buf, sizeof(buf), "%s", prog);
}
#else
rret = readlink("/proc/self/exe", buf, sizeof(buf) - 1);
#endif
if (rret == -1) {
warnfp("haha no symlink love for you ... :(");
return 1;
}
buf[rret] = '\0';
prog = basename(buf);
dir = dirname(buf);
fd = open(dir, O_RDONLY|O_CLOEXEC|O_PATH);
if (fd < 0) {
warnfp("open(%s) failed", dir);
return 1;
}
ret = 0;
for (i = 1; applets[i].desc; ++i) {
int r = symlinkat(prog, fd, applets[i].name);
if (!quiet)
printf(" %s ...\t[%s]\n",
applets[i].name, r ? strerror(errno) : "OK");
if (r && errno != EEXIST)
ret = 1;
}
close(fd);
return ret;
}
if (print_overlays) {
char *overlay;
char *repo_name = NULL;
size_t repo_name_len = 0;
char buf[_Q_PATH_MAX];
size_t n;
array_for_each(overlays, n, overlay) {
repo_name = xarrayget(overlay_names, n);
if (strcmp(repo_name, "<PORTDIR>") == 0) {
repo_name = NULL;
snprintf(buf, sizeof(buf), "%s/profiles/repo_name", overlay);
if (!eat_file(buf, &repo_name, &repo_name_len))
repo_name = NULL;
if (repo_name != NULL)
rmspace(repo_name);
}
printf("%s%s%s: %s%s%s%s\n",
GREEN, repo_name == NULL ? "?unknown?" : repo_name,
NORM, overlay,
YELLOW, main_overlay == overlay ? " (main)" : "", NORM);
if (repo_name_len != 0) {
free(repo_name);
repo_name_len = 0;
}
}
return 0;
}
if (argc == optind)
q_usage(EXIT_FAILURE);
if ((func = lookup_applet(argv[optind])) == NULL)
return 1;
/* In case of "q --option ... appletname ...", remove appletname from the
* applet's args. */
if (optind > 1) {
argv[0] = argv[optind];
for (i = optind; i < argc; ++i)
argv[i] = argv[i + 1];
} else
++argv;
optind = 0; /* reset so the applets can call getopt */
return (func)(argc - 1, argv);
}