1 /* 2 * Session utilities. 3 * 4 * Copyright (C) 2022 Paul Boddie <paul@boddie.org.uk> 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License as 8 * published by the Free Software Foundation; either version 2 of 9 * the License, or (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, 19 * Boston, MA 02110-1301, USA 20 */ 21 22 #include <stdio.h> 23 #include <stdlib.h> 24 #include <string.h> 25 #include <unistd.h> 26 27 #include "session.h" 28 29 30 31 /* Alternative metadata set by options. */ 32 33 struct metadata md; 34 35 36 37 /* Parse program options. */ 38 39 int parse_options(int argc, char *argv[]) 40 { 41 int opt; 42 43 md.have_uid = 0; 44 md.have_gid = 0; 45 md.mask = 0000; 46 47 while ((opt = getopt(argc, argv, "g:m:u:")) != -1) 48 { 49 switch (opt) 50 { 51 case 'g': 52 md.gid = atoi(optarg); 53 md.have_gid = 1; 54 break; 55 56 case 'm': 57 md.mask = strtol(optarg, NULL, 0); 58 break; 59 60 case 'u': 61 md.uid = atoi(optarg); 62 md.have_uid = 1; 63 break; 64 65 default: 66 fprintf(stderr, "Option not recognised: %s\n", argv[optind]); 67 return -1; 68 } 69 } 70 71 return 0; 72 } 73 74 /* vim: tabstop=4 expandtab shiftwidth=4 75 */