2010-10-19 07:32:50 +00:00
|
|
|
#!/usr/bin/env ruby
|
2012-06-29 05:18:28 +00:00
|
|
|
# -*- coding: binary -*-
|
2010-10-19 07:32:50 +00:00
|
|
|
|
2011-10-23 12:04:41 +00:00
|
|
|
# $Id$
|
|
|
|
# $Revision$
|
|
|
|
|
2010-10-19 07:32:50 +00:00
|
|
|
msfbase = __FILE__
|
2012-10-03 22:06:38 +00:00
|
|
|
while File.symlink?(msfbase)
|
2010-10-19 07:32:50 +00:00
|
|
|
msfbase = File.expand_path(File.readlink(msfbase), File.dirname(msfbase))
|
|
|
|
end
|
|
|
|
|
2012-11-05 17:48:09 +00:00
|
|
|
@msfbase_dir = File.dirname(msfbase)
|
2012-11-05 17:44:53 +00:00
|
|
|
|
2012-10-01 17:30:29 +00:00
|
|
|
@args = ARGV.dup
|
2010-10-19 07:32:50 +00:00
|
|
|
|
2012-10-09 21:56:22 +00:00
|
|
|
# May be changed
|
2012-10-09 21:25:06 +00:00
|
|
|
@configdir = File.expand_path(File.join(File.dirname(msfbase), "data", "svn"))
|
|
|
|
|
2012-11-05 17:48:09 +00:00
|
|
|
Dir.chdir(@msfbase_dir)
|
2010-10-19 07:32:50 +00:00
|
|
|
|
|
|
|
$stderr.puts "[*]"
|
|
|
|
$stderr.puts "[*] Attempting to update the Metasploit Framework..."
|
|
|
|
$stderr.puts "[*]"
|
2010-10-19 08:22:44 +00:00
|
|
|
$stderr.puts ""
|
|
|
|
|
2011-10-10 21:20:56 +00:00
|
|
|
if not (Process.uid == 0 or File.stat(msfbase).owned?)
|
2011-10-10 21:10:50 +00:00
|
|
|
$stderr.puts "[-] ERROR: User running msfupdate does not own the metasploit install"
|
|
|
|
$stderr.puts "Please run msfupdate as the same user who installed metasploit."
|
2011-10-10 21:08:04 +00:00
|
|
|
end
|
|
|
|
|
2012-11-05 17:44:53 +00:00
|
|
|
|
2012-11-05 17:48:09 +00:00
|
|
|
def is_git
|
|
|
|
File.directory?(File.join(@msfbase_dir, ".git"))
|
2012-11-05 17:44:53 +00:00
|
|
|
end
|
|
|
|
|
2012-11-05 17:48:09 +00:00
|
|
|
def is_svn
|
|
|
|
File.directory?(File.join(@msfbase_dir, ".svn"))
|
2012-11-05 17:44:53 +00:00
|
|
|
end
|
|
|
|
|
2012-11-05 18:13:10 +00:00
|
|
|
def print_deprecation_warning
|
2012-11-05 18:15:11 +00:00
|
|
|
$stdout.puts "[*] Deprecation Note: The next version of Metasploit will"
|
|
|
|
$stdout.puts "[*] update over the git protocol, which requires outbound"
|
|
|
|
$stdout.puts "[*] access to github.com:9418/TCP."
|
|
|
|
$stdout.puts "[*] Please adjust your egress firewall rules accordingly."
|
2012-11-05 17:44:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Some of these args are meaningful for SVN, some for Git,
|
|
|
|
# some for both. Fun times.
|
2012-10-01 17:41:36 +00:00
|
|
|
@args.each_with_index do |arg,i|
|
2012-10-01 18:07:51 +00:00
|
|
|
case arg
|
2012-11-05 17:44:53 +00:00
|
|
|
# Handle the old wait/nowait argument behavior
|
2012-10-10 14:50:30 +00:00
|
|
|
when "wait", "nowait"
|
2012-10-01 18:10:58 +00:00
|
|
|
@wait_index = i
|
2012-10-10 14:50:30 +00:00
|
|
|
@actually_wait = (arg == "wait")
|
2012-11-05 17:44:53 +00:00
|
|
|
# An empty or absent config-dir means a default config-dir
|
2012-10-10 15:17:22 +00:00
|
|
|
when "--config-dir"
|
|
|
|
@configdir_index = i
|
2012-11-05 17:44:53 +00:00
|
|
|
# A defined config dir means a defined config-dir
|
2012-10-10 15:17:22 +00:00
|
|
|
when /--config-dir=(.*)?/
|
2012-10-01 18:07:51 +00:00
|
|
|
# Spaces in the directory should be fine since this whole thing is passed
|
|
|
|
# as a single argument via the multi-arg syntax for system() below.
|
2012-10-10 15:17:22 +00:00
|
|
|
@configdir = $1
|
2012-10-01 18:10:58 +00:00
|
|
|
@configdir_index = i
|
2012-11-05 17:56:05 +00:00
|
|
|
when /--git-remote=([^\s]*)?/
|
|
|
|
@git_remote = $1
|
|
|
|
@git_remote_index = i
|
|
|
|
when /--git-branch=([^\s]*)?/
|
|
|
|
@git_branch = $1
|
|
|
|
@git_branch_index = i
|
2012-10-01 17:41:36 +00:00
|
|
|
end
|
2011-06-27 20:30:44 +00:00
|
|
|
end
|
|
|
|
|
2012-10-10 15:17:22 +00:00
|
|
|
@args[@wait_index] = nil if @wait_index
|
|
|
|
@args[@configdir_index] = nil if @configdir_index
|
2012-11-05 17:56:05 +00:00
|
|
|
|
|
|
|
@args[@git_remote_index] = nil if @git_remote_index
|
|
|
|
@args[@git_branch_index] = nil if @git_branch_index
|
2012-10-10 15:17:22 +00:00
|
|
|
@args = @args.compact
|
2011-06-27 20:30:44 +00:00
|
|
|
|
2012-11-05 17:44:53 +00:00
|
|
|
####### Since we're SVN, do it all this way #######
|
|
|
|
if is_svn
|
2012-11-05 18:13:10 +00:00
|
|
|
print_deprecation_warning
|
2012-11-05 17:44:53 +00:00
|
|
|
@args.push("--config-dir=#{@configdir}")
|
|
|
|
@args.push("--non-interactive")
|
|
|
|
|
|
|
|
res = system("svn", "cleanup")
|
|
|
|
if res.nil?
|
|
|
|
$stderr.puts "[-] ERROR: Failed to run svn"
|
|
|
|
$stderr.puts ""
|
|
|
|
$stderr.puts "[-] If you used a binary installer, make sure you run the symlink in"
|
|
|
|
$stderr.puts "[-] /usr/local/bin instead of running this file directly (e.g.: ./msfupdate)"
|
|
|
|
$stderr.puts "[-] to ensure a proper environment."
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
# Cleanup worked, go ahead and update
|
|
|
|
system("svn", "update", *@args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
####### Since we're Git, do it all that way #######
|
|
|
|
if is_git
|
2012-11-05 17:56:05 +00:00
|
|
|
remote = @git_remote || "origin"
|
|
|
|
branch = @git_branch || "master"
|
2012-11-05 20:37:32 +00:00
|
|
|
# This will save local changes in a stash, but won't
|
|
|
|
# attempt to reapply them. If the user wants them back
|
|
|
|
# they can always git stash pop them, and that presumes
|
|
|
|
# they know what they're doing when they're editing local
|
|
|
|
# checkout, which presumes they're not using msfupdate
|
|
|
|
# to begin with.
|
|
|
|
#
|
|
|
|
# Note, this requires at least user.name and user.email
|
|
|
|
# to be configured in the global git config. Installers should
|
|
|
|
# take care that this is done. TODO: Enforce this in msfupdate
|
|
|
|
res = system("git", "stash")
|
2012-11-05 17:44:53 +00:00
|
|
|
if res.nil?
|
|
|
|
$stderr.puts "[-] ERROR: Failed to run git"
|
|
|
|
$stderr.puts ""
|
|
|
|
$stderr.puts "[-] If you used a binary installer, make sure you run the symlink in"
|
|
|
|
$stderr.puts "[-] /usr/local/bin instead of running this file directly (e.g.: ./msfupdate)"
|
|
|
|
$stderr.puts "[-] to ensure a proper environment."
|
|
|
|
exit 1
|
2012-11-05 20:52:14 +00:00
|
|
|
else
|
|
|
|
$stdout.puts "[*] Stashed local changes (if any) to avoid merge conflicts."
|
|
|
|
$stdout.puts "[*] Run 'git stash pop' to reapply local changes."
|
2012-11-05 17:44:53 +00:00
|
|
|
end
|
|
|
|
|
2012-11-05 20:37:32 +00:00
|
|
|
system("git", "reset", "HEAD", "--hard")
|
2012-11-05 17:56:05 +00:00
|
|
|
system("git", "checkout", branch)
|
2012-11-05 17:44:53 +00:00
|
|
|
system("git", "fetch")
|
2012-11-05 17:56:05 +00:00
|
|
|
system("git", "merge", "#{remote}/#{branch}")
|
2012-11-05 17:44:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
unless is_svn || is_git
|
2012-11-05 17:48:09 +00:00
|
|
|
raise RuntimeError, "Cannot determine checkout type: `#{@msfbase_dir}'"
|
2011-09-15 15:31:08 +00:00
|
|
|
end
|
2011-05-03 23:58:41 +00:00
|
|
|
|
2012-10-10 14:50:30 +00:00
|
|
|
if @actually_wait
|
2010-10-19 08:22:44 +00:00
|
|
|
$stderr.puts ""
|
|
|
|
$stderr.puts "[*] Please hit enter to exit"
|
2011-09-15 15:31:08 +00:00
|
|
|
$stderr.puts ""
|
2010-10-19 08:22:44 +00:00
|
|
|
$stdin.readline
|
|
|
|
end
|