-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make mox compile on windows, without "mox serve" but with working "mo…
…x localserve" getting mox to compile required changing code in only a few places where package "syscall" was used: for accessing file access times and for umask handling. an open problem is how to start a process as an unprivileged user on windows. that's why "mox serve" isn't implemented yet. and just finding a way to implement it now may not be good enough in the near future: we may want to starting using a more complete privilege separation approach, with a process handling sensitive tasks (handling private keys, authentication), where we may want to pass file descriptors between processes. how would that work on windows? anyway, getting mox to compile for windows doesn't mean it works properly on windows. the largest issue: mox would normally open a file, rename or remove it, and finally close it. this happens during message delivery. that doesn't work on windows, the rename/remove would fail because the file is still open. so this commit swaps many "remove" and "close" calls. renames are a longer story: message delivery had two ways to deliver: with "consuming" the (temporary) message file (which would rename it to its final destination), and without consuming (by hardlinking the file, falling back to copying). the last delivery to a recipient of a message (and the only one in the common case of a single recipient) would consume the message, and the earlier recipients would not. during delivery, the already open message file was used, to parse the message. we still want to use that open message file, and the caller now stays responsible for closing it, but we no longer try to rename (consume) the file. we always hardlink (or copy) during delivery (this works on windows), and the caller is responsible for closing and removing (in that order) the original temporary file. this does cost one syscall more. but it makes the delivery code (responsibilities) a bit simpler. there is one more obvious issue: the file system path separator. mox already used the "filepath" package to join paths in many places, but not everywhere. and it still used strings with slashes for local file access. with this commit, the code now uses filepath.FromSlash for path strings with slashes, uses "filepath" in a few more places where it previously didn't. also switches from "filepath" to regular "path" package when handling mailbox names in a few places, because those always use forward slashes, regardless of local file system conventions. windows can handle forward slashes when opening files, so test code that passes path strings with forward slashes straight to go stdlib file i/o functions are left unchanged to reduce code churn. the regular non-test code, or test code that uses path strings in places other than standard i/o functions, does have the paths converted for consistent paths (otherwise we would end up with paths with mixed forward/backward slashes in log messages). windows cannot dup a listening socket. for "mox localserve", it isn't important, and we can work around the issue. the current approach for "mox serve" (forking a process and passing file descriptors of listening sockets on "privileged" ports) won't work on windows. perhaps it isn't needed on windows, and any user can listen on "privileged" ports? that would be welcome. on windows, os.Open cannot open a directory, so we cannot call Sync on it after message delivery. a cursory internet search indicates that directories cannot be synced on windows. the story is probably much more nuanced than that, with long deep technical details/discussions/disagreement/confusion, like on unix. for "mox localserve" we can get away with making syncdir a no-op.
- Loading branch information
Showing
78 changed files
with
1,155 additions
and
938 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,8 +85,8 @@ Accounts: | |
IgnoreWords: 0.1 | ||
` | ||
|
||
mox.ConfigStaticPath = "/tmp/mox-bogus/mox.conf" | ||
mox.ConfigDynamicPath = "/tmp/mox-bogus/domains.conf" | ||
mox.ConfigStaticPath = filepath.FromSlash("/tmp/mox-bogus/mox.conf") | ||
mox.ConfigDynamicPath = filepath.FromSlash("/tmp/mox-bogus/domains.conf") | ||
mox.Conf.DynamicLastCheck = time.Now() // Should prevent warning. | ||
mox.Conf.Static = config.Static{ | ||
DataDir: destDataDir, | ||
|
@@ -228,11 +228,12 @@ Accounts: | |
prefix := []byte{} | ||
mf := tempfile() | ||
xcheckf(err, "temp file for queue message") | ||
defer os.Remove(mf.Name()) | ||
defer mf.Close() | ||
const qmsg = "From: <[email protected]>\r\nTo: <[email protected]>\r\nSubject: test\r\n\r\nthe message...\r\n" | ||
_, err = fmt.Fprint(mf, qmsg) | ||
xcheckf(err, "writing message") | ||
_, err = queue.Add(ctxbg, log, "test0", mailfrom, rcptto, false, false, int64(len(qmsg)), "<test@localhost>", prefix, mf, nil, true) | ||
_, err = queue.Add(ctxbg, log, "test0", mailfrom, rcptto, false, false, int64(len(qmsg)), "<test@localhost>", prefix, mf, nil) | ||
xcheckf(err, "enqueue message") | ||
|
||
// Create three accounts. | ||
|
@@ -283,10 +284,14 @@ Accounts: | |
xcheckf(err, "creating temp file for delivery") | ||
_, err = fmt.Fprint(mf, msg) | ||
xcheckf(err, "writing deliver message to file") | ||
err = accTest1.DeliverMessage(log, tx, &m, mf, true, false, true, false) | ||
err = accTest1.DeliverMessage(log, tx, &m, mf, false, true, false) | ||
|
||
mfname := mf.Name() | ||
xcheckf(err, "add message to account test1") | ||
err = mf.Close() | ||
xcheckf(err, "closing file") | ||
err = os.Remove(mfname) | ||
xcheckf(err, "removing temp message file") | ||
|
||
err = tx.Get(&inbox) | ||
xcheckf(err, "get inbox") | ||
|
@@ -339,10 +344,14 @@ Accounts: | |
xcheckf(err, "creating temp file for delivery") | ||
_, err = fmt.Fprint(mf0, msg0) | ||
xcheckf(err, "writing deliver message to file") | ||
err = accTest2.DeliverMessage(log, tx, &m0, mf0, true, false, false, false) | ||
err = accTest2.DeliverMessage(log, tx, &m0, mf0, false, false, false) | ||
xcheckf(err, "add message to account test2") | ||
|
||
mf0name := mf0.Name() | ||
err = mf0.Close() | ||
xcheckf(err, "closing file") | ||
err = os.Remove(mf0name) | ||
xcheckf(err, "removing temp message file") | ||
|
||
err = tx.Get(&inbox) | ||
xcheckf(err, "get inbox") | ||
|
@@ -366,10 +375,14 @@ Accounts: | |
xcheckf(err, "creating temp file for delivery") | ||
_, err = fmt.Fprint(mf1, msg1) | ||
xcheckf(err, "writing deliver message to file") | ||
err = accTest2.DeliverMessage(log, tx, &m1, mf1, true, false, false, false) | ||
err = accTest2.DeliverMessage(log, tx, &m1, mf1, false, false, false) | ||
xcheckf(err, "add message to account test2") | ||
|
||
mf1name := mf1.Name() | ||
err = mf1.Close() | ||
xcheckf(err, "closing file") | ||
err = os.Remove(mf1name) | ||
xcheckf(err, "removing temp message file") | ||
|
||
err = tx.Get(&sent) | ||
xcheckf(err, "get sent") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
//go:build !netbsd && !freebsd && !darwin | ||
//go:build !netbsd && !freebsd && !darwin && !windows | ||
|
||
package http | ||
|
||
import "syscall" | ||
import ( | ||
"fmt" | ||
"syscall" | ||
) | ||
|
||
func statAtime(sys *syscall.Stat_t) int64 { | ||
return int64(sys.Atim.Sec)*1000*1000*1000 + int64(sys.Atim.Nsec) | ||
func statAtime(sys any) (int64, error) { | ||
x, ok := sys.(*syscall.Stat_t) | ||
if !ok { | ||
return 0, fmt.Errorf("sys is a %T, expected *syscall.Stat_t", sys) | ||
} | ||
return int64(x.Atim.Sec)*1000*1000*1000 + int64(x.Atim.Nsec), nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.