Skip to content

Commit 348425a

Browse files
committed
windows/svc: do not pass theService to windows.RegisterServiceCtrlHandlerEx
windows.RegisterServiceCtrlHandlerEx context parameter is uintptr, so it is unsafe to pass pointers in that parameter. Use theService global variable in ctlHandler function instead. Fixes golang/go#67437 Change-Id: I84c910eaa354603c2a5114421cd61788cb40b86f Reviewed-on: https://go-review.googlesource.com/c/sys/+/591475 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Michael Pratt <[email protected]> Reviewed-by: Quim Muntal <[email protected]> Reviewed-by: David Chase <[email protected]>
1 parent 673e0f9 commit 348425a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

windows/svc/service.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,8 @@ var (
199199
)
200200

201201
func ctlHandler(ctl, evtype, evdata, context uintptr) uintptr {
202-
s := (*service)(unsafe.Pointer(context))
203202
e := ctlEvent{cmd: Cmd(ctl), eventType: uint32(evtype), eventData: evdata, context: 123456} // Set context to 123456 to test issue #25660.
204-
s.c <- e
203+
theService.c <- e
205204
return 0
206205
}
207206

@@ -210,7 +209,7 @@ var theService service // This is, unfortunately, a global, which means only one
210209
// serviceMain is the entry point called by the service manager, registered earlier by
211210
// the call to StartServiceCtrlDispatcher.
212211
func serviceMain(argc uint32, argv **uint16) uintptr {
213-
handle, err := windows.RegisterServiceCtrlHandlerEx(windows.StringToUTF16Ptr(theService.name), ctlHandlerCallback, uintptr(unsafe.Pointer(&theService)))
212+
handle, err := windows.RegisterServiceCtrlHandlerEx(windows.StringToUTF16Ptr(theService.name), ctlHandlerCallback, 0)
214213
if sysErr, ok := err.(windows.Errno); ok {
215214
return uintptr(sysErr)
216215
} else if err != nil {

0 commit comments

Comments
 (0)