2 * Copyright (C) 2007 Michael Brown <mbrown@fensystems.co.uk>.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 * You can also choose to distribute this program under the terms of
20 * the Unmodified Binary Distribution Licence (as given in the file
21 * COPYING.UBDL), provided that you have satisfied its requirements.
24 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL
);
30 #include <ipxe/image.h>
31 #include <ipxe/downloader.h>
32 #include <ipxe/monojob.h>
33 #include <ipxe/open.h>
35 #include <usr/imgmgmt.h>
44 * Download a new image
47 * @v timeout Download timeout
48 * @v image Image to fill in
49 * @ret rc Return status code
51 int imgdownload ( struct uri
*uri
, unsigned long timeout
,
52 struct image
**image
) {
53 struct uri uri_redacted
;
54 char *uri_string_redacted
;
57 /* Construct redacted URI */
58 memcpy ( &uri_redacted
, uri
, sizeof ( uri_redacted
) );
59 uri_redacted
.user
= NULL
;
60 uri_redacted
.password
= NULL
;
61 uri_redacted
.equery
= NULL
;
62 uri_redacted
.efragment
= NULL
;
63 uri_string_redacted
= format_uri_alloc ( &uri_redacted
);
64 if ( ! uri_string_redacted
) {
70 uri
= resolve_uri ( cwuri
, uri
);
77 *image
= alloc_image ( uri
);
83 /* Create downloader */
84 if ( ( rc
= create_downloader ( &monojob
, *image
) ) != 0 ) {
85 printf ( "Could not start download: %s\n", strerror ( rc
) );
86 goto err_create_downloader
;
89 /* Wait for download to complete */
90 if ( ( rc
= monojob_wait ( uri_string_redacted
, timeout
) ) != 0 )
91 goto err_monojob_wait
;
94 if ( ( rc
= register_image ( *image
) ) != 0 ) {
95 printf ( "Could not register image: %s\n", strerror ( rc
) );
96 goto err_register_image
;
101 err_create_downloader
:
102 image_put ( *image
);
106 free ( uri_string_redacted
);
112 * Download a new image
114 * @v uri_string URI string
115 * @v timeout Download timeout
116 * @v image Image to fill in
117 * @ret rc Return status code
119 int imgdownload_string ( const char *uri_string
, unsigned long timeout
,
120 struct image
**image
) {
124 if ( ! ( uri
= parse_uri ( uri_string
) ) )
127 rc
= imgdownload ( uri
, timeout
, image
);
136 * @v name_uri Name or URI string
137 * @v timeout Download timeout
138 * @v image Image to fill in
139 * @ret rc Return status code
141 int imgacquire ( const char *name_uri
, unsigned long timeout
,
142 struct image
**image
) {
144 /* If we already have an image with the specified name, use it */
145 *image
= find_image ( name_uri
);
149 /* Otherwise, download a new image */
150 return imgdownload_string ( name_uri
, timeout
, image
);
154 * Display status of an image
156 * @v image Executable/loadable image
158 void imgstat ( struct image
*image
) {
159 printf ( "%s : %zd bytes", image
->name
, image
->len
);
161 printf ( " [%s]", image
->type
->name
);
162 if ( image
->flags
& IMAGE_TRUSTED
)
163 printf ( " [TRUSTED]" );
164 if ( image
->flags
& IMAGE_SELECTED
)
165 printf ( " [SELECTED]" );
166 if ( image
->flags
& IMAGE_AUTO_UNREGISTER
)
167 printf ( " [AUTOFREE]" );
168 if ( image
->cmdline
)
169 printf ( " \"%s\"", image
->cmdline
);
174 * Create image from block of memory
179 * @ret rc Return status code
181 int imgmem ( const char *name
, userptr_t data
, size_t len
) {
185 image
= image_memory ( name
, data
, len
);
187 printf ( "Could not create image\n" );