summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorChris Larson <kergoth@openedhand.com>2006-07-21 08:20:48 +0000
committerChris Larson <kergoth@openedhand.com>2006-07-21 08:20:48 +0000
commit29427c4df3ad615f195fbd5832019a6b004373d4 (patch)
treed51cb8bf83be47e49c1cb527dbd18dfec73d5124 /bitbake
parent5e32494f2eb37f091089215843e972e2d07c4816 (diff)
downloadpoky-29427c4df3ad615f195fbd5832019a6b004373d4.tar.gz
Add initial SSH fetcher to bitbake.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@524 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/fetch/__init__.py2
-rw-r--r--bitbake/lib/bb/fetch/ssh.py122
2 files changed, 124 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py
index a2defd25a5..7ab0590765 100644
--- a/bitbake/lib/bb/fetch/__init__.py
+++ b/bitbake/lib/bb/fetch/__init__.py
@@ -213,6 +213,7 @@ import local
213import svn 213import svn
214import wget 214import wget
215import svk 215import svk
216import ssh
216 217
217methods.append(cvs.Cvs()) 218methods.append(cvs.Cvs())
218methods.append(git.Git()) 219methods.append(git.Git())
@@ -220,3 +221,4 @@ methods.append(local.Local())
220methods.append(svn.Svn()) 221methods.append(svn.Svn())
221methods.append(wget.Wget()) 222methods.append(wget.Wget())
222methods.append(svk.Svk()) 223methods.append(svk.Svk())
224methods.append(ssh.SSH())
diff --git a/bitbake/lib/bb/fetch/ssh.py b/bitbake/lib/bb/fetch/ssh.py
new file mode 100644
index 0000000000..57874d5ba9
--- /dev/null
+++ b/bitbake/lib/bb/fetch/ssh.py
@@ -0,0 +1,122 @@
1#!/usr/bin/env python
2# ex:ts=4:sw=4:sts=4:et
3# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
4'''
5BitBake 'Fetch' implementations
6
7This implementation is for Secure Shell (SSH), and attempts to comply with the
8IETF secsh internet draft:
9 http://tools.ietf.org/wg/secsh/draft-ietf-secsh-scp-sftp-ssh-uri/
10
11 Currently does not support the sftp parameters, as this uses scp
12 Also does not support the 'fingerprint' connection parameter.
13
14Copyright (C) 2006 OpenedHand Ltd.
15
16Based in part on svk.py:
17 Copyright (C) 2006 Holger Hans Peter Freyther
18 Based on svn.py:
19 Copyright (C) 2003, 2004 Chris Larson
20 Based on functions from the base bb module:
21 Copyright 2003 Holger Schurig
22
23
24This program is free software; you can redistribute it and/or modify it under
25the terms of the GNU General Public License as published by the Free Software
26Foundation; either version 2 of the License, or (at your option) any later
27version.
28
29This program is distributed in the hope that it will be useful, but WITHOUT
30ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
31FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
32
33You should have received a copy of the GNU General Public License along with
34this program; if not, write to the Free Software Foundation, Inc., 59 Temple
35Place, Suite 330, Boston, MA 02111-1307 USA.
36'''
37import re, os
38import bb
39from bb import data
40from bb.fetch import Fetch
41from bb.fetch import FetchError
42from bb.fetch import MissingParameterError
43
44
45__pattern__ = re.compile(r'''
46 \s* # Skip leading whitespace
47 ssh:// # scheme
48 ( # Optional username/password block
49 (?P<user>\S+) # username
50 (:(?P<pass>\S+))? # colon followed by the password (optional)
51 )?
52 (?P<cparam>(;[^;]+)*)? # connection parameters block (optional)
53 @
54 (?P<host>\S+?) # non-greedy match of the host
55 (:(?P<port>[0-9]+))? # colon followed by the port (optional)
56 /
57 (?P<path>[^;]+) # path on the remote system, may be absolute or relative,
58 # and may include the use of '~' to reference the remote home
59 # directory
60 (?P<sparam>(;[^;]+)*)? # parameters block (optional)
61 $
62''', re.VERBOSE)
63
64class SSH(Fetch):
65 '''Class to fetch a module or modules via Secure Shell'''
66
67 def supports(self, url, d):
68 return __pattern__.match(url) != None
69
70 def localpath(self, url, d):
71 m = __pattern__.match(url)
72 path = m.group('path')
73 host = m.group('host')
74 lpath = os.path.join(data.getVar('DL_DIR', d, 1), host, os.path.basename(path))
75 return lpath
76
77 def go(self, d, urls = []):
78 if not urls:
79 urls = self.urls
80
81 for url in urls:
82 dldir = data.getVar('DL_DIR', d, 1)
83
84 m = __pattern__.match(url)
85 path = m.group('path')
86 host = m.group('host')
87 port = m.group('port')
88 user = m.group('user')
89 password = m.group('pass')
90
91 ldir = os.path.join(dldir, host)
92 lpath = os.path.join(ldir, os.path.basename(path))
93
94 if not os.path.exists(ldir):
95 os.makedirs(ldir)
96
97 if port:
98 port = '-P %s' % port
99 else:
100 port = ''
101
102 if user:
103 fr = user
104 if password:
105 fr += ':%s' % password
106 fr += '@%s' % host
107 else:
108 fr = host
109 fr += ':%s' % path
110
111
112 import commands
113 cmd = 'scp -B -r %s %s %s/' % (
114 port,
115 commands.mkarg(fr),
116 commands.mkarg(ldir)
117 )
118
119 (exitstatus, output) = commands.getstatusoutput(cmd)
120 if exitstatus != 0:
121 print output
122 raise FetchError('Unable to fetch %s' % url)