aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS20
-rw-r--r--doc/eclat-stop.18
-rw-r--r--doc/eclat.1man10
-rw-r--r--etc/default.fln9
-rw-r--r--lib/Makefile.am1
-rw-r--r--lib/forlan.c17
-rw-r--r--lib/libeclat.h9
-rw-r--r--lib/paramlist.c57
-rw-r--r--lib/reqcreat.c2
-rw-r--r--src/Makefile.am3
-rw-r--r--src/cmdline.opt16
-rw-r--r--src/eclat.c8
-rw-r--r--src/startstop.c12
-rw-r--r--src/stop-cl.opt33
14 files changed, 192 insertions, 13 deletions
diff --git a/NEWS b/NEWS
index 781203c..ed97650 100644
--- a/NEWS
+++ b/NEWS
@@ -1,2 +1,2 @@
1Eclat NEWS -- history of user-visible changes. 2015-01-23 1Eclat NEWS -- history of user-visible changes. 2015-02-02
2Copyright (C) 2012-2015 Sergey Poznyakoff 2Copyright (C) 2012-2015 Sergey Poznyakoff
@@ -14,2 +14,20 @@ Version 1.0.92, (Git)
14 14
15* New options:
16
17 -A, --add-parameter=NAME=VALUE
18
19Adds parameter NAME with the given VALUE to the generated AWS request.
20This option is intended for testing new AWS functionality for which
21eclat does not yet provide native support.
22
23 -p, --check-permissions
24
25Checks if you have the required permissions for the action, without
26actually making the request.
27
28* forcibly stop the instance
29
30eclat stop now supports -f (--force) option, which stops the instance
31forcibly.
32
15* Implement signature version 4 signing 33* Implement signature version 4 signing
diff --git a/doc/eclat-stop.1 b/doc/eclat-stop.1
index 5adbe61..a8f61a8 100644
--- a/doc/eclat-stop.1
+++ b/doc/eclat-stop.1
@@ -15,3 +15,3 @@
15.\" along with Eclat. If not, see <http://www.gnu.org/licenses/>. 15.\" along with Eclat. If not, see <http://www.gnu.org/licenses/>.
16.TH ECLAT-STOP 1 "January 26, 2015" "ECLAT" "Eclat User Reference" 16.TH ECLAT-STOP 1 "February 2, 2015" "ECLAT" "Eclat User Reference"
17.SH NAME 17.SH NAME
@@ -19,3 +19,3 @@ eclat-stop, eclat-stop-instances \- stop EC2 instances
19.SH SYNOPSIS 19.SH SYNOPSIS
20\fBeclat stop\fR \fIID\fR [\fIID\fR...] 20\fBeclat stop\fR [\fB\-f\fR] [\fB\-\-force\fR] \fIID\fR [\fIID\fR...]
21.PP 21.PP
@@ -26,2 +26,6 @@ The command
26stops running Amazon EBS-backed instances. 26stops running Amazon EBS-backed instances.
27.SH OPTIONS
28.TP
29\fB\-f\fR, \fB\-\-force\fR
30Forcibly stop the instance.
27.SH OUTPUT 31.SH OUTPUT
diff --git a/doc/eclat.1man b/doc/eclat.1man
index 50cc3e2..829bec6 100644
--- a/doc/eclat.1man
+++ b/doc/eclat.1man
@@ -15,3 +15,3 @@
15.\" along with Eclat. If not, see <http://www.gnu.org/licenses/>. 15.\" along with Eclat. If not, see <http://www.gnu.org/licenses/>.
16.TH ECLAT 1 "January 21, 2015" "ECLAT" "Eclat User Reference" 16.TH ECLAT 1 "February 2, 2015" "ECLAT" "Eclat User Reference"
17.SH NAME 17.SH NAME
@@ -468,2 +468,10 @@ Dump configuration grammar traces.
468Dump lexical analyzer traces. 468Dump lexical analyzer traces.
469.TP
470\fB\-p\fR, \fB\-\-check\-permissions\fR
471Check if you have the required permissions for the action, without
472actually making the request. This is equivalent to
473\fB\-\-add\-parameter=DryRun=true\fR.
474.TP
475\fB\-A\fR, \fB\-\-add\-parameter=\fINAME\fB=\fIVALUE\fR
476Add parameter to the AWS request.
469.SS Help and additional information 477.SS Help and additional information
diff --git a/etc/default.fln b/etc/default.fln
index 178af18..d3da5eb 100644
--- a/etc/default.fln
+++ b/etc/default.fln
@@ -17,5 +17,12 @@
17if (.Response.Errors) { 17if (.Response.Errors) {
18 error("Error: ",.Response.Errors.Error.Message,"\n"); 18 if (.Response.Errors.Error.Code[DryRunOperation]) {
19 print(dequote(.Response.Errors.Error.Message),"\n");
20 } else if (.Response.Errors.Error.Code[UnauthorizedOperation]) {
21 error(dequote(.Response.Errors.Error.Message),"\n");
19 exit(1); 22 exit(1);
20 } else { 23 } else {
24 error("Error: ",dequote(.Response.Errors.Error.Message),"\n");
25 exit(1);
26 }
27} else {
21 error("Unrecognized response:\n"); 28 error("Unrecognized response:\n");
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 5cfa67a..711bc98 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -55,2 +55,3 @@ libeclat_a_SOURCES=\
55 map.c\ 55 map.c\
56 paramlist.c\
56 path.c\ 57 path.c\
diff --git a/lib/forlan.c b/lib/forlan.c
index 2275bc7..977271d 100644
--- a/lib/forlan.c
+++ b/lib/forlan.c
@@ -1051,2 +1051,18 @@ func_decode(forlan_eval_env_t env, struct grecs_list *list)
1051static void 1051static void
1052func_dequote(forlan_eval_env_t env, struct grecs_list *list)
1053{
1054 struct forlan_value *val = list->head->data;
1055 char *s = val->v.string;
1056 size_t l = strlen(s);
1057
1058 if (l >= 2 && s[0] == '"' && s[l-1] == '"') {
1059 s++;
1060 l -= 2;
1061 }
1062 env->retval.v.string = grecs_malloc(l + 1);
1063 memcpy(env->retval.v.string, s, l);
1064 env->retval.v.string[l] = 0;
1065}
1066
1067static void
1052func_exit(forlan_eval_env_t env, struct grecs_list *list) 1068func_exit(forlan_eval_env_t env, struct grecs_list *list)
@@ -1129,2 +1145,3 @@ static struct forlan_function functab[] = {
1129 { "decode", forlan_value_literal, "s", 1, 1, func_decode }, 1145 { "decode", forlan_value_literal, "s", 1, 1, func_decode },
1146 { "dequote", forlan_value_literal, "s", 1, 1, func_dequote },
1130 { "exit", forlan_value_void, "s", 1, 1, func_exit }, 1147 { "exit", forlan_value_void, "s", 1, 1, func_exit },
diff --git a/lib/libeclat.h b/lib/libeclat.h
index b33f0a2..770fb7d 100644
--- a/lib/libeclat.h
+++ b/lib/libeclat.h
@@ -107,2 +107,4 @@ struct ec2_request *eclat_request_create(int flags, const char *endpoint,
107void eclat_request_free(struct ec2_request *); 107void eclat_request_free(struct ec2_request *);
108void eclat_request_add_param0(struct ec2_request *req, const char *name,
109 const char *value, int encoded);
108void eclat_request_add_param(struct ec2_request *req, const char *name, 110void eclat_request_add_param(struct ec2_request *req, const char *name,
@@ -121,2 +123,9 @@ void eclat_request_finalize(struct ec2_request *req);
121 123
124void ec2_param_free(void *ptr);
125
126struct grecs_list *ec2_param_list_create(void);
127void ec2_param_list_append(struct grecs_list **lp, char const *name,
128 char const *val);
129void eclat_request_add_param_list(struct ec2_request *req,
130 struct grecs_list *lp);
122 131
diff --git a/lib/paramlist.c b/lib/paramlist.c
new file mode 100644
index 0000000..6d6c40a
--- /dev/null
+++ b/lib/paramlist.c
@@ -0,0 +1,57 @@
1/* This file is part of Eclat.
2 Copyright (C) 2012-2015 Sergey Poznyakoff.
3
4 Eclat is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3, or (at your option)
7 any later version.
8
9 Eclat is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with Eclat. If not, see <http://www.gnu.org/licenses/>. */
16
17#include <config.h>
18#include <string.h>
19#include "libeclat.h"
20#include "grecs.h"
21
22struct grecs_list *
23ec2_param_list_create()
24{
25 struct grecs_list *lp = grecs_list_create();
26 lp->free_entry = ec2_param_free;
27 return lp;
28}
29
30void
31ec2_param_list_append(struct grecs_list **lpp, char const *name,
32 char const *val)
33{
34 struct ec2_param *p;
35 if (!*lpp)
36 *lpp = ec2_param_list_create();
37 p = grecs_zalloc(sizeof(*p));
38 p->name = grecs_strdup(name);
39 p->value = grecs_strdup(val);
40 p->encoded = 0;
41 grecs_list_append(*lpp, p);
42}
43
44void
45eclat_request_add_param_list(struct ec2_request *req, struct grecs_list *lp)
46{
47 struct grecs_list_entry *ep;
48
49 if (!lp)
50 return;
51 for (ep = lp->head; ep; ep = ep->next) {
52 struct ec2_param *param = ep->data;
53 eclat_request_add_param0(req,
54 param->name, param->value,
55 param->encoded);
56 }
57}
diff --git a/lib/reqcreat.c b/lib/reqcreat.c
index 65f7880..58d7829 100644
--- a/lib/reqcreat.c
+++ b/lib/reqcreat.c
@@ -20,3 +20,3 @@
20 20
21static void 21void
22ec2_param_free(void *ptr) 22ec2_param_free(void *ptr)
diff --git a/src/Makefile.am b/src/Makefile.am
index 1aa8703..7ec7c66 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -104,3 +104,4 @@ OPTFILES=\
104 setiattr-cl.opt\ 104 setiattr-cl.opt\
105 setaattr-cl.opt 105 setaattr-cl.opt\
106 stop-cl.opt
106 107
diff --git a/src/cmdline.opt b/src/cmdline.opt
index 6da23c2..8a707ec 100644
--- a/src/cmdline.opt
+++ b/src/cmdline.opt
@@ -261,2 +261,8 @@ END
261 261
262OPTION(check-permissions,p,,
263 [<check if the requested action is permitted for current account>])
264BEGIN
265 ec2_param_list_append(&extra_param, "DryRun", "true");
266END
267
262OPTION(dump-grammar-trace,,, 268OPTION(dump-grammar-trace,,,
@@ -281,2 +287,12 @@ END
281 287
288OPTION(add-parameter,A,NAME=VALUE,
289 [<pass additional parameter to the AWS request>])
290BEGIN
291 char *p = strchr(optarg, '=');
292 if (!p)
293 die(EX_USAGE, "malformed parameter: %s", optarg);
294 *p++ = 0;
295 ec2_param_list_append(&extra_param, optarg, p);
296END
297