]> git.sev.monster Git - dotfiles.git/blame - etc/zsh/.zprofile
replace modeline with editorconfig; small fixes
[dotfiles.git] / etc / zsh / .zprofile
CommitLineData
7ddca96d 1# NOTE:
b341b38a 2# our .zprofile can be expensive, so we keep track of what has been run
3# already, and only set up what is necessary. additionally, we want to ensure
4# that our environment is set up as early as possible, so we also source
5# .zprofile in .zshenv for new non-login shells.
7ddca96d 6#
7# these issues are handled by using these methods:
8# * the parent shell that starts the user's session after logging in to some
9# graphical environments may not be a login shell—due to misconfiguration
10# or otherwise—which means .zprofile is not ran and the environment is not
11# properly configured for any child processes.
12# * some desktop environments/graphical terminal emulators will start new
13# terminal windows with login shells, which runs .zprofile every time and
6a32e673 14# leads to noticably slow startup times if we have not already ran it.
7ddca96d 15
e4677c6b 16### cleanup
17# XXX: only call after relevant vars have been set up, defined early so that
18# below code can utilize it after they do so
19function _sev_zcleanup {
20 ## gpg forwarding
21 if [[ -d $_sev_gpg_forward_dir && ( -z $1 || $1 == 'gpg-forward' ) ]] {
22 # clean up forward dirs if its session is dead or we ask for it
fed9e7dc 23 find $_sev_gpg_forward_dir -mindepth 1 -maxdepth 1 -type d |
e4677c6b 24 while {read -r x} {
25 # NOTE: the only way we can get here is if we have not been
26 # forwarded before, if the user asks for it, or during
27 # logout. if our own pid already has a dir, it is most likely
28 # stale, the user wants it removed, or something is very
29 # broken—in all 3 of these cases the best choice is remove it.
30 p=$(basename $x)
31 if {[[ -v _sev_gpg_forward_clean || $$ == $p ]] ||
b341b38a 32 ! kill -0 $p 2>/dev/null} {
e4677c6b 33 find $x -mindepth 1 -maxdepth 1 | while {read -r y} {
34 # XXX: real dirs will stop unlink, consider it a feature
35 unlink $y
36 }
37 # don't force in case something important is still there
38 rmdir $x
39 }
40 }
41 # reset GNUPGHOME if we removed our own dir
9c8d6de7 42 if [[ $GNUPGHOME =~ '/.ssh_forward/\d+/*$' && ! -e $GNUPGHOME ]]
43 GNUPGHOME=${GNUPGHOME%$MATCH}
e4677c6b 44 }
45
46 ## tmp
47 # NOTE: _sev_tmp is not unset so session dirs will not be recreated
48 # NOTE: XDG dirs that use our tmp are not unset here, they are in zlogout
49 if [[ -d $_sev_tmp && ( -z $1 || $1 == 'tmp' ) ]] {
50 # clean up tmp dirs if its session is dead or we ask for it
fed9e7dc 51 find $_sev_tmp -mindepth 1 -maxdepth 1 -name '.session.*' -type d |
e4677c6b 52 while {read -r x} {
53 # NOTE: same rationale as above
54 p=${$(basename $x)#.session.}
55 if {[[ -v _sev_tmp_clean || $$ == $p ]] ||
b341b38a 56 ! kill -0 $p 2>/dev/null} {
e4677c6b 57 rm -rf $x
58 }
59 }
60 }
61
62 unset x p y
63}
64
c7e3e126 65### lang
e4677c6b 66export CHARSET=${CHARSET:-UTF-8}
67export LANG=${LANG:-en_US.UTF-8}
e4677c6b 68
c7e3e126 69### path
7ddca96d 70# NOTE: we utilize the fact that unique arrays keep the first occurrence and
71# remove any further occurences to capture elements from the old PATH
72# that we did not anticipate and shift them to the front, since they are
73# probably important to the system
74if [[ ! -v _sev_setup_path || -o login ]] {
7ddca96d 75 typeset -U path fpath
76 # add as many generic paths as possible to keep the order we want
77 # NOTE: /usr/{local,pkg,games} are unix/bsdisms
b341b38a 78 # XXX: PREFIX not validated, non-posix but Termux uses it, maybe others
79 # XXX: XDG specifies ~/.local/bin as the only user-writable dir for
80 # executables, but we specify more; technically this is against spec
7ddca96d 81 syspath=("$path[@]")
b341b38a 82 path=(~/{.local/,}{s,}bin
65db3310 83 {~/.local,{$PREFIX,}{,/opt,/usr{,/local,pkg}}}/sbin
84 {~/.local,{$PREFIX,}{,/opt,/usr{,/local,pkg}}}/bin
fed9e7dc 85 /usr/{X11R{7,6}/bin,games})
c7e3e126 86 ((len=$#path))
7ddca96d 87 path=("$path[@]" "$syspath[@]")
88 # remove nonexistent and duplicate paths
89 for (( i = 1; i <= $#path; i++ )) {
90 if [[ ! -e $path[$i] ]] {
91 path[$i]=()
c7e3e126 92 ((i <= len)) && ((len--))
7ddca96d 93 ((i--))
94 continue
95 }
7ddca96d 96 }
c7e3e126 97 # shift valid system paths to the front if there are any left
98 ((len > 0 && len < $#path)) && path=("${(@)path[len + 1, -1]}" "${(@)path[1, len]}")
65db3310 99 unset syspath len i
7ddca96d 100 # include our zsh dir in fpath. unlike above, we always prefer our paths
101 fpath=(${ZDOTDIR:-~/.zsh}/functions/{*,Completions/*}(N) "$fpath[@]")
102 # FPATH is not exported by default
103 export FPATH
104 typeset +U path fpath
105 export _sev_setup_path=
106}
107
b341b38a 108### xdg local dir
109# NOTE: need this for tmp, so confirm it exists.
110# XXX: perms are not specified for XDG dirs except runtime, but I think 760
111# makes the most sense. shouldn't break anything since no one else should
112# be poking around in our dir.
6a32e673 113[[ -e ${_sev_home:-~}/.local ]] || mkdir -m760 ${_sev_home:-~}/.local
b341b38a 114
e4677c6b 115### tmp
116# NOTE: specs say that POSIX tmp and XDG runtime directories should exist
117# until the last session is logged out (POSIX can exist for longer).
118# since we can't reliably keep track of sessions in a cross-platform
119# manner, the current implementation should use a separate directory per
120# toplevel session (i.e. SHLVL=1). this should placate most applications,
121# though it is not expressly spec compliant.
122if [[ ! -v _sev_tmp ]] {
6a32e673 123 _sev_tmp=${_sev_home:-~}/.local/tmp
b341b38a 124 # NOTE: race condition/remove in use files
125 [[ -h $_sev_tmp ]] && unlink $_sev_tmp 2>/dev/null
c7e3e126 126 t=${TMPDIR:-${TEMP:-${TMP:-/tmp}}}/.home-$LOGNAME
b341b38a 127 # create personal tmp dir under system tmp
128 [[ -e $t ]] || mkdir -m700 $t 2>/dev/null
c7e3e126 129 if [[ ! -d $t ]] {
130 [[ -o interactive ]] &&
b341b38a 131 print -P "%F{orange}*** Can't create TMPDIR $t, using $_sev_tmp%f"
132 # fallback bare directory
133 [[ -e $_sev_tmp ]] || mkdir -m700 $_sev_tmp 2>/dev/null
134 if [[ ! -d $_sev_tmp ]] {
135 [[ -o interactive ]] &&
136 print -P "%F{red}!!! No usable TMPDIR%f"
137 unset _sev_tmp
138 } else {
139 t=$_sev_tmp
140 }
141 } elif [[ -e $_sev_tmp ]] {
142 [[ -o interactive ]] &&
143 print -P "%F{orange}*** $_sev_tmp occluded, can't link to TMPDIR $t%f"
144 _sev_tmp=$t
145 } else {
146 ln -s $t $_sev_tmp 2>/dev/null
147 }
148 if [[ -v _sev_tmp ]] {
149 # ensure dir is clean
150 _sev_zcleanup tmp
151 # finally create our subdir for this session
152 t=$_sev_tmp/.session.$$
153 if ! mkdir -m700 $t 2>/dev/null; then
154 [[ -o interactive ]] &&
155 print -P "%F{red}!!! Can't create session subdir $t, using $_sev_tmp%f"
156 t=$_sev_tmp
157 fi
158 export _sev_tmp TMPDIR=$t TEMP=$t TMP=$t
159 unset t
c7e3e126 160 }
c7e3e126 161}
162
163### xdg
7ddca96d 164if [[ ! -v _sev_setup_xdg ]] {
b341b38a 165 ## merge with any existing dirs and remove duplicates using unique arrays
166 # NOTE: we are accepting whatever value might be set for CONFIG and DATA;
167 # if it wasn't set, we just use default and leave it unset
c7e3e126 168 # NOTE: include and then remove CONFIG_HOME and DATA_HOME to ensure they
169 # are not present in the array if it was added before we got to it
2ec9d552 170 typeset -UT XDG_DATA_DIRS xdg_data_dirs
b341b38a 171 if [[ -v XDG_DATA_HOME ]] {
172 export XDG_DATA_HOME
173 } elif [[ ! -e ~/.local/share ]] {
174 mkdir -m760 ~/.local/share
175 }
176 xdg_data_dirs=($XDG_DATA_HOME /{opt,usr/local,usr/pkg,usr}/share
7ddca96d 177 "${XDG_DATA_DIRS:+${xdg_data_dirs[@]}}")
b341b38a 178 # XXX: if colons are not escaped, could remove unintended part of string
179 export XDG_DATA_DIRS=${XDG_DATA_DIRS#$XDG_DATA_HOME:}
2ec9d552 180
b341b38a 181 typeset -UT XDG_CONFIG_DIRS xdg_config_dirs
182 if [[ -v XDG_CONFIG_HOME ]] {
183 export XDG_CONFIG_HOME
184 } elif [[ ! -e ~/.config ]] {
185 mkdir -m760 ~/.config
186 }
187 # I am of the belief .local should follow FHS /usr/local...
188 [[ -e ~/.local/etc ]] || ln -s ~/.config ~/.local/etc
189 xdg_config_dirs=($XDG_CONFIG_HOME ${XDG_CONFIG_DIRS:+"$xdg_config_dirs[@]"}
190 {/opt,/usr/local,/usr/pkg,}/etc/xdg)
191 # XXX: if colons are not escaped, could remove unintended part of string
192 export XDG_CONFIG_DIRS=${XDG_CONFIG_DIRS#$XDG_CONFIG_HOME:}
e4677c6b 193
b341b38a 194 if [[ -v XDG_STATE_HOME ]] {
195 export XDG_STATE_HOME
196 } elif [[ ! -e ~/.local/state ]] {
197 mkdir -m760 ~/.local/state
198 }
2ec9d552 199
b341b38a 200 if [[ ! -v XDG_CACHE_HOME ]] {
201 if [[ -v _sev_tmp ]] {
202 export XDG_CACHE_HOME=$_sev_tmp/.xdg.cache
203 [[ -e $XDG_CACHE_HOME ]] || mkdir -m700 $XDG_CACHE_HOME
204 } elif [[ ! -e ~/.cache ]] {
205 mkdir -m700 ~/.cache
206 }
207 }
208
6a32e673 209 if [[ -v XDG_RUNTIME_DIR ]] {
210 export XDG_RUNTIME_DIR
211 } else {
212 # make runtime dir in our session-specific tmpdir
213 export XDG_RUNTIME_DIR=$TMPDIR/.xdg.runtime
214 # same as in tmpdir creation, ensure dir doesn't exist
215 if [[ -h $XDG_RUNTIME_DIR ]] {
216 unlink $XDG_RUNTIME_DIR 2>/dev/null
217 } elif [[ -e $XDG_RUNTIME_DIR ]] {
218 rm -rf $XDG_RUNTIME_DIR 2>/dev/null
219 }
220 mkdir -m700 $XDG_RUNTIME_DIR 2>/dev/null
e4677c6b 221 }
2ec9d552 222
7ddca96d 223 # source user dirs after other vars
224 [[ -e $XDG_CONFIG_HOME/user-dirs.dirs ]] &&
225 emulate sh -c "source $XDG_CONFIG_HOME/user-dirs.dirs"
226 export _sev_setup_xdg=
b133dc92 227}
7ddca96d 228
e4677c6b 229### dbus
230if [[ ! -v DBUS_SESSION_BUS_ADDRESS && -v commands[dbus-launch] ]] {
231 eval $(dbus-launch)
232 export DBUS_SESSION_BUS_ADDRESS DBUS_SESSION_BUS_PID
233}
234
235### gpg home
236if [[ ! -v GNUPGHOME ]] {
b341b38a 237 export GNUPGHOME=${XDG_CONFIG_HOME:-~/.config}/gnupg
e4677c6b 238 if [[ -d ~/.gnupg ]] {
b341b38a 239 mv ~/.gnupg ${XDG_CONFIG_HOME:-~/.config}/gnupg
e4677c6b 240 }
241}
242
243### gpg agent + forwarding
7ddca96d 244# NOTE: while ssh manages its auth sock in its protocol when ForwardSsh is
245# enabled, GPG must be forwarded manually over Unix socket. to support
246# this, we forward the restricted gpg-agent extra socket to the remote
247# host with a RemoteForward rule in ~/.ssh/config that uses the
248# _GNUPG_SOCK_* env vars. to avoid conflicts with other ssh sessions
249# where the same user is connecting to the same host from different
250# machines, gpg in each environment should utilize its own forwarded
251# socket, rather than replace the sockets in GNUPGHOME which will be
252# overridden on the next connection. previously, you could provide a path
253# to the agent socket in GPG_AGENT_INFO, but that was deprecated in GPG
c7e3e126 254# v2.1. instead, we must clone GNUPGHOME with links and replace the agent
255# sockets there with the forwarded one.
7ddca96d 256# NOTE: since Unix sockets are not supported under Windows, this will not work
c7e3e126 257# under msys, cygwin, mingw, etc., but may work under wsl2.
7ddca96d 258# HACK: without SendEnv, which is disabled by default in most sshd configs,
259# there is no foolproof way to prevent race conditions via filename
260# collisions or to pass the desired forward path to the remote host
261# environment. we just have to guess the path we choose is good on the
262# desination, and assume the newest matching socket is the correct one
263# after connecting. in theory, we could occlude the ssh binary on PATH
264# with an alias or script that would allow us to communicate with the
265# remote host before opening a shell, so that we can have the host
266# communicate back to the client where it wants a socket created or ask
267# the host if the path the client wants to use is writable. however, this
b341b38a 268# would open up too many edge cases where it wouldn't work or be too
269# clunky (e.g. asking for password twice) to make it worth it.
e4677c6b 270function _gpg_socketpath {
271 # dirs are percent-encoded: https://stackoverflow.com/a/64312099
272 echo ${1//(#b)%([[:xdigit:]](#c2))/${(#):-0x$match[1]}}
273}
274if [[ ! -v _sev_setup_gpg_forward && -v commands[gpg] ]] {
b341b38a 275 # XXX: assuming /tmo exists and is writable on destination
e4677c6b 276 export _GNUPG_SOCK_DEST_BASE=/tmp/.gpg-agent-forward
277 export _GNUPG_SOCK_DEST_EXT=$(date +%s).$RANDOM
278 export _GNUPG_SOCK_DEST=$_GNUPG_SOCK_DEST_BASE.$_GNUPG_SOCK_DEST_EXT
279 export _sev_gpg_forward_dir=${GNUPGHOME:-~/.gnupg}/.ssh_forward
280 _sev_zcleanup gpg-forward
7ddca96d 281
e4677c6b 282 # find our forwarded socket
283 s=($_GNUPG_SOCK_DEST_BASE*(N=oc[1]))
284 if [[ -n $s && -v SSH_CLIENT ]] {
285 # create new forward dir
286 export _sev_setup_gpg_forward=
287 h=$_sev_gpg_forward_dir/$$
288 mkdir -pm700 $h
289 # XXX: is it safe to link scdaemon socket? can its name be changed?
4fec01cb 290 for x (S.scdaemon gpg.conf gpg-agent.conf sshcontrol random_seed
291 pubring.kbx{,~} trustdb.gpg private-keys-v1.d crls.d) {
e4677c6b 292 ln -s ${GNUPGHOME:-~/.gnupg}/$x $h
7ddca96d 293 }
e4677c6b 294 export GNUPGHOME=$h
295 unset h
296 for x in $(gpgconf --list-dirs | grep 'agent-.*-\?socket:'); do
297 x=$(_gpg_socketpath ${x/#agent-*socket:})
298 if [[ ! -v orig ]] {
299 # move forwarded socket to first valid agent socket path
300 # XXX: if tmp is on different filesystem this may not work
301 mv $s $x
302 orig=$x
303 } else {
304 # make links to forwarded socket for any others
305 ln -s $orig $x
306 }
307 done
308 unset x orig
309 }
310 unset s
7ddca96d 311
e4677c6b 312 # what we will forward if we start a new ssh connection
313 # NOTE: do this after setting up GNUPGHOME to pick up new socket path;
314 # if already connected over SSH, extra should be the remote one
315 export _GNUPG_SOCK_SRC=$(_gpg_socketpath \
316 $(gpgconf --list-dirs agent-extra-socket))
317} elif [[ ! -v _sev_setup_gpg_forward ]] {
318 # required for RemoteForward to not error out if the vars are unset
319 [[ ! -v _GNUPG_SOCK_SRC ]] && export _GNUPG_SOCK_SRC=/nonexistent
320 [[ ! -v _GNUPG_SOCK_DEST ]] && export _GNUPG_SOCK_DEST=/nonexistent
321}
7ddca96d 322
e4677c6b 323### gpg agent
b341b38a 324if [[ -v commands[gpg-connect-agent] &&
325 ( ! -v _sev_setup_gpgagent || -v _sev_refresh_gpgagent ) ]] {
e4677c6b 326 # avoid printing if we have already set up tty before
327 [[ ! -v _sev_setup_gpgagent && -o interactive ]] && p=true || p=false
328 if {$p} {
329 print -nP '%F{blue}>>>%f GPG: '
330 if [[ -v _sev_setup_gpg_forward ]] {
35f596e5 331 print -nP '%F{yellow}Forwarded agent '
332 } else {
333 print -nP '%F{green}Agent '
334 }
7ddca96d 335 }
e4677c6b 336 gpg-connect-agent /bye >/dev/null 2>&1
337 if [[ $? -ne 0 ]] {
35f596e5 338 $p && print -P '%F{red}communication error'
e4677c6b 339 } else {
35f596e5 340 if [[ ! -v _sev_setup_gpg_forward ]] {
341 if [[ ${+GPG_TTY} -eq 0 && -o interactive ]]
342 export GPG_TTY=$(tty)
343 if [[ ( -v DISPLAY || -v WAYLAND_DISPLAY ) &&
344 ${PINENTRY_USER_DATA/USE_TTY=0} == $PINENTRY_USER_DATA ]]
345 export PINENTRY_USER_DATA=USE_TTY=$((
346 ${+DISPLAY} + ${+WAYLAND_DISPLAY} == 0))
347 # XXX: don't know if gpg-agent supports comments after directives
348 # XXX: path could have #
349 sed -Ei 's#^([[:space:]]*pinentry-program[[:space:]]).*$#\1'${commands[pinentry]:-/dev/null}'#' \
350 ${GNUPGHOME:-~/.gnupg}/gpg-agent.conf
351 # XXX: could check for changes before doing this to save perf
352 gpg-connect-agent RELOADAGENT UPDATESTARTUPTTY /bye >/dev/null 2>&1
353 if {$p} {
354 gpg-connect-agent /subst /serverpid \
355 "/echo pid \${get serverpid} on $GPG_TTY" /bye 2>/dev/null
356 print -nP '%f'
357 }
358 } elif {$p} {
359 print -P '%f'
360 }
e4677c6b 361 export _sev_setup_gpgagent=
7ddca96d 362 }
b341b38a 363 unset p _sev_refresh_gpgagent
e4677c6b 364}
7ddca96d 365
e4677c6b 366### ssh agent
367if [[ ! -v _sev_setup_ssh ]] {
7ddca96d 368 # NOTE: preferred order of agents to check: okcagent, gnupg, openssh
369 # first block takes care of okcagent and openssh, second gnupg
e4677c6b 370 # XXX: doesn't actually check if ssh is enabled in gpg
7ddca96d 371 [[ -o interactive ]] && print -nP '%F{blue}>>>%f SSH: %F{green}'
372 if [[ ! -v SSH_AUTH_SOCK && ( -v commands[okc-ssh-agent] ||
373 ( -v commands[ssh-agent] && ! -v commands[gpg] ) ) ]] {
374 okc=${commands[okc-ssh-agent]:+okc-}
49c6c14f 375 e=$_sev_tmp/${okc}ssh-agent-exports
7ddca96d 376 typeset sock=
377 typeset -i pid=
e4677c6b 378 if [[ -f $e ]] {
379 IFS=$'\0' read -r sock pid <$e
7ddca96d 380 }
381 if [[ -S $sock && $pid > 0 ]] && kill -0 $pid; then
382 [[ -o interactive ]] && print -P "Reusing agent PID $pid%f"
383 export SSH_AUTH_SOCK=$sock
384 export SSH_AGENT_PID=$pid
385 else
7ddca96d 386 # TODO: ensure ssh-agent path looks legit to avoid unsafe eval?
387 # XXX: doesn't appear to be any other way to handle redirection.
388 # because eval needs to write to current scope environment
389 # subshells can't be used to capture output and print.
49c6c14f 390 c='TMPDIR=$_sev_tmp ${okc}ssh-agent'
7ddca96d 391 if [[ -o interactive ]] {
49c6c14f 392 eval $(eval $=c)
7ddca96d 393 print -nP '%f'
394 } else {
49c6c14f 395 eval $(eval $=c) >/dev/null 2>&1
7ddca96d 396 }
e4677c6b 397 echo -n $SSH_AUTH_SOCK$'\0'$SSH_AGENT_PID >!$e
49c6c14f 398 unset c
7ddca96d 399 fi
49c6c14f 400 unset okc e sock pid
7ddca96d 401 } elif [[ ! -v SSH_AUTH_SOCK && -v commands[gpg] ]] {
e4677c6b 402 # since gpg should have been started above, just export and notify
7ddca96d 403 if [[ -o interactive ]] {
e4677c6b 404 if [[ -v _sev_setup_gpg_forward ]] {
405 echo 'Forwarded GPG agent'
7ddca96d 406 } else {
407 gpg-connect-agent /subst /serverpid \
e4677c6b 408 '/echo GPG agent pid ${get serverpid}' /bye
7ddca96d 409 }
410 print -nP '%f'
411 }
e4677c6b 412 export SSH_AUTH_SOCK=$(_gpg_socketpath \
7ddca96d 413 $(gpgconf --list-dirs agent-ssh-socket))
414 } elif [[ -v SSH_AUTH_SOCK ]] {
415 [[ -o interactive ]] && print -P 'Preconfigured agent%f'
416 } else {
417 [[ -o interactive ]] && print -P '%F{red}No agent available%f'
418 }
419
e4677c6b 420 export _sev_setup_ssh=
7ddca96d 421}
e4677c6b 422unfunction _gpg_socketpath
7ddca96d 423
e4677c6b 424### perl local lib
425[[ -v commands[perl] && -d $XDG_DATA_HOME/perl5/lib/perl5 &&
426 ! -v PERL_LOCAL_LIB_ROOT ]] &&
427 eval $(perl -I$XDG_DATA_HOME/perl5/lib/perl5 \
c7e3e126 428 -Mlocal::lib=$XDG_DATA_HOME/perl5 2>/dev/null)
7ddca96d 429
e4677c6b 430
c7e3e126 431### load site-specific
b341b38a 432if [[ -f ${ZDOTDIR:-~}/.zprofile.local ]] { source ${ZDOTDIR:-~}/.zprofile.local }
This page took 0.112268 seconds and 4 git commands to generate.