added a comment about /bin/date
[ira/wip.git] / source3 / utils / net_time.c
1 /* 
2    Samba Unix/Linux SMB client library 
3    Version 3.0
4    net time command
5    Copyright (C) 2001 Andrew Tridgell (tridge@samba.org)
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
20
21 #include "includes.h"
22 #include "../utils/net.h"
23
24
25 /*
26   return the time on a server. This does not require any authentication
27 */
28 static time_t cli_servertime(const char *host, struct in_addr *ip)
29 {
30         struct nmb_name calling, called;
31         time_t ret = 0;
32         extern pstring global_myname;
33         struct cli_state *cli = NULL;
34
35         cli = cli_initialise(NULL);
36         if (!cli || !cli_connect(cli, host, ip)) goto done;
37
38         make_nmb_name(&calling, global_myname, 0x0);
39         if (host) {
40                 make_nmb_name(&called, host, 0x20);
41         } else {
42                 make_nmb_name(&called, "*SMBSERVER", 0x20);
43         }
44
45         if (!cli_session_request(cli, &calling, &called)) goto done;
46         if (!cli_negprot(cli)) goto done;
47
48         ret = cli->servertime;
49
50         cli_shutdown(cli);
51
52 done:
53         if (cli) cli_shutdown(cli);
54         return ret;
55 }
56
57 /* find the servers time on the opt_host host */
58 static time_t nettime(void)
59 {
60         extern BOOL opt_have_ip;
61         extern struct in_addr opt_dest_ip;
62         extern char *opt_host; 
63         return cli_servertime(opt_host, opt_have_ip? &opt_dest_ip : NULL);
64 }
65
66 /* return a time as a string ready to be passed to date -u */
67 static char *systime(time_t t)
68 {
69         static char s[100];
70         struct tm *tm;
71
72         tm = gmtime(&t);
73         
74         snprintf(s, sizeof(s), "%02d%02d%02d%02d%04d.%02d", 
75                  tm->tm_mon+1, tm->tm_mday, tm->tm_hour, 
76                  tm->tm_min, tm->tm_year + 1900, tm->tm_sec);
77         return s;
78 }
79
80 int net_time_usage(int argc, const char **argv)
81 {
82         d_printf(
83 "net time\n\tdisplays time on a server\n\n"\
84 "net time system\n\tdisplays time on a server in a format ready for /bin/date\n\n"\
85 "net time set\n\truns /bin/date -u with the time from the server\n\n"\
86 "\n");
87         general_rap_usage(argc, argv);
88         return -1;
89 }
90
91 /* try to set the system clock using /bin/date */
92 static int net_time_set(int argc, const char **argv)
93 {
94         time_t t = nettime();
95         char *cmd;
96
97         if (t == 0) {
98                 d_printf("Can't contact server\n");
99                 return -1;
100         }
101         
102         /* yes, I know this is cheesy. Use "net time system" if you want to 
103            roll your own. I'm putting this in as it works on a large number
104            of systems and the user has a choice in whether its used or not */
105         asprintf(&cmd, "/bin/date -u %s", systime(t));
106         system(cmd);
107         free(cmd);
108
109         return 0;
110 }
111
112 /* display the time on a remote box in a format ready for /bin/date */
113 static int net_time_system(int argc, const char **argv)
114 {
115         time_t t = nettime();
116
117         if (t == 0) {
118                 d_printf("Can't contact server\n");
119                 return -1;
120         }
121
122         printf("%s\n", systime(t));
123
124         return 0;
125 }
126
127 /* display or set the time on a host */
128 int net_time(int argc, const char **argv)
129 {
130         time_t t;
131         extern BOOL opt_have_ip;
132         extern struct in_addr opt_dest_ip;
133         extern char *opt_host; 
134         struct functable func[] = {
135                 {"SYSTEM", net_time_system},
136                 {"SET", net_time_set},
137                 {NULL, NULL}
138         };
139
140         if (!opt_host && !opt_have_ip) {
141                 d_printf("You must specify a hostname or IP\n");
142                 return -1;
143         }
144
145         if (argc != 0) {
146                 return net_run_function(argc, argv, func, net_time_usage);
147         }
148
149         /* default - print the time */
150         t = cli_servertime(opt_host, opt_have_ip? &opt_dest_ip : NULL);
151
152         d_printf("%s", ctime(&t));
153         return 0;
154 }