Move struct ignoretab stuff to new ignoretab.c and rewrite..
[s-mailx.git] / accmacvar.c
blob86d1bb61c8b8a6acbecedb0ca77b93bef785e660
1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Account, macro and variable handling.
3 *@ HOWTO add a new non-dynamic boolean or value option:
4 *@ - add an entry to nail.h:enum okeys
5 *@ - run mk-okey-map.pl
6 *@ - update the manual!
7 *@ TODO . should be recursive environment based
8 *@ TODO . undefining and overwriting a macro should always be possible:
9 *@ TODO simply place the thing in a delete-later list and replace the
10 *@ TODO accessible entry! (instant delete if on top recursion level.)
11 *@ TODO . Likewise, overwriting an existing should be like delete+create
12 *@ TODO . once we can have non-fatal !0 returns for commands, we should
13 *@ TODO return error if "(environ)? unset" goes for non-existent.
15 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
16 * Copyright (c) 2012 - 2015 Steffen (Daode) Nurpmeso <sdaoden@users.sf.net>.
19 * Copyright (c) 1980, 1993
20 * The Regents of the University of California. All rights reserved.
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the above copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. Neither the name of the University nor the names of its contributors
31 * may be used to endorse or promote products derived from this software
32 * without specific prior written permission.
34 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
35 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
36 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
37 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
38 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
39 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
40 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
41 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
42 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
43 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
44 * SUCH DAMAGE.
46 #undef n_FILE
47 #define n_FILE accmacvar
49 #ifndef HAVE_AMALGAMATION
50 # define _ACCMACVAR_SOURCE /* For _features[] */
51 # include "nail.h"
52 #endif
54 #if !defined HAVE_SETENV && !defined HAVE_PUTENV
55 # error Exactly one of HAVE_SETENV and HAVE_PUTENV
56 #endif
58 /* Note: changing the hash function must be reflected in mk-okey-map.pl */
59 #define a_AMV_PRIME HSHSIZE
60 #define a_AMV_NAME2HASH(N) torek_hash(N)
61 #define a_AMV_HASH2PRIME(H) ((H) % a_AMV_PRIME)
63 enum a_amv_mac_flags{
64 a_AMV_MF_NONE = 0,
65 a_AMV_MF_ACC = 1<<0, /* This macro is an `account' */
66 a_AMV_MF_TYPE_MASK = a_AMV_MF_ACC,
67 a_AMV_MF_UNDEF = 1<<1, /* Unlink after lookup */
68 a_AMV_MF_DEL = 1<<7, /* Current `account': deleted while active */
69 a_AMV_MF__MAX = 0xFF
72 /* mk-okey-map.pl ensures that _VIRT implies _RDONLY and _NODEL, and that
73 * _IMPORT implies _ENV; it doesn't verify anything... */
74 enum a_amv_var_flags{
75 a_AMV_VF_NONE = 0,
76 a_AMV_VF_BOOL = 1<<0, /* ok_b_* */
77 a_AMV_VF_VIRT = 1<<1, /* "Stateless" automatic variable */
78 a_AMV_VF_RDONLY = 1<<2, /* May not be set by user */
79 a_AMV_VF_NODEL = 1<<3, /* May not be deleted */
80 a_AMV_VF_NOTEMPTY = 1<<4, /* May not be assigned an empty value */
81 a_AMV_VF_NOCNTRLS = 1<<5, /* Value may not contain control characters */
82 a_AMV_VF_NUM = 1<<6, /* Value must be a 32-bit number */
83 a_AMV_VF_POSNUM = 1<<7, /* Value must be positive 32-bit number */
84 a_AMV_VF_VIP = 1<<8, /* Wants _var_check_vips() evaluation */
85 a_AMV_VF_IMPORT = 1<<9, /* Import ONLY from environ (before PS_STARTED) */
86 a_AMV_VF_ENV = 1<<10, /* Update environment on change */
87 a_AMV_VF_I3VAL = 1<<11, /* Has an initial value */
88 a_AMV_VF_DEFVAL = 1<<12, /* Has a default value */
89 a_AMV_VF_LINKED = 1<<13, /* `environ' linked */
90 a_AMV_VF__MASK = (1<<(13+1)) - 1
93 struct a_amv_mac{
94 struct a_amv_mac *am_next;
95 ui32_t am_maxlen; /* of any line in .am_line_dat */
96 ui32_t am_line_cnt; /* of *.am_line_dat (but NULL terminated) */
97 struct a_amv_mac_line **am_line_dat; /* TODO use deque? */
98 struct a_amv_var *am_lopts; /* `localopts' unroll list */
99 ui8_t am_flags; /* enum a_amv_mac_flags */
100 char am_name[VFIELD_SIZE(7)]; /* of this macro */
102 n_CTA(a_AMV_MF__MAX <= UI8_MAX, "Enumeration excesses storage datatype");
104 struct a_amv_mac_line{
105 ui32_t aml_len;
106 ui32_t aml_prespc; /* Number of leading SPC, for display purposes */
107 char aml_dat[VFIELD_SIZE(0)];
110 struct a_amv_mac_call_args{
111 char const *amca_name;
112 struct a_amv_mac const *amca_amp;
113 struct a_amv_var **amca_unroller;
114 void (*amca_hook_pre)(void *);
115 void (*amca_hook_post)(void *);
116 void *amca_hook_arg;
117 bool_t amca_lopts_on;
118 ui8_t amca__pad[7];
121 struct a_amv_lostack{
122 struct a_amv_lostack *as_up; /* Outer context */
123 struct a_amv_mac *as_mac; /* Context (`account' or `define') */
124 struct a_amv_var *as_lopts;
125 bool_t as_unroll; /* Unrolling enabled? */
126 ui8_t avs__pad[7];
129 struct a_amv_var{
130 struct a_amv_var *av_link;
131 char *av_value;
132 #ifdef HAVE_PUTENV
133 char *av_env; /* Actively managed putenv(3) memory */
134 #endif
135 ui16_t av_flags; /* enum a_amv_var_flags */
136 char av_name[VFIELD_SIZE(6)];
138 n_CTA(a_AMV_VF__MASK <= UI16_MAX, "Enumeration excesses storage datatype");
140 struct a_amv_var_map{
141 ui32_t avm_hash;
142 ui16_t avm_keyoff;
143 ui16_t avm_flags; /* enum a_amv_var_flags */
145 n_CTA(a_AMV_VF__MASK <= UI16_MAX, "Enumeration excesses storage datatype");
147 struct a_amv_var_virt{
148 ui32_t avv_okey;
149 struct a_amv_var const *avv_var;
152 struct a_amv_var_defval{
153 ui32_t avdv_okey;
154 ui8_t avdv__pad[4];
155 char const *avdv_value; /* Only for !BOOL (otherwise plain existence) */
158 struct a_amv_var_carrier{
159 char const *avc_name;
160 ui32_t avc_hash;
161 ui32_t avc_prime;
162 struct a_amv_var *avc_var;
163 struct a_amv_var_map const *avc_map;
164 enum okeys avc_okey;
167 /* Include the constant mk-okey-map.pl output */
168 #include "version.h"
169 #include "okeys.h"
171 /* The currently active account */
172 static struct a_amv_mac *a_amv_acc_curr;
174 static struct a_amv_mac *a_amv_macs[a_AMV_PRIME]; /* TODO dynamically spaced */
176 /* Unroll list of currently running macro stack */
177 static struct a_amv_lostack *a_amv_lopts;
179 static struct a_amv_var *a_amv_vars[a_AMV_PRIME]; /* TODO dynamically spaced */
181 /* TODO We really deserve localopts support for *folder-hook*s, so hack it in
182 * TODO today via a static lostack, it should be a field in mailbox, once that
183 * TODO is a real multi-instance object */
184 static struct a_amv_var *a_amv_folder_hook_lopts;
186 /* TODO Rather ditto (except for storage -> cmd_ctx), compose hooks */
187 static struct a_amv_var *a_amv_compose_lopts;
189 /* Does cp consist solely of WS and a } */
190 static bool_t a_amv_mac_is_closing_angle(char const *cp);
192 /* Lookup for macros/accounts */
193 static struct a_amv_mac *a_amv_mac_lookup(char const *name,
194 struct a_amv_mac *newamp, enum a_amv_mac_flags amf);
196 /* Execute a macro */
197 static bool_t a_amv_mac_exec(struct a_amv_mac_call_args *amcap);
199 /* User display helpers */
200 static bool_t a_amv_mac_show(enum a_amv_mac_flags amf);
202 /* _def() returns error for faulty definitions and already existing * names,
203 * _undef() returns error if a named thing doesn't exist */
204 static bool_t a_amv_mac_def(char const *name, enum a_amv_mac_flags amf);
205 static bool_t a_amv_mac_undef(char const *name, enum a_amv_mac_flags amf);
207 /* */
208 static void a_amv_mac_free(struct a_amv_mac *amp);
210 /* Update replay-log */
211 static void a_amv_lopts_add(struct a_amv_lostack *alp, char const *name,
212 struct a_amv_var *oavp);
213 static void a_amv_lopts_unroll(struct a_amv_var **avpp);
215 /* Special cased value string allocation */
216 static char *a_amv_var_copy(char const *str);
217 static void a_amv_var_free(char *cp);
219 /* Check for special housekeeping */
220 static bool_t a_amv_var_check_vips(enum okeys okey, bool_t enable, char **val);
222 /* _VF_NOCNTRLS, _VF_NUM / _VF_POSNUM */
223 static bool_t a_amv_var_check_nocntrls(char const *val);
224 static bool_t a_amv_var_check_num(char const *val, bool_t pos);
226 /* If a variable name begins with a lowercase-character and contains at
227 * least one '@', it is converted to all-lowercase. This is necessary
228 * for lookups of names based on email addresses.
229 * Following the standard, only the part following the last '@' should
230 * be lower-cased, but practice has established otherwise here */
231 static char const *a_amv_var_canonify(char const *vn);
233 /* Try to reverse lookup an option name to an enum okeys mapping.
234 * Updates .avc_name and .avc_hash; .avc_map is NULL if none found */
235 static bool_t a_amv_var_revlookup(struct a_amv_var_carrier *avcp,
236 char const *name);
238 /* Lookup a variable from .avc_(map|name|hash), return wether it was found.
239 * Sets .avc_prime; .avc_var is NULL if not found.
240 * Here it is where we care for _I3VAL and _DEFVAL, too.
241 * An _I3VAL will be "consumed" as necessary anyway, but it won't be used to
242 * create a new variable if i3val_nonew is true; if i3val_nonew is TRUM1 then
243 * we set .avc_var to -1 and return true if that was the case, otherwise we'll
244 * return FAL0, then! */
245 static bool_t a_amv_var_lookup(struct a_amv_var_carrier *avcp,
246 bool_t i3val_nonew);
248 /* Set var from .avc_(map|name|hash), return success */
249 static bool_t a_amv_var_set(struct a_amv_var_carrier *avcp, char const *value,
250 bool_t force_env);
252 static bool_t a_amv_var__putenv(struct a_amv_var_carrier *avcp,
253 struct a_amv_var *avp);
255 /* Clear var from .avc_(map|name|hash); sets .avc_var=NULL, return success */
256 static bool_t a_amv_var_clear(struct a_amv_var_carrier *avcp, bool_t force_env);
258 static bool_t a_amv_var__clearenv(char const *name, char *value);
260 /* List all variables */
261 static void a_amv_var_show_all(void);
263 static int a_amv_var__show_cmp(void const *s1, void const *s2);
265 /* Actually do print one, return number of lines written */
266 static size_t a_amv_var_show(char const *name, FILE *fp, struct n_string *msgp);
268 /* Shared c_set() and c_environ():set impl, return success */
269 static bool_t a_amv_var_c_set(char **ap, bool_t issetenv);
271 static bool_t
272 a_amv_mac_is_closing_angle(char const *cp){
273 bool_t rv;
274 NYD2_ENTER;
276 while(spacechar(*cp))
277 ++cp;
279 if((rv = (*cp++ == '}'))){
280 while(spacechar(*cp))
281 ++cp;
282 rv = (*cp == '\0');
284 NYD2_LEAVE;
285 return rv;
288 static struct a_amv_mac *
289 a_amv_mac_lookup(char const *name, struct a_amv_mac *newamp,
290 enum a_amv_mac_flags amf){
291 struct a_amv_mac *amp, **ampp;
292 ui32_t h;
293 enum a_amv_mac_flags save_amf;
294 NYD2_ENTER;
296 save_amf = amf;
297 amf &= a_AMV_MF_TYPE_MASK;
298 h = a_AMV_NAME2HASH(name);
299 h = a_AMV_HASH2PRIME(h);
300 ampp = &a_amv_macs[h];
302 for(amp = *ampp; amp != NULL; ampp = &(*ampp)->am_next, amp = amp->am_next){
303 if((amp->am_flags & a_AMV_MF_TYPE_MASK) == amf &&
304 !strcmp(amp->am_name, name)){
305 if(LIKELY((save_amf & a_AMV_MF_UNDEF) == 0))
306 goto jleave;
308 *ampp = amp->am_next;
310 if((amf & a_AMV_MF_ACC) &&
311 account_name != NULL && !strcmp(account_name, name)){
312 amp->am_flags |= a_AMV_MF_DEL;
313 n_err(_("Delayed deletion of active account \"%s\"\n"), name);
314 }else{
315 a_amv_mac_free(amp);
316 amp = (struct a_amv_mac*)-1;
318 goto jleave;
322 if(newamp != NULL){
323 ampp = &a_amv_macs[h];
324 newamp->am_next = *ampp;
325 *ampp = newamp;
326 amp = NULL;
328 jleave:
329 NYD2_LEAVE;
330 return amp;
333 static bool_t
334 a_amv_mac_exec(struct a_amv_mac_call_args *amcap){
335 struct a_amv_lostack los, *los_save;
336 struct a_amv_mac_line **amlp;
337 char **args_base, **args;
338 struct a_amv_mac const *amp;
339 bool_t rv;
340 NYD2_ENTER;
342 amp = amcap->amca_amp;
343 args_base = args = smalloc(sizeof(*args) * (amp->am_line_cnt +1));
344 for(amlp = amp->am_line_dat; *amlp != NULL; ++amlp)
345 *(args++) = sbufdup((*amlp)->aml_dat, (*amlp)->aml_len);
346 *args = NULL;
348 los.as_mac = UNCONST(amp); /* But not used.. */
349 los_save = a_amv_lopts;
350 if(amcap->amca_unroller == NULL){
351 los.as_up = los_save;
352 los.as_lopts = NULL;
353 }else{
354 los.as_up = NULL;
355 los.as_lopts = *amcap->amca_unroller;
357 los.as_unroll = amcap->amca_lopts_on;
359 a_amv_lopts = &los;
360 if(amcap->amca_hook_pre != NULL)
361 (*amcap->amca_hook_pre)(amcap->amca_hook_arg);
362 rv = n_source_macro(amp->am_name, args_base);
363 if(amcap->amca_hook_post != NULL)
364 (*amcap->amca_hook_post)(amcap->amca_hook_arg);
365 a_amv_lopts = los_save;
367 if(amcap->amca_unroller == NULL){
368 if(los.as_lopts != NULL)
369 a_amv_lopts_unroll(&los.as_lopts);
370 }else
371 *amcap->amca_unroller = los.as_lopts;
372 NYD2_LEAVE;
373 return rv;
376 static bool_t
377 a_amv_mac_show(enum a_amv_mac_flags amf){
378 size_t lc, mc, ti, i;
379 char const *typestr;
380 FILE *fp;
381 bool_t rv;
382 NYD2_ENTER;
384 rv = FAL0;
386 if((fp = Ftmp(NULL, "deflist", OF_RDWR | OF_UNLINK | OF_REGISTER)) ==
387 NULL){
388 n_perr(_("Can't create temporary file for `define' or `account' listing"),
390 goto jleave;
393 amf &= a_AMV_MF_TYPE_MASK;
394 typestr = (amf & a_AMV_MF_ACC) ? "account" : "define";
396 for(lc = mc = ti = 0; ti < a_AMV_PRIME; ++ti){
397 struct a_amv_mac *amp;
399 for(amp = a_amv_macs[ti]; amp != NULL; amp = amp->am_next){
400 if((amp->am_flags & a_AMV_MF_TYPE_MASK) == amf){
401 struct a_amv_mac_line **amlpp;
403 if(++mc > 1){
404 putc('\n', fp);
405 ++lc;
407 ++lc;
408 fprintf(fp, "%s %s {\n", typestr, amp->am_name);
409 for(amlpp = amp->am_line_dat; *amlpp != NULL; ++lc, ++amlpp){
410 for(i = (*amlpp)->aml_prespc; i > 0; --i)
411 putc(' ', fp);
412 fputs((*amlpp)->aml_dat, fp);
413 putc('\n', fp);
415 fputs("}\n", fp);
416 ++lc;
420 if(mc > 0)
421 page_or_print(fp, lc);
423 rv = (ferror(fp) == 0);
424 Fclose(fp);
425 jleave:
426 NYD2_LEAVE;
427 return rv;
430 static bool_t
431 a_amv_mac_def(char const *name, enum a_amv_mac_flags amf){
432 struct str line;
433 ui32_t line_cnt, maxlen;
434 struct linelist{
435 struct linelist *ll_next;
436 struct a_amv_mac_line *ll_amlp;
437 } *llp, *ll_head, *ll_tail;
438 union {size_t s; int i; ui32_t ui; size_t l;} n;
439 struct a_amv_mac *amp;
440 bool_t rv;
441 NYD2_ENTER;
443 memset(&line, 0, sizeof line);
444 rv = FAL0;
445 amp = NULL;
447 /* Read in the lines which form the macro content */
448 for(ll_tail = ll_head = NULL, line_cnt = maxlen = 0;;){
449 ui32_t leaspc;
450 char *cp;
452 n.i = n_lex_input("", TRU1, &line.s, &line.l, NULL);
453 if(n.ui == 0)
454 continue;
455 if(n.i < 0){
456 n_err(_("Unterminated %s definition: \"%s\"\n"),
457 (amf & a_AMV_MF_ACC ? "account" : "macro"), name);
458 goto jerr;
460 if(a_amv_mac_is_closing_angle(line.s))
461 break;
463 /* Trim WS, remember amount of leading spaces for display purposes */
464 for(cp = line.s, leaspc = 0; n.ui > 0; ++cp, --n.ui)
465 if(*cp == '\t')
466 leaspc = (leaspc + 8) & ~7;
467 else if(*cp == ' ')
468 ++leaspc;
469 else
470 break;
471 for(; n.ui > 0 && whitechar(cp[n.ui - 1]); --n.ui)
473 if(n.ui == 0)
474 continue;
476 maxlen = MAX(maxlen, n.ui);
477 cp[n.ui++] = '\0';
479 if(LIKELY(++line_cnt < UI32_MAX)){
480 struct a_amv_mac_line *amlp;
482 llp = salloc(sizeof *llp);
483 if(ll_head == NULL)
484 ll_head = llp;
485 else
486 ll_tail->ll_next = llp;
487 ll_tail = llp;
488 llp->ll_next = NULL;
489 llp->ll_amlp = amlp = smalloc(sizeof(*amlp) -
490 VFIELD_SIZEOF(struct a_amv_mac_line, aml_dat) + n.ui);
491 amlp->aml_len = n.ui -1;
492 amlp->aml_prespc = leaspc;
493 memcpy(amlp->aml_dat, cp, n.ui);
494 }else{
495 n_err(_("Too much content in %s definition: \"%s\"\n"),
496 (amf & a_AMV_MF_ACC ? "account" : "macro"), name);
497 goto jerr;
501 /* Create the new macro */
502 n.s = strlen(name) +1;
503 amp = smalloc(sizeof(*amp) - VFIELD_SIZEOF(struct a_amv_mac, am_name) + n.s);
504 amp->am_next = NULL;
505 amp->am_maxlen = maxlen;
506 amp->am_line_cnt = line_cnt;
507 amp->am_flags = amf;
508 amp->am_lopts = NULL;
509 memcpy(amp->am_name, name, n.s);
510 /* C99 */{
511 struct a_amv_mac_line **amlpp;
513 amp->am_line_dat = amlpp = smalloc(sizeof(*amlpp) * ++line_cnt);
514 for(llp = ll_head; llp != NULL; llp = llp->ll_next)
515 *amlpp++ = llp->ll_amlp;
516 *amlpp = NULL;
519 /* Finally check wether such a macro already exists, in which case we throw
520 * it all away again. At least we know it would have worked */
521 if(a_amv_mac_lookup(name, amp, amf) != NULL){
522 n_err(_("A %s named \"%s\" already exists\n"),
523 (amf & a_AMV_MF_ACC ? "account" : "macro"), name);
524 goto jerr;
527 rv = TRU1;
528 jleave:
529 if(line.s != NULL)
530 free(line.s);
531 NYD2_LEAVE;
532 return rv;
534 jerr:
535 for(llp = ll_head; llp != NULL; llp = llp->ll_next)
536 free(llp->ll_amlp);
537 if(amp != NULL){
538 free(amp->am_line_dat);
539 free(amp);
541 goto jleave;
544 static bool_t
545 a_amv_mac_undef(char const *name, enum a_amv_mac_flags amf){
546 struct a_amv_mac *amp;
547 bool_t rv;
548 NYD2_ENTER;
550 rv = TRU1;
552 if(LIKELY(name[0] != '*' || name[1] != '\0')){
553 if((amp = a_amv_mac_lookup(name, NULL, amf | a_AMV_MF_UNDEF)) == NULL){
554 n_err(_("%s \"%s\" is not defined\n"),
555 (amf & a_AMV_MF_ACC ? "Account" : "Macro"), name);
556 rv = FAL0;
558 }else{
559 struct a_amv_mac **ampp, *lamp;
561 for(ampp = a_amv_macs; PTRCMP(ampp, <, &a_amv_macs[NELEM(a_amv_macs)]);
562 ++ampp)
563 for(lamp = NULL, amp = *ampp; amp != NULL;){
564 if((amp->am_flags & a_AMV_MF_TYPE_MASK) == amf){
565 /* xxx Expensive but rare: be simple */
566 a_amv_mac_lookup(amp->am_name, NULL, amf | a_AMV_MF_UNDEF);
567 amp = (lamp == NULL) ? *ampp : lamp->am_next;
568 }else{
569 lamp = amp;
570 amp = amp->am_next;
574 NYD2_LEAVE;
575 return rv;
578 static void
579 a_amv_mac_free(struct a_amv_mac *amp){
580 struct a_amv_mac_line **amlpp;
581 NYD2_ENTER;
583 for(amlpp = amp->am_line_dat; *amlpp != NULL; ++amlpp)
584 free(*amlpp);
585 free(amp->am_line_dat);
586 free(amp);
587 NYD2_LEAVE;
590 static void
591 a_amv_lopts_add(struct a_amv_lostack *alp, char const *name,
592 struct a_amv_var *oavp){
593 struct a_amv_var *avp;
594 size_t nl, vl;
595 NYD2_ENTER;
597 /* Propagate unrolling up the stack, as necessary */
598 assert(alp != NULL);
599 for(;;){
600 if(alp->as_unroll)
601 break;
602 if((alp = alp->as_up) == NULL)
603 goto jleave;
606 /* Check wether this variable is handled yet */
607 for(avp = alp->as_lopts; avp != NULL; avp = avp->av_link)
608 if(!strcmp(avp->av_name, name))
609 goto jleave;
611 nl = strlen(name) +1;
612 vl = (oavp != NULL) ? strlen(oavp->av_value) +1 : 0;
613 avp = smalloc(sizeof(*avp) - VFIELD_SIZEOF(struct a_amv_var, av_name) +
614 nl + vl);
615 avp->av_link = alp->as_lopts;
616 alp->as_lopts = avp;
617 memcpy(avp->av_name, name, nl);
618 if(vl == 0){
619 avp->av_value = NULL;
620 avp->av_flags = 0;
621 #ifdef HAVE_PUTENV
622 avp->av_env = NULL;
623 #endif
624 }else{
625 avp->av_value = avp->av_name + nl;
626 avp->av_flags = oavp->av_flags;
627 memcpy(avp->av_value, oavp->av_value, vl);
628 #ifdef HAVE_PUTENV
629 avp->av_env = (oavp->av_env == NULL) ? NULL : sstrdup(oavp->av_env);
630 #endif
632 jleave:
633 NYD2_LEAVE;
636 static void
637 a_amv_lopts_unroll(struct a_amv_var **avpp){
638 struct a_amv_lostack *save_alp;
639 bool_t reset;
640 struct a_amv_var *x, *avp;
641 NYD2_ENTER;
643 avp = *avpp;
644 *avpp = NULL;
645 reset = !(pstate & PS_ROOT);
647 save_alp = a_amv_lopts;
648 a_amv_lopts = NULL;
649 while(avp != NULL){
650 x = avp;
651 avp = avp->av_link;
652 pstate |= PS_ROOT;
653 vok_vset(x->av_name, x->av_value);
654 if(reset)
655 pstate &= ~PS_ROOT;
656 free(x);
658 a_amv_lopts = save_alp;
659 NYD2_LEAVE;
662 static char *
663 a_amv_var_copy(char const *str){
664 char *news;
665 size_t len;
666 NYD2_ENTER;
668 if(*str == '\0')
669 news = UNCONST("");
670 else{
671 len = strlen(str) +1;
672 news = smalloc(len);
673 memcpy(news, str, len);
675 NYD2_LEAVE;
676 return news;
679 static void
680 a_amv_var_free(char *cp){
681 NYD2_ENTER;
682 if(*cp != '\0')
683 free(cp);
684 NYD2_LEAVE;
687 static bool_t
688 a_amv_var_check_vips(enum okeys okey, bool_t enable, char **val){
689 int flag;
690 bool_t ok;
691 NYD2_ENTER;
693 ok = TRU1;
694 flag = 0;
696 switch(okey){
697 case ok_b_debug:
698 flag = OPT_DEBUG;
699 break;
700 case ok_v_HOME:
701 /* Invalidate any resolved folder then, too
702 * FALLTHRU */
703 case ok_v_folder:
704 ok = !(pstate & PS_ROOT);
705 pstate |= PS_ROOT;
706 ok_vclear(_folder_resolved);
707 if(ok)
708 pstate &= ~PS_ROOT;
709 ok = TRU1;
710 break;
711 case ok_b_header:
712 flag = OPT_N_FLAG;
713 enable = !enable;
714 break;
715 case ok_b_memdebug:
716 flag = OPT_MEMDEBUG;
717 break;
718 case ok_b_skipemptybody:
719 flag = OPT_E_FLAG;
720 break;
721 case ok_v_TMPDIR:
722 if(enable) /* DEFVAL will soon ensure a value otherwise! */
723 tempdir = *val; /* XXX replace users with ok_vlook(TMPDIR) */
724 break;
725 case ok_v_umask:
726 assert(enable);
727 if(**val != '\0'){
728 ul_i ul;
730 if((ul = strtoul(*val, NULL, 0)) & ~0777){ /* (is valid _VF_POSNUM) */
731 n_err(_("Invalid *umask* setting: %s\n"), *val);
732 ok = FAL0;
733 }else
734 umask((mode_t)ul);
736 break;
737 case ok_b_verbose:
738 flag = (enable && !(options & OPT_VERB))
739 ? OPT_VERB : OPT_VERB | OPT_VERBVERB;
740 break;
741 default:
742 DBG( n_err("Implementation error: never heard of %u\n", ok); )
743 break;
746 if(flag){
747 if(enable)
748 options |= flag;
749 else
750 options &= ~flag;
752 NYD2_LEAVE;
753 return ok;
756 static bool_t
757 a_amv_var_check_nocntrls(char const *val){
758 char c;
759 NYD2_ENTER;
761 while((c = *val++) != '\0')
762 if(cntrlchar(c))
763 break;
764 NYD2_LEAVE;
765 return (c == '\0');
768 static bool_t
769 a_amv_var_check_num(char const *val, bool_t pos){ /* TODO intmax_t anywhere! */
770 /* TODO The internal/environment variables which are num= or posnum= should
771 * TODO gain special lookup functions, or the return should be void* and
772 * TODO castable to integer; i.e. no more strtoX() should be needed.
773 * TODO I.e., the result of this function should instead be stored.
774 * TODO Use intmax_t IF that is sizeof(void*) only? */
775 bool_t rv;
776 NYD2_ENTER;
778 rv = TRU1;
780 if(*val != '\0'){ /* Would be _VF_NOTEMPTY if not allowed */
781 char *eptr;
782 union {long s; unsigned long u;} i;
784 if(!pos){
785 i.s = strtol(val, &eptr, 0); /* TODO strtoimax() */
787 if(*eptr != '\0' ||
788 ((i.s == LONG_MIN || i.s == LONG_MAX) && errno == ERANGE))
789 rv = FAL0;
790 #if INT_MIN != LONG_MIN
791 else if(i.s < INT_MIN)
792 rv = FAL0;
793 #endif
794 #if INT_MAX != LONG_MAX
795 else if(i.s > INT_MAX)
796 rv = FAL0;
797 #endif
798 }else{
799 i.u = strtoul(val, &eptr, 0); /* TODO strtoumax() */
801 if(*eptr != '\0' || (i.u == ULONG_MAX && errno == ERANGE))
802 rv = FAL0;
803 #if UINT_MAX != ULONG_MAX
804 else if(i.u > UINT_MAX)
805 rv = FAL0;
806 #endif
809 NYD2_LEAVE;
810 return rv;
813 static char const *
814 a_amv_var_canonify(char const *vn){
815 NYD2_ENTER;
816 if(!upperchar(*vn)){
817 char const *vp;
819 for(vp = vn; *vp != '\0' && *vp != '@'; ++vp)
821 vn = (*vp == '@') ? i_strdup(vn) : vn;
823 NYD2_LEAVE;
824 return vn;
827 static bool_t
828 a_amv_var_revlookup(struct a_amv_var_carrier *avcp, char const *name){
829 ui32_t hash, i, j;
830 struct a_amv_var_map const *avmp;
831 NYD2_ENTER;
833 avcp->avc_name = name = a_amv_var_canonify(name);
834 avcp->avc_hash = hash = a_AMV_NAME2HASH(name);
836 for(i = hash % a_AMV_VAR_REV_PRIME, j = 0; j <= a_AMV_VAR_REV_LONGEST; ++j){
837 ui32_t x = a_amv_var_revmap[i];
839 if(x == a_AMV_VAR_REV_ILL)
840 break;
842 avmp = &a_amv_var_map[x];
843 if(avmp->avm_hash == hash &&
844 !strcmp(&a_amv_var_names[avmp->avm_keyoff], name)){
845 avcp->avc_map = avmp;
846 avcp->avc_okey = (enum okeys)x;
847 goto jleave;
850 if(++i == a_AMV_VAR_REV_PRIME){
851 #ifdef a_AMV_VAR_REV_WRAPAROUND
852 i = 0;
853 #else
854 break;
855 #endif
858 avcp->avc_map = NULL;
859 avcp = NULL;
860 jleave:
861 NYD2_LEAVE;
862 return (avcp != NULL);
865 static bool_t
866 a_amv_var_lookup(struct a_amv_var_carrier *avcp, bool_t i3val_nonew){
867 size_t i;
868 char const *cp;
869 struct a_amv_var_map const *avmp;
870 struct a_amv_var *avp;
871 NYD2_ENTER;
873 /* C99 */{
874 struct a_amv_var **avpp, *lavp;
876 avpp = &a_amv_vars[avcp->avc_prime = a_AMV_HASH2PRIME(avcp->avc_hash)];
878 for(lavp = NULL, avp = *avpp; avp != NULL; lavp = avp, avp = avp->av_link)
879 if(!strcmp(avp->av_name, avcp->avc_name)){
880 /* Relink as head, hope it "sorts on usage" over time.
881 * _clear() relies on this behaviour */
882 if(lavp != NULL){
883 lavp->av_link = avp->av_link;
884 avp->av_link = *avpp;
885 *avpp = avp;
887 goto jleave;
891 /* If this is not an assembled variable we need to consider some special
892 * initialization cases and eventually create the variable anew */
893 if(LIKELY((avmp = avcp->avc_map) != NULL)){
894 /* Does it have an import-from-environment flag? */
895 if(UNLIKELY((avmp->avm_flags & (a_AMV_VF_IMPORT | a_AMV_VF_ENV)) != 0)){
896 if(LIKELY((cp = getenv(avcp->avc_name)) != NULL)){
897 /* May be better not to use that one, though? */
898 bool_t isempty, isbltin;
900 isempty = (*cp == '\0' &&
901 (avmp->avm_flags & a_AMV_VF_NOTEMPTY) != 0);
902 isbltin = ((avmp->avm_flags & (a_AMV_VF_I3VAL | a_AMV_VF_DEFVAL)
903 ) != 0);
905 if(UNLIKELY(isempty)){
906 if(!isbltin)
907 goto jerr;
908 }else if(LIKELY(*cp != '\0')){
909 if(UNLIKELY((avmp->avm_flags & a_AMV_VF_NOCNTRLS) &&
910 !a_amv_var_check_nocntrls(cp))){
911 n_err(_("Ignoring environment, control characters "
912 "invalid in variable: %s\n"), avcp->avc_name);
913 goto jerr;
915 if(UNLIKELY((avmp->avm_flags & a_AMV_VF_NUM) &&
916 !a_amv_var_check_num(cp, FAL0))){
917 n_err(_("Environment variable value not a number "
918 "or out of range: %s\n"), avcp->avc_name);
919 goto jerr;
921 if(UNLIKELY((avmp->avm_flags & a_AMV_VF_POSNUM) &&
922 !a_amv_var_check_num(cp, TRU1))){
923 n_err(_("Environment variable value not a number, "
924 "negative or out of range: %s\n"), avcp->avc_name);
925 goto jerr;
928 goto jnewval;
932 /* A first-time init switch is to be handled now and here */
933 if(UNLIKELY((avmp->avm_flags & a_AMV_VF_I3VAL) != 0)){
934 static struct a_amv_var_defval const **arr,
935 *arr_base[a_AMV_VAR_I3VALS_CNT +1];
937 if(arr == NULL){
938 arr = &arr_base[0];
939 arr[i = a_AMV_VAR_I3VALS_CNT] = NULL;
940 while(i-- > 0)
941 arr[i] = &a_amv_var_i3vals[i];
944 for(i = 0; arr[i] != NULL; ++i)
945 if(arr[i]->avdv_okey == avcp->avc_okey){
946 cp = (avmp->avm_flags & a_AMV_VF_BOOL) ? ""
947 : arr[i]->avdv_value;
948 /* Remove this entry, hope entire block becomes no-op asap */
950 arr[i] = arr[i + 1];
951 while(arr[i++] != NULL);
953 if(!i3val_nonew)
954 goto jnewval;
955 if(i3val_nonew == TRUM1)
956 avp = (struct a_amv_var*)-1;
957 goto jleave;
961 /* The virtual variables */
962 if(UNLIKELY((avmp->avm_flags & a_AMV_VF_VIRT) != 0)){
963 for(i = 0; i < a_AMV_VAR_VIRTS_CNT; ++i)
964 if(a_amv_var_virts[i].avv_okey == avcp->avc_okey){
965 avp = UNCONST(a_amv_var_virts[i].avv_var);
966 goto jleave;
968 /* Not reached */
971 /* Place this last because once it is set first the variable will never
972 * be removed again and thus match in the first block above */
973 if(UNLIKELY(avmp->avm_flags & a_AMV_VF_DEFVAL) != 0){
974 for(i = 0; i < a_AMV_VAR_DEFVALS_CNT; ++i)
975 if(a_amv_var_defvals[i].avdv_okey == avcp->avc_okey){
976 cp = (avmp->avm_flags & a_AMV_VF_BOOL) ? ""
977 : a_amv_var_defvals[i].avdv_value;
978 goto jnewval;
983 jerr:
984 avp = NULL;
985 jleave:
986 avcp->avc_var = avp;
987 NYD2_LEAVE;
988 return (avp != NULL);
990 jnewval: /* C99 */{
991 struct a_amv_var **avpp;
992 size_t l;
994 l = strlen(avcp->avc_name) +1;
995 avcp->avc_var = avp = smalloc(sizeof(*avp) -
996 VFIELD_SIZEOF(struct a_amv_var, av_name) + l);
997 avp->av_link = *(avpp = &a_amv_vars[avcp->avc_prime]);
998 *avpp = avp;
999 memcpy(avp->av_name, avcp->avc_name, l);
1000 avp->av_value = a_amv_var_copy(cp);
1001 #ifdef HAVE_PUTENV
1002 avp->av_env = NULL;
1003 #endif
1004 avp->av_flags = avmp->avm_flags;
1006 if(avp->av_flags & a_AMV_VF_VIP)
1007 a_amv_var_check_vips(avcp->avc_okey, TRU1, &avp->av_value);
1008 if(avp->av_flags & a_AMV_VF_ENV)
1009 a_amv_var__putenv(avcp, avp);
1010 goto jleave;
1014 static bool_t
1015 a_amv_var_set(struct a_amv_var_carrier *avcp, char const *value,
1016 bool_t force_env){
1017 struct a_amv_var *avp;
1018 char *oval;
1019 struct a_amv_var_map const *avmp;
1020 bool_t rv;
1021 NYD2_ENTER;
1023 if(value == NULL){
1024 rv = a_amv_var_clear(avcp, force_env);
1025 goto jleave;
1028 if((avmp = avcp->avc_map) != NULL){
1029 rv = FAL0;
1031 if(UNLIKELY((avmp->avm_flags & a_AMV_VF_RDONLY) != 0 &&
1032 !(pstate & PS_ROOT))){
1033 n_err(_("Variable is readonly: \"%s\"\n"), avcp->avc_name);
1034 goto jleave;
1036 if(UNLIKELY((avmp->avm_flags & a_AMV_VF_NOTEMPTY) && *value == '\0')){
1037 n_err(_("Variable must not be empty: \"%s\"\n"), avcp->avc_name);
1038 goto jleave;
1040 if(UNLIKELY((avmp->avm_flags & a_AMV_VF_NOCNTRLS) != 0 &&
1041 !a_amv_var_check_nocntrls(value))){
1042 n_err(_("Variable forbids control characters: %s\n"),
1043 avcp->avc_name);
1044 goto jleave;
1046 if(UNLIKELY((avmp->avm_flags & a_AMV_VF_NUM) &&
1047 !a_amv_var_check_num(value, FAL0))){
1048 n_err(_("Variable value not a number or out of range: %s\n"),
1049 avcp->avc_name);
1050 goto jleave;
1052 if(UNLIKELY((avmp->avm_flags & a_AMV_VF_POSNUM) &&
1053 !a_amv_var_check_num(value, TRU1))){
1054 n_err(_("Variable value not a number, negative or out of range: %s\n"),
1055 avcp->avc_name);
1056 goto jleave;
1058 if(UNLIKELY((avmp->avm_flags & a_AMV_VF_IMPORT) != 0 &&
1059 !(pstate & (PS_ROOT | PS_STARTED)))){
1060 n_err(_("Variable cannot be set in a resource file: \"%s\"\n"),
1061 avcp->avc_name);
1062 goto jleave;
1066 rv = TRU1;
1067 a_amv_var_lookup(avcp, TRU1);
1069 /* Don't care what happens later on, store this in the unroll list */
1070 if(a_amv_lopts != NULL)
1071 a_amv_lopts_add(a_amv_lopts, avcp->avc_name, avcp->avc_var);
1073 if((avp = avcp->avc_var) == NULL){
1074 struct a_amv_var **avpp;
1075 size_t l = strlen(avcp->avc_name) +1;
1077 avcp->avc_var = avp = smalloc(sizeof(*avp) -
1078 VFIELD_SIZEOF(struct a_amv_var, av_name) + l);
1079 avp->av_link = *(avpp = &a_amv_vars[avcp->avc_prime]);
1080 *avpp = avp;
1081 #ifdef HAVE_PUTENV
1082 avp->av_env = NULL;
1083 #endif
1084 memcpy(avp->av_name, avcp->avc_name, l);
1085 avp->av_flags = (avmp != NULL) ? avmp->avm_flags : 0;
1086 oval = UNCONST("");
1087 }else
1088 oval = avp->av_value;
1090 if(avmp == NULL)
1091 avp->av_value = a_amv_var_copy(value);
1092 else{
1093 /* Via `set' etc. the user may give even boolean options non-boolean
1094 * values, ignore that and force boolean */
1095 if(avp->av_flags & a_AMV_VF_BOOL){
1096 if((options & OPT_D_VV) && *value != '\0')
1097 n_err(_("\"%s\" is a boolean variable, ignoring value: %s\n"),
1098 avcp->avc_name, value);
1099 avp->av_value = UNCONST(value = "");
1100 }else
1101 avp->av_value = a_amv_var_copy(value);
1103 /* Check if update allowed XXX wasteful on error! */
1104 if((avp->av_flags & a_AMV_VF_VIP) &&
1105 !(rv = a_amv_var_check_vips(avcp->avc_okey, TRU1, &avp->av_value))){
1106 char *cp = avp->av_value;
1108 avp->av_value = oval;
1109 oval = cp;
1113 if(force_env && !(avp->av_flags & a_AMV_VF_ENV))
1114 avp->av_flags |= a_AMV_VF_LINKED;
1115 if(avp->av_flags & (a_AMV_VF_ENV | a_AMV_VF_LINKED))
1116 rv = a_amv_var__putenv(avcp, avp);
1118 a_amv_var_free(oval);
1119 jleave:
1120 NYD2_LEAVE;
1121 return rv;
1124 static bool_t
1125 a_amv_var__putenv(struct a_amv_var_carrier *avcp, struct a_amv_var *avp){
1126 #ifndef HAVE_SETENV
1127 char *cp;
1128 #endif
1129 bool_t rv;
1130 NYD2_ENTER;
1132 #ifdef HAVE_SETENV
1133 rv = (setenv(avcp->avc_name, avp->av_value, 1) == 0);
1134 #else
1135 cp = sstrdup(savecatsep(avcp->avc_name, '=', avp->av_value));
1137 if((rv = (putenv(cp) == 0))){
1138 char *ocp;
1140 if((ocp = avp->av_env) != NULL)
1141 free(ocp);
1142 avp->av_env = cp;
1143 }else
1144 free(cp);
1145 #endif
1146 NYD2_LEAVE;
1147 return rv;
1150 static bool_t
1151 a_amv_var_clear(struct a_amv_var_carrier *avcp, bool_t force_env){
1152 struct a_amv_var **avpp, *avp;
1153 struct a_amv_var_map const *avmp;
1154 bool_t rv;
1155 NYD2_ENTER;
1157 rv = FAL0;
1159 if(LIKELY((avmp = avcp->avc_map) != NULL)){
1160 if(UNLIKELY((avmp->avm_flags & a_AMV_VF_NODEL) != 0 &&
1161 !(pstate & PS_ROOT))){
1162 n_err(_("Variable may not be unset: \"%s\"\n"), avcp->avc_name);
1163 goto jleave;
1165 if((avmp->avm_flags & a_AMV_VF_VIP) &&
1166 !a_amv_var_check_vips(avcp->avc_okey, FAL0, NULL))
1167 goto jleave;
1170 rv = TRU1;
1172 if(UNLIKELY(!a_amv_var_lookup(avcp, TRUM1))){
1173 if(force_env){
1174 jforce_env:
1175 rv = a_amv_var__clearenv(avcp->avc_name, NULL);
1176 }else if(!(pstate & (PS_ROOT | PS_ROBOT)) && (options & OPT_D_V))
1177 n_err(_("Can't unset undefined variable: \"%s\"\n"), avcp->avc_name);
1178 goto jleave;
1179 }else if(avcp->avc_var == (struct a_amv_var*)-1){
1180 avcp->avc_var = NULL;
1181 if(force_env)
1182 goto jforce_env;
1183 goto jleave;
1186 if(a_amv_lopts != NULL)
1187 a_amv_lopts_add(a_amv_lopts, avcp->avc_name, avcp->avc_var);
1189 avp = avcp->avc_var;
1190 avcp->avc_var = NULL;
1191 avpp = &a_amv_vars[avcp->avc_prime];
1192 assert(*avpp == avp); /* (always listhead after lookup()) */
1193 *avpp = (*avpp)->av_link;
1195 /* C99 */{
1196 #ifdef HAVE_SETENV
1197 char *envval = NULL;
1198 #else
1199 char *envval = avp->av_env;
1200 #endif
1201 if((avp->av_flags & (a_AMV_VF_ENV | a_AMV_VF_LINKED)) || envval != NULL)
1202 rv = a_amv_var__clearenv(avp->av_name, envval);
1204 a_amv_var_free(avp->av_value);
1205 free(avp);
1207 /* XXX Fun part, extremely simple-minded for now: if this variable has
1208 * XXX a default value, immediately reinstantiate it! */
1209 if(UNLIKELY(avmp != NULL && (avmp->avm_flags & a_AMV_VF_DEFVAL) != 0))
1210 a_amv_var_lookup(avcp, TRU1);
1211 jleave:
1212 NYD2_LEAVE;
1213 return rv;
1216 static bool_t
1217 a_amv_var__clearenv(char const *name, char *value){
1218 #ifndef HAVE_SETENV
1219 extern char **environ;
1220 char **ecpp;
1221 #endif
1222 bool_t rv;
1223 NYD2_ENTER;
1224 UNUSED(value);
1226 #ifdef HAVE_SETENV
1227 unsetenv(name);
1228 rv = TRU1;
1229 #else
1230 if(value != NULL)
1231 for(ecpp = environ; *ecpp != NULL; ++ecpp)
1232 if(*ecpp == value){
1233 free(value);
1235 ecpp[0] = ecpp[1];
1236 while(*ecpp++ != NULL);
1237 break;
1239 rv = TRU1;
1240 #endif
1241 NYD2_LEAVE;
1242 return rv;
1245 static void
1246 a_amv_var_show_all(void){
1247 struct n_string msg, *msgp;
1248 FILE *fp;
1249 size_t no, i;
1250 struct a_amv_var *avp;
1251 char const **vacp, **cap;
1252 NYD2_ENTER;
1254 if((fp = Ftmp(NULL, "setlist", OF_RDWR | OF_UNLINK | OF_REGISTER)) == NULL){
1255 n_perr(_("Can't create temporary file for `set' listing"), 0);
1256 goto jleave;
1259 /* We need to instantiate first-time-inits and default values here, so that
1260 * they will be regular members of our _vars[] table */
1261 for(i = a_AMV_VAR_I3VALS_CNT; i-- > 0;)
1262 n_var_oklook(a_amv_var_i3vals[i].avdv_okey);
1263 for(i = a_AMV_VAR_DEFVALS_CNT; i-- > 0;)
1264 n_var_oklook(a_amv_var_defvals[i].avdv_okey);
1266 for(no = i = 0; i < a_AMV_PRIME; ++i)
1267 for(avp = a_amv_vars[i]; avp != NULL; avp = avp->av_link)
1268 ++no;
1269 no += a_AMV_VAR_VIRTS_CNT;
1271 vacp = salloc(no * sizeof(*vacp));
1273 for(cap = vacp, i = 0; i < a_AMV_PRIME; ++i)
1274 for(avp = a_amv_vars[i]; avp != NULL; avp = avp->av_link)
1275 *cap++ = avp->av_name;
1276 for(i = a_AMV_VAR_VIRTS_CNT; i-- > 0;)
1277 *cap++ = a_amv_var_virts[i].avv_var->av_name;
1279 if(no > 1)
1280 qsort(vacp, no, sizeof *vacp, &a_amv_var__show_cmp);
1282 msgp = &msg;
1283 msgp = n_string_reserve(n_string_creat(msgp), 80);
1284 for(i = 0, cap = vacp; no != 0; ++cap, --no)
1285 i += a_amv_var_show(*cap, fp, msgp);
1286 n_string_gut(&msg);
1288 page_or_print(fp, i);
1289 Fclose(fp);
1290 jleave:
1291 NYD2_LEAVE;
1294 static int
1295 a_amv_var__show_cmp(void const *s1, void const *s2){
1296 int rv;
1297 NYD2_ENTER;
1299 rv = strcmp(*(char**)UNCONST(s1), *(char**)UNCONST(s2));
1300 NYD2_LEAVE;
1301 return rv;
1304 static size_t
1305 a_amv_var_show(char const *name, FILE *fp, struct n_string *msgp){
1306 struct a_amv_var_carrier avc;
1307 char const *quote;
1308 size_t i;
1309 NYD2_ENTER;
1311 msgp = n_string_trunc(msgp, 0);
1312 i = 0;
1314 a_amv_var_revlookup(&avc, name);
1315 if(!a_amv_var_lookup(&avc, FAL0)){
1316 struct str s;
1318 msgp = n_string_assign_cp(msgp, _("No such variable: "));
1319 s.s = UNCONST(name);
1320 s.l = UIZ_MAX;
1321 msgp = n_shell_quote(msgp, &s, FAL0);
1322 goto jleave;
1325 if(options & OPT_D_V){
1326 if(avc.avc_map == NULL){
1327 msgp = n_string_push_c(msgp, '#');
1328 msgp = n_string_push_cp(msgp, "assembled");
1329 i = 1;
1331 /* C99 */{
1332 struct{
1333 ui16_t flags;
1334 char msg[22];
1335 } const tbase[] = {
1336 {a_AMV_VF_VIRT, "virtual"},
1337 {a_AMV_VF_RDONLY, "readonly"},
1338 {a_AMV_VF_NODEL, "nodelete"},
1339 {a_AMV_VF_NOTEMPTY, "notempty"},
1340 {a_AMV_VF_NOCNTRLS, "no-control-chars"},
1341 {a_AMV_VF_NUM, "number"},
1342 {a_AMV_VF_POSNUM, "positive-number"},
1343 {a_AMV_VF_IMPORT, "import-environ-first\0"},
1344 {a_AMV_VF_ENV, "sync-environ"},
1345 {a_AMV_VF_I3VAL, "initial-value"},
1346 {a_AMV_VF_DEFVAL, "default-value"},
1347 {a_AMV_VF_LINKED, "`environ' link"}
1348 }, *tp;
1350 for(tp = tbase; PTRCMP(tp, <, &tbase[NELEM(tbase)]); ++tp)
1351 if(avc.avc_var->av_flags & tp->flags){
1352 msgp = n_string_push_c(msgp, (i++ == 0 ? '#' : ','));
1353 msgp = n_string_push_cp(msgp, tp->msg);
1357 if(i > 0)
1358 msgp = n_string_push_cp(msgp, "\n ");
1361 if(avc.avc_var->av_flags & a_AMV_VF_RDONLY)
1362 msgp = n_string_push_cp(msgp, "# ");
1363 UNINIT(quote, NULL);
1364 if(!(avc.avc_var->av_flags & a_AMV_VF_BOOL)){
1365 quote = n_shell_quote_cp(avc.avc_var->av_value, TRU1);
1366 if(strcmp(quote, avc.avc_var->av_value))
1367 msgp = n_string_push_cp(msgp, "wysh ");
1369 if(avc.avc_var->av_flags & a_AMV_VF_LINKED)
1370 msgp = n_string_push_cp(msgp, "environ ");
1371 msgp = n_string_push_cp(msgp, "set ");
1372 msgp = n_string_push_cp(msgp, name);
1373 if(!(avc.avc_var->av_flags & a_AMV_VF_BOOL)){
1374 msgp = n_string_push_c(msgp, '=');
1375 msgp = n_string_push_cp(msgp, quote);
1378 jleave:
1379 msgp = n_string_push_c(msgp, '\n');
1380 fputs(n_string_cp(msgp), fp);
1381 NYD2_ENTER;
1382 return (i > 0 ? 2 : 1);
1385 static bool_t
1386 a_amv_var_c_set(char **ap, bool_t issetenv){
1387 char *cp, *cp2, *varbuf, c;
1388 size_t errs;
1389 NYD2_ENTER;
1391 errs = 0;
1392 jouter:
1393 while((cp = *ap++) != NULL){
1394 /* Isolate key */
1395 cp2 = varbuf = salloc(strlen(cp) +1);
1397 for(; (c = *cp) != '=' && c != '\0'; ++cp){
1398 if(cntrlchar(c) || whitechar(c)){
1399 n_err(_("Variable name with control or newline character ignored: "
1400 "\"%s\"\n"), ap[-1]);
1401 ++errs;
1402 goto jouter;
1404 *cp2++ = c;
1406 *cp2 = '\0';
1407 if(c == '\0')
1408 cp = UNCONST("");
1409 else
1410 ++cp;
1412 if(varbuf == cp2){
1413 n_err(_("Empty variable name ignored\n"));
1414 ++errs;
1415 }else{
1416 struct a_amv_var_carrier avc;
1417 bool_t isunset;
1419 if((isunset = (varbuf[0] == 'n' && varbuf[1] == 'o')))
1420 varbuf = &varbuf[2];
1422 a_amv_var_revlookup(&avc, varbuf);
1424 if(isunset)
1425 errs += !a_amv_var_clear(&avc, issetenv);
1426 else
1427 errs += !a_amv_var_set(&avc, cp, issetenv);
1430 NYD2_LEAVE;
1431 return (errs == 0);
1434 FL int
1435 c_define(void *v){
1436 int rv;
1437 char **args;
1438 NYD_ENTER;
1440 rv = 1;
1442 if((args = v)[0] == NULL){
1443 rv = (a_amv_mac_show(a_AMV_MF_NONE) == FAL0);
1444 goto jleave;
1447 if(args[1] == NULL || args[1][0] != '{' || args[1][1] != '\0' ||
1448 args[2] != NULL){
1449 n_err(_("Synopsis: define: <name> {\n"));
1450 goto jleave;
1453 rv = (a_amv_mac_def(args[0], a_AMV_MF_NONE) == FAL0);
1454 jleave:
1455 NYD_LEAVE;
1456 return rv;
1459 FL int
1460 c_undefine(void *v){
1461 int rv;
1462 char **args;
1463 NYD_ENTER;
1465 rv = 0;
1466 args = v;
1468 rv |= !a_amv_mac_undef(*args, a_AMV_MF_NONE);
1469 while(*++args != NULL);
1470 NYD_LEAVE;
1471 return rv;
1474 FL int
1475 c_call(void *v){
1476 struct a_amv_mac_call_args amca;
1477 char const *errs, *name;
1478 struct a_amv_mac *amp;
1479 char **args;
1480 int rv;
1481 NYD_ENTER;
1483 rv = 1;
1485 if((args = v)[0] == NULL || (args[1] != NULL && args[2] != NULL)){
1486 errs = _("Synopsis: call: <%s>\n");
1487 name = "name";
1488 goto jerr;
1491 if((amp = a_amv_mac_lookup(name = *args, NULL, a_AMV_MF_NONE)) == NULL){
1492 errs = _("Undefined macro `call'ed: \"%s\"\n");
1493 goto jerr;
1496 memset(&amca, 0, sizeof amca);
1497 amca.amca_name = name;
1498 amca.amca_amp = amp;
1499 rv = (a_amv_mac_exec(&amca) == FAL0);
1500 jleave:
1501 NYD_LEAVE;
1502 return rv;
1503 jerr:
1504 n_err(errs, name);
1505 goto jleave;
1508 FL bool_t
1509 check_folder_hook(bool_t nmail){ /* TODO temporary, v15: drop */
1510 struct a_amv_mac_call_args amca;
1511 struct a_amv_mac *amp;
1512 size_t len;
1513 char *var, *cp;
1514 bool_t rv;
1515 NYD_ENTER;
1517 rv = TRU1;
1518 var = salloc(len = strlen(mailname) + sizeof("folder-hook-") -1 +1);
1520 /* First try the fully resolved path */
1521 snprintf(var, len, "folder-hook-%s", mailname);
1522 if((cp = vok_vlook(var)) != NULL)
1523 goto jmac;
1525 /* If we are under *folder*, try the usual +NAME syntax, too */
1526 if(displayname[0] == '+'){
1527 char *x = mailname + len;
1529 for(; x > mailname; --x)
1530 if(x[-1] == '/'){
1531 snprintf(var, len, "folder-hook-+%s", x);
1532 if((cp = vok_vlook(var)) != NULL)
1533 goto jmac;
1534 break;
1538 /* Plain *folder-hook* is our last try */
1539 if((cp = ok_vlook(folder_hook)) == NULL)
1540 goto jleave;
1542 jmac:
1543 if((amp = a_amv_mac_lookup(cp, NULL, a_AMV_MF_NONE)) == NULL){
1544 n_err(_("Cannot call *folder-hook* for \"%s\": "
1545 "macro \"%s\" does not exist\n"), displayname, cp);
1546 rv = FAL0;
1547 goto jleave;
1550 memset(&amca, 0, sizeof amca);
1551 amca.amca_name = cp;
1552 amca.amca_amp = amp;
1553 pstate &= ~PS_HOOK_MASK;
1554 if(nmail){
1555 amca.amca_unroller = NULL;
1556 pstate |= PS_HOOK_NEWMAIL;
1557 }else{
1558 amca.amca_unroller = &a_amv_folder_hook_lopts;
1559 pstate |= PS_HOOK;
1561 amca.amca_lopts_on = TRU1;
1562 rv = a_amv_mac_exec(&amca);
1563 pstate &= ~PS_HOOK_MASK;
1565 jleave:
1566 NYD_LEAVE;
1567 return rv;
1570 FL void
1571 call_compose_mode_hook(char const *macname, /* TODO temporary, v15: drop */
1572 void (*hook_pre)(void *), void *hook_arg){
1573 struct a_amv_mac_call_args amca;
1574 struct a_amv_mac *amp;
1575 NYD_ENTER;
1577 if((amp = a_amv_mac_lookup(macname, NULL, a_AMV_MF_NONE)) == NULL)
1578 n_err(_("Cannot call *on-compose-**: macro \"%s\" does not exist\n"),
1579 macname);
1580 else{
1581 memset(&amca, 0, sizeof amca);
1582 amca.amca_name = macname;
1583 amca.amca_amp = amp;
1584 amca.amca_unroller = &a_amv_compose_lopts;
1585 amca.amca_hook_pre = hook_pre;
1586 amca.amca_hook_arg = hook_arg;
1587 amca.amca_lopts_on = TRU1;
1588 pstate &= ~PS_HOOK_MASK;
1589 pstate |= PS_HOOK;
1590 a_amv_mac_exec(&amca);
1591 pstate &= ~PS_HOOK_MASK;
1593 NYD_LEAVE;
1596 FL int
1597 c_account(void *v){
1598 struct a_amv_mac_call_args amca;
1599 struct a_amv_mac *amp;
1600 char **args;
1601 int rv, i, oqf, nqf;
1602 NYD_ENTER;
1604 rv = 1;
1606 if((args = v)[0] == NULL){
1607 rv = (a_amv_mac_show(a_AMV_MF_ACC) == FAL0);
1608 goto jleave;
1611 if(args[1] && args[1][0] == '{' && args[1][1] == '\0'){
1612 if(args[2] != NULL){
1613 n_err(_("Synopsis: account: <name> {\n"));
1614 goto jleave;
1616 if(!asccasecmp(args[0], ACCOUNT_NULL)){
1617 n_err(_("`account': error: \"%s\" is a reserved name\n"),
1618 ACCOUNT_NULL);
1619 goto jleave;
1621 rv = (a_amv_mac_def(args[0], a_AMV_MF_ACC) == FAL0);
1622 goto jleave;
1625 if(pstate & PS_HOOK_MASK){
1626 n_err(_("`account': can't change account from within a hook\n"));
1627 goto jleave;
1630 save_mbox_for_possible_quitstuff();
1632 amp = NULL;
1633 if(asccasecmp(args[0], ACCOUNT_NULL) != 0 &&
1634 (amp = a_amv_mac_lookup(args[0], NULL, a_AMV_MF_ACC)) == NULL) {
1635 n_err(_("`account': account \"%s\" does not exist\n"), args[0]);
1636 goto jleave;
1639 oqf = savequitflags();
1641 if(a_amv_acc_curr != NULL){
1642 if(a_amv_acc_curr->am_lopts != NULL)
1643 a_amv_lopts_unroll(&a_amv_acc_curr->am_lopts);
1644 if(a_amv_acc_curr->am_flags & a_AMV_MF_DEL)
1645 a_amv_mac_free(a_amv_acc_curr);
1648 account_name = (amp != NULL) ? amp->am_name : NULL;
1649 a_amv_acc_curr = amp;
1651 if(amp != NULL){
1652 assert(amp->am_lopts == NULL);
1653 memset(&amca, 0, sizeof amca);
1654 amca.amca_name = amp->am_name;
1655 amca.amca_amp = amp;
1656 amca.amca_unroller = &amp->am_lopts;
1657 amca.amca_lopts_on = TRU1;
1658 if(!a_amv_mac_exec(&amca)){
1659 /* XXX account switch incomplete, unroll? */
1660 n_err(_("`account': switching to account \"%s\" failed\n"),
1661 amp->am_name);
1662 goto jleave;
1666 if((pstate & (PS_STARTED | PS_HOOK_MASK)) == PS_STARTED){
1667 nqf = savequitflags(); /* TODO obsolete (leave -> void -> new box!) */
1668 restorequitflags(oqf);
1669 if((i = setfile("%", 0)) < 0)
1670 goto jleave;
1671 check_folder_hook(FAL0);
1672 if(i > 0 && !ok_blook(emptystart))
1673 goto jleave;
1674 announce(ok_blook(bsdcompat) || ok_blook(bsdannounce));
1675 restorequitflags(nqf);
1677 rv = 0;
1678 jleave:
1679 NYD_LEAVE;
1680 return rv;
1683 FL int
1684 c_unaccount(void *v){
1685 int rv;
1686 char **args;
1687 NYD_ENTER;
1689 rv = 0;
1690 args = v;
1692 rv |= !a_amv_mac_undef(*args, a_AMV_MF_ACC);
1693 while(*++args != NULL);
1694 NYD_LEAVE;
1695 return rv;
1698 FL int
1699 c_localopts(void *v){
1700 char **argv;
1701 int rv;
1702 NYD_ENTER;
1704 rv = 1;
1706 if(a_amv_lopts == NULL){
1707 n_err(_("Cannot use `localopts' but from within a "
1708 "`define' or `account'\n"));
1709 goto jleave;
1712 a_amv_lopts->as_unroll = (boolify(*(argv = v), UIZ_MAX, FAL0) > 0);
1713 rv = 0;
1714 jleave:
1715 NYD_LEAVE;
1716 return rv;
1719 FL void
1720 temporary_localopts_free(void){ /* XXX intermediate hack */
1721 NYD_ENTER;
1722 if(a_amv_compose_lopts != NULL){
1723 void *save = a_amv_lopts;
1725 a_amv_lopts = NULL;
1726 a_amv_lopts_unroll(&a_amv_compose_lopts);
1727 a_amv_compose_lopts = NULL;
1728 a_amv_lopts = save;
1730 NYD_LEAVE;
1733 FL void
1734 temporary_localopts_folder_hook_unroll(void){ /* XXX intermediate hack */
1735 NYD_ENTER;
1736 if(a_amv_folder_hook_lopts != NULL){
1737 void *save = a_amv_lopts;
1739 a_amv_lopts = NULL;
1740 a_amv_lopts_unroll(&a_amv_folder_hook_lopts);
1741 a_amv_folder_hook_lopts = NULL;
1742 a_amv_lopts = save;
1744 NYD_LEAVE;
1747 FL char *
1748 n_var_oklook(enum okeys okey){
1749 struct a_amv_var_carrier avc;
1750 char *rv;
1751 struct a_amv_var_map const *avmp;
1752 NYD_ENTER;
1754 avc.avc_map = avmp = &a_amv_var_map[okey];
1755 avc.avc_name = a_amv_var_names + avmp->avm_keyoff;
1756 avc.avc_hash = avmp->avm_hash;
1757 avc.avc_okey = okey;
1759 if(a_amv_var_lookup(&avc, FAL0))
1760 rv = avc.avc_var->av_value;
1761 else
1762 rv = NULL;
1763 NYD_LEAVE;
1764 return rv;
1767 FL bool_t
1768 n_var_okset(enum okeys okey, uintptr_t val){
1769 struct a_amv_var_carrier avc;
1770 bool_t ok;
1771 struct a_amv_var_map const *avmp;
1772 NYD_ENTER;
1774 avc.avc_map = avmp = &a_amv_var_map[okey];
1775 avc.avc_name = a_amv_var_names + avmp->avm_keyoff;
1776 avc.avc_hash = avmp->avm_hash;
1777 avc.avc_okey = okey;
1779 ok = a_amv_var_set(&avc, (val == 0x1 ? "" : (char const*)val), FAL0);
1780 NYD_LEAVE;
1781 return ok;
1784 FL bool_t
1785 n_var_okclear(enum okeys okey){
1786 struct a_amv_var_carrier avc;
1787 bool_t rv;
1788 struct a_amv_var_map const *avmp;
1789 NYD_ENTER;
1791 avc.avc_map = avmp = &a_amv_var_map[okey];
1792 avc.avc_name = a_amv_var_names + avmp->avm_keyoff;
1793 avc.avc_hash = avmp->avm_hash;
1794 avc.avc_okey = okey;
1796 rv = a_amv_var_clear(&avc, FAL0);
1797 NYD_LEAVE;
1798 return rv;
1801 FL char *
1802 n_var_voklook(char const *vokey){
1803 struct a_amv_var_carrier avc;
1804 char *rv;
1805 NYD_ENTER;
1807 a_amv_var_revlookup(&avc, vokey);
1809 rv = a_amv_var_lookup(&avc, FAL0) ? avc.avc_var->av_value : NULL;
1810 NYD_LEAVE;
1811 return rv;
1814 FL bool_t
1815 n_var_vokset(char const *vokey, uintptr_t val){
1816 struct a_amv_var_carrier avc;
1817 bool_t ok;
1818 NYD_ENTER;
1820 a_amv_var_revlookup(&avc, vokey);
1822 ok = a_amv_var_set(&avc, (val == 0x1 ? "" : (char const*)val), FAL0);
1823 NYD_LEAVE;
1824 return ok;
1827 FL bool_t
1828 n_var_vokclear(char const *vokey){
1829 struct a_amv_var_carrier avc;
1830 bool_t ok;
1831 NYD_ENTER;
1833 a_amv_var_revlookup(&avc, vokey);
1835 ok = a_amv_var_clear(&avc, FAL0);
1836 NYD_LEAVE;
1837 return ok;
1840 #ifdef HAVE_SOCKETS
1841 FL char *
1842 n_var_xoklook(enum okeys okey, struct url const *urlp,
1843 enum okey_xlook_mode oxm){
1844 struct a_amv_var_carrier avc;
1845 struct str const *us;
1846 size_t nlen;
1847 char *nbuf, *rv;
1848 struct a_amv_var_map const *avmp;
1849 NYD_ENTER;
1851 assert(oxm & (OXM_PLAIN | OXM_H_P | OXM_U_H_P));
1853 /* For simplicity: allow this case too */
1854 if(!(oxm & (OXM_H_P | OXM_U_H_P)))
1855 goto jplain;
1857 avc.avc_map = avmp = &a_amv_var_map[okey];
1858 avc.avc_name = a_amv_var_names + avmp->avm_keyoff;
1859 avc.avc_okey = okey;
1861 us = (oxm & OXM_U_H_P) ? &urlp->url_u_h_p : &urlp->url_h_p;
1862 nlen = strlen(avc.avc_name);
1863 nbuf = salloc(nlen + 1 + us->l +1);
1864 memcpy(nbuf, avc.avc_name, nlen);
1865 nbuf[nlen++] = '-';
1867 /* One of .url_u_h_p and .url_h_p we test in here */
1868 memcpy(nbuf + nlen, us->s, us->l +1);
1869 avc.avc_name = a_amv_var_canonify(nbuf);
1870 avc.avc_hash = a_AMV_NAME2HASH(avc.avc_name);
1871 if(a_amv_var_lookup(&avc, FAL0))
1872 goto jvar;
1874 /* The second */
1875 if(oxm & OXM_H_P){
1876 us = &urlp->url_h_p;
1877 memcpy(nbuf + nlen, us->s, us->l +1);
1878 avc.avc_name = a_amv_var_canonify(nbuf);
1879 avc.avc_hash = a_AMV_NAME2HASH(avc.avc_name);
1880 if(a_amv_var_lookup(&avc, FAL0)){
1881 jvar:
1882 rv = avc.avc_var->av_value;
1883 goto jleave;
1887 jplain:
1888 rv = (oxm & OXM_PLAIN) ? n_var_oklook(okey) : NULL;
1889 jleave:
1890 NYD_LEAVE;
1891 return rv;
1893 #endif /* HAVE_SOCKETS */
1895 FL int
1896 c_set(void *v){
1897 char **ap;
1898 int err;
1899 NYD_ENTER;
1901 if(*(ap = v) == NULL){
1902 a_amv_var_show_all();
1903 err = 0;
1904 }else
1905 err = !a_amv_var_c_set(ap, FAL0);
1906 NYD_LEAVE;
1907 return err;
1910 FL int
1911 c_unset(void *v){
1912 char **ap;
1913 int err;
1914 NYD_ENTER;
1916 for(err = 0, ap = v; *ap != NULL; ++ap)
1917 err |= !n_var_vokclear(*ap);
1918 NYD_LEAVE;
1919 return err;
1922 FL int
1923 c_varshow(void *v){
1924 char **ap;
1925 NYD_ENTER;
1927 if(*(ap = v) == NULL)
1928 v = NULL;
1929 else{
1930 struct n_string msg, *msgp = &msg;
1932 msgp = n_string_creat(msgp);
1933 for(; *ap != NULL; ++ap)
1934 a_amv_var_show(*ap, stdout, msgp);
1935 n_string_gut(msgp);
1937 NYD_LEAVE;
1938 return (v == NULL ? !STOP : !OKAY); /* xxx 1:bad 0:good -- do some */
1941 FL int
1942 c_varedit(void *v){
1943 struct a_amv_var_carrier avc;
1944 FILE *of, *nf;
1945 char *val, **argv;
1946 int err;
1947 sighandler_type sigint;
1948 NYD_ENTER;
1950 sigint = safe_signal(SIGINT, SIG_IGN);
1952 for(err = 0, argv = v; *argv != NULL; ++argv){
1953 memset(&avc, 0, sizeof avc);
1955 a_amv_var_revlookup(&avc, *argv);
1957 if(avc.avc_map != NULL){
1958 if(avc.avc_map->avm_flags & a_AMV_VF_BOOL){
1959 n_err(_("`varedit': can't edit boolean variable \"%s\"\n"),
1960 avc.avc_name);
1961 continue;
1963 if(avc.avc_map->avm_flags & a_AMV_VF_RDONLY){
1964 n_err(_("`varedit': can't edit readonly variable \"%s\"\n"),
1965 avc.avc_name);
1966 continue;
1970 a_amv_var_lookup(&avc, FAL0);
1972 if((of = Ftmp(NULL, "varedit", OF_RDWR | OF_UNLINK | OF_REGISTER)) ==
1973 NULL){
1974 n_perr(_("`varedit': can't create temporary file, bailing out"), 0);
1975 err = 1;
1976 break;
1977 }else if(avc.avc_var != NULL && *(val = avc.avc_var->av_value) != '\0' &&
1978 sizeof *val != fwrite(val, strlen(val), sizeof *val, of)){
1979 n_perr(_("`varedit' failed to write old value to temporary file"), 0);
1980 Fclose(of);
1981 err = 1;
1982 continue;
1985 fflush_rewind(of);
1986 nf = run_editor(of, (off_t)-1, 'e', FAL0, NULL, NULL, SEND_MBOX, sigint);
1987 Fclose(of);
1989 if(nf != NULL){
1990 int c;
1991 char *base;
1992 off_t l = fsize(nf);
1994 assert(l >= 0);
1995 base = salloc((size_t)l +1);
1997 for(l = 0, val = base; (c = getc(nf)) != EOF; ++val)
1998 if(c == '\n' || c == '\r'){
1999 *val = ' ';
2000 ++l;
2001 }else{
2002 *val = (char)(uc_i)c;
2003 l = 0;
2005 val -= l;
2006 *val = '\0';
2008 if(!a_amv_var_set(&avc, base, FAL0))
2009 err = 1;
2011 Fclose(nf);
2012 }else{
2013 n_err(_("`varedit': can't start $EDITOR, bailing out\n"));
2014 err = 1;
2015 break;
2019 safe_signal(SIGINT, sigint);
2020 NYD_LEAVE;
2021 return err;
2024 FL int
2025 c_environ(void *v){
2026 struct a_amv_var_carrier avc;
2027 int err;
2028 char **ap;
2029 bool_t islnk;
2030 NYD_ENTER;
2032 if((islnk = !strcmp(*(ap = v), "link")) || !strcmp(*ap, "unlink")){
2033 for(err = 0; *++ap != NULL;){
2034 a_amv_var_revlookup(&avc, *ap);
2036 if(a_amv_var_lookup(&avc, FAL0) && (islnk ||
2037 (avc.avc_var->av_flags & a_AMV_VF_LINKED))){
2038 if(!islnk){
2039 avc.avc_var->av_flags &= ~a_AMV_VF_LINKED;
2040 continue;
2041 }else if(avc.avc_var->av_flags & (a_AMV_VF_ENV | a_AMV_VF_LINKED)){
2042 if(options & OPT_D_V)
2043 n_err(_("`environ': link: already established for \"%s\"\n"),
2044 *ap);
2045 continue;
2047 avc.avc_var->av_flags |= a_AMV_VF_LINKED;
2048 if(!(avc.avc_var->av_flags & a_AMV_VF_ENV))
2049 a_amv_var__putenv(&avc, avc.avc_var);
2050 }else if(!islnk){
2051 n_err(_("`environ': unlink: no link established: \"%s\"\n"), *ap);
2052 err = 1;
2053 }else{
2054 char const *evp = getenv(*ap);
2056 if(evp != NULL)
2057 err |= !a_amv_var_set(&avc, evp, TRU1);
2058 else{
2059 n_err(_("`environ': link: cannot link non-existent variable "
2060 "\"%s\"\n"), *ap);
2061 err = 1;
2065 }else if(!strcmp(*ap, "set"))
2066 err = !a_amv_var_c_set(++ap, TRU1);
2067 else if(!strcmp(*ap, "unset")){
2068 for(err = 0; *++ap != NULL;){
2069 a_amv_var_revlookup(&avc, *ap);
2071 if(!a_amv_var_clear(&avc, TRU1))
2072 err = 1;
2074 }else{
2075 n_err(_("Synopsis: environ: <link|set|unset> <variable>...\n"));
2076 err = 1;
2078 NYD_LEAVE;
2079 return err;
2082 /* s-it-mode */