The UDP checksum is performed over the entire payload and the other fields in the header and some fields from the IP header. A pseudo-header is constructed from the IP header in order to perform the calculation (which is done over this pseudo-header, the UDP header and the payload). The reason the pseudo-header is included is to catch packets that have been routed to the wrong IP address.
Basically, at the receiving end, all the 16-bit words of the headers plus data area are added together and the result is checked against 0xffff. On the sending side, it's also simple. All the one's complements (i.e., invert all bits) of the 16-bit words of the headers (where the UDP checksum is zero) are added and the one's complement of that is what gets put into the checksum field. That will cause the calculation in the previous paragraph to produce 0xffff.
It's worth noting that the payload is always padded to ensure there's an integral number of 16-bit words. If it was padded, the length field tells you the actual length.
RFC768 is the specification which details this.