File size: 13,817 Bytes
6a7089a | 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 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 | package bridge
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"log/slog"
"math/rand"
"net"
"net/http"
"os"
"os/exec"
"runtime"
"strconv"
"strings"
"time"
"github.com/chromedp/chromedp"
"github.com/pinchtab/pinchtab/internal/assets"
"github.com/pinchtab/pinchtab/internal/config"
"github.com/pinchtab/pinchtab/internal/human"
)
// InitChrome initializes a Chrome browser for a Bridge instance
func InitChrome(cfg *config.RuntimeConfig) (context.Context, context.CancelFunc, context.Context, context.CancelFunc, error) {
slog.Info("starting chrome initialization", "headless", cfg.Headless, "profile", cfg.ProfileDir, "binary", cfg.ChromeBinary)
// Setup allocator
allocCtx, allocCancel, opts, debugPort := setupAllocator(cfg)
// Start Chrome browser
browserCtx, browserCancel, err := startChrome(allocCtx, cfg, opts, debugPort)
if err != nil {
allocCancel()
slog.Error("chrome initialization failed", "headless", cfg.Headless, "error", err.Error())
return nil, nil, nil, nil, fmt.Errorf("failed to start chrome: %w", err)
}
slog.Info("chrome initialized successfully", "headless", cfg.Headless, "profile", cfg.ProfileDir)
return allocCtx, allocCancel, browserCtx, browserCancel, nil
}
func findChromeBinary() string {
var candidates []string
if runtime.GOARCH == "arm64" || runtime.GOARCH == "arm" {
candidates = []string{
"/usr/bin/chromium-browser",
"/usr/bin/chromium",
"/usr/bin/google-chrome",
"/usr/bin/google-chrome-stable",
}
} else {
candidates = []string{
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome",
"/Applications/Chromium.app/Contents/MacOS/Chromium",
"/usr/bin/google-chrome",
"/usr/bin/google-chrome-stable",
"/usr/bin/chromium",
"/usr/bin/chromium-browser",
"C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",
"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe",
}
}
for _, path := range candidates {
if _, err := os.Stat(path); err == nil {
return path
}
}
return ""
}
func appendExecAllocatorFlag(opts []chromedp.ExecAllocatorOption, flag string) []chromedp.ExecAllocatorOption {
name := strings.TrimPrefix(flag, "--")
if parts := strings.SplitN(name, "=", 2); len(parts) == 2 {
return append(opts, chromedp.Flag(parts[0], parts[1]))
}
return append(opts, chromedp.Flag(name, true))
}
func setupAllocator(cfg *config.RuntimeConfig) (context.Context, context.CancelFunc, []chromedp.ExecAllocatorOption, int) {
opts := []chromedp.ExecAllocatorOption{
chromedp.NoFirstRun,
chromedp.NoDefaultBrowserCheck,
}
for _, flag := range defaultChromeFlagArgs() {
opts = appendExecAllocatorFlag(opts, flag)
}
// Binary path
chromeBinary := cfg.ChromeBinary
if chromeBinary == "" {
chromeBinary = findChromeBinary()
}
if chromeBinary != "" {
opts = append(opts, chromedp.ExecPath(chromeBinary))
}
// Headless mode: always use 'new' for extension support
if cfg.Headless {
opts = append(opts, chromedp.Flag("headless", "new"))
opts = append(opts, chromedp.Flag("hide-scrollbars", true))
opts = append(opts, chromedp.Flag("mute-audio", true))
opts = append(opts, chromedp.DisableGPU)
} else {
opts = append(opts, chromedp.Flag("headless", false))
}
// Extensions
if len(cfg.ExtensionPaths) > 0 {
var validPaths []string
for _, path := range cfg.ExtensionPaths {
if _, err := os.Stat(path); err == nil {
validPaths = append(validPaths, path)
}
}
if len(validPaths) > 0 {
joined := strings.Join(validPaths, ",")
opts = append(opts, chromedp.Flag("disable-extensions", false))
opts = append(opts, chromedp.Flag("load-extension", joined))
opts = append(opts, chromedp.Flag("disable-extensions-except", joined))
opts = append(opts, chromedp.Flag("enable-automation", false))
slog.Info("loading extensions", "paths", joined)
}
opts = append(opts, chromedp.Flag("enable-automation", false))
} else {
opts = append(opts, chromedp.Flag("disable-extensions", true))
opts = append(opts, chromedp.Flag("enable-automation", false))
}
// User Data Dir
if cfg.ProfileDir != "" {
opts = append(opts, chromedp.UserDataDir(cfg.ProfileDir))
}
// Window Size
w, h := randomWindowSize()
opts = append(opts, chromedp.WindowSize(w, h))
// Timezone
if cfg.Timezone != "" {
opts = append(opts, chromedp.Flag("tz", cfg.Timezone))
}
// Extra Flags
if cfg.ChromeExtraFlags != "" {
for _, f := range strings.Fields(cfg.ChromeExtraFlags) {
opts = appendExecAllocatorFlag(opts, f)
}
}
// Debug Port
debugPort := 0
if port, err := findFreePort(cfg.InstancePortStart, cfg.InstancePortEnd); err == nil {
debugPort = port
opts = append(opts, chromedp.Flag("remote-debugging-port", strconv.Itoa(port)))
}
opts = append(opts, chromedp.CombinedOutput(newPrefixedLogWriter(os.Stdout, "chrome")))
// Replace chromedp's default allocateCmdOptions to set Pdeathsig on Linux.
// Do NOT set Setpgid — Chrome should inherit the parent's process group
// so the orchestrator can kill the entire bridge group at once.
opts = append(opts, chromedp.ModifyCmdFunc(func(cmd *exec.Cmd) {
configureChromeProcess(cmd)
}))
ctx, cancel := context.WithCancel(context.Background())
return ctx, cancel, opts, debugPort
}
func startChrome(parentCtx context.Context, cfg *config.RuntimeConfig, opts []chromedp.ExecAllocatorOption, debugPort int) (context.Context, context.CancelFunc, error) {
return startChromeWithRecovery(parentCtx, cfg, opts, debugPort, false)
}
func startChromeWithRecovery(parentCtx context.Context, cfg *config.RuntimeConfig, opts []chromedp.ExecAllocatorOption, debugPort int, retriedProfileLock bool) (context.Context, context.CancelFunc, error) {
allocCtx, allocCancel := chromedp.NewExecAllocator(parentCtx, opts...)
browserCtx, browserCancel := chromedp.NewContext(allocCtx)
stealthSeed := rand.Intn(1000000000)
human.SetHumanRandSeed(int64(stealthSeed))
seededScript := fmt.Sprintf("var __pinchtab_seed = %d;\nvar __pinchtab_stealth_level = %q;\n", stealthSeed, cfg.StealthLevel) + assets.StealthScript
const chromeStartupTimeout = 20 * time.Second
type runResult struct{ err error }
runCh := make(chan runResult, 1)
go func() {
runCh <- runResult{chromedp.Run(browserCtx, chromedp.ActionFunc(func(ctx context.Context) error {
return nil
}))}
}()
var err error
select {
case res := <-runCh:
err = res.err
case <-time.After(chromeStartupTimeout):
err = fmt.Errorf("chrome startup timeout after %v: %w", chromeStartupTimeout, context.DeadlineExceeded)
}
if err != nil {
browserCancel()
allocCancel()
errMsg := err.Error()
if !retriedProfileLock && isChromeProfileLockError(errMsg) {
if recovered, _ := clearStaleChromeProfileLock(cfg.ProfileDir, errMsg); recovered {
time.Sleep(250 * time.Millisecond)
return startChromeWithRecovery(parentCtx, cfg, opts, debugPort, true)
}
}
if isStartupTimeout(err) && debugPort > 0 {
slog.Warn("chrome startup timeout (Chrome 145+ regression), trying direct-launch fallback", "port", debugPort)
time.Sleep(500 * time.Millisecond)
return startChromeWithRemoteAllocator(parentCtx, cfg, debugPort, stealthSeed, seededScript)
}
return nil, nil, fmt.Errorf("failed to connect to chrome: %w", err)
}
// Inject stealth
if err := chromedp.Run(browserCtx, chromedp.ActionFunc(func(ctx context.Context) error {
return injectedScript(ctx, seededScript)
})); err != nil {
browserCancel()
allocCancel()
return nil, nil, fmt.Errorf("failed to inject stealth script: %w", err)
}
return browserCtx, func() {
browserCancel()
allocCancel()
}, nil
}
func isStartupTimeout(err error) bool {
if errors.Is(err, context.DeadlineExceeded) {
return true
}
msg := err.Error()
return strings.Contains(msg, "deadline exceeded") || strings.Contains(msg, "context deadline exceeded")
}
func startChromeWithRemoteAllocator(parentCtx context.Context, cfg *config.RuntimeConfig, debugPort int, stealthSeed int, seededScript string) (context.Context, context.CancelFunc, error) {
chromeBinary := cfg.ChromeBinary
if chromeBinary == "" {
chromeBinary = findChromeBinary()
}
if chromeBinary == "" {
return nil, nil, fmt.Errorf("chrome/chromium not found: please install chrome or chromium, or set 'binary' in config.json")
}
args := buildChromeArgs(cfg, debugPort)
// #nosec G204 -- chromeBinary from user config or findChromeBinary() known system paths
cmd := exec.Command(chromeBinary, args...)
cmd.Stdout = newPrefixedLogWriter(os.Stdout, "chrome stdout")
cmd.Stderr = newPrefixedLogWriter(os.Stderr, "chrome stderr")
if err := cmd.Start(); err != nil {
return nil, nil, fmt.Errorf("failed to start chrome directly: %w", err)
}
wsURL, err := waitForChromeDevTools(debugPort, 30*time.Second)
if err != nil {
_ = cmd.Process.Kill()
return nil, nil, fmt.Errorf("chrome devtools not ready on port %d: %w", debugPort, err)
}
remoteAllocCtx, remoteAllocCancel := chromedp.NewRemoteAllocator(parentCtx, wsURL)
browserCtx, browserCancel := chromedp.NewContext(remoteAllocCtx)
if err := chromedp.Run(browserCtx, chromedp.ActionFunc(func(ctx context.Context) error {
return injectedScript(ctx, seededScript)
})); err != nil {
browserCancel()
remoteAllocCancel()
_ = cmd.Process.Kill()
return nil, nil, fmt.Errorf("failed to connect/inject via remote: %w", err)
}
return browserCtx, func() {
browserCancel()
remoteAllocCancel()
_ = cmd.Process.Kill()
}, nil
}
func findFreePort(start, end int) (int, error) {
for port := start; port <= end; port++ {
l, err := net.Listen("tcp", fmt.Sprintf("127.0.0.1:%d", port))
if err == nil {
_ = l.Close()
return port, nil
}
}
return 0, fmt.Errorf("no free port available in range %d-%d", start, end)
}
func waitForChromeDevTools(port int, timeout time.Duration) (string, error) {
endpoint := fmt.Sprintf("http://127.0.0.1:%d/json/version", port)
client := &http.Client{Timeout: 2 * time.Second}
deadline := time.Now().Add(timeout)
for time.Now().Before(deadline) {
resp, err := client.Get(endpoint)
if err == nil {
var info struct {
WebSocketDebuggerURL string `json:"webSocketDebuggerUrl"`
}
decodeErr := json.NewDecoder(resp.Body).Decode(&info)
_ = resp.Body.Close()
if decodeErr == nil && info.WebSocketDebuggerURL != "" {
return info.WebSocketDebuggerURL, nil
}
}
time.Sleep(250 * time.Millisecond)
}
return "", fmt.Errorf("chrome devtools not ready on port %d after %v", port, timeout)
}
func defaultChromeFlagArgs() []string {
return []string{
"--disable-background-networking",
"--enable-features=NetworkService,NetworkServiceInProcess",
"--disable-background-timer-throttling",
"--disable-backgrounding-occluded-windows",
"--disable-breakpad",
"--disable-session-crashed-bubble",
"--disable-client-side-phishing-detection",
"--disable-default-apps",
"--disable-dev-shm-usage",
"--disable-features=site-per-process,Translate,BlinkGenPropertyTrees",
"--hide-crash-restore-bubble",
"--disable-hang-monitor",
"--disable-ipc-flooding-protection",
"--disable-metrics-reporting",
"--disable-popup-blocking",
"--disable-prompt-on-repost",
"--disable-renderer-backgrounding",
"--disable-sync",
"--force-color-profile=srgb",
"--metrics-recording-only",
"--noerrdialogs",
"--safebrowsing-disable-auto-update",
"--password-store=basic",
"--use-mock-keychain",
"--disable-automation",
"--disable-blink-features=AutomationControlled",
"--no-sandbox",
}
}
func buildChromeArgs(cfg *config.RuntimeConfig, port int) []string {
args := append([]string{fmt.Sprintf("--remote-debugging-port=%d", port)}, defaultChromeFlagArgs()...)
if len(cfg.ExtensionPaths) > 0 {
joined := strings.Join(cfg.ExtensionPaths, ",")
args = append(args, "--load-extension="+joined, "--disable-extensions-except="+joined)
} else {
args = append(args, "--disable-extensions")
}
if cfg.Headless {
args = append(args,
"--headless=new",
"--disable-gpu",
"--enable-unsafe-swiftshader",
)
}
if cfg.ProfileDir != "" {
args = append(args, "--user-data-dir="+cfg.ProfileDir)
}
w, h := randomWindowSize()
args = append(args, fmt.Sprintf("--window-size=%d,%d", w, h))
if cfg.Timezone != "" {
args = append(args, "--tz="+cfg.Timezone)
}
if cfg.ChromeExtraFlags != "" {
args = append(args, strings.Fields(cfg.ChromeExtraFlags)...)
}
return args
}
func injectedScript(ctx context.Context, script string) error {
// Use Page.addScriptToEvaluateOnNewDocument to inject the stealth script
// BEFORE any page JavaScript runs. This is critical for hiding automation
// signals like navigator.webdriver.
// Note: This is called from within chromedp.Run/ActionFunc, so we use
// direct CDP execution instead of nested chromedp.Run to avoid deadlocks.
return chromedp.FromContext(ctx).Target.Execute(ctx,
"Page.addScriptToEvaluateOnNewDocument",
map[string]interface{}{
"source": script,
}, nil)
}
func randomWindowSize() (int, int) {
sizes := [][2]int{
{1920, 1080}, {1366, 768}, {1536, 864}, {1440, 900},
{1280, 720}, {1600, 900}, {2560, 1440}, {1280, 800},
}
s := sizes[rand.Intn(len(sizes))]
return s[0], s[1]
}
type prefixedLogWriter struct {
dst io.Writer
prefix string
buf []byte
}
func newPrefixedLogWriter(dst io.Writer, prefix string) *prefixedLogWriter {
return &prefixedLogWriter{dst: dst, prefix: prefix, buf: make([]byte, 0, 1024)}
}
func (w *prefixedLogWriter) Write(p []byte) (int, error) {
w.buf = append(w.buf, p...)
for {
idx := bytes.IndexByte(w.buf, '\n')
if idx < 0 {
break
}
line := w.buf[:idx]
w.buf = w.buf[idx+1:]
if len(line) > 0 {
if _, err := fmt.Fprintf(w.dst, "%s: %s\n", w.prefix, string(line)); err != nil {
return 0, err
}
}
}
return len(p), nil
}
|