Skip to content

Commit fb481e0

Browse files
Updater requests elevation if needed (issue 981)
Signed-off-by: Reginald Gillespie <[email protected]>
1 parent 5063c6c commit fb481e0

File tree

3 files changed

+66
-1
lines changed

3 files changed

+66
-1
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11

22
bufferflow_tinyg_old.md
33

4+
/arduino-create-agent*
45
/arduino-cloud-agent*
56
!/arduino-cloud-agent*/
67
rsrc.syso
@@ -19,3 +20,7 @@ logs/
1920

2021
# Python
2122
__pycache__
23+
24+
# Debugging
25+
__debug_bin*.exe*
26+
vendor/

updater/updater.go

+55-1
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,13 @@ import (
2323
"io"
2424
"net/http"
2525
"os"
26+
"os/exec"
2627
"path/filepath"
2728
"runtime"
2829
"strings"
30+
"syscall"
31+
32+
"golang.org/x/sys/windows"
2933

3034
log "github.com/sirupsen/logrus"
3135
)
@@ -83,9 +87,11 @@ func fetch(url string) (io.ReadCloser, error) {
8387

8488
// addTempSuffixToPath adds the "-temp" suffix to the path to an executable file (a ".exe" extension is replaced with "-temp.exe")
8589
func addTempSuffixToPath(path string) string {
86-
if filepath.Ext(path) == "exe" {
90+
if filepath.Ext(path) == ".exe" {
91+
// Windows
8792
path = strings.Replace(path, ".exe", "-temp.exe", -1)
8893
} else {
94+
// Unix
8995
path = path + "-temp"
9096
}
9197

@@ -110,3 +116,51 @@ func copyExe(from, to string) error {
110116
}
111117
return nil
112118
}
119+
120+
// requestElevation requests this program to rerun as administrator, for when we don't have permission over the update files
121+
func requestElevation() {
122+
log.Println("Permission denied. Requesting elevated privileges...")
123+
var err error
124+
if runtime.GOOS == "windows" {
125+
err = elevateWindows()
126+
} else {
127+
err = elevateUnix()
128+
}
129+
130+
if err != nil {
131+
log.Println("Failed to request elevation:", err)
132+
return
133+
}
134+
}
135+
136+
func elevateWindows() error {
137+
verb := "runas"
138+
exe, _ := os.Executable()
139+
cwd, _ := os.Getwd()
140+
args := strings.Join(os.Args[1:], " ")
141+
142+
verbPtr, err := syscall.UTF16PtrFromString(verb)
143+
if err != nil {
144+
return err
145+
}
146+
exePtr, err := syscall.UTF16PtrFromString(exe)
147+
if err != nil {
148+
return err
149+
}
150+
cwdPtr, err := syscall.UTF16PtrFromString(cwd)
151+
if err != nil {
152+
return err
153+
}
154+
argPtr, _ := syscall.UTF16PtrFromString(args)
155+
var showCmd int32 = 1
156+
return windows.ShellExecute(0, verbPtr, exePtr, argPtr, cwdPtr, showCmd)
157+
}
158+
159+
func elevateUnix() error {
160+
args := append([]string{os.Args[0]}, os.Args[1:]...)
161+
cmd := exec.Command("sudo", args...)
162+
cmd.Stdin = os.Stdin
163+
cmd.Stdout = os.Stdout
164+
cmd.Stderr = os.Stderr
165+
return cmd.Run()
166+
}

updater/updater_default.go

+6
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ func start(src string) string {
6666
if strings.Contains(src, "-temp") {
6767
newPath := removeTempSuffixFromPath(src)
6868
if err := copyExe(src, newPath); err != nil {
69+
if os.IsPermission(err) {
70+
requestElevation()
71+
}
6972
log.Println("Copy error: ", err)
7073
panic(err)
7174
}
@@ -74,6 +77,9 @@ func start(src string) string {
7477

7578
// Otherwise copy to a path with -temp suffix
7679
if err := copyExe(src, addTempSuffixToPath(src)); err != nil {
80+
if os.IsPermission(err) {
81+
requestElevation()
82+
}
7783
panic(err)
7884
}
7985
return ""

0 commit comments

Comments
 (0)