mirror of
				https://github.com/tailscale/tailscale.git
				synced 2025-10-31 16:22:03 +01:00 
			
		
		
		
	This updates all source files to use a new standard header for copyright and license declaration. Notably, copyright no longer includes a date, and we now use the standard SPDX-License-Identifier header. This commit was done almost entirely mechanically with perl, and then some minimal manual fixes. Updates #6865 Signed-off-by: Will Norris <will@tailscale.com>
		
			
				
	
	
		
			36 lines
		
	
	
		
			861 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			861 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) Tailscale Inc & AUTHORS
 | |
| // SPDX-License-Identifier: BSD-3-Clause
 | |
| 
 | |
| package pidowner
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"syscall"
 | |
| 
 | |
| 	"golang.org/x/sys/windows"
 | |
| )
 | |
| 
 | |
| func ownerOfPID(pid int) (userID string, err error) {
 | |
| 	procHnd, err := windows.OpenProcess(windows.PROCESS_QUERY_INFORMATION, false, uint32(pid))
 | |
| 	if err == syscall.Errno(0x57) { // invalid parameter, for PIDs that don't exist
 | |
| 		return "", ErrProcessNotFound
 | |
| 	}
 | |
| 	if err != nil {
 | |
| 		return "", fmt.Errorf("OpenProcess: %T %#v", err, err)
 | |
| 	}
 | |
| 	defer windows.CloseHandle(procHnd)
 | |
| 
 | |
| 	var tok windows.Token
 | |
| 	if err := windows.OpenProcessToken(procHnd, windows.TOKEN_QUERY, &tok); err != nil {
 | |
| 		return "", fmt.Errorf("OpenProcessToken: %w", err)
 | |
| 	}
 | |
| 
 | |
| 	tokUser, err := tok.GetTokenUser()
 | |
| 	if err != nil {
 | |
| 		return "", fmt.Errorf("GetTokenUser: %w", err)
 | |
| 	}
 | |
| 
 | |
| 	sid := tokUser.User.Sid
 | |
| 	return sid.String(), nil
 | |
| }
 |