import from HEAD:
[freeradius.git] / src / billing / cisco_h323_db_schema-postgres.sql
1 /*
2  * Id: postgresql.conf,v 1.8.2.11 2003/07/15 11:15:43 pnixon Exp $
3  *
4  * --- Peter Nixon [ codemonkey@peternixon.net ]
5  * This is a custom SQL schema for doing H323 VoIP accounting with FreeRadius and
6  * Cisco gateways (I am using 5300 and 5350 series).
7  * It will scale ALOT better than the default radius schema which is designed for
8  * simple dialup installations of FreeRadius.
9  *
10  * For this schema to work properly you MUST replace raddb/postgresql.conf
11  * with the contents of pgsql-voip.conf
12  *
13  * If you wish to do RADIUS Authentication using the same database, you must use
14  * src/modules/rlm_sql/drivers/rlm_sql_postgresql/db_postgresql.sql as well as
15  * this schema.
16  *
17  */
18
19 /*
20  * Table structure for 'Start' tables
21  */
22
23 CREATE TABLE StartVoIP (
24         RadAcctId               BIGSERIAL PRIMARY KEY,
25         h323SetupTime           TIMESTAMP with time zone NOT NULL,
26         H323ConnectTime         TIMESTAMP with time zone,
27         UserName                VARCHAR(64),
28         RadiusServerName        VARCHAR(32),
29         NASIPAddress            INET NOT NULL,
30         AcctTime                TIMESTAMP with time zone,
31         CalledStationId         VARCHAR(80),
32         CallingStationId        VARCHAR(80),
33         AcctDelayTime           INTEGER,
34         H323GWID                VARCHAR(32),
35         h323CallOrigin          VARCHAR(10),
36         CallID                  VARCHAR(50) NOT NULL,
37         processed               BOOLEAN DEFAULT false
38 );
39 create index startvoipcombo on startvoip (h323SetupTime, nasipaddress);
40
41
42 CREATE TABLE StartTelephony (
43         RadAcctId               BIGSERIAL PRIMARY KEY,
44         h323SetupTime           TIMESTAMP with time zone NOT NULL,
45         H323ConnectTime         TIMESTAMP with time zone,
46         UserName                VARCHAR(64),
47         RadiusServerName        VARCHAR(32),
48         NASIPAddress            INET NOT NULL,
49         AcctTime                TIMESTAMP with time zone,
50         CalledStationId         VARCHAR(80),
51         CallingStationId        VARCHAR(80),
52         AcctDelayTime           INTEGER,
53         H323GWID                VARCHAR(32),
54         h323CallOrigin          VARCHAR(10),
55         CallID                  VARCHAR(35) NOT NULL,
56         processed               BOOLEAN DEFAULT false
57 );
58 create index starttelephonycombo on starttelephony (h323SetupTime, nasipaddress);
59
60
61
62 /*
63  * Table structure for 'Stop' tables
64  */
65 CREATE TABLE StopVoIP (
66         RadAcctId               BIGSERIAL PRIMARY KEY,
67         H323SetupTime           TIMESTAMP with time zone,
68         H323ConnectTime         TIMESTAMP with time zone,
69         H323DisconnectTime      TIMESTAMP with time zone NOT NULL,
70         UserName                VARCHAR(32),
71         RadiusServerName        VARCHAR(32),
72         NASIPAddress            INET NOT NULL,
73         AcctTime                TIMESTAMP with time zone,
74         AcctSessionTime         BIGINT,
75         AcctInputOctets         BIGINT,
76         AcctOutputOctets        BIGINT,
77         CalledStationId         VARCHAR(80),
78         CallingStationId        VARCHAR(80),
79         AcctDelayTime           SMALLINT,
80         CiscoNASPort            VARCHAR(1),
81         H323GWID                VARCHAR(32),
82         H323CallOrigin          VARCHAR(10),
83         H323DisconnectCause     VARCHAR(20),
84         H323RemoteAddress       INET,
85         H323VoiceQuality        INTEGER,
86         CallID                  VARCHAR(50) NOT NULL,
87         processed               BOOLEAN DEFAULT false
88 );
89 create UNIQUE index stopvoipcombo on stopvoip (h323SetupTime, nasipaddress, CallID);
90 /*
91  * Some Cisco CSPS do not have complete VSA details. If you have one of these you will want
92  * to use the following index, as the one above will drop records.
93  * 
94  *  create UNIQUE index stopvoipcombo on stopvoip (h323DisconnectTime, nasipaddress, CallID);
95  *
96  */
97
98
99 CREATE TABLE StopTelephony (
100         RadAcctId               BIGSERIAL PRIMARY KEY,
101         H323SetupTime           TIMESTAMP with time zone NOT NULL,
102         H323ConnectTime         TIMESTAMP with time zone NOT NULL,
103         H323DisconnectTime      TIMESTAMP with time zone NOT NULL,
104         UserName                VARCHAR(32) DEFAULT '' NOT NULL,
105         RadiusServerName        VARCHAR(32),
106         NASIPAddress            INET NOT NULL,
107         AcctTime                TIMESTAMP with time zone,
108         AcctSessionTime         BIGINT,
109         AcctInputOctets         BIGINT,
110         AcctOutputOctets        BIGINT,
111         CalledStationId         VARCHAR(80),
112         CallingStationId        VARCHAR(80),
113         AcctDelayTime           SMALLINT,
114         CiscoNASPort            VARCHAR(16),
115         H323GWID                VARCHAR(32),
116         H323CallOrigin          VARCHAR(10),
117         H323DisconnectCause     VARCHAR(20),
118         H323RemoteAddress       INET,
119         H323VoiceQuality        INTEGER,
120         CallID                  VARCHAR(35) NOT NULL,
121         processed               BOOLEAN DEFAULT false
122 );
123 -- You can have more than one record that is identical except for CiscoNASPort if you have a VoIP dial peer
124 -- configured for multiple PRIs.
125 create UNIQUE index stoptelephonycombo on stoptelephony (h323SetupTime, nasipaddress, CallID, CiscoNASPort);
126
127 /*
128  * Table structure for 'gateways'
129  *
130  * This table should list the IP addresses, names and locations of all your gateways
131  * This can be used to make more useful reports.
132  *
133  * Note: This table should be removed in favour of using the "nas" table.
134  */
135
136 CREATE TABLE gateways (
137         gw_ip           INET NOT NULL,
138         gw_name         VARCHAR(32) NOT NULL,
139         gw_city         VARCHAR(32)
140 );
141
142
143 /*
144  * Table structure for 'customers'
145  * 
146  * This table should list your Customers names and company
147  * This can be used to make more useful reports.
148  */
149
150 CREATE TABLE customers (
151         cust_id         SERIAL NOT NULL,
152         company         VARCHAR(32),
153         customer        VARCHAR(32)
154 );
155
156 /*
157  * Table structure for 'cust_gw'
158  * 
159  * This table should list the IP addresses and Customer IDs of all your Customers gateways
160  * This can be used to make more useful reports.
161  */
162
163 CREATE TABLE cust_gw (
164         cust_gw         INET PRIMARY KEY,
165         cust_id         INTEGER NOT NULL,
166         "location"      VARCHAR(32)
167 );
168
169
170 CREATE VIEW customerip AS
171     SELECT gw.cust_gw AS ipaddr, cust.company, cust.customer, gw."location" FROM customers cust, cust_gw gw WHERE (cust.cust_id = gw.cust_id);
172
173
174 /*
175  * Function 'strip_dot'
176  * removes "." from the start of cisco timestamps
177  *
178  * From the cisco website:
179  * "A timestamp that is preceded by an asterisk (*) or a dot (.) may not be accurate.
180  *  An asterisk (*) means that after a gateway reboot, the gateway clock was not manually set
181  *  and the gateway has not synchronized with an NTP server yet. A dot (.) means the gateway
182  *  NTP has lost synchronization with an NTP server."
183  *
184  *  * Example useage:
185  *      insert into mytable values (strip_dot('.16:46:02.356 EET Wed Dec 11 2002'));
186  *
187  */
188
189
190 CREATE OR REPLACE FUNCTION strip_dot (VARCHAR) RETURNS TIMESTAMPTZ AS '
191  DECLARE
192         original_timestamp ALIAS FOR $1;
193  BEGIN
194         IF original_timestamp = '''' THEN
195                 RETURN NULL;
196         END IF;
197         IF substring(original_timestamp from 1 for 1) = ''.'' THEN
198                 RETURN substring(original_timestamp from 2);
199         ELSE
200                 RETURN original_timestamp;
201         END IF;
202  END;
203 ' LANGUAGE 'plpgsql';
204
205
206 CREATE OR REPLACE FUNCTION pick_id (VARCHAR, VARCHAR) RETURNS VARCHAR AS '
207  DECLARE
208         h323confid ALIAS FOR $1;
209         callid ALIAS FOR $2;
210  BEGIN
211         IF h323confid <> '''' THEN
212                 RETURN h323confid;
213         END IF;
214         IF callid <> '''' THEN
215                 RETURN callid;
216         END IF;
217         RETURN NULL;
218  END;
219 ' LANGUAGE 'plpgsql';
220
221
222
223 /*
224  * Table structure for 'isdn_error_codes' table
225  *
226  * Taken from cisco.com this data can be JOINED against h323DisconnectCause to
227  * give human readable error reports.
228  *
229  */
230
231
232 CREATE TABLE isdn_error_codes (
233         error_code      VARCHAR(2) PRIMARY KEY,
234         desc_short      VARCHAR(90),
235         desc_long       TEXT
236 );
237
238 /*
239  * Data for 'isdn_error_codes' table
240  */
241
242 INSERT INTO isdn_error_codes VALUES ('1', 'Unallocated (unassigned) number', 'The ISDN number was sent to the switch in the correct format; however, the number is not assigned to any destination equipment.');
243 INSERT INTO isdn_error_codes VALUES ('10', 'Normal call clearing', 'Normal call clearing has occurred.');
244 INSERT INTO isdn_error_codes VALUES ('11', 'User busy', 'The called system acknowledges the connection request but is unable to accept the call because all B channels are in use.');
245 INSERT INTO isdn_error_codes VALUES ('12', 'No user responding', 'The connection cannot be completed because the destination does not respond to the call.');
246 INSERT INTO isdn_error_codes VALUES ('13', 'No answer from user (user alerted)', 'The destination responds to the connection request but fails to complete the connection within the prescribed time. The problem is at the remote end of the connection.');
247 INSERT INTO isdn_error_codes VALUES ('15', 'Call rejected', 'The destination is capable of accepting the call but rejected the call for an unknown reason.');
248 INSERT INTO isdn_error_codes VALUES ('16', 'Number changed', 'The ISDN number used to set up the call is not assigned to any system.');
249 INSERT INTO isdn_error_codes VALUES ('1A', 'Non-selected user clearing', 'The destination is capable of accepting the call but rejected the call because it was not assigned to the user.');
250 INSERT INTO isdn_error_codes VALUES ('1B', 'Designation out of order', 'The destination cannot be reached because the interface is not functioning correctly, and a signaling message cannot be delivered. This might be a temporary condition, but it could last for an extended period of time. For example, the remote equipment might be turned off.');
251 INSERT INTO isdn_error_codes VALUES ('1C', 'Invalid number format', 'The connection could be established because the destination address was presented in an unrecognizable format or because the destination address was incomplete.');
252 INSERT INTO isdn_error_codes VALUES ('1D', 'Facility rejected', 'The facility requested by the user cannot be provided by the network.');
253 INSERT INTO isdn_error_codes VALUES ('1E', 'Response to STATUS ENQUIRY', 'The status message was generated in direct response to the prior receipt of a status enquiry message.');
254 INSERT INTO isdn_error_codes VALUES ('1F', 'Normal, unspecified', 'Reports the occurrence of a normal event when no standard cause applies. No action required.');
255 INSERT INTO isdn_error_codes VALUES ('2', 'No route to specified transit network', 'The ISDN exchange is asked to route the call through an unrecognized intermediate network.');
256 INSERT INTO isdn_error_codes VALUES ('22', 'No circuit/channel available', 'The connection cannot be established because no appropriate channel is available to take the call.');
257 INSERT INTO isdn_error_codes VALUES ('26', 'Network out of order', 'The destination cannot be reached because the network is not functioning correctly, and the condition might last for an extended period of time. An immediate reconnect attempt will probably be unsuccessful.');
258 INSERT INTO isdn_error_codes VALUES ('29', 'Temporary failure', 'An error occurred because the network is not functioning correctly. The problem will be resolved shortly.');
259 INSERT INTO isdn_error_codes VALUES ('2A', 'Switching equipment congestion', 'The destination cannot be reached because the network switching equipment is temporarily overloaded.');
260 INSERT INTO isdn_error_codes VALUES ('2B', 'Access information discarded', 'The network cannot provide the requested access information.');
261 INSERT INTO isdn_error_codes VALUES ('2C', 'Requested circuit/channel not available', 'The remote equipment cannot provide the requested channel for an unknown reason. This might be a temporary problem.');
262 INSERT INTO isdn_error_codes VALUES ('2F', 'Resources unavailable, unspecified', 'The requested channel or service is unavailable for an unknown reason. This might be a temporary problem.');
263 INSERT INTO isdn_error_codes VALUES ('3', 'No route to destination', 'The call was routed through an intermediate network that does not serve the destination address.');
264 INSERT INTO isdn_error_codes VALUES ('31', 'Quality of service unavailable', 'The requested quality of service cannot be provided by the network. This might be a subscription problem.');
265 INSERT INTO isdn_error_codes VALUES ('32', 'Requested facility not subscribed', 'The remote equipment supports the requested supplementary service by subscription only.');
266 INSERT INTO isdn_error_codes VALUES ('39', 'Bearer capability not authorized', 'The user requested a bearer capability that the network provides, but the user is not authorized to use it. This might be a subscription problem.');
267 INSERT INTO isdn_error_codes VALUES ('3A', 'Bearer capability not presently available', 'The network normally provides the requested bearer capability, but it is unavailable at the present time. This might be due to a temporary network problem or to a subscription problem.');
268 INSERT INTO isdn_error_codes VALUES ('3F', 'Service or option not available, unspecified', 'The network or remote equipment was unable to provide the requested service option for an unspecified reason. This might be a subscription problem.');
269 INSERT INTO isdn_error_codes VALUES ('41', 'Bearer capability not implemented', 'The network cannot provide the bearer capability requested by the user.');
270 INSERT INTO isdn_error_codes VALUES ('42', 'Channel type not implemented', 'The network or the destination equipment does not support the requested channel type.');
271 INSERT INTO isdn_error_codes VALUES ('45', 'Requested facility not implemented', 'The remote equipment does not support the requested supplementary service.');
272 INSERT INTO isdn_error_codes VALUES ('46', 'Only restricted digital information bearer capability is available', 'The network is unable to provide unrestricted digital information bearer capability.');
273 INSERT INTO isdn_error_codes VALUES ('4F', 'Service or option not implemented, unspecified', 'The network or remote equipment is unable to provide the requested service option for an unspecified reason. This might be a subscription problem.');
274 INSERT INTO isdn_error_codes VALUES ('51', 'Invalid call reference value', 'The remote equipment received a call with a call reference that is not currently in use on the user-network interface.');
275 INSERT INTO isdn_error_codes VALUES ('52', 'Identified channel does not exist', 'The receiving equipment is requested to use a channel that is not activated on the interface for calls.');
276 INSERT INTO isdn_error_codes VALUES ('53', 'A suspended call exists, but this call identity does not', 'The network received a call resume request. The call resume request contained a Call Identify information element that indicates that the call identity is being used for a suspended call.');
277 INSERT INTO isdn_error_codes VALUES ('54', 'Call identity in use', 'The network received a call resume request. The call resume request contained a Call Identify information element that indicates that it is in use for a suspended call.');
278 INSERT INTO isdn_error_codes VALUES ('55', 'No call suspended', 'The network received a call resume request when there was not a suspended call pending. This might be a transient error that will be resolved by successive call retries.');
279 INSERT INTO isdn_error_codes VALUES ('56', 'Call having the requested call identity has been cleared', 'The network received a call resume request. The call resume request contained a Call Identity information element, which once indicated a suspended call. However, the suspended call was cleared either by timeout or by the remote user.');
280 INSERT INTO isdn_error_codes VALUES ('58', 'Incompatible destination', 'Indicates that an attempt was made to connect to non-ISDN equipment. For example, to an analog line.');
281 INSERT INTO isdn_error_codes VALUES ('5B', 'Invalid transit network selection', 'The ISDN exchange was asked to route the call through an unrecognized intermediate network.');
282 INSERT INTO isdn_error_codes VALUES ('5F', 'Invalid message, unspecified', 'An invalid message was received, and no standard cause applies. This is usually due to a D-channel error. If this error occurs systematically, report it to your ISDN service provider.');
283 INSERT INTO isdn_error_codes VALUES ('6', 'Channel unacceptable', 'The service quality of the specified channel is insufficient to accept the connection.');
284 INSERT INTO isdn_error_codes VALUES ('60', 'Mandatory information element is missing', 'The receiving equipment received a message that did not include one of the mandatory information elements. This is usually due to a D-channel error. If this error occurs systematically, report it to your ISDN service provider.');
285 INSERT INTO isdn_error_codes VALUES ('61', 'Message type non-existent or not implemented', 'The receiving equipment received an unrecognized message, either because the message type was invalid or because the message type was valid but not supported. The cause is due to either a problem with the remote configuration or a problem with the local D channel.');
286 INSERT INTO isdn_error_codes VALUES ('62', 'Message not compatible with call state or message type non-existent or not implemented', 'The remote equipment received an invalid message, and no standard cause applies. This cause is due to a D-channel error. If this error occurs systematically, report it to your ISDN service provider.');
287 INSERT INTO isdn_error_codes VALUES ('63', 'Information element non-existent or not implemented', 'The remote equipment received a message that includes information elements, which were not recognized. This is usually due to a D-channel error. If this error occurs systematically, report it to your ISDN service provider.');
288 INSERT INTO isdn_error_codes VALUES ('64', 'Invalid information element contents', 'The remote equipment received a message that includes invalid information in the information element. This is usually due to a D-channel error.');
289 INSERT INTO isdn_error_codes VALUES ('65', 'Message not compatible with call state', 'The remote equipment received an unexpected message that does not correspond to the current state of the connection. This is usually due to a D-channel error.');
290 INSERT INTO isdn_error_codes VALUES ('66', 'Recovery on timer expires', 'An error-handling (recovery) procedure was initiated by a timer expiry. This is usually a temporary problem.');
291 INSERT INTO isdn_error_codes VALUES ('6F', 'Protocol error, unspecified', 'An unspecified D-channel error when no other standard cause applies.');
292 INSERT INTO isdn_error_codes VALUES ('7', 'Call awarded and being delivered in an established channel', 'The user is assigned an incoming call that is being connected to an already-established call channel.');
293 INSERT INTO isdn_error_codes VALUES ('7F', 'Internetworking, unspecified', 'An event occurred, but the network does not provide causes for the action that it takes. The precise problem is unknown.');
294