Skip to content
Snippets Groups Projects
  1. Oct 03, 2017
  2. Sep 30, 2017
  3. Sep 25, 2017
  4. Sep 20, 2017
    • Joey Hess's avatar
      add exporter thread to assistant · d71c65ca
      Joey Hess authored
      This is similar to the pusher thread, but a separate thread because git
      pushes can be done in parallel with exports, and updating a big export
      should not prevent other git pushes going out in the meantime.
      
      The exportThread only runs at most every 30 seconds, since updating an
      export is more expensive than pushing. This may need to be tuned.
      
      Added a separate channel for export commits; the committer records a
      commit in that channel.
      
      Also, reconnectRemotes records a dummy commit, to make the exporter
      thread wake up and make sure all exports are up-to-date. So,
      connecting a drive with a directory special remote export will
      immediately update it, and getting online will automatically
      update S3 and WebDAV exports.
      
      The transfer queue is not involved in exports. Instead, failed
      exports are retried much like failed pushes.
      
      This commit was sponsored by Ewen McNeill.
      d71c65ca
  5. Sep 18, 2017
    • Joey Hess's avatar
      add ExportTree table to export db · b03d77c2
      Joey Hess authored
      New table needed to look up what filenames are used in the currently
      exported tree, for reasons explained in export.mdwn.
      
      Also, added smart constructors for ExportLocation and ExportDirectory to
      make sure they contain filepaths with the right direction slashes.
      
      And some code refactoring.
      
      This commit was sponsored by Francois Marier on Patreon.
      b03d77c2
  6. Sep 15, 2017
  7. Sep 13, 2017
  8. Sep 04, 2017
    • Joey Hess's avatar
      track exported files in a sqlite database · 7eb9889b
      Joey Hess authored
      Went with a separate db per export remote, rather than a single export
      database. Mostly because there will probably not be a lot of separate
      export remotes, and it might be convenient to be able to delete a given
      remote's export database.
      
      This commit was supported by the NSF-funded DataLad project.
      7eb9889b
  9. Sep 01, 2017
    • Joey Hess's avatar
      refactor ExportActions · a4328b49
      Joey Hess authored
      This will allow disabling exports for remotes that are not configured to
      allow them. Also, exportSupported will be useful for the external
      special remote to probe.
      
      This commit was supported by the NSF-funded DataLad project
      a4328b49
  10. Aug 31, 2017
  11. Aug 18, 2017
    • Joey Hess's avatar
      6.20170818
      252994e0
    • Joey Hess's avatar
      git-annex.cabal: Deal with breaking changes in Cabal 2.0 · 55495c5a
      Joey Hess authored
      https://github.com/haskell/cabal/issues/4655
      
      This means that when a module is conditionally imported via ifdef
      depending on the OS or build flags, the cabal file has to mirror the
      same logic there to only list the module then.
      
      Since there are lots of OS's and lots of combinations of build flags
      here, it's rather difficult to know if the cabal file has been completelty
      correctly updated to match the source code.
      
      So I am very unhappy with needing to update things in two places. I've
      only tested this on linux with most build flags enables; this will
      probably need significant time and testing to catch every cabal file
      tweak that this change to Cabal requires. And it will be a continual
      source of compile failures going forward when the code is modified and
      the cabal file not also updated.
      
      DRY DRY DRY, I repeat myself, but: DRY! Sigh..
      
      (Also, had to remove all Build.* that are standalone programs from the
      Other-Modules list, because since cabal passes those modules to ghc when
      building git-annex, it complains that they use module Main. Those
      modules are only used when building with the Makefile anyway, so this
      change shouldn't break anything.)
      
      This commit was sponsored by Thomas Hochstein on Patreon.
      55495c5a
    • Joey Hess's avatar
      avoid the dashed ssh hostname class of security holes · df11e547
      Joey Hess authored
      Security fix: Disallow hostname starting with a dash, which would get
      passed to ssh and be treated an option. This could be used by an attacker
      who provides a crafted ssh url (for eg a git remote) to execute arbitrary
      code via ssh -oProxyCommand.
      
      No CVE has yet been assigned for this hole.
      The same class of security hole recently affected git itself,
      CVE-2017-1000117.
      
      Method: Identified all places where ssh is run, by git grep '"ssh"'
      Converted them all to use a SshHost, if they did not already, for
      specifying the hostname.
      
      SshHost was made a data type with a smart constructor, which rejects
      hostnames starting with '-'.
      
      Note that git-annex already contains extensive use of Utility.SafeCommand,
      which fixes a similar class of problem where a filename starting with a
      dash gets passed to a program which treats it as an option.
      
      This commit was sponsored by Jochen Bartl on Patreon.
      df11e547
  12. Aug 17, 2017
    • Joey Hess's avatar
      add annex-ignore-command and annex-sync-command configs · d39c120a
      Joey Hess authored
      Added remote configuration settings annex-ignore-command and
      annex-sync-command, which are dynamic equivilants of the annex-ignore
      and annex-sync configurations.
      
      For this I needed a new DynamicConfig infrastructure. Its implementation
      should be as fast as before when there is no dynamic config, and it caches
      so shell commands are only run once.
      
      Note that annex-ignore-command exits nonzero when the remote should be ignored.
      While that may seem backwards, it allows using the same command for it as
      for annex-sync-command when you want to disable both.
      
      This commit was sponsored by Trenton Cronholm on Patreon.
      d39c120a
  13. Aug 16, 2017
  14. Aug 14, 2017
    • Joey Hess's avatar
      Added GIT_ANNEX_VECTOR_CLOCK environment variable · 2cecc8d2
      Joey Hess authored
      Can be used to override the default timestamps used in log files in the
      git-annex branch. This is a dangerous environment variable; use with
      caution.
      
      Note that this only affects writing to the logs on the git-annex branch.
      It is not used for metadata in git commits (other env vars can be set for
      that).
      
      There are many other places where timestamps are still used, that don't
      get committed to git, but do touch disk. Including regular timestamps
      of files, and timestamps embedded in some files in .git/annex/, including
      the last fsck timestamp and timestamps in transfer log files.
      
      A good way to find such things in git-annex is to get for getPOSIXTime and
      getCurrentTime, although some of the results are of course false positives
      that never hit disk (unless git-annex gets swapped out..)
      
      So this commit does NOT necessarily make git-annex comply with some HIPPA
      privacy regulations; it's up to the user to determine if they can use it in
      a way compliant with such regulations.
      
      Benchmarking: It takes 0.00114 milliseconds to call getEnv
      "GIT_ANNEX_VECTOR_CLOCK" when that env var is not set. So, 100 thousand log
      files can be written with an added overhead of only 0.114 seconds. That
      should be by far swamped by the actual overhead of writing the log files
      and making the commit containing them.
      
      This commit was supported by the NSF-funded DataLad project.
      2cecc8d2
  15. Jun 12, 2017
  16. May 19, 2017
  17. May 16, 2017
    • Joey Hess's avatar
      adeiu, MissingH · a1730cd6
      Joey Hess authored
      Removed dependency on MissingH, instead depending on the split
      library.
      
      After laying groundwork for this since 2015, it
      was mostly straightforward. Added Utility.Tuple and
      Utility.Split. Eyeballed System.Path.WildMatch while implementing
      the same thing.
      
      Since MissingH's progress meter display was being used, I re-implemented
      my own. Bonus: Now progress is displayed for transfers of files of
      unknown size.
      
      This commit was sponsored by Shane-o on Patreon.
      a1730cd6
    • Joey Hess's avatar
      stop using MissingH for MD5 · 6dd806f1
      Joey Hess authored
      Cryptonite is faster and allocates less, and I want to get rid of
      MissingH use.
      
      Note that the new dependency on memory is free; it's a dependency of
      cryptonite.
      
      This commit was supported by the NSF-funded DataLad project.
      6dd806f1
  18. May 15, 2017
  19. May 10, 2017
  20. Apr 10, 2017
  21. Apr 07, 2017
  22. Mar 30, 2017
  23. Mar 21, 2017
  24. Mar 17, 2017
    • Joey Hess's avatar
      Support GIT_SSH and GIT_SSH_COMMAND · faecd73f
      Joey Hess authored
      They are handled close the same as they are by git. However, unlike git,
      git-annex sometimes needs to pass the -n parameter when using these.
      
      So, this has the potential for breaking some setup, and perhaps there ought
      to be a ANNEX_USE_GIT_SSH=1 needed to use these. But I'd rather avoid that
      if possible, so let's see if anyone complains.
      
      Almost all places where "ssh" was run have been changed to support the env
      vars. Anything still calling sshOptions does not support them. In
      particular, rsync special remotes don't. Seems that annex-rsync-transport
      already gives sufficient control there.
      
      (Fixed in passing: Remote.Helper.Ssh.toRepo used to extract
      remoteAnnexSshOptions and pass them to sshOptions, which was redundant
      since sshOptions also extracts those.)
      
      This commit was sponsored by Jeff Goeke-Smith on Patreon.
      faecd73f
  25. Mar 10, 2017
  26. Mar 01, 2017
  27. Feb 28, 2017
  28. Feb 25, 2017
  29. Feb 24, 2017
  30. Feb 20, 2017
  31. Feb 17, 2017
    • Joey Hess's avatar
      sync hack to make updateInstead work on eg FAT · e6857e75
      Joey Hess authored
      sync: When syncing with a local repository located on a crippled
      filesystem, run the post-receive hook there, since it wouldn't get run
      otherwise. This makes pushing to repos on FAT-formatted removable drives
      update them when receive.denyCurrentBranch=updateInstead.
      
      Made Remote.Git export onLocal, which was cleaned up to not have so many
      caveats about its use.
      
      This commit was sponsored by Jeff Goeke-Smith on Patreon.
      e6857e75
    • Joey Hess's avatar
      post-recive hook to make updateInstead work in direct mode and adjusted branches · d074532a
      Joey Hess authored
      * Added post-recieve hook, which makes updateInstead work with direct
        mode and adjusted branches.
      * init: Set up the post-receive hook.
      
      This commit was sponsored by Fernando Jimenez on Patreon.
      d074532a
  32. Feb 14, 2017