-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathservice_windows.go
354 lines (301 loc) · 7.46 KB
/
service_windows.go
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
// +build windows
package master
import (
"errors"
"flag"
"fmt"
"log"
"net"
"os"
"os/user"
"strconv"
"strings"
"sync"
"time"
)
const (
stateFd = 5
listenFdStart = 6
)
var (
listenFdCount int = 1
confPath string
sockType string
services string
privilege = false
verbose = false
chrootOn = false
)
type PreJailFunc func()
type InitFunc func()
type ExitFunc func()
var (
preJailHandler PreJailFunc = nil
initHandler InitFunc = nil
exitHandler ExitFunc = nil
doneChan chan bool = make(chan bool)
connCount int = 0
connMutex sync.RWMutex
stopping = false
prepareCalled = false
)
// from command args
var (
Configure string
ServiceName string
ServiceType string
Verbose bool
Unprivileged bool
Chroot bool
SocketCount = 1
Alone bool
)
// set the max opened file handles for current process which let
// the process can handle more connections.
func setOpenMax() {
}
// init the command args come from acl_master; the application should call
// flag.Parse() in its main function!
func initFlags() {
// Just walk through all the internal args to avoid fatal error from flag parser,
// but these flags will be ignored, because we'll use the flags parsed in parseArgs().
flag.StringVar(&Configure, "f", "", "app configure file (internal)")
flag.StringVar(&ServiceName, "n", "", "app service name (internal)")
flag.StringVar(&ServiceType, "t", "sock", "app service type (internal)")
flag.BoolVar(&Alone, "alone", false, "stand alone running (internal)")
flag.BoolVar(&Verbose, "v", false, "app verbose (internal)")
flag.BoolVar(&Unprivileged, "u", false, "app unprivileged (internal)")
flag.BoolVar(&Chroot, "c", false, "app chroot (internal)")
flag.IntVar(&SocketCount, "s", 1, "listen fd count (internal)")
}
func init() {
initFlags()
setOpenMax()
}
func parseArgs() {
var n = len(os.Args)
for i := 0; i < n; i++ {
switch os.Args[i] {
case "-s":
i++
if i < n {
listenFdCount, _ = strconv.Atoi(os.Args[i])
}
case "-f":
i++
if i < n {
confPath = os.Args[i]
}
case "-t":
i++
if i < n {
sockType = os.Args[i]
}
case "-n":
i++
if i < n {
services = os.Args[i]
}
case "-u":
privilege = true
case "-v":
verbose = true
case "-c":
chrootOn = true
}
}
log.Printf("ListenFdCount=%d, sockType=%s, services=%s",
listenFdCount, sockType, services)
}
// Prepare this function can be called automatically in net_service.go or
// web_service.go to load configure, and it can also be canned in application's
// main function
func Prepare() {
if prepareCalled {
return
} else {
prepareCalled = true
}
parseArgs()
loadConf(confPath)
}
func chroot() {
if len(AppArgs) == 0 || !privilege || len(AppOwner) == 0 {
return
}
_, err := user.Lookup(AppOwner)
if err != nil {
log.Printf("Lookup %s error %s", AppOwner, err)
}
}
// GetListenersByAddrs In run alone mode, the application should give the listening addrs
// and call this function to listen the given addrs
func GetListenersByAddrs(addrs string) ([]net.Listener, error) {
if len(addrs) == 0 {
log.Println("no valid addresses for listening")
return nil, errors.New("no valid addresses for listening")
}
// split addrs like "xxx.xxx.xxx.xxx:port; xxx.xxx.xxx.xxx:port"
addrs = strings.Replace(addrs, " ", "", -1)
addrs = strings.Replace(addrs, ",", ";", -1)
tokens := strings.Split(addrs, ";")
listeners := []net.Listener(nil)
for _, addr := range tokens {
ln, err := net.Listen("tcp", addr)
if err == nil {
listeners = append(listeners, ln)
log.Printf("Listen %s ok", addr)
continue
}
log.Println("Listen", addr, "error:", err)
}
if len(listeners) == 0 {
log.Println("no listeners were created")
return nil, errors.New("no listeners were created")
}
return listeners, nil
}
// GetListeners in acl_master daemon running mode, this function will be called to
// init the listener handles.
func GetListeners() ([]net.Listener, error) {
listeners := []net.Listener(nil)
for fd := listenFdStart; fd < listenFdStart+listenFdCount; fd++ {
file := os.NewFile(uintptr(fd), "open one listen fd")
if file == nil {
log.Printf("os.NewFile failed for fd=%d", fd)
continue
}
ln, err := net.FileListener(file)
// fd will be duped in FileListener, so we should close it
// after the listener is created
_ = file.Close()
if err == nil {
listeners = append(listeners, ln)
log.Printf("add fd %d ok\r\n", fd)
continue
}
log.Println(fmt.Sprintf("Create FileListener error=\"%s\", fd=%d", err, fd))
}
if len(listeners) == 0 {
log.Println("No listener created!")
return nil, errors.New("no listener created")
} else {
log.Printf("Listeners's len=%d", len(listeners))
}
return listeners, nil
}
func ServiceInit(addrs string, stopHandler func(bool)) ([]net.Listener, error) {
Prepare()
if preJailHandler != nil {
preJailHandler()
}
chroot()
if initHandler != nil {
initHandler()
}
// if addresses not empty, alone mode will be used, or daemon mode be used
var listeners []net.Listener
var daemonMode bool
if len(addrs) > 0 {
var err error
listeners, err = GetListenersByAddrs(addrs)
if err != nil {
return nil, err
}
daemonMode = false
} else {
var err error
listeners, err = GetListeners()
if err != nil {
log.Println("GetListeners error", err)
return nil, err
}
daemonMode = true
}
if len(listeners) == 0 {
log.Println("No listener available!")
return nil, errors.New("no listener available")
}
// In daemon mode, the backend monitor fiber will be created for
// monitoring the status with the acl_master framework. If disconnected
// from acl_master, the current child process will exit.
if daemonMode {
go monitorMaster(listeners, nil, stopHandler)
}
return listeners, nil
}
// monitorMaster monitor the PIPE IPC between the current process and acl_master,
// when acl_master close thePIPE, the current process should exit after
// which has handled all its tasks
func monitorMaster(listeners []net.Listener,
onStopHandler func(), stopHandler func(bool)) {
file := os.NewFile(uintptr(stateFd), "")
conn, err := net.FileConn(file)
if err != nil {
panic(fmt.Sprintf("FileConn error=%s", err))
}
log.Println("Waiting for master exiting ...")
buf := make([]byte, 1024)
_, err = conn.Read(buf)
if err != nil {
log.Println("Disconnected from master", err)
}
stopping = true
if onStopHandler != nil {
onStopHandler()
} else {
// XXX: force stopping listen again
for _, ln := range listeners {
log.Println("Closing one listener ", ln.Addr())
_ = ln.Close()
}
}
var n, i int
n = 0
i = 0
for {
connMutex.RLock()
if connCount <= 0 {
connMutex.RUnlock()
break
}
n = connCount
connMutex.RUnlock()
time.Sleep(time.Second) // sleep 1 second
i++
log.Printf("Exiting, clients=%d, sleep=%d seconds\r\n", n, i)
if AppWaitLimit > 0 && i >= AppWaitLimit {
log.Printf("Waiting too long >= %d", AppWaitLimit)
break
}
}
log.Println("Master disconnected, exiting now")
if stopHandler != nil {
stopHandler(true)
}
}
func ConnCountInc() {
connMutex.Lock()
connCount++
connMutex.Unlock()
}
func ConnCountDec() {
connMutex.Lock()
connCount--
connMutex.Unlock()
}
func ConnCountCur() int {
connMutex.RLock()
n := connCount
connMutex.RUnlock()
return n
}
func OnPreJail(handler PreJailFunc) {
preJailHandler = handler
}
func OnInit(handler InitFunc) {
initHandler = handler
}
func OnExit(handler ExitFunc) {
exitHandler = handler
}