exec plugin: Separate stdout and stderr.
[collectd.git] / src / exec.c
1 /**
2  * collectd - src/exec.c
3  * Copyright (C) 2007,2008  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
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.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
21
22 #include "collectd.h"
23 #include "common.h"
24 #include "plugin.h"
25
26 #include "utils_cmd_putval.h"
27 #include "utils_cmd_putnotif.h"
28
29 #include <sys/types.h>
30 #include <pwd.h>
31 #include <grp.h>
32 #include <signal.h>
33
34 #include <pthread.h>
35
36 #define PL_NORMAL        0x01
37 #define PL_NOTIF_ACTION  0x02
38
39 #define PL_RUNNING       0x10
40
41 /*
42  * Private data types
43  */
44 /*
45  * Access to this structure is serialized using the `pl_lock' lock and the
46  * `PL_RUNNING' flag. The execution of notifications is *not* serialized, so
47  * all functions used to handle notifications MUST NOT write to this structure.
48  * The `pid' and `status' fields are thus unused if the `PL_NOTIF_ACTION' flag
49  * is set.
50  * The `PL_RUNNING' flag is set in `exec_read' and unset in `exec_read_one'.
51  */
52 struct program_list_s;
53 typedef struct program_list_s program_list_t;
54 struct program_list_s
55 {
56   char           *user;
57   char           *group;
58   char           *exec;
59   char          **argv;
60   int             pid;
61   int             status;
62   int             flags;
63   program_list_t *next;
64 };
65
66 typedef struct program_list_and_notification_s
67 {
68   program_list_t *pl;
69   notification_t n;
70 } program_list_and_notification_t;
71
72 /*
73  * Private variables
74  */
75 static program_list_t *pl_head = NULL;
76 static pthread_mutex_t pl_lock = PTHREAD_MUTEX_INITIALIZER;
77
78 /*
79  * Functions
80  */
81 static void sigchld_handler (int signal) /* {{{ */
82 {
83   pid_t pid;
84   int status;
85   while ((pid = waitpid (-1, &status, WNOHANG)) > 0)
86   {
87     program_list_t *pl;
88     for (pl = pl_head; pl != NULL; pl = pl->next)
89       if (pl->pid == pid)
90         break;
91     if (pl != NULL)
92       pl->status = status;
93   } /* while (waitpid) */
94 } /* void sigchld_handler }}} */
95
96 static int exec_config_exec (oconfig_item_t *ci) /* {{{ */
97 {
98   program_list_t *pl;
99   char buffer[128];
100   int i;
101
102   if (ci->children_num != 0)
103   {
104     WARNING ("exec plugin: The config option `%s' may not be a block.",
105         ci->key);
106     return (-1);
107   }
108   if (ci->values_num < 2)
109   {
110     WARNING ("exec plugin: The config option `%s' needs at least two "
111         "arguments.", ci->key);
112     return (-1);
113   }
114   if ((ci->values[0].type != OCONFIG_TYPE_STRING)
115       || (ci->values[1].type != OCONFIG_TYPE_STRING))
116   {
117     WARNING ("exec plugin: The first two arguments to the `%s' option must "
118         "be string arguments.", ci->key);
119     return (-1);
120   }
121
122   pl = (program_list_t *) malloc (sizeof (program_list_t));
123   if (pl == NULL)
124   {
125     ERROR ("exec plugin: malloc failed.");
126     return (-1);
127   }
128   memset (pl, '\0', sizeof (program_list_t));
129
130   if (strcasecmp ("NotificationExec", ci->key) == 0)
131     pl->flags |= PL_NOTIF_ACTION;
132   else
133     pl->flags |= PL_NORMAL;
134
135   pl->user = strdup (ci->values[0].value.string);
136   if (pl->user == NULL)
137   {
138     ERROR ("exec plugin: strdup failed.");
139     sfree (pl);
140     return (-1);
141   }
142
143   pl->group = strchr (pl->user, ':');
144   if (pl->group != NULL)
145   {
146     *pl->group = '\0';
147     pl->group++;
148   }
149
150   pl->exec = strdup (ci->values[1].value.string);
151   if (pl->exec == NULL)
152   {
153     ERROR ("exec plugin: strdup failed.");
154     sfree (pl->user);
155     sfree (pl);
156     return (-1);
157   }
158
159   pl->argv = (char **) malloc (ci->values_num * sizeof (char *));
160   if (pl->argv == NULL)
161   {
162     ERROR ("exec plugin: malloc failed.");
163     sfree (pl->exec);
164     sfree (pl->user);
165     sfree (pl);
166     return (-1);
167   }
168   memset (pl->argv, '\0', ci->values_num * sizeof (char *));
169
170   {
171     char *tmp = strrchr (ci->values[1].value.string, '/');
172     if (tmp == NULL)
173       strncpy (buffer, ci->values[1].value.string, sizeof (buffer));
174     else
175       strncpy (buffer, tmp + 1, sizeof (buffer));
176     buffer[sizeof (buffer) - 1] = '\0';
177   }
178   pl->argv[0] = strdup (buffer);
179   if (pl->argv[0] == NULL)
180   {
181     ERROR ("exec plugin: malloc failed.");
182     sfree (pl->argv);
183     sfree (pl->exec);
184     sfree (pl->user);
185     sfree (pl);
186     return (-1);
187   }
188
189   for (i = 1; i < (ci->values_num - 1); i++)
190   {
191     if (ci->values[i + 1].type == OCONFIG_TYPE_STRING)
192     {
193       pl->argv[i] = strdup (ci->values[i + 1].value.string);
194     }
195     else
196     {
197       if (ci->values[i + 1].type == OCONFIG_TYPE_NUMBER)
198       {
199         snprintf (buffer, sizeof (buffer), "%lf",
200             ci->values[i + 1].value.number);
201       }
202       else
203       {
204         if (ci->values[i + 1].value.boolean)
205           strncpy (buffer, "true", sizeof (buffer));
206         else
207           strncpy (buffer, "false", sizeof (buffer));
208       }
209       buffer[sizeof (buffer) - 1] = '\0';
210
211       pl->argv[i] = strdup (buffer);
212     }
213
214     if (pl->argv[i] == NULL)
215     {
216       ERROR ("exec plugin: strdup failed.");
217       break;
218     }
219   } /* for (i) */
220
221   if (i < (ci->values_num - 1))
222   {
223     while ((--i) >= 0)
224     {
225       sfree (pl->argv[i]);
226     }
227     sfree (pl->argv);
228     sfree (pl->exec);
229     sfree (pl->user);
230     sfree (pl);
231     return (-1);
232   }
233
234   for (i = 0; pl->argv[i] != NULL; i++)
235   {
236     DEBUG ("exec plugin: argv[%i] = %s", i, pl->argv[i]);
237   }
238
239   pl->next = pl_head;
240   pl_head = pl;
241
242   return (0);
243 } /* int exec_config_exec }}} */
244
245 static int exec_config (oconfig_item_t *ci) /* {{{ */
246 {
247   int i;
248
249   for (i = 0; i < ci->children_num; i++)
250   {
251     oconfig_item_t *child = ci->children + i;
252     if ((strcasecmp ("Exec", child->key) == 0)
253         || (strcasecmp ("NotificationExec", child->key) == 0))
254       exec_config_exec (child);
255     else
256     {
257       WARNING ("exec plugin: Unknown config option `%s'.", child->key);
258     }
259   } /* for (i) */
260
261   return (0);
262 } /* int exec_config }}} */
263
264 static void exec_child (program_list_t *pl) /* {{{ */
265 {
266   int status;
267   int uid;
268   int gid;
269   int egid;
270
271   struct passwd *sp_ptr;
272   struct passwd sp;
273   char nambuf[2048];
274   char errbuf[1024];
275
276   sp_ptr = NULL;
277   status = getpwnam_r (pl->user, &sp, nambuf, sizeof (nambuf), &sp_ptr);
278   if (status != 0)
279   {
280     ERROR ("exec plugin: getpwnam_r failed: %s",
281         sstrerror (errno, errbuf, sizeof (errbuf)));
282     exit (-1);
283   }
284   if (sp_ptr == NULL)
285   {
286     ERROR ("exec plugin: No such user: `%s'", pl->user);
287     exit (-1);
288   }
289
290   uid = sp.pw_uid;
291   gid = sp.pw_gid;
292   if (uid == 0)
293   {
294     ERROR ("exec plugin: Cowardly refusing to exec program as root.");
295     exit (-1);
296   }
297
298   /* The group configured in the configfile is set as effective group, because
299    * this way the forked process can (re-)gain the user's primary group. */
300   egid = -1;
301   if (NULL != pl->group)
302   {
303     if ('\0' != *pl->group) {
304       struct group *gr_ptr = NULL;
305       struct group gr;
306
307       status = getgrnam_r (pl->group, &gr, nambuf, sizeof (nambuf), &gr_ptr);
308       if (0 != status)
309       {
310         ERROR ("exec plugin: getgrnam_r failed: %s",
311             sstrerror (errno, errbuf, sizeof (errbuf)));
312         exit (-1);
313       }
314       if (NULL == gr_ptr)
315       {
316         ERROR ("exec plugin: No such group: `%s'", pl->group);
317         exit (-1);
318       }
319
320       egid = gr.gr_gid;
321     }
322     else
323     {
324       egid = gid;
325     }
326   } /* if (pl->group == NULL) */
327
328 #if HAVE_SETGROUPS
329   if (getuid () == 0)
330   {
331     gid_t  glist[2];
332     size_t glist_len;
333
334     glist[0] = gid;
335     glist_len = 1;
336
337     if ((gid != egid) && (egid != -1))
338     {
339       glist[1] = egid;
340       glist_len = 2;
341     }
342
343     setgroups (glist_len, glist);
344   }
345 #endif /* HAVE_SETGROUPS */
346
347   status = setgid (gid);
348   if (status != 0)
349   {
350     ERROR ("exec plugin: setgid (%i) failed: %s",
351         gid, sstrerror (errno, errbuf, sizeof (errbuf)));
352     exit (-1);
353   }
354
355   if (egid != -1)
356   {
357     status = setegid (egid);
358     if (status != 0)
359     {
360       ERROR ("exec plugin: setegid (%i) failed: %s",
361           egid, sstrerror (errno, errbuf, sizeof (errbuf)));
362       exit (-1);
363     }
364   }
365
366   status = setuid (uid);
367   if (status != 0)
368   {
369     ERROR ("exec plugin: setuid (%i) failed: %s",
370         uid, sstrerror (errno, errbuf, sizeof (errbuf)));
371     exit (-1);
372   }
373
374   status = execvp (pl->exec, pl->argv);
375
376   ERROR ("exec plugin: exec failed: %s",
377       sstrerror (errno, errbuf, sizeof (errbuf)));
378   exit (-1);
379 } /* void exec_child }}} */
380
381 /*
382  * Creates three pipes (one for reading, one for writing and one for errors),
383  * forks a child, sets up the pipes so that fd_in is connected to STDIN of 
384  * the child and fd_out is connected to STDOUT and fd_err is connected to STDERR
385  * of the child. Then is calls `exec_child'.
386  */
387 static int fork_child (program_list_t *pl, int *fd_in, int *fd_out, int *fd_err) /* {{{ */
388 {
389   int fd_pipe_in[2];
390   int fd_pipe_out[2];
391   int fd_pipe_err[2];
392   char errbuf[1024];
393   int status;
394   int pid;
395
396   if (pl->pid != 0)
397     return (-1);
398
399   status = pipe (fd_pipe_in);
400   if (status != 0)
401   {
402     ERROR ("exec plugin: pipe failed: %s",
403         sstrerror (errno, errbuf, sizeof (errbuf)));
404     return (-1);
405   }
406
407   status = pipe (fd_pipe_out);
408   if (status != 0)
409   {
410     ERROR ("exec plugin: pipe failed: %s",
411         sstrerror (errno, errbuf, sizeof (errbuf)));
412     return (-1);
413   }
414
415   status = pipe (fd_pipe_err);
416   if (status != 0)
417   {
418     ERROR ("exec plugin: pipe failed: %s",
419         sstrerror (errno, errbuf, sizeof (errbuf)));
420     return (-1);
421   }
422
423   pid = fork ();
424   if (pid < 0)
425   {
426     ERROR ("exec plugin: fork failed: %s",
427         sstrerror (errno, errbuf, sizeof (errbuf)));
428     return (-1);
429   }
430   else if (pid == 0)
431   {
432     close (fd_pipe_in[1]);
433     close (fd_pipe_out[0]);
434     close (fd_pipe_err[0]);
435
436     /* Connect the `in' pipe to STDIN */
437     if (fd_pipe_in[0] != STDIN_FILENO)
438     {
439       dup2 (fd_pipe_in[0], STDIN_FILENO);
440       close (fd_pipe_in[0]);
441     }
442
443     /* Now connect the `out' pipe to STDOUT */
444     if (fd_pipe_out[1] != STDOUT_FILENO)
445     {
446       dup2 (fd_pipe_out[1], STDOUT_FILENO);
447       close (fd_pipe_out[1]);
448     }
449
450     /* Now connect the `out' pipe to STDOUT */
451     if (fd_pipe_err[1] != STDERR_FILENO)
452     {
453       dup2 (fd_pipe_err[1], STDERR_FILENO);
454       close (fd_pipe_err[1]);
455     }
456
457     exec_child (pl);
458     /* does not return */
459   }
460
461   close (fd_pipe_in[0]);
462   close (fd_pipe_out[1]);
463   close (fd_pipe_err[1]);
464
465   if (fd_in != NULL)
466     *fd_in = fd_pipe_in[1];
467   else
468     close (fd_pipe_in[1]);
469
470   if (fd_out != NULL)
471     *fd_out = fd_pipe_out[0];
472   else
473     close (fd_pipe_out[0]);
474
475   if (fd_err != NULL)
476     *fd_err = fd_pipe_err[0];
477   else
478     close (fd_pipe_err[0]);
479
480   return (pid);
481 } /* int fork_child }}} */
482
483 static int parse_line (char *buffer) /* {{{ */
484 {
485   char *fields[256];
486   int fields_num;
487
488   fields[0] = "PUTVAL";
489   fields_num = strsplit (buffer, fields + 1, STATIC_ARRAY_SIZE(fields) - 1);
490
491   if (strcasecmp (fields[1], "putval") == 0)
492     return (handle_putval (stdout, fields + 1, fields_num));
493   else if (strcasecmp (fields[1], "putnotif") == 0)
494     return (handle_putnotif (stdout, fields + 1, fields_num));
495
496   /* compatibility code */
497   return (handle_putval (stdout, fields, fields_num + 1));
498 } /* int parse_line }}} */
499
500 static void *exec_read_one (void *arg) /* {{{ */
501 {
502   program_list_t *pl = (program_list_t *) arg;
503   int fd, fd_err, highest_fd;
504   fd_set fdset, copy;
505   int status;
506   char buffer[1200];  /* if not completely read */
507   char buffer_err[1024];
508   char *pbuffer = buffer;
509   char *pbuffer_err = buffer_err;
510
511   status = fork_child (pl, NULL, &fd, &fd_err);
512   if (status < 0)
513     pthread_exit ((void *) 1);
514   pl->pid = status;
515
516   assert (pl->pid != 0);
517
518   FD_ZERO( &fdset );
519   FD_SET(fd, &fdset);
520   FD_SET(fd_err, &fdset);
521
522   /* Determine the highest file descriptor */
523   highest_fd = (fd > fd_err) ? fd : fd_err;
524
525   /* We use a copy of fdset, as select modifies it */
526   copy = fdset;
527
528   while (select(highest_fd + 1, &copy, NULL, NULL, NULL ) > 0)
529   {
530     int len;
531
532     if (FD_ISSET(fd, &copy))
533     {
534       char *pnl;
535
536       len = read(fd, pbuffer, sizeof(buffer) - 1 - (pbuffer - buffer));
537
538       if (len < 0)
539       {
540         if (errno == EAGAIN || errno == EINTR)  continue;
541         break;
542       }
543       else if (len == 0) break;  /* We've reached EOF */
544
545       pbuffer[len] = '\0';
546
547       len += pbuffer - buffer;
548       pbuffer = buffer;
549
550       while ((pnl = strchr(pbuffer, '\n')))
551       {
552         *pnl = '\0';
553         if (*(pnl-1) == '\r' ) *(pnl-1) = '\0';
554
555         parse_line (pbuffer);
556
557         pbuffer = ++pnl;
558       }
559       /* not completely read ? */
560       if (pbuffer - buffer < len)
561       {
562         len -= pbuffer - buffer;
563         memmove(buffer, pbuffer, len);
564         pbuffer = buffer + len;
565       }
566       else
567         pbuffer = buffer; 
568     } 
569     else if (FD_ISSET(fd_err, &copy))
570     {
571       char *pnl;
572
573       len = read(fd_err, pbuffer_err, sizeof(buffer_err) - 1 - (pbuffer_err - buffer_err));
574
575       if (len < 0)
576       {
577         if (errno == EAGAIN || errno == EINTR)  continue;
578         break;
579       }
580       else if (len == 0) break;  /* We've reached EOF */
581
582       pbuffer_err[len] = '\0';
583
584       len += pbuffer_err - buffer_err;
585       pbuffer_err = buffer_err;
586
587       while ((pnl = strchr(pbuffer_err, '\n')))
588       {
589         *pnl = '\0';
590         if (*(pnl-1) == '\r' ) *(pnl-1) = '\0';
591
592         ERROR ("exec plugin: exec_read_one: error = %s", pbuffer_err);
593
594         pbuffer_err = ++pnl;
595       }
596       /* not completely read ? */
597       if (pbuffer_err - buffer_err < len)
598       {
599         len -= pbuffer_err - buffer_err;
600         memmove(buffer_err, pbuffer_err, len);
601         pbuffer_err = buffer_err + len;
602       }
603       else
604         pbuffer_err = buffer_err;
605     }
606     /* reset copy */
607     copy = fdset;
608   }
609
610   if (waitpid (pl->pid, &status, 0) > 0)
611     pl->status = status;
612
613   DEBUG ("exec plugin: Child %i exited with status %i.",
614       (int) pl->pid, pl->status);
615
616   pl->pid = 0;
617
618   pthread_mutex_lock (&pl_lock);
619   pl->flags &= ~PL_RUNNING;
620   pthread_mutex_unlock (&pl_lock);
621
622   close (fd);
623   close (fd_err);
624
625   pthread_exit ((void *) 0);
626   return (NULL);
627 } /* void *exec_read_one }}} */
628
629 static void *exec_notification_one (void *arg) /* {{{ */
630 {
631   program_list_t *pl = ((program_list_and_notification_t *) arg)->pl;
632   const notification_t *n = &((program_list_and_notification_t *) arg)->n;
633   int fd;
634   FILE *fh;
635   int pid;
636   int status;
637   const char *severity;
638
639   pid = fork_child (pl, &fd, NULL, NULL);
640   if (pid < 0) {
641     sfree (arg);
642     pthread_exit ((void *) 1);
643   }
644
645   fh = fdopen (fd, "w");
646   if (fh == NULL)
647   {
648     char errbuf[1024];
649     ERROR ("exec plugin: fdopen (%i) failed: %s", fd,
650         sstrerror (errno, errbuf, sizeof (errbuf)));
651     kill (pl->pid, SIGTERM);
652     pl->pid = 0;
653     close (fd);
654     sfree (arg);
655     pthread_exit ((void *) 1);
656   }
657
658   severity = "FAILURE";
659   if (n->severity == NOTIF_WARNING)
660     severity = "WARNING";
661   else if (n->severity == NOTIF_OKAY)
662     severity = "OKAY";
663
664   fprintf (fh,
665       "Severity: %s\n"
666       "Time: %u\n",
667       severity, (unsigned int) n->time);
668
669   /* Print the optional fields */
670   if (strlen (n->host) > 0)
671     fprintf (fh, "Host: %s\n", n->host);
672   if (strlen (n->plugin) > 0)
673     fprintf (fh, "Plugin: %s\n", n->plugin);
674   if (strlen (n->plugin_instance) > 0)
675     fprintf (fh, "PluginInstance: %s\n", n->plugin_instance);
676   if (strlen (n->type) > 0)
677     fprintf (fh, "Type: %s\n", n->type);
678   if (strlen (n->type_instance) > 0)
679     fprintf (fh, "TypeInstance: %s\n", n->type_instance);
680
681   fprintf (fh, "\n%s\n", n->message);
682
683   fflush (fh);
684   fclose (fh);
685
686   waitpid (pid, &status, 0);
687
688   DEBUG ("exec plugin: Child %i exited with status %i.",
689       pid, status);
690
691   sfree (arg);
692   pthread_exit ((void *) 0);
693   return (NULL);
694 } /* void *exec_notification_one }}} */
695
696 static int exec_init (void) /* {{{ */
697 {
698   struct sigaction sa;
699
700   memset (&sa, '\0', sizeof (sa));
701   sa.sa_handler = sigchld_handler;
702   sigaction (SIGCHLD, &sa, NULL);
703
704   return (0);
705 } /* int exec_init }}} */
706
707 static int exec_read (void) /* {{{ */
708 {
709   program_list_t *pl;
710
711   for (pl = pl_head; pl != NULL; pl = pl->next)
712   {
713     pthread_t t;
714     pthread_attr_t attr;
715
716     /* Only execute `normal' style executables here. */
717     if ((pl->flags & PL_NORMAL) == 0)
718       continue;
719
720     pthread_mutex_lock (&pl_lock);
721     /* Skip if a child is already running. */
722     if ((pl->flags & PL_RUNNING) != 0)
723     {
724       pthread_mutex_unlock (&pl_lock);
725       continue;
726     }
727     pl->flags |= PL_RUNNING;
728     pthread_mutex_unlock (&pl_lock);
729
730     pthread_attr_init (&attr);
731     pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
732     pthread_create (&t, &attr, exec_read_one, (void *) pl);
733   } /* for (pl) */
734
735   return (0);
736 } /* int exec_read }}} */
737
738 static int exec_notification (const notification_t *n)
739 {
740   program_list_t *pl;
741   program_list_and_notification_t *pln;
742
743   for (pl = pl_head; pl != NULL; pl = pl->next)
744   {
745     pthread_t t;
746     pthread_attr_t attr;
747
748     /* Only execute `notification' style executables here. */
749     if ((pl->flags & PL_NOTIF_ACTION) == 0)
750       continue;
751
752     /* Skip if a child is already running. */
753     if (pl->pid != 0)
754       continue;
755
756     pln = (program_list_and_notification_t *) malloc (sizeof
757         (program_list_and_notification_t));
758     if (pln == NULL)
759     {
760       ERROR ("exec plugin: malloc failed.");
761       continue;
762     }
763
764     pln->pl = pl;
765     memcpy (&pln->n, n, sizeof (notification_t));
766
767     pthread_attr_init (&attr);
768     pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
769     pthread_create (&t, &attr, exec_notification_one, (void *) pln);
770   } /* for (pl) */
771
772   return (0);
773 } /* int exec_notification */
774
775 static int exec_shutdown (void) /* {{{ */
776 {
777   program_list_t *pl;
778   program_list_t *next;
779
780   pl = pl_head;
781   while (pl != NULL)
782   {
783     next = pl->next;
784
785     if (pl->pid > 0)
786     {
787       kill (pl->pid, SIGTERM);
788       INFO ("exec plugin: Sent SIGTERM to %hu", (unsigned short int) pl->pid);
789     }
790
791     sfree (pl->user);
792     sfree (pl);
793
794     pl = next;
795   } /* while (pl) */
796   pl_head = NULL;
797
798   return (0);
799 } /* int exec_shutdown }}} */
800
801 void module_register (void)
802 {
803   plugin_register_complex_config ("exec", exec_config);
804   plugin_register_init ("exec", exec_init);
805   plugin_register_read ("exec", exec_read);
806   plugin_register_notification ("exec", exec_notification);
807   plugin_register_shutdown ("exec", exec_shutdown);
808 } /* void module_register */
809
810 /*
811  * vim:shiftwidth=2:softtabstop=2:tabstop=8:fdm=marker
812  */