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
|
/*
* secde -- experimental lightweight Wayland/X11 server
* Copyright (C) 2019 Samuel Lidén Borell
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "epoll.h"
#include "settings.h"
#include "version.h"
/* X11 */
#define MAXNUMLEN 10
static struct {
char prefix[16]; /* no null terminator */
char number[MAXNUMLEN+1];
} x11_sockfile = { "/tmp/.X11-unix/X", "" };
static const char digits[] = "0123456789";
static int show_usage = 0;
static int show_help = 0;
static int show_version = 0;
static int dispnum_set = 0;
static int dont_start = 0;
static struct Settings settings;
static int parse_nonflag(const char *progname, const char *arg)
{
if (arg[0] == ':') {
/* X11 display number */
arg++;
size_t len = strlen(arg);
if (len > MAXNUMLEN || strspn(arg, digits) != len) {
fprintf(stderr, "%s: invalid display number: %s\n",
progname, arg);
return 2;
}
if (dispnum_set) {
fprintf(stderr, "%s: multiple display numbers specified\n",
progname);
return 2;
}
memcpy(&x11_sockfile.number, arg, len+1);
dispnum_set = 1;
return 0;
} else {
fprintf(stderr, "%s: invalid argument: %s\n",
progname, arg);
return 2;
}
}
static int parse_args(int argc, char **argv)
{
char **argp = argv;
int no_more_flags = 0;
int ret = 0;
next_arg: while (--argc) {
const char *arg = *++argp;
if (no_more_flags || arg[0] != '-' || arg[1] == '\0') {
/* Not a flag */
int r = parse_nonflag(argv[0], arg);
if (r > ret) { ret = r; }
continue;
}
/* Flag */
if (arg[1] == '-') {
/* -- */
if (arg[2] == '\0') {
no_more_flags = 1;
continue;
}
/* Long flag */
arg += 2;
if (!strcmp(arg, "help")) {
show_usage = 1;
show_help = 1;
dont_start = 1;
} else if (!strcmp(arg, "version")) {
show_version = 1;
dont_start = 1;
} else {
fprintf(stderr, "%s: unrecognized option '%s'\n",
argv[0],*argp);
ret = 2;
}
continue;
}
while (*arg) {
switch (arg[1]) {
case 'h':
show_usage = 1;
show_help = 1;
dont_start = 1;
break;
default:
fprintf(stderr, "%s: invalid option '%c' in argument '%s'\n",
argv[0], *arg, *argp);
ret = 2;
goto next_arg;
}
arg++;
}
}
if (ret) {
dont_start = 1;
return ret;
}
if (!dispnum_set) {
strcpy(x11_sockfile.number, "0");
}
settings.x11sockfile = x11_sockfile.prefix;
return 0;
}
static void print_usage(const char *progname) {
printf("usage: %s [OPTIONS ...] [:DISPLAY]\n", progname);
}
static void print_help() {
printf(
"\n"
"Starts the secde display server and desktop environment.\n"
"\n"
"An X11 display number may be specified, this controls the name of\n"
"the socket that applications connect to. If not specified it will\n"
"use :0 for the display number.\n"
"\n"
"List of options:\n"
" --help Shows this help\n"
" --version Shows version\n"
"\n");
}
static void print_version() {
printf("secde " VERSION_STRING "\n");
}
int main(int argc, char **argv)
{
int ret = parse_args(argc, argv);
if (show_usage) {
print_usage(argv[0]);
}
if (show_help) {
print_help();
}
if (show_version) {
print_version();
}
if (dont_start) return ret;
return mainloop_epoll(&settings);
}
|